body {
  font: 16px 'Arial', sans-serif;
}

/* * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p {
  margin: 0;
} */
* [onclick], button {
	cursor: pointer;
}
* [status=deactive] {
	cursor: default;
	pointer-events: none;
}
.header {
  background: #f9f9f9;
  width: 100%;
  max-width: 1170px;
  margin: 15px auto;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  background: #f9f9f9;
}

.product__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product__element {
  width: 20%;
  margin: 2.5%;
  padding: 15px;
  -webkit-box-shadow: 0 0 15px #cacaca;
          box-shadow: 0 0 15px #cacaca;
  border-radius: 3px;
  box-sizing: border-box;
}

.product__img {
  max-width: 100%;
  height: auto;
}

.product__name {
  width: 100%;
  padding: 10px 5px 20px 5px;
  text-align: center;
  font-weight: bold;
}

.product__price {
  text-align: center;
  padding: 15px 5px;
  border: 1px solid #e2e2e2;
  margin-bottom: 15px;
}

.product__size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}
.product__amount {
margin-top: 10px;
color: #9c9797;
}
.product__amount i {
  font-style: normal;
}
.product__size-element {
  width: 33%;
  border: 1px solid #e2e2e2;
  font-size: 14px;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.product__size-element_active {
  border: 1px solid #ff0000 !important;
}

.product__add-to-cart-button {
  width: 100%;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  -webkit-appearance: none;
  border-radius: 2px;
  background: #3598dc;
  color: #fff;
  cursor: pointer;
  margin: 15px 0 0;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 16px;
  outline: none;
}

.product__add-to-cart-button:hover {
  background: #1bbc9b;
  -webkit-transition: .3s;
  transition: .3s;
}

.product__add-to-cart-button .fas {
  margin-right: 5px;
}

.smart-basket__min {
  cursor: pointer;
  padding: 10px 20px;
  background: #3598dc;
  border: none;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.smart-basket__min:hover {
  background: #1bbc9b;
  -webkit-transition: .3s;
  transition: .3s;
}

.smart-basket__min span {
  display: block;
}

.smart-basket__min img {
  margin-right: 5px;
}

.smart-basket__min-text {
  margin-right: 5px;
}
@media (max-width: 1200px) {
  .product__element {
    width: 45%;
  }
}

@media (max-width: 500px) {
  .product__element {
    width: 100%;
  }
}