@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url('/images/ajax-loader.gif') center center no-repeat;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 012;
  display: block;
  height: 17px;
  width: 17px;
  line-height: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev::after,
.slick-next::after {
  display: block;
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  top: -12px;
  left: -10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
/*.slick-prev:before, .slick-next:before {
    font-family: @slick-font-family;
    font-size: 20px;
    line-height: 1;
    color: @slick-arrow-color;
    opacity: @slick-opacity-default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    & when ( @slick-font-family = 'slick' ) {
        !* Icons *!
        @font-face {
            font-family: 'slick';
            font-weight: normal;
            font-style: normal;
            src: url('@{slick-font-path}slick.eot');
            src: url('@{slick-font-path}slick.eot?#iefix') format('embedded-opentype'), url('@{slick-font-path}slick.woff') format('woff'), url('@{slick-font-path}slick.ttf') format('truetype'), url('@{slick-font-path}slick.svg#slick') format('svg');
        }
    }
}*/
.slick-prev {
  left: 0;
  border-left: 2px solid black;
  border-bottom: 2px solid black;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.slick-prev::after {
  top: -12px;
  left: -19px;
}
.slick-next {
  right: 0;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -40px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 10px;
  width: 10px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #F4F4F4;
  line-height: 10px;
  text-align: center;
  border: 1px solid #F4F4F4;
}
.slick-dots li.slick-active button:before {
  background: #006AB8;
  border: 1px solid #006AB8;
}
.container {
  width: 1520px;
  margin: 0 auto;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.col-12 {
  flex: 1 100%;
  max-width: 100%;
}
.col-11 {
  flex: 1 91.66666667%;
  max-width: 91.66666667%;
}
.col-10 {
  flex: 1 83.33333333%;
  max-width: 83.33333333%;
}
.col-9 {
  flex: 1 75%;
  max-width: 75%;
}
.col-8 {
  flex: 1 66.66666667%;
  max-width: 66.66666667%;
}
.col-7 {
  flex: 1 58.33333333%;
  max-width: 58.33333333%;
}
.col-6 {
  flex: 1 50%;
  max-width: 50%;
}
.col-5 {
  flex: 1 41.66666667%;
  max-width: 41.66666667%;
}
.col-4 {
  flex: 1 33.33333333%;
  max-width: 33.33333333%;
}
.col-3 {
  flex: 1 25%;
  max-width: 25%;
}
.col-2 {
  flex: 1 16.66666667%;
  max-width: 16.66666667%;
}
.col-1 {
  flex: 1 8.333333%;
  max-width: 8.333333%;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Italic.eot');
  src: url('../fonts/NotoSans-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/NotoSans-Italic.woff2') format('woff2'), url('../fonts/NotoSans-Italic.woff') format('woff'), url('../fonts/NotoSans-Italic.ttf') format('truetype'), url('../fonts/NotoSans-Italic.svg#NotoSans-Italic') format('svg');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Bold.eot');
  src: url('../fonts/NotoSans-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/NotoSans-Bold.woff2') format('woff2'), url('../fonts/NotoSans-Bold.woff') format('woff'), url('../fonts/NotoSans-Bold.ttf') format('truetype'), url('../fonts/NotoSans-Bold.svg#NotoSans-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-BoldItalic.eot');
  src: url('../fonts/NotoSans-BoldItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/NotoSans-BoldItalic.woff2') format('woff2'), url('../fonts/NotoSans-BoldItalic.woff') format('woff'), url('../fonts/NotoSans-BoldItalic.ttf') format('truetype'), url('../fonts/NotoSans-BoldItalic.svg#NotoSans-BoldItalic') format('svg');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans.eot');
  src: url('../fonts/NotoSans.eot?#iefix') format('embedded-opentype'), url('../fonts/NotoSans.woff2') format('woff2'), url('../fonts/NotoSans.woff') format('woff'), url('../fonts/NotoSans.ttf') format('truetype'), url('../fonts/NotoSans.svg#NotoSans') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Light.eot');
  src: url('../fonts/NotoSans-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/NotoSans-Light.woff2') format('woff2'), url('../fonts/NotoSans-Light.woff') format('woff'), url('../fonts/NotoSans-Light.ttf') format('truetype'), url('../fonts/NotoSans-Light.svg#NotoSans-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Medium.eot');
  src: url('../fonts/NotoSans-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/NotoSans-Medium.woff2') format('woff2'), url('../fonts/NotoSans-Medium.woff') format('woff'), url('../fonts/NotoSans-Medium.ttf') format('truetype'), url('../fonts/NotoSans-Medium.svg#NotoSans-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-SemiBold.eot');
  src: url('../fonts/NotoSans-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/NotoSans-SemiBold.woff2') format('woff2'), url('../fonts/NotoSans-SemiBold.woff') format('woff'), url('../fonts/NotoSans-SemiBold.ttf') format('truetype'), url('../fonts/NotoSans-SemiBold.svg#NotoSans-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Light.eot');
  src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Light.woff2') format('woff2'), url('../fonts/Roboto-Light.woff') format('woff'), url('../fonts/Roboto-Light.ttf') format('truetype'), url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.eot');
  src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff'), url('../fonts/Roboto-Bold.ttf') format('truetype'), url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Italic.eot');
  src: url('../fonts/Roboto-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Italic.woff2') format('woff2'), url('../fonts/Roboto-Italic.woff') format('woff'), url('../fonts/Roboto-Italic.ttf') format('truetype'), url('../fonts/Roboto-Italic.svg#Roboto-Italic') format('svg');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.eot');
  src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.eot');
  src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Medium.woff2') format('woff2'), url('../fonts/Roboto-Medium.woff') format('woff'), url('../fonts/Roboto-Medium.ttf') format('truetype'), url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
* {
  outline: none;
}
html {
  font-size: 16px;
}
html,
body {
  padding: 0;
  margin: 0;
}
body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #2F2F2B;
}
body.open {
  overflow: hidden;
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input,
select,
textarea,
button {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
}
.df-r {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.ali-c {
  align-items: center;
}
a {
  color: #006AB8;
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.button-group button {
  display: inline-block;
  height: 40px;
  padding: 0 25px;
  border: none;
  background: #EDEDED;
  cursor: pointer;
}
.button-group button.active {
  background: #006AB8;
  color: white;
}
.btn-default {
  display: inline-block;
  height: 70px;
  line-height: 70px;
  padding: 0 50px;
  border: none;
  text-decoration: none;
  background: #FFEB00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #2F2F2B;
  cursor: pointer;
}
.btn-default.btn-middle {
  height: 50px;
  line-height: 51px;
  padding: 0 30px;
  font-size: 14px;
}
.btn-default.btn-outline {
  line-height: 1.2;
  background: none;
  color: #006AB8;
}
.btn-default.btn-big {
  height: 70px;
  line-height: 70px;
  padding: 0 60px;
}
.tab {
  display: none;
}
.tab.active {
  display: flex;
}
.heading {
  line-height: 1.2;
  font-size: 40px;
}
.breadcrumbs {
  margin: 30px 0 35px;
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
}
.breadcrumbs ul li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  list-style: none;
  font-size: 13px;
}
.breadcrumbs ul li::after {
  display: block;
  content: '';
  width: 15px;
  height: 1px;
  position: absolute;
  top: 10px;
  right: -25px;
  background: #006AB8;
}
.breadcrumbs ul li a {
  text-decoration: none;
  color: #006AB8;
}
.breadcrumbs ul li:last-child::after {
  display: none;
}
.heading-page {
  margin-bottom: 45px;
}
.heading-page h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 116%;
}
.content {
  min-height: 150px;
  margin-bottom: 80px;
}
.content h1:first-child,
.content h2:first-child,
.content h3:first-child,
.content h4:first-child,
.content ul:first-child,
.content ol:first-child,
.content p:first-child {
  margin-top: 0;
}
.content h1:last-child,
.content h2:last-child,
.content h3:last-child,
.content h4:last-child,
.content ul:last-child,
.content ol:last-child,
.content p:last-child {
  margin-bottom: 0;
}
header {
  padding: 35px 0;
  background: linear-gradient(180deg, rgba(0, 158, 219) 0%, #006AB8 100%) no-repeat;
  color: white;
}
header .row {
  justify-content: space-between;
  align-items: center;
}
header .logo {
  flex: 1 220px;
  max-width: 220px;
  text-decoration: none;
}
header .logo span {
  display: block;
}
header .logo span.logo-words {
  line-height: 40px;
  font-size: 49px;
  font-weight: bold;
  color: #FFEB00;
}
header .logo span.logo-words span:last-child {
  margin-left: 20px;
}
header .logo span.desc {
  margin-top: 15px;
  line-height: 1.2;
  font-size: 12px;
  color: white;
}
header .addresses div:first-child {
  margin-bottom: 3px;
}
header .addresses div svg {
  position: relative;
  top: 4px;
}
header .addresses div span {
  display: inline-block;
  margin-left: 7px;
  font-weight: bold;
  font-size: 14px;
}
header .phone div {
  margin-bottom: 5px;
}
header .phone div:last-child {
  margin-bottom: 0;
}
header .phone a {
  display: inline-block;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  color: white;
}
header .phone a svg {
  display: none;
}
header .top-menu ul {
  margin: 0;
  padding: 0;
}
header .top-menu ul li {
  display: inline-block;
  margin-right: 40px;
  list-style: none;
}
header .top-menu ul li:last-child {
  margin-right: 0;
}
header .top-menu ul li:first-child a {
  font-weight: bold;
  color: #FFEB00;
}
header .top-menu ul li a {
  display: inline-block;
  color: white;
}
header .buttons-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
header .buttons-group a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: white;
}
header .buttons-group a.favorites-link .count {
  display: block;
  width: 18px;
  height: 18px;
  line-height: 19px;
  position: absolute;
  top: -8px;
  right: -8px;
  border-radius: 50%;
  background: #FFEB00;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: #2F2F2B;
}
header .buttons-group a.cart-link {
  margin-left: 50px;
}
header .buttons-group a.cart-link svg {
  display: block;
}
header .buttons-group a.cart-link .count {
  display: block;
  width: 18px;
  height: 18px;
  line-height: 19px;
  position: absolute;
  top: -8px;
  right: -8px;
  border-radius: 50%;
  background: #FFEB00;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: #2F2F2B;
}
header .buttons-group a.cart-link .price {
  display: inline-block;
  position: relative;
  top: 2px;
  font-size: 13px;
}
.main-menu {
  background: #F4F4F4;
}
.main-menu .row {
  align-items: center;
}
.main-menu .col-12 {
  position: relative;
}
.main-menu .menu-col {
  flex: 1 69.5%;
  max-width: 69.5%;
}
.main-menu .search-col {
  flex: 1 30.5%;
  max-width: 31.5%;
  position: relative;
}
.main-menu .menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: space-between;
}
.main-menu .menu li {
  flex: 1;
  list-style: none;
}
.main-menu .menu li:first-child {
  flex: 1 193px;
  max-width: 193px;
  height: 82px;
  line-height: 82px;
}
.main-menu .menu li:first-child a {
  position: relative;
  background: #FFEB00;
  font-weight: 600;
  text-transform: uppercase;
}
.main-menu .menu li:first-child a span {
  display: inline-block;
  width: 24px;
  height: 12px;
  position: relative;
  top: 0;
  left: 0;
  margin-right: 15px;
  border-top: 2px solid #2F2F2B;
  border-bottom: 2px solid #2F2F2B;
  transition: all 0.3s;
}
.main-menu .menu li:first-child a span::after {
  display: inline-block;
  content: '';
  width: 24px;
  height: 2px;
  position: absolute;
  top: 5px;
  left: 0;
  background: #2F2F2B;
  transition: all 0.3s;
}
.main-menu .menu li:first-child a:hover {
  color: #2F2F2B;
  background: #FFEB00;
}
.main-menu .menu li:first-child a.active {
  color: #2F2F2B;
  background: #FFEB00;
}
.main-menu .menu li:first-child a.active span {
  top: -4px;
  left: 6px;
  border-top: none;
  transform: rotate(45deg);
}
.main-menu .menu li:first-child a.active span::after {
  top: 12px;
  transform: rotate(90deg);
}
.main-menu .menu li:nth-of-type(2) {
  flex: 1 300px;
  max-width: 300px;
}
.main-menu .menu li:last-child {
  flex: 1 320px;
  max-width: 320px;
}
.main-menu .menu li a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  height: 82px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2F2F2B;
  transition: all 0.3s;
}
.main-menu .menu li a svg {
  margin-right: 15px;
  filter: grayscale(1);
  transition: all 0.3s;
}
.main-menu .menu li a.active,
.main-menu .menu li a:hover {
  background: #EBEBEB;
  color: #006AB8;
}
.main-menu .menu li a.active svg,
.main-menu .menu li a:hover svg {
  filter: grayscale(0);
}
.main-menu .form-search {
  width: 100%;
  height: 53px;
  position: relative;
}
.main-menu .form-search input {
  display: block;
  width: 100%;
  height: 53px;
  box-sizing: border-box;
  padding: 0 0 0 20px;
  border: none;
  background: white;
  transition: all 0.4s;
}
.main-menu .form-search input::placeholder {
  color: #C5C5C5;
}
.main-menu .form-search button[type="submit"] {
  display: block;
  width: 62px;
  height: 100%;
  line-height: 10px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: #FFEB00;
  text-align: center;
  cursor: pointer;
}
.main-menu .hidden-menu {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  box-shadow: 0 5px 45px rgba(0, 0, 0, 0.1);
  z-index: 99;
}
.main-menu .hidden-menu .hidden-menu-item {
  display: none;
}
.main-menu .hidden-menu .hidden-menu-item.active {
  display: block;
}
.main-menu .hidden-menu .col-4:last-child .hidden-menu-item-container {
  border-right: none;
}
.main-menu .hidden-menu .hidden-menu-item-container {
  padding: 53px 50px 53px 70px;
  border-right: 1px solid #F4F4F4;
}
.main-menu .hidden-menu .hidden-menu-item-container .hidden-menu-item-heading {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 500;
}
.main-menu .hidden-menu .hidden-menu-item-container ul {
  margin: 0;
  padding: 0;
  columns: 2;
}
.main-menu .hidden-menu .hidden-menu-item-container ul li {
  display: block;
  margin-bottom: 14px;
  list-style: none;
}
.main-menu .hidden-menu .hidden-menu-item-container ul li a {
  text-decoration: none;
  font-size: 13px;
  color: #2F2F2B;
}
.main-menu .hidden-menu .hidden-menu-item-container ul li a:hover {
  color: #006AB8;
}
.main-menu .hidden-menu .hidden-menu-item-container ul.hidden-menu-item-container-category-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  columns: 1;
}
.main-menu .hidden-menu .hidden-menu-item-container ul.hidden-menu-item-container-category-menu li {
  flex: 1;
}
.main-menu .hidden-menu .hidden-menu-item-container ul.hidden-menu-item-container-category-menu li a {
  display: block;
  text-align: center;
}
.main-menu .hidden-menu .hidden-menu-item-container ul.hidden-menu-item-container-category-menu li a img {
  display: block;
  max-height: 120px;
  margin: 0 auto 10px;
}
.search-results {
  margin-bottom: 60px;
}
.slider {
  margin-top: 30px;
}
.slider .main-slider-item {
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 70px;
}
.slider .main-slider-item::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
}
.slider .main-slider-item .main-slider-item-heading,
.slider .main-slider-item .main-slider-item-desc {
  max-width: 50%;
}
.slider .main-slider-item .main-slider-item-heading {
  position: relative;
  z-index: 1;
  line-height: 1.2;
  font-size: 26px;
  font-weight: 500;
}
.slider .main-slider-item .main-slider-item-desc {
  position: relative;
  z-index: 1;
  margin: 20px 0 35px;
  line-height: 25px;
  font-size: 18px;
  font-weight: 300;
}
.slider .main-slider-item a {
  position: relative;
  z-index: 1;
}
.slider .main-slider-item.image-link {
  padding: 0;
}
.slider .main-slider-item.image-link::before {
  display: none;
}
.slider .main-slider-item.image-link a {
  display: block;
}
.slider .main-slider-item.image-link img {
  display: block;
  width: 100%;
  height: auto;
}
.slider .slick-prev {
  left: -28px;
}
.slider .slick-next {
  right: -28px;
}
.category-links {
  margin-top: 60px;
}
.category-links .row {
  border: 1px solid #F4F4F4;
}
.category-links .col-3 a {
  display: block;
  height: 405px;
  position: relative;
  padding-top: 40px;
  border-right: 1px solid #F4F4F4;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: #2F2F2B;
}
.category-links .col-3 a::after {
  display: block;
  content: '';
  width: 120px;
  height: auto;
  position: absolute;
  top: 120px;
  left: 128px;
}
.category-links .col-3 a::before {
  display: block;
  content: '';
  width: 120px;
  height: auto;
  position: absolute;
  top: 120px;
  left: 128px;
  opacity: 0;
}
.category-links .col-3 a span {
  display: block;
  padding: 0 50px;
  text-align: center;
}
.category-links .col-3 a:hover {
  color: #006AB8;
}
.category-links .col-3.entrance-doors a::after {
  height: 252px;
  background: url('../images/image-doors-inside.png') top center / cover;
}
.category-links .col-3.entrance-doors a::before {
  height: 270px;
  background: url('../images/image-doors-inside-open.png') top center / cover;
}
.category-links .col-3.entrance-doors a:hover::after {
  opacity: 0;
}
.category-links .col-3.entrance-doors a:hover::before {
  opacity: 1;
}
.category-links .col-3.interior-doors a::after {
  left: 120px;
  height: 252px;
  background: url('../images/image-doors-enter.png') top center / cover;
}
.category-links .col-3.interior-doors a::before {
  left: 120px;
  height: 270px;
  background: url('../images/image-doors-enter-open.png') top center / cover;
}
.category-links .col-3.interior-doors a:hover::after {
  opacity: 0;
}
.category-links .col-3.interior-doors a:hover::before {
  opacity: 1;
}
.category-links .col-3.arch a::after {
  width: 130px;
  height: 255px;
  left: 122px;
  background: url('../images/image-arch.png') top center / cover;
}
.category-links .col-3.arch a::before {
  width: 130px;
  height: 255px;
  left: 122px;
  background: url('../images/image-arch-hover.png') top center / cover;
}
.category-links .col-3.arch a:hover::after {
  opacity: 0;
}
.category-links .col-3.arch a:hover::before {
  opacity: 1;
}
.category-links .col-3.discount a {
  border-right: none;
}
.category-links .col-3.discount a::after {
  width: 130px;
  height: 262px;
  left: 126px;
  background: url('../images/image-doors-discount.png') top center / cover;
}
.category-links .col-3.discount a::before {
  width: 130px;
  height: 307px;
  left: 126px;
  top: 107px;
  background: url('../images/image-discount-hover.png') top center / cover;
}
.category-links .col-3.discount a:hover::after {
  opacity: 0;
}
.category-links .col-3.discount a:hover::before {
  opacity: 1;
}
.home-text {
  margin: 90px 0 125px;
}
.home-text .desc {
  width: 95%;
}
.home-text .desc h1 {
  margin: 0 0 40px;
  font-size: 40px;
  font-weight: 500;
}
.home-text .desc p {
  margin: 15px 0;
  line-height: 1.3;
  font-size: 18px;
}
.home-text .desc p:first-child {
  margin-top: 0;
}
.home-text a {
  display: block;
  position: relative;
}
.home-text a img {
  display: block;
  width: 100%;
}
.home-text a::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.home-text a svg {
  position: absolute;
  top: 220px;
  left: 44%;
  z-index: 1;
}
.home-text a:hover::before {
  background: rgba(0, 0, 0, 0.2);
}
.home-text .video-presentation {
  position: relative;
}
.home-text .video-presentation video {
  display: block;
  width: 100%;
  height: auto;
}
.work-steps {
  margin: 85px 0;
}
.work-steps .heading {
  margin-bottom: 40px;
}
.work-steps .col-3 {
  flex: 1 23.5%;
  max-width: 23.5%;
  margin-right: 2%;
}
.work-steps .col-3:nth-of-type(4n + 4) {
  margin-right: 0;
}
.work-steps .col-3 .item {
  padding: 24px 32px;
  background: #F4F4F4;
}
.work-steps .col-3 .item .item-heading {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.work-steps .col-3 .item .item-heading span {
  margin-right: 20px;
  font-weight: 600;
  font-size: 60px;
  line-height: 138.5%;
  color: #6A6A6A;
}
.work-steps .col-3 .item .item-desc {
  line-height: 138.5%;
  font-size: 18px;
}
.addresses .row:last-child {
  margin-top: 85px;
}
.addresses .col-4 {
  flex: 1 33.33333333%;
  max-width: 33.33333333%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 2%;
  font-size: 18px;
}
.addresses .col-8 {
  flex: 1 64.66666667%;
  max-width: 64.66666667%;
}
.addresses .img-address {
  width: 344px;
  height: 220px;
  margin-top: 30px;
}
.addresses p {
  margin: 15px 0;
}
.addresses svg {
  position: relative;
  top: 7px;
  margin-right: 10px;
}
.home-news {
  margin: 85px 0 100px;
}
.home-news .heading {
  margin-bottom: 25px;
}
.home-news .ali-c .col-3 {
  text-align: right;
}
.home-news .ali-c .col-3 a {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  line-height: 116%;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  color: #006AB8;
}
.home-news .ali-c .col-3 a svg {
  margin-left: 4px;
}
.home-news .button-group {
  margin-bottom: 40px;
}
.home-news .news-block {
  flex: 1 31.3333%;
  max-width: 33.3333%;
  margin-right: 3%;
}
.home-news .news-block:nth-of-type(3n + 3) {
  margin-right: 0;
}
.home-news .news-block .news-block-heading {
  font-size: 26px;
  line-height: 116%;
}
.home-news .news-block .news-block-desc {
  margin: 12px 0 20px;
}
.home-news .news-block .news-block-desc p {
  margin: 0;
}
.home-news .news-block .news-block-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 116%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #006AB8;
}
.catalog\.show .catalog .col-10 {
  flex: 1 81%;
  max-width: 81%;
  margin-left: 2.33333333%;
}
.catalog .catalog .col-10 {
  flex: 1 81%;
  max-width: 81%;
  margin-left: 2.33333333%;
}
.catalog .filter-heading {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 116%;
}
.catalog .filter-form .filter-form-block {
  margin-bottom: 10px;
  padding: 20px 20px 0;
  overflow: hidden;
  background: #F4F4F4;
}
.catalog .filter-form .filter-form-block .filter-form-block-heading {
  position: relative;
  margin-bottom: 20px;
  padding-right: 25px;
  font-weight: 500;
  line-height: 116%;
  cursor: pointer;
}
.catalog .filter-form .filter-form-block .filter-form-block-heading::after {
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 10px;
  right: 2px;
  border-top: 1px solid #2F2F2B;
  border-right: 1px solid #2F2F2B;
  transform: rotate(-45deg);
  transition: all 0.3s;
  cursor: pointer;
}
.catalog .filter-form .filter-form-block .filter-form-inputs {
  height: 0;
  min-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.colors {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.colors label {
  flex: 1 24px;
  max-width: 24px;
  margin-bottom: 20px;
  margin-right: 23px;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.colors label:nth-child(5n + 5) {
  margin-right: 0;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.colors label span {
  display: inline-block;
  width: 21px;
  height: 21px;
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.colors label.check span {
  border: 3px solid #00a061;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.colors input[type="checkbox"] {
  display: none;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.size label,
.catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label {
  display: block;
  margin-bottom: 20px;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.size label span,
.catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label span {
  display: inline-block;
  position: relative;
  padding-left: 29px;
  cursor: pointer;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.size label span::after,
.catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label span::after {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #E5E5E5;
  background: white;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.size label.check span::after,
.catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label.check span::after {
  border: 1px solid #006AB8;
  background: #006AB8;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.size label.check span::before,
.catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label.check span::before {
  display: block;
  content: '';
  width: 8px;
  height: 6px;
  position: absolute;
  top: 6px;
  left: 6px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(135deg);
  z-index: 1;
}
.catalog .filter-form .filter-form-block .filter-form-inputs.size input[type="checkbox"],
.catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer input[type="checkbox"] {
  display: none;
}
.catalog .filter-form .filter-form-block.open .filter-form-block-heading::after {
  top: 5px;
  transform: rotate(135deg);
}
.catalog .filter-form .filter-form-block.open .filter-form-inputs {
  height: auto;
  min-height: 50px;
  visibility: visible;
  opacity: 1;
}
.catalog .filter-form .btn-middle {
  width: 100%;
  margin-top: 10px;
  padding: 0;
}
.catalog .filter-form .filter-link {
  margin: 10px 0 60px;
  text-align: center;
}
.catalog .filter-form .filter-link a {
  font-size: 14px;
  font-weight: bold;
  line-height: 116%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.catalog .catalog-top-link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.catalog .catalog-top-link .catalog-top-link-item {
  flex: 1 31.66666667%;
  max-width: 31.66666667%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-right: 2.5%;
}
.catalog .catalog-top-link .catalog-top-link-item:nth-child(2) .catalog-top-link-item-right {
  background: #E1E5F0;
}
.catalog .catalog-top-link .catalog-top-link-item:nth-child(3) {
  margin-right: 0;
}
.catalog .catalog-top-link .catalog-top-link-item:nth-child(3) .catalog-top-link-item-right {
  background: #FDF3D6;
}
.catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right,
.catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-left {
  flex: 1 50%;
  max-width: 50%;
}
.catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-left img {
  display: block;
  width: 100%;
  height: auto;
}
.catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right {
  min-height: 160px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  background: #E1DACC;
}
.catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right .catalog-top-link-item-right-info {
  padding: 0 25px;
}
.catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right .catalog-top-link-item-right-info .catalog-top-link-item-right-info-title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 116%;
  color: #006AB8;
}
.catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right .catalog-top-link-item-right-info .catalog-top-link-item-right-info-desc {
  font-weight: normal;
  font-size: 15px;
  line-height: 138.5%;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 30px 0;
}
.product-list .product-list-item {
  flex: 1 17.5%;
  max-width: 18%;
  height: 480px;
  position: relative;
  margin-right: 2.5%;
  margin-bottom: 2.5%;
}
.product-list .product-list-item:nth-of-type(5n + 5) {
  margin-right: 0;
}
.product-list .product-list-item .product-list-item-inner {
  position: relative;
  z-index: 1;
  border: 1px solid #E5E5E5;
  padding-bottom: 30px;
  background: white;
}
.product-list .product-list-item .product-list-item-inner.absence .product-list-item-state {
  color: #888888;
}
.product-list .product-list-item .product-list-item-link-img {
  display: block;
  width: max(100%, 100px);
  min-height: 200px;
  margin: 25px auto;
  z-index: 3;
}
.product-list .product-list-item .product-list-item-name {
  margin-bottom: 20px;
  padding: 0 10px;
  text-align: center;
}
.product-list .product-list-item .product-list-item-name a {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  color: #2F2F2B;
}
.product-list .product-list-item .product-list-item-name a:hover {
  color: #006AB8;
}
.product-list .product-list-item .product-list-item-colors {
  max-height: 38px;
  overflow: hidden;
  padding-right: 10px;
  text-align: center;
}
.product-list .product-list-item .product-list-item-colors .product-list-item-colors-item {
  display: inline-block;
  width: 21px;
  height: 21px;
  position: relative;
}
.product-list .product-list-item .product-list-item-colors .product-list-item-colors-item span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
}
.product-list .product-list-item .product-list-item-state {
  margin: 15px 0 40px;
  font-size: 12px;
  line-height: 116%;
  text-align: center;
  color: #006AB8;
}
.product-list .product-list-item .product-list-item-price {
  position: relative;
}
.product-list .product-list-item .product-list-item-price .product-list-item-price-discount {
  width: 100%;
  position: absolute;
  top: -18px;
  font-size: 16px;
  line-height: 116%;
  text-decoration-line: line-through;
  color: #9F9F9F;
  text-align: center;
}
.product-list .product-list-item .product-list-item-price .product-list-item-price-current {
  font-weight: bold;
  font-size: 24px;
  line-height: 116%;
  text-align: center;
}
.product-list .product-list-item .product-list-item-price .product-list-item-price-current span {
  font-size: 26px;
}
.product-list .product-list-item .product-list-item-button {
  display: none;
  text-align: center;
}
.product-list .product-list-item .product-list-item-button .product-list-item-info {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 116%;
  text-align: center;
  color: #9F9F9F;
}
.product-list .product-list-item .product-list-item-button .btn-add-favorite {
  display: inline-block;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  font-size: 12px;
  line-height: 116%;
  text-align: center;
  color: #E9383E;
  cursor: pointer;
}
.product-list .product-list-item .product-list-item-button .btn-add-favorite span {
  display: inline-block;
  position: relative;
  top: 4px;
  margin-right: 3px;
  font-size: 24px;
}
.product-list .product-list-item:hover {
  z-index: 5;
}
.product-list .product-list-item:hover .product-list-item-inner {
  border: 1px solid #E5E5E5;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.product-list .product-list-item:hover .product-list-item-button {
  display: block;
  margin-top: 14px;
}
.product-list nav {
  margin-top: 40px;
  flex: 1 100%;
  max-width: 100%;
}
.product-list nav .pagination {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.product-list nav .pagination li {
  list-style: none;
}
.product-list nav .pagination li.page-item.active {
  width: 35px;
  height: 35px;
  margin: 0 5px;
  line-height: 35px;
  background: transparent;
  border: 1px solid transparent;
  color: seagreen;
  text-align: center;
}
.product-list nav .pagination li.page-item.disabled {
  width: 35px;
  height: 35px;
  margin: 0 5px;
  line-height: 35px;
  background: transparent;
  border: 1px solid transparent;
  text-align: center;
}
.product-list nav .pagination li a {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  line-height: 35px;
  background: #F8F0EE;
  border: 1px solid #006AB8;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  color: #999999;
}
.catalog\.product .product .col-3 {
  flex: 1 18%;
  max-width: 18%;
  margin-right: 3%;
}
.catalog\.product .product .col-5 {
  flex: 1 45%;
  max-width: 45%;
  margin-right: 3%;
}
.catalog\.product .product .col-4 {
  flex: 1 31%;
  max-width: 31%;
}
.catalog\.product .product .product-images-slider {
  border: 1px solid #EBEBEB;
}
.catalog\.product .product .product-images-slider a {
  display: block;
  padding: 45px 60px;
}
.catalog\.product .product .product-images-slider a img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.catalog\.product .product .product-images-slider .slick-prev,
.catalog\.product .product .product-images-slider .slick-next {
  width: 20px;
  height: 20px;
}
.catalog\.product .product .product-images-slider .slick-prev {
  left: 25px;
  border-left: 1px solid #2F2F2B;
  border-bottom: 1px solid #2F2F2B;
}
.catalog\.product .product .product-images-slider .slick-next {
  right: 25px;
  border-right: 1px solid #2F2F2B;
  border-bottom: 1px solid #2F2F2B;
}
.catalog\.product .product .product-info-warning {
  margin: 25px 0 50px;
}
.catalog\.product .product .product-info-warning p {
  margin: 10px 0;
  position: relative;
  padding-left: 10px;
  border-left: 1px solid #00a061;
  font-size: 12px;
  line-height: 116%;
  color: #888888;
}
.catalog\.product .product .product-info-warning p:first-child {
  margin-top: 0;
}
.catalog\.product .product .product-info-warning p:last-child {
  margin-bottom: 0;
}
.catalog\.product .product .product-options-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 45px;
}
.catalog\.product .product .product-options-list .product-options-list-item {
  flex: 1 100%;
  max-width: 100%;
  margin-bottom: 35px;
}
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-heading {
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 116%;
}
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options {
  margin: 0;
  padding: 0;
  columns: 3;
}
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option {
  position: relative;
  margin-bottom: 15px;
  list-style: none;
}
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.view span,
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.size span {
  min-height: 21px;
  display: inline-block;
  position: relative;
  padding-left: 27px;
  cursor: pointer;
}
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.view span::before,
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.size span::before {
  display: block;
  content: '';
  width: 19px;
  height: 19px;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #C5C5C5;
  border-radius: 50%;
}
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.check.view span,
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.check.size span {
  position: relative;
  padding-left: 27px;
}
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.check.view span::before,
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.check.size span::before {
  border: 1px solid #006AB8;
  background: #006AB8;
}
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.check.view span::after,
.catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options .product-options-list-item-option.check.size span::after {
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 7px;
  left: 7px;
  border-radius: 50%;
  background: white;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 {
  flex: 1 49%;
  max-width: 49%;
  margin-right: 2%;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50:nth-of-type(2) {
  margin-right: 0;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option {
  position: relative;
  margin-right: 17px;
  cursor: pointer;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option.color {
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 50%;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option.type span {
  position: relative;
  padding-left: 27px;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option.type span::before {
  display: block;
  content: '';
  width: 19px;
  height: 19px;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #C5C5C5;
  border-radius: 50%;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option.check.color {
  top: 3px;
  width: 18px;
  height: 18px;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option.check.color::before {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  top: -4px;
  left: -4px;
  border: 1px solid #2F2F2B;
  border-radius: 50%;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option.check.type span {
  position: relative;
  padding-left: 27px;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option.check.type span::before {
  border: 1px solid #006AB8;
  background: #006AB8;
}
.catalog\.product .product .product-options-list .product-options-list-item.fx-50 .product-options-list-item-options .product-options-list-item-option.check.type span::after {
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 7px;
  left: 7px;
  border-radius: 50%;
  background: white;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex: 1;
  max-width: 100%;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-heading {
  flex: 1 100%;
  max-width: 100%;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-view {
  flex: 1 35%;
  max-width: 35%;
  margin-right: 5%;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-options {
  flex: 1 100%;
  max-width: 100%;
  columns: 1;
  font-size: 14px;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option .quantity-counter,
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option .additional-price,
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option .additional-name {
  flex: 1;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option .additional-name {
  max-width: 71%;
  position: relative;
  padding-left: 27px;
  cursor: pointer;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option .additional-name::before {
  display: block;
  content: '';
  width: 19px;
  height: 19px;
  position: absolute;
  top: -1px;
  left: 0;
  border: 1px solid #C5C5C5;
  cursor: pointer;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option .additional-price {
  max-width: 23%;
  text-align: right;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option.check .additional-name::before {
  background: #006AB8;
  border: 1px solid #006AB8;
}
.catalog\.product .product .product-options-list .product-options-list-item.complex .product-options-list-item-option.check .additional-name::after {
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 4px;
  left: 6px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  cursor: pointer;
}
.catalog\.product .product .product-options-list .product-door-presentation {
  flex: 1 100%;
  max-width: 200px;
  position: relative;
  margin-right: 33px;
}
.catalog\.product .product .product-options-list .product-door-presentation svg {
  position: relative;
  z-index: 1;
}
.catalog\.product .product .product-options-list .product-door-presentation svg path {
  opacity: 0;
}
.catalog\.product .product .product-options-list .product-door-presentation svg path.active {
  opacity: 1;
}
.catalog\.product .product .product-options-list .product-door-presentation img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.catalog\.product .product .product-order {
  padding: 25px;
  background: #F4F4F4;
}
.catalog\.product .product .product-order .product-order-top {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-bottom: 24px;
}
.catalog\.product .product .product-order .product-order-top .product-code {
  font-size: 12px;
  line-height: 116%;
  color: #888888;
}
.catalog\.product .product .product-order .product-order-top .product-state {
  margin-left: 24px;
  padding: 7px 8px;
  text-transform: uppercase;
  background: #1EAAF9;
  font-weight: 600;
  font-size: 11px;
  line-height: 116%;
  letter-spacing: 0.05em;
  color: white;
}
.catalog\.product .product .product-order .product-order-top .product-state.ml-0 {
  margin-left: 0;
}
.catalog\.product .product .product-order .product-order-top .product-state.absence {
  background: #8f8e8e;
  color: white;
}
.catalog\.product .product .product-order .product-order-list {
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E5E5E5;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 12px;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-name {
  flex: 1 55%;
  max-width: 55%;
  line-height: 116%;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter {
  flex: 1 18%;
  max-width: 18%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  padding: 3px 0;
  border: 1px solid #E5E5E5;
  background: white;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter span {
  flex: 1 33.3334%;
  max-width: 33.3334%;
  position: relative;
  text-align: center;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter span.minus,
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter span.plus {
  height: 15px;
  cursor: pointer;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter span.minus::before {
  display: block;
  content: '';
  width: 9px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 7px;
  background: #888888;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter span.plus {
  color: #006AB8;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter span.plus::before {
  display: block;
  content: '';
  width: 10px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 3px;
  background: #1EAAF9;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter span.plus::after {
  display: block;
  content: '';
  width: 2px;
  height: 10px;
  position: absolute;
  top: 3px;
  left: 7px;
  background: #1EAAF9;
}
.catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-price {
  flex: 1 27%;
  max-width: 26%;
  line-height: 116%;
  text-align: right;
}
.catalog\.product .product .product-order .product-order-total {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 31px;
}
.catalog\.product .product .product-order .product-order-total .product-order-total-desc,
.catalog\.product .product .product-order .product-order-total .product-order-total-price {
  flex: 1 50%;
  max-width: 50%;
  font-size: 26px;
  line-height: 116%;
}
.catalog\.product .product .product-order .product-order-total .product-order-total-price {
  text-align: right;
}
.catalog\.product .product .product-order .product-order-buttons {
  text-align: center;
}
.catalog\.product .product .product-order .product-order-buttons.df-r {
  text-align: left;
}
.catalog\.product .product .product-order .product-order-buttons .btn-add-favorite {
  display: inline-block;
  margin-top: 15px;
  padding: 0;
  border: none;
  background: none;
  font-size: 12px;
  line-height: 116%;
  text-align: center;
  color: #E9383E;
  cursor: pointer;
}
.catalog\.product .product .product-order .product-order-buttons .btn-add-favorite span {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 3px;
  font-size: 18px;
}
.catalog\.product .product .product-order .product-order-buttons .btn-outline {
  max-width: 150px;
  height: auto;
  margin-left: 52px;
  padding: 0;
  text-align: left;
}
.catalog\.product .product .payment-info {
  margin-top: 30px;
  border: 1px solid #E5E5E5;
  padding: 25px;
}
.catalog\.product .product .payment-info .payment-info-heading {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 116%;
}
.catalog\.product .product .payment-info ul {
  margin: 0;
  padding: 0;
}
.catalog\.product .product .payment-info ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  list-style: none;
  line-height: 116%;
  color: #656563;
}
.catalog\.product .product .payment-info ul li::before {
  display: block;
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 6px;
  left: 7px;
  border-radius: 50%;
  background: #2F2F2B;
}
.catalog\.product .product .payment-info ul li:last-child {
  margin-bottom: 0;
}
.catalog\.product .product .tab {
  margin: 40px 0 60px;
}
.catalog\.product .product .parameters-table {
  border: 1px solid #E5E5E5;
}
.catalog\.product .product .parameters-table .parameters-table-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0 25px;
  border-bottom: 1px solid #E5E5E5;
}
.catalog\.product .product .parameters-table .parameters-table-row:last-child {
  border-bottom: none;
}
.catalog\.product .product .parameters-table .col-3 {
  flex: 1 24%;
  max-width: 25%;
  margin: 0;
  padding: 12px 0;
  border-right: 1px solid #E5E5E5;
}
.catalog\.product .product .parameters-table .col-9 {
  flex: 1 71%;
  max-width: 75%;
  padding: 12px 20px;
}
.favorites-page .product-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 30px 0;
}
.favorites-page .product-list .product-list-item {
  flex: 1 17.5%;
  max-width: 18%;
  height: 620px;
  position: relative;
  margin-right: 2.5%;
  margin-bottom: 2.5%;
}
.favorites-page .product-list .product-list-item .btn-del {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 12;
  border: none;
  border-radius: 50%;
  line-height: 10px;
  background: #006AB8;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: white;
  cursor: pointer;
}
.favorites-page .product-list .product-list-item:nth-of-type(5n + 5) {
  margin-right: 0;
}
.cart .cart-heading {
  padding-bottom: 14px;
  border-bottom: 1px solid #E5E5E5;
}
.cart .cart-heading .col-1,
.cart .cart-heading .col-2 {
  text-align: center;
}
.cart .cart-body {
  padding: 20px 0;
  border-bottom: 1px solid #E5E5E5;
}
.cart .cart-body .col-1,
.cart .cart-body .col-2 {
  text-align: center;
}
.cart .cart-body .cart-body-image {
  display: block;
}
.cart .cart-body .cart-body-image img {
  display: block;
  width: 80%;
  height: auto;
}
.cart .cart-body .cart-body-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 116%;
  text-decoration: none;
}
.cart .cart-body .cart-body-desc {
  margin-top: 10px;
  font-size: 12px;
}
.cart .cart-body .cart-body-accessories {
  margin-top: 10px;
  font-weight: 600;
}
.cart .cart-body .cart-body-price {
  font-weight: 600;
  font-size: 20px;
  line-height: 116%;
}
.cart .cart-body .cart-body-total-price {
  font-weight: 600;
  font-size: 24px;
  line-height: 116%;
}
.cart .cart-body .cart-body-quantity-counter {
  flex: 1 50%;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  padding: 3px 0;
  border: 1px solid #E5E5E5;
  background: white;
}
.cart .cart-body .cart-body-quantity-counter span {
  flex: 1 33.3334%;
  max-width: 33.3334%;
  position: relative;
  text-align: center;
}
.cart .cart-body .cart-body-quantity-counter span.minus,
.cart .cart-body .cart-body-quantity-counter span.plus {
  height: 15px;
  cursor: pointer;
}
.cart .cart-body .cart-body-quantity-counter span.minus::before {
  display: block;
  content: '';
  width: 9px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 7px;
  background: #888888;
}
.cart .cart-body .cart-body-quantity-counter span.plus {
  color: #006AB8;
}
.cart .cart-body .cart-body-quantity-counter span.plus::before {
  display: block;
  content: '';
  width: 10px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 3px;
  background: #1EAAF9;
}
.cart .cart-body .cart-body-quantity-counter span.plus::after {
  display: block;
  content: '';
  width: 2px;
  height: 10px;
  position: absolute;
  top: 3px;
  left: 7px;
  background: #1EAAF9;
}
.cart .cart-total {
  margin: 60px 0;
}
.cart .cart-total .col-12 {
  font-size: 26px;
  font-weight: 600;
  line-height: 116%;
  text-align: right;
}
.cart .cart-total .col-12 div {
  margin-right: 9%;
}
.cart .cart-total .col-12 span {
  display: inline-block;
  margin-right: 30px;
  font-size: 20px;
}
.cart .cart-next {
  margin-bottom: 60px;
  text-align: right;
}
.cart button {
  padding: 0;
  border: none;
  background: none;
  line-height: 23px;
  font-size: 40px;
  font-weight: 300;
  color: #b9b9b9;
  cursor: pointer;
}
.checkout-step .error-submit .row {
  margin: 30px;
  justify-content: center;
}
.checkout-step .error-submit .row .col-6 {
  padding: 20px;
  background: #E9383E;
  color: white;
}
.checkout-step .col-8{
  flex: 1 63.66666667%;
  max-width: 63.66666667%;
}
.checkout-step .col-4 {
  flex: 1 34%;
  max-width: 34%;
  margin-left: 2.3333333333%;
}
.checkout-step .subheading {
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 26px;
  line-height: 116%;
}
.checkout-step .step-heading {
  margin-bottom: 20px;
}
.checkout-step .product-options-list-item-options {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.checkout-step .product-options-list-item-options .product-options-list-item-option {
  position: relative;
  margin-right: 25px;
  margin-bottom: 16px;
  cursor: pointer;
}
.checkout-step .product-options-list-item-options .product-options-list-item-option.payment span,
.checkout-step .product-options-list-item-options .product-options-list-item-option.delivery span {
  position: relative;
  padding-left: 27px;
}
.checkout-step .product-options-list-item-options .product-options-list-item-option.payment span::before,
.checkout-step .product-options-list-item-options .product-options-list-item-option.delivery span::before {
  display: block;
  content: '';
  width: 19px;
  height: 19px;
  position: absolute;
  top: -1px;
  left: 0;
  border: 1px solid #C5C5C5;
  background: #FAFAFA;
  border-radius: 50%;
}
.checkout-step .product-options-list-item-options .product-options-list-item-option.check.payment span,
.checkout-step .product-options-list-item-options .product-options-list-item-option.check.delivery span {
  position: relative;
  padding-left: 27px;
}
.checkout-step .product-options-list-item-options .product-options-list-item-option.check.payment span::before,
.checkout-step .product-options-list-item-options .product-options-list-item-option.check.delivery span::before {
  border: 1px solid #006AB8;
  background: #006AB8;
}
.checkout-step .product-options-list-item-options .product-options-list-item-option.check.payment span::after,
.checkout-step .product-options-list-item-options .product-options-list-item-option.check.delivery span::after {
  display: block;
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  top: 6px;
  left: 7px;
  border-radius: 50%;
  background: white;
}
.checkout-step .w-50 .product-options-list-item-options {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.checkout-step .w-50 .product-options-list-item-options .product-options-list-item-option {
  flex: 1 50%;
  max-width: 50%;
  margin-right: 0;
}
.checkout-step .form-checkout {
  flex: 1 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 60px 0;
}
.checkout-step .form-checkout .form-checkout-left {
  flex: 1 37%;
  max-width: 37%;
}
.checkout-step .form-checkout .form-checkout-right {
  flex: 1 58%;
  max-width: 58%;
  margin-left: 5%;
}
.checkout-step .form-checkout .form-errors {
  flex: 1 100%;
  max-width: 100%;
}
.checkout-step .form-checkout .form-errors .form-errors-item {
  margin: 0 0 15px;
  padding: 8px 12px;
  background: #E9383E;
  color: white;
}
.checkout-step .form-checkout .form-checkout-field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 15px 20px;
  border: 1px solid #E5E5E5;
  background: #FAFAFA;
}
.checkout-step .form-checkout .form-checkout-field:focus {
  background: none;
}
.checkout-step .form-checkout textarea.form-checkout-field {
  height: 213px;
}
.checkout-step .form-checkout-buttons {
  flex: 1 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.checkout-step .form-checkout-buttons .left,
.checkout-step .form-checkout-buttons .right {
  flex: 1 50%;
  max-width: 50%;
}
.checkout-step .form-checkout-buttons .right {
  text-align: right;
}
.checkout-step .form-checkout-buttons .btn-outline {
  height: 66px;
  line-height: 66px;
  border: 2px solid #006AB8;
  color: #2F2F2B;
}
.checkout-step .order-info {
  padding: 30px;
  border: 1px solid #E5E5E5;
  background: #F4F4F4;
}
.checkout-step .order-info .order-info-heading {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 26px;
  line-height: 116%;
}
.checkout-step .order-info .order-info-total .col-4,
.checkout-step .order-info .order-info-description-row .col-4 {
  text-align: right;
}
.checkout-step .order-info .order-info-description-row {
  width: 100%;
  margin-bottom: 25px;
}
.checkout-step .order-info .order-info-description-row .cart-body-desc{
  width: 100%;
}
.checkout-step .order-info .order-info-description-row .cart-body-accessories,
.checkout-step .order-info .order-info-description-row a{
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  color: #2F2F2B;
}
.checkout-step .order-info .order-info-description-row .cart-body-accessories{
  font-size: 14px;
}
.checkout-step .order-info .order-info-description-row a{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.checkout-step .order-info .order-info-description-row a span{
  text-align: right;
}
.checkout-step .order-info .order-info-description-row ul{
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0;
  padding-left: 0;
  font-size: 13px;
}
.checkout-step .order-info .order-info-description-row ul li{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.checkout-step .order-info .order-info-total {
  padding: 15px 0;
  border-top: 1px solid #E5E5E5;
  font-size: 18px;
  font-weight: 500;
}
.review-page .col-6 {
  flex: 1 48.5%;
  max-width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.review-page .col-6:nth-of-type(2n + 2) {
  margin-right: 0;
}
.review-page .review-item {
  padding: 30px;
  background: #F4F4F4;
}
.review-page .review-item .review-heading {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  margin-bottom: 25px;
}
.review-page .review-item .review-heading .review-image {
  flex: 1 80px;
  max-width: 80px;
  height: 80px;
  margin-right: 30px;
  border-radius: 50%;
}
.review-page .review-item .review-heading .review-name {
  font-size: 20px;
  line-height: 116%;
}
.review-page .review-item .review-heading .review-title {
  margin-top: 10px;
  font-size: 14px;
  line-height: 116%;
  color: #8D8D8D;
}
.news-page .button-group {
  margin-bottom: 35px;
}
.news-page .button-group a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  border: none;
  background: #EDEDED;
  text-decoration: none;
  cursor: pointer;
  color: #2F2F2B;
}
.news-page .button-group a.active {
  background: #006AB8;
  color: white;
}
.news-page .news-block {
  flex: 1 31.3333%;
  max-width: 33.3333%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.news-page .news-block:nth-of-type(3n + 3) {
  margin-right: 0;
}
.news-page .news-block .news-block-heading {
  font-size: 22px;
  line-height: 116%;
}
.news-page .news-block .news-block-desc {
  margin: 12px 0 20px;
}
.news-page .news-block .news-block-desc p {
  margin: 0;
}
.news-page .news-block .news-block-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  line-height: 116%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #006AB8;
}
.news-show .col-3 {
  flex: 1 22%;
  max-width: 22%;
  margin-left: 3%;
}
.news-show .subheading {
  margin-bottom: 25px;
  font-weight: normal;
  font-size: 22px;
  line-height: 116%;
}
.news-show .content-block {
  margin-bottom: 60px;
}
.news-show .content-block img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.news-show .news-block {
  flex: 1 100%;
  max-width: 100%;
  margin-right: 3%;
  margin-bottom: 3%;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
}
.news-show .news-block .news-block-heading {
  font-size: 18px;
  line-height: 116%;
}
.news-show .news-block .news-block-desc {
  margin: 12px 0 20px;
}
.news-show .news-block .news-block-desc p {
  margin: 0;
}
.news-show .news-block .news-block-link {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 116%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #006AB8;
}
.promotions-page {
  margin-bottom: 60px;
}
.promotions-page .promotion-block {
  flex: 1 49%;
  max-width: 49%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-right: 2%;
  margin-bottom: 30px;
}
.promotions-page .promotion-block:nth-of-type(even) {
  margin-right: 0;
}
.promotions-page .promotion-block .promotion-block-img,
.promotions-page .promotion-block .promotion-block-info {
  flex: 1 50%;
  max-width: 50%;
}
.promotions-page .promotion-block .promotion-block-info .promotion-block-info-container {
  padding: 40px;
  color: white;
}
.promotions-page .promotion-block .promotion-block-info .promotion-block-info-container .promotion-block-info-container-heading {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 26px;
  line-height: 116%;
}
.promotions-page .promotion-block .promotion-block-info .promotion-block-info-container .promotion-block-info-container-desc {
  margin-bottom: 45px;
  font-size: 14px;
  line-height: 120%;
}
.promotions-page .promotion-block .promotion-block-info .promotion-block-info-container .promotion-block-info-container-link {
  height: 46px;
  line-height: 46px;
  border: 1px solid white;
  background: none;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
}
.promotions-show .content-block {
  margin-bottom: 60px;
}
.promotions-show .content-block img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.instalment-page {
  padding: 60px 0;
  background: #F4F4F4;
}
.instalment-page.rules {
  background: white;
}
.instalment-page.rules .col-4 {
  flex: 1 30%;
  max-width: 30%;
  margin-right: 5%;
  font-size: 18px;
  line-height: 152%;
}
.instalment-page.rules .col-4:nth-of-type(3n + 3) {
  margin-right: 0;
}
.instalment-page .instalment-img {
  display: block;
  width: auto;
  max-width: 90%;
}
.instalment-page .instalment-block-item-heading {
  margin: 50px 0 30px;
  font-weight: 500;
  font-size: 26px;
  line-height: 116%;
}
.instalment-page .instalment-block-item-heading:first-child {
  margin: 20px 0 30px;
}
.instalment-page .instalment-block-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.instalment-page .instalment-block-container .instalment-block-item {
  flex: 1 48%;
  max-width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  text-align: center;
}
.instalment-page .instalment-block-container .instalment-block-item:nth-of-type(even) {
  margin-right: 0;
}
.instalment-page .instalment-block-container .instalment-block-item .instalment-block-item-img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.instalment-page .instalment-block-container .instalment-block-item .instalment-block-item-desc {
  font-weight: 700;
  font-size: 40px;
  line-height: 116%;
  text-transform: uppercase;
}
.instalment-page .instalment-block-container .instalment-block-item .instalment-block-item-desc-small {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.contacts header .addresses {
  margin-bottom: 0;
}
.contacts .addresses {
  margin-bottom: 60px;
}
.claim .form-consult,
.pages\.show .page-show .form-consult {
  max-width: 30%;
  margin-top: 40px;
}
.claim .form-consult{
  max-width: 60%;
  margin-bottom: 80px;
}
.claim .form-consult .form-consult-heading,
.pages\.show .page-show .form-consult .form-consult-heading {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 26px;
  line-height: 116%;
}
.claim .form-consult .form-field,
.pages\.show .page-show .form-consult .form-field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 15px 20px;
  border: 1px solid #E5E5E5;
  background: #FAFAFA;
}
.claim .form-consult .form-field:focus,
.pages\.show .page-show .form-consult .form-field:focus {
  background: none;
}
.pages\.show .work-steps {
  margin: 0 0 80px;
}
.promotions\.show .form-consult,
.instalment .form-consult {
  max-width: 30%;
  margin-bottom: 50px;
}
.promotions\.show .form-consult .form-consult-heading,
.instalment .form-consult .form-consult-heading {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 26px;
  line-height: 116%;
}
.promotions\.show .form-consult .form-field,
.instalment .form-consult .form-field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 15px 20px;
  border: 1px solid #E5E5E5;
  background: #FAFAFA;
}
.promotions\.show .form-consult .form-field:focus,
.instalment .form-consult .form-field:focus {
  background: none;
}
.about .work-steps {
  margin: 0 0 45px;
}
.about .talk-about {
  padding-top: 60px;
  background: #006AB8;
}
.about .talk-about .col-3 {
  flex: 1 23.5%;
  max-width: 23.5%;
  margin-right: 2%;
  margin-bottom: 40px;
  text-align: center;
  color: white;
}
.about .talk-about .col-3:nth-of-type(4n + 4) {
  margin-right: 0;
}
.about .talk-about .talk-about-icon img {
  display: inline-block;
  width: auto;
  max-width: 80%;
  height: auto;
}
.about .talk-about .talk-about-heading {
  margin: 10px 0 20px;
  font-weight: bold;
  font-size: 40px;
  line-height: 116%;
}
.about .talk-about .talk-about-heading span {
  display: block;
  text-transform: uppercase;
  line-height: 0.8;
  font-size: 16px;
}
.about .talk-about .talk-about-desc {
  padding: 0 10%;
  line-height: 140%;
}
.about .partners {
  padding-top: 45px;
  background: #F2F2F2;
}
.about .partners .heading {
  margin-bottom: 45px;
  font-weight: 500;
  line-height: 116%;
}
.about .partners .row {
  align-items: center;
}
.about .partners .col-3 {
  flex: 1 23.5%;
  max-width: 23.5%;
  margin-right: 2%;
  margin-bottom: 45px;
  color: white;
}
.about .partners .col-3:nth-of-type(4n + 4) {
  margin-right: 0;
}
.about .partners .col-3 img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.about .description {
  padding: 60px 0 120px;
}
.about .description .content {
  min-height: 50px;
  margin-bottom: 0;
  column-count: 2;
  column-gap: 100px;
}
.about .description .content p {
  font-size: 18px;
  line-height: 152%;
}
footer {
  background: #F4F4F4;
}
footer .footer-heading {
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 116%;
}
footer .top-footer {
  background: #006AB8;
  margin-bottom: 50px;
}
footer .top-footer .row {
  height: 120px;
  align-items: center;
}
footer .top-footer .col-2 {
  text-align: right;
}
footer .top-footer .col-2 a {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 28px;
  line-height: 116%;
  text-decoration: none;
  color: white;
}
footer .middle-footer {
  margin-bottom: 55px;
}
footer .middle-footer .col-9 {
  flex: 1 72%;
  max-width: 72%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-left: 3%;
  justify-content: space-between;
}
footer .middle-footer .col-9 .col-menu-footer:last-child {
  flex: 1 22%;
  max-width: 22%;
}
footer .middle-footer .col-9 .col-menu-footer:last-child .footer-heading {
  color: red;
  font-weight: bold;
}
footer .middle-footer .col-9 .col-menu-footer:last-child ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #2F2F2B;
}
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links {
  margin-top: 25px;
}
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a {
  display: inline-block;
  margin-right: 20px;
  text-decoration: none;
  transition: all 0.3s;
}
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a:last-child {
  margin-right: 0;
}
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a img {
  filter: grayscale(100);
}
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a:first-child img,
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a:last-child img {
  opacity: 0.5;
}
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a:nth-of-type(3) img {
  opacity: 0.9;
}
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a:hover img {
  filter: grayscale(0);
}
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a:hover:first-child img,
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a:hover:nth-of-type(3) img,
footer .middle-footer .col-9 .col-menu-footer:last-child .social-media-links a:hover:last-child img {
  opacity: 1;
}
footer .middle-footer .col-9 ul {
  margin: 0;
  padding: 0;
}
footer .middle-footer .col-9 ul li {
  list-style: none;
  margin-bottom: 15px;
}
footer .middle-footer .col-9 ul li:last-child {
  margin-bottom: 0;
}
footer .middle-footer .col-9 ul a {
  font-size: 13px;
  line-height: 116%;
  text-decoration: none;
  color: #686868;
}
footer .middle-footer .col-9 ul a:hover {
  color: #006AB8;
}
footer .middle-footer .address {
  position: relative;
  margin-bottom: 25px;
  padding-left: 25px;
  font-size: 14px;
  line-height: 116%;
}
footer .middle-footer .address:last-child {
  margin-bottom: 0;
}
footer .middle-footer .address svg {
  position: absolute;
  top: 0;
  left: 0;
}
footer .middle-footer .address div {
  margin-bottom: 6px;
}
footer .middle-footer .address a {
  text-decoration: none;
  color: #2F2F2B;
}
footer .middle-footer .address a:hover {
  color: #006AB8;
}
footer .bottom-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  line-height: 116%;
  color: #888888;
}
footer .bottom-footer .row {
  height: 73px;
  align-items: center;
}
footer .bottom-footer .col-3 {
  text-align: right;
}
.overlay-modal-form {
  width: 100%;
  height: 100vh;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
}
.overlay-modal-form.open {
  display: flex;
  overflow-y: auto;
}
.overlay-modal-form .modal-form {
  flex: 1 30%;
  max-width: 400px;
  margin: 40px auto;
  position: relative;
  padding: 40px;
  background: white;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.7);
}
.overlay-modal-form .modal-form .modal-form-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #2F2F2B;
  border-bottom: 1px solid #2F2F2B;
  line-height: 40px;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
}
.overlay-modal-form .modal-form form .modal-form-heading {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 26px;
  line-height: 116%;
}
.overlay-modal-form .modal-form form .form-field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 15px 20px;
  border: 1px solid #E5E5E5;
  background: #FAFAFA;
}
.overlay-modal-form .modal-form form .form-field:focus {
  background: none;
}
@media (max-width: 1600px) {
  body,
  html,
  button,
  input,
  textarea,
  select {
    font-size: 14px;
  }
  .container {
    width: 100%;
    max-width: 94%;
    margin: 0 auto;
  }
  header .logo span.logo-words {
    line-height: 32px;
    font-size: 37px;
  }
  header .logo span.desc {
    margin-top: 10px;
    font-size: 10px;
  }
  header .addresses div span {
    margin-left: 0;
    font-size: 12px;
  }
  header .addresses div svg {
    top: 2px;
    height: 12px;
  }
  header .phone a {
    font-size: 18px;
  }
  .main-menu .menu li:first-child {
    flex: 1 155px;
    max-width: 155px;
  }
  .main-menu .menu li a {
    font-size: 13px;
  }
  .btn-default {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
  }
  .top-footer .col-10,
  .top-footer .col-2 {
    flex: 1 50%;
    max-width: 50%;
  }
  .product .product-order .product-order-total .product-order-total-desc,
  .product .product-order .product-order-total .product-order-total-price {
    font-size: 20px;
  }
  .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter {
    flex: 1 14%;
    max-width: 16%;
    padding: 3px 0;
  }
  .product .product-order .product-order-list .product-order-list-item .product-order-list-item-price {
    flex: 1 30%;
    max-width: 30%;
  }
  .product .product-order .product-order-list .product-order-list-item .product-order-list-item-name {
    flex: 1 54%;
    max-width: 54%;
  }
  .product .product-order .product-order-list .product-order-list-item .product-order-list-item-name,
  .product .product-order .product-order-list .product-order-list-item .product-order-list-item-price {
    font-size: 16px;
  }
  .product .product-options-list .product-options-list-item.complex .product-options-list-item-option .quantity-counter {
    display: none;
    padding: 3px 0;
  }
  .product .product-options-list .product-options-list-item.complex .product-options-list-item-option .quantity-counter span.minus::before {
    width: 10px;
    top: 7px;
    left: 13px;
  }
  .catalog .filter-form .filter-form-block .filter-form-inputs.colors label {
    margin-right: 14px;
  }
  .heading,
  .heading-page h1,
  .home-text .desc h1,
  .news-page .news-block .news-block-heading,
  .home-news .news-block .news-block-heading {
    font-size: 26px;
  }
  .home-text a svg {
    top: 200px;
    left: 43%;
  }
  .home-text .desc p {
    font-size: 16px;
  }
  .work-steps .col-3 .item .item-desc {
    font-size: 16px;
  }
  .slick-next,
  .slick-prev {
    top: 46%;
  }
  .slider .slick-prev {
    left: 20px;
  }
  .slider .slick-next {
    right: 20px;
  }
  .category-links .col-3 a {
    font-size: 22px;
  }
  .work-steps .col-3 .item .item-heading span {
    margin-right: 10px;
    font-size: 40px;
  }
  .work-steps .col-3 .item .item-heading svg {
    height: 35px;
  }
  .catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-left {
    flex: 1 40%;
    max-width: 40%;
  }
  .catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right {
    flex: 1 60%;
    min-height: 0;
    max-width: 60%;
    padding: 15px 0;
  }
  .catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right .catalog-top-link-item-right-info {
    padding: 0 15px;
  }
  .catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right .catalog-top-link-item-right-info .catalog-top-link-item-right-info-title {
    font-size: 16px;
  }
  .catalog .catalog-top-link .catalog-top-link-item .catalog-top-link-item-right .catalog-top-link-item-right-info .catalog-top-link-item-right-info-desc {
    font-size: 14px;
  }
}
@media (max-width: 1500px) {
  .main-menu .menu-col {
    flex: 1 90%;
    max-width: 90%;
  }
  .main-menu .search-col {
    flex: 1 10%;
    max-width: 10%;
  }
  .main-menu .search-col .form-search {
    position: absolute;
    top: -25px;
    right: 0;
  }
  .main-menu .search-col .form-search input {
    position: absolute;
    right: 0;
    width: 0;
    padding: 0;
  }
  .main-menu .search-col .form-search:hover input {
    width: 450px;
    padding: 0 60px 0 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  }
  .main-menu .menu li:first-child {
    flex: 1;
    max-width: 200px;
  }
  .main-menu .menu li:nth-of-type(2),
  .main-menu .menu li:last-child {
    flex: 1;
    max-width: 100%;
  }
  .category-links .col-3.arch a::after,
  .category-links .col-3.arch a::before {
    left: 102px;
  }
  .category-links .col-3.discount a::after,
  .category-links .col-3.discount a::before {
    left: 107px;
  }
  .category-links .col-3.interior-doors a::after,
  .category-links .col-3.interior-doors a::before {
    left: 107px;
  }
  .category-links .col-3.entrance-doors a::after,
  .category-links .col-3.entrance-doors a::before {
    left: 110px;
  }
  .instalment-page svg {
    height: 100px;
  }
  .instalment-page .instalment-block-item-heading {
    font-size: 22px;
  }
  .instalment-page .instalment-block-container .instalment-block-item .instalment-block-item-desc {
    font-size: 22px;
  }
}
@media (max-width: 1360px) {
  .main-menu .hidden-menu .hidden-menu-item-container {
    padding: 40px;
  }
  .slider .main-slider-item .main-slider-item-heading,
  .heading,
  .heading-page h1,
  .home-text .desc h1,
  .news-page .news-block .news-block-heading,
  .home-news .news-block .news-block-heading {
    font-size: 22px;
  }
  .category-links .col-3.arch a::after,
  .category-links .col-3.arch a::before {
    left: 91px;
  }
  .category-links .col-3.discount a::after,
  .category-links .col-3.discount a::before {
    left: 91px;
  }
  .category-links .col-3.interior-doors a::after,
  .category-links .col-3.interior-doors a::before {
    left: 91px;
  }
  .category-links .col-3.entrance-doors a::after,
  .category-links .col-3.entrance-doors a::before {
    left: 95px;
  }
  .home-text a svg {
    top: 160px;
    left: 41%;
  }
  .work-steps .col-3 .item .item-heading span {
    margin-right: 0;
    font-size: 35px;
  }
  .work-steps .col-3 .item .item-desc {
    font-size: 14px;
  }
  .addresses .col-4 {
    font-size: 14px;
  }
  .catalog\.product .product .product-order .product-order-buttons {
    text-align: left;
  }
  .catalog\.product .product .product-order .product-order-buttons .btn-outline {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 25px 0 0;
    padding: 0;
    text-align: left;
  }
  .catalog\.product .product .product-order .product-order-buttons .btn-add-favorite {
    font-size: 14px;
  }
  .catalog\.product .product .product-order .product-order-total .product-order-total-price,
  .catalog\.product .product .product-order .product-order-total .product-order-total-desc {
    font-size: 20px;
  }
}
@media (max-width: 1300px) {
  header .top-menu ul li {
    margin-right: 20px;
  }
}
@media (max-width: 1240px) {
  header .top-menu {
    display: none;
  }
  .category-links .col-3.arch a::after,
  .category-links .col-3.arch a::before {
    left: 76px;
  }
  .category-links .col-3.discount a::after,
  .category-links .col-3.discount a::before {
    left: 76px;
  }
  .category-links .col-3.interior-doors a::after,
  .category-links .col-3.interior-doors a::before {
    left: 76px;
  }
  .category-links .col-3.entrance-doors a::after,
  .category-links .col-3.entrance-doors a::before {
    left: 80px;
  }
  .catalog\.show .catalog .filter-heading {
    font-size: 16px;
  }
  .catalog\.show .catalog .col-2 {
    flex: 1 25%;
    max-width: 25%;
    margin-left: 0;
  }
  .catalog\.show .catalog .col-10 {
    flex: 1 72%;
    max-width: 72%;
    margin-left: 3%;
  }
  .catalog\.show .catalog .col-10 .catalog-top-link {
    display: none;
  }
  .favorites-page .product-list .product-list-item,
  .product-list .product-list-item {
    flex: 1 24%;
    max-width: 23.1%;
  }
  .favorites-page .product-list .product-list-item:nth-of-type(5n + 5),
  .product-list .product-list-item:nth-of-type(5n + 5) {
    margin-right: 2.5%;
  }
  .favorites-page .product-list .product-list-item:nth-of-type(4n + 4),
  .product-list .product-list-item:nth-of-type(4n + 4) {
    margin-right: 0;
  }
}
@media (max-width: 1170px) {
  header {
    padding: 20px 0;
  }
  header .logo {
    flex: 1 160px;
    max-width: 160px;
  }
  header .logo span.logo-words {
    line-height: 25px;
    font-size: 28px;
  }
  header .logo span.desc {
    margin-top: 10px;
    font-size: 8px;
    width: 155px;
  }
  header .addresses svg {
    margin-right: 5px;
  }
  header .addresses div span {
    font-size: 11px;
  }
  header .addresses div:first-child {
    margin-bottom: 0;
  }
  header .buttons-group a.cart-link .price {
    display: none;
  }
  header .buttons-group a.cart-link svg {
    height: 30px;
  }
  header .buttons-group a.favorites-link svg {
    height: 28px;
  }
  .heading-page {
    margin-bottom: 35px;
  }
  .main-menu .menu-col {
    flex: 1 65%;
    max-width: 65%;
  }
  .main-menu .search-col {
    flex: 1 35%;
    max-width: 35%;
  }
  .main-menu .search-col .form-search {
    position: relative;
    top: 0;
    right: 0;
  }
  .main-menu .search-col .form-search input {
    width: 100%;
    position: relative;
    right: 0;
    padding: 0 60px 0 20px;
  }
  .main-menu .search-col .form-search:hover input {
    width: 100%;
    padding: 0 60px 0 20px;
    box-shadow: none;
  }
  .main-menu .menu li {
    display: none;
  }
  .main-menu .menu li:first-child {
    display: block;
  }
  .main-menu .hidden-menu .hidden-menu-item-container {
    padding: 25px 25px 0;
  }
  .main-menu .hidden-menu .hidden-menu-item-container:last-child {
    padding-bottom: 40px;
  }
  .main-menu .hidden-menu .hidden-menu-item-container .hidden-menu-item-heading {
    margin-bottom: 15px;
  }
  .main-menu .hidden-menu .hidden-menu-item-container ul {
    columns: 1;
  }
  .main-menu .hidden-menu .hidden-menu-item-container ul li:last-child {
    margin-bottom: 0;
  }
  .slider .main-slider-item {
    padding: 45px;
  }
  .slider .main-slider-item .main-slider-item-desc {
    font-size: 14px;
  }
  .category-links .col-3.arch a::after,
  .category-links .col-3.arch a::before {
    left: 66px;
  }
  .category-links .col-3.discount a::after,
  .category-links .col-3.discount a::before {
    left: 66px;
  }
  .category-links .col-3.interior-doors a::after,
  .category-links .col-3.interior-doors a::before {
    left: 66px;
  }
  .category-links .col-3.entrance-doors a::after,
  .category-links .col-3.entrance-doors a::before {
    left: 67px;
  }
  .category-links .col-3 a {
    font-size: 18px;
  }
  .home-text a svg {
    top: 42%;
    left: 43%;
  }
  .home-text .col-6 {
    flex: 1 100%;
    max-width: 100%;
  }
  .home-text .col-6:last-child {
    margin-top: 30px;
  }
  .catalog\.product .product .col-3 {
    flex: 1 35%;
    max-width: 35%;
    margin-right: 3%;
    order: 1;
  }
  .catalog\.product .product .col-5 {
    flex: 1 100%;
    max-width: 100%;
    margin: 30px 0 0;
    order: 3;
  }
  .catalog\.product .product .col-4 {
    flex: 1 62%;
    max-width: 62%;
    order: 2;
  }
  .catalog\.product .product .parameters-table .col-3 {
    order: 1;
  }
  .catalog\.product .product .parameters-table .col-9 {
    flex: 1 69%;
    max-width: 69%;
    order: 2;
  }
  .catalog\.product .product .tab {
    margin-top: 0;
  }
  .checkout-step .subheading {
    margin-bottom: 0;
    font-size: 18px;
  }
  .checkout-step .step-heading {
    font-weight: bold;
  }
  .checkout-step .product-options-list-item-options .product-options-list-item-option {
    flex: 1 100%;
    max-width: 100%;
  }
  .checkout-step .form-checkout {
    margin: 30px 0 60px;
  }
  .checkout-step .form-checkout .form-checkout-right,
  .checkout-step .form-checkout .form-checkout-left {
    flex: 1 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .checkout-step .form-checkout .form-checkout-left {
    margin: 30px 0 0;
  }
  .checkout-step .col-8 .row .col-5,
  .checkout-step .col-8 .row .col-7 {
    flex: 1 100%;
    max-width: 100%;
  }
  .checkout-step .col-8 .row .col-5 {
    margin: 20px 0 10px;
  }
  .instalment-page svg {
    height: 100px;
  }
  .instalment-page .instalment-block-item-heading {
    margin: 20px 0;
    font-size: 20px;
  }
  .instalment-page .instalment-block-container .instalment-block-item .instalment-block-item-desc {
    font-size: 22px;
  }
  .instalment-page.rules {
    padding: 30px 0;
  }
  .instalment-page.rules .col-4 {
    font-size: 13px;
  }
  .news-show .content-block {
    margin-bottom: 0;
  }
  .news-show .col-9,
  .news-show .col-3 {
    flex: 1 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .news-show .col-3 {
    margin-top: 35px;
  }
  .product-list .product-list-item {
    height: auto;
  }
  .product-list .product-list-item .product-list-item-inner {
    border: 1px solid #E5E5E5;
    box-shadow: none;
  }
  .product-list .product-list-item .product-list-item-button {
    display: block;
    margin-top: 14px;
  }
  .product-list .product-list-item:hover {
    z-index: 5;
  }
  .product-list .product-list-item:hover .product-list-item-inner {
    border: 1px solid #E5E5E5;
    box-shadow: none;
  }
  footer {
    padding-top: 35px;
  }
  footer .footer-heading {
    margin-bottom: 15px;
  }
  footer .top-footer {
    display: none;
  }
  footer .middle-footer {
    margin-bottom: 30px;
  }
  footer .middle-footer .col-3,
  footer .middle-footer .col-9 {
    flex: 1 100%;
    max-width: 100%;
  }
  footer .middle-footer .col-3 {
    order: 2;
  }
  footer .middle-footer .col-9 {
    order: 1;
    margin: 0 0 30px;
  }
  footer .middle-footer .col-9 ul li {
    list-style: none;
    margin-bottom: 10px;
  }
  footer .middle-footer .col-9 .col-menu-footer {
    flex: 1 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
  footer .middle-footer .col-9 .col-menu-footer:last-child {
    flex: 1 50%;
    max-width: 50%;
    margin-bottom: 0;
  }
  footer .bottom-footer {
    padding-top: 10px;
  }
  footer .bottom-footer .col-9,
  footer .bottom-footer .col-3 {
    flex: 1 100%;
    max-width: 100%;
    text-align: left;
  }
}
@media (max-width: 1050px) {
  .category-links .col-3 {
    flex: 1 50%;
    max-width: 50%;
  }
  .category-links .col-3 a {
    height: 340px;
    padding-top: 35px;
  }
  .category-links .col-3 a span {
    font-size: 16px;
    padding: 0;
  }
  .category-links .col-3 a:hover::after {
    opacity: 1;
  }
  .category-links .col-3 a::before {
    display: none;
  }
  .category-links .col-3 a::after {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    margin: 20px auto 0;
    opacity: 1 !important;
  }
  .category-links .col-3.arch,
  .category-links .col-3.discount {
    border-top: 1px solid #F4F4F4;
  }
  .catalog .catalog .catalog-top-link,
  .catalog\.show .catalog .catalog-top-link {
    display: none;
  }
  .catalog .catalog .filter-form-block .filter-form-block-heading::after,
  .catalog\.show .catalog .filter-form-block .filter-form-block-heading::after {
    display: none;
  }
  .catalog .catalog .filter-form-block .filter-form-inputs,
  .catalog\.show .catalog .filter-form-block .filter-form-inputs {
    height: auto;
    min-height: 50px;
    visibility: visible;
    opacity: 1;
  }
  .catalog .catalog .filter-heading,
  .catalog\.show .catalog .filter-heading {
    position: relative;
    padding: 15px 40px 15px 20px;
    background: #006AB8;
    font-size: 14px;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
  }
  .catalog .catalog .filter-heading::before,
  .catalog\.show .catalog .filter-heading::before {
    display: inline-block;
    content: '';
    width: 24px;
    height: 14px;
    position: absolute;
    top: 15px;
    right: 20px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    transition: all 0.3s;
  }
  .catalog .catalog .filter-heading::after,
  .catalog\.show .catalog .filter-heading::after {
    display: inline-block;
    content: '';
    width: 24px;
    height: 2px;
    position: absolute;
    top: 23px;
    right: 20px;
    background: white;
    transition: all 0.3s;
  }
  .catalog .catalog .filter-heading.open::before,
  .catalog\.show .catalog .filter-heading.open::before {
    top: 21px;
    border-bottom: 2px solid transparent;
    transform: rotate(45deg);
  }
  .catalog .catalog .filter-heading.open::after,
  .catalog\.show .catalog .filter-heading.open::after {
    top: 23px;
    right: 15px;
    transform: rotate(-45deg);
  }
  .catalog .catalog .col-2,
  .catalog\.show .catalog .col-2 {
    flex: 1 100%;
    max-width: 100%;
  }
  .catalog .catalog .col-10,
  .catalog\.show .catalog .col-10 {
    flex: 1 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .catalog .catalog .filter-form,
  .catalog\.show .catalog .filter-form {
    display: none;
  }
  .catalog .catalog .filter-form.open,
  .catalog\.show .catalog .filter-form.open {
    display: block;
  }
  .catalog .catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label,
  .catalog\.show .catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label,
  .catalog .catalog .filter-form .filter-form-block .filter-form-inputs.colors label,
  .catalog\.show .catalog .filter-form .filter-form-block .filter-form-inputs.colors label,
  .catalog .catalog .filter-form .filter-form-block .filter-form-inputs.size label,
  .catalog\.show .catalog .filter-form .filter-form-block .filter-form-inputs.size label {
    display: inline-block;
    margin: 0 15px 15px;
  }
  .catalog .catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label:nth-child(5n + 5),
  .catalog\.show .catalog .filter-form .filter-form-block .filter-form-inputs.manufacturer label:nth-child(5n + 5),
  .catalog .catalog .filter-form .filter-form-block .filter-form-inputs.colors label:nth-child(5n + 5),
  .catalog\.show .catalog .filter-form .filter-form-block .filter-form-inputs.colors label:nth-child(5n + 5),
  .catalog .catalog .filter-form .filter-form-block .filter-form-inputs.size label:nth-child(5n + 5),
  .catalog\.show .catalog .filter-form .filter-form-block .filter-form-inputs.size label:nth-child(5n + 5) {
    margin-right: 14px;
  }
  .cart .cart-heading .col-1 {
    flex: 1 12%;
    max-width: 12%;
  }
  .cart .cart-heading .col-7 {
    flex: 1 48%;
    max-width: 48%;
  }
  .cart .cart-body {
    position: relative;
    align-items: center;
  }
  .cart .cart-body .col-1 {
    flex: 1 12%;
    max-width: 12%;
  }
  .cart .cart-body .col-1.col-img {
    flex: 1 8.333333%;
    max-width: 8.333333%;
  }
  .cart .cart-body .col-1.col-del {
    position: absolute;
    top: 15px;
    right: 0;
  }
  .cart .cart-body .col-6 {
    flex: 1 40%;
    max-width: 40%;
  }
  .cart .cart-body .cart-body-quantity-counter {
    flex: 1 80%;
    max-width: 80%;
  }
  .cart .cart-body .cart-body-price,
  .cart .cart-body .cart-body-name,
  .cart .cart-body .cart-body-total-price {
    font-size: 16px;
  }
  .instalment-page .instalment-block-item-heading {
    text-align: center;
  }
  .instalment-page .instalment-img {
    margin: 0 auto;
  }
  .instalment-page .col-6 {
    flex: 1 100%;
    max-width: 100%;
  }
  .instalment-page .col-6:first-child {
    order: 2;
  }
  .instalment-page .col-6:nth-of-type(2) {
    order: 1;
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 92%;
  }
  .main-menu .menu-col {
    flex: 1 55%;
    max-width: 55%;
  }
  .main-menu .search-col {
    flex: 1 45%;
    max-width: 45%;
  }
  .main-menu .menu li {
    display: none;
  }
  .main-menu .menu li:first-child {
    display: block;
    max-width: 160px;
  }
  .main-menu .hidden-menu .hidden-menu-item-container {
    padding: 25px 25px 0;
  }
  .main-menu .hidden-menu .hidden-menu-item-container:last-child {
    padding-bottom: 40px;
  }
  .main-menu .hidden-menu .hidden-menu-item-container .hidden-menu-item-heading {
    margin-bottom: 15px;
  }
  .main-menu .hidden-menu .hidden-menu-item-container ul {
    columns: 1;
  }
  .main-menu .hidden-menu .hidden-menu-item-container ul li:last-child {
    margin-bottom: 0;
  }
  .category-links .col-3.arch a::after,
  .category-links .col-3.arch a::before {
    left: 66px;
  }
  .category-links .col-3.discount a::after,
  .category-links .col-3.discount a::before {
    left: 66px;
  }
  .category-links .col-3.interior-doors a::after,
  .category-links .col-3.interior-doors a::before {
    left: 66px;
  }
  .category-links .col-3.entrance-doors a::after,
  .category-links .col-3.entrance-doors a::before {
    left: 67px;
  }
  .work-steps {
    margin: 40px 0;
  }
  .work-steps .col-3 {
    flex: 1 49%;
    max-width: 49%;
    margin-right: 2%;
    margin-bottom: 25px;
  }
  .work-steps .col-3:nth-of-type(2n + 2) {
    margin-right: 0;
  }
  .work-steps .col-3:nth-of-type(4n + 4) {
    margin-right: 0;
  }
  .addresses .img-address {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .addresses .col-4,
  .addresses .col-8 {
    flex: 1 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .addresses .col-8 {
    height: 300px;
  }
  .home-text {
    margin: 40px 0;
  }
  .pages\.show .page-show .form-consult .form-consult-heading {
    font-size: 22px;
  }
}
@media (max-width: 800px) {
  .checkout-step .subheading {
    display: none;
  }
  .checkout-step .form-checkout {
    margin: 20px 0 50px;
  }
  .checkout-step .form-checkout .subheading {
    display: block;
    font-size: 14px;
    font-weight: bold;
  }
  .checkout-step .col-4,
  .checkout-step .col-8 {
    flex: 1 100%;
    max-width: 100%;
  }
  .checkout-step .col-4 {
    order: 1;
    margin: 0 0 30px;
  }
  .checkout-step .col-8 {
    order: 2;
  }
  .checkout-step .order-info {
    padding: 30px 30px 0;
  }
  .checkout-step .order-info .order-info-heading {
    font-size: 20px;
  }
  .checkout-step .order-info .col-4 {
    flex: 1 33.33333333%;
    max-width: 33.33333333%;
    order: 2;
    margin: 0;
  }
  .checkout-step .order-info .col-8 {
    flex: 1 66.66666667%;
    max-width: 66.66666667%;
    order: 1;
  }
  .promotions\.show .form-consult,
  .instalment .form-consult,
  .claim .page-show .form-consult,
  .pages\.show .page-show .form-consult {
    max-width: 100%;
  }
  .promotions\.show .form-consult,
  .claim .form-consult,
  .pages\.show .page-show .form-consult {
    margin-top: 40px;
  }
  .instalment-page.rules {
    padding: 30px 0;
  }
  .instalment-page.rules .col-4 {
    flex: 1 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .instalment-page.rules .col-4:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  header .addresses {
    display: none;
  }
  .catalog\.product .product .product-images-slider a {
    padding: 30px;
  }
  .catalog\.product .product .parameters-table {
    margin-top: 20px;
    font-size: 13px;
  }
  .catalog\.product .product .parameters-table .parameters-table-row {
    padding: 0 15px;
  }
  .catalog\.product .product .parameters-table .col-9 {
    flex: 1 57%;
    max-width: 55%;
  }
  .catalog\.product .product .parameters-table .col-3 {
    flex: 1 35%;
    max-width: 32%;
  }
  .catalog\.product .product .product-order .product-order-list .product-order-list-item {
    align-items: center;
  }
  .catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-name {
    flex: 1 42%;
    max-width: 42%;
    font-size: 14px;
  }
  .catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-quantity-counter {
    flex: 1 25%;
    max-width: 25%;
  }
  .catalog\.product .product .product-order .product-order-list .product-order-list-item .product-order-list-item-price {
    flex: 1 29%;
    max-width: 31%;
    margin-left: 3%;
  }
  .catalog\.product .product .payment-info {
    display: none;
  }
  .review-page .col-6 {
    flex: 1 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .review-page .col-6:nth-of-type(2n + 2) {
    margin-right: 0;
  }
  .main-menu .hidden-menu .hidden-menu-item.active {
    max-height: 300px;
    overflow-y: scroll;
  }
}
@media (max-width: 650px) {
  body {
    padding-top: 120px;
  }
  header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 15px 0;
  }
  header .phone div:first-child {
    margin-bottom: 0;
  }
  header .phone div:last-child {
    display: none;
  }
  header .phone a span {
    display: none;
  }
  header .phone a svg {
    display: inline-block;
  }
  header .buttons-group a.cart-link {
    margin-left: 100px;
  }
  header .logo {
    flex: 1 120px;
    max-width: 120px;
  }
  header .logo span.desc {
    display: none;
  }
  header .logo span.logo-words {
    line-height: 22px;
    font-size: 25px;
  }
  .content {
    min-height: 80px;
  }
  .main-menu {
    width: 100%;
    position: fixed;
    top: 73px;
    left: 0;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  .main-menu .container {
    max-width: 100%;
  }
  .main-menu .menu-col {
    flex: 1 50%;
    max-width: 50%;
  }
  .main-menu .search-col {
    flex: 1 50%;
    max-width: 50%;
    border-bottom: 1px solid #ddd;
  }
  .main-menu .search-col .form-search {
    height: 45px;
  }
  .main-menu .search-col .form-search input {
    height: 45px;
    padding: 0 45px 0 15px;
    font-size: 14px;
  }
  .main-menu .search-col .form-search button[type="submit"] {
    width: 45px;
  }
  .main-menu .search-col .form-search:hover input {
    padding: 0 45px 0 15px;
  }
  .main-menu .menu li:first-child {
    max-width: 100%;
    height: 45px;
    line-height: 45px;
  }
  .main-menu .menu li:first-child a {
    height: 45px;
  }
  .main-menu .hidden-menu .hidden-menu-item-container ul li {
    margin-bottom: 10px;
  }
  .main-menu .hidden-menu .hidden-menu-item-container:last-child {
    padding-bottom: 0;
  }
  .main-menu .hidden-menu #hiddenMenu1 .col-4 {
    flex: 1 100%;
    max-width: 100%;
  }
  .main-menu .hidden-menu #hiddenMenu1 .col-4:last-child {
    padding-bottom: 25px;
  }
  .slider .main-slider-item .main-slider-item-heading {
    font-size: 18px;
  }
  .slider .main-slider-item .main-slider-item-heading,
  .heading,
  .heading-page h1,
  .home-text .desc h1,
  .news-page .news-block .news-block-heading,
  .home-news .news-block .news-block-heading {
    font-size: 20px;
  }
  .news-page .news-block,
  .home-news .news-block {
    flex: 1 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .catalog\.product .product .product-images-slider a {
    width: 35%;
    margin: 30px auto;
    padding: 0;
  }
  .catalog\.product .product .product-options-list .product-options-list-item.fx-50 {
    flex: 1 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .catalog\.product .product .product-options-list .product-options-list-item.fx-50:last-child {
    margin-top: 20px;
  }
  .catalog\.product .product .product-options-list .product-options-list-item.complex {
    flex: 1 100%;
    max-width: 100%;
    margin-top: 20px;
  }
  .catalog\.product .product .product-options-list .product-options-list-item .product-options-list-item-options {
    columns: 1;
  }
  .catalog\.product .product .col-3 {
    flex: 1 100%;
    max-width: 100%;
    margin-right: 0;
    order: 1;
  }
  .catalog\.product .product .col-5 {
    flex: 1 100%;
    max-width: 100%;
    margin: 30px 0 0;
    order: 2;
  }
  .catalog\.product .product .col-4 {
    flex: 1 100%;
    max-width: 100%;
    order: 3;
    margin-bottom: 30px;
  }
  .favorites-page .product-list .product-list-item,
  .product-list .product-list-item {
    flex: 1 48.5%;
    max-width: 48.5%;
    margin-right: 3%;
  }
  .favorites-page .product-list .product-list-item:nth-of-type(5n + 5),
  .product-list .product-list-item:nth-of-type(5n + 5),
  .favorites-page .product-list .product-list-item:nth-of-type(4n + 4),
  .product-list .product-list-item:nth-of-type(4n + 4) {
    margin-right: 3%;
  }
  .favorites-page .product-list .product-list-item:nth-of-type(2n + 2),
  .product-list .product-list-item:nth-of-type(2n + 2) {
    margin-right: 0;
  }
  .cart .cart-heading {
    font-size: 11px;
  }
  .cart .cart-heading .col-1 {
    flex: 1 20%;
    max-width: 20%;
  }
  .cart .cart-heading .col-7 {
    flex: 1 39%;
    max-width: 39%;
  }
  .cart .cart-body em {
    font-size: 10px;
  }
  .cart .cart-body .cart-body-desc {
    margin-top: 5px;
    font-size: 10px;
  }
  .cart .cart-body .col-1 {
    flex: 1 18%;
    max-width: 18%;
  }
  .cart .cart-body .col-1.col-img {
    flex: 1 7.333333%;
    max-width: 7.333333%;
  }
  .cart .cart-body .col-1.col-del {
    position: absolute;
    top: 15px;
    right: 0;
  }
  .cart .cart-body .col-6 {
    flex: 1 32%;
    max-width: 32%;
  }
  .cart .cart-body .cart-body-price,
  .cart .cart-body .cart-body-name,
  .cart .cart-body .cart-body-total-price {
    font-size: 14px;
  }
  .btn-default {
    padding: 0 30px;
  }
  .btn-default.btn-middle {
    padding: 0 15px;
  }
  .btn-default.btn-big {
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
  }
  .checkout-step .form-checkout-buttons .btn-outline {
    height: 46px;
    line-height: 46px;
  }
}
@media (max-width: 580px) {
  .claim .form-consult{
    max-width: 100%;
  }
  header .buttons-group a.cart-link {
    margin-left: 95px;
  }
  .home-text a svg {
    top: 37%;
    left: 40%;
  }
}
@media (max-width: 500px) {
  header .container {
    max-width: 96%;
  }
  header .buttons-group a.cart-link {
    margin-left: 70px;
  }
  .work-steps .col-3 {
    flex: 1 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .checkout-step .w-50 .product-options-list-item-options .product-options-list-item-option {
    flex: 1 100%;
    max-width: 100%;
  }
  .checkout-step .form-checkout-buttons .right,
  .checkout-step .form-checkout-buttons .left {
    flex: 1 100%;
    max-width: 100%;
    text-align: left;
  }
  .checkout-step .form-checkout-buttons .left {
    margin-bottom: 20px;
  }
  footer .container {
    max-width: 83%;
  }
  footer .middle-footer {
    margin-bottom: 30px;
  }
  footer .middle-footer .col-9 .col-menu-footer {
    flex: 1 100%;
    max-width: 100%;
  }
  footer .middle-footer .col-9 .col-menu-footer:last-child {
    flex: 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 440px) {
  header .buttons-group a.cart-link {
    margin-left: 50px;
  }
  .main-menu .container {
    max-width: 100%;
  }
  .main-menu .menu li:first-child {
    max-width: 100%;
    height: 45px;
    line-height: 45px;
  }
  .main-menu .menu li:first-child a {
    height: 45px;
  }
  .category-links {
    border-top: none;
  }
  .category-links .col-3 {
    flex: 1 100%;
    max-width: 100%;
    border-top: 1px solid #F4F4F4;
    border-right: 1px solid #F4F4F4;
  }
  .home-text {
    margin: 40px 0;
  }
  .home-text .desc {
    width: 100%;
  }
  .favorites-page .product-list .product-list-item .product-list-item-link-img,
  .product-list .product-list-item .product-list-item-link-img {
    min-height: 250px;
  }
  .slider .main-slider-item .main-slider-item-heading,
  .heading,
  .heading-page h1,
  .home-text .desc h1,
  .home-news .news-block .news-block-heading {
    font-size: 20px;
  }
  .catalog\.product .product .parameters-table {
    font-size: 12px;
  }
  .catalog\.product .product .parameters-table .parameters-table-row {
    padding: 0 15px;
  }
  .catalog\.product .product .parameters-table .col-9 {
    flex: 1 55%;
    max-width: 52%;
  }
  .catalog\.product .product .parameters-table .col-3 {
    flex: 1 35%;
    max-width: 32%;
  }
  .instalment-page .instalment-block-container .instalment-block-item {
    flex: 1 100%;
    max-width: 100%;
    margin: 0 0 20px;
  }
  .instalment-page .instalment-block-container .instalment-block-item .instalment-block-item-desc {
    font-size: 16px;
  }
}
@media (max-width: 370px) {
  header .buttons-group a.cart-link {
    margin-left: 35px;
  }
}
@media (max-width: 355px) {
  header .buttons-group a.cart-link {
    margin-left: 30px;
  }
}


.review-container {
  margin-bottom: 60px;
}
.review-container .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.review-container .review-items {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  column-gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.review-container .review-items .review-item {
  max-width: 100%;
  justify-self: left;
  /* background: #f4f4f4; */
  min-height: 160px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 28px 28px 24px;
  border-radius: 16px;
  min-width: calc(100% - 90px);
}
.review-container .review-items .review-item:first-child {
  margin-left: 17px;
}
.review-container .review-items .review-item:last-child {
  margin-right: 17px;
}
.review-container .review-items .review-item .caption {
  /* padding: 10px; */
}
.review-container .review-items .review-item .caption h3 {
  margin: 0;
}
.review-container .review-items .review-item .caption .review-date {
  margin: 0;
  font-size: 12px;
  line-height: 116%;
  color: #888888;
}
.review-container .review-items .review-item .caption .review-text {
  word-wrap: wrap;
  overflow-wrap: break-word;
}
.catalog\.product .form-consult {
  max-width: 60%;
  margin-top: 40px;
}
@media (max-width: 800px) {
  .catalog\.product .form-consult {
    max-width: 100%;
  }
}
.catalog\.product .form-consult .form-consult-heading {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 26px;
  line-height: 116%;
}
.catalog\.product .form-consult .form-field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}
.catalog\.product .form-consult .form-field:focus {
  background: none;
}
/*# sourceMappingURL=style.css.map */

