@charset "UTF-8";
/**
 * Aspect Ratio
 * @param {number} $ratio-numerator - ratio numerator
 * @param {number} $ratio-denominator - ratio denominator
 * @example scss
 * .foobar { padding-bottom: aspect-ratio(16,9); } // @returns 56.25%
 * @returns {number}
 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: top;
}

@font-face {
  font-family: "Play";
  src: url("../fonts/Play-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Uni Sans";
  src: url("../fonts/Uni-Sans-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/**
 * Basic typography style for copy text
 */
body {
  color: #666666;
  font-family: Roboto;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
[class*=__container] {
  max-width: 1140px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 12px; /* 3 */
  padding-right: 12px; /* 3 */
  box-sizing: content-box;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.header {
  color: #333333;
  background-image: url("../images/header/bg.png");
  background-position: left -22px;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .header {
    color: #fff;
  }
}
@media (min-width: 992px) {
  .header {
    background-position: center top;
  }
}
@media (max-width: 991px) {
  .header__content-state:not(:checked) + .header__container .header__content {
    transform: translateX(-100%);
  }
}
.header__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid #1aa7b9;
}
@media (min-width: 992px) {
  .header__container {
    grid-template-rows: 90px 64px;
    border: none;
  }
}
.header__logo {
  grid-column: 2/3;
  grid-row: 1/2;
  position: relative;
  transform: scale(0.75);
}
@media (min-width: 992px) {
  .header__logo {
    transform: none;
  }
}
.header__logo-icon {
  display: block;
  line-height: 0;
}
.header__logo-icon::before {
  display: block;
  content: url("../icons/logo.png");
}
.header__logo-text {
  display: none;
  position: absolute;
  top: 44px;
  font-size: 12px;
  font-weight: 300;
}
.header__user-links {
  display: flex;
  align-items: center;
}
.header__user-links_left {
  flex-wrap: wrap;
  margin-top: -8px;
  margin-bottom: 16px;
}
.header__user-links_left .header__user-link {
  padding: 8px 0px;
}
@media (min-width: 992px) {
  .header__user-links_left {
    padding-left: 16px;
    margin: 0px;
  }
  .header__user-links_left .header__user-link {
    padding: 0px;
  }
}
.header__user-links_right {
  grid-column: 3/4;
  grid-row: 1/2;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .header__user-links_right {
    grid-row: 2/3;
    z-index: 2;
  }
}
.header__user-link {
  color: #999999;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}
a.header__user-link:hover {
  color: #1ab9ce;
}

.header__user-link:hover::before {
  filter: none;
}
.header__user-link::before {
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
  margin-right: 12px;
  filter: grayscale(100%);
}
.header__user-link:not(:last-child) {
  margin-right: 24px;
}
@media (min-width: 1200px) {
  .header__user-link:not(:last-child) {
    margin-right: 48px;
  }
}
.header__user-link_log::before {
  content: url("../icons/key.png");
}
.header__user-link_log span {
  border-bottom: 1px dashed;
}
.header__user-link_reg::before {
  content: url("../icons/user.png");
}
.header__user-link_reg span {
  border-bottom: 1px dashed;
}
.header__user-link_mail::before {
  content: url("../icons/mail.png");
}
.header__user-link_mail span {
  border-bottom: 1px solid;
}
.header__user-link_call {
  filter: brightness(0) invert(1);
}
.header__user-link_call::before {
  content: url("../icons/call-back.png");
}
@media (max-width: 991px) {
  .header__user-link_call::before {
    margin-right: 0px;
  }
}
@media (min-width: 992px) {
  .header__user-link_call {
    filter: none;
  }
}
.header__user-link_call span {
  display: none;
  border-bottom: 1px dashed;
}
@media (min-width: 992px) {
  .header__user-link_call span {
    display: inline;
  }
}
.header__user-link_time {
  display: none;
}
@media (min-width: 992px) {
  .header__user-link_time {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header__user-link_time::before {
    content: url("../icons/calendar.png");
  }
}
.header__user-link_time > div {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
.header__user-link_cart {
  outline: 0;
  background-color: transparent;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__user-link_cart {
    margin-right: 28px;
  }
}
@media (min-width: 1200px) {
  .header__user-link_cart {
    margin-right: 16px;
  }
}
.header__user-link_cart::before {
  content: url("../icons/cart.png");
  margin-right: 0px;
}
.header__user-link_cart span {
  position: absolute;
  left: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 14px;
  background-color: #f68038;
}
@media (min-width: 992px) {
  .header__user-link_cart span {
    font-size: 18px;
    padding: 4px 10px;
  }
}
.header__content {
  position: absolute;
  top: 69px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: calc(100vh - 68px);
  overflow: auto;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding: 16px;
  z-index: 1;
  background-color: #fff;
}
@media (min-width: 992px) {
  .header__content {
    position: static;
    height: auto;
    overflow: visible;
    grid-column: 1/4;
    grid-row: 1/3;
    display: grid;
    grid-template-columns: 1fr 192px 1fr;
    grid-template-rows: 90px 64px;
    align-items: center;
    padding: 0px;
    background-color: inherit;
  }
}
.header__phones {
  grid-column: 3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -8px;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .header__phones {
    justify-content: center;
    margin: 0px;
  }
}
@media (min-width: 1200px) {
  .header__phones::before {
    content: url("../icons/call.png");
    line-height: 0;
    margin-right: 20px;
  }
}
.header__phone {
  padding: 8px 0px;
}
@media (min-width: 992px) {
  .header__phone {
    padding: 0px;
  }
}
.header__phone:not(:last-child) {
  position: relative;
  padding-right: 32px;
  margin-right: 28px;
}
.header__phone:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
}
.header__phone-title {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .header__phone-title {
    font-size: 12px;
  }
}
.header__phone-number {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

@media (min-width: 992px) {
  .site-menu__list {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 2px;
    justify-content: start;
    padding: 0px;
  }
}
.site-menu__item:not(:last-child) {
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .site-menu__item {
    margin-bottom: 0px !important;
  }
}
.site-menu__link {
  display: inline-block;
  font-family: Play;
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .site-menu__link {
    padding: 5px 16px;
    font-size: 14px;
  }
  .site-menu__link:hover {
    background-color: #068292;
  }
}
@media (min-width: 1200px) {
  .site-menu__link {
    padding: 5px 23px;
  }
}

.footer__header {
  border-top: 3px dashed #dadada;
  border-bottom: 3px dashed #dadada;
}
.footer__header:not(:last-child) {
  margin-bottom: 38px;
}
.footer__inner {
  display: flex;
  padding: 8px 0px;
}
@media (min-width: 768px) {
  .footer__inner {
    display: inline-block;
  }
}
.footer__row {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .footer__row {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.footer__column_left {
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
}
.footer__column_right {
  grid-template-columns: 50% 50%;
  justify-items: center;
}
.footer__column:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .footer__column:not(:last-child) {
    margin-bottom: 0px;
  }
}
@media (min-width: 576px) {
  .footer__column {
    display: grid;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .footer__wrapper {
    margin-bottom: 0px;
  }
}
.footer__logo {
  margin-bottom: 28px;
}
.footer__phone-list {
  position: relative;
  padding-left: 42px;
}
.footer__phone-list::before {
  content: url("../icons/call.png");
  filter: brightness(0%);
  line-height: 0;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.footer__phone-link {
  color: #333333;
  font-size: 14px;
  font-weight: 900;
  line-height: 18px;
}
@media (min-width: 576px) {
  .footer__delivery {
    margin: 0px 34px 0px 46px;
  }
}
.footer__payment {
  grid-column: 1/3;
  margin-top: 46px;
}
.footer__widget {
  display: flex;
  justify-content: center;
}
.footer__widget:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .footer__widget:not(:last-child) {
    margin-bottom: 0px;
  }
}
.footer__copy {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #dadada;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .footer__copy {
    justify-content: space-between;
  }
}
.footer__copy-text {
  color: #999999;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
}
@media (max-width: 575px) {
  .footer__copy-text {
    margin: 8px 16px;
  }
}
@media (max-width: 575px) {
  .footer__social {
    margin: 8px 16px;
  }
}

.info-menu__list {
  flex: 0 0 50%;
  padding: 16px;
}
@media (min-width: 768px) {
  .info-menu__list {
    display: flex;
  }
  .info-menu__list:not(:last-child) {
    border-bottom: 1px solid #b0b0b0;
  }
}
.info-menu__item {
  color: #333333;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .info-menu__item {
    margin-bottom: 0px;
  }
  .info-menu__item:not(:last-child) {
    margin-right: 36px;
  }
}
.info-menu__link {
  color: #1ab9ce;
  font-size: 12px;
  font-weight: 300;
}
.info-menu__link:hover {
  color: #333333;
}

.delivery__label {
  color: #999999;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.delivery__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.delivery__list:not(:last-child) {
  margin-bottom: 20px;
}
.payment__list {
  display: flex;
}
@media (max-width: 575px) {
  .payment__list {
    justify-content: center;
  }
}
.payment__item:not(:last-child) {
  margin-right: 24px;
}
.social__list {
  display: flex;
}
.social__item:not(:last-child) {
  margin-right: 16px;
}
.page__header {
  position: sticky;
  top: 0px;
  z-index: 100;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .page__header {
    position: relative;
  }
}
.page__container {
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .page__container {
    display: flex;
  }
}
.page__aside {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .page__aside {
    flex: 0 0 260px;
    margin-right: 32px;
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .page__main {
    flex: 1 1 auto;
    max-width: calc(100% - 292px);
  }
}
.page__search {
  margin-bottom: 30px;
}
.page__main-slider {
  margin-bottom: 56px;
}
.page__brands-slider {
  margin-bottom: 32px;
}
.page__about {
  margin-bottom: 38px;
}
.page__breadcrumb {
  margin-bottom: 16px;
}
.page__catalog {
  margin-bottom: 160px;
}
.page__product:not(:last-child) {
  margin-bottom: 50px;
}
.page__order-delivery:not(:last-child) {
  margin-bottom: 44px;
}
.hamburger-state {
  display: none;
}
.hamburger-state:checked + * .hamburger-label > div div:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-state:checked + * .hamburger-label > div div:nth-child(2) {
  width: 0px;
}
.hamburger-state:checked + * .hamburger-label > div div:nth-child(3) {
  transform: translateY(-7px) rotate(135deg);
}
.hamburger-state:checked + * .hamburger-label > div {
  transform: rotate(90deg);
}

.hamburger-label {
  display: flex;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  background-color: #068292;
  cursor: pointer;
}
.hamburger-label > div {
  margin: auto;
  transition: transform 0.4s ease;
}
.hamburger-label > div div {
  width: 24px;
  height: 2px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.4s ease, width 0.4s ease;
}
.hamburger-label > div div:not(:last-child) {
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .hamburger-label {
    display: none;
  }
}
.hamburger-label_always-visible {
  display: flex !important;
}

.main-menu {
  position: relative;
  background: url("../images/main-menu/bg.png");
  z-index: 20;
}
.main-menu:not(:last-child) {
  margin-bottom: 24px;
}
.main-menu__nav-state:not(:checked) ~ .main-menu__nav {
  height: 0px !important;
}
.main-menu__header {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: inherit;
}
.main-menu .main-menu__title {
  line-height: 1.2;
  color: #ffffff;
  margin-right: auto;
}
.main-menu__nav {
  transition: height 250ms ease;
  overflow: hidden;
  background: inherit;
}
.main-menu__item {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .main-menu__item {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}
@media (min-width: 992px) {
  .main-menu__item:hover {
    background-color: #098494;
  }
  .main-menu__item:hover .main-menu__accordion {
    transform: translateX(260px);
    width: 280px;
  }
}
.main-menu__item-inner {
  display: flex;
  min-height: 40px;
  border-bottom: 1px solid #1aa7b9;
}
.main-menu__link {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding: 0px 10px 0px 20px;
}
.main-menu__label {
  line-height: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 0px 10px;
}
.main-menu__label::before {
  content: url("../icons/chevron-double-right.png");
  display: inline-block;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
@media (min-width: 992px) {
  .main-menu__label {
    pointer-events: none;
  }
  .main-menu__label::before {
    transform: none;
  }
}
.main-menu__accordion-state {
  display: none;
}
@media (max-width: 991px) {
  .main-menu__accordion-state:checked + * .main-menu__label::before {
    transform: rotate(-90deg);
  }
  .main-menu__accordion-state:not(:checked) ~ .main-menu__accordion {
    height: 0px !important;
  }
}
.main-menu__accordion {
  background-color: #ffffff;
  border-left: 2px solid #098494;
  border-right: 2px solid #098494;
  transition: transform 0.3s ease, width 0.2s ease, height 0.2s ease;
  overflow: hidden;
}
@media (min-width: 992px) {
  .main-menu__accordion {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100% !important;
    border: 2px solid #098494;
    z-index: -1;
  }
}
.main-menu__second-list {
  padding: 20px 0px;
  border-bottom: 1px solid #dedede;
}
@media (min-width: 992px) {
  .main-menu__second-list {
    padding: 20px 0px 28px;
  }
}
.main-menu__second-link {
  color: #1ab9ce;
  display: flex;
  height: 36px;
  align-items: center;
  padding: 0px 20px;
}
.main-menu__second-link:hover {
  color: #ffffff;
  background-color: #71c7d3;
}
@media (min-width: 992px) {
  .main-menu__second-link {
    padding: 0px 10px 0px 40px;
  }
}
@media (max-width: 991px) {
  .main-menu__product-card {
    display: none;
  }
}
.main-menu__product-card .product-card {
  width: 100%;
  border: none;
}

.product-card {
  position: relative;
  width: 264px;
  height: 384px;
  display: flex;
  flex-direction: column;
  padding: 48px 24px 16px 24px;
  border: 1px solid #f5f5f5;
}
.product-card__image-wrapper {
  position: relative;
  display: block;
  padding-top: 65%;
  margin-bottom: 12px;
}
.product-card__image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__labels {
  position: absolute;
  top: 12px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
  transition: opacity 0.5s linear;
}
.product-card__label {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0px 16px;
  margin: 4px;
  color: #ffffff;
  background-color: #fd8424;
  border-radius: 16px;
}
.product-card__overlay {
  display: none;
}
.product-card__info {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.product-card__title {
  color: #36949f;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}
.product-card__subtitle {
  color: #36949f;
  font-size: 16px;
  line-height: 1.4;
}
.product-card__properties {
  display: none;
}
.product-card__property {
  margin-bottom: 6px;
}
.product-card__prop-label {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
}
.product-card__prop-value {
  color: #f68038;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}
.product-card__compare {
  display: none;
}
.product-card__footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.product-card__add-wrapper {
  display: flex;
  justify-content: center;
}
.product-card__add {
  outline: 0;
  background-color: transparent;
  cursor: pointer;
}
.product-card__add::after {
  display: block;
  line-height: 0;
  content: url("../icons/cart.png");
  filter: grayscale(100%) brightness(160%);
}
.product-card__add-label {
  display: none;
}
.product-card__stock {
  display: none;
  color: #f68038;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  background-color: #ffffff;
  padding: 0px 10px;
  border-radius: 10px;
}
.product-card__price {
  color: #333333;
  font-size: 24px;
  font-weight: 900;
  line-height: 40px;
  transition: opacity 0.3s linear;
}
.product-card__price::after {
  font-size: 18px;
}
.product-card__previous-price {
  position: absolute;
  right: 0px;
  bottom: 38px;
  color: #999999;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  text-decoration: line-through;
}
.product-card__previous-price::after {
  font-size: 14px;
}

.rub::after {
  content: " ₽";
}

input[name=viewMode] {
  display: none;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card__overlay {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 5px solid #f68038;
  background-color: rgba(0, 0, 0, 0.84);
  opacity: 0;
  transition: opacity 0.3s linear;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__labels {
  opacity: 0;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__overlay {
  opacity: 1;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__info {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 24px 24px 16px 24px;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__title-wrapper {
  min-height: 70px;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__title {
  color: #ffffff;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__subtitle {
  color: #c2c2c2;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__properties {
  display: block;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__footer {
  flex-wrap: wrap;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__add-wrapper {
  flex: 1 0 100%;
  margin-bottom: 44px;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__add::after {
  content: url("../icons/cart2.png");
  filter: none;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__price {
  color: #ffffff;
}
input[name=viewMode]:nth-of-type(1):checked ~ .products .product-card:hover .product-card__stock {
  display: block;
}

.title {
  font-family: "Uni Sans";
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  line-height: 1;
  color: #dadada;
}

.post__title {
  color: #333333;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}
.post__body {
  display: flex;
}
.post__text {
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .news-section {
    display: none;
  }
}
.news-section:not(:last-child) {
  margin-bottom: 68px;
}
.news-section__title {
  margin-bottom: 28px;
}
.news-section__title:hover {
  color: #1ab9ce;
}
.news-section__post:not(:last-child) {
  margin-bottom: 38px;
}
.news-section .post__title {
  margin-bottom: 16px;
}
.news-section .post__title:hover {
  color: #fd8322;
}
.news-section .post__date {
  color: #d8d8d8;
  line-height: 1.2;
  margin-right: 16px;
}
.news-section .post__date > p:first-child {
  font-size: 24px;
  font-weight: 900;
}
.news-section .post__date > p:last-child {
  font-size: 18px;
  font-weight: 300;
}

@media (max-width: 991px) {
  .reviews-section {
    display: none;
  }
}
.reviews-section:not(:last-child) {
  margin-bottom: 68px;
}
.reviews-section__title {
  margin-bottom: 24px;
}
.reviews-section__title:hover {
  color: #1ab9ce;
}
.reviews-section__post:not(:last-child) {
  margin-bottom: 16px;
}
.reviews-section .post__link {
  display: block;
}
.reviews-section .post__link:hover .post__title, .reviews-section .post__link:hover .post__date {
  color: #1ab9ce;
}
.reviews-section .post__link:hover .post__text {
  color: #fff;
  background-color: #1ab9ce;
}
.reviews-section .post__link:hover .post__text::before {
  color: #64deee;
}
.reviews-section .post__title {
  margin-bottom: 6px;
  display: flex;
}
.reviews-section .post__date {
  color: #999999;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  margin-left: auto;
}
.reviews-section .post__text {
  position: relative;
  padding: 13px 10px 15px 34px;
}
.reviews-section .post__text::before {
  position: absolute;
  top: 2px;
  left: 6px;
  content: "”";
  color: #dadada;
  font-size: 48px;
  font-weight: 900;
}

.search-form {
  counter-reset: checked-counter;
}
.search-form__form {
  position: relative;
}
.search-form__list-state {
  display: none;
}
.search-form__list-state:checked + .search-form__backdrop {
  display: block;
}
.search-form__list-state:checked ~ .search-form__top .search-form__select::after {
  transform: rotate(180deg);
}
.search-form__list-state:not(:checked) ~ .search-form__bottom .search-form__list {
  transform: translateY(-100%);
}
.search-form__backdrop {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}
@media (max-width: 575px) {
  .search-form__backdrop {
    display: none !important;
  }
}
.search-form__top {
  display: flex;
  height: 40px;
}
.search-form__select {
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  background-color: #f3f3f3;
  cursor: pointer;
  user-select: none;
}
.search-form__select::before {
  content: url("../icons/search.png");
  line-height: 0;
  padding: 0px 14px;
}
.search-form__select::after {
  content: url("../icons/chevron-double-down.png");
  line-height: 0;
  padding: 0px 12px;
  transition: transform 0.3s ease;
}
.search-form__select span {
  border-bottom: dashed 1px #999999;
}
.search-form__select span:last-child {
  display: none;
}
.search-form__select span:last-child::after {
  content: counter(checked-counter);
}
@media (max-width: 575px) {
  .search-form__select {
    display: none;
  }
}
.search-form__button {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  font-family: inherit;
  text-transform: uppercase;
  padding: 0px 24px;
  background-color: #f68038;
  cursor: pointer;
  user-select: none;
}
.search-form__input {
  flex: 1 1 auto;
  outline: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  padding: 0px 8px;
  border: 2px solid #f2f2f2;
  transition: border-color 0.2s ease-in-out;
  z-index: 11;
}
.search-form__input:focus {
  border-color: #f68038;
}
.search-form__bottom {
  position: absolute;
  top: 100%;
  width: 100%;
  overflow: hidden;
}
.search-form__bottom:has(input:checked) + .search-form__top .search-form__select span:first-child {
  display: none;
}
.search-form__bottom:has(input:checked) + .search-form__top .search-form__select span:last-child {
  display: inline;
}
@media (max-width: 575px) {
  .search-form__bottom {
    display: none;
  }
}
.search-form__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
  border-bottom: 4px solid #f68038;
  padding: 12px 0px 24px 0px;
  transition: transform 0.3s ease;
  background-color: #ffffff;
  z-index: 11;
}
.search-form__list::before, .search-form__list::after {
  content: "";
  position: absolute;
  top: 0px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #f3f3f3;
}
.search-form__list::before {
  left: 50%;
}
@media (min-width: 768px) {
  .search-form__list::before {
    left: 33.333%;
  }
}
.search-form__list::after {
  right: 50%;
}
@media (min-width: 768px) {
  .search-form__list::after {
    right: 33.333%;
  }
}
.search-form__item {
  flex: 0 0 50%;
  padding: 6px 8px 6px 40px;
}
.search-form__item label {
  color: #999999;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  user-select: none;
}
.search-form__item label:hover {
  color: #f68038;
}
@media (min-width: 992px) {
  .search-form__item label {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .search-form__item {
    flex: 0 0 33.333%;
  }
}
.search-form__checkbox {
  display: none;
}
.search-form__checkbox:checked + * {
  color: #f68038;
  font-weight: 700;
  counter-increment: checked-counter;
}

.main-slider .glide__bullets {
  display: flex;
  justify-content: center;
  margin-top: -27.5px;
  position: relative;
  counter-reset: bullets;
}
.main-slider .glide__bullet {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: 0px 22px;
  counter-increment: bullets;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-color: #f68038;
}
.main-slider .glide__bullet::after {
  color: #fffefe;
  font-size: 16px;
  font-weight: 900;
  content: counter(bullets);
}
.main-slider .glide__bullet_active img {
  opacity: 0;
}
.main-slider .glide__bullet img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.main-slide {
  position: relative;
}
.main-slide__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-slide__content {
  position: relative;
  padding: 14px 34px 58px;
}
.main-slide__title {
  color: #333333;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 52px;
}
.main-slide__title_primary {
  display: block;
  color: #f68038;
}
.main-slide__text {
  color: #333333;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.main-slide__text_primary {
  color: #f68038;
  font-size: 18px;
}
.main-slide__text_marked {
  display: inline-block;
  color: #fff;
  background-color: #929292;
  padding: 2px 8px 0px;
}
.main-slide__text_muted {
  color: #979797;
}
.main-slide__footer {
  text-align: center;
}
.main-slide__price {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}
.main-slide__price::after {
  font-size: 34px;
}
.main-slide__link {
  display: inline-block;
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 38px 6px 20px;
  border-radius: 15px;
  border: 3px solid #ffffff;
}
.main-slide__link::after {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  line-height: 0;
  content: url("../icons/chevron-double-right.png");
}

.arrow {
  cursor: pointer;
  background: inherit;
}
.arrow_left:hover::before {
  content: url("../icons/arrow-l-hover.png");
}
.arrow_left::before {
  display: block;
  line-height: 0;
  content: url("../icons/arrow-l.png");
}
.arrow_right:hover::before {
  content: url("../icons/arrow-r-hover.png");
}
.arrow_right::before {
  display: block;
  line-height: 0;
  content: url("../icons/arrow-r.png");
}

.products-slider {
  display: flex;
  flex-direction: column-reverse;
  counter-reset: slides-counter;
}
.products-slider__header {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin: -8px;
}
.products-slider__title {
  font-size: 36px;
  padding: 8px;
}
.products-slider__controls {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 8px;
}
.products-slider__index {
  color: #333333;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin: 0px 24px;
}
.products-slider__index::after {
  content: "/ " counter(slides-counter);
  color: #999999;
  font-size: 14px;
  font-weight: 500;
}
.products__list {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
  counter-increment: slides-counter;
}
.products__item {
  padding: 14px;
  width: 100%;
  transition: all 0.2s ease;
}
@media (min-width: 576px) {
  .products__item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .products__item {
    width: auto;
  }
}
.products__item > .product-card {
  margin: 0px auto;
}

.brands-slider {
  border-top: 3px dashed #dadada;
  border-bottom: 3px dashed #dadada;
}
.brands-slider__controls {
  display: flex;
  align-items: center;
  height: 112px;
  padding: 0px 8px;
}
.brands-slider__track {
  flex-grow: 1;
  margin: 0px 8px;
}
.brands-slider__image {
  max-height: 60px;
  max-width: 200px;
  display: block;
  margin: auto;
}
.brands-slider__image:hover {
  filter: grayscale(100%);
}
.brands-slider .glide__slides {
  align-items: center;
}

@media (max-width: 991px) {
  .about__container {
    padding: 0px;
  }
}
.about__inner {
  padding: 40px 32px;
  background-color: #009fb4;
}
@media (max-width: 1199px) {
  .about__inner {
    height: auto !important;
  }
}
@media (min-width: 992px) {
  .about__inner {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 58px 60px 32px;
  }
}
.about__title {
  width: 100%;
  color: #22b7ca;
  margin-bottom: 28px;
}
.about__column {
  flex: 1 0 0px;
}
.about__spacer {
  height: 24px;
  flex: 0 0 60px;
}
.about__text {
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3px;
}
.about__text:not(:last-child) {
  margin-bottom: 20px;
}
.about__label {
  color: #ffffff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.about__item {
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3px;
}
.about__item::before {
  content: url("../icons/chevron-double-right-li.png");
  display: inline-block;
  margin: 0px 16px 0px 8px;
}
.about__image {
  display: none;
  float: right;
}
@media (min-width: 1200px) {
  .about__image {
    display: block;
  }
}

.filter {
  border: 4px solid #72c9d4;
  background-color: #f9f9f9;
}
.filter:not(:last-child) {
  margin-bottom: 24px;
}
.filter__state:not(:checked) ~ .filter__wrapper {
  height: 0px !important;
}
.filter__header {
  display: flex;
  align-items: center;
  padding: 16px;
}
.filter__title {
  color: #36949f;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin-right: auto;
}
.filter__wrapper {
  transition: height 250ms ease;
  overflow: hidden;
}
.filter__section {
  padding: 16px;
}
.filter__section:not(:last-child) {
  border-bottom: 1px solid #72c9d4;
}
.filter__section-header {
  display: flex;
  align-items: center;
}
.filter__section-title {
  color: #36949f;
  color: #333333;
  font-size: 16px;
  font-weight: 900;
  line-height: 22px;
  margin-right: auto;
}
.filter__section-body {
  transition: height 250ms ease;
  overflow: hidden;
}
.filter__section-body > * {
  margin-top: 16px;
}
.filter__filter-state {
  display: none;
}
.filter__filter-state:not(:checked) ~ .filter__section-body {
  height: 0px !important;
}
.filter__filter-state:not(:checked) ~ .filter__section-header .filter__section-label::before {
  transform: rotate(-90deg);
}
.filter__section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #cbcbcb;
  border-radius: 50%;
  cursor: pointer;
}
.filter__section-label:hover {
  border-color: #72c9d4;
}
.filter__section-label:hover::before {
  content: url("../icons/chevron-double-down-hover.png");
}
.filter__section-label::before {
  content: url("../icons/chevron-double-down.png");
  line-height: 0;
  transition: transform 250ms ease;
}
.filter__footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 16px 16px;
}
.btn {
  display: flex;
  align-items: center;
  height: 35px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  padding: 0px 12px;
  cursor: pointer;
}
.btn_primary {
  color: #ffffff;
  background-color: #fd8424;
}
.btn_secondary {
  color: #666666;
  background-color: #e6e6e6;
}

.dual-range-filter {
  padding: 10px 2px 0px;
}
.dual-range-filter__wrapper {
  display: flex;
  align-items: center;
}
.dual-range-filter__label {
  color: #999999;
  font-size: 12px;
  font-weight: 300;
  margin-right: 8px;
}
.dual-range-filter__input {
  width: 64px;
  height: 24px;
  border: 1px solid #dadada;
  font-family: inherit;
  font-weight: inherit;
  font-size: 14px;
  line-height: 22px;
  transition: border-color 0.3s ease-in-out;
  outline: none;
  padding: 0px 4px;
  -webkit-appearance: textfield;
  appearance: textfield;
}
.dual-range-filter__input:focus {
  border-color: #36949f;
}
.dual-range-filter__input:not(:last-child) {
  margin-right: auto;
}
.dual-range-filter__input::-webkit-outer-spin-button, .dual-range-filter__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0px;
}

.dual-range-slider {
  padding: 0px 12px;
  height: 4px;
  background-color: #eaeaea;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 50px;
}
.dual-range-slider .noUi-handle {
  top: -10px;
  right: -11px;
  width: 23px;
  height: 23px;
  background-color: #f68038;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 1px #f68038;
  outline: none;
  cursor: pointer;
}
.dual-range-slider .noUi-handle::before, .dual-range-slider .noUi-handle::after {
  content: unset;
}
.dual-range-slider .noUi-connect {
  background-color: #ffcda5;
}
.dual-range-slider .noUi-tooltip {
  color: #999999;
  font-size: 12px;
  font-weight: 300;
  padding: 0px;
  border: none;
  border-radius: 0px;
  background: none;
  bottom: -32px;
}

.compare__list {
  margin-bottom: 16px;
}
.compare__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.compare__item:not(:last-child) {
  margin-bottom: 6px;
}
.compare__link {
  color: #1ab9ce;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
}
.compare__remove {
  margin: 0px 10px;
  padding: 4px;
}
.compare__remove::before {
  display: block;
  content: url("../icons/x.png");
  line-height: 0;
}
.compare__remove:hover::before {
  content: url("../icons/x-hover.png");
}
.compare__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.compare__btn-compare {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  height: 34px;
  background-color: #1ab9ce;
  padding: 0px 16px;
  border-radius: 30px;
}
.compare__btn-compare::before {
  content: url("../icons/compare-white.png");
  line-height: 0;
  margin-right: 12px;
}
.compare__btn-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #e6e6e6;
  border-radius: 50%;
  cursor: pointer;
}
.compare__btn-clear::before {
  content: url("../icons/trash.png");
  line-height: 0;
}

.checkbox-filter {
  padding-left: 2px;
}
.checkbox-filter__item {
  display: flex;
  align-items: center;
}
.checkbox-filter__item:not(:last-child) {
  margin-bottom: 12px;
}
.checkbox-filter__input {
  flex: 0 0 auto;
  -webkit-appearance: none;
  appearance: none;
  width: 11px;
  height: 11px;
  border: 2px solid transparent;
  box-shadow: 0px 0px 0px 2px #dadada;
  margin-right: 12px;
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.checkbox-filter__input:checked {
  background-color: #53b5de;
  border-color: #fff;
  box-shadow: 0px 0px 0px 2px #009aaf;
}
.checkbox-filter__input:hover {
  box-shadow: 0px 0px 0px 2px #009aaf;
}
.checkbox-filter__label {
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.breadcrumb {
  position: relative;
  margin-bottom: 16px;
  overflow: auto;
}
.breadcrumb__list {
  display: flex;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #999999;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}
.breadcrumb__item:not(:last-child)::after {
  content: url("../icons/chevron-double-right-li.png");
  line-height: 0px;
  margin: 0px 16px;
}
.breadcrumb__link {
  color: #1ab9ce;
  text-decoration: underline;
}

.catalog {
  position: relative;
}
.catalog__mode-radio {
  display: none;
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__body .products__item .product-card:hover .product-card__compare, .catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__item .product-card .product-card__compare {
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
  margin-top: 12px;
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__body .products__item .product-card:hover .product-card__compare::before, .catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__item .product-card .product-card__compare::before {
  display: inline-block;
  line-height: 0px;
  vertical-align: middle;
  margin: 0px 8px;
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__header .view-mode__button:nth-of-type(1)::before {
  content: url("../icons/grid-active.svg");
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__body .products__item .product-card:hover .product-card__compare {
  color: #ffffff;
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__body .products__item .product-card:hover .product-card__compare::before {
  content: url("../icons/compare-white.png");
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__body .products__item .product-card:hover .product-card__compare span {
  border-bottom: 1px dotted #fff;
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__body .products__item .product-card:hover .product-card__add-wrapper {
  flex: 0 0 auto;
  margin-bottom: 0px;
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__body .products__item .product-card:hover .product-card__price {
  align-self: flex-end;
}
.catalog__mode-radio:nth-of-type(1):checked ~ .catalog__body .products__item .product-card:hover .product-card__stock {
  display: none;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__header .view-mode__button:nth-of-type(2)::before {
  content: url("../icons/list-active.svg");
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list {
  display: block;
  margin: 0px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item {
  width: auto;
  padding: 0px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item:not(:last-child) {
  margin-bottom: 16px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card {
  flex-direction: row;
  height: 204px;
  width: auto;
  padding: 20px 20px 16px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__image-wrapper {
  padding: 0px;
  margin: 0px 56px 0px 0px;
  width: 220px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__labels {
  display: block;
  left: 0px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 12px 8px 16px;
  background-color: #f65738;
  border-radius: 0px;
  position: relative;
  user-select: none;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 100%;
  width: 0px;
  height: 0px;
  border-top: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #f65738;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__info {
  flex-wrap: wrap;
  align-items: flex-start;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__title-wrapper {
  margin-bottom: 12px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__title:hover, .catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__subtitle:hover {
  color: #fd8424;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__properties {
  display: block;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__property {
  display: flex;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__prop-label {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  margin-right: 8px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__prop-value {
  color: #333333;
  font-weight: 900;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__compare {
  color: #1ab9ce;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__compare::before {
  content: url("../icons/compare-green.png");
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__compare span {
  border-bottom: 1px dotted #1ab9ce;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__compare:hover {
  color: #f68038;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__compare:hover::before {
  content: url("../icons/compare-orange.png");
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__compare:hover span {
  border-bottom: 1px dotted #f68038;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__footer {
  align-self: flex-end;
  margin-bottom: auto;
  flex-direction: column-reverse;
  align-items: flex-end;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__add-wrapper {
  justify-content: flex-end;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__add {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 52px;
  overflow: hidden;
  transition: width 0.2s ease;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__add::after {
  content: url("../icons/cart2.png");
  filter: grayscale(100%) brightness(160%);
  transition: filter 0.2s ease;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__add:hover {
  width: 100%;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__add:hover::after {
  filter: none;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__add:hover .product-card__add-label {
  width: 100%;
  margin-right: -8px;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__add-label {
  display: inline-block;
  color: #ffffff;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 20px 10px 16px;
  background-color: #fd8424;
  width: 0%;
  margin-right: -44px;
  transition: width 0.2s ease;
}
.catalog__mode-radio:nth-of-type(2):checked ~ .catalog__body .products__list .products__item .product-card .product-card__previous-price {
  bottom: 92px;
}
.catalog__header {
  margin-bottom: 24px;
}
.catalog__title {
  color: #dadada;
  font-family: "Uni Sans";
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-bottom: 16px;
}
.catalog__view-mode:not(:last-child) {
  margin-bottom: 16px;
}
.catalog__pagination:not(:last-child) {
  margin-bottom: 16px;
}
.catalog__body:not(:last-child) {
  margin-bottom: 28px;
}

.view-mode {
  display: flex;
  flex-wrap: wrap;
  min-height: 48px;
  align-items: center;
  background-color: #f3f3f3;
  padding: 0px 8px;
}
@media (min-width: 768px) {
  .view-mode {
    padding: 0px 16px;
  }
}
.view-mode__select {
  padding: 6px 0px;
}
.view-mode__select:not(:last-child) {
  margin-right: 20px;
}
.view-mode__buttons {
  display: none;
  margin-left: auto;
  padding: 6px 0px;
}
@media (min-width: 768px) {
  .view-mode__buttons {
    display: flex;
  }
}
.view-mode__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  cursor: pointer;
}
.view-mode__button:not(:last-child) {
  margin-right: 8px;
}
.view-mode__button::before {
  line-height: 0px;
}

.icon-grid-view::before {
  content: url("../icons/grid.svg");
}

.icon-list-view::before {
  content: url("../icons/list.svg");
}

.select__label {
  color: #333333;
  font-size: 14px;
  font-weight: 900;
  margin-right: 16px;
}
.select__select {
  -webkit-appearance: none;
  appearance: none;
  padding: 6px 36px 6px 16px;
  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  outline: none;
  color: #0097ac;
  background-color: #ffffff;
  background-size: 16px 16px;
  background-image: conic-gradient(#dadada 45deg, transparent 45deg, transparent 315deg, #dadada 315deg);
  background-repeat: no-repeat;
  background-origin: padding-box;
  background-position: right 8px top 11px;
  border: 2px solid #f3f3f3;
  transition: border-color 0.3s ease-in-out;
}
.select__select:focus {
  border-color: #009aaf;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  min-height: 48px;
  align-items: center;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
@media (min-width: 768px) {
  .pagination {
    padding: 0px 16px;
  }
}
.pagination__select {
  padding: 8px 0px;
}
.pagination__select:not(:last-child) {
  margin-right: 20px;
}
.pagination__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 8px 0px;
}
.pagination__list {
  display: flex;
}
.pagination__item {
  color: #333333;
  font-size: 18px;
  font-weight: 900;
  line-height: 32px;
  user-select: none;
}
.pagination__item:not(:last-child) {
  margin-right: 8px;
}
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.pagination__link_active {
  color: #ffffff;
  background-color: #fd8424;
}
.pagination__link_disabled {
  pointer-events: none;
}
.pagination__link:hover {
  background-color: #f3f3f3;
}
.pagination__prev {
  margin-right: 8px;
}
@media (min-width: 576px) {
  .pagination__prev {
    margin-right: 24px;
  }
}
.pagination__prev::before {
  content: url("../icons/arrow-l.svg");
  line-height: 0px;
  display: block;
}
.pagination__prev:hover::before {
  content: url("../icons/arrow-l-hover.svg");
}
.pagination__next {
  margin-left: 8px;
}
@media (min-width: 576px) {
  .pagination__next {
    margin-left: 24px;
  }
}
.pagination__next::before {
  content: url("../icons/arrow-r.svg");
  line-height: 0px;
  display: block;
}
.pagination__next:hover::before {
  content: url("../icons/arrow-r-hover.svg");
}

.product {
  position: relative;
}
.product__header {
  margin-bottom: 16px;
}
.product__title {
  color: #333333;
  font-family: "Uni Sans";
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}
.product__subtitle {
  color: #dadada;
  font-family: "Uni Sans";
  font-size: 30px;
  text-transform: uppercase;
}
.product__body {
  display: flex;
  flex-wrap: wrap;
}
.product__gallery {
  flex: 1 1 360px;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .product__gallery {
    margin-right: 30px;
  }
}
.product__gallery .glide {
  padding-top: calc(104.455% + 12px);
}
.product__gallery .glide__track {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 79.377%;
  border: 1px solid #f5f5f5;
}
.product__gallery .glide__slides {
  height: 100%;
}
.product__gallery .glide__slide {
  position: relative;
}
.product__gallery .glide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__gallery .glide__slide span {
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 20px;
  width: 58px;
  height: 58px;
  background-color: #f65738;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 58px;
  text-align: center;
  border-radius: 50%;
}
.product__gallery .glide__bullets {
  display: flex;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 17.527%;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product__gallery .glide__bullets::-webkit-scrollbar {
  display: none;
}
.product__gallery .glide__bullet {
  flex: 0 0 calc(25% - 9px);
  height: 100%;
  border: 1px solid #e4e4e4;
  cursor: pointer;
}
.product__gallery .glide__bullet:not(:last-child) {
  margin-right: 12px;
}
.product__gallery .glide__bullet img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__gallery .glide__bullet_active {
  border: 3px solid #f68038;
}
.product__actions {
  flex: 100 0 auto;
  padding: 8px 0px;
  margin-bottom: 36px;
}
.product__info {
  flex: 1 0 100%;
}

.actions__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #ededed;
}
.actions__row:nth-child(2) {
  padding-bottom: 28px;
}
.actions__row:not(:last-child) {
  margin-bottom: 20px;
}
.actions__compare {
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  height: 34px;
  background-color: #f3f3f3;
  padding: 0px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.actions__compare::before {
  content: url("../icons/compare-grey.png");
  line-height: 0;
  margin-right: 12px;
}
.actions__compare:hover {
  color: #ffffff;
  background-color: #1ab9ce;
}
.actions__compare:hover::before {
  content: url("../icons/compare-white.png");
}
.actions__stock {
  display: flex;
  align-items: center;
  height: 21px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  padding: 0px 12px;
  background-color: #f68038;
  border-radius: 16px;
}
.actions__price-prev {
  color: #999999;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  text-decoration: line-through;
}
.actions__price {
  color: #333333;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.input-number {
  display: flex;
  height: 32px;
  align-items: center;
  margin: 0px 16px;
}
.input-number__button {
  width: 24px;
  height: 21px;
  cursor: pointer;
  background-color: transparent;
  background-size: 100% auto;
  background-repeat: no-repeat;
  outline: none;
}
.input-number__button:first-child {
  background-image: url("../icons/arrow-l.svg");
}
.input-number__button:first-child:hover {
  background-image: url("../icons/arrow-l-hover.svg");
}
.input-number__button:last-child {
  background-image: url("../icons/arrow-r.svg");
}
.input-number__button:last-child:hover {
  background-image: url("../icons/arrow-r-hover.svg");
}
.input-number__input {
  width: 56px;
  height: 100%;
  margin: 0px 12px;
  color: #999999;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border: 2px solid #e5e5e5;
  transition: border-color 0.3s ease-in-out;
  outline: none;
  -webkit-appearance: textfield;
  appearance: textfield;
}
.input-number__input:focus {
  border-color: #f68038;
}
.input-number__input::-webkit-outer-spin-button, .input-number__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0px;
}

.add-button__add {
  display: flex;
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  outline: 0;
}
.add-button__add::after {
  content: url("../icons/cart2.png");
  display: block;
  line-height: 0;
}
.add-button__label {
  color: #999999;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 20px 10px 16px;
  background-color: #f3f3f3;
  transition: all 0.2s ease;
  margin-right: -8px;
  display: none;
}
@media (min-width: 576px) {
  .add-button__label {
    display: block;
  }
}
.add-button:hover .add-button__label {
  color: #ffffff;
  background-color: #fd8424;
}

.advantages {
  flex-grow: 1;
}
.advantages__title {
  color: #333333;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.advantages__list {
  display: flex;
}
@media (max-width: 575px) {
  .advantages__list {
    justify-content: space-between;
  }
}
.advantages__item {
  width: 88px;
  color: #999999;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  text-align: center;
}
.advantages__item:not(:last-child) {
  margin-right: 42px;
}
.advantages__item::before {
  content: "";
  display: block;
  height: 56px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .advantages__item {
    margin-right: 0px !important;
  }
}

.icon-assembly::before {
  background-image: url("../icons/advantages/assembly.png");
}

.icon-delivery::before {
  background-image: url("../icons/advantages/delivery.png");
}

.icon-guaranty::before {
  background-image: url("../icons/advantages/guaranty.png");
}

.tabs__state {
  display: none;
}
.tabs__state:nth-child(1):checked ~ .tabs__header .tabs__item:nth-child(1) .tabs__label {
  background-color: #72c9d4;
}
.tabs__state:nth-child(1):checked ~ .tabs__header .tabs__item:nth-child(1) .tabs__label span {
  color: #fff;
  border-bottom: none;
}
.tabs__state:nth-child(1):checked ~ .tabs__body .tabs__section:nth-child(1) {
  display: block;
}
.tabs__state:nth-child(2):checked ~ .tabs__header .tabs__item:nth-child(2) .tabs__label {
  background-color: #72c9d4;
}
.tabs__state:nth-child(2):checked ~ .tabs__header .tabs__item:nth-child(2) .tabs__label span {
  color: #fff;
  border-bottom: none;
}
.tabs__state:nth-child(2):checked ~ .tabs__body .tabs__section:nth-child(2) {
  display: block;
}
.tabs__state:nth-child(3):checked ~ .tabs__header .tabs__item:nth-child(3) .tabs__label {
  background-color: #72c9d4;
}
.tabs__state:nth-child(3):checked ~ .tabs__header .tabs__item:nth-child(3) .tabs__label span {
  color: #fff;
  border-bottom: none;
}
.tabs__state:nth-child(3):checked ~ .tabs__body .tabs__section:nth-child(3) {
  display: block;
}
@media (min-width: 1200px) {
  .tabs__list {
    display: flex;
  }
}
.tabs__label {
  display: flex;
  height: 50px;
  padding: 0px 32px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tabs__label span {
  color: #72c9d4;
  font-size: 14px;
  font-weight: 900;
  line-height: 18px;
  text-transform: uppercase;
  border-bottom: 2px dotted #72c9d4;
}
.tabs__section {
  display: none;
  color: #666666;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding-top: 24px;
}
.tabs__section_text {
  white-space: pre-wrap;
  background-color: #fafafa;
  padding: 36px 28px 36px 32px;
}
.tabs__section_form {
  background-color: #fafafa;
}
@media (min-width: 576px) {
  .tabs__section_form {
    padding: 32px 12px 12px 24px;
  }
}
.tabs__section table {
  border-collapse: collapse;
  color: #999999;
}
.tabs__section table tr {
  border-bottom: 1px solid #e2e2e2;
}
.tabs__section table td {
  width: 50%;
  padding: 8px 24px 8px 0px;
}
.tabs__section table td:first-child {
  color: #333333;
  padding-left: 24px;
}

.related-products__header {
  margin-bottom: 30px;
}
.order-delivery {
  position: relative;
}
.order-delivery__header {
  margin-bottom: 16px;
}
.order-delivery__title {
  font-size: 36px;
}
.order-delivery__body {
  padding: 20px;
  background-color: #fafafa;
}
.form {
  color: #666666;
  font-family: Roboto;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .form {
    display: flex;
  }
}
.form__controls {
  margin: 0px 0px 32px 0px;
}
@media (min-width: 768px) {
  .form__controls {
    margin: 0px 40px 0px 0px;
  }
}
.form__text span {
  white-space: pre-line;
}
.form__help:not(:last-child) {
  margin-bottom: 40px;
}
.form__help span {
  color: #f68038;
}
.form._was-validated .control__text:invalid, .form._was-validated .control__checkbox:invalid {
  border-color: red;
}
.form._was-validated .control__text:invalid ~ .control__feedback, .form._was-validated .control__checkbox:invalid ~ .control__feedback {
  color: red;
}

.control {
  font-size: 14px;
}
@media (min-width: 576px) {
  .control {
    display: flex;
  }
}
@media (min-width: 768px) {
  .control {
    width: 380px;
  }
}
.control:not(:last-child) {
  margin-bottom: 12px;
}
.control > .control__label {
  color: #333333;
  font-weight: 900;
  white-space: nowrap;
  line-height: 32px;
}
.control > .control__label span {
  color: #f68038;
}
.control__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 576px) {
  .control__body {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .control__body {
    width: 216px;
  }
}
.control__body .control__label {
  flex: 1 0 1em;
  font-size: 12px;
  user-select: none;
}
.control__text {
  width: 100%;
  height: 32px;
  padding-left: 8px;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}
.control__text:focus {
  border-color: #f68038;
}
.control__checkbox {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  outline: none;
  cursor: pointer;
  margin-right: 12px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.control__checkbox:checked::before {
  content: "✓";
  line-height: 1;
}
.control__checkbox:focus {
  border-color: #f68038;
}
.control__select {
  appearance: none;
  width: 100%;
  height: 32px;
  padding-left: 8px;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  cursor: pointer;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  outline: none;
  background-size: 16px 16px;
  background-image: conic-gradient(#dadada 45deg, transparent 45deg, transparent 315deg, #dadada 315deg);
  background-repeat: no-repeat;
  background-origin: padding-box;
  background-position: right 8px top 11px;
  transition: border-color 0.2s ease;
}
.control__select:focus {
  border-color: #f68038;
}
.control__textarea {
  width: 100%;
  padding: 8px;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}
.control__textarea:focus {
  border-color: #f68038;
}
.control__feedback {
  flex: 0 0 100%;
  font-size: 12px;
}

.order-cart__header {
  margin-bottom: 28px;
}
.order-cart__body {
  margin-bottom: 24px;
}
.order-cart__item:not(:last-child) {
  margin-bottom: 12px;
}
.order-cart__footer {
  text-align: right;
}
.order-cart__total-wrapper {
  margin: 0px 16px 24px 0px;
}
.order-cart__total-label {
  color: #333333;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-right: 8px;
}
.order-cart__total-price {
  color: #f68038;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.order-cart__order {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  padding: 10px 20px;
  background-color: #f68038;
  border-radius: 20px;
}

.product-brief {
  position: relative;
  padding: 16px;
  border: 1px solid #f5f5f5;
}
@media (min-width: 768px) {
  .product-brief {
    display: flex;
  }
}
.product-brief__column {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .product-brief__column {
    width: 50%;
  }
}
.product-brief__image-wrapper {
  display: none;
  margin-right: 20px;
}
@media (min-width: 576px) {
  .product-brief__image-wrapper {
    display: block;
  }
}
.product-brief__image {
  width: 140px;
  height: 112px;
  object-fit: contain;
}
.product-brief__title {
  color: #36949f;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0px 32px 6px 0px;
}
@media (min-width: 768px) {
  .product-brief__title {
    margin: 0px 0px 6px 0px;
  }
}
.product-brief__title span {
  font-weight: 300;
}
.product-brief__price {
  color: #333333;
  font-size: 24px;
  font-weight: 900;
}
.product-brief__quantity {
  margin-right: auto;
}
@media (max-width: 767px) {
  .product-brief__quantity {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .product-brief__quantity {
    margin-right: 64px;
  }
}
.product-brief__price-label {
  color: #999999;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}
.product-brief__remove {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.product-brief__remove::before {
  content: url("../icons/remove.svg");
  line-height: 0;
  display: block;
}
.product-brief__remove:hover::before {
  content: url("../icons/remove-hover.svg");
}
