@import url(custom.css);
/* line 1, core.scss */
:root {
  --color-gray: #858585;
  --color-light-gray: #F0F0F0;
  --color-middle-gray: #D8D8D8;
  --color-dark-gray: #3A3A3A;
  --color-black: #1C1C1C;
  --color-red: #E23641;
  --color-white: #FFFFFF; }

/* line 11, core.scss */
body {
  font: normal 16px/16px Cuprum, sans-serif;
  letter-spacing: .5px;
  color: var(--color-black);
  margin: 0; }

/* line 18, core.scss */
* {
  outline: none; }

/* line 22, core.scss */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px; }

/* line 30, core.scss */
.flex, .column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }

/* line 39, core.scss */
.column {
  flex-direction: column; }

/* line 44, core.scss */
.center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

/* line 56, core.scss */
.justify-start {
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start; }
/* line 63, core.scss */
.justify-end {
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end; }
/* line 70, core.scss */
.justify-around {
  -webkit-box-pack: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around; }
/* line 77, core.scss */
.justify-between {
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between; }
/* line 84, core.scss */
.justify-stretch {
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch; }
/* line 91, core.scss */
.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

/* line 100, core.scss */
.align-start {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start; }
/* line 107, core.scss */
.align-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end; }
/* line 114, core.scss */
.align-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }
/* line 121, core.scss */
.align-baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline; }
/* line 128, core.scss */
.align-center {
  -webkit-box-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

/* line 136, core.scss */
.wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

/* line 141, core.scss */
button {
  outline: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer; }

/* line 149, core.scss */
a.button {
  text-decoration: none; }

/* line 153, core.scss */
input, textarea {
  background: var(--color-white);
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  height: 40px;
  box-sizing: border-box; }
  /* line 161, core.scss */
  input::-moz-placeholder, textarea::-moz-placeholder {
    color: var(--color-middle-gray); }
  /* line 164, core.scss */
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: var(--color-middle-gray); }
  /* line 167, core.scss */
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: var(--color-middle-gray); }
  /* line 170, core.scss */
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: var(--color-middle-gray); }
  /* line 173, core.scss */
  input::placeholder, textarea::placeholder {
    color: var(--color-middle-gray); }

/* line 178, core.scss */
textarea {
  padding-top: 10px;
  padding-bottom: 10px; }

/* line 183, core.scss */
img {
  max-width: 100%;
  max-height: 100%; }

/* line 189, core.scss */
.form-item input[type="text"],
.form-item input[type="tel"],
.form-item input[type="email"] {
  width: 100%; }

/* line 197, core.scss */
.transition-height {
  -webkit-transition: height 0.1s linear 0.1s;
  -o-transition: height 0.1s linear 0.1s;
  -moz-transition: height 0.1s linear 0.1s;
  transition: height 0.1s linear 0.1s; }

/* line 204, core.scss */
.transition-top {
  -webkit-transition: top 0.3s ease 0.1s;
  -o-transition: top 0.3s ease 0.1s;
  -moz-transition: top 0.5s ease 0.1s;
  transition: top 0.3s ease 0.1s; }

/* line 211, core.scss */
.hidden {
  display: none; }

/* line 216, core.scss */
.input-radio input {
  display: none; }
/* line 220, core.scss */
.input-radio > span {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  margin-right: 10px;
  border: 1px solid var(--color-middle-gray);
  box-sizing: border-box;
  background-color: var(--color-white);
  position: relative;
  padding: 4px;
  flex: 0 0 auto;
  display: inline-block; }
/* line 236, core.scss */
.input-radio input:checked + span:after {
  content: ' ';
  width: 11px;
  height: 11px;
  background-color: var(--color-dark-gray);
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }

/* line 1, common.scss */
body {
  padding-top: 200px; }

/* line 4, common.scss */
input, textarea {
  background-color: var(--color-white);
  border: 1px solid var(--color-middle-gray);
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 9px 12px;
  font-family: "Cuprum"; }

/* line 14, common.scss */
.error {
  color: var(--color-red); }
  /* line 17, common.scss */
  .error input[type="text"],
  .error input[type="tel"],
  .error input[type="email"] {
    border: 1px solid var(--color-red); }
  /* line 23, common.scss */
  .error-text {
    display: none;
    padding: 10px;
    font-size: 90%; }

/* line 31, common.scss */
.breadcrumbs ul {
  margin: 0 30px 0 0;
  padding: 20px 0;
  list-style: none;
  overflow-x: auto; }

/* line 40, common.scss */
.breadcrumb-link {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: var(--color-black);
  padding: 0 20px 0 0;
  text-decoration: none;
  white-space: nowrap;
  outline: none; }
/* line 52, common.scss */
.breadcrumb-link::after {
  position: absolute;
  content: '';
  right: 8px;
  top: 50%;
  margin-top: -8px;
  background: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.353546 9.5L0 9.14644L4.14645 4.99999L0 0.853546L0.353546 0.5L5.56066 4.99999L0.353546 9.5Z' fill='url(%23pattern0)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.353546 9.5L0 9.14644L4.14645 4.99999L0 0.853546L0.353546 0.5L5.56066 4.99999L0.353546 9.5Z' fill='%233A3A3A'/%3E%3Cdefs%3E%3Cpattern id='pattern0' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23image0' transform='translate(0 -0.262569) scale(0.00641026 0.0103751)'/%3E%3C/pattern%3E%3Cimage id='image0' width='156' height='147' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJwAAACTCAYAAAB77nCYAAACnElEQVR4Ae3SUQkAIBQEQTXW699LwRD7NVfgYJk9M3eZAlGBE/24UeAXAA6EtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtABwaW5nwDGQFgAuze0MOAbSAsCluZ0Bx0BaALg0tzPgGEgLAJfmdgYcA2kB4NLczoBjIC0AXJrbGXAMpAWAS3M7A46BtMADD7IC0zRYJwAAAAAASUVORK5CYII='/%3E%3C/defs%3E%3C/svg%3E%0A") 50% 50% no-repeat;
  width: 9px;
  height: 16px; }
/* line 63, common.scss */
.breadcrumb-blank {
  white-space: nowrap; }

/* line 68, common.scss */
.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
  font-family: "Cuprum"; }
  /* line 87, common.scss */
  .button-black {
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    background-color: var(--color-black);
    padding: 0 15px;
    color: var(--color-white);
    height: 35px; }
    /* line 97, common.scss */
    .button-black .icon {
      margin-right: 15px;
      width: 19px; }
  /* line 103, common.scss */
  .button-red {
    background-color: var(--color-red);
    height: 35px;
    color: var(--color-white); }
  /* line 109, common.scss */
  .button-catalog-close {
    color: var(--color-gray);
    margin-left: 17px; }
  /* line 114, common.scss */
  .button-search {
    width: 60px;
    height: 60px;
    margin: 0; }
  /* line 121, common.scss */
  .button .icon-inactive {
    display: flex; }
  /* line 124, common.scss */
  .button .icon-active {
    display: none; }
  /* line 131, common.scss */
  .button.active .icon-inactive {
    display: none; }
  /* line 134, common.scss */
  .button.active .icon-active {
    display: flex; }

/* line 141, common.scss */
.top-bar {
  border-bottom: 1px solid #F0F0F0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }
  /* line 148, common.scss */
  .top-bar > .container > .flex, .top-bar > .container > .column {
    margin: 0 -15px; }
  /* line 152, common.scss */
  .top-bar .button {
    display: none;
    color: var(--color-gray);
    white-space: nowrap;
    padding: 15px; }
  /* line 159, common.scss */
  .top-bar_menu {
    margin: 0;
    padding: 10px 0;
    list-style: none; }
  /* line 165, common.scss */
  .top-bar_mobile {
    display: none; }
  /* line 169, common.scss */
  .top-bar a {
    padding: 0 10px;
    color: var(--color-gray);
    text-decoration: none; }
  /* line 175, common.scss */
  .top-bar_user-menu {
    text-align: right;
    color: var(--color-gray);
    white-space: nowrap; }
    /* line 180, common.scss */
    .top-bar_user-menu a {
      padding: 0;
      color: var(--color-black); }

/* line 187, common.scss */
.tooltip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  position: relative; }
  /* line 202, common.scss */
  .tooltip-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 150%;
    z-index: 99;
    color: var(--color-black) !important;
    background-color: var(--color-white);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    padding: 10px; }
    /* line 216, common.scss */
    .tooltip-content ul {
      padding: 0 25px;
      margin: 0; }
  /* line 222, common.scss */
  .tooltip.active .tooltip-content {
    display: block; }

/* line 227, common.scss */
.catalog {
  background-color: var(--color-black);
  z-index: 9; }
  /* line 231, common.scss */
  .catalog-container {
    position: relative;
    padding: 0;
    margin: 0 -7px; }
  /* line 237, common.scss */
  .catalog ul {
    padding: 0;
    margin: 0;
    list-style: none; }
  /* line 244, common.scss */
  .catalog .collection a {
    text-decoration: none; }
    /* line 247, common.scss */
    .catalog .collection a svg {
      margin-left: 5px; }
  /* line 252, common.scss */
  .catalog .collection > a {
    padding: 0 7px;
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase; }
  /* line 260, common.scss */
  .catalog .collection-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    display: none;
    z-index: 99; }
    /* line 272, common.scss */
    .catalog .collection-dropdown_wrapper {
      padding: 27px 25px 30px; }
      /* line 275, common.scss */
      .catalog .collection-dropdown_wrapper > * {
        width: 50%; }
    /* line 280, common.scss */
    .catalog .collection-dropdown.active {
      display: block; }
  /* line 285, common.scss */
  .catalog .collection-subcollection {
    margin-bottom: 20px; }
    /* line 287, common.scss */
    .catalog .collection-subcollection a {
      text-transform: uppercase;
      color: #000000; }
  /* line 293, common.scss */
  .catalog .collection-subcollections_list {
    width: 100%;
    align-content: flex-start; }
    /* line 297, common.scss */
    .catalog .collection-subcollections_list.lvl1 .collection-subcollection {
      width: 50%; }
    /* line 301, common.scss */
    .catalog .collection-subcollections_list.lvl2 {
      margin: 8px 8px 0; }
      /* line 305, common.scss */
      .catalog .collection-subcollections_list.lvl2 .collection-subcollection:not(:last-of-type) {
        margin-bottom: 8px; }
      /* line 309, common.scss */
      .catalog .collection-subcollections_list.lvl2 .collection-subcollection a {
        color: #858585;
        text-transform: none; }
  /* line 319, common.scss */
  .catalog .collection-menu_filter + .collection-menu_filter {
    margin-top: 40px; }
  /* line 322, common.scss */
  .catalog .collection-menu_filter-title {
    font-weight: bold;
    text-transform: uppercase;
    color: #000; }
  /* line 328, common.scss */
  .catalog .collection-menu_filter-values {
    margin: 0 -7px; }
    /* line 331, common.scss */
    .catalog .collection-menu_filter-values > * {
      margin: 15px 7px 0;
      height: 75px;
      width: 62px;
      flex: 0 0 auto;
      text-align: center; }
  /* line 342, common.scss */
  .catalog .button-catalog {
    display: none;
    height: 60px; }
    /* line 346, common.scss */
    .catalog .button-catalog.visible {
      display: flex; }
  /* line 351, common.scss */
  .catalog .catalog-mobile {
    position: fixed;
    top: -100%;
    z-index: 29;
    left: -15px;
    height: 0;
    overflow: hidden;
    background-color: var(--color-black);
    -webkit-transition: top 0.1s ease 0s;
    -o-transition: top 0.1s ease 0s;
    -moz-transition: top 0.1s ease 0s;
    transition: top 0.1s ease 0s; }
    /* line 365, common.scss */
    .catalog .catalog-mobile.active {
      height: auto;
      bottom: 0;
      overflow-y: auto; }
    /* line 371, common.scss */
    .catalog .catalog-mobile_list {
      padding: 12px 32px; }
      /* line 374, common.scss */
      .catalog .catalog-mobile_list .collection {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: flex-start;
        -webkit-align-items: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start; }
        /* line 383, common.scss */
        .catalog .catalog-mobile_list .collection > a {
          padding: 0 0 15px;
          color: var(--color-white);
          text-decoration: none;
          white-space: nowrap;
          width: 186px;
          -webkit-box-pack: space-between;
          -webkit-justify-content: space-between;
          -ms-flex-pack: space-between;
          justify-content: space-between; }
          /* line 394, common.scss */
          .catalog .catalog-mobile_list .collection > a .icon {
            width: 20px;
            height: 20px; }
            /* line 398, common.scss */
            .catalog .catalog-mobile_list .collection > a .icon svg {
              margin-right: 5px; }
    /* line 406, common.scss */
    .catalog .catalog-mobile .collection-dropdown {
      position: relative;
      width: 100%; }
      /* line 411, common.scss */
      .catalog .catalog-mobile .collection-dropdown_wrapper > * {
        width: 100%; }
      /* line 416, common.scss */
      .catalog .catalog-mobile .collection-dropdown.active {
        display: block; }

/* line 423, common.scss */
.header {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  z-index: 99; }
  /* line 431, common.scss */
  .header > .container > .flex, .header > .container > .column {
    padding: 13px 0;
    margin: 0 -10px;
    position: relative; }
  /* line 437, common.scss */
  .header-logo, .header-contacts, .header-store, .header-yandex, .header-cart {
    padding: 0 10px; }
  /* line 441, common.scss */
  .header-logo a {
    width: 78px;
    height: 78px; }
  /* line 446, common.scss */
  .header-about {
    padding-left: 15px; }
    /* line 449, common.scss */
    .header-about button {
      display: none; }
  /* line 455, common.scss */
  .header-contacts a {
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    color: var(--color-black);
    text-decoration: none;
    margin-bottom: 4px;
    height: 28px;
    display: block; }
  /* line 466, common.scss */
  .header-contacts .button-tooltip {
    height: 16px; }
    /* line 469, common.scss */
    .header-contacts .button-tooltip .icon {
      height: 16px; }
  /* line 474, common.scss */
  .header-contacts .tooltip-content {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px; }
    /* line 479, common.scss */
    .header-contacts .tooltip-content a {
      font-weight: normal;
      font-size: 14px;
      line-height: 16px;
      height: auto;
      color: #0000EE;
      text-decoration: underline; }
  /* line 489, common.scss */
  .header-contacts_address {
    display: none;
    color: var(--color-dark-gray); }
  /* line 494, common.scss */
  .header-contacts_delivery-free {
    color: var(--color-gray);
    font-size: 14px;
    margin-top: 4px; }
  /* line 502, common.scss */
  .header-store_about, .header-store_time {
    height: 16px; }
  /* line 506, common.scss */
  .header-store_address {
    font-weight: bold;
    line-height: 18px;
    margin-bottom: 4px;
    height: 28px; }
    /* line 511, common.scss */
    .header-store_address svg {
      color: var(--color-red);
      margin-right: 6px; }
  /* line 517, common.scss */
  .header-store_time {
    color: var(--color-gray);
    font-size: 14px;
    margin-top: 4px; }
  /* line 525, common.scss */
  .header-cart > a {
    width: 60px;
    height: 60px;
    position: relative;
    background-color: var(--color-black);
    color: var(--color-white); }
  /* line 533, common.scss */
  .header-cart_count {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 0;
    left: 0;
    background-color: var(--color-red);
    text-align: center;
    line-height: 20px; }
  /* line 545, common.scss */
  .header-cart_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 10px;
    overflow: hidden;
    background-color: var(--color-white);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
    z-index: 59;
    width: 590px; }
    /* line 558, common.scss */
    .header-cart_dropdown.active {
      display: block; }
  /* line 563, common.scss */
  .header-cart .cart-item_list {
    max-height: 310px;
    overflow-y: auto; }
  /* line 568, common.scss */
  .header-cart .cart-item {
    padding: 20px 14px; }
    /* line 571, common.scss */
    .header-cart .cart-item_image, .header-cart .cart-item_data > *, .header-cart .cart-item_delete-button {
      padding: 0 10px; }
    /* line 575, common.scss */
    .header-cart .cart-item_image {
      width: 64px; }
    /* line 579, common.scss */
    .header-cart .cart-item_data {
      flex: 1 1 auto; }
    /* line 583, common.scss */
    .header-cart .cart-item_delete-wrapper {
      width: auto; }
    /* line 587, common.scss */
    .header-cart .cart-item .quantity input {
      padding: 5px 13px; }
  /* line 592, common.scss */
  .header-cart .button-red {
    padding: 0 30px;
    font-weight: bold;
    text-transform: uppercase; }
  /* line 598, common.scss */
  .header-cart_summary {
    padding: 20px 65px 20px 25px; }
  /* line 602, common.scss */
  .header-cart_total {
    color: var(--color-gray); }
    /* line 605, common.scss */
    .header-cart_total .cart-total_value {
      font-weight: bold;
      color: var(--color-black); }
  /* line 612, common.scss */
  .header .button-search {
    margin: 0 0 0 auto;
    z-index: 49; }
    /* line 616, common.scss */
    .header .button-search .icon {
      margin: 0 auto; }
  /* line 621, common.scss */
  .header-search_form {
    display: block;
    position: absolute;
    top: 12.5px;
    left: 0;
    right: 60px;
    height: 0;
    overflow: hidden;
    background-color: var(--color-black);
    -webkit-transition: height 0.3s ease 0s;
    -o-transition: height 0.3s ease 0s;
    -moz-transition: height 0.3s ease 0s;
    transition: height 0.3s ease 0s;
    z-index: 9; }
    /* line 636, common.scss */
    .header-search_form.active {
      left: 0;
      height: 40px; }
    /* line 641, common.scss */
    .header-search_form input {
      background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.75691 1.59116C11.1622 1.59116 13.9227 4.35166 13.9227 7.75691C13.9227 11.1622 11.1622 13.9227 7.75691 13.9227C4.35166 13.9227 1.59116 11.1622 1.59116 7.75691C1.59116 4.35166 4.35166 1.59116 7.75691 1.59116ZM15.5138 7.75691C15.5138 3.47289 12.0409 0 7.75691 0C3.47289 0 0 3.47289 0 7.75691C0 12.0409 3.47289 15.5138 7.75691 15.5138C12.0409 15.5138 15.5138 12.0409 15.5138 7.75691Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.664 12.664C12.3533 12.9747 12.3533 13.4784 12.664 13.7891L16.6419 17.767C16.9526 18.0777 17.4563 18.0777 17.767 17.767C18.0777 17.4563 18.0777 16.9526 17.767 16.6419L13.7891 12.664C13.4784 12.3533 12.9747 12.3533 12.664 12.664Z' fill='white'/%3E%3C/svg%3E%0A") 0 50% no-repeat var(--color-black);
      padding: 0 0 0 32px;
      border: none;
      border-bottom: 1px solid var(--color-gray);
      color: var(--color-middle-gray);
      flex: 1 1 auto;
      margin-right: 15px;
      height: 35px; }
    /* line 652, common.scss */
    .header-search_form form .button {
      background-color: #FFFFFF;
      width: 123px;
      height: 35px;
      flex: 0 0 auto; }
  /* line 661, common.scss */
  .header.fixed {
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1); }
    /* line 666, common.scss */
    .header.fixed > .container > .flex, .header.fixed > .container > .column {
      padding: 0; }
    /* line 670, common.scss */
    .header.fixed .header-logo a {
      width: 42px;
      height: 42px; }
    /* line 675, common.scss */
    .header.fixed .header-about {
      padding-right: 25px; }
      /* line 678, common.scss */
      .header.fixed .header-about img {
        display: none; }
      /* line 682, common.scss */
      .header.fixed .header-about button {
        display: flex; }
    /* line 687, common.scss */
    .header.fixed .header-contacts div, .header.fixed .header-store_about {
      display: none; }
    /* line 691, common.scss */
    .header.fixed .catalog {
      position: absolute;
      left: 0;
      right: 0;
      top: -100%; }
      /* line 697, common.scss */
      .header.fixed .catalog.active {
        top: 100%; }

/* line 704, common.scss */
.footer {
  background: var(--color-dark-gray);
  color: var(--color-white);
  padding: 40px 0; }
  /* line 709, common.scss */
  .footer-row + .footer-row {
    width: 60%; }
  /* line 713, common.scss */
  .footer a {
    color: var(--color-white);
    text-decoration: none; }
    /* line 717, common.scss */
    .footer a.social-link {
      margin-right: 10px; }
  /* line 722, common.scss */
  .footer-contacts {
    margin-left: 45px; }
    /* line 725, common.scss */
    .footer-contacts_links a {
      display: block; }
      /* line 727, common.scss */
      .footer-contacts_links a:first-of-type {
        font-weight: bold;
        font-size: 24px;
        line-height: 28px; }
      /* line 733, common.scss */
      .footer-contacts_links a:last-of-type {
        color: var(--color-light-gray); }
    /* line 738, common.scss */
    .footer-contacts_address {
      margin: 14px 0 17px; }
  /* line 746, common.scss */
  .footer-menu_title {
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px; }
  /* line 752, common.scss */
  .footer-menu ul {
    padding: 0;
    margin: 0;
    list-style: none; }
  /* line 758, common.scss */
  .footer-menu_item {
    margin-bottom: 15px; }
    /* line 761, common.scss */
    .footer-menu_item a {
      color: var(--color-light-gray); }

/* line 768, common.scss */
.bottom-bar {
  background-color: var(--color-dark-gray);
  opacity: 0.9;
  padding-top: 17.5px;
  padding-bottom: 50px; }

/* line 776, common.scss */
.tabs-header {
  margin-bottom: 10px; }
/* line 781, common.scss */
.tabs .tab-content {
  display: none; }
  /* line 784, common.scss */
  .tabs .tab-content.active {
    display: block; }

/* line 791, common.scss */
.section-title {
  font-weight: bold;
  font-size: 22px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-black);
  padding-bottom: 30px; }

/* line 801, common.scss */
.page-title, h1 {
  font-weight: bold;
  font-size: 25px;
  line-height: 29px;
  color: var(--color-black);
  margin: 0; }

/* line 809, common.scss */
.recently-view {
  padding: 50px 0 30px;
  display: none; }
  /* line 813, common.scss */
  .recently-view .product-small {
    text-align: center; }
    /* line 816, common.scss */
    .recently-view .product-small_image {
      height: 168px; }
    /* line 820, common.scss */
    .recently-view .product-small_price {
      color: var(--color-gray); }
    /* line 824, common.scss */
    .recently-view .product-small_title {
      color: var(--color-black); }
  /* line 829, common.scss */
  .recently-view button {
    color: var(--color-gray); }
  /* line 833, common.scss */
  .recently-view.active {
    display: block; }

/* line 839, common.scss */
.rating .star {
  color: #D8D8D8;
  margin-right: 4px; }
  /* line 843, common.scss */
  .rating .star-active {
    color: #E23641; }

/* line 849, common.scss */
.quantity {
  width: 100px; }
  /* line 852, common.scss */
  .quantity input {
    color: #000000;
    width: 40px;
    flex: 0 0 auto;
    text-align: center; }
  /* line 858, common.scss */
  .quantity button {
    width: 30px;
    flex: 0 0 auto; }

/* line 864, common.scss */
.block-title {
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--color-black); }

/* line 870, common.scss */
.form-item {
  color: var(--color-black); }
  /* line 873, common.scss */
  .form-item label {
    display: block;
    margin-bottom: 10px; }
    /* line 877, common.scss */
    .form-item label .required {
      color: var(--color-red); }
  /* line 882, common.scss */
  .form-item .input {
    width: 100%; }

/* line 887, common.scss */
.modal {
  width: 500px;
  background: #fff;
  border: 1px solid #CFCFCF;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  z-index: 29; }
  /* line 895, common.scss */
  .modal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 104000;
    background-color: rgba(0, 0, 0, 0.7); }
  /* line 905, common.scss */
  .modal-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: var(--color-black);
    margin-bottom: 10px; }
  /* line 913, common.scss */
  .modal-text {
    color: var(--color-gray);
    margin-bottom: 20px; }
  /* line 918, common.scss */
  .modal-add {
    width: auto;
    padding: 20px; }
    /* line 922, common.scss */
    .modal-add_image {
      width: 99px; }
    /* line 926, common.scss */
    .modal-add .modal-content {
      padding: 0 20px;
      text-align: left; }
    /* line 931, common.scss */
    .modal-add .modal-buttons .button-red {
      padding: 0 30px;
      flex: 0 0 auto; }
  /* line 937, common.scss */
  .modal-close {
    color: var(--color-gray); }

/* line 943, common.scss */
.swiper-container button svg {
  flex: 0 0 auto; }
/* line 947, common.scss */
.swiper-container button:after {
  display: none; }

/* line 950, common.scss */
.swiper-wrapper .swiper-lazy-preloader {
  border-color: var(--swiper-preloader-color, var(--color-gray)); }

/* line 955, common.scss */
.reviews-list {
  box-sizing: border-box;
  width: calc(100% - 387px);
  padding-right: 120px; }
/* line 961, common.scss */
.reviews-rating {
  width: 387px; }
  /* line 964, common.scss */
  .reviews-rating_header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #DDDDDD; }
  /* line 970, common.scss */
  .reviews-rating_middle {
    font-size: 22px;
    color: var(--color-gray); }
    /* line 974, common.scss */
    .reviews-rating_middle-value {
      color: var(--color-black); }
  /* line 979, common.scss */
  .reviews-rating_stats {
    display: table; }

/* line 985, common.scss */
.stat-line {
  display: table-row; }
  /* line 988, common.scss */
  .stat-line > * {
    display: table-cell;
    white-space: nowrap; }
  /* line 993, common.scss */
  .stat-line_title {
    width: 60px;
    padding: 10px 15px 10px 0; }
  /* line 999, common.scss */
  .stat-line_chart {
    padding: 10px 0;
    width: 100%;
    flex: 1 0 auto; }
  /* line 1005, common.scss */
  .stat-line_value {
    background: var(--color-middle-gray);
    justify-self: stretch;
    height: 6px; }
  /* line 1011, common.scss */
  .stat-line_current {
    background: var(--color-dark-gray);
    height: 100%; }
  /* line 1016, common.scss */
  .stat-line_number {
    padding: 10px 0 10px 15px; }

/* line 1021, common.scss */
.clear {
  clear: both; }

/* line 1026, common.scss */
.pagination-link, .pagination-current, .pagination-delimeter, .pagination-prev, .pagination-next {
  margin: 5px;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #000000;
  text-decoration: none;
  border: 1px solid var(--color-light-gray);
  box-sizing: border-box; }
/* line 1040, common.scss */
.pagination-current {
  border-color: var(--color-gray); }
/* line 1044, common.scss */
.pagination-delimeter {
  border-color: #fff; }
/* line 1048, common.scss */
.pagination-prev {
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg); }

/* line 4, index.scss */
.index-slider .index-banner_image {
  min-width: 100%;
  max-width: none;
  flex-shrink: 0; }
/* line 10, index.scss */
.index-slider .index-banner_link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
/* line 19, index.scss */
.index-slider .index-slider-button {
  color: var(--color-white); }
/* line 23, index.scss */
.index-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  position: absolute;
  text-align: center;
  z-index: 9;
  bottom: 14px; }
  /* line 29, index.scss */
  .index-slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: var(--color-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%; }
    /* line 39, index.scss */
    .index-slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background-color: var(--color-black); }

/* line 46, index.scss */
.index-products {
  padding-top: 50px; }
  /* line 49, index.scss */
  .index-products .tab-button {
    padding: 0 18px;
    font-weight: bold;
    font-size: 22px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--color-gray); }
    /* line 57, index.scss */
    .index-products .tab-button.active {
      color: var(--color-black); }

/* line 63, index.scss */
.index-collections {
  padding: 50px 0; }

/* line 67, index.scss */
.index-articles {
  background-color: var(--color-dark-gray);
  padding: 50px 0 20px; }
  /* line 71, index.scss */
  .index-articles .section-title {
    color: var(--color-white);
    text-align: left;
    margin-bottom: 0; }
  /* line 77, index.scss */
  .index-articles .index-article {
    width: 50%;
    margin-bottom: 30px; }
    /* line 81, index.scss */
    .index-articles .index-article_image {
      width: 186px;
      flex: 0 0 auto; }
    /* line 86, index.scss */
    .index-articles .index-article_content {
      padding: 10px 30px; }
    /* line 90, index.scss */
    .index-articles .index-article_title {
      color: var(--color-white);
      font-weight: bold;
      font-size: 18px;
      line-height: 21px;
      margin-bottom: 17px;
      text-decoration: none;
      display: block; }
    /* line 100, index.scss */
    .index-articles .index-article_preview {
      color: #F0F0F0; }

/* line 106, index.scss */
.index-description {
  padding: 50px 0; }
  /* line 109, index.scss */
  .index-description .section-title {
    text-align: left;
    padding-bottom: 0px; }
  /* line 114, index.scss */
  .index-description_text {
    color: var(--color-dark-gray); }

/* line 1, collection.scss */
.collections-list {
  margin: 0 -10px; }
  /* line 5, collection.scss */
  .collections-list .collection-block {
    width: calc(25% - 20px);
    margin: 0 10px;
    border: 1px solid #F0F0F0;
    box-sizing: border-box; }
    /* line 11, collection.scss */
    .collections-list .collection-block .tooltip-content {
      width: auto;
      right: -5px;
      left: -5px;
      overflow-x: auto; }
  /* line 19, collection.scss */
  .collections-list .collection-link {
    display: block;
    width: auto;
    padding: 0 10px;
    color: #000000;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none; }
  /* line 31, collection.scss */
  .collections-list .collection-image {
    height: 250px; }
  /* line 35, collection.scss */
  .collections-list .collection-title {
    padding: 15px 12px 15px 0; }

/* line 42, collection.scss */
.collection-page_subcollections {
  padding: 30px 0 50px; }
  /* line 44, collection.scss */
  .collection-page_subcollections .collection-title {
    text-align: left; }
  /* line 48, collection.scss */
  .collection-page_subcollections .collection-block {
    margin-bottom: 20px; }

/* line 53, collection.scss */
.collection-products {
  position: relative; }
  /* line 56, collection.scss */
  .collection-products .collection-empty {
    padding: 30px;
    text-align: center;
    font-size: 22px; }
    /* line 61, collection.scss */
    .collection-products .collection-empty .button {
      padding: 0 15px;
      font-weight: bold;
      margin-top: 30px;
      text-transform: uppercase; }

/* line 70, collection.scss */
.collection-panel {
  background-color: var(--color-light-gray);
  white-space: nowrap;
  padding: 10px 0; }
  /* line 75, collection.scss */
  .collection-panel > .container {
    position: relative; }
    /* line 78, collection.scss */
    .collection-panel > .container > .flex, .collection-panel > .container > .column {
      margin: 0 -15px; }
  /* line 83, collection.scss */
  .collection-panel .page-title {
    margin: 7px 0;
    padding: 0 15px; }
    /* line 87, collection.scss */
    .collection-panel .page-title + div {
      margin-left: auto; }
      /* line 90, collection.scss */
      .collection-panel .page-title + div > * {
        margin: 7px 15px; }
  /* line 96, collection.scss */
  .collection-panel .custom-select {
    margin-left: 15px;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
    position: relative;
    background-color: var(--color-white);
    border: 1px solid var(--color-middle-gray);
    flex: 1 1 auto; }
    /* line 107, collection.scss */
    .collection-panel .custom-select_header {
      padding: 0 30px 0 15px;
      background: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0.573273L0.353561 0.219727L4.50001 4.36617L8.64645 0.219727L9 0.573273L4.50001 5.78039L0 0.573273Z' fill='%23858585'/%3E%3C/svg%3E%0A") right 10px top 50% no-repeat #fff;
      cursor: pointer;
      height: 36px;
      box-sizing: border-box; }
      /* line 114, collection.scss */
      .collection-panel .custom-select_header div {
        overflow: hidden;
        width: 100%;
        white-space: nowrap; }
    /* line 121, collection.scss */
    .collection-panel .custom-select_list {
      position: absolute;
      top: 100%;
      left: -1px;
      list-style: none;
      margin: 0;
      padding: 0;
      display: none;
      -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
      -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
      background-color: var(--color-white);
      border: 1px solid var(--color-middle-gray);
      z-index: 19;
      min-width: 100%; }
    /* line 138, collection.scss */
    .collection-panel .custom-select_option {
      padding: 5px;
      display: block;
      cursor: pointer;
      white-space: nowrap;
      font-weight: normal; }
      /* line 145, collection.scss */
      .collection-panel .custom-select_option.active {
        font-weight: bold;
        background-color: var(--color-light-gray); }
    /* line 152, collection.scss */
    .collection-panel .custom-select.active .custom-select_list {
      display: block; }

/* line 159, collection.scss */
.collection-filter {
  position: absolute;
  top: 100%;
  right: 0;
  overflow: hidden;
  height: 0;
  width: 405px;
  max-width: 100%;
  z-index: 79;
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.16), 0px 0px 35px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.16), 0px 0px 35px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.16), 0px 0px 35px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s; }
  /* line 178, collection.scss */
  .collection-filter_wrapper {
    padding: 25px 65px 25px 30px; }
  /* line 182, collection.scss */
  .collection-filter ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  /* line 189, collection.scss */
  .collection-filter .filter-header {
    text-transform: uppercase;
    margin-bottom: 30px; }
    /* line 193, collection.scss */
    .collection-filter .filter-header button {
      color: var(--color-gray);
      text-transform: capitalize; }
      /* line 197, collection.scss */
      .collection-filter .filter-header button .icon {
        margin-right: 7px; }
  /* line 203, collection.scss */
  .collection-filter .filter-item {
    margin-bottom: 25px; }
    /* line 205, collection.scss */
    .collection-filter .filter-item-title {
      font-weight: bold;
      font-size: 16px;
      line-height: 18px; }
  /* line 212, collection.scss */
  .collection-filter .filter-value {
    margin-top: 13px; }
    /* line 214, collection.scss */
    .collection-filter .filter-value .checkbox {
      display: none; }
    /* line 217, collection.scss */
    .collection-filter .filter-value_checkbox-icon {
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      margin-right: 10px;
      border: 1px solid var(--color-black); }
    /* line 227, collection.scss */
    .collection-filter .filter-value .checkbox:checked + .checkbox-icon {
      background-color: var(--color-dark-gray); }
    /* line 231, collection.scss */
    .collection-filter .filter-value-image {
      width: 62px;
      height: 76px;
      border: 1px solid #fff;
      box-sizing: border-box;
      padding: 7px 0; }
      /* line 238, collection.scss */
      .collection-filter .filter-value-image.checked {
        background: var(--color-light-gray);
        border: 1px solid var(--color-gray); }
  /* line 247, collection.scss */
  .collection-filter .filter-buttons button {
    padding: 0 10px;
    font-size: 16px;
    line-height: 18px;
    color: var(--color-gray); }
    /* line 253, collection.scss */
    .collection-filter .filter-buttons button.button-red {
      font-weight: bold;
      font-size: 14px;
      line-height: 16px;
      text-transform: uppercase;
      color: var(--color-white); }
  /* line 263, collection.scss */
  .collection-filter .filter-range-info {
    margin-top: 14px; }
    /* line 266, collection.scss */
    .collection-filter .filter-range-info .price_min_range {
      margin-right: 30px; }
    /* line 270, collection.scss */
    .collection-filter .filter-range-info input {
      max-width: 87px;
      margin-left: 7px;
      color: #000000; }
  /* line 278, collection.scss */
  .collection-filter.active {
    min-height: 200px;
    overflow-y: auto; }
  /* line 283, collection.scss */
  .collection-filter .noUi-horizontal {
    background-color: var(--color-light-gray);
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 6px;
    margin-top: 16px; }
  /* line 293, collection.scss */
  .collection-filter .noUi-connect {
    background-color: var(--color-gray); }
  /* line 297, collection.scss */
  .collection-filter .noUi-horizontal .noUi-handle {
    width: 6px;
    height: 12px;
    right: -3px;
    top: -3px;
    background-color: var(--color-red);
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
    /* line 311, collection.scss */
    .collection-filter .noUi-horizontal .noUi-handle:before, .collection-filter .noUi-horizontal .noUi-handle:after {
      display: none; }

/* line 317, collection.scss */
.howto-collection_products {
  margin-top: 30px; }

/* line 322, collection.scss */
.howto-product_description, .howto-product_gallery {
  width: 50%;
  padding: 50px;
  flex: 0 0 auto;
  box-sizing: border-box; }
/* line 329, collection.scss */
.howto-product_description {
  background-color: #eeeeee; }
/* line 333, collection.scss */
.howto-product_gallery iframe {
  width: 100%;
  border: none; }
/* line 338, collection.scss */
.howto-product_even {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }
/* line 344, collection.scss */
.howto-product_title {
  font-weight: bold;
  font-size: 22px;
  line-height: 25px; }
/* line 350, collection.scss */
.howto-product_slider {
  padding: 0 30px;
  position: relative;
  margin-top: 20px; }
  /* line 355, collection.scss */
  .howto-product_slider-item {
    text-align: center; }
  /* line 359, collection.scss */
  .howto-product_slider button {
    color: var(--color-gray); }
    /* line 362, collection.scss */
    .howto-product_slider button::after {
      display: none; }

/* line 3, product.scss */
.product-labels {
  position: absolute;
  left: -5px;
  top: 0;
  z-index: 9; }
  /* line 9, product.scss */
  .product-labels .label {
    margin-top: 5px;
    font-weight: bold;
    font-size: 12px; }
    /* line 14, product.scss */
    .product-labels .label-today {
      background-color: #F0F0F0;
      color: var(--color-gray);
      width: 85px;
      height: 34px; }
      /* line 20, product.scss */
      .product-labels .label-today .label-text {
        margin-left: 5px;
        line-height: 100%; }
    /* line 26, product.scss */
    .product-labels .label-new {
      background-color: var(--color-gray);
      color: var(--color-white);
      width: 67px;
      height: 23px; }
/* line 35, product.scss */
.product-compare svg {
  margin-right: 10px; }
/* line 39, product.scss */
.product-gallery {
  width: 488px;
  position: relative; }
  /* line 44, product.scss */
  .product-gallery .product-image > a {
    display: block;
    text-decoration: none; }
  /* line 49, product.scss */
  .product-gallery .product-image .lens {
    position: absolute;
    top: 23px;
    right: 24px; }
/* line 57, product.scss */
.product-image {
  border: 1px solid var(--color-light-gray);
  box-sizing: border-box;
  padding: 20px 45px;
  text-align: center; }
/* line 64, product.scss */
.product-thumb {
  width: 80px;
  margin: 16px 11px; }
/* line 69, product.scss */
.product-data {
  margin-left: 40px;
  width: calc(100% - 528px); }
/* line 74, product.scss */
.product-title {
  font-weight: bold;
  font-size: 25px;
  line-height: 29px;
  color: var(--color-black);
  order: 1; }
/* line 82, product.scss */
.product-header {
  font-size: 16px;
  line-height: 18px;
  color: var(--color-gray);
  margin: 13px -10px 22px;
  white-space: nowrap;
  order: 2; }
  /* line 90, product.scss */
  .product-header_block {
    flex: 1 1 auto;
    margin-bottom: 8px; }
    /* line 94, product.scss */
    .product-header_block > * {
      padding: 0 10px; }
    /* line 98, product.scss */
    .product-header_block a {
      color: var(--color-gray);
      margin-left: 5px; }
    /* line 103, product.scss */
    .product-header_block .product-rating .product-rating {
      margin-right: 5px; }
  /* line 108, product.scss */
  .product-header_title {
    font-weight: bold; }
/* line 113, product.scss */
.product-short-description {
  color: var(--color-dark-gray);
  margin-bottom: 30px;
  order: 3; }
/* line 119, product.scss */
.product-variants {
  margin-bottom: 30px; }
/* line 128, product.scss */
.product .option-razmer .option-values {
  margin: 0 -5px 30px; }
/* line 132, product.scss */
.product .option-razmer button {
  padding: 12px 16px;
  background-color: var(--color-white);
  color: #424242;
  border: 1px solid var(--color-light-gray);
  box-sizing: border-box;
  margin: 5px;
  font-weight: bold;
  line-height: 120%; }
  /* line 142, product.scss */
  .product .option-razmer button span {
    color: var(--color-gray);
    font-weight: normal;
    font-size: 14px; }
  /* line 148, product.scss */
  .product .option-razmer button.active {
    background-color: var(--color-light-gray);
    border: 1px solid var(--color-gray);
    box-sizing: border-box; }
/* line 156, product.scss */
.product .option-available {
  padding: 22px 24px;
  border: 1px solid var(--color-light-gray);
  box-sizing: border-box;
  margin-bottom: 30px; }
  /* line 162, product.scss */
  .product .option-available_item {
    margin: 5px 0;
    color: #111; }
    /* line 166, product.scss */
    .product .option-available_item .description {
      color: var(--color-gray); }
/* line 172, product.scss */
.product-buy {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  box-sizing: border-box;
  padding: 10px 20px 24px 70px;
  margin-bottom: 20px; }
/* line 180, product.scss */
.product-prices {
  position: relative;
  margin-top: 15px; }
  /* line 184, product.scss */
  .product-prices .sale {
    position: absolute;
    top: 50%;
    left: -75px;
    margin-top: -17.5px;
    width: 54px;
    height: 35px;
    color: var(--color-white);
    background-color: var(--color-red);
    font-weight: bold;
    font-size: 15px;
    line-height: 17px; }
  /* line 198, product.scss */
  .product-prices .price {
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    color: var(--color-black); }
  /* line 205, product.scss */
  .product-prices .old_price {
    text-decoration-line: line-through;
    color: var(--color-gray);
    margin-left: 15px; }
/* line 212, product.scss */
.product-actions {
  margin-top: 15px; }
  /* line 215, product.scss */
  .product-actions .button {
    margin: 0 5px;
    text-transform: uppercase;
    font-weight: bold; }
    /* line 220, product.scss */
    .product-actions .button-red {
      padding: 0 20px; }
/* line 226, product.scss */
.product-delivery {
  margin-bottom: 20px; }
  /* line 229, product.scss */
  .product-delivery-data {
    padding: 25px;
    margin-bottom: 30px; }
/* line 235, product.scss */
.product-bundle {
  padding-right: 40px; }
  /* line 237, product.scss */
  .product-bundle_price {
    font-weight: bold;
    font-size: 36px;
    line-height: 42px;
    color: var(--color-black); }
  /* line 244, product.scss */
  .product-bundle_old-price {
    text-decoration-line: line-through;
    color: var(--color-gray); }
  /* line 249, product.scss */
  .product-bundle .button {
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
    padding: 0 20px; }
  /* line 257, product.scss */
  .product-bundle_icon {
    padding: 33px; }
/* line 263, product.scss */
.product-small a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  color: var(--color-dark-gray); }
/* line 271, product.scss */
.product-small_image {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  box-sizing: border-box;
  height: 130px;
  padding: 15px 20px;
  margin-bottom: 15px; }
/* line 281, product.scss */
.product-bundle .product-small {
  width: 146px; }
  /* line 284, product.scss */
  .product-bundle .product-small_image {
    text-align: center; }
  /* line 288, product.scss */
  .product-bundle .product-small_title {
    height: 48px;
    oveflow: hidden; }
/* line 295, product.scss */
.product-tabs .tabs_header {
  margin: 60px 0 30px;
  position: relative;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  /* line 300, product.scss */
  .product-tabs .tabs_header::-webkit-scrollbar {
    display: none; }
/* line 306, product.scss */
.product-tabs .tab-button {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 21px;
  color: var(--color-dark-gray);
  flex: 0 0 auto; }
  /* line 314, product.scss */
  .product-tabs .tab-button.active {
    background-color: var(--color-dark-gray);
    color: var(--color-white); }
/* line 321, product.scss */
.product-tabs .tab-content h2, .product-tabs .tab-content h3, .product-tabs .tab-content h4 {
  clear: both; }
/* line 326, product.scss */
.product-tabs .tab-content.product-properties .property {
  background-color: var(--color-light-gray);
  text-transform: capitalize; }
  /* line 330, product.scss */
  .product-tabs .tab-content.product-properties .property:nth-of-type(2n) {
    background-color: var(--color-white); }
  /* line 334, product.scss */
  .product-tabs .tab-content.product-properties .property-title, .product-tabs .tab-content.product-properties .property-value {
    width: 50%;
    padding: 9px 20px; }
  /* line 339, product.scss */
  .product-tabs .tab-content.product-properties .property-title {
    color: var(--color-dark-gray); }
  /* line 343, product.scss */
  .product-tabs .tab-content.product-properties .property-value {
    color: #000000;
    font-weight: bold; }
/* line 350, product.scss */
.product-tabs .tab-content#product-video iframe {
  width: 100%;
  max-width: 800px;
  border: none; }
/* line 356, product.scss */
.product-tabs .tab-content#product-description img {
  height: auto; }
/* line 363, product.scss */
.product-reviews .review {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-light-gray); }
  /* line 368, product.scss */
  .product-reviews .review-header {
    margin: 0 -8px 17px; }
    /* line 371, product.scss */
    .product-reviews .review-header > * {
      margin: 0 8px; }
  /* line 376, product.scss */
  .product-reviews .review-author {
    font-weight: bold;
    color: var(--color-black); }
  /* line 381, product.scss */
  .product-reviews .review-date {
    color: var(--color-gray); }
/* line 386, product.scss */
.product-reviews .review-form {
  margin: 0 -10px; }
  /* line 389, product.scss */
  .product-reviews .review-form_wrapper {
    box-sizing: border-box;
    width: calc(100% - 387px);
    padding-right: 120px; }
  /* line 395, product.scss */
  .product-reviews .review-form .form-item {
    margin: 0 10px 20px;
    flex: 1 1 auto; }
    /* line 399, product.scss */
    .product-reviews .review-form .form-item textarea {
      height: 100px; }
  /* line 404, product.scss */
  .product-reviews .review-form .button {
    padding-left: 20px;
    padding-right: 20px;
    font-weight: bold;
    text-transform: uppercase; }
/* line 414, product.scss */
.product-collections-item {
  padding: 5px 8px;
  background-color: var(--color-light-gray);
  margin: 10px 4px; }
  /* line 419, product.scss */
  .product-collections-item a {
    color: var(--color-black);
    text-decoration: none; }
/* line 426, product.scss */
.product .delivery {
  display: table;
  font-size: 14px;
  color: var(--color-gray); }
  /* line 431, product.scss */
  .product .delivery-item {
    display: table-row;
    padding: 5px 0; }
    /* line 435, product.scss */
    .product .delivery-item_name, .product .delivery-item_conditions {
      display: table-cell; }
    /* line 439, product.scss */
    .product .delivery-item_conditions {
      color: var(--color-black);
      padding-left: 20px; }

/* line 447, product.scss */
.products-list {
  margin: 0 -10px; }

/* line 451, product.scss */
.product-block {
  position: relative;
  width: 25%; }
  /* line 455, product.scss */
  .product-block_wrapper {
    position: relative;
    padding: 33px 18px 18px;
    border: 1px solid #F0F0F0;
    margin: 10px; }
  /* line 462, product.scss */
  .product-block_images {
    height: 250px; }
    /* line 465, product.scss */
    .product-block_images img {
      display: block; }
      /* line 468, product.scss */
      .product-block_images img + img {
        display: none; }
  /* line 474, product.scss */
  .product-block_form {
    z-index: 19;
    position: relative; }
  /* line 479, product.scss */
  .product-block_info {
    padding: 10px 0; }
  /* line 483, product.scss */
  .product-block_title {
    max-width: 50%;
    font-weight: bold;
    line-height: 18px; }
  /* line 489, product.scss */
  .product-block_subtitle {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #858585; }
  /* line 496, product.scss */
  .product-block_prices {
    text-align: right;
    line-height: 18px; }
    /* line 500, product.scss */
    .product-block_prices-wrapper {
      max-width: 50%; }
      /* line 503, product.scss */
      .product-block_prices-wrapper .sale {
        margin-left: 10px;
        margin-right: -23px;
        width: 45px;
        height: 36px;
        background-color: var(--color-red);
        color: var(--color-white); }
    /* line 513, product.scss */
    .product-block_prices .old_price {
      font-size: 14px;
      color: var(--color-gray);
      line-height: 16px;
      text-decoration: line-through; }
  /* line 521, product.scss */
  .product-block_actions {
    position: absolute;
    top: 100%;
    left: -19px;
    right: -19px;
    height: 0px;
    overflow: hidden;
    padding: 0 18px;
    -webkit-transition: height 0.1s ease 0s;
    -o-transition: height 0.1s ease 0s;
    -moz-transition: height 0.1s ease 0s;
    transition: height 0.1s ease 0s; }
    /* line 535, product.scss */
    .product-block_actions > div {
      margin-bottom: 10px; }
  /* line 540, product.scss */
  .product-block .product-buttons {
    margin-left: -4px;
    margin-right: -4px; }
    /* line 544, product.scss */
    .product-block .product-buttons .button {
      margin: 0 4px;
      padding: 0 9px;
      font-weight: bold;
      font-size: 14px;
      line-height: 16px;
      text-align: center;
      text-transform: uppercase;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; }
  /* line 562, product.scss */
  .product-block:hover .product-block_images img {
    display: none; }
    /* line 565, product.scss */
    .product-block:hover .product-block_images img:last-of-type {
      display: block; }
  /* line 571, product.scss */
  .product-block:hover .product-block_wrapper, .product-block:hover .product-block_actions {
    -webkit-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1); }
  /* line 577, product.scss */
  .product-block:hover .product-block_actions {
    z-index: 20;
    height: 78px;
    background-color: #fff;
    border-left: 1px solid #F0F0F0;
    border-right: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0; }

/* line 3, cart.scss */
.cart-items_header {
  padding-bottom: 14px; }
  /* line 6, cart.scss */
  .cart-items_header .cart-item_data > * {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: var(--color-gray); }
/* line 14, cart.scss */
.cart-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-light-gray); }
  /* line 18, cart.scss */
  .cart-item_image {
    padding: 0 40px;
    width: 117px; }
  /* line 23, cart.scss */
  .cart-item_title {
    font-size: 18px;
    line-height: 21px;
    width: 50%; }
    /* line 27, cart.scss */
    .cart-item_title a {
      color: var(--color-black);
      text-decoration: none; }
  /* line 33, cart.scss */
  .cart-item_sku {
    font-size: 14px;
    line-height: 16px;
    color: var(--color-gray);
    margin-top: 7px; }
  /* line 40, cart.scss */
  .cart-item_data {
    width: calc(90% - 117px); }
    /* line 43, cart.scss */
    .cart-item_data > div:not(.cart-item_title) {
      width: 16.6%; }
  /* line 48, cart.scss */
  .cart-item_price, .cart-item_total {
    font-weight: bold;
    font-size: 18px;
    line-height: 21px; }
  /* line 54, cart.scss */
  .cart-item_old-price {
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: line-through;
    color: var(--color-gray); }
  /* line 61, cart.scss */
  .cart-item_delete-wrapper {
    width: 10%;
    text-align: right; }
/* line 67, cart.scss */
.cart-actions {
  padding: 40px 0 70px;
  border-bottom: 1px solid var(--color-light-gray); }
  /* line 71, cart.scss */
  .cart-actions input {
    height: 35px; }
  /* line 76, cart.scss */
  .cart-actions .promocode button {
    margin-left: 8px; }
  /* line 81, cart.scss */
  .cart-actions .button-red {
    padding: 0 30px;
    font-weight: bold; }
/* line 87, cart.scss */
.cart-total {
  color: var(--color-gray);
  margin-bottom: 20px; }
  /* line 91, cart.scss */
  .cart-total_value {
    color: var(--color-black);
    margin-left: 5px; }
/* line 97, cart.scss */
.cart-empty {
  text-align: center; }

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  /* line 2, adaptive.scss */
  .footer-row + .footer-row {
    width: 55%; } }
@media screen and (max-width: 1100px) {
  /* line 9, adaptive.scss */
  .top-bar > .container > .flex, .top-bar > .container > .column {
    position: relative;
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start; }
  /* line 17, adaptive.scss */
  .top-bar .button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex; }
    /* line 25, adaptive.scss */
    .top-bar .button svg {
      margin-left: 5px; }
  /* line 30, adaptive.scss */
  .top-bar_mobile {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 109; }
    /* line 36, adaptive.scss */
    .top-bar_mobile-menu {
      padding: 15px 5px;
      margin: 0;
      list-style: none;
      -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
      -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
      background-color: var(--color-white); }
      /* line 45, adaptive.scss */
      .top-bar_mobile-menu .top-bar_menu-item {
        margin-bottom: 12px;
        display: none; }
        /* line 49, adaptive.scss */
        .top-bar_mobile-menu .top-bar_menu-item.customer-link {
          display: block; }
    /* line 55, adaptive.scss */
    .top-bar_mobile.active {
      display: block; }
  /* line 60, adaptive.scss */
  .top-bar_menu .top-bar_menu-item.customer-link {
    display: none; }
  /* line 64, adaptive.scss */
  .top-bar_user-menu {
    margin-left: auto;
    margin-right: 0; } }
@media screen and (max-width: 999px) {
  /* line 73, adaptive.scss */
  .top-bar_mobile-menu .top-bar_menu-item {
    display: block; }
  /* line 76, adaptive.scss */
  .top-bar_menu {
    display: none; }

  /* line 82, adaptive.scss */
  .header-logo a {
    width: 60px;
    height: 60px; }
  /* line 87, adaptive.scss */
  .header-yandex, .header-store {
    display: none; }

  /* line 92, adaptive.scss */
  .bottom-bar .container .flex, .bottom-bar .container .column {
    width: 100%; }
    /* line 95, adaptive.scss */
    .bottom-bar .container .flex .payment-methods, .bottom-bar .container .column .payment-methods {
      margin-bottom: 20px; }

  /* line 100, adaptive.scss */
  .catalog .button-black {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex; }

  /* line 110, adaptive.scss */
  .collections-list .collection-block {
    width: calc(33.3% - 20px); }
  /* line 114, adaptive.scss */
  .collections-list .collection-image {
    height: 195px; }

  /* line 119, adaptive.scss */
  .index-collections .collection-block:last-of-type {
    display: none; }

  /* line 123, adaptive.scss */
  .product-block {
    width: 33.3%; }
    /* line 126, adaptive.scss */
    .product-block_images {
      height: 171px; }
    /* line 130, adaptive.scss */
    .product-block .product-buttons {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      /* line 135, adaptive.scss */
      .product-block .product-buttons .button {
        width: 100%;
        margin-bottom: 8px; }
        /* line 139, adaptive.scss */
        .product-block .product-buttons .button + .button {
          margin-bottom: 0; }
    /* line 145, adaptive.scss */
    .product-block_prices-wrapper {
      position: relative; }
      /* line 148, adaptive.scss */
      .product-block_prices-wrapper .sale {
        position: absolute;
        top: -40px;
        right: 0; }
    /* line 155, adaptive.scss */
    .product-block:hover .product-block_actions {
      height: 117px; }

  /* line 161, adaptive.scss */
  .collection-panel > .container > .flex, .collection-panel > .container > .column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start; }
  /* line 171, adaptive.scss */
  .collection-panel .page-title + div {
    margin-left: 0;
    padding: 0;
    width: 100%; }

  /* line 179, adaptive.scss */
  .product-data, .product-gallery {
    margin: 0;
    width: 100%; }

  /* line 185, adaptive.scss */
  .reviews-list,
  .product-reviews .review-form_wrapper {
    width: calc(50% + 60px); }

  /* line 190, adaptive.scss */
  .reviews-rating {
    width: calc(50% - 60px); } }
@media screen and (max-width: 767px) {
  /* line 197, adaptive.scss */
  .header > .container > .flex, .header > .container > .column {
    -webkit-box-pack: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start; }
  /* line 204, adaptive.scss */
  .header-about, .header-yandex, .header-store {
    display: none; }
  /* line 208, adaptive.scss */
  .header-cart {
    margin-left: auto;
    margin-right: 0; }
  /* line 213, adaptive.scss */
  .header.fixed .catalog {
    top: 100%; }

  /* line 219, adaptive.scss */
  .catalog-list {
    display: none; }
  /* line 223, adaptive.scss */
  .catalog-mobile {
    right: -15px; }
    /* line 226, adaptive.scss */
    .catalog-mobile .collection-subcollections_list.lvl1 > .collection-subcollection {
      width: 100%; }

  /* line 233, adaptive.scss */
  .footer > .container > .flex, .footer > .container > .column {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; }
  /* line 238, adaptive.scss */
  .footer-row {
    width: 100%; }
    /* line 241, adaptive.scss */
    .footer-row:first-of-type {
      margin-bottom: 15px; }
    /* line 245, adaptive.scss */
    .footer-row + .footer-row {
      width: 100%; }
    /* line 249, adaptive.scss */
    .footer-row > * {
      width: 33.3%; }
  /* line 254, adaptive.scss */
  .footer-contacts {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 66.66%;
    margin-left: 0; }
    /* line 263, adaptive.scss */
    .footer-contacts > * {
      width: 50%; }
    /* line 267, adaptive.scss */
    .footer-contacts_address {
      margin: 0; }
      /* line 270, adaptive.scss */
      .footer-contacts_address span {
        display: block;
        margin-left: 26px; }

  /* line 278, adaptive.scss */
  .product-block {
    width: 50%; }

  /* line 282, adaptive.scss */
  .rating svg {
    width: 16px;
    height: 16px; }

  /* line 288, adaptive.scss */
  .collections-list .collection-image {
    height: 184px; }

  /* line 292, adaptive.scss */
  .collection-page_subcollections {
    padding-bottom: 0; }

  /* line 297, adaptive.scss */
  .index-collections .collections-list .collection-block {
    width: 50%;
    margin-bottom: 20px; }
    /* line 301, adaptive.scss */
    .index-collections .collections-list .collection-block:last-of-type {
      display: block; }

  /* line 307, adaptive.scss */
  .index-articles_list {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    /* line 312, adaptive.scss */
    .index-articles_list .index-article {
      width: 100%;
      margin-bottom: 20px; }
      /* line 316, adaptive.scss */
      .index-articles_list .index-article_content {
        padding: 0 0 0 25px; }

  /* line 325, adaptive.scss */
  .cart-items_header .cart-item_price, .cart-items_header .cart-item_quantity, .cart-items_header .cart-item_total {
    display: none; }
  /* line 332, adaptive.scss */
  .cart-item_image {
    width: 80px; }
  /* line 336, adaptive.scss */
  .cart-item_title {
    width: 100%;
    margin-bottom: 20px; }
  /* line 341, adaptive.scss */
  .cart-item_data {
    width: calc(90% - 80px); }
    /* line 344, adaptive.scss */
    .cart-item_data > div:not(.cart-item_title) {
      width: 33.3%; }
  /* line 349, adaptive.scss */
  .cart-item_delete-wrapper {
    align-self: flex-start; }
  /* line 354, adaptive.scss */
  .cart-actions {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end; }

  /* line 362, adaptive.scss */
  .product-bundle > div {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }

  /* line 368, adaptive.scss */
  .howto-product {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    /* line 373, adaptive.scss */
    .howto-product_description, .howto-product_gallery {
      width: 100%;
      flex-basis: 100%; }

  /* line 381, adaptive.scss */
  .reviews-rating {
    order: 1;
    width: 100%;
    margin-bottom: 30px; }

  /* line 387, adaptive.scss */
  .reviews-list {
    order: 2;
    width: 100%;
    padding-right: 0; }

  /* line 393, adaptive.scss */
  .product-reviews .review-form_wrapper {
    order: 3;
    width: 100%;
    padding-right: 0; } }
@media screen and (max-width: 625px) {
  /* line 401, adaptive.scss */
  .header-cart_dropdown {
    left: 10px;
    width: auto; }
    /* line 405, adaptive.scss */
    .header-cart_dropdown .cart-item_list {
      max-height: 160px; }

  /* line 411, adaptive.scss */
  .collections-list {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none; }
    /* line 418, adaptive.scss */
    .collections-list ::-webkit-scrollbar {
      display: none; }
    /* line 422, adaptive.scss */
    .collections-list .collection-block {
      flex: 0 0 auto;
      width: 210px; }
      /* line 426, adaptive.scss */
      .collections-list .collection-block .tooltip-content {
        bottom: calc(100% - 15px);
        top: auto;
        overflow-y: auto; } }
@media screen and (max-width: 569px) {
  /* line 436, adaptive.scss */
  .page-title + div {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    /* line 441, adaptive.scss */
    .page-title + div .collection-select {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      /* line 453, adaptive.scss */
      .page-title + div .collection-select select {
        flex: 1 1 auto; }
    /* line 458, adaptive.scss */
    .page-title + div .select-title {
      width: 100px; }

  /* line 463, adaptive.scss */
  .index-slider .index-banner img {
    height: 350px; }

  /* line 467, adaptive.scss */
  .cart-actions {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    /* line 472, adaptive.scss */
    .cart-actions .promocode {
      width: 100%;
      margin-bottom: 30px; }
      /* line 476, adaptive.scss */
      .cart-actions .promocode input {
        flex: 1 1 auto; }
    /* line 481, adaptive.scss */
    .cart-actions .cart-total {
      font-size: 18px;
      line-height: 21px; } }
@media screen and (max-width: 502px) {
  /* line 489, adaptive.scss */
  .product-actions {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between; }
    /* line 495, adaptive.scss */
    .product-actions .button-red {
      width: calc(100% - 130px); }
    /* line 499, adaptive.scss */
    .product-actions .button-black {
      margin-top: 13px;
      width: 100%;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; } }
@media screen and (max-width: 479px) {
  /* line 512, adaptive.scss */
  .top-bar, .top-bar a {
    font-size: 15px;
    line-height: 17px; }

  /* line 518, adaptive.scss */
  .header-logo a, .header-cart > a {
    width: 50px;
    height: 50px; }
  /* line 523, adaptive.scss */
  .header-contacts a {
    font-size: 18px;
    line-height: 21px; }
  /* line 528, adaptive.scss */
  .header-contacts div {
    display: block; }
    /* line 531, adaptive.scss */
    .header-contacts div + div {
      display: none; }
  /* line 537, adaptive.scss */
  .header-contacts_address {
    display: block;
    font-size: 14px; }

  /* line 544, adaptive.scss */
  .catalog .button-black, .catalog .button-search {
    height: 50px; }
  /* line 550, adaptive.scss */
  .catalog-mobile .catalog-mobile_list .collection > a {
    width: 100%; }
  /* line 554, adaptive.scss */
  .catalog-mobile .collection-dropdown_wrapper {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }

  /* line 563, adaptive.scss */
  .footer-row {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; }
    /* line 567, adaptive.scss */
    .footer-row:first-of-type {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      /* line 576, adaptive.scss */
      .footer-row:first-of-type > * {
        width: auto; }
      /* line 580, adaptive.scss */
      .footer-row:first-of-type > a:first {
        margin-bottom: 15px; }
  /* line 586, adaptive.scss */
  .footer-contacts {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    /* line 596, adaptive.scss */
    .footer-contacts > * {
      width: auto; }
    /* line 600, adaptive.scss */
    .footer-contacts_address {
      margin: 15px 0; }
      /* line 603, adaptive.scss */
      .footer-contacts_address span {
        display: inline;
        margin: 0; }
  /* line 610, adaptive.scss */
  .footer-menu {
    width: 50%;
    margin-bottom: 30px; }

  /* line 616, adaptive.scss */
  .bottom-bar .container .flex .payment-methods, .bottom-bar .container .column .payment-methods {
    margin-bottom: 40px; }

  /* line 620, adaptive.scss */
  .product-block {
    width: 100%; }
    /* line 623, adaptive.scss */
    .product-block_images {
      height: 250px; }

  /* line 628, adaptive.scss */
  .index-slider .index-banner img {
    height: 250px; }

  /* line 632, adaptive.scss */
  .index-articles_list {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 -15px;
    overflow-x: auto;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none; }
    /* line 643, adaptive.scss */
    .index-articles_list::-webkit-scrollbar {
      display: none; }
    /* line 647, adaptive.scss */
    .index-articles_list .index-article {
      width: 210px;
      flex: 0 0 auto;
      margin: 0 15px 30px;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      /* line 655, adaptive.scss */
      .index-articles_list .index-article_image {
        width: 100%; }
      /* line 659, adaptive.scss */
      .index-articles_list .index-article_content {
        padding: 20px 0 0; }
      /* line 663, adaptive.scss */
      .index-articles_list .index-article_preview {
        font-size: 14px; }

  /* line 671, adaptive.scss */
  .product-bundle_icon {
    padding: 12px; }
    /* line 674, adaptive.scss */
    .product-bundle_icon svg {
      width: 15px;
      height: 15px; }
  /* line 680, adaptive.scss */
  .product-bundle .product-small {
    width: calc(50% - 19px); } }
@media screen and (max-width: 380px) {
  /* line 688, adaptive.scss */
  .top-bar > .container > .flex, .top-bar > .container > .column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    /* line 692, adaptive.scss */
    .top-bar > .container > .flex .top-bar_user-menu, .top-bar > .container > .column .top-bar_user-menu {
      margin: 0 auto;
      padding-right: 0; } }
@media screen and (max-width: 320px) {
  /* line 702, adaptive.scss */
  .header-about {
    display: none; }
  /* line 707, adaptive.scss */
  .header-contacts a {
    font-size: 17px;
    line-height: 20px; }
  /* line 712, adaptive.scss */
  .header-contacts div {
    font-size: 13px; }

  /* line 718, adaptive.scss */
  .footer-menu {
    width: 100%; }

  /* line 722, adaptive.scss */
  .bottom-bar .container .flex .payment-methods, .bottom-bar .container .column .payment-methods {
    margin-bottom: 30px; }

  /* line 726, adaptive.scss */
  .product-block {
    width: 100%; }

  /* line 730, adaptive.scss */
  .index-slider .index-banner img {
    height: 150px; } }
