

/* /wa-data/public/site/themes/beautis/css/main.css @ 2024-10-21T19:45:24+03:00 */

@charset "UTF-8";
body > * {
  font-family: "Manrope", Fallback, sans-serif;
  font-weight: 400;
  font-display: swap;
}

/* RESET CSS */
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input, button {
  appearance: none;
  -webkit-appearance: none;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  display: block;
  max-width: 100%;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
/*@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}*/
/* RESET CSS -- END*/
a {
  color: #000;
  text-decoration: none;
}

.color2, .color2 * {
  color: #306049 !important;
}

.js-loaded {
  visibility: hidden !important;
}

.flex-row {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

body.js-document-loaded .js-loaded {
  visibility: initial !important;
}

.mobile-block {
  display: none;
}

.bold {
  font-weight: bold;
}

.clear:after {
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
  content: " ";
  clear: both;
}

.floatleft {
  display: block;
  float: left;
}

.floatright {
  display: block;
  float: right;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

.visibility-hidden {
  visibility: hidden;
}

.all_background {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.36);
  z-index: 18;
}

.old-price {
  position: relative;
  color: white !important;
  text-shadow: -1px -1px 0 rgba(48, 96, 73, 0.3), 1px -1px 0 rgba(48, 96, 73, 0.3), -1px 1px 0 rgba(48, 96, 73, 0.3), 1px 1px 0 rgba(48, 96, 73, 0.3);
}
.old-price span {
  position: relative;
  white-space: nowrap;
}
.old-price span::after, .old-price span::before {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 110%;
  height: 3px;
  margin-left: -3px;
  background-color: #000;
  content: "";
}
.old-price span::after {
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.old-price span::before {
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}

.pos-rel {
  position: relative;
}

.pos-abs-left {
  position: absolute;
  left: 0 !important;
}

.pos-abs-right-top {
  position: absolute;
  top: 0;
  right: 0;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt60 {
  margin-top: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb60f {
  margin-bottom: 60px !important;
}

.mr10 {
  margin-right: 10px;
}

.btn {
  display: inline-block;
  height: 48px;
  padding: 0 14px;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  line-height: 45px;
}
.btn.btn-default {
  background: #306049;
  color: #fff;
}
.btn.btn-default:hover {
  background: #000;
}
.btn.btn-default-inv {
  background: none;
  border-color: #306049;
  color: #306049;
}
.btn.btn-default-inv:hover {
  background: #306049;
  color: #fff !important;
}
.btn.btn-light {
  background: none;
  border-color: #ffa7ac;
  color: #ffa7ac !important;
}
.btn.btn-light:hover {
  background: #ffa7ac;
  color: #000 !important;
}
.btn:active {
  filter: brightness(120%);
}

.grid {
  display: grid;
  grid-gap: 20px;
}
.grid.g-cl-6 {
  grid-template-areas: "col1 col1 col2 col2 col3 col3";
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.grid.g-cl-3 {
  grid-template-areas: "col1 col2 col3";
  grid-template-columns: 1fr 1fr 1fr;
}
.grid.g-cl-2 {
  grid-template-areas: "col1 col2";
  grid-template-columns: 1fr 1fr;
}
.grid .col1 {
  grid-area: col1;
}
.grid .col2 {
  grid-area: col2;
}
.grid .col3 {
  grid-area: col3;
}

main {
  padding-top: 0;
  padding-bottom: 20px;
}
main > * {
  margin-right: 20px;
  margin-left: 20px;
}
main .product-slider .owl-nav {
  position: absolute;
  top: -58px !important;
  right: 0;
  margin-top: 0 !important;
}
main .product-slider .owl-nav button {
  outline: none;
}
main .product-slider .owl-nav button.disabled {
  opacity: 0.2;
}
main .product-slider .owl-nav button > span {
  display: block;
  width: 48px;
  height: 48px;
  background: url(../img/ArrowRight.svg);
  color: transparent;
}
main .product-slider .owl-nav button.owl-prev > span {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
main .product-slider.short {
  position: relative;
}
main .product-slider.short .product-slider-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  padding: 10px 5px;
  margin: 0 5px 10px 5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
}
main .product-slider.short .product-slider-item a .left-block {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 153px;
  height: 153px;
  margin-right: 10px;
  text-align: center;
  -ms-flex-negative: 0;
  align-items: center;
}
main .product-slider.short .product-slider-item a .left-block img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
main .product-slider.short .product-slider-item a .left-block, main .product-slider.short .product-slider-item a .right-block {
  height: 194px;
}
main .product-slider.short .product-slider-item a .right-block {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
main .product-slider.short .product-slider-item a .right-block picture img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
main .product-slider.short .product-slider-item a .right-block .top {
  height: 140px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
main .product-slider.short .product-slider-item a .right-block .top .rating {
  height: 20px;
  margin-bottom: 30px;
}
main .product-slider.short .product-slider-item a .right-block .top .name {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
main .product-slider.short .product-slider-item a .right-block form .prices {
  vertical-align: super;
  color: #306049;
  font-size: 26px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.03em;
}
main .product-slider.short .product-slider-item a .right-block form .btn {
  position: relative;
  top: 3px;
}
main .product-slider.short .product-slider-item a .right-block form .btn svg:nth-child(2) {
  display: none;
}
main .product-slider.short .product-slider-item a .right-block form .btn:hover svg:nth-child(1) {
  display: none;
}
main .product-slider.short .product-slider-item a .right-block form .btn:hover svg:nth-child(2) {
  display: initial;
}
main .product-slider.long .owl-nav {
  top: -38px !important;
}
main .product-slider.long .product-slider-item {
  text-align: center;
}
main .product-slider.long .product-slider-item .product-slider-item__content {
  padding: 10px;
  margin: 7.5px;
  position: relative;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
main .product-slider.long .product-slider-item .product-image img {
  width: auto !important;
  height: auto;
  margin: 0 auto;
}
main .product-slider.long .product-slider-item .bottom {
  display: flex;
  flex-direction: column;
  height: 100%;
}
main .product-slider.long .product-slider-item .bottom > * {
  margin: 0;
}
main .product-slider.long .product-slider-item .bottom .buy-form-wrapper {
  margin-top: auto;
}
main .product-slider.long .product-slider-item:hover .product-slider-item__content {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}
main .product-slider.long .product-slider-item .top {
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid #000;
}
main .product-slider.long .product-slider-item .top .product-image {
  display: block;
  margin-bottom: 8px;
  position: relative;
}
main .product-slider.long .product-slider-item .top .brand-name {
  font-size: 12px;
  line-height: 20px;
}
main .product-slider.long .product-slider-item .bottom .rating {
  margin-bottom: 6px;
}
main .product-slider.long .product-slider-item .bottom .rating .stars__list {
  height: 20px;
}
main .product-slider.long .product-slider-item .bottom .product-name {
  margin-bottom: 3px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
  overflow: hidden;
}
main .product-slider.long .product-slider-item .bottom .product-name .rus-title {
  font-size: 11px;
}
main .product-slider.long .product-slider-item .bottom .product-name .eng-title {
  font-weight: initial;
}
main .product-slider.long .product-slider-item .bottom .sku-list {
  margin-top: 4px;
}
main .product-slider.long .product-slider-item .bottom .sku-list button {
  padding: 0;
  background: none;
  border: none;
}
main .product-slider.long .product-slider-item .bottom .buy-form-wrapper .prices {
  margin-top: 16px;
  margin-bottom: 20px;
  color: #306049;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.03em;
}
main .product-slider.long .product-slider-item .bottom .buy-form-wrapper .prices .old-price {
  margin-right: 12px;
}
main .product-slider.long .product-slider-item .bottom .buy-form-wrapper .buttons {
  width: 100%;
  margin: 0 auto;
}
main .product-slider.long .product-slider-item .bottom .buy-form-wrapper .buttons button {
  width: 184px;
  height: 40px;
  margin-bottom: 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
main .product-slider.long .product-slider-item .bottom .buy-form-wrapper .buttons > * {
  display: inline-block;
  width: 100%;
}
main .product-slider.long .product-slider-item .bottom .buy-form-wrapper .buttons .buy-one-click > * {
  text-transform: initial;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
}
main .product-slider.long .product-slider-item .bottom .buy-form-wrapper .buttons .buy-one-click .quickorder-button {
  width: 100%;
  padding: 0;
  margin: 0;
  background: none !important;
  border: none;
  cursor: pointer;
  color: #306049;
}

.items-wrapper .cat-item-badges {
  position: absolute;
  top: 5px;
  left: 0;
  z-index: 2;
}
.items-wrapper .cat-item-badges > div {
  padding: 0 7px;
  border-radius: 0;
  font-weight: bold;
  font-size: 7px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  height: 17px;
}
.items-wrapper .cat-item-badges > div::before, .items-wrapper .cat-item-badges > div::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.items-wrapper .cat-item-badges > div::before {
  left: -3px;
}
.items-wrapper .cat-item-badges > div::after {
  right: -3px;
}
@media (min-width: 1024px) {
  .items-wrapper .cat-item-badges > div {
    height: 24px;
    font-size: 7px;
    line-height: 16px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 4px;
  }
  .items-wrapper .cat-item-badges > div::before, .items-wrapper .cat-item-badges > div::after {
    height: 8px;
    width: 8px;
  }
}

.by-one-click__modal_container__place {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  z-index: 100;
  width: 453px;
  padding: 15px;
  background: #306049;
  text-align: left;
}

.found-products .catalog-load-more {
  display: none;
}

.by-one-click__modal_container {
  display: none;
  width: 100%;
}
.by-one-click__modal_container .close_line {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 2px;
  padding: 10px 0;
  background: none;
  border: none;
  border-top: 2px solid #fff;
}
.by-one-click__modal_container .product_name, .by-one-click__modal_container .sku, .by-one-click__modal_container .price, .by-one-click__modal_container h2, .by-one-click__modal_container p {
  color: #E3B891;
  text-transform: uppercase;
  font-family: "Manrope", Fallback, sans-serif;
  font-weight: bold;
}
.by-one-click__modal_container h2 {
  font-size: 42px;
  color: #fff;
}
.by-one-click__modal_container p {
  text-transform: initial;
  font-weight: normal;
  color: #fff;
}
.by-one-click__modal_container p.border, .by-one-click__modal_container p:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  margin-bottom: 12px;
  padding-bottom: 17px;
}
.by-one-click__modal_container p strong {
  color: #E3B891;
  font-weight: normal;
}
.by-one-click__modal_container button.closes {
  position: absolute;
  bottom: 20px;
  left: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: none;
  color: #fff;
  border-radius: 4px;
  width: 196px;
  height: 48px;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}
.by-one-click__modal_container .product_name {
  display: inline-block;
  padding-right: 26px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  line-height: 20px;
}
.by-one-click__modal_container .top {
  position: relative;
}
.by-one-click__modal_container .top .product_name {
  padding-right: 150px;
}
.by-one-click__modal_container .images {
  position: absolute;
  top: -48px;
  right: 0;
  display: inline-block;
  max-width: 150px;
  background: #fff;
}
.by-one-click__modal_container .images img {
  display: none;
}
.by-one-click__modal_container .images img.active {
  display: block;
}
.by-one-click__modal_container .sku {
  display: inline-block;
  padding: 0 5px 2px 5px;
  margin-right: 10px;
  margin-bottom: 12px;
  background: none;
  border: none;
  border-bottom: 1px solid #306049;
  cursor: pointer;
  font-size: 12px;
  line-height: 20px;
}
.by-one-click__modal_container .sku.active {
  border-color: #E3B891;
  cursor: initial;
}
.by-one-click__modal_container .prices .price {
  display: none;
  margin-bottom: 60px;
  font-size: 42px;
  line-height: 42px;
  letter-spacing: -0.03em;
}
.by-one-click__modal_container .prices .price.active {
  display: block;
}
.by-one-click__modal_container .phone-wrapper {
  margin-bottom: 23px;
  color: #fff;
  position: relative;
  width: 100%;
  display: grid;
  grid-auto-columns: auto;
  grid-template-columns: repeat(2, auto);
  align-items: baseline;
}
.by-one-click__modal_container .phone-wrapper input {
  background: #306049;
  border: none;
  outline: none;
  width: auto;
  position: relative;
  left: -11px;
}
.by-one-click__modal_container .phone-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.3098039216);
}
.by-one-click__modal_container .phone-wrapper input:active, .by-one-click__modal_container .phone-wrapper input:focus {
  border: none;
  outline: none;
}
.by-one-click__modal_container .phone-wrapper input, .by-one-click__modal_container .phone-wrapper .text {
  color: #fff;
  padding: 0;
  margin: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  letter-spacing: -0.02em;
  display: block;
  width: inherit;
}
.by-one-click__modal_container .buttons {
  display: grid;
  gap: 0 15px;
  grid-template-columns: 1fr 1fr;
  text-transform: uppercase;
}
.by-one-click__modal_container .buttons > button {
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 100%;
}
.by-one-click__modal_container .buttons .send {
  background: #fff;
  border: 1px solid #306049;
  color: #000;
  order: 2;
}
.by-one-click__modal_container .buttons .cancel {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  order: 1;
}

@media (min-width: 1024px) {
  .by-one-click__modal_container__place {
    margin-right: 15px;
    margin-bottom: 17px;
    width: 453px;
  }
  .by-one-click__modal_container__place .prices .price {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 81px;
  }
  .by-one-click__modal_container__place .phone-wrapper label {
    height: 48px;
    grid-template-columns: 122px 1fr;
  }
  .by-one-click__modal_container__place .phone-wrapper * {
    font-size: 47px;
    line-height: 47px;
    letter-spacing: -0.03em;
  }
  .by-one-click__modal_container__place .phone-wrapper input {
    height: 48px;
    width: 306px;
  }
  .by-one-click__modal_container__place .buttons {
    gap: 0 21px;
  }
}
@media (min-width: 1920px) {
  .by-one-click__modal_container__place .product_name {
    margin-bottom: 13px;
  }
  .by-one-click__modal_container__place .sku {
    margin-bottom: 7px;
  }
}

body.mobile .by-one-click__modal_container__place {
  bottom: 0;
  right: 0;
  width: 100%;
}
@media (max-width: 375px) {
  body.mobile .by-one-click__modal_container__place .phone-wrapper .text, body.mobile .by-one-click__modal_container__place .phone-wrapper input {
    font-size: 28px;
    min-width: 86px;
  }
}
@media (min-width: 376px) {
  body.mobile .by-one-click__modal_container__place .phone-wrapper .text {
    width: 106px;
  }
}
@media (min-width: 576px) {
  body.mobile .by-one-click__modal_container__place .phone-wrapper .text {
    width: 128px;
  }
}
@media (min-width: 768px) {
  body.mobile .by-one-click__modal_container__place .phone-wrapper .text {
    width: 130px;
  }
}
@media (min-width: 576px) {
  body.mobile .by-one-click__modal_container__place {
    bottom: 14px;
    right: 19px;
    width: 453px;
    padding: 20px;
  }
  body.mobile .by-one-click__modal_container__place .product_name {
    margin-bottom: 6px;
  }
  body.mobile .by-one-click__modal_container__place .sku {
    margin-bottom: 14px;
  }
  body.mobile .by-one-click__modal_container__place .prices .price {
    margin-bottom: 81px;
    font-size: 48px;
    line-height: 48px;
  }
  body.mobile .by-one-click__modal_container__place .phone-wrapper {
    margin-bottom: 21px;
  }
  body.mobile .by-one-click__modal_container__place .phone-wrapper label {
    height: 48px;
  }
  body.mobile .by-one-click__modal_container__place .phone-wrapper * {
    font-size: 45px;
    line-height: 45px;
    letter-spacing: -0.03em;
  }
  body.mobile .by-one-click__modal_container__place .phone-wrapper input {
    height: 48px;
    width: 290px;
    padding-left: 0;
    padding-right: 0;
  }
  body.mobile .by-one-click__modal_container__place .buttons {
    gap: 0 21px;
  }
}
@media (min-width: 768px) {
  body.mobile .by-one-click__modal_container__place {
    bottom: 52px;
    right: 17px;
    width: 453px;
  }
  body.mobile .by-one-click__modal_container__place .product_name {
    margin-bottom: 7px;
  }
  body.mobile .by-one-click__modal_container__place .sku {
    margin-bottom: 16px;
  }
  body.mobile .by-one-click__modal_container__place .phone-wrapper * {
    font-size: 46px;
    line-height: 46px;
  }
  body.mobile .by-one-click__modal_container__place .phone-wrapper input {
    width: 294px;
  }
}

.quickorderForm_wrapper {
  position: relative;
}

@media (max-width: 1023px) {
  .desktop-block {
    display: none !important;
  }
  .mobile-block {
    display: initial;
  }
  .grid {
    grid-gap: 0;
  }
  .grid .col1 {
    grid-area: col1;
  }
  .grid .col2 {
    grid-area: col2;
  }
  .grid .col3 {
    grid-area: col3;
  }
}
body.mobile .product-slider.long .product-slider-item .bottom .buy-form-wrapper .prices {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: -0.03em;
}
body.mobile .product-slider.long .product-slider-item .bottom .buy-form-wrapper .prices .new-price {
  white-space: nowrap;
}
body.mobile .items-wrapper .cat-item-badges {
  top: 0;
}
body.mobile .items-wrapper .cat-item-badges > div {
  font-size: 5px;
}

@media (max-width: 412px) {
  .product-slider.long .product-image {
    width: 115px;
    height: 115px;
    margin: 0 auto;
  }
  .product-slider.long .product-image picture {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  .product-slider.long .product-image picture, .product-slider.long .product-image img {
    display: block;
    height: 100% !important;
  }
}
.mini-logo-wrapper {
  display: none;
}

body.fixed-header .mini-logo-wrapper {
  display: initial;
}

.bellLight_active {
  z-index: 11;
}

.bellLightW {
  z-index: 3;
}

.bonus_percentages__wrapper {
  display: none;
}

body.action-order .bonus_percentages__wrapper {
  display: block;
}

.bonus_percentages {
  background: #F2D6C4;
  padding: 20px;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0 15px;
  margin-bottom: 4px;
}
.bonus_percentages .p_left {
  margin-right: 10px;
  display: flex;
}
.bonus_percentages .p_middle {
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bonus_percentages .p_right .big {
  font-weight: bold;
  font-size: 28px;
  line-height: 28px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.bonus_percentages .p_right .small {
  font-size: 12px;
  line-height: 16px;
  text-align: right;
  color: #000000;
  opacity: 0.5;
}

.reviews-rating-lines .star {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.99986 1.15015L9.55786 5.94415H14.5979L10.5199 8.90715L12.0779 13.7001L7.99986 10.7381L3.92186 13.7001L5.47986 8.90715L1.40186 5.94415H6.44186L7.99986 1.15015Z' fill='black'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  position: relative;
  top: 3px;
}

.product-review .title .star {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0004 2.875L23.8954 14.86H36.4954L26.3004 22.2675L30.1954 34.25L20.0004 26.845L9.80537 34.25L13.7004 22.2675L3.50537 14.86H16.1054L20.0004 2.875Z' fill='%23306049'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  position: relative;
  top: 4px;
}

.stars__list .full-star {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.99994 1.43762L11.9474 7.43012H18.2474L13.1499 11.1339L15.0974 17.1251L9.99994 13.4226L4.90244 17.1251L6.84994 11.1339L1.75244 7.43012H8.05244L9.99994 1.43762Z' fill='%23E3B891'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
}
.stars__list .full-star.small {
  width: 20px;
  height: 20px;
}
.stars__list .empty-star {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.99994 3.05534L11.4719 7.58466L11.5842 7.93012H11.9474H16.7087L12.856 10.7294L12.5621 10.9429L12.6744 11.2884L14.1462 15.8162L10.2938 13.0181L9.99994 12.8046L9.7061 13.0181L5.85365 15.8162L7.32545 11.2884L7.43776 10.9429L7.14384 10.7294L3.29122 7.93012H8.05244H8.41569L8.52796 7.58466L9.99994 3.05534Z' stroke='%23E3B891'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
}
.stars__list .empty-star.small {
  width: 20px;
  height: 20px;
}

.btn.circle-btn {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.8332 26.875H14.1669L12.9238 20.3506C12.7038 19.1956 13.5894 18.125 14.7657 18.125H25.2338C26.4101 18.125 27.2957 19.1956 27.0757 20.3506L25.8332 26.875Z' stroke='%23306049' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M16.25 16.25C16.25 14.1788 17.9288 12.5 20 12.5C22.0712 12.5 23.75 14.1788 23.75 16.25' stroke='%23306049' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3Crect x='0.5' y='0.5' width='39' height='39' rx='19.5' stroke='%23306049' stroke-opacity='0.5'%3E%3C/rect%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
.btn.circle-btn:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z' fill='%23306049'%3E%3C/path%3E%3Cpath d='M25.8327 25.875H14.1665L12.9233 19.3506C12.7033 18.1956 13.589 17.125 14.7652 17.125H25.2333C26.4096 17.125 27.2952 18.1956 27.0752 19.3506L25.8327 25.875Z' stroke='white' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M16.25 15.25C16.25 13.1788 17.9288 11.5 20 11.5C22.0712 11.5 23.75 13.1788 23.75 15.25' stroke='white' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
}

.searchpro__field-button {
  border-radius: 0 4px 4px 0;
}

body.action-page h1 {
  font-size: 25px;
  line-height: 36px;
  font-style: normal;
  font-weight: bold;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  padding-bottom: 1px;
  border-bottom: 1px solid #000;
}

.category_description table {
  padding: 0;
  border-collapse: collapse;
}
.category_description table td {
  border: 1px solid #000;
  padding: 0 8px;
}

.wa-field-tip_kozh, .wa-field-tsvet_glaz, .wa-field-tsvet_volos, .wa-field-ottenok_kozhi, .wa-signup-form-wrapper .wa-name,
.wa-signup-form-actions, #wa-my-info-edit-wrapper .wa-name, #wa-my-info-edit-wrapper .wa-field-address,
#wa-my-info-edit-wrapper .wa-form .wa-field:last-child {
  display: none;
}

.signup_column {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
}

.signup_column .sale {
  width: 742px;
  margin-left: 76px;
  padding: 0;
  position: relative;
  text-align: right;
  overflow: hidden;
}

.wa-signup-form {
  width: 59%;
  min-width: 961px;
}

.signing__forms > div,
.p_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid #000;
}

.p_head .logout {
  display: none;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.signing__forms > div:last-child {
  border-bottom: none;
}

.signing__forms > div > div:nth-child(1) {
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: calc(100% - 460px);
}

.signing__forms > div > div:nth-child(1) > div {
  width: 100%;
  height: 58px;
  bottom: 20px;
  position: absolute;
}

.signing__forms > div > div:nth-child(2) {
  width: 453px;
}

.wa-login-form-wrapper input:not([type=checkbox]),
.wa-signup-form-wrapper .wa-value input,
#wa-my-info-edit-wrapper .wa-value input {
  width: 100%;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2392156863);
  outline: none;
  font-size: 16px;
  line-height: 20px;
  height: 48px;
  color: #000000;
}

.wa-signup-form-wrapper .wa-value input:focus,
#wa-my-info-edit-wrapper .wa-value input:focus {
  border-bottom-color: #000;
}

.wa-signup-form-wrapper .wa-value input {
  padding-left: 19px;
}

.checkout__social-sign-in > div:first-child {
  font-size: 16px;
  float: left;
  line-height: 50px;
  text-transform: initial;
}

.color_groups .caption {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: bold;
}

.wa-auth-adapters ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wa-auth-adapters ul > li {
  width: 100%;
}
.wa-auth-adapters a {
  display: inline-block;
  width: 100%;
  height: 48px;
  border: 1px solid #306049;
  border-radius: 4px;
  text-align: center;
  line-height: 50px;
  font-size: 0;
  text-indent: -99999px;
  background-size: auto;
}
.wa-auth-adapters a img {
  display: none;
}
.wa-auth-adapters .wa-auth-adapter-google a {
  background: url("../img/google.svg") no-repeat center;
}
.wa-auth-adapters .wa-auth-adapter-facebook a {
  background: url("../img/facebook.svg") no-repeat center;
}

.signing__title {
  letter-spacing: -0.03em;
  font-weight: bold;
  font-size: 48px;
  text-transform: uppercase;
}

.my_profile .signing__title {
  font-size: 36px;
}

.my_profile .signing__title .hi {
  display: none;
}

.signing select {
  outline: none;
  height: 46px;
  max-height: 180px;
  max-width: 100%;
  min-width: 100%;
  border: none;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2392156863);
  margin-bottom: 20px;
}

.brc_popup.color_groups .item {
  display: inline-block;
  margin-right: 13px;
  margin-bottom: 13px;
}

.brc_popup.color_groups .item .color {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 2px solid #fff;
  border-radius: 50%;
}

.brc_popup.color_groups .item.selected .color {
  border-color: green;
}

.btn.reg {
  float: right;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 33px;
}

.field .main-menu__arrow {
  width: 20px;
  position: absolute;
  right: 3px;
  top: 3px;
  background: #FFF;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

.field select {
  position: relative;
  display: inline-block;
  appearance: none;
  overflow: hidden;
  background: url("../img/str_down.svg") no-repeat center right;
}

.p_head {
  align-items: baseline;
}

.p_head > div {
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.naviganion, .p_head > div > div {
  width: 160px;
}

.naviganion .hi {
  margin: 33px 0 64px;
  font-size: 16px;
}

.naviganion .menu a {
  display: block;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.naviganion .menu .active:after {
  content: " ";
  background: url("../img/str_r.svg") no-repeat left center;
  position: absolute;
  width: 10px;
  height: 5px;
  left: -32px;
  top: 9px;
}

.my_profile .signing__forms div.f_wth {
  width: calc(100% - 450px);
}

.my_profile .signing__inner {
  display: flex;
  justify-content: space-between;
}

.my_profile .signing__forms,
.my_profile .orders {
  width: calc(100% - 220px);
}

.account__table {
  display: table;
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.account__table .thead {
  display: table-header-group;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.account__table .thead > div {
  display: table-cell;
  text-align: center;
}

.account__table .tbody {
  display: table-row-group;
}

.account__table .tbody > div {
  display: table-row;
  height: 84px;
  position: relative;
}

.account__table .tbody .order_no {
  display: flex;
  height: 84px;
  align-items: center;
}

.account__table .tbody .order_no a {
  text-decoration: underline;
}

.account__table .tbody > div > div {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #bfbfbf;
}

.account__table .account-item i.icon {
  width: 37px;
  height: 44px;
  display: inline-block;
  margin-right: 34px;
  position: relative;
  background: #fff;
}

.account__table .account-item i.icon img {
  max-height: 100%;
  position: relative;
  z-index: 2;
  border: 1px solid #000;
}

.account__table .account-item i.icon.many:before,
.account__table .account-item i.icon.many:after {
  content: "";
  position: absolute;
  border: 1px solid #000;
  width: 37px;
  height: 44px;
  display: inline-block;
  z-index: 1;
  left: 4px;
  top: 5px;
  background: #fff;
}

.account__table .account-item i.icon.many:after {
  left: 8px;
  top: 10px;
  z-index: 0;
}

.account__table .status-wrapper {
  text-transform: uppercase;
  font-weight: bold;
}

.my_order .signing__forms .wa-form > div {
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 20px;
}

.my_order .signing__forms .wa-form > div > div:first-child {
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
}

.my_order .signing__forms .wa-form > div.ship img {
  display: none;
}

.my_order .products {
  padding-top: 20px;
}

.my_order .products .product {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 12px;
  max-width: 454px;
}

.my_order .products .name:first-child {
  padding-bottom: 20px;
}

.my_order .products .price {
  white-space: nowrap;
  font-size: 28px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #306049;
}

.my_order .products .poditog, .my_order .products .you_sale, .my_order .products .ship {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  height: 47px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 454px;
}

.my_order .products .itog {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #000;
  padding-top: 10px;
  max-width: 454px;
}

.my_order .products .you_sale div:last-child {
  font-size: 28px;
}

.my_order .products .itog div:last-child {
  color: #306049;
}

.my_order .signing__title {
  display: flex;
  align-items: center;
}

.signing__title .back {
  width: 48px;
  height: 48px;
  background: url("../img/str_l.svg") no-repeat center;
  cursor: pointer;
  display: block;
}

.signing__title .data {
  margin-right: 39px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.p-100 {
  padding-bottom: 100px;
}

.p-33 {
  padding-bottom: 33px;
}

.not-found__text {
  display: flex;
  align-items: center;
}

.not-found__text > div {
  max-width: 380px;
  margin-left: 70px;
}

.not-found__text div div {
  font-weight: bold;
  font-size: 48px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #306049;
  padding-bottom: 28px;
}

.not-found__text div span {
  font-size: 16px;
  margin-bottom: 40px;
  display: block;
}

.not-found__text .button {
  width: 217px;
  height: 48px;
  display: inline-block;
  background: #306049;
  line-height: 48px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.not-found.signup_column {
  justify-content: center;
}

.not-found.signup_column .sale {
  width: auto;
}

.wa-field.wa-field-vash_instagramm,
.wa-field.wa-field-data_rozhdeniya {
  width: 48%;
  float: right;
}

.wa-field.wa-field-vash_instagramm {
  float: left;
}

.wa-field.wa-field-data_rozhdeniya .wa-name {
  display: block;
  position: absolute;
  margin-top: -5px;
  font-size: 12px;
  color: #999;
}

@media screen and (max-width: 1870px) {
  .my_profile .checkout__social-sign-in > div:first-child {
    width: 100%;
  }
  .my_profile .signing a.social-link {
    margin-left: 0;
    margin-right: 22px;
  }
  .my_profile .signing__forms div.f_wth > div {
    bottom: 50px;
  }
}
@media screen and (max-width: 1441px) {
  .signup_column .sale {
    margin-left: 38px;
  }
}
@media screen and (max-width: 1300px) {
  .signup_column .sale {
    display: none;
  }
  .not-found.signup_column .sale {
    display: block;
  }
  .wa-signup-form {
    width: 100%;
    min-width: 100%;
  }
  .signing__forms > div > div:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 1010px) {
  .my_profile .signing__forms div.f_wth {
    width: 315px;
  }
}
@media screen and (max-width: 870px) {
  .signing__forms > div > div:nth-child(1) > div {
    bottom: 60px;
  }
  .signing a.social-link {
    margin-left: 0;
    margin-right: 22px;
  }
}
@media screen and (max-width: 768px) {
  .signup_column {
    flex-wrap: wrap;
    margin-right: 0;
  }
  .signing__forms > div {
    flex-wrap: wrap;
  }
  .signing__forms > div > div:first-child {
    width: 100%;
    margin: 10px 0;
  }
  .checkout__social-sign-in > div:first-child {
    width: 100%;
    text-align: center;
  }
  .signing .checkout__social-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
  }
  .signing a.social-link {
    width: 49%;
    margin: 0;
  }
  .account__table .account-item i.icon {
    display: none;
  }
  .my_orders .p_head > div {
    text-align: right;
  }
  .my_orders .p_head .logout {
    display: block;
  }
  .my_orders .signing__title {
    font-size: 20px;
  }
  .my_orders .signing__inner {
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .my_orders .naviganion {
    position: absolute;
    right: -250px;
    background: #FFF;
    transition: 0.3s;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 1;
    padding-left: 40px;
    width: 200px;
    padding-top: 27px;
    top: 0;
    height: 100%;
  }
  .my_orders .naviganion .hi {
    display: none;
  }
  .my_orders .naviganion.open {
    right: 0;
  }
  .my_orders .signing__forms,
  .my_orders .orders {
    width: 100%;
  }
  .my_orders .signing__title {
    text-align: left;
  }
  .my_orders .signing__title .hi {
    display: block;
    font-size: 16px;
    font-weight: normal;
    text-transform: initial;
  }
  .account__table .thead {
    display: none;
  }
  .account__table i.show {
    width: 20px;
    background: url("../img/str_down.svg") no-repeat center;
    display: block;
    height: 84px;
  }
  .account-item-mobile {
    border-bottom: 1px solid #bfbfbf;
    display: flex !important;
    flex-wrap: wrap;
    height: auto !important;
    min-height: 84px;
    padding: 0 16px;
  }
  .account__table .tbody > div.account-item-mobile > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .account__table .tbody .account-item-mobile div {
    border-bottom: 0;
  }
  .account-item-mobile div.hide > div {
    width: calc(100% - 100px);
    border-bottom: 1px solid #bfbfbf !important;
    float: left;
    align-items: end;
    text-align: right;
    padding-top: 21px;
    padding-bottom: 5px;
    line-height: 21px;
  }
  .account-item-mobile div.hide > div.title {
    width: 100px;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
  }
  .account-item-mobile div.hide > div.link {
    width: 100%;
    text-align: center;
    padding-bottom: 17px;
    border-bottom: 0 !important;
  }
  .account-item-mobile div.hide > div.link a {
    font-weight: bold;
    color: #306049;
    text-decoration: underline;
    text-transform: uppercase;
  }
  .account__table .open i.show {
    height: 56px;
  }
  .account__table .tbody .account-item-mobile.open div.str {
    position: absolute;
    bottom: 0;
    right: 25px;
    transform: rotate(180deg);
  }
  .account-item-mobile.open {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 0;
  }
  .account__table .tbody > div.account-item-mobile > div.hide {
    display: none;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }
  .my_order .signing__forms div.f_wth,
  .my_order .signing__forms > div.all_prod > div {
    width: 170px;
  }
  .my_order .signing__forms > div > div:nth-child(2) {
    width: calc(100% - 175px);
  }
  .not-found.signup_column .sale {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media screen and (max-width: 740px) {
  .my_order .signing__title {
    flex-wrap: wrap;
  }
  .my_profile .signing__title {
    font-size: 20px;
  }
  .my_order .signing__forms div.f_wth {
    display: none;
  }
  .signing__forms > div > div:nth-child(1),
  .my_order .signing__forms > div > div:nth-child(2),
  .my_order .signing__forms > div.all_prod > div {
    width: 100%;
  }
  .my_order .products .product {
    max-width: 345px;
  }
  .my_order .products .poditog, .my_order .products .you_sale, .my_order .products .ship, .my_order .products .itog {
    font-size: 12px;
    width: 100%;
  }
  .my_order .products .itog,
  .my_order .products .you_sale div:last-child,
  .my_order .products .price {
    font-size: 20px;
  }
  .p-100 {
    padding-bottom: 41px;
  }
  .signing__forms > div.p-33 {
    display: none;
  }
  .my_order .signing__forms .wa-form > div {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
  }
  .my_order .signing__forms .wa-form > div > div:first-child {
    width: 345px;
    border-bottom: 1px solid #bfbfbf;
    text-align: left;
  }
  .my_order .signing__forms .wa-form > div > div:last-child {
    font-size: 14px;
    text-align: left;
  }
  .signing__forms > div.all_prod > div:first-child {
    border-bottom: 1px solid #000;
  }
  .my_order .all_prod .products {
    text-align: left;
  }
}
@media screen and (max-width: 576px) {
  .btn.reg {
    float: none;
    width: 345px;
    max-width: 100%;
  }
  .signup_column .sale {
    display: none !important;
  }
  .not-found.signup_column .sale {
    display: block !important;
  }
  .signing {
    text-align: center;
  }
  .signing__inner h3 {
    text-align: left;
  }
  .signup_column .sale {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0;
    margin-top: 30px;
  }
  .p_head {
    align-items: center;
  }
  .p_head > div {
    text-align: right;
  }
  .p_head .logout {
    display: block;
  }
  .my_profile .signing__title {
    font-size: 20px;
  }
  .my_profile .signing__inner {
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .naviganion {
    position: absolute;
    right: -250px;
    background: #FFF;
    transition: 0.3s;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 1;
    padding-left: 40px;
    width: 200px;
    padding-top: 27px;
    top: 0;
    height: 100%;
  }
  .naviganion .hi {
    display: none;
  }
  .naviganion.open {
    right: 0;
  }
  .my_profile .signing__forms,
  .my_profile .orders {
    width: 100%;
  }
  .my_profile .signing__title {
    text-align: left;
  }
  .my_profile .signing__title .hi {
    display: block;
    font-size: 16px;
    font-weight: normal;
    text-transform: initial;
  }
  .account-item-mobile {
    padding: 0;
  }
}
.top_sale {
  text-align: left;
}

.top_sale .u_sale {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}

.top_sale .line .sub_line {
  display: flex;
  justify-content: space-between;
}

.top_sale .line .sub_line > div {
  width: 33%;
  background: rgba(48, 96, 73, 0.07);
  height: 6px;
}

.top_sale .line .sub_line > div.active {
  background: #306049;
}

.top_sale .procent {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #306049;
  display: flex;
}

.top_sale .procent > div {
  text-align: left;
  margin-top: 10px;
  width: 33%;
}

.top_sale .procent > div > span {
  float: right;
  display: inline-block;
}

.top_sale strong {
  margin-top: 30px;
  margin-bottom: 11px;
  display: inline-block;
}

.top_sale {
  margin-bottom: 46px;
}

.signing__forms > div.min_top_sale > div {
  width: 100%;
  float: left;
  font-size: 16px;
  font-weight: normal;
  display: block;
  text-transform: initial;
}

.signing__forms > div.min_top_sale .top_sale {
  position: relative;
  height: auto;
  bottom: initial;
}

.signing__forms > div.min_top_sale,
.my_orders .min_top_sale {
  border-bottom: 0;
  margin-bottom: 0;
  display: none;
}

.flexdiscount-product-discount {
  width: 100%;
  display: block;
}

.wa-field-socialnetwork {
  float: left;
}

@media screen and (max-width: 1300px) {
  .signing__forms > div.min_top_sale,
  .my_orders .min_top_sale {
    display: block;
  }
  .sale .top_sale {
    display: none;
  }
  .my_orders .min_top_sale {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
  }
}
@media screen and (max-width: 550px) {
  .my_order .signing__forms .wa-form > div > div:first-child {
    width: 140px;
  }
  .my_order .signing__forms .wa-form > div > div:last-child {
    width: calc(100% - 140px);
    border-bottom: 1px solid #bfbfbf;
  }
}
@media screen and (max-width: 453px) {
  .signup_column .sale {
    display: block !important;
  }
  .wa-field.wa-field-vash_instagramm, .wa-field.wa-field-data_rozhdeniya {
    width: 100%;
    float: left;
  }
}
[name="profile[vash_instagramm]"] {
  padding-left: 20px;
}

.wa-field-vash_instagramm .wa-value {
  position: relative;
}

.wa-field-vash_instagramm .wa-value:before {
  content: "@";
  position: absolute;
  left: 0;
  top: 13px;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.wa-login-form-wrapper .wa-name, .wa-login-form-wrapper .wa-signup-url, .wa-login-form-wrapper .wa-login-submit {
  display: none;
}

.login-block-wrapper {
  margin: 0;
  padding: 0;
}

.login-block .title {
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #000000;
  padding-bottom: 14px;
  border-bottom: 1px solid #000;
  width: 100%;
  margin-bottom: 14px;
}
.login-block .registration-seciton {
  margin-bottom: 44px;
}
.login-block .registration-seciton .btn {
  width: 100%;
  max-width: 453px;
  text-align: center;
  color: #000;
  border-color: #000;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-block .discount-block {
  width: 100%;
  margin-bottom: 30px;
}
.login-block .discount-block img {
  width: 100%;
}
.login-block .social-login {
  text-align: left;
}
.login-block .social-login .text {
  margin-top: 23px;
  font-weight: 300;
  font-size: 14px;
  line-height: 12px;
  margin-bottom: 20px;
}
.login-block .social-login .checkout__social-links {
  display: grid;
  gap: 0 14px;
  grid-template-columns: auto auto;
  justify-content: initial;
  margin-bottom: 51px;
  width: 100% !important;
}
.login-block .social-login .checkout__social-links > * {
  display: block;
  width: 100%;
  margin: 0;
}
.login-block .login-form-section .wa-login-forgotpassword-url {
  display: none;
}
.login-block .login-form-section .login-form__forgot-password {
  color: #306049;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.login-block .bottom.buttons {
  margin-top: 43px;
  display: grid;
  gap: 0 15px;
  grid-template-columns: auto auto;
}
.login-block .bottom.buttons > * {
  display: block;
  width: 100%;
}

.login-page-content .login-block-wrapper {
  max-width: 768px;
  margin: 0 auto;
}
.login-page-content .login-block-wrapper .registration-seciton a {
  margin: 0 auto;
}
.login-page-content .login-block-wrapper .discount-block img {
  width: 100%;
}
.login-page-content .login-block-wrapper .buttons .cancel {
  display: none;
}

.login-window-wrapper {
  display: none;
  overflow: auto;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: 493px;
  padding: 15px 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 20002;
}
.login-window-wrapper .login-window.popup {
  grid-template-rows: 1fr;
  display: block;
  gap: 0;
  height: auto;
}

.search-window-wrapper {
  position: fixed;
  right: 0;
  bottom: 0;
  display: none;
  width: 100%;
  height: 100%;
  max-width: 493px;
  padding: 15px 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 20;
}
.search-window-wrapper .cat-item-badges {
  display: none;
}
.search-window-wrapper .popup .top {
  border-bottom: none;
}
body.mobile .search-window-wrapper {
  padding: 15px;
}
body.mobile .search-window-wrapper .title {
  margin-bottom: 15px;
}
.search-window-wrapper .content {
  height: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.search-window-wrapper .bottom {
  max-height: 111px;
}
.search-window-wrapper .bottom .search-input-wrapper {
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
  position: absolute;
  top: -1px;
  width: calc(100% - 40px);
  overflow: hidden;
}
.search-window-wrapper .bottom .buttons {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 20px;
  display: grid;
  gap: 0 20px;
  grid-template-columns: 1fr 1fr;
}
.search-window-wrapper .bottom .buttons .btn {
  width: 100% !important;
}
.search-window-wrapper .bottom .search-input {
  width: 100%;
  padding: 16px 0 12px 0;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
}
.search-window-wrapper .product-slider-item__content {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D8D8D8;
}
body.mobile .search-window-wrapper .product-slider-item__content {
  margin-bottom: 15px;
}
.search-window-wrapper .product-slider-item__content .product-image {
  display: block;
  margin-right: 13px;
}
.search-window-wrapper .product-slider-item__content .product-image img {
  max-width: 80px;
  max-height: 80px;
}
.search-window-wrapper .product-slider-item__content .product-name {
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
body.mobile .search-window-wrapper .product-slider-item__content .product-name {
  margin-bottom: 28px;
  font-size: 11px;
  line-height: 16px;
}
.search-window-wrapper .product-slider-item__content .prices {
  color: #306049;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.03em;
}
.search-window-wrapper .product-slider-item__content .prices .old-price {
  margin-right: 10px;
}
body.mobile .search-window-wrapper .product-slider-item__content .prices {
  font-size: 20px;
  line-height: 20px;
}

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


/* /wa-data/public/site/themes/beautis/css/header.css @ 2024-06-13T18:06:37+03:00 */

@charset "UTF-8";
header {
  padding: 20px 20px 12px;
}
header a {
  text-decoration: none;
}
header * {
  color: #000;
}
header .login-window-trigger {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg aria-label='Личный кабинет' width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M11 19V14C11 11.239 13.239 9 16 9C18.761 9 21 11.239 21 14V19' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M7.43994 24.409L10.8779 23.358C12.1389 22.973 12.9999 21.808 12.9999 20.489V19' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M24.56 24.409L21.122 23.358C19.861 22.973 19 21.808 19 20.489V19' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
header .header-cart > a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg aria-label='Перейти в корзину' width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.3329 27H6.66692L4.67792 16.561C4.32592 14.713 5.74292 13 7.62492 13H24.3739C26.2559 13 27.6729 14.713 27.3209 16.561L25.3329 27Z' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M10 10C10 6.686 12.686 4 16 4C19.314 4 22 6.686 22 10' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
header .cart-my-wrapper .search-trigger {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75 14.375C11.8566 14.375 14.375 11.8566 14.375 8.75C14.375 5.6434 11.8566 3.125 8.75 3.125C5.6434 3.125 3.125 5.6434 3.125 8.75C3.125 11.8566 5.6434 14.375 8.75 14.375Z' stroke='black' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M14.0625 14.0625L17.1875 17.1875' stroke='black' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
}
header .main-menu__link.search-trigger .main-menu__link-text {
  display: inline-block;
  height: 20px;
  padding-left: 22px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75 14.375C11.8566 14.375 14.375 11.8566 14.375 8.75C14.375 5.6434 11.8566 3.125 8.75 3.125C5.6434 3.125 3.125 5.6434 3.125 8.75C3.125 11.8566 5.6434 14.375 8.75 14.375Z' stroke='black' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M14.0625 14.0625L17.1875 17.1875' stroke='black' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
}
header .mobile-block.call-trigger {
  display: block;
  float: left;
  width: 32px;
  height: 32px;
  margin-right: 14px;
  position: relative;
  top: 4px;
}
header .mobile-block.call-trigger .phone3, header .mobile-block.call-trigger .phone2 {
  position: absolute;
  right: 7px;
}
header .mobile-block.call-trigger .phone2 {
  top: 5px;
  right: 12px;
}
header .mobile-block.call-trigger .rotateable {
  transition: all 100ms;
}
header .cart-my-wrapper .menu-trigger {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='33' height='32' viewBox='0 0 33 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 16H28.5' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M4.5 22H28.5' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M4.5 10H28.5' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
}
header .top {
  margin-bottom: 15px;
}
header .top .header-contacts .tel {
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
}
header .top .header-contacts .tel:hover {
  color: #306049;
}
header .top .header-contacts .time {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 8px;
}
header .top .header-contacts .callback {
  position: relative;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
}
header .top .header-contacts .callback a:hover div {
  color: #306049;
}
header .top .header-contacts .callback a {
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.004 11.8459L16.7859 12.7722C16.9046 13.4522 16.9078 14.084 16.7803 14.6415C16.6584 15.1884 16.4121 15.6615 16.0378 16.0353C14.6921 17.3809 12.049 17.0553 9.41215 15.4378C8.49402 14.8715 7.57652 14.1515 6.71277 13.2878C5.84902 12.424 5.12652 11.5034 4.56277 10.5822C2.94465 7.95092 2.61902 5.3078 3.96465 3.96217C4.3384 3.58842 4.81152 3.34155 5.3584 3.21967C5.91652 3.09217 6.5484 3.0953 7.22777 3.21405L8.15152 6.9928L6.69527 8.44905C7.25902 9.36967 7.98152 10.2903 8.84527 11.1547C9.70902 12.019 10.6271 12.7384 11.5446 13.3047L13.004 11.8459Z' stroke='black' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M10.625 6.875C12.0056 6.875 13.125 7.99437 13.125 9.375' stroke='black' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M10.625 3.75C13.7319 3.75 16.25 6.26812 16.25 9.375' stroke='black' stroke-width='1.5' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  padding-left: 21px;
}
header .top .header-contacts .callback a div {
  display: block;
  float: right;
  margin-left: 4px;
  font-weight: 700;
  text-decoration: underline;
}
header .bottom {
  background: #fff;
}
header .bottom .nav {
  position: relative;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
header .bottom .main-menu__wrapper {
  height: 48px;
  line-height: 48px;
}
header .bottom .main-menu__wrapper .main-menu .mini-logo {
  display: none;
}
@media (min-width: 1200px) and (max-width: 1439px) {
  header .bottom .main-menu__wrapper .main-menu .mini-logo {
    display: none;
  }
}
@media (min-width: 1920px) {
  header .bottom .main-menu__wrapper .main-menu .mini-logo {
    display: initial;
  }
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list {
  position: relative;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item {
  float: left;
  margin-right: 20px;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item.hover .main-menu__submenu {
  position: absolute;
  top: 49px;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 600px;
  overflow: auto;
  display: block;
  background: #FFE5E6;
  z-index: 3;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu {
  display: none;
  padding: 30px 30px 38px;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.with-childs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 15px;
}
@media (min-width: 1440px) {
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.with-childs {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 20px;
  }
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.with-childs .menu-item__wrapper {
  margin-bottom: 10px;
  width: 100%;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.with-childs .menu-item__wrapper .submenu__item-title {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.with-childs .subsubmenu .subsubmenu__item-li-link {
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.with-childs .subsubmenu .subsubmenu__item-li-link:hover {
  color: #3C5F4B;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.without-childs.before-exists {
  margin-top: 30px;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.without-childs .submenu__item {
  display: inline-block;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.without-childs .submenu__item:not(:last-child) {
  margin-right: 8px;
  padding-right: 32px;
  position: relative;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.without-childs .submenu__item:not(:last-child):after {
  position: absolute;
  right: 0;
  top: 0;
  content: "•";
  color: #DC8385;
  display: block;
  font-weight: bold;
  font-size: 36px;
  line-height: 36px;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.without-childs .submenu__item a {
  display: inline-block;
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__submenu .submenu__list.without-childs .submenu__item a:hover {
  color: #3C5F4B;
}
@media (max-width: 1023px) {
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item.search-menu-item {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1404px) {
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item.search-menu-item .main-menu__link-text {
    font-size: 0 !important;
  }
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item.search-menu-item .main-menu__link-text .icon {
  position: relative;
  bottom: -5px;
  margin-right: 4px;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .menu-item__wrapper .main-menu__link-text {
  display: inline-block;
  text-transform: uppercase;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
}
header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .menu-item__wrapper .main-menu__link-text > i {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 1L6 11L3.5 1H8.5Z' fill='black'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  margin-left: 2px;
  position: relative;
  bottom: -1px;
  display: inline-block;
  width: 12px;
  height: 12px;
}
@media (min-width: 1009px) {
  header .bottom .main-menu__wrapper .main-menu .main-menu__list {
    display: flex;
    flex-direction: row;
  }
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .search-menu-item {
    display: none;
  }
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item {
    float: none;
    margin-right: 10px;
  }
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__link-text {
    font-size: 11px !important;
  }
}
@media (min-width: 1084px) {
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item {
    margin-right: 11px;
  }
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__link-text {
    font-size: 11.5px !important;
  }
}
@media (min-width: 1170px) {
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item {
    margin-right: 15px;
  }
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__link-text {
    font-size: 12px !important;
  }
}
@media (min-width: 1240px) {
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item .main-menu__link-text {
    font-size: 14px !important;
  }
}
@media (min-width: 1185px) {
  header .bottom .main-menu__wrapper .main-menu .main-menu__list .search-menu-item {
    display: block !important;
  }
}
header .bottom .main-menu__wrapper .menu_brands {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px 8px;
}
header .bottom .main-menu__wrapper .menu_brands .menu-brand {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  height: 68px;
}
header .bottom .main-menu__wrapper .menu_brands .menu-brand:hover {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}
header .bottom .main-menu__wrapper .menu_brands .menu-brand img {
  height: 100%;
  margin: 0 auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media (min-width: 1200px) {
  header .bottom .main-menu__wrapper .menu_brands .menu-brand {
    height: 80px;
  }
}
@media (max-width: 1023px) {
  header .bottom .main-menu__wrapper .menu_brands {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
}
header .bottom .main-mobile-menu-wrapper {
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}
header .bottom .main-mobile-menu-wrapper .darkbtn {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.36);
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu {
  overflow: auto;
  position: absolute;
  width: 315px;
  background: #fff;
  height: 100%;
  padding: 15px;
  z-index: 6;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .info-settings__btn {
  width: 100%;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .login-window-trigger {
  width: auto;
  background-image: unset;
  font-weight: bold;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .login-window-trigger::before {
  vertical-align: middle;
  content: url("data:image/svg+xml,%3Csvg aria-label='Личный кабинет' width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M11 19V14C11 11.239 13.239 9 16 9C18.761 9 21 11.239 21 14V19' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M7.43994 24.409L10.8779 23.358C12.1389 22.973 12.9999 21.808 12.9999 20.489V19' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M24.56 24.409L21.122 23.358C19.861 22.973 19 21.808 19 20.489V19' stroke='black' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .close-btn {
  text-align: center;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .close-btn i {
  display: inline-block;
  width: 33px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='33' height='32' viewBox='0 0 33 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.01562 7.51562L24.9862 24.4862' stroke='white' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M8.01562 24.4844L24.9862 7.51381' stroke='white' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer {
  width: 315px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFE5E6;
  z-index: 7;
  height: 100%;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .back-btn i {
  display: inline-block;
  width: 33px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='33' height='32' viewBox='0 0 33 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9844 7.5L4.49998 15.9996L12.9853 24.4849' stroke='white' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M4.5 16H28.5' stroke='white' stroke-width='2' stroke-miterlimit='10'%3E%3C/path%3E%3C/svg%3E");
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .menu-list ul {
  list-style: none;
}
@media (min-width: 576px) {
  header .bottom .main-mobile-menu-wrapper .main-mobile-menu {
    width: 484px;
  }
  header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer {
    width: 484px;
  }
}
@media (min-width: 768px) {
  header .bottom .main-mobile-menu-wrapper .main-mobile-menu {
    width: 649px;
  }
  header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer {
    width: 649px;
  }
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer {
  height: 100%;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .close-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .menu-list .menu-list__item {
  display: block;
  margin-bottom: 8px;
  width: 100%;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .menu-list .menu-list__item > .cat-name {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info {
  padding-bottom: 20px;
  margin-top: 30px;
}
@media (min-width: 576px) {
  header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info {
    margin-top: 82px;
  }
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info > * {
  line-height: initial;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info .phone {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info .work-days {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 10px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info .mail-to {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info .social {
  margin-bottom: 26px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info .social * {
  color: #000;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info .social a {
  display: block;
  width: 100%;
  font-weight: bold;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info .text {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 10px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .first-layer .contact-info .copyright {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .second-layer-content {
  overflow: auto;
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 15px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .back-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .cat-name {
  font-weight: bold;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer ul {
  padding: 0;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer ul li {
  line-height: initial;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .submenu .submenu__item {
  padding-top: 8px;
  border-top: 1px solid #000;
  margin-bottom: 8px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .submenu .submenu__item:last-child {
  border-bottom: 1px solid #000;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .submenu .submenu__item > a.sub-name {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .submenu .submenu__item .subsub {
  margin-top: 8px;
  margin-bottom: 8px;
}
header .bottom .main-mobile-menu-wrapper .main-mobile-menu .second-layer .submenu .submenu__item .subsub a {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
header .bottom .cart-my-wrapper {
  padding-top: 8px;
}
@media (min-width: 576px) {
  header .bottom .cart-my-wrapper {
    padding-right: 54px;
  }
}
@media (min-width: 768px) {
  header .bottom .cart-my-wrapper {
    width: 546px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  header .bottom .cart-my-wrapper {
    width: auto;
    padding-right: 0;
  }
  header .bottom .cart-my-wrapper .search-trigger {
    display: block;
    float: left;
    margin-right: 14px;
  }
}
@media (min-width: 1200px) {
  header .bottom .cart-my-wrapper .search-trigger {
    display: none;
  }
}
header .bottom .cart-my-wrapper .header-cart {
  display: inline-block;
  position: relative;
  margin-left: 14px;
  margin-right: 8px;
}
header .bottom .cart-my-wrapper .header-cart .count {
  position: absolute;
  width: 17px;
  height: 17px;
  background: #ea7d83;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  line-height: 17px;
  top: 1px;
  right: -3px;
}
header .bottom .cart-my-wrapper .header-cart.empty .count {
  display: none;
}

body.fixed-header .js-sticky-nav {
  position: fixed;
  padding: 0 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}
body.fixed-header main {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  body.fixed-header header .bottom .cart-my-wrapper .search-trigger {
    display: none;
  }
  body.fixed-header header .bottom .main-menu__wrapper .main-menu .main-menu__list .main-menu__item.search-menu-item {
    display: initial;
  }
}
@media (min-width: 1200px) {
  body.fixed-header header .bottom .cart-my-wrapper .call-trigger {
    display: block;
    float: left;
    margin-right: 14px;
  }
}

main .breadcrumbs * {
  color: #000;
  font-size: 12px;
  line-height: 20px;
}
main .breadcrumbs a {
  text-decoration: none;
}
main .breadcrumbs a:hover {
  color: #306049;
}
main .breadcrumbs .breadcrumbs__list .breadcrumbs__item:not(:last-child) {
  margin-right: 3px;
}
main .breadcrumbs .breadcrumbs__list .breadcrumbs__item:not(:last-child)::after {
  content: " —";
}

body.mobile main .breadcrumbs .breadcrumbs-plugin__item-wrapper, body.mobile main .breadcrumbs .breadcrumbs-plugin__item-wrapper .breadcrumbs-plugin__item__arrow {
  font-weight: bold;
}
body.mobile main .breadcrumbs .breadcrumbs-plugin__item-wrapper:nth-last-child(-n+2) {
  display: initial;
}
body.mobile main .breadcrumbs .breadcrumbs-plugin__item-wrapper:nth-last-child(-n+1) {
  display: initial;
}
body.mobile main .breadcrumbs .breadcrumbs-plugin__item-wrapper:nth-last-child(-n+1) .breadcrumbs-plugin__item__arrow {
  display: initial;
}
body.mobile.fixed-header .js-sticky-nav {
  padding: 0 15px;
  z-index: 12;
}

@media (max-width: 1023px) {
  header {
    padding-top: 15px !important;
  }
  header .header-logo {
    height: 72px;
  }
  header .header-logo a, header .header-logo svg {
    height: 72px;
  }
  header .top.grid {
    display: block;
    margin-bottom: 20px;
  }
  header .top.grid .header-logo svg {
    width: 100%;
  }
  header .top.grid .header-contacts {
    margin-bottom: 10px;
  }
  header .bottom .header-cart {
    margin-left: 0 !important;
  }
  header .bottom .main-menu__wrapper {
    height: auto !important;
  }
  header .menu-trigger {
    margin-left: 8px;
  }
  header .cart-my-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-top: 9px !important;
    padding-bottom: 9px;
    height: 48px;
  }
  header .cart-my-wrapper > * {
    float: none;
  }
  header .cart-my-wrapper .mobile-block.call-trigger {
    margin-right: 0 !important;
  }
  header .cart-my-wrapper .info-settings__btn--account {
    display: none;
  }
  header, footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  main > * {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.show-more-block {
  position: relative;
}
.show-more-block > img {
  z-index: 2;
}
.show-more-block > .show-more-svg-block {
  z-index: 1;
  top: -111px;
  position: relative;
}
.show-more-block .arc-heading__subheading > * {
  -webkit-text-size-adjust: 100%;
  text-transform: uppercase;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  fill: #000;
  letter-spacing: 7px;
}

.mobile.action-category .breadcrumbs-plugin.breadcrumbs > *:nth-child(3) {
  display: none;
}

.closeModal {
  height: 18px;
  width: 18px;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity ease 0.5s;
}
.closeModal:hover {
  opacity: 0.4;
}
.closeModal::before, .closeModal::after {
  content: "";
  position: absolute;
  top: 10px;
  display: block;
  width: 18px;
  height: 2px;
  background: #000;
}
.closeModal::before {
  transform: rotate(45deg);
}
.closeModal::after {
  transform: rotate(-45deg);
}

#bingc-phone-button.bingc-show {
  visibility: hidden;
}

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


/* /wa-data/public/site/themes/beautis/css/footer.css @ 2025-02-23T18:40:29+02:00 */

#mini-cart {
  z-index: 10000;
  /*.content-data.jspScrollable {
    position: relative;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 36px;
      height: 1px;
      background-color: red;
    }
  }*/
}
#mini-cart .top {
  position: relative;
}
#mini-cart .top .cancel {
  position: absolute;
  right: 0;
  top: 0;
}
#mini-cart .old-price {
  margin-right: 15px;
}
body:not(.action-order) #mini-cart {
  position: fixed;
  top: 0;
  right: -8px;
  display: none;
  width: 100%;
  height: 100%;
  max-width: 494px;
  padding: 15px 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 200002 !important;
}
body.mobile #mini-cart {
  position: fixed !important;
  height: 100% !important;
  width: 100% !important;
  right: 0 !important;
  top: 0 !important;
}
body.mobile.action-order #mini-cart {
  z-index: 15;
}
#mini-cart.empty .popup {
  grid-template-rows: 33px 1fr 78px;
}
#mini-cart.empty .popup .top {
  border-bottom: 1px solid #000;
}
#mini-cart.empty .content-data {
  display: flex;
  align-items: center;
}
#mini-cart.empty .bottom {
  border: none;
  display: none;
}
#mini-cart.empty .bottom .in-total {
  display: none;
}
#mini-cart:not(.empty) .jspPane {
  border-top: 1px solid #000;
}
#mini-cart .content {
  overflow: auto;
}
#mini-cart .content .content-data {
  min-width: 100%;
  min-height: 100%;
}
#mini-cart .content .content-data .empty-message {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 100%;
}
#mini-cart .content .free-shipping-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
#mini-cart .content .free-shipping-info .free-shipping-block {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-bottom: 6px;
  padding-top: 6px;
  padding-right: 8px;
  margin-bottom: 20px;
  background: #EBCBCD;
}
#mini-cart .content .free-shipping-info .free-shipping-block .left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 69px;
  min-height: 69px;
  margin: 0;
}
#mini-cart .content .free-shipping-info .free-shipping-block:not(.reached) .left {
  background: #FFE0E2;
}
#mini-cart .content .free-shipping-info .free-shipping-block .right {
  padding-top: 7px;
  padding-right: 12px;
  width: 100%;
  margin-left: 18px;
}
#mini-cart .content .free-shipping-info .free-shipping-block .right .text-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#mini-cart .content .free-shipping-info .free-shipping-block .right .text-wrapper .text {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
body.mobile #mini-cart .content .free-shipping-info .free-shipping-block .right .text-wrapper .text {
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
#mini-cart .content .free-shipping-info .free-shipping-block .right .text-wrapper .more {
  display: flex;
  align-items: center;
  text-align: right;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
body.mobile #mini-cart .content .free-shipping-info .free-shipping-block .right .text-wrapper .more {
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#mini-cart .content .free-shipping-info .free-shipping-block .right .status-bar {
  position: relative;
}
#mini-cart .content .free-shipping-info .free-shipping-block .right .status-bar .goal {
  background: #FB9FA1;
  height: 6px;
  width: 100%;
}
#mini-cart .content .free-shipping-info .free-shipping-block .right .status-bar .current {
  background: #306049;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
#mini-cart .content .free-shipping-info .free-shipping-block.block-3 .icon {
  display: block;
  width: 64px;
  height: 64px;
  background-image: url("data:image/svg+xml,%3Csvg width='54' height='24' viewBox='0 0 54 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.7375 3.31828L23.1291 20.7291H18.7664L22.3748 3.31828H26.7375ZM45.0959 14.5593L47.3919 8.02067L48.7138 14.5593H45.0959ZM49.963 20.7291H54L50.477 3.31828H46.7515C45.9134 3.31828 45.2082 3.821 44.8935 4.5963L38.3487 20.7291H42.9296L43.8388 18.1289H49.4365L49.963 20.7291ZM38.5764 15.0441C38.5954 10.4478 32.419 10.1964 32.4632 8.14309C32.4759 7.51795 33.0531 6.85528 34.3133 6.6839C34.9395 6.59902 36.6615 6.53536 38.6159 7.46409L39.3813 3.77203C38.3313 3.37867 36.9809 3 35.3 3C30.9879 3 27.9519 5.3667 27.9266 8.75517C27.8997 11.2622 30.0929 12.6594 31.7469 13.4935C33.4468 14.3471 34.0176 14.8939 34.0097 15.6561C33.9987 16.8248 32.653 17.3406 31.3991 17.3602C29.2043 17.3961 27.9329 16.7481 26.9178 16.2601L26.1271 20.0745C27.1455 20.5577 29.0272 20.9771 30.98 21C35.5625 21.0016 38.5622 18.6627 38.5764 15.0441ZM20.5026 3.31828L13.4328 20.7291H8.82026L5.34149 6.83406C5.13119 5.97715 4.94776 5.66377 4.30419 5.30305C3.25739 4.71708 1.52433 4.1654 0 3.82263L0.104363 3.31665H7.52837C8.47397 3.31665 9.32627 3.96627 9.54132 5.09086L11.3787 15.1665L15.9185 3.31502H20.5026V3.31828Z' fill='black'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position-y: center;
}
#mini-cart .content .free-shipping-info .free-shipping-block.reached {
  background: #306049;
}
#mini-cart .content .free-shipping-info .free-shipping-block.reached.block-3 {
  display: none;
}
#mini-cart .content .free-shipping-info .free-shipping-block.reached * {
  color: #fff !important;
}
#mini-cart .content .free-shipping-info .free-shipping-block.reached .icon:not(.reached), #mini-cart .content .free-shipping-info .free-shipping-block.reached .text > *:not(.text_reached), #mini-cart .content .free-shipping-info .free-shipping-block.reached .more, #mini-cart .content .free-shipping-info .free-shipping-block.reached .status-bar {
  display: none !important;
}
#mini-cart .content .free-shipping-info .free-shipping-block.reached .reached {
  display: initial !important;
}
#mini-cart .content .free-shipping-info .free-shipping-block .reached {
  display: none;
}
#mini-cart .content .free-shipping {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 6px 8px;
  margin-bottom: 20px;
  background: #FBE6E6;
}
#mini-cart .content .free-shipping.reached {
  background: #306049;
}
#mini-cart .content .free-shipping.reached * {
  color: #fff !important;
}
#mini-cart .content .free-shipping.reached .icon:not(.reached), #mini-cart .content .free-shipping.reached .text > *:not(.text_reached), #mini-cart .content .free-shipping.reached .more, #mini-cart .content .free-shipping.reached .status-bar {
  display: none !important;
}
#mini-cart .content .free-shipping.reached .reached {
  display: initial !important;
}
#mini-cart .content .free-shipping .reached {
  display: none;
}
#mini-cart .content .free-shipping .left {
  margin-right: 18px;
}
#mini-cart .content .free-shipping .right {
  padding-top: 7px;
  padding-right: 12px;
  width: 100%;
}
#mini-cart .content .free-shipping .right .text-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#mini-cart .content .free-shipping .right .text-wrapper .text {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
body.mobile #mini-cart .content .free-shipping .right .text-wrapper .text {
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}
#mini-cart .content .free-shipping .right .text-wrapper .more {
  display: flex;
  align-items: center;
  text-align: right;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
body.mobile #mini-cart .content .free-shipping .right .text-wrapper .more {
  font-style: normal;
  font-weight: bold;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#mini-cart .content .free-shipping .right .status-bar {
  position: relative;
}
#mini-cart .content .free-shipping .right .status-bar .goal {
  background: #FFA7AC;
  height: 6px;
  width: 100%;
}
#mini-cart .content .free-shipping .right .status-bar .current {
  background: #306049;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
#mini-cart .content .product {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}
#mini-cart .content .product .product-container {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
}
#mini-cart .content .product .product-container .remove {
  position: absolute;
  top: 0;
  right: 0;
}
#mini-cart .content .product .product-container .left {
  width: 80px;
  margin-right: 10px;
}
#mini-cart .content .product .product-container .left img {
  max-width: 80px;
  max-height: 80px;
  overflow: hidden;
}
#mini-cart .content .product .product-container .right {
  width: 100%;
}
#mini-cart .content .product .product-container .right .product-name {
  padding-right: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
body.mobile #mini-cart .content .product .product-container .right .product-name {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
}
#mini-cart .content .product .product-container .right .item-form-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
#mini-cart .content .product .product-container .right .item-form-wrapper .item-form {
  display: flex;
  align-items: center;
  margin-top: 4px;
}
#mini-cart .content .product .product-container .right .item-form-wrapper .item-form .quantity {
  width: 40px;
  height: 18px;
  border: none;
  outline: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
body.mobile #mini-cart .content .product .product-container .right .item-form-wrapper .item-form .quantity {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
}
#mini-cart .content .product .product-container .right .item-form-wrapper .item-form .plus-minus-btn {
  position: relative;
  top: 3px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
#mini-cart .content .product .product-container .right .item-form-wrapper .item-form .plus-minus-btn.minus {
  padding-left: 0;
}
@media (max-width: 500px) {
  #mini-cart .content .product .product-container .right .item-form-wrapper .item-form .quantity {
    width: 20px;
  }
}
#mini-cart .content .product .product-container .right .item-form-wrapper .item-price {
  display: flex;
}
#mini-cart .content .product .product-container .right .item-form-wrapper .item-price .old-price * {
  color: #fff !important;
}
#mini-cart .content .product .product-container .right .item-form-wrapper .item-price .price {
  margin-left: 15px;
}
#mini-cart .content .product .product-container .right .item-form-wrapper .item-price * {
  color: #306049;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.03em;
}
body.mobile #mini-cart .content .product .product-container .right .item-form-wrapper .item-price * {
  font-size: 20px;
  line-height: 20px;
}
@media (max-width: 374px) {
  #mini-cart .content .product .product-container .right .item-form-wrapper {
    flex-direction: column;
  }
  #mini-cart .content .product .product-container .right .item-form-wrapper .item-price {
    margin-top: 15px;
  }
}
#mini-cart .content .product.removed .product-container {
  display: none;
}
#mini-cart .content .product .product-removed-block .product-deleted-text, #mini-cart .content .product .product-removed-block .product-name {
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #EA7D83;
}
body.mobile #mini-cart .content .product .product-removed-block .product-deleted-text, body.mobile #mini-cart .content .product .product-removed-block .product-name {
  font-size: 11px;
  line-height: 16px;
}
#mini-cart .content .product .product-removed-block .product-deleted-text .product-name, #mini-cart .content .product .product-removed-block .product-name .product-name {
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.mobile #mini-cart .content .product .product-removed-block .product-deleted-text .product-name, body.mobile #mini-cart .content .product .product-removed-block .product-name .product-name {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
}
#mini-cart .content .product .product-removed-block .return-product {
  margin-top: 26px;
  color: #306049;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
}
body.mobile #mini-cart .content .product .product-removed-block .return-product {
  font-size: 11px;
  line-height: 16px;
}
#mini-cart .bottom {
  padding-top: 20px;
  border-top: 1px solid #000;
}
#mini-cart .bottom .in-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}
#mini-cart .bottom .in-total .in-total-text, #mini-cart .bottom .in-total .in-total-value {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.03em;
}
body.mobile #mini-cart .bottom .in-total .in-total-text, body.mobile #mini-cart .bottom .in-total .in-total-value {
  font-size: 20px;
  line-height: 20px;
}
#mini-cart .bottom .in-total .in-total-value * {
  color: #306049;
}
#mini-cart .bottom button {
  width: 100%;
}
body.mobile #mini-cart .bottom button {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#mini-cart .popup {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#mini-cart .popup .top {
  flex-shrink: 0;
  grid-area: top;
  height: 33px;
  max-height: 33px;
  padding-bottom: 13px;
  text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  line-height: 20px;
}
#mini-cart .popup .content {
  flex: 1;
  grid-area: content;
  margin-bottom: 20px;
  width: 100%;
}
#mini-cart .popup .bottom {
  flex-shrink: 0;
  grid-area: bottom;
}
#mini-cart .popup .bottom .buttons {
  display: flex;
  justify-content: space-between;
}
#mini-cart .popup .bottom .buttons .btn {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 0.04em;
}
body.mobile #mini-cart .popup .bottom .buttons .btn {
  width: 100%;
}

body > #mini-cart .free-shipping-info .free-shipping-block.block-2, body > #mini-cart .free-shipping-info .free-shipping-block.block-3 {
  display: none !important;
}

#cart-wrapper.js-payment-method__card .free-shipping-block.block-2 {
  display: none;
}
#cart-wrapper.js-payment-method__cache .free-shipping-block.block-1 {
  display: none;
}

footer {
  padding: 20px;
  margin-top: 50px;
  background: #306049;
}
footer * {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
footer .footer-logo .icon {
  width: 100%;
}
@media (min-width: 576px) {
  footer .footer-logo .icon {
    width: auto;
  }
}
footer .visa-master {
  opacity: 0.5;
}
footer .visa-master > svg:first-child {
  grid-row: 2;
  margin-right: 13.5px;
}
footer .grid-tow-copy {
  display: none;
}
footer .grid-tow-copy .col1, footer .grid-tow-copy .col2 {
  font-size: 12px;
  line-height: 16px;
}
footer .grid-tow-copy .col2 {
  margin-top: 20px;
}
footer .grid.one {
  position: relative;
  margin-bottom: 22px;
  margin-top: 38px;
}
footer .grid.one .links * {
  font-weight: bold;
}
footer .grid.one .links .list {
  display: block;
}
footer .grid.one .links .caption {
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: 0.04em;
}
footer .grid.one .links a {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}
footer .grid.one .contacts-1 * {
  font-style: normal;
}
footer .grid.one .contacts-1 .tel-text {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}
footer .grid.one .contacts-1 .work-days {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 16px;
}
footer .grid.one .contacts-1 .mailto {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
footer .grid.one .contacts-1 .address {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}
footer .grid.one .contacts-2 > a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
footer .grid.one .contacts-2 span {
  padding-left: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 34px;
  line-height: 34px;
  letter-spacing: -0.03em;
}
footer .grid.one .contacts-2 .icon {
  height: 28px;
  width: 28px;
}
@media (max-width: 767px) {
  footer .grid.one .contacts-1 { /* phone, address */
    grid-area: 1;
    margin-bottom: 60px;
  }
  footer .grid.one .links-2 { /* company */
    grid-area: 2;
    margin-bottom: 60px;
  }
  footer .grid.one .links-1 { /* information */
    grid-area: 3;
    margin-bottom: 27px;
  }
  footer .grid.one .links-3 { /* brands */
    grid-area: 4;
    margin-bottom: 37px;
  }
  footer .grid.one .visa-master {
    grid-area: 5;
    margin-bottom: 60px;
  }
  footer .grid.one .contacts-2 { /* social */
    grid-area: 6;
  }
  footer .grid.one .contacts-2 span {
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
}
@media (min-width: 576px) {
  footer .grid.one {
    gap: 0 35px;
    grid-template-columns: 1fr 1fr;
  }
  footer .grid.one .contacts-1 {
    margin-bottom: 23px;
  }
  footer .grid.one .links-1 { /* information */
    grid-area: 2;
    margin-bottom: 23px;
  }
  footer .grid.one .links-2 { /* company */
    grid-area: 2;
  }
  footer .grid.one .grid-tow-copy {
    grid-area: 6;
    display: initial;
  }
  footer .grid.one .visa-master {
    grid-area: 7;
    margin-top: 15px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  footer .grid.one {
    gap: 0 15px;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "address information company brands" "social social text text" "visa-master visa-master visa-master visa-master";
  }
  footer .grid.one .contacts-1 { /* phone, address */
    grid-area: address;
  }
  footer .grid.one .links-1 { /* information */
    grid-area: information;
  }
  footer .grid.one .links-2 { /* company */
    grid-area: company;
  }
  footer .grid.one .links-3 { /* brands */
    grid-area: brands;
  }
  footer .grid.one .contacts-2 { /* social */
    margin-top: 36px;
    grid-area: social;
  }
  footer .grid.one .grid-tow-copy {
    grid-area: text;
    margin-left: 135px;
    margin-top: 36px;
    width: 224px;
  }
  footer .grid.one .visa-master {
    grid-area: 3;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  footer .grid.one {
    gap: 0 20px;
    grid-template-columns: 1fr 1fr 1fr 250px;
    grid-template-areas: "information company brands address" "visa-master visa-master visa-master social" "text text text text";
    margin-top: 21px;
  }
  footer .grid.one .links {
    margin-top: 75px;
  }
  footer .grid.one .grid-tow-copy {
    margin: 45px 0 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  footer .grid.one .grid-tow-copy .col2 {
    margin: 0;
    width: 250px;
  }
  footer .grid.one .contacts-2 {
    margin: 0;
  }
  footer .grid.one .visa-master {
    grid-area: visa-master;
  }
}
@media (min-width: 1200px) {
  footer .grid.one {
    gap: 0 23px;
    grid-template-columns: 1fr 1fr 1fr 1fr 342px;
    grid-template-areas: "information company brands address social" "visa-master visa-master visa-master visa-master visa-master" "text text text text text";
    margin-top: 100px;
  }
  footer .grid.one .links {
    margin-top: 0;
  }
  footer .grid.one .contacts-2 .icon {
    height: 36px;
    width: 38px;
  }
  footer .grid.one .contacts-2 span {
    padding-left: 10px;
    font-size: 47px;
    line-height: 48px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
  }
  footer .grid.one .visa-master {
    position: relative;
    top: -48px;
  }
  footer .grid.one .grid-tow-copy {
    margin: 32px 0 0;
    justify-content: start;
  }
  footer .grid.one .grid-tow-copy .col1 {
    width: 690px;
  }
  footer .grid.one .grid-tow-copy .col2 {
    margin: 0 0 0 20px;
  }
}
@media (min-width: 1440px) {
  footer .grid.one {
    gap: 0 22px;
  }
  footer .grid.one .grid-tow-copy .col1 {
    width: 690px;
  }
  footer .grid.one .grid-tow-copy .col2 {
    margin: 0 0 0 478px;
  }
}
@media (min-width: 1920px) {
  footer .grid.one {
    gap: 0 20px;
    grid-template-columns: 217px 217px 650px 217px 342px;
  }
  footer .grid.one .links-3 > nav {
    width: 217px;
  }
  footer .grid.one .grid-tow-copy .col1 {
    width: 1143px;
  }
  footer .grid.one .grid-tow-copy .col2 {
    margin: 0;
  }
}
footer .grid.two .col1, footer .grid.two .col2 {
  font-size: 12px;
  line-height: 16px;
}
footer .grid.two .col2 {
  margin-top: 20px;
}
footer .grid.two .visa-master {
  display: none;
}
@media (max-width: 767px) {
  footer .grid.two .col1 {
    grid-area: 1;
  }
  footer .grid.two .col2 {
    grid-area: 2;
  }
}
@media (min-width: 576px) {
  footer .grid.two {
    display: none;
  }
}

footer .icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
footer .icon.instagram {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24.3 3.6H11.7C7.22649 3.6 3.6 7.22649 3.6 11.7V24.3C3.6 28.7735 7.22649 32.4 11.7 32.4H24.3C28.7735 32.4 32.4 28.7735 32.4 24.3V11.7C32.4 7.22649 28.7735 3.6 24.3 3.6ZM11.7 0C5.23827 0 0 5.23827 0 11.7V24.3C0 30.7617 5.23827 36 11.7 36H24.3C30.7617 36 36 30.7617 36 24.3V11.7C36 5.23827 30.7617 0 24.3 0H11.7ZM27.45 6.29956C27.3749 6.29958 27.3 6.30336 27.2253 6.31087C27.1507 6.31836 27.0765 6.32959 27.003 6.3445C26.9295 6.35938 26.8567 6.37792 26.7851 6.40006C26.7134 6.42223 26.6429 6.44797 26.5738 6.47718C26.5047 6.50641 26.4371 6.53908 26.3713 6.57507C26.3054 6.61102 26.2414 6.65024 26.1795 6.69258C26.1176 6.73496 26.0578 6.7804 26.0004 6.82874C25.9431 6.87706 25.8882 6.92821 25.8359 6.98201C25.7837 7.03584 25.7341 7.09225 25.6875 7.15103C25.6409 7.20979 25.5972 7.27084 25.5567 7.33396C25.5161 7.39706 25.4788 7.46215 25.4448 7.52898C25.4107 7.59585 25.3801 7.66439 25.3529 7.73433C25.3257 7.80423 25.302 7.87544 25.282 7.94771C25.2619 8.01999 25.2455 8.09324 25.2327 8.16717C25.22 8.24108 25.2109 8.31558 25.2056 8.3904C25.2018 8.44337 25.2 8.49646 25.2 8.54956C25.2 8.6246 25.2037 8.69958 25.2112 8.77424C25.2187 8.84888 25.2299 8.92309 25.2448 8.9966C25.2597 9.07012 25.2783 9.14285 25.3004 9.21452C25.3226 9.28618 25.3484 9.35668 25.3776 9.42577C25.4068 9.49487 25.4395 9.56248 25.4754 9.62832C25.5114 9.69415 25.5506 9.75814 25.5929 9.82005C25.6353 9.88194 25.6807 9.94167 25.729 9.99902C25.7774 10.0564 25.8285 10.1113 25.8823 10.1636C25.9362 10.2159 25.9925 10.2654 26.0513 10.312C26.1101 10.3587 26.1712 10.4023 26.2343 10.4429C26.2974 10.4834 26.3626 10.5208 26.4294 10.5548C26.4963 10.5888 26.5648 10.6195 26.6347 10.6467C26.7046 10.6739 26.7758 10.6975 26.8481 10.7176C26.9204 10.7377 26.9936 10.7541 27.0676 10.7668C27.1415 10.7796 27.216 10.7886 27.2908 10.794C27.3438 10.7977 27.3969 10.7996 27.45 10.7996C27.525 10.7996 27.5999 10.7958 27.6746 10.7884C27.7492 10.7809 27.8234 10.7696 27.8969 10.7547C27.9705 10.7398 28.0432 10.7212 28.1148 10.6991C28.1865 10.6769 28.257 10.6512 28.3261 10.6219C28.3952 10.5927 28.4628 10.5601 28.5286 10.5241C28.5945 10.4882 28.6585 10.4489 28.7204 10.4065C28.7823 10.3642 28.8421 10.3188 28.8995 10.2705C28.9568 10.2221 29.0117 10.1709 29.064 10.1171C29.1162 10.0633 29.1658 10.0069 29.2124 9.94819C29.259 9.88943 29.3027 9.82837 29.3432 9.76525C29.3838 9.70212 29.4211 9.637 29.4551 9.57014C29.4892 9.5033 29.5198 9.4348 29.547 9.36489C29.5742 9.29496 29.5979 9.22371 29.6179 9.15142C29.638 9.07913 29.6544 9.00588 29.6672 8.93195C29.6799 8.85804 29.689 8.78354 29.6943 8.70872C29.6981 8.65575 29.6999 8.60266 29.7 8.54956C29.6999 8.47456 29.6962 8.3996 29.6887 8.32498C29.6812 8.25034 29.67 8.17613 29.6551 8.10261C29.6402 8.02909 29.6216 7.95636 29.5995 7.8847C29.5773 7.81304 29.5515 7.74254 29.5223 7.67345C29.4931 7.60434 29.4604 7.53674 29.4245 7.4709C29.3885 7.40507 29.3493 7.34108 29.307 7.27917C29.2646 7.21725 29.2191 7.15748 29.1708 7.1001C29.1225 7.04273 29.0713 6.9878 29.0176 6.93553C28.9637 6.88327 28.9074 6.83372 28.8486 6.78709C28.7898 6.74049 28.7287 6.69685 28.6656 6.65634C28.6025 6.61581 28.5373 6.57846 28.4705 6.54444C28.4036 6.5104 28.3351 6.47973 28.2652 6.45254C28.1953 6.42535 28.1241 6.40168 28.0518 6.38161C27.9795 6.36153 27.9063 6.34508 27.8323 6.33232C27.7584 6.31959 27.6839 6.31055 27.6091 6.30526C27.5561 6.30148 27.503 6.29958 27.45 6.29956ZM23.4 18C23.4 20.9823 20.9823 23.4 18 23.4C15.0177 23.4 12.6 20.9823 12.6 18C12.6 15.0177 15.0177 12.6 18 12.6C20.9823 12.6 23.4 15.0177 23.4 18ZM27 18C27 22.9706 22.9706 27 18 27C13.0294 27 9 22.9706 9 18C9 13.0294 13.0294 9 18 9C22.9706 9 27 13.0294 27 18Z' fill='white'%3E%3C/path%3E%3C/svg%3E");
}
footer .icon.facebook {
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.1874 35.7816V23.2031H10.6177V18H15.1874V14.0344C15.1874 9.52312 17.875 7.03125 21.9858 7.03125C23.9557 7.03125 26.0156 7.38338 26.0156 7.38338V11.8125H23.7453C21.5099 11.8125 20.8124 13.2008 20.8124 14.6239V18H25.8052L25.0076 23.2031H20.8124V35.7816C29.4177 34.4314 36 26.9844 36 18C36 8.05887 27.9411 0 18 0C8.05887 0 0 8.05887 0 18C0 26.9843 6.58225 34.4313 15.1874 35.7816Z' fill='white'%3E%3C/path%3E%3C/svg%3E");
}
footer .icon.visa {
  width: 54px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='54' height='24' viewBox='0 0 54 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.7375 3.31828L23.1291 20.7291H18.7664L22.3748 3.31828H26.7375ZM45.0959 14.5593L47.3919 8.02067L48.7138 14.5593H45.0959ZM49.963 20.7291H54L50.477 3.31828H46.7515C45.9134 3.31828 45.2082 3.821 44.8935 4.5963L38.3487 20.7291H42.9296L43.8388 18.1289H49.4365L49.963 20.7291ZM38.5764 15.0441C38.5954 10.4478 32.419 10.1964 32.4632 8.14309C32.4759 7.51795 33.0531 6.85528 34.3133 6.6839C34.9395 6.59902 36.6615 6.53536 38.6159 7.46409L39.3813 3.77203C38.3313 3.37867 36.9809 3 35.3 3C30.9879 3 27.9519 5.3667 27.9266 8.75517C27.8997 11.2622 30.0929 12.6594 31.7469 13.4935C33.4468 14.3471 34.0176 14.8939 34.0097 15.6561C33.9987 16.8248 32.653 17.3406 31.3991 17.3602C29.2043 17.3961 27.9329 16.7481 26.9178 16.2601L26.1271 20.0745C27.1455 20.5577 29.0272 20.9771 30.98 21C35.5625 21.0016 38.5622 18.6627 38.5764 15.0441ZM20.5026 3.31828L13.4328 20.7291H8.82026L5.34149 6.83406C5.13119 5.97715 4.94776 5.66377 4.30419 5.30305C3.25739 4.71708 1.52433 4.1654 0 3.82263L0.104363 3.31665H7.52837C8.47397 3.31665 9.32627 3.96627 9.54132 5.09086L11.3787 15.1665L15.9185 3.31502H20.5026V3.31828Z' fill='white'%3E%3C/path%3E%3C/svg%3E");
}
footer .icon.master-card {
  width: 39px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='39' height='24' viewBox='0 0 39 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.5 19.334C17.647 17.44 16.5 14.852 16.5 12C16.5 9.148 17.647 6.56 19.5 4.666C21.353 6.56 22.5 9.148 22.5 12C22.5 14.852 21.353 17.44 19.5 19.334ZM1.5 12C1.5 6.21 6.21 1.5 12 1.5C14.397 1.5 16.602 2.316 18.371 3.673C16.288 5.831 15 8.763 15 12C15 15.237 16.288 18.169 18.371 20.327C16.602 21.684 14.397 22.5 12 22.5C6.21 22.5 1.5 17.79 1.5 12ZM27 22.5C24.603 22.5 22.398 21.684 20.629 20.327C22.712 18.169 24 15.237 24 12C24 8.763 22.712 5.831 20.629 3.673C22.398 2.316 24.603 1.5 27 1.5C32.79 1.5 37.5 6.21 37.5 12C37.5 17.79 32.79 22.5 27 22.5Z' fill='white'%3E%3C/path%3E%3C/svg%3E");
  margin-left: 15px;
}

.mobile .rus-title,
.mobile .eng-title {
  font-size: 9px !important;
}

body.mobile .product-slider.long .product-slider-item .bottom .buy-form-wrapper .prices .old-price {
  font-size: 18px !important;
}

form[id^=form_pool_] .wa-form select {
  padding: 10px;
}
form[id^=form_pool_] .wa-form input[type=checkbox] {
  appearance: initial !important;
  -webkit-appearance: checkbox !important;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #306049;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

.search-window-wrapper .top {
  flex-shrink: 0;
  grid-area: top;
  height: 33px;
  max-height: 33px;
  padding-bottom: 13px;
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  line-height: 20px;
}
.search-window-wrapper .top .cancel {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.a-trigger {
  cursor: pointer;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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