*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
a, a:hover {
    text-decoration: none;
    
    cursor: pointer;
}


ul {
    padding-left: 0;
    list-style: none;
}

.wrap {
    max-width: 1140px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}
@media (max-width: 1140px) {
  .wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
.product__list {
  display: flex;
  flex-direction: row;
    flex-wrap: wrap;
  justify-content: center;
    margin-left: -5px;
    margin-right: -5px;
}
.product__item {
      word-wrap: break-word;
    width: calc(33.3333% - 10px);
 flex-basis: 300px;
    padding: 1px 10px 0;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    margin: 15px 5px;
  border: 2px solid #005192;
 
}
.product__item:hover {
   box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}
.product__img {
  margin: 0px auto;
  width: 100%;
  max-height: 210px;
  overflow: hidden;
  position: relative;
}
.product__img img {
    max-width: 55%;
    height: auto;
}
.product__stock{
  font-size: 16px;
  left: 0;
  padding: 6px;
  position: absolute;
  top: 8px;
  background: #005192;
  color: #fff;
}
.product__content {
  display: flex;
  flex-direction: column;
}
.product__title {
  font-size: 17px;
  margin: 10px;
  color: #000;
}
.product__subtitle {
  margin: 0px 10px 10px;
  color: #000000;
  font-size: 17px;
}
.product__weight {
  color: #737373;
}
.product__info {
  display: flex;
  justify-content: space-around;
  margin: auto 10px 20px;
}
.product__price {
    color: #e64b3b;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
     
}

.btn {
  width: 50%;
    text-align: center;
    line-height: 46px;
  padding: 5px;
}
.product__btn {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e7e7e7;

  margin-left: -10px;
  margin-right: -10px;
}
.btn__more {
  color: #33495d;
  border-right: 1px solid #e7e7e7;
}
.btn__more:hover {
  background: #33495d;
  color: #fff;
  border-right: 1px solid #33495d;
}
.btn__cart {
      color: #fff;
      background: #005192;
      width: 100%;
      font-size: 11px;
}
.btn__cart:hover {
  color: #fff;
    
}

audio
{
-webkit-transition:all 0.5s linear;
-moz-transition:all 0.5s linear;
-o-transition:all 0.5s linear;
transition:all 0.5s linear;
-moz-box-shadow: 2px 2px 4px 0px #000000;
-webkit-box-shadow:  2px 2px 4px 0px #000000;
box-shadow: 2px 2px 4px 0px #000000;
-moz-border-radius:7px 7px 7px 7px ;
-webkit-border-radius:7px 7px 7px 7px ;
border-radius:7px 7px 7px 7px ;
background: #f2f2f2;
}



