@charset "UTF-8";
/* line 1, product_card.scss */
.product-card {
  --mulier-color: #92B1CD;
  --white-color: #FFFFFF;
  --light-gray-color: #CCCCCC;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  position: relative; }
  /* line 6, product_card.scss */
  .product-card[style*="--heading-font-family:body"] .heading {
    font-family: var(--font-family); }
  /* line 11, product_card.scss */
  .product-card[style*="--heading-font-family:heading"] .heading {
    font-family: var(--font-family-heading); }
  /* line 16, product_card.scss */
  .product-card[style*="--heading-uppercase:true"] .heading {
    text-transform: uppercase; }
  /* line 21, product_card.scss */
  .product-card[style*="--price-font-family:body"] .product-card__price {
    font-family: var(--font-family); }
  /* line 26, product_card.scss */
  .product-card[style*="--price-font-family:heading"] .product-card__price {
    font-family: var(--font-family-heading); }
  /* line 39, product_card.scss */
  .product-card.not-available.is-zero-count-hidden .product-card__available, .product-card.not-available.is-zero-count-shown.is-forbid-order-over-existing .product-card__available {
    display: block; }
  /* line 44, product_card.scss */
  .product-card.not-available.is-zero-count-hidden .product-card__photo img, .product-card.not-available.is-zero-count-shown.is-forbid-order-over-existing .product-card__photo img {
    opacity: 0.3; }
  /* line 49, product_card.scss */
  .product-card.not-available.is-zero-count-hidden .product-card__price-cur,
  .product-card.not-available.is-zero-count-hidden .product-card__price-min,
  .product-card.not-available.is-zero-count-hidden .product-card__price-label, .product-card.not-available.is-zero-count-shown.is-forbid-order-over-existing .product-card__price-cur,
  .product-card.not-available.is-zero-count-shown.is-forbid-order-over-existing .product-card__price-min,
  .product-card.not-available.is-zero-count-shown.is-forbid-order-over-existing .product-card__price-label {
    color: var(--color-text-half-shade); }
  /* line 57, product_card.scss */
  .product-card.not-available.is-zero-count-hidden .product-card__control_not-available {
    display: block; }
  /* line 63, product_card.scss */
  .product-card.not-available.is-zero-count-preorder .sticker-preorder {
    display: inline-flex; }
  /* line 70, product_card.scss */
  .product-card.not-available.is-zero-count-hidden .product-card__control_available, .product-card.not-available.is-zero-count-shown.is-forbid-order-over-existing .product-card__control_available {
    display: none; }
  /* line 74, product_card.scss */
  .product-card.not-available.is-zero-count-hidden .product-card__control_not-available, .product-card.not-available.is-zero-count-shown.is-forbid-order-over-existing .product-card__control_not-available {
    display: block; }
  /* line 80, product_card.scss */
  .product-card__available {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 1rem;
    transform: translateY(-50%);
    color: var(--color-text);
    display: none; }
  /* line 93, product_card.scss */
  .product-card__area-content {
    height: 100%;
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column; }
  /* line 99, product_card.scss */
  .product-card__area-title, .product-card__area-price {
    margin-bottom: 0.75rem; }
  /* line 104, product_card.scss */
  .product-card__area-price {
    margin-top: auto;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0.5rem; }
  /* line 113, product_card.scss */
  .product-card__photo {
    position: relative;
    overflow: hidden; }
    /* line 117, product_card.scss */
    .product-card__photo-controls {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-flow: row nowrap; }
    /* line 127, product_card.scss */
    .product-card__photo-control {
      flex: 1 1 auto; }
    /* line 132, product_card.scss */
    .product-card__photo img.lazyload {
      visibility: hidden; }
      /* line 135, product_card.scss */
      .product-card__photo img.lazyload.loaded {
        visibility: visible; }
  /* line 142, product_card.scss */
  .product-card__stickers {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row wrap;
    gap: 0.5rem;
    max-width: calc(100% - 1.5rem - var(--controls-height-m)); }
    /* line 151, product_card.scss */
    .product-card__stickers .sticker {
      padding: 0.25rem 0.75rem;
      color: var(--color-text);
      font-size: 0.75rem;
      text-transform: uppercase; }
      /* line 156, product_card.scss */
      .product-card__stickers .sticker:empty {
        display: none; }
      @media screen and (max-width: 767px) {
        /* line 151, product_card.scss */
        .product-card__stickers .sticker {
          font-size: 0.55rem;
          padding: 0.25rem 0.55rem; } }
      /* line 163, product_card.scss */
      .product-card__stickers .sticker.sticker-preorder {
        display: none; }
  /* line 169, product_card.scss */
  .product-card__title {
    text-decoration: none;
    color: var(--color-text);
    line-height: 1.25;
    display: block;
    margin: 0; }
    /* line 175, product_card.scss */
    .product-card__title span.nobr {
      white-space: nowrap; }
    @media screen and (max-width: 767px) {
      /* line 179, product_card.scss */
      .product-card__title.heading {
        font-size: calc(var(--font-size)* var(--heading-ratio) * 0.75); } }
  /* line 185, product_card.scss */
  .product-card__price {
    font-size: calc(var(--font-size)*var(--price-ratio, 1.5));
    font-weight: var(--price-weight, 400);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    line-height: 1.25; }
    @media screen and (max-width: 767px) {
      /* line 185, product_card.scss */
      .product-card__price {
        font-size: calc(var(--font-size)* var(--price-ratio) * 0.75); } }
    /* line 195, product_card.scss */
    .product-card__price-cur, .product-card__price-min, .product-card__price-label {
      display: inline-block;
      align-self: end;
      white-space: nowrap; }
    /* line 203, product_card.scss */
    .product-card__price-old {
      display: inline-block;
      color: var(--color-text-half-shade);
      text-decoration: line-through;
      white-space: nowrap; }
  /* line 210, product_card.scss */
  .product-card__color {
    display: block;
    height: 0.5rem;
    width: 0.5rem; }
    /* line 214, product_card.scss */
    .product-card__color_belyy {
      border: 1px solid #eee; }
    /* line 218, product_card.scss */
    .product-card__color-list {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 0.5rem; }
  /* line 226, product_card.scss */
  .product-card__buttons {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-flow: column wrap;
    gap: 0.5rem; }
    @media screen and (min-width: 768px) {
      /* line 226, product_card.scss */
      .product-card__buttons {
        opacity: 0;
        transition: .3s; } }
  /* line 240, product_card.scss */
  .product-card__button {
    width: var(--controls-height-m);
    padding: 0;
    border: unset;
    box-shadow: unset;
    font-size: 1.5rem;
    color: var(--color-text);
    background: transparent; }
    /* line 248, product_card.scss */
    .product-card__button:hover {
      background: transparent;
      color: var(--color-accent-text); }
    /* line 254, product_card.scss */
    .product-card__button_favorites .icon-favorites-f {
      display: none; }
    /* line 258, product_card.scss */
    .product-card__button_favorites.favorites-added {
      color: var(--color-accent-text); }
      /* line 261, product_card.scss */
      .product-card__button_favorites.favorites-added .icon-favorites-o {
        display: none; }
      /* line 265, product_card.scss */
      .product-card__button_favorites.favorites-added .icon-favorites-f {
        display: block; }
  /* line 273, product_card.scss */
  .product-card .splide__pagination {
    gap: 0.125rem;
    bottom: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    padding: 0;
    transition: .3s; }
    /* line 280, product_card.scss */
    .product-card .splide__pagination li {
      display: block;
      flex: 1 1 auto; }
    /* line 284, product_card.scss */
    .product-card .splide__pagination__page {
      display: block;
      background: var(--light-gray-color);
      width: 100%;
      height: 0.125rem;
      border-radius: 0;
      margin: 0;
      padding: 0;
      transition: transform .2s linear;
      border: none;
      opacity: 1; }
      /* line 295, product_card.scss */
      .product-card .splide__pagination__page.is-active {
        transform: unset;
        background: var(--mulier-color); }
  @media screen and (max-width: 767px) {
    /* line 302, product_card.scss */
    .product-card .splide__pagination {
      left: unset; }
      /* line 304, product_card.scss */
      .product-card .splide__pagination__page {
        width: 0.375rem; } }
  @media screen and (min-width: 768px) {
    /* line 310, product_card.scss */
    .product-card .splide__pagination {
      opacity: 0; } }
  /* line 316, product_card.scss */
  .product-card:hover .product-card__buttons {
    opacity: 1; }
  /* line 319, product_card.scss */
  .product-card:hover .splide__pagination {
    opacity: 1; }
  @media screen and (max-width: 767px) {
    /* line 326, product_card.scss */
    .product-card__photo-controls {
      display: none; } }

/* line 4, theme.scss */
.runner p {
  background: white;
  color: black; }

/* line 8, theme.scss */
.icon-vk:before {
  content: url("data:image/svg+xml,%3Csvg%20width%3D%2224.000000%22%20height%3D%2224.000000%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22clip267%5f55%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20id%3D%22Frame%2010%22%20width%3D%2224.000000%22%20height%3D%2224.000000%22%20fill%3D%22white%22%20fill-opacity%3D%220%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%3C%2Fdefs%3E%20%20%20%20%3Cg%20clip-path%3D%22url%28%23clip267%5f55%29%22%3E%20%20%20%20%20%20%20%20%3Cpath%20id%3D%22Vector%2034%22%20d%3D%22M7.21%2012C7.21%2011.12%207.43%2010.32%207.87%209.6C8.31%208.89%208.89%208.31%209.6%207.87C10.32%207.43%2011.12%207.21%2012%207.21C12.87%207.21%2013.67%207.43%2014.39%207.87C15.1%208.31%2015.68%208.89%2016.12%209.6C16.56%2010.32%2016.78%2011.12%2016.78%2012C16.78%2012.87%2016.56%2013.67%2016.12%2014.39C15.68%2015.1%2015.1%2015.68%2014.39%2016.12C13.67%2016.56%2012.87%2016.78%2012%2016.78C11.12%2016.78%2010.32%2016.56%209.6%2016.12C8.89%2015.68%208.31%2015.1%207.87%2014.39C7.43%2013.67%207.21%2012.87%207.21%2012ZM12%208.71C11.12%208.71%2010.35%209.04%209.7%209.7C9.04%2010.35%208.71%2011.12%208.71%2012C8.71%2012.87%209.04%2013.64%209.7%2014.29C10.35%2014.95%2011.12%2015.28%2012%2015.28C12.87%2015.28%2013.64%2014.95%2014.29%2014.29C14.95%2013.64%2015.28%2012.87%2015.28%2012C15.28%2011.12%2014.95%2010.35%2014.29%209.7C13.64%209.04%2012.87%208.71%2012%208.71ZM7.96%203.75C6.84%203.75%205.85%204.17%205.01%205.01C4.17%205.85%203.75%206.84%203.75%207.96L3.75%2016.03C3.75%2017.15%204.17%2018.14%205.01%2018.98C5.85%2019.82%206.84%2020.25%207.96%2020.25L16.03%2020.25C17.15%2020.25%2018.14%2019.82%2018.98%2018.98C19.82%2018.14%2020.25%2017.15%2020.25%2016.03L20.25%207.96C20.25%206.84%2019.82%205.85%2018.98%205.01C18.14%204.17%2017.15%203.75%2016.03%203.75L7.96%203.75ZM2.25%207.96C2.25%206.96%202.51%206.03%203.04%205.15C3.57%204.28%204.28%203.57%205.15%203.04C6.03%202.51%206.96%202.25%207.96%202.25L16.03%202.25C17.03%202.25%2017.96%202.51%2018.84%203.04C19.71%203.57%2020.42%204.28%2020.95%205.15C21.48%206.03%2021.75%206.96%2021.75%207.96L21.75%2016.03C21.75%2017.03%2021.48%2017.96%2020.95%2018.84C20.42%2019.71%2019.71%2020.42%2018.84%2020.95C17.96%2021.48%2017.03%2021.75%2016.03%2021.75L7.96%2021.75C7.21%2021.75%206.5%2021.6%205.81%2021.32C5.12%2021.04%204.5%2020.62%203.93%2020.06C3.37%2019.5%202.95%2018.87%202.67%2018.18C2.39%2017.5%202.25%2016.78%202.25%2016.03L2.25%207.96ZM18%205.9C18.18%206.09%2018.28%206.28%2018.28%206.46C18.28%206.65%2018.21%206.84%2018.09%207.03C17.9%207.21%2017.65%207.29%2017.34%207.26C17.03%207.23%2016.82%207.06%2016.73%206.75C16.64%206.43%2016.71%206.18%2016.96%206C17.09%205.87%2017.26%205.79%2017.48%205.76C17.7%205.73%2017.87%205.78%2018%205.9Z%22%20fill%3D%22black%22%20fill-opacity%3D%221.000000%22%20fill-rule%3D%22nonzero%22%2F%3E%20%20%20%20%3C%2Fg%3E%3C%2Fsvg%3E");
  position: relative; }

/* line 12, theme.scss */
.widget-type_system_widget_v4_breadcrumbs_1 .layout__content {
  padding: 8px 0 !important; }

/* line 16, theme.scss */
.product-preview__area-bottom {
  display: block !important; }

/* line 19, theme.scss */
.product-preview__price {
  width: fit-content;
  margin: auto; }

/* line 23, theme.scss */
#static-form-container {
  margin: 0 !important; }

/* line 26, theme.scss */
.widget-type_widget_v4_video_clip_ad654317fffeb107bbae80262e3a996a .layout__content {
  min-width: 100vw;
  margin: 0 !important;
  padding: 0; }

/* line 31, theme.scss */
.carrotquest-messenger-right_bottom {
  display: none !important; }

/* line 34, theme.scss */
video::-webkit-media-controls {
  display: none !important; }

/* line 37, theme.scss */
.show {
  display: block !important; }

/* line 40, theme.scss */
p:empty, .icon-compare, span[itemprop="priceCurrency"] {
  display: none !important; }

/* line 43, theme.scss */
.lk {
  display: grid;
  float: right;
  margin-top: -5px; }

/* line 48, theme.scss */
.menu #Клиентам .menu__title, .menu #Коллекции .menu__title {
  background-image: url(https://static.insales-cdn.com/files/1/5589/33781205/original/free-icon-arrow-down-sign-to-navigate-32195.png);
  background-size: 3%;
  background-repeat: no-repeat;
  background-position: 24% 80%; }

/* line 54, theme.scss */
.product__full-description .cut-block, .product__properties .cut-block, .product__properties-content {
  display: block !important; }

/* line 57, theme.scss */
.product-form__area-title .product__title {
  font-size: 1.2rem !important; }

/* line 60, theme.scss */
.product__full-description .product__block-title, .product__properties .product__block-title {
  display: none !important; }

/* line 63, theme.scss */
.product-form__area-controls {
  opacity: 1 !important; }

/* line 66, theme.scss */
#mulier_atelier .menu__title, #Личный_кабинет .menu__title {
  display: none !important; }

/* line 69, theme.scss */
#mulier_atelier a, #Личный_кабинет a {
  font-size: 1.125rem !important;
  font-weight: 600 !important; }

/* line 73, theme.scss */
#Личный_кабинет a {
  background-image: url(https://static.insales-cdn.com/files/1/8019/33800019/original/free-icon-profile-3106773.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 15%;
  padding-left: 2em; }

/* line 1, _settings.scss */
:root {
  --bg: var(--draft-bg, #ffffff);
  --bg-is-light: var(--draft-bg-is-light, true);
  --bg-minor-shade: var(--draft-bg-minor-shade, #f7f7f7);
  --bg-minor-shade-is-light: var(--draft-bg-minor-shade-is-light, true);
  --bg-major-shade: var(--draft-bg-major-shade, #ededed);
  --bg-major-shade-is-light: var(--draft-bg-major-shade-is-light, true);
  --bg-half-shade: var(--draft-bg-half-shade, #808080);
  --bg-half-shade-is-dark: var(--draft-bg-half-shade-is-dark, true);
  --color-btn-bg: var(--draft-color-btn-bg, #000000);
  --color-btn-bg-is-dark: var(--draft-color-btn-bg-is-dark, true);
  --color-btn-bg-minor-shade: var(--draft-color-btn-bg-minor-shade, #1a1a1a);
  --color-btn-bg-minor-shade-is-dark: var(--draft-color-btn-bg-minor-shade-is-dark, true);
  --color-btn-bg-major-shade: var(--draft-color-btn-bg-major-shade, #333333);
  --color-btn-bg-major-shade-is-dark: var(--draft-color-btn-bg-major-shade-is-dark, true);
  --color-btn-bg-half-shade: var(--draft-color-btn-bg-half-shade, #808080);
  --color-btn-bg-half-shade-is-dark: var(--draft-color-btn-bg-half-shade-is-dark, true);
  --color-accent-text: var(--draft-color-accent-text, #000000);
  --color-accent-text-is-dark: var(--draft-color-accent-text-is-dark, true);
  --color-accent-text-minor-shade: var(--draft-color-accent-text-minor-shade, #1a1a1a);
  --color-accent-text-minor-shade-is-dark: var(--draft-color-accent-text-minor-shade-is-dark, true);
  --color-accent-text-major-shade: var(--draft-color-accent-text-major-shade, #333333);
  --color-accent-text-major-shade-is-dark: var(--draft-color-accent-text-major-shade-is-dark, true);
  --color-accent-text-half-shade: var(--draft-color-accent-text-half-shade, #808080);
  --color-accent-text-half-shade-is-dark: var(--draft-color-accent-text-half-shade-is-dark, true);
  --color-text-dark: var(--draft-color-text-dark, #000000);
  --color-text-dark-is-dark: var(--draft-color-text-dark-is-dark, true);
  --color-text-dark-minor-shade: var(--draft-color-text-dark-minor-shade, #1a1a1a);
  --color-text-dark-minor-shade-is-dark: var(--draft-color-text-dark-minor-shade-is-dark, true);
  --color-text-dark-major-shade: var(--draft-color-text-dark-major-shade, #333333);
  --color-text-dark-major-shade-is-dark: var(--draft-color-text-dark-major-shade-is-dark, true);
  --color-text-dark-half-shade: var(--draft-color-text-dark-half-shade, #808080);
  --color-text-dark-half-shade-is-dark: var(--draft-color-text-dark-half-shade-is-dark, true);
  --color-text-light: var(--draft-color-text-light, #ffffff);
  --color-text-light-is-light: var(--draft-color-text-light-is-light, true);
  --color-text-light-minor-shade: var(--draft-color-text-light-minor-shade, #f7f7f7);
  --color-text-light-minor-shade-is-light: var(--draft-color-text-light-minor-shade-is-light, true);
  --color-text-light-major-shade: var(--draft-color-text-light-major-shade, #ededed);
  --color-text-light-major-shade-is-light: var(--draft-color-text-light-major-shade-is-light, true);
  --color-text-light-half-shade: var(--draft-color-text-light-half-shade, #808080);
  --color-text-light-half-shade-is-dark: var(--draft-color-text-light-half-shade-is-dark, true);
  --icons_pack: var(--draft-icons_pack, insales-default);
  --controls-btn-border-radius: var(--draft-controls-btn-border-radius, 0px);
  --color-notice-warning: var(--draft-color-notice-warning, #fff3cd);
  --color-notice-warning-is-light: var(--draft-color-notice-warning-is-light, true);
  --color-notice-warning-minor-shade: var(--draft-color-notice-warning-minor-shade, #fff3ca);
  --color-notice-warning-minor-shade-is-light: var(--draft-color-notice-warning-minor-shade-is-light, true);
  --color-notice-warning-major-shade: var(--draft-color-notice-warning-major-shade, #fff2c8);
  --color-notice-warning-major-shade-is-light: var(--draft-color-notice-warning-major-shade-is-light, true);
  --color-notice-warning-half-shade: var(--draft-color-notice-warning-half-shade, #ffedb3);
  --color-notice-warning-half-shade-is-light: var(--draft-color-notice-warning-half-shade-is-light, true);
  --color-notice-success: var(--draft-color-notice-success, #d4edda);
  --color-notice-success-is-light: var(--draft-color-notice-success-is-light, true);
  --color-notice-success-minor-shade: var(--draft-color-notice-success-minor-shade, #d3ecd9);
  --color-notice-success-minor-shade-is-light: var(--draft-color-notice-success-minor-shade-is-light, true);
  --color-notice-success-major-shade: var(--draft-color-notice-success-major-shade, #d1ecd7);
  --color-notice-success-major-shade-is-light: var(--draft-color-notice-success-major-shade-is-light, true);
  --color-notice-success-half-shade: var(--draft-color-notice-success-half-shade, #bee4c7);
  --color-notice-success-half-shade-is-light: var(--draft-color-notice-success-half-shade-is-light, true);
  --color-notice-error: var(--draft-color-notice-error, #f8d7da);
  --color-notice-error-is-light: var(--draft-color-notice-error-is-light, true);
  --color-notice-error-minor-shade: var(--draft-color-notice-error-minor-shade, #f8d7da);
  --color-notice-error-minor-shade-is-light: var(--draft-color-notice-error-minor-shade-is-light, true);
  --color-notice-error-major-shade: var(--draft-color-notice-error-major-shade, #f8d5d8);
  --color-notice-error-major-shade-is-light: var(--draft-color-notice-error-major-shade-is-light, true);
  --color-notice-error-half-shade: var(--draft-color-notice-error-half-shade, #f5c4c8);
  --color-notice-error-half-shade-is-light: var(--draft-color-notice-error-half-shade-is-light, true);
  --color-notice-info: var(--draft-color-notice-info, #cce5ff);
  --color-notice-info-is-light: var(--draft-color-notice-info-is-light, true);
  --color-notice-info-minor-shade: var(--draft-color-notice-info-minor-shade, #cae4ff);
  --color-notice-info-minor-shade-is-light: var(--draft-color-notice-info-minor-shade-is-light, true);
  --color-notice-info-major-shade: var(--draft-color-notice-info-major-shade, #c8e3ff);
  --color-notice-info-major-shade-is-light: var(--draft-color-notice-info-major-shade-is-light, true);
  --color-notice-info-half-shade: var(--draft-color-notice-info-half-shade, #b3d7ff);
  --color-notice-info-half-shade-is-light: var(--draft-color-notice-info-half-shade-is-light, true);
  --font-family: var(--draft-font-family, Manrope);
  --font-size: var(--draft-font-size, 16px);
  --font-family-heading: var(--draft-font-family-heading, Manrope);
  --heading-ratio: var(--draft-heading-ratio, 1.125);
  --heading-weight: var(--draft-heading-weight, 600);
  --product-card-heading-font-family: var(--draft-product-card-heading-font-family, body);
  --product-card-heading-ratio: var(--draft-product-card-heading-ratio, 1);
  --product-card-heading-weight: var(--draft-product-card-heading-weight, 400);
  --product-card-heading-uppercase: var(--draft-product-card-heading-uppercase, false);
  --product-card-price-font-family: var(--draft-product-card-price-font-family, body);
  --product-card-price-ratio: var(--draft-product-card-price-ratio, 1.125);
  --product-card-price-weight: var(--draft-product-card-price-weight, 500);
  --product-card-img-fit: var(--draft-product-card-img-fit, cover);
  --product-card-img-ratio: var(--draft-product-card-img-ratio, 0.75);
  --collection_count: var(--draft-collection_count, 12);
  --search_count: var(--draft-search_count, 24);
  --blog_size: var(--draft-blog_size, 8);
  --product_not_available: var(--draft-product_not_available, preorder);
  --layout-content-max-width: var(--draft-layout-content-max-width, 1440px);
  --delta_sidebar: var(--draft-delta_sidebar, 1);
  --type_sidebar: var(--draft-type_sidebar, sticky);
  --sidebar_index_show: var(--draft-sidebar_index_show, false);
  --sidebar_index_position: var(--draft-sidebar_index_position, left);
  --sidebar_collection_show: var(--draft-sidebar_collection_show, false);
  --sidebar_collection_position: var(--draft-sidebar_collection_position, left);
  --sidebar_cart_show: var(--draft-sidebar_cart_show, false);
  --sidebar_cart_position: var(--draft-sidebar_cart_position, left);
  --sidebar_product_show: var(--draft-sidebar_product_show, false);
  --sidebar_product_position: var(--draft-sidebar_product_position, left);
  --sidebar_blog_show: var(--draft-sidebar_blog_show, true);
  --sidebar_blog_position: var(--draft-sidebar_blog_position, left);
  --sidebar_article_show: var(--draft-sidebar_article_show, true);
  --sidebar_article_position: var(--draft-sidebar_article_position, left);
  --sidebar_page_show: var(--draft-sidebar_page_show, false);
  --sidebar_page_position: var(--draft-sidebar_page_position, left);
  --sidebar_compare_show: var(--draft-sidebar_compare_show, false);
  --sidebar_compare_position: var(--draft-sidebar_compare_position, left);
  --sidebar_search_show: var(--draft-sidebar_search_show, false);
  --sidebar_search_position: var(--draft-sidebar_search_position, left);
  --feedback_captcha_enabled: var(--draft-feedback_captcha_enabled, true);
  --favorite_enabled: var(--draft-favorite_enabled, true);
  --compare_enabled: var(--draft-compare_enabled, true); }

/* line 82, theme.scss */
.sidebar_header {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 1rem; }

/* line 87, theme.scss */
.noramlll {
  color: white;
  background: black;
  padding: 10px 40%;
  text-decoration: none; }

/* line 93, theme.scss */
.menu__section, .menu__list {
  z-index: 1000 !important; }

/* line 96, theme.scss */
.cats-loy {
  display: flex; }

/* line 99, theme.scss */
.cats-loy img {
  padding: 1em; }

/* line 102, theme.scss */
body, .page_layout {
  overflow-x: hidden !important; }

/* line 105, theme.scss */
.outside-widgets .delete-widget-link {
  display: none; }

/* line 109, theme.scss */
.outside-widgets .add-widget-link {
  display: none; }

/* line 113, theme.scss */
[data-fixed-panels] .delete-widget-link {
  display: none; }

/* line 116, theme.scss */
.menu__head {
  margin-bottom: -2rem !important; }

/* line 119, theme.scss */
.menu__head p, #mulier_atelier, .side-panel__content .contacts {
  display: none !important; }

/* line 122, theme.scss */
.widget-type_system_widget_v4_special_products_tabs_4 .product-preview__controls {
  visibility: visible !important;
  opacity: 1 !important; }

@media (max-width: 768px) {
  /* line 127, theme.scss */
  .contacts-map {
    order: 1 !important;
    margin-bottom: 3em; }

  /* line 131, theme.scss */
  .header__favorite {
    display: block !important;
    position: absolute;
    margin-top: 13px;
    margin-left: -30px !important; }

  /* line 137, theme.scss */
  yandex-pay-badge {
    transform: scale(0.6);
    transform-origin: left; }

  /* line 141, theme.scss */
  .widget-type_widget_v4_page_banner_3_1_8a7dbd5ffa2d27b4ebaf08270a32e7e5 .layout__content {
    padding: 0 !important; }

  /* line 144, theme.scss */
  .widget-type_widget_v4_special_products_tabs_4_6cecb8e00e6233d0f695f2bb86c04ff2 .grid-list {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap; }

  /* line 149, theme.scss */
  .cartochka {
    width: 47%; }

  /* line 152, theme.scss */
  .product .layout__content {
    padding: 1em 0 !important; }

  /* line 156, theme.scss */
  .widget-type_widget_v4_video_clip_ad654317fffeb107bbae80262e3a996a .banner-list__item-image {
    min-height: 92vh !important; }

  /* line 159, theme.scss */
  .widget-type_system_widget_v4_callback_modal_1 {
    padding-top: 20% !important; }

  /* line 162, theme.scss */
  .widget-type_system_widget_v4_catalog_6 .catalog-list.grid-list {
    --grid-list-column-gap: var(--catalog-grid-list-column-gap) !important; }

  /* line 165, theme.scss */
  .menu__head {
    margin-bottom: -2.5rem !important; }

  /* line 168, theme.scss */
  .menu__head {
    display: block !important;
    position: relative;
    border: none !important; }

  /* line 173, theme.scss */
  .lk a {
    text-align: left !important; }

  /* line 176, theme.scss */
  .header__languages, .menu__head p {
    display: none !important; }

  /* line 179, theme.scss */
  .lk {
    display: grid;
    float: none;
    text-align: center; }

  /* line 184, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .stickers .sticker {
    margin-bottom: -10em !important; }

  /* line 187, theme.scss */
  .menu #Клиентам .menu__title, .menu #Коллекции .menu__title {
    background-position: 27% 80%; }

  /* line 192, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .img-ratio.img-fit img {
    object-fit: contain !important;
    background: white !important; }

  /* line 196, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .stickers .sticker {
    margin-bottom: -10em !important; }

  /* line 199, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .img-ratio video {
    height: 80%; }

  /* line 202, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .splide__slide .img-ratio__inner picture {
    min-height: 38em !important;
    position: absolute; }

  /* line 206, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .img-ratio img,
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .img-ratio video {
    width: 100% !important;
    object-fit: contain !important;
    margin: 0 !important;
    overflow: visible; }

  /* line 213, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .splide__list {
    height: 38em !important; }

  /* line 216, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .img-ratio img {
    margin-top: 0 !important; }

  /* line 219, theme.scss */
  .widget-type_widget_v4_product_8_594fdd91c54c572561d5b1dcc5663f19 .layout__content {
    padding: 0 !important; }

  /* line 224, theme.scss */
  .product__properties-items div:nth-child(1) {
    order: 2; }

  /* line 227, theme.scss */
  .product__properties-items div:nth-child(2) {
    order: 1; }

  /* line 230, theme.scss */
  .product__area-form, .product__area-description {
    width: 100% !important; }

  /* line 233, theme.scss */
  .modal__content, .modal__overlay, .modal__container {
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
    -webkit-touch-action: manipulation;
    overflow-x: scroll !important;
    -webkit-overflow-x: scroll !important;
    height: 101%; }

  /* line 241, theme.scss */
  .sizes-table tr, .sizes-table td {
    font-size: 0.85em; }

  /* line 244, theme.scss */
  .modal__overlay {
    min-width: 127vw;
    margin-left: -29vw; }

  /* line 248, theme.scss */
  .modal__overlay .table-sizes__content {
    transform: scale(0.8);
    width: 150vw; }

  /* line 252, theme.scss */
  .table-sizes__content {
    transform: scale(0.9);
    transform-origin: top left; }

  /* line 256, theme.scss */
  .menu {
    margin-top: 2em !important; }

  /* line 259, theme.scss */
  [style*="--is-editor:true"] .outside-widgets {
    display: none !important; }

  /* line 262, theme.scss */
  .edit-widget-buttons .widget-name {
    display: none !important; }

  /* line 265, theme.scss */
  [data-fixed-panels] [data-widget-add] {
    display: none; }

  /* line 268, theme.scss */
  .cats-loy {
    display: block; }

  /* line 271, theme.scss */
  .coupon-button {
    display: block !important; } }
/* line 277, theme.scss */
.menu__section:focus, .menu__section:active {
  outline: none !important;
  border: none !important; }

/* line 281, theme.scss */
.scroll-row {
  height: 28px;
  width: 100%;
  background: #1201ff;
  display: flex;
  flex-direction: row;
  overflow: hidden; }

/* line 289, theme.scss */
.scroll-row__text {
  color: #fff;
  padding-left: 20%;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 28px;
  font-family: var(--font-family);
  font-size: 1rem;
  animation: text 20s infinite linear; }

/* line 300, theme.scss */
.agree__label {
  font-size: 12px !important; }

@keyframes text {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(-100%, 0); } }
@media screen and (max-width: 967px) {
  /* line 313, theme.scss */
  .scroll-row {
    height: 20px; }

  /* line 317, theme.scss */
  .scroll-row__text {
    font-size: 0.75rem;
    line-height: 20px; }

  /* line 322, theme.scss */
  .widget-type_widget_v4_banner_list_22_7174d0cd386cb0ca1773f183e2e32b09 .banner-list {
    justify-content: center !important; }

  /* line 325, theme.scss */
  .col-name {
    top: 85% !important; }

  /* line 328, theme.scss */
  .widget-type_widget_v4_page_banner_3_1_1d921b8b498f284b28244b7bdf466c21 img, .widget-type_widget_v4_page_banner_3_1_d6de920095eaba3a2fd949000462e3e9 img {
    max-width: 100vw !important; }

  /* line 331, theme.scss */
  .product__area-form, .product__area-description, .product__area-properties {
    transform-origin: center  !important;
    text-align: left;
    margin: auto; }

  /* line 336, theme.scss */
  .product__area-form {
    margin-bottom: 1em; }

  /* line 339, theme.scss */
  .mobtn {
    display: none !important; }

  /* line 342, theme.scss */
  .banner-list__item {
    position: relative; }

  /* line 345, theme.scss */
  .product__area-form .product-form__area-controls {
    display: block; }

  /* line 348, theme.scss */
  .show-mobile-filter-btn {
    width: 7em !important;
    font-size: 14px !important; }

  /* line 352, theme.scss */
  .filter-top-controls {
    display: flex !important; }

  /* line 355, theme.scss */
  .widget-type_widget_v4_page_banner_3_1_e4576d7e1930c0f1ee3e97afe780afef .banner-list__item-title {
    position: absolute;
    top: 44vh;
    left: 30%;
    text-decoration: none;
    padding: 10px 20px;
    color: black !important; }

  /* line 363, theme.scss */
  .widget-type_widget_v4_page_banner_3_1_da38505c21ae903b661e0bd2128621fc .banner-list__item-title {
    position: absolute;
    top: 35vh;
    left: 43% !important;
    text-decoration: none;
    padding: 10px 20px;
    color: black !important; }

  /* line 371, theme.scss */
  .widget-type_widget_v4_page_banner_3_1_8a7dbd5ffa2d27b4ebaf08270a32e7e5 .banner-list__item-title {
    position: absolute;
    bottom: 5vh;
    left: 26% !important;
    text-decoration: none;
    padding: 10px 20px;
    color: black !important; }

  /* line 379, theme.scss */
  .cusmenu ul {
    display: block !important;
    max-width: 90vw; }

  /* line 383, theme.scss */
  .cusmenu li {
    display: initial !important; }

  /* line 386, theme.scss */
  .product__properties-content {
    min-width: 90vw !important; } }
/* line 391, theme.scss */
.product-preview__sku {
  display: none; }

@media screen and (min-width: 967px) {
  /* line 395, theme.scss */
  .mobtn, .mobil {
    display: none !important; } }
/* line 399, theme.scss */
.filter__controls .button_wide {
  background-color: white !important;
  color: black !important;
  border: 1px solid black !important; }

/* line 404, theme.scss */
.widget-type_system_widget_v4_filter_sort_1 .filter-item__name.js-toggle-show-filter-item:before {
  border-top-color: #c09c63 !important; }

/* line 407, theme.scss */
.product__area-form, .product__area-description, .product__area-properties, .product__property-value {
  font-size: 14px !important; }

/* line 410, theme.scss */
.widget-type_widget_v4_banner_list_22_7174d0cd386cb0ca1773f183e2e32b09 a {
  box-shadow: 1px 0px 4px 0px #e0e0e0; }

/* line 413, theme.scss */
.col-name {
  position: absolute;
  top: 50%;
  width: 100vw;
  color: white; }

/* line 419, theme.scss */
.col-name p {
  margin-bottom: 2rem; }

/* line 422, theme.scss */
.widget-type_widget_v4_page_banner_3_1_d6de920095eaba3a2fd949000462e3e9 {
  margin-top: -5.4em; }

/* line 425, theme.scss */
.col-name a {
  text-decoration: none;
  border: 1px solid white;
  color: white !important;
  padding: 12px 20px; }

/* line 431, theme.scss */
.col-name a:hover, .col-name a:active {
  color: black !important;
  background: white;
  animation-duration: 2s; }

/* line 436, theme.scss */
.banner-list__item-title {
  color: var(--color-btn-bg) !important;
  background: white !important;
  animation-duration: 2s;
  opacity: 0.8; }

/* line 442, theme.scss */
.banner-list__item-title:hover {
  opacity: 1; }

/* line 445, theme.scss */
.banner-list__item-title:hover, .banner-list__item-title:active {
  background: white !important;
  animation-duration: 2s; }

/* line 449, theme.scss */
.cusmenu ul {
  display: flex; }

/* line 452, theme.scss */
.cusmenu li {
  list-style-type: none;
  padding: 0 10px; }

/* line 456, theme.scss */
.cusmenu a {
  font-size: 0.9rem;
  color: var(--color-text-major-shade);
  text-decoration: none !important; }

/* line 461, theme.scss */
.block_contact {
  border-radius: 2px;
  padding: 0 22px;
  background: #dcdcdc;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06rem;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  height: 48px;
  max-width: 29.5em; }

/* line 474, theme.scss */
.block_contact a {
  color: #2c2c2c;
  display: inline-block;
  padding: 15px 0;
  vertical-align: middle;
  text-decoration: none;
  line-height: 18px; }

/* line 482, theme.scss */
.block_contact .whatsap {
  color: #000000;
  font-size: 15px;
  font-weight: 200;
  opacity: 0.5; }

/* line 488, theme.scss */
.fab {
  font-family: "Font Awesome 5 Brands"; }

/* line 491, theme.scss */
.block_contact .fas, .block_contact .fab {
  margin-right: 5px; }

/* line 494, theme.scss */
.razmeri {
  grid-area: variants-bundle;
  margin: 6em 0em 1em 0;
  z-index: 100;
  position: relative; }

/* line 501, theme.scss */
.product__area-properties table {
  width: 100%;
  border: 1px solid #E0E0E0;
  font-size: 14px;
  color: #000;
  margin: 20px 0; }

/* line 509, theme.scss */
.product__area-properties table td, .product__area-properties table th {
  padding: 10px;
  border: 1px solid #E0E0E0;
  text-align: center; }

/* line 516, theme.scss */
.product__field__care table {
  width: auto;
  border: none;
  text-align: left; }
  /* line 520, theme.scss */
  .product__field__care table img {
    max-width: 25px; }
  /* line 523, theme.scss */
  .product__field__care table td, .product__field__care table td {
    border: none;
    text-align: left; }

/* line 530, theme.scss */
.option-values .belyy-color > span {
  border: 1px solid #eee; }

/* line 534, theme.scss */
.belyy-color.with-image-color-active {
  border: none !important; }

@media screen and (max-width: 767px) {
  /* line 543, theme.scss */
  .heading {
    font-size: calc(var(--font-size)* var(--heading-ratio, 2) * 1); } }
@media screen and (max-width: 1024px) {
  /* line 548, theme.scss */
  #insales-panel {
    display: none; } }
