@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Roboto:300,regular,500,700,900&display=swap&subset=cyrillic-ext");

@font-face {
  font-family: "UniSans";
  font-display: swap;
  src: url("../fonts/uni_sans_heavy-webfont.woff") format("woff"), url("../fonts/uni_sans_heavy-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Play";
  font-display: swap;
  src: url("../fonts/play-bold-webfont.woff") format("woff"), url("../fonts/play-bold-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Roboto";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Roboto";
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  color: #000;
  font-size: 14px;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 20px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 39px;
  background-color: #f68038;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-transform: uppercase;
}

.btn_grey {
  color: #666666;
  background-color: #e6e6e6;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
  min-width: 166px;
}

.select__title {
  color: #000;
  background-color: #fff;
  cursor: pointer;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #0097ac;
  height: 30px;
  padding: 0px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  margin: 0px 0px 0px 5px;
  background: url("../img/icons/select.png") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: 29px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  padding: 10px 0px 5px 0px;
}

.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}

.select_show .select__item {
  min-width: 0;
  border: 2px solid #f3f3f3;
}

.select_show .select__value {
  color: #999999;
  font-weight: 900;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  border-radius: 0 !important;
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 30px;
  display: block;
  padding: 0px 15px;
}

.input._error {
  border: 1px solid red;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  border: 2px solid #009aaf;
}

.checkbox__input:checked + .checkbox__text:after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 9px;
  height: 9px;
  background-color: #53b5de;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 12px;
  color: #666666;
  line-height: calc(15 / 12);
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 2px solid #dadada;
}

.checkbox a {
  color: #fff;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 120px;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  position: relative;
  cursor: pointer;
  background: url("../img/icons/sl_arrow_grey.svg") 0 0/100% no-repeat;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 20px;
  height: 17px;
}

.quantity__button_plus {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0px 12px;
  height: 33px;
}

.quantity__input input {
  height: 100%;
  color: #999999;
  font-size: 16px;
  border: 2px solid #e5e5e5;
  width: 100%;
  text-align: center;
}

._arrow {
  background: url("../img/icons/sl_arrow.svg") 0 0 no-repeat;
  width: 33px;
  height: 30px;
  cursor: pointer;
}

._arrow_prev {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

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

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.mainslider__image._ibg img {
  -o-object-fit: contain;
     object-fit: contain;
}
.mainslider__content {
  background-color: rgba(26, 185, 206, 0.517);
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

.brands-slider__slide img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.brands-slider__slide img:hover {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper > div {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-autoheight > div {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.gm-style-iw-t {
  opacity: 0;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

/*! nouislider - 14.6.0 - 6/27/2020 */

/* 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;
  -webkit-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;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

/* 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 {
  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;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

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

/* Slider size and handle placement;
 */

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 23px;
  height: 23px;
  right: -11.5px;
  top: -10px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -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 {
  height: 4px;
  background-color: #eaeaea;
  margin: 0px 11px 50px;
  position: relative;
}

.noUi-target::before,
.noUi-target::after {
  content: "";
  background-color: #eaeaea;
  width: 11px;
  height: 4px;
  position: absolute;
  top: 0;
}

.noUi-target::before {
  left: -10px;
}

.noUi-target::after {
  right: -10px;
}

.noUi-connect {
  background-color: #ffcda5;
}

/* Handles and cursors;
 */

.noUi-draggable {
  cursor: ew-resize;
}

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

.noUi-handle {
  border: 1px solid #f68038;
  background-color: #ffffff;
  border-radius: 50%;
  cursor: default;
}

.noUi-handle::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background-color: #f68038;
}

.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
          box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

/* Disabled state;
 */

[disabled] .noUi-connect {
  background: #b8b8b8;
}

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

/* Base;
 *
 */

.noUi-pips,
.noUi-pips * {
  -webkit-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%);
  -ms-transform: translate(-50%, 50%);
      transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  -ms-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%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  -ms-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 {
  color: #999999;
  font-size: 12px;
  position: absolute;
}

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

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

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

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

.pagging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagging__arrow {
  width: 30px;
  height: 25px;
  cursor: pointer;
  background: url("../img/icons/sl_arrow_grey.svg") 0 0/100% no-repeat;
}

.pagging__arrow:last-child {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.pagging__list {
  margin: 0px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagging__item {
  width: 33px;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333333;
  font-weight: 900;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}

.pagging__item._active {
  color: #fff;
  background-color: #fd8424;
}

.popup {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}

.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: #fff url("../img/bg_header.jpg") top no-repeat;
}

.top-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 90px;
}

.top-header__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.top-header__column_logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 190px;
          flex: 0 0 190px;
  text-align: center;
}

.top-header__logo {
  position: relative;
  z-index: 5;
  display: inline-block;
}

.top-header__contacts {
  position: relative;
  z-index: 5;
}

.menu__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));  
}

.menu__list li {
  margin: 1px 0;
}

.menu__link {
  font-family: "Play";
  min-height: 27px;
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 22px;
}

.icon-menu {
  display: none;
}

.contacts-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contacts-header__column {
  padding: 0px 30px;
}

.contacts-header__item_icon {
  background: url("../img/icons/header/phone.png") left no-repeat;
  padding: 0px 0px 0px 37px;
}

.contacts-header__label {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  margin: 0px 0px 5px 0px;
}

.contacts-header__phone {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.bottom-header__row {
  height: 63px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 22px;
}

.bottom-header__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 95px);
          flex: 0 1 calc(50% - 95px);
}

.actions-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.actions-header li {
  margin: 0px 54px 0px 0px;
}

.actions-header li:last-child {
  margin: 0px 0px 0px 0px;
}

.actions-header__item {
  padding: 0px 0px 0px 36px;
  display: inline-block;
  line-height: 24px;
  color: #999999;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.actions-header__item span {
  border-bottom: 1px dotted;
}

.actions-header__item_login {
  background: url("../img/icons/header/login.png") left no-repeat;
}

.actions-header__item_reg {
  background: url("../img/icons/header/user.png") left no-repeat;
}

.actions-header__item_email {
  background: url("../img/icons/header/mail.png") left no-repeat;
}

.actions-header__item_email span {
  border-bottom: 1px solid;
}

.info-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-header__column {
  padding: 0px 54px 0px 0px;
}

.info-header__column:last-child {
  padding: 0;
}

.info-header__callback {
  background: url("../img/icons/header/callback.png") left no-repeat;
  display: inline-block;
  color: #1ab9ce;
  line-height: 20px;
  padding: 0px 0px 0px 32px;
  white-space: nowrap;
}

.info-header__callback span {
  border-bottom: 1px dotted;
}

.info-header__schedule {
  background: url("../img/icons/header/schedule.png") left no-repeat;
  padding: 0px 0px 0px 37px;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  color: #999999;
}

.info-header__schedule span {
  font-weight: 900;
}

.info-header__cart {
  width: 43px;
  height: 43px;
  display: inline-block;
  background: url("../img/icons/header/cart.png") 0 0/100% no-repeat;
  position: relative;
}

.info-header__cart span {
  padding: 0px 11px;
  border-radius: 20px;
  line-height: 25px;
  background-color: #f68038;
  position: absolute;
  right: -25px;
  top: -3px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer__column {
  margin: 0px 0px 25px 0px;
}

.footer__column:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-top: 1px solid #dadada;
  text-align: center;
}

.footer__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #999999;
  font-size: 12px;
  font-weight: 300;
}

.footer__payments img {
  max-width: 100%;
}

.block-footer {
  padding: 0px 0px 20px 0px;
  text-align: center;
}

.block-footer__column:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 165px;
          flex: 0 0 165px;
}

.block-footer__column:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.block-footer__phones {
  padding: 0px 0px 0px 15px;
}

.block-footer__phones p {
  margin: 0px 0px 10px 0px;
}

.block-footer__phones p:last-child {
  margin: 0px 0px 0px 0px;
}

.block-footer__phone {
  color: #333333;
  font-weight: 900;
}

.logo-footer {
  display: inline-block;
  margin: 0px 0px 30px 0px;
}

.delivery-footer__title {
  color: #999999;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  margin: 0px 0px 10px 0px;
}

.delivery-footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery-footer__item {
  padding: 15px;
}

.widgets-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px -15px;
}

.widgets-footer__column {
  padding: 0px 15px;
}

.widgets-footer__column img {
  max-width: 100%;
}

.social-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-footer__item {
  margin: 0px 0px 0px 10px;
}

.mainslider__slide {
  position: relative;
}

.mainslider__content {
  position: relative;
  z-index: 2;
}

.mainslider__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mainslider__dotts {
  position: relative;
  z-index: 2;
  margin: -27.5px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  counter-reset: item;
}

.mainslider__dotts .swiper-pagination-bullet {
  cursor: pointer;
  margin: 0px 23px;
  width: 55px;
  height: 55px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.mainslider__dotts .swiper-pagination-bullet::after {
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fffefe;
  font-size: 16px;
  font-weight: 900;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f68038;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: item;
  content: counter(item);
}

.mainslider__dotts .swiper-pagination-bullet-active::after {
  opacity: 1;
}

.content-mainslider {
  padding: 20px 35px 60px 35px;
}

.content-mainslider__title {
  color: #333333;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 43px;
  margin: 0px 0px 50px 0px;
}

.content-mainslider__title span {
  display: block;
  color: #f68038;
}

.content-mainslider__footer {
  padding: 15px 0px 0px 0px;
  text-align: center;
}

.content-mainslider__price {
  margin: 0px 0px 24px 0px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  line-height: 24px;
}

.content-mainslider__price::after {
  font-size: 30px;
  margin: 0px 0px 0px 10px;
}

.content-mainslider__price:last-child {
  margin: 0px 0px 0px 0px;
}

.content-mainslider__button {
  height: 33px;
  border: 3px solid #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  padding: 0px 20px;
}

.content-mainslider__button:hover {
  border: 3px solid #27cf51;
  transition: border 0.3s ease 0s;
  -webkit-transition: border 0.3s ease 0s;
  -moz-transition: border 0.3s ease 0s;
  -ms-transition: border 0.3s ease 0s;
  -o-transition: border 0.3s ease 0s;
}
.content-mainslider__button:hover span {
  color: #27cf51;
  transition: color 0.3s ease 0s;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
}

.content-mainslider__button span {
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  padding: 0px 30px 0px 0px;
  background: url("../img/icons/btn_arrow.png") right no-repeat;
}

.text-mainslider {
  color: #333;
  font-size: 14px;
  font-weight: 900;
  line-height: 24px;
  text-transform: uppercase;
}

.text-mainslider__text-1 {
  color: #f68038;
  font-size: 18px;
}

.text-mainslider__text-2 {
  color: #fff;
  line-height: 1;
  padding: 5px 10px;
  display: inline-block;
  background-color: #92918e;
}

.text-mainslider__text-3 {
  color: #979797;
}

.products-slider__header {
  margin: 0px 0px 30px 0px;
}

.products-slider__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #dadada;
  font-family: "UniSans";
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.products-slider__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-slider__info {
  padding: 0px 20px;
  color: #999999;
  font-weight: 500;
}

.products-slider__info .swiper-pagination-current {
  color: #333333;
  font-size: 30px;
  font-weight: 900;
}

.brands-slider {
  border-top: 3px dashed #dadada;
  border-bottom: 3px dashed #dadada;
  padding: 25px 0;
}

.brands-slider__container {
  position: relative;
}

.brands-slider__body {
  padding: 0px 40px;
}

.brands-slider__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 10px;
}

.brands-slider__slide img {
  max-width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.brands-slider__arrow {
  position: absolute;
  top: 50%;
  margin: -15px 0px 0px 0px;
}

.brands-slider__arrow_prev {
  left: 10px;
}

.brands-slider__arrow_next {
  right: 10px;
}

.text-block__body {
  padding: 45px 35px 15px 35px;
  background: url("../img/bg_text.jpg") 0 0 repeat;
}

.text-block__title {
  color: #22b7ca;
  font-family: "UniSans";
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin: 0px 0px 28px 0px;
}

.text-block__column {
  color: #ffffff;
  position: relative;
  margin: 0px 0px 30px 0px;
}

.text-block__column p {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  margin: 0px 0px 20px 0px;
}

.text-block__column p:last-child {
  margin: 0px 0px 0px 0px;
}

.text-block__label {
  text-transform: uppercase;
  font-weight: 900;
  margin: 0px 0px 5px 0px;
}

.text-block__list li {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.3px;
  margin: 0px 0px 5px 0px;
}

.text-block__list li:last-child {
  margin: 0px 0px 0px 0px;
}

.text-block__list li::before {
  content: "";
  margin: 0px 17px 0px 7px;
  display: inline-block;
  width: 11px;
  height: 12px;
  background: url("../img/icons/li_arrow.png") left 1px no-repeat;
}

.text-block__image {
  position: absolute;
  right: -90px;
  bottom: -260px;
}

.filter {
  border: 4px solid #72c9d4;
}

.filter__title {
  padding: 25px 15px 5px 15px;
  color: #36949f;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.filter__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.filter__btn {
  padding: 0px 15px;
  text-transform: none;
}

.section-filter {
  padding: 15px;
  border-bottom: 1px solid #72c9d4;
}

.section-filter:last-child {
  border: 0;
}

.section-filter__title {
  color: #36949f;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section-filter__title._spoller {
  cursor: pointer;
}

.section-filter__title._spoller::after {
  content: "";
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid #72c9d4;
  background: url("../img/icons/li_arrow.png") center no-repeat;
}

.section-filter__title._spoller._active {
  color: #000;
}

.section-filter__title._spoller._active::after {
  border: 1px solid #cbcbcb;
  background: url("../img/icons/spoller-arrow.png") center no-repeat;
}

.section-filter__title._spoller + .section-filter__body {
  display: none;
}

.section-filter__body {
  padding: 15px 0px 0px 0px;
}

.section-filter__checkbox {
  display: block;
  margin: 0px 0px 15px 0px;
}

.section-filter__checkbox:last-child {
  margin: 0px 0px 0px 0px;
}

.values-price-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px -15px;
}

.values-price-filter__column {
  padding: 0px 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.values-price-filter__label {
  color: #999999;
  font-size: 12px;
  font-weight: 300;
}

.values-price-filter__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0px 0px 0px 10px;
}

.values-price-filter__input .input {
  font-size: 12px;
  padding: 0px 10px;
  height: 20px;
}

.compare-filter__items {
  padding: 0px 13px 0px 0px;
  margin: 0px 0px 20px 0px;
}

.compare-filter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0px 10px 0px;
}

.compare-filter__item:last-child {
  margin: 0px 0px 0px 0px;
}

.compare-filter__link {
  line-height: 16px;
  color: #1ab9ce;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
}

.compare-filter__remove {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin: 3px 0px 0px 5px;
  background: url("../img/icons/remove.png") 0 0 no-repeat;
}

.compare-filter__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.compare-filter__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 33px;
  background-color: #1ab9ce;
  padding: 0px 13px;
  border-radius: 25px;
}

.compare-filter__button span {
  background: url("../img/icons/compare.png") left no-repeat;
  padding: 0px 0px 0px 30px;
  line-height: 33px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
}

.compare-filter__clean {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #e6e6e6 url("../img/icons/trash.png") center no-repeat;
}

.catalog__title {
  color: #dadada;
  font-family: "UniSans";
  font-size: 30px;
  line-height: 130%;
  margin: 0px 0px 20px 0px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.catalog__actions {
  margin: 0px 0px 15px 0px;
}

.actions-catalog {
  background-color: #f3f3f3;
  padding: 10px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-catalog__label {
  margin: 0px 20px 0px 0px;
  color: #333333;
  font-size: 14px;
  font-weight: 900;
}

.view-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.view-catalog__item {
  cursor: pointer;
  width: 36px;
  height: 36px;
  margin: 0px 0px 0px 8px;
}

.view-catalog__item_grid {
  background: #ffffff url("../img/icons/grid.svg") center no-repeat;
}

.view-catalog__item_list {
  background: #4da0b9 url("../img/icons/list.svg") center no-repeat;
}

.navi-catalog {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 10px 15px;
}

.navi-catalog_top {
  margin: 0px 0px 23px 0px;
}

.show-catalog__label {
  margin: 0px 20px 0px 0px;
  color: #333333;
  font-size: 14px;
  font-weight: 900;
}

.product__title {
  margin: 0px 0px 18px 0px;
  color: #333333;
  font-family: "UniSans";
  font-size: 36px;
  text-transform: uppercase;
}

.product__title span {
  display: block;
  font-size: 30px;
  color: #dadada;
}

.product__content {
  margin: 0px 0px 35px 0px;
}

.product__images {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  min-width: 0;
}

.product__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.product__info {
  margin: 0px 0px 70px 0px;
}

.images-product__mainslider {
  margin: 0px 0px 13px 0px;
}

.images-product__mainslide {
  border: 1px solid #f5f5f5;
  height: 308px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.images-product__sale {
  position: absolute;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 16px;
  top: 16px;
  left: 20px;
  width: 58px;
  height: 58px;
  background-color: #f65738;
}

.images-product__subslider {
  margin: 0px -6px;
}

.images-product__subslide {
  padding: 0px 6px;
}

.images-product__subslide.swiper-slide-thumb-active .images-product__subimage {
  border: 1px solid #f68038;
}

.images-product__subslide.swiper-slide-thumb-active .images-product__subimage::after {
  opacity: 1;
}

.images-product__subimage {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 0px 0px 82% 0px;
  border: 1px solid #e4e4e4;
}

.images-product__subimage::after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  border: 3px solid #f68038;
  left: 0;
}

.body-product__top {
  border-bottom: 1px solid #ededed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 0px 12px 0px;
}

.body-product__compare {
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 33px;
  padding: 0px 15px;
  background-color: #f3f3f3;
  font-weight: 900;
  color: #666666;
  text-transform: uppercase;
}

.body-product__compare span {
  background: url("../img/icons/compare_grey.png") left no-repeat;
  padding: 0px 0px 0px 30px;
  line-height: 21px;
}

.body-product__stock {
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f68038;
  color: #ffffff;
  padding: 0px 10px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 300;
}

.body-product__actions {
  margin: 0px 0px 22px 0px;
}

.actions-product {
  border-bottom: 1px solid #ededed;
  padding: 30px 0;
}

.actions-product__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px -15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.actions-product__column {
  padding: 0px 15px;
}

.actions-product__price {
  white-space: nowrap;
  color: #333333;
  font-size: 24px;
  font-weight: 900;
}

.actions-product__price::after {
  font-size: 18px;
}

.actions-product__price_old {
  color: #999999;
  font-size: 18px;
  font-weight: 300;
  text-decoration: line-through;
  margin: 0px 0px 5px 0px;
}

.actions-product__price_old::after {
  font-size: 14px;
}

.actions-product__cart {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 57px;
  padding: 0px 50px 0px 0px;
  position: relative;
}

.actions-product__cart::after {
  content: "";
  background: url("../img/icons/cart_orange.png") right no-repeat;
  width: 57px;
  height: 57px;
  position: absolute;
  right: 0;
  top: 0;
}

.actions-product__cart span {
  padding: 0px 15px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-weight: 900;
  color: #999999;
  background-color: #f3f3f3;
}

.include-product {
  border-bottom: 1px solid #ededed;
}

.include-product__title {
  font-weight: 900;
  color: #333333;
  text-transform: uppercase;
  margin: 0px 0px 20px 0px;
}

.include-product__items {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.include-product__item {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  margin: 0px 30px 13px 0px;
}

.include-product__item:last-child {
  margin: 0px 0px 0px 0px;
}

.include-product__icon {
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 10px 0px;
}

.include-product__text {
  display: inline-block;
  max-width: 100px;
  color: #999999;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}

.info-product__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-product__item {
  height: 49px;
  color: #72c9d4;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0px 30px;
}

.info-product__item span {
  border-bottom: 1px dashed;
}

.info-product__item._active {
  background-color: #72c9d4;
  color: #fff;
}

.info-product__item._active span {
  border-bottom: 1px dashed transparent;
}

.info-product__body {
  background-color: #fafafa;
  padding: 35px 30px;
}

.info-product__block p {
  color: #666666;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  margin: 0px 0px 20px 0px;
}

.info-product__block p:last-child {
  margin: 0px 0px 0px 0px;
}

.info-product__table {
  border-collapse: collapse;
  width: 100%;
}

.info-product__table tr {
  border-bottom: 1px solid #e2e2e2;
}

.info-product__table td {
  padding: 15px 0;
  width: 50%;
  color: #333333;
}

.info-product__value {
  font-weight: 300;
}

.same-products__title {
  text-transform: uppercase;
  font-weight: 900;
  color: #dadada;
  font-size: 30px;
  margin: 0px 0px 30px 0px;
}

.title-checkout {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 900;
  color: #dadada;
  font-family: "UniSans";
}

.checkout__title {
  margin: 0px 0px 15px 0px;
}

.checkout__content {
  margin: 0px 0px 45px 0px;
}

.order-checkout__title {
  margin: 0px 0px 15px 0px;
}

.order-checkout__item {
  margin: 0px 0px 10px 0px;
}

.order-checkout__item:last-child {
  margin: 0px 0px 0px 0px;
}

.order-checkout__footer {
  padding: 25px 0px 0px 0px;
  text-align: right;
}

.order-checkout__total {
  margin: 0px 0px 15px 0px;
  font-weight: 900;
  color: #333333;
  text-transform: uppercase;
  font-size: 24px;
}

.order-checkout__total span {
  color: #f68038;
  font-size: 36px;
}

.order-checkout__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 33px;
  color: #fff;
  padding: 0px 15px;
  background-color: #f68038;
}

.item-order {
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #f5f5f5;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-order__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.item-order__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
}

.item-order__image img {
  max-width: 100%;
}

.item-order__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0px 0px 0px 25px;
}

.item-order__title {
  color: #36949f;
  line-height: 16px;
  display: inline-block;
  margin: 0px 0px 10px 0px;
}

.item-order__title span {
  font-weight: 900;
}

.item-order__price {
  color: #333333;
  font-size: 24px;
  font-weight: 900;
}

.item-order__quantity {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0px 30px;
}

.item-order__label {
  color: #999999;
  font-size: 16px;
  font-weight: 300;
  margin: 0px 0px 5px 0px;
}

.item-order__delete {
  background: url("../img/icons/delete.png") 0 0 no-repeat;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 16px;
  height: 16px;
}

.content-checkout {
  padding: 20px;
  background-color: #fafafa;
}

.content-checkout__item {
  height: 49px;
  color: #72c9d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0px 30px;
  cursor: pointer;
}

.content-checkout__item span {
  border-bottom: 1px dashed;
}

.content-checkout__item._active {
  background-color: #72c9d4;
  color: #fff;
}

.content-checkout__item._active span {
  border-bottom: 1px dashed transparent;
}

.content-checkout__body {
  padding: 30px 0px 0px 0px;
}

.form-checkout__line {
  margin: 0px 0px 10px 0px;
}

.form-checkout__line:last-child {
  margin: 0px 0px 0px 0px;
}

.form-checkout__label {
  padding: 10px 0px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  color: #333333;
  font-weight: 900;
}

.form-checkout__label span {
  color: #f68038;
}

.form-checkout__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}

.form-checkout__input .form__error {
  color: red;
  margin: 3px 0px 0px 0px;
  font-size: 10px;
}

.form-checkout__text {
  color: #666666;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}

.form-checkout__text span {
  color: #f68038;
}

.form-checkout__text p {
  margin: 0px 0px 20px 0px;
}

.form-checkout__text p:last-child {
  margin: 0px 0px 0px 0px;
}

.page {
  padding: 160px 0px 0px 0px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.page__side {
  position: relative;
  z-index: 10;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 260px;
          flex: 0 0 260px;
  margin: 0px 0px 30px 0px;
}

.page__menu {
  margin: 0px 0px 40px 0px;
}

.page__content {
  margin: 0px 0px 30px 0px;
}

.page__search {
  position: relative;
  z-index: 5;
  margin: 0px 0px 22px 0px;
}

.page__slider {
  margin: 0px 0px 65px 0px;
}

.page__news-side {
  margin: 0px 0px 75px 0px;
}

.page__news-side:last-child {
  margin: 0px 0px 0px 0px;
}

.page__brands {
  margin: 0px 0px 32px 0px;
}

.page__text {
  margin: 0px 0px 38px 0px;
}

.page__info-menu {
  margin: 0px 0px 38px 0px;
}

.breadcrumbs {
  overflow: auto;
  margin: 0px 0px 20px 0px;
  height: 20px;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.breadcrumbs__list li {
  padding: 0px 20px 0px 0px;
  margin: 0px 10px 0px 0px;
  background: url("../img/icons/li_arrow.png") right/10px no-repeat;
}

.breadcrumbs__list li:last-child {
  margin: 0;
  background: none;
}

.breadcrumbs__link {
  color: #1ab9ce;
  text-decoration: underline;
}

.breadcrumbs__item {
  color: #999999;
  font-weight: 30;
}

.menu-page {
  background: url("../img/bg_menu.jpg") top repeat;
  position: relative;
}

.menu-page__header {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-page__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #ffffff;
  font-family: "UniSans";
  line-height: 116.66667%;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.menu-page__burger {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  width: 36px;
  height: 36px;
  background-color: #068292;
  position: relative;
  cursor: pointer;
  z-index: 5;
  padding: 10px 6px;
}

.menu-page__burger span {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  top: calc(50% - 1px);
  left: 0px;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu-page__burger span:first-child {
  top: 0px;
}

.menu-page__burger span:last-child {
  top: auto;
  bottom: 0px;
}

.menu-page__burger._active span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.menu-page__burger._active span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 1px);
}

.menu-page__burger._active span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

.menu-page__lines {
  height: 16px;
  position: relative;
}

.menu-page__body {
  display: none;
}

.menu-page__body._active {
  display: block;
}

.menu-page__list > li {
  border-bottom: 1px solid #1aa7b9;
  position: relative;
}

.menu-page__parent .menu-page__link::after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  background: url("../img/menu_arrow.png") 0 0 no-repeat;
}

.menu-page__parent._active .menu-page__submenu {
  pointer-events: all;
}

.menu-page__parent .menu-page__submenu:not(.menu-page__parent._active .menu-page__submenu) {
  overflow: hidden;
}

.menu-page__parent._active .submenu-page__item {
  display: block;
}

.menu-page__parent._active .menu-page__link {
  background-color: #098494;
}

.menu-page__link {
  letter-spacing: 0.3px;
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  display: block;
  padding: 12px 20px;
  position: relative;
}

.submenu-page__item {
  display: none;
}

.submenu-page__menu {
  /* border-bottom: 1px solid #dedede; */
  padding: 20px 0;
}

.submenu-page__link {
  color: #1ab9ce;
  font-size: 12px;
  font-weight: 300;
  display: block;
  letter-spacing: 0.3px;
  padding: 10px 40px;
}

.submenu-page__product {
  padding: 0 15px;
}

.submenu-page__product .item-product {
  border: 0;
}

.items-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px -15px;
}

.items-products__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  padding: 0px 15px;
  margin: 0px 0px 30px 0px;
}

.item-product {
  padding: 15px;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-product__labels {
  position: absolute;
  left: 15px;
  top: 15px;
}

.item-product__label {
  font-weight: 900;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 5px 0px;
  padding: 0px 15px;
  text-transform: uppercase;
  height: 21px;
  background-color: #fd8424;
}

.item-product__image {
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

.item-product__image img {
  max-width: 100%;
  max-height: 240px;
}

.item-product__body {
  padding: 0 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-product__title {
  color: #36949f;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  display: inline-block;
  margin: 0px 0px 5px 0px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-product__title span {
  display: block;
  font-weight: 900;
}

.item-product__footer {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-product__old-price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  text-align: right;
  color: #999999;
  font-size: 18px;
  font-weight: 300;
  text-decoration: line-through;
}

.item-product__old-price::after {
  font-size: 14px;
}

.item-product__add {
  width: 40px;
  height: 40px;
  background: url("../img/icons/cart_gray.png") 0 0 no-repeat;
}

.item-product__price {
  color: #333333;
  font-size: 24px;
  font-weight: 900;
}

.item-product__price::after {
  font-size: 18px;
}

.item-product__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -webkit-transform: translate(-110%, 0px);
      -ms-transform: translate(-110%, 0px);
          transform: translate(-110%, 0px);
}

.hover-item-product {
  border: 5px solid #f68038;
  background-color: rgba(0, 0, 0, 0.84);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}

.hover-item-product__title {
  font-size: 16px;
  color: #c2c2c2;
  font-weight: 300;
  margin: 0px 0px 25px 0px;
}

.hover-item-product__title span {
  display: block;
  color: #ffffff;
  font-weight: 900;
  margin: 0px 0px 5px 0px;
}

.hover-item-product__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 10px 0px 0px 0px;
}

.hover-item-product__cart {
  background: url("../img/icons/cart_orange.png") 0 0 no-repeat;
  width: 57px;
  height: 57px;
  margin: 0px auto 25px auto;
  display: block;
}

.hover-item-product__cart_catalog {
  margin: 0;
}

.hover-item-product__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hover-item-product__old-price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  text-align: right;
  color: #999999;
  font-size: 18px;
  font-weight: 300;
  margin: 0px 0px 10px 0px;
  text-decoration: line-through;
}

.hover-item-product__old-price::after {
  font-size: 14px;
}

.hover-item-product__compare {
  background: url("../img/icons/compare.png") left no-repeat;
  padding: 0px 0px 0px 33px;
  line-height: 21px;
  display: inline-block;
  color: #fff;
}

.hover-item-product__compare span {
  font-weight: 300;
  border-bottom: 1px dashed;
}

.hover-item-product__stock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 10px;
  line-height: 16px;
  color: #f68038;
  font-weight: 400;
  height: 21px;
  border-radius: 15px;
  background-color: #ffffff;
}

.hover-item-product__price {
  font-size: 24px;
  font-weight: 900;
}

.hover-item-product__price::after {
  font-size: 18px;
}

.options-item-product__item {
  margin: 0px 0px 10px 0px;
}

.options-item-product__label {
  margin: 0px 0px 3px 0px;
}

.options-item-product__value {
  color: #f68038;
  font-weight: 900;
}

.search-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.search-page__select {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 14px;
  background-color: #f3f3f3;
}

.search-page__title {
  color: #666666;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-page__title span {
  margin: 0px 13px;
  border-bottom: 1px dashed;
}

.search-page__title span:last-child {
  display: none;
}

.search-page__title::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../img/icons/search_page.png") 0 0 no-repeat;
}

.search-page__title::after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 10px;
  height: 10px;
  background: url("../img/icons/search_page_arrows.png") 0 0 no-repeat;
}

.search-page__title._categories span {
  display: none;
}

.search-page__title._categories span:last-child {
  display: block;
}

.search-page__title._active::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.search-page__categories {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.search-page__input {
  border: 2px solid #f2f2f2;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.search-page__input .input {
  height: 100%;
}

.categories-search {
  border: 1px solid #f3f3f3;
  background-color: #fff;
  display: none;
}

.categories-search::after {
  content: "";
  background-color: #f68038;
  height: 4px;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.categories-search__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  padding: 27px 40px;
  border-right: 1px solid #f3f3f3;
}

.categories-search__column:last-child {
  border: 0;
}

.categories-search__list li {
  margin: 0px 0px 20px 0px;
}

.categories-search__list li:last-child {
  margin: 0px 0px 0px 0px;
}

.categories-search__checkbox .checkbox__input:checked + .checkbox__text {
  color: #f68038;
}

.categories-search__checkbox .checkbox__text {
  color: #999;
}

.categories-search__checkbox .checkbox__text::before {
  display: none;
}

.side-title {
  color: #dadada;
  font-family: "UniSans";
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.news-side__title {
  display: inline-block;
  margin: 0px 0px 0.83333em 0px;
}

.news-side__item {
  margin: 0px 0px 45px 0px;
}

.news-side__item:last-child {
  margin: 0px 0px 0px 0px;
}

.news-side__label {
  color: #333333;
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-transform: uppercase;
  margin: 0px 0px 1.66667em 0px;
  display: inline-block;
}

.news-side__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-side__data {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  text-align: center;
  color: #d8d8d8;
  font-size: 18px;
  font-weight: 300;
}

.news-side__data span {
  font-size: 24px;
  font-weight: 900;
  display: block;
}

.news-side__text {
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  padding: 0px 0px 0px 15px;
}

.reviews-side__title {
  display: inline-block;
  margin: 0px 0px 0.66667em 0px;
}

.reviews-side__item {
  margin: 0px 0px 45px 0px;
  display: block;
}

.reviews-side__item:last-child {
  margin: 0px 0px 0px 0px;
}

.reviews-side__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0px 0px 10px 0px;
}

.reviews-side__user {
  color: #333333;
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-transform: uppercase;
}

.reviews-side__data {
  color: #999999;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  text-transform: uppercase;
}

.reviews-side__body {
  position: relative;
  padding: 14px 8px 14px 30px;
  color: #666666;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
}

.reviews-side__body::before {
  color: #dadada;
  font-size: 48px;
  font-weight: 900;
  content: '"';
  position: absolute;
  left: 8px;
  top: 12px;
  line-height: 1;
}

.info-menu {
  border-top: 3px dashed #dadada;
  border-bottom: 3px dashed #dadada;
  padding: 10px 0;
}

.info-menu__body {
  display: inline-block;
}

.info-menu__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #b0b0b0;
}

.info-menu__line:last-child {
  border: 0;
}

.info-menu__label {
  color: #333333;
  font-weight: 900;
  margin: 0px 35px 0px 0px;
}

.info-menu__list li {
  margin: 0px 30px 0px 0px;
}

.info-menu__link {
  color: #1ab9ce;
  font-size: 12px;
  font-weight: 300;
}

@media (min-width: 540px) {
  .actions-catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .order-catalog {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .navi-catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    align-items: center;
  }

  .show-catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 560px) {
  .footer__bottom {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .block-footer {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .block-footer__column:last-child {
    padding: 0px 0px 0px 45px;
  }

  .block-footer__phones {
    padding: 0px 0px 0px 35px;
    background: url("../img/icons/footer-phone.png") left no-repeat;
  }
}

@media (min-width: 700px) {
  .product__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .product__body {
    padding: 0px 0px 0px 30px;
  }

  .item-order__total {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

@media (min-width: 767.98px) {
  .top-header__column_logo {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding: 25px 0px 0px 0px;
  }

  .products-slider__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .form-checkout__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .form-checkout__input {
    padding: 0px 0px 0px 15px;
  }

  .info-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 991.98px) {
  .quantity__button:hover {
    background: url("../img/icons/sl_arrow_h.svg") 0 0/100% no-repeat;
  }

  ._arrow:hover {
    background: url("../img/icons/sl_arrow_h.svg") 0 0 no-repeat;
  }

  ._arrow_prev:hover {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  ._arrow_next:hover {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }

  .pagging__arrow:hover {
    background: url("../img/icons/sl_arrow_h.svg") 0 0/100% no-repeat;
  }

  .menu__link:hover {
    border-radius: 20px;
    background-color: #068292;
  }

  .contacts-header__column {
    border-left: 1px solid #fff;
  }

  .contacts-header__column:first-child {
    border: 0;
  }

  .actions-header__item:hover {
    color: #1ab9ce;
  }

  .footer__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px -15px;
  }

  .footer__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }

  .widgets-footer {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .text-block__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px -30px;
  }

  .text-block__column {
    padding: 0px 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }

  .filter__content {
    display: block !important;
  }

  .compare-filter__remove:hover {
    background: url("../img/icons/remove_h.png") 0 0 no-repeat;
  }

  .item-order__delete:hover {
    background: url("../img/icons/delete_h.png") 0 0 no-repeat;
  }

  .page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .page__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
    padding: 0px 0px 0px 30px;
  }

  .menu-page__parent._active .submenu-page__item {
    z-index: 2;
    -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }

  .menu-page__link:hover {
    background-color: #098494;
  }

  .menu-page__submenu {
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    /* min-height: 10px; */
    /* height: 100%; */
    /* overflow: hidden; */
    pointer-events: none;
    z-index: -1;
  }

  .submenu-page__item {
    display: block;
    width: 280px;
    border: 2px solid #098494;
    background-color: #ffffff;
    position: absolute;
    width: 100%;
    /* height: 100%; */
    min-height: 50px;
    top: 0;
    left: 0%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translate(-100%, 0px);
        -ms-transform: translate(-100%, 0px);
            transform: translate(-100%, 0px);
  }

  .submenu-page__link:hover {
    background-color: #71c7d3;
    color: #fff;
  }

  .item-product__title:hover {
    text-decoration: underline;
  }

  .item-product:hover .item-product__hover {
    -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }

  .item-product:hover .item-product__title,
  .item-product:hover .item-product__footer {
    opacity: 0;
  }

  .side-title:hover {
    color: #1ab9ce;
  }

  .news-side__label:hover {
    color: #fd8322;
  }

  .reviews-side__item:hover .reviews-side__user,
  .reviews-side__item:hover .reviews-side__data {
    color: #1ab9ce;
  }

  .reviews-side__item:hover .reviews-side__body {
    background-color: #1ab9ce;
    color: #fff;
  }

  .reviews-side__item:hover .reviews-side__body::before {
    color: #64deee;
  }

  .info-menu__link:hover {
    color: #333333;
  }
}

@media (min-width: 992px) {
  .btn:hover {
    background-color: #b86029;
  }

  .btn_grey:hover {
    background-color: #a1a1a1;
  }

  .select__option:hover {
    background: #d9d9d9;
  }

  .checkbox a:hover {
    text-decoration: none;
  }

  .categories-search__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1192px) {
  .brands-slider__arrow_prev {
    left: 0;
  }

  .brands-slider__arrow_next {
    right: 0;
  }

  .content-checkout {
    padding: 20px 45px;
  }

  .content-checkout__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .form-checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px -15px;
  }

  .form-checkout__column {
    padding: 0px 15px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

@media (max-width: 1192px) {
  .menu__list {
    -ms-grid-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .menu__link {
    padding: 5px 10px;
  }

  .contacts-header__column {
    padding: 0px 15px;
  }

  .contacts-header__item_icon {
    padding: 0px 0px 0px 25px;
    background-size: 15px;
  }

  .contacts-header__phone {
    font-size: 16px;
  }

  .bottom-header__row {
    padding: 0px 10px;
  }

  .actions-header__item {
    padding: 0px 0px 0px 30px;
  }

  .info-header__callback {
    background: none;
    padding: 0;
  }

  .info-header__schedule {
    background: none;
    padding: 0;
  }

  .info-header__cart span {
    right: -10px;
  }

  .text-block__list li br {
    display: none;
  }

  .text-block__image {
    display: none;
  }

  .product__images {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 330px;
            flex: 0 0 330px;
  }

  .actions-product__column:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

  .actions-product__cart {
    margin: 15px 0px 0px 0px;
  }

  .form-checkout__text {
    padding: 20px 0px 0px 0px;
  }

  .categories-search__column {
    padding: 27px 20px;
  }
}

@media (max-width: 1180px) {
  .actions-header li {
    margin: 0px 2.54237vw 0px 0px;
  }

  .info-header__column {
    padding: 0px 2.54237vw 0px 0px;
  }
}

@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }

  .menu__body {
    opacity: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    visibility: hidden;
    left: 0;
    overflow: auto;
    z-index: 2;
    padding: 120px 20px 30px 20px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #fff;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 105px;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #14c0d4;
  }

  .menu__body._active {
    opacity: 1;
    visibility: visible;
  }

  .menu__list {
    display: block;
  }

  .menu__list li {
    margin: 0px 0px 20px 0px;
  }

  .menu__link {
    color: #000;
    padding: 0;
    font-size: 20px;
  }

  .icon-menu {
    display: block;
    width: 30px;
    position: relative;
    height: 18px;
    cursor: pointer;
    z-index: 5;
  }

  .icon-menu span {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .icon-menu span:first-child {
    top: 0px;
  }

  .icon-menu span:last-child {
    top: auto;
    bottom: 0px;
  }

  .icon-menu._active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .icon-menu._active span:first-child {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }

  .icon-menu._active span:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }

  .contacts-header {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .contacts-header__item_second-phone {
    display: none;
  }

  .bottom-header__row {
    padding: 0;
  }

  .actions-header__item {
    padding: 0;
    background: none;
  }

  .info-header__schedule {
    display: none;
  }

  .text-block__container {
    padding: 0;
  }

  .text-block__body {
    padding: 25px 20px 15px 20px;
  }

  .filter__title {
    padding: 25px 15px 25px 15px;
  }

  .filter__title._active {
    padding: 25px 15px 5px 15px;
  }

  .filter__content {
    display: none;
  }

  .checkout__order {
    margin: 0px 0px 30px 0px;
  }

  .order-checkout__total {
    font-size: 18px;
  }

  .order-checkout__total span {
    font-size: 30px;
  }

  .menu-page__parent .menu-page__link::after {
    -webkit-transform: translate(0px, -50%) rotate(90deg);
        -ms-transform: translate(0px, -50%) rotate(90deg);
            transform: translate(0px, -50%) rotate(90deg);
  }

  .menu-page__parent._active .menu-page__link::after {
    -webkit-transform: translate(0px, -50%) rotate(-90deg);
        -ms-transform: translate(0px, -50%) rotate(-90deg);
            transform: translate(0px, -50%) rotate(-90deg);
  }

  .menu-page__link {
    font-size: 14px;
  }

  .submenu-page {
    background-color: #fff;
  }

  .submenu-page__link {
    font-size: 14px;
    padding: 10px 20px;
  }

  .submenu-page__product {
    display: none;
  }

  .categories-search__row {
    padding: 20px 0;
  }

  .categories-search__column {
    padding: 0px 20px;
    margin: 0px 0px 20px 0px;
  }

  .categories-search__column:last-child {
    margin: 0px 0px 0px 0px;
  }
}

@media (max-width: 991.98px) and (max-width: 767.98px) {
  .menu__body {
    padding: 90px 20px 30px 20px;
  }

  .menu__body::before {
    height: 70px;
  }
}

@media (max-width: 840px) {
  .items-products__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}

@media (max-width: 767.98px) {
  ._container {
    padding: 0px 10px;
  }

  .header {
    background: #fff url("../img/bg_header.jpg") 0 -20px no-repeat;
  }

  .top-header__content {
    min-height: 70px;
  }

  .top-header__column_logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }

  .top-header__logo {
    width: 100px;
  }

  .top-header__logo img {
    max-width: 100%;
  }

  .products-slider__title {
    margin: 0px 0px 15px 0px;
  }

  .text-block__container {
    padding: 0;
  }

  .product__info {
    margin: 0px -10px 30px -10px;
  }

  .info-product__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 0px 15px;
    font-size: 14px;
  }

  .info-product__body {
    padding: 25px 15px;
  }

  .checkout__content {
    margin: 0px -10px 25px;
  }

  .content-checkout__nav {
    margin: -20px -20px 0px -20px;
  }

  .form-checkout__label {
    margin: 0px 0px 10px 0px;
  }

  .page {
    padding: 133px 0px 0px 0px;
  }

  .search-page__select {
    display: none;
  }

  .info-menu__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .info-menu__line {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    border: 0;
  }

  .info-menu__label {
    margin: 0px 0px 10px 0px;
  }

  .info-menu__list li {
    margin: 0px 0px 10px 0px;
  }

  .info-menu__list li:last-child {
    margin: 0px 0px 0px 0px;
  }
}

@media (max-width: 700px) {
  .product__images {
    margin: 0px 0px 30px 0px;
  }

  .item-order {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .item-order__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 0px 30px 10px 0px;
  }

  .item-order__quantity {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 0px 15px 0px 0px;
  }
}

@media (max-width: 640px) {
  .top-header__logo {
    width: 90px;
  }

  .contacts-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .contacts-header__column {
    padding: 0px;
  }

  .contacts-header__item_icon {
    background: none;
    padding: 0;
  }

  .contacts-header__label {
    display: none;
  }

  .contacts-header__phone {
    background: url("../img/icons/header/phone.png") left no-repeat;
    width: 19px;
    height: 25px;
    font-size: 0;
    display: block;
    margin: 0px 10px 0px 0px;
  }

  .bottom-header {
    display: none;
  }

  .actions-header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0px 0px 15px 0px;
  }

  .info-header__cart {
    width: 40px;
    height: 40px;
  }

  .info-header__cart span {
    font-size: 14px;
    padding: 0px 5px;
    line-height: 20px;
    right: -5px;
  }

  .page {
    padding: 85px 0px 0px 0px;
  }
}

@media (max-width: 600px) {
  .items-products__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

@media (max-width: 560px) {
  .footer__copy {
    margin: 0px 0px 10px 0px;
  }

  .footer__payments {
    text-align: center;
  }

  .block-footer__phones {
    font-size: 18px;
    margin: 0px 0px 30px 0px;
  }

  .delivery-footer {
    text-align: center;
  }

  .delivery-footer__items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .widgets-footer {
    display: block;
    text-align: center;
  }

  .social-footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .social-footer__item {
    margin: 0px 5px;
  }
}

@media (max-width: 540px) {
  .actions-catalog__order {
    margin: 0px 0px 15px 0px;
  }

  .order-catalog__label {
    margin: 0px 0px 10px 0px;
  }

  .view-catalog__item {
    margin: 0px 10px 0px 0px;
  }

  .show-catalog__label {
    margin: 0px 0px 10px 0px;
  }
}

@media (max-width: 479.98px) {
  .item-order__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
  }

  .item-order__price {
    font-size: 18px;
  }
}

@media (max-width: 1192px) and (min-width: 991.98px) {
  .items-products__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}