.header_menu {
  background: #EDAB71;
  border-bottom: 5px solid #f0c076;
}
.header_menu ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  padding: 0 5%;
}
@media screen and (max-width: 991px) {
  .header_menu ul {
    padding: 0;
    flex-wrap: wrap;
  }
}
.header_menu ul > li {
  padding: 0;
  margin: 0;
}
.header_menu ul a {
  display: block;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 20px;
  color: #502B13;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .header_menu ul a {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.header_menu ul a:hover {
  color: #000;
}

.banner {
  border-bottom: 5px solid #f0c076;
}

.bonuses {
  background: #FFF9E6;
  padding: 50px 9%;
  display: flex;
  flex-flow: row wrap;
}
.bonuses.product_page {
  background: #fff;
  padding: 30px 9%;
}
@media screen and (max-width: 991px) {
  .bonuses.product_page {
    padding: 10px;
  }
}
@media screen and (max-width: 991px) {
  .bonuses {
    padding: 20px 10px;
  }
}

.bonus {
  padding: 10px;
  width: 100%;
  position: relative;
}
.bonus__half {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .bonus__half {
    width: 100%;
  }
}
.bonus__img {
  display: block;
  width: 100%;
}
.bonus__dop_img {
  position: absolute;
  height: 110%;
  bottom: 6px;
  left: 8.8%;
}

footer {
  border-top: 5px solid #FFE9C9;
}

.products {
  background-color: #FFCB13;
  background-image: url("../img/products/products_bg.png");
  padding: 50px calc(9% - 5px);
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 991px) {
  .products {
    padding: 30px 10px;
  }
}
.products:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  width: 100%;
  background-image: url("../img/products/bgtop.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.products__item {
  width: 20%;
  padding: 5px;
}
@media screen and (max-width: 991px) {
  .products__item {
    width: 50%;
  }
}
.products__title {
  width: 100%;
  padding: 0 5px;
}
.products__title h2 {
  line-height: 1;
  font-size: 20px;
  width: 100%;
  background-image: url("../img/products/title_bg.jpg");
  background-size: cover;
  color: #fff;
  padding: 12px 30px;
  font-size: 20px;
  border-radius: 30px;
  margin: 30px 0;
}

.product.teaser {
  display: flex;
  flex-flow: column;
  background: #FFFFFF;
  border-radius: 16px;
  height: 100%;
  padding: 8px;
}
.product.teaser .product__img {
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}
.product.teaser .product__img img {
  display: block;
  width: auto;
  height: 90%;
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  bottom: -1px;
  max-width: unset;
  margin: auto;
}
.product.teaser .product__title {
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: #000000;
  margin-bottom: 10px;
}
.product.teaser .product__weight {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #1B9950;
  margin-bottom: 10px;
  margin-top: auto;
}
.product.teaser .product__weight img {
  height: 20px;
  margin-right: 5px;
}
.product.teaser .product__prices {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: bold;
}
.product.teaser .product__oldprice {
  color: #989898;
  position: relative;
}
.product.teaser .product__oldprice:after {
  content: "";
  display: block;
  position: absolute;
  width: 120%;
  height: 1px;
  background: #989898;
  transform: rotate(-17.74deg);
  top: 40%;
  left: -10%;
}
.product.teaser .product__price {
  font-size: 16px;
  color: #1B9950;
}
.product.teaser .product__btn {
  background: #1B9950;
  border-radius: 14px;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  color: #FFFFFF;
  padding: 15px;
  width: 100%;
  display: block;
  font-weight: bold;
}
.product.full {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.product.full .product__left {
  width: 45%;
  padding-right: 5%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .product.full .product__left {
    width: 100%;
    padding-right: 0;
  }
}
.product.full .product__img {
  display: block;
}
.product.full .product__img img {
  display: block;
  width: 100%;
}
.product.full .product__right {
  width: 55%;
  background-image: url("../img/products/right_bg.jpg");
  background-size: cover;
  border-radius: 20px;
  padding: 30px 40px;
}
@media screen and (max-width: 991px) {
  .product.full .product__right {
    width: 100%;
    padding: 20px;
  }
}
.product.full h1 {
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
  color: #000000;
  margin-bottom: 10px;
}
.product.full .product__prices {
  display: block;
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: bold;
}
.product.full .product__price {
  font-size: 26px;
  color: #1B9950;
  margin-right: 10px;
}
.product.full .product__oldprice {
  color: #989898;
  position: relative;
  font-size: 20px;
}
.product.full .product__oldprice:after {
  content: "";
  display: block;
  position: absolute;
  width: 120%;
  height: 1px;
  background: #989898;
  transform: rotate(-17.74deg);
  top: 40%;
  left: -10%;
}
.product.full .product__weight {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #1B9950;
  margin-bottom: 10px;
  margin-top: auto;
  background: #ffff;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 18px;
}
.product.full .product__weight img {
  height: 20px;
  margin-right: 5px;
}
.product.full .product__btn {
  background: #1B9950;
  border-radius: 14px;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
  display: block;
  font-weight: bold;
  padding: 20px 70px;
  margin-bottom: 20px;
  transition: all 0.2s ease-in-out;
  border: none;
}
.product.full .product__btn:hover {
  opacity: 0.9;
}
.product.full .product__text {
  line-height: 1;
  color: #585450;
}
.product.full .product__text ul {
  margin-bottom: 10px;
  list-style: disc;
  padding-left: 15px;
}
.product.full .product__text ul li {
  list-style-type: disc;
}
.product.full .product__text p {
  margin-bottom: 10px;
}
.product.full .product__text p.title {
  font-weight: bold;
}

.page_container,
.product_container {
  padding: 20px 9%;
}
@media screen and (max-width: 991px) {
  .page_container,
.product_container {
    padding: 20px;
  }
}

.page_container h1 {
  font-size: 28px;
  margin-bottom: 30px;
}
.page_container p {
  font-size: 16px;
  margin-bottom: 15px;
}

.sostav {
  padding: 0 9%;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .sostav {
    padding: 0 20px;
  }
}
.sostav__content {
  border: 3px solid #EAF3F3;
  box-sizing: border-box;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.sostav__candies {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.sostav__candies__item {
  width: 25%;
  padding: 2% 4%;
}
@media screen and (max-width: 991px) {
  .sostav__candies__item {
    width: 50%;
  }
}
.sostav__title {
  background-image: url("../img/products/title_sost_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
  width: 150px;
  height: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.candy {
  width: 100%;
  display: flex;
  flex-flow: column;
  position: relative;
  text-align: center;
}
.candy__img {
  margin-bottom: 10px;
}
.candy__img img {
  display: block;
  width: 100%;
}
.candy__title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}
.candy__brand {
  color: #4B4B4B;
  font-weight: 300;
}
.candy__kol {
  position: absolute;
  background-image: url(../img/products/col_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 49px;
  font-weight: bold;
  line-height: 1;
  color: #C90914;
  padding-top: 23px;
  font-size: 12px;
}

.popup__form {
  padding: 20px;
  display: flex;
  flex-flow: column;
}
.popup__form .popup__form__btn {
  margin-left: auto;
  margin-right: auto;
  background: #1B9950;
  border-radius: 14px;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
  display: block;
  font-weight: bold;
  padding: 15px 50px;
  transition: all 0.2s ease-in-out;
  border: none;
}
.popup__form .popup__form__btn:hover {
  opacity: 0.9;
}
.popup__form .popup__form__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}
.popup__form input {
  display: block;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  color: #000;
  border: 2px solid #ddd;
}
.popup__form input.error {
  border-color: red;
}

/*# sourceMappingURL=dopstyles.css.map */
