

/* /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-apps/shop/plugins/breadcrumbs/css/breadcrumbs.css @ 2024-01-16T18:36:54+02:00 */

.breadcrumbs-plugin {}
.breadcrumbs-plugin__item-wrapper {
	display: inline-block;
	position: relative;
}
.breadcrumbs-plugin__item {}
.breadcrumbs-plugin__item_href {}
.breadcrumbs-plugin__item__arrow {}
.breadcrumbs-plugin__item__label {}

.breadcrumbs-plugin__item__brothers__menu {
	display: none;

	background-color: #FFFFFF;
	box-shadow: 4px 2px 4px -2px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 4px 2px 4px -2px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 4px 2px 4px -2px rgba(0, 0, 0, 0.5);
	border: 1px solid #B9B9B9;
	padding: 10px 20px 13px;
	position: absolute;
	left: 0;
	z-index: 100;
}

.breadcrumbs-plugin__item__brothers__arrow {
	cursor: pointer;
}

.breadcrumbs-plugin__item__brothers__arrow_hover:hover + .breadcrumbs-plugin__item__brothers__menu,
.breadcrumbs-plugin__item__brothers__arrow_hover + .breadcrumbs-plugin__item__brothers__menu:hover,
.breadcrumbs-plugin__item__brothers__menu_visible {
	display: inline-block;
}

.breadcrumbs-plugin__item__brothers__menu__link {
	display: block;
	margin-bottom: 5px;
	color: #000000;
	text-decoration: underline;
	white-space: nowrap;
}


.breadcrumbs-plugin a span, .breadcrumbs-plugin a:hover span {
	color: inherit;
}

.breadcrumbs-plugin__home-icon {
	background: center no-repeat url('../img/home_icon.svg');
	background-size: contain;
	display: inline-block;
	vertical-align: bottom;
	width: 18px;
	height: 18px;
}

.breadcrumbs-plugin__itemprop-name_hidden {
	display: none;
}