@charset "UTF-8";
body {
    overflow: auto;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
}
body.no-scroll {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.site-content {
    flex: 1 0 auto;
}

.site-footer {
    flex: 0 0 auto;
}

.container {
    padding-left: 0;
    padding-right: 0;
}

.nonunderline {
    text-decoration: none !important;
}

.underline {
    text-decoration: underline !important;
}

.hoverunderline {
    text-decoration: none;
}
.hoverunderline:hover {
    text-decoration: underline;
}

.breadcrumb {
    padding: 10px 0;
    font-size: 12px;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    margin-bottom: 0;
    border-radius: 0;
    background: #fff;
}
.breadcrumb a {
    color: #9a9a9a;
}
.breadcrumb span {
    color: #2a2a2a;
}
.breadcrumb .razdel {
    color: #db281d;
    margin: 0 5px;
    display: inline-block;
}

h1 {
    margin-top: 28px;
    margin-bottom: 23px;
    color: #898989;
    font-size: 32px;
}

h4,
.h4 {
    font-size: 20px;
    margin-top: 0;
}

/* Скрываем реальный чекбокс */
.radio {
    display: none;
}

/* Задаем внешний вид для нашего кастомного чекбокса. Все обязательные свойства прокомментированы, остальные же свойства меняйте по вашему усмотрению */
.radio-custom {
    position: relative;
    /* Обязательно задаем, чтобы мы могли абсолютным образом позиционировать псевдоэлемент внютри нашего кастомного чекбокса */
    width: 13px;
    /* Обязательно задаем ширину */
    height: 13px;
    /* Обязательно задаем высоту */
    border: 1px solid #db271d;
}

/* Кастомный чекбокс и лейбл центрируем по вертикали. Если вам это не требуется, то вы можете убрать свойство vertical-align: middle из данного правила, но свойство display: inline-block обязательно должно быть */
.radio-custom,
.label {
    display: inline-block;
    vertical-align: middle;
}

.radio-custom.inline {
    display: inline-block;
    vertical-align: top;
}

.label.inline {
    display: inline;
}

/* Если реальный чекбокс у нас отмечен, то тогда добавляем данный признак и к нашему кастомному чекбоксу  */
.radio:checked + .radio-custom::before {
    content: "";
    /* Добавляем наш псевдоэлемент */
    display: block;
    /* Делаем его блочным элементом */
    position: absolute;
    /* Позиционируем его абсолютным образом */
    /* Задаем расстояние от верхней, правой, нижней и левой границы */
    top: 3px;
    right: 3px;
    width: 5px;
    height: 5px;
    background-color: #db271d;
}

/* Скрываем реальный чекбокс */
.checkbox {
    display: none;
}

/* Задаем внешний вид для нашего кастомного чекбокса. Все обязательные свойства прокомментированы, остальные же свойства меняйте по вашему усмотрению */
.checkbox-custom {
    position: relative;
    /* Обязательно задаем, чтобы мы могли абсолютным образом позиционировать псевдоэлемент внютри нашего кастомного чекбокса */
    width: 22px;
    /* Обязательно задаем ширину */
    height: 22px;
    /* Обязательно задаем высоту */
    border: 1px solid #dcdcdc;
}

/* Кастомный чекбокс и лейбл центрируем по вертикали. Если вам это не требуется, то вы можете убрать свойство vertical-align: middle из данного правила, но свойство display: inline-block обязательно должно быть */
.checkbox-custom,
.label {
    display: inline-block;
    vertical-align: middle;
}

/* Если реальный чекбокс у нас отмечен, то тогда добавляем данный признак и к нашему кастомному чекбоксу  */
.checkbox:checked + .checkbox-custom::before {
    content: "";
    /* Добавляем наш псевдоэлемент */
    display: block;
    /* Делаем его блочным элементом */
    position: absolute;
    /* Позиционируем его абсолютным образом */
    /* Задаем расстояние от верхней, правой, нижней и левой границы */
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    background: #595959;
}

.not-pad {
    padding: 0;
}

select {
    max-width: 400px;
    width: 100%;
    height: 28px;
    -webkit-appearance: none;
    background: url("../img/select_str.png") no-repeat 100% 0 / auto 100%;
    border: 1px solid #bfbfbf;
    line-height: 1em;
    /* for FF */
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
    /* for IE */
    -ms-appearance: none;
    appearance: none !important;
    outline: none;
    color: #636363;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 30px;
    margin-bottom: 5px;
}

select::-ms-expand {
    display: none;
}

.steps {
    margin-bottom: 50px;
    display: none;
    margin-top: 30px;
}
.steps__item {
    margin-bottom: 3px;
}
.steps__item .main-head {
    background-color: #949494;
    color: #f7f7f7;
    font-family: "OpenSans", sans-serif;
    font-size: 18px;
    padding: 10px 10px;
    cursor: pointer;
}
.steps__item .body {
    padding: 20px 0;
    margin-bottom: 30px;
}
.steps__item .body.close {
    display: none;
}
.steps__item .or {
    margin: 0 10px;
    display: inline-block;
}
.steps.open {
    display: block;
}

.download-basket a {
    color: #db271d;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}
.download-basket a img {
    max-width: 20px;
    max-height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.label {
    color: #3e3e3e;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 14px;
    font-weight: normal;
}

.button-send {
    color: #fff;
    font-family: "OpenSans", sans-serif;
    font-size: 18px;
    background-color: #db271d;
    outline: none;
    height: 50px;
    padding: 0 15px;
    border: none;
}
.button-send:hover {
    background-color: #ca2319;
}
.button-send--order {
    font-size: 24px;
    padding: 0 50px;
}

.all-sum {
    background: #fff;
    border: 1px solid #dedede;
    padding: 30px;
    margin: 20px 0;
    border-radius: 15px;
}
.all-sum__item {
    text-align: center;
    color: #030304;
    font-family: "OpenSans", sans-serif;
    font-size: 30px;
}
.all-sum__item .text {
    display: block;
}
.all-sum__item .numb {
    display: block;
}
.all-sum__item .count {
    font-size: 18px;
}
.all-sum__item .smaller {
    font-size: 20px;
}

.basket-box {
    background-color: #f7f7f7;
}
.basket-box .head {
    background: #fff;
    padding-bottom: 10px;
    color: #504f4b;
}
.basket-box .body {
    padding-bottom: 70px;
    border-top: 1px solid #c2c2c2;
}
.basket-box .promo-box {
    border-top: 1px solid #c2c2c2;
    padding: 20px 0 0;
    margin-top: 20px;
    color: #50504c;
}
.basket-box .promo-box input {
    height: 30px;
    padding-left: 10px;
}
.basket-box .sale-box {
    border-top: 1px solid #c2c2c2;
    padding: 20px 0 0;
    margin-top: 20px;
}
.basket-box .sale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #db271d;
    font-size: 20px;
}
.basket-box .sale__item:first-child {
    text-align: left;
}
.basket-box .sale__item:last-child {
    text-align: right;
}
.basket-box .sale__item .count {
    font-size: 0.7em;
}
.basket-box .element {
    padding: 20px 0;
    border-bottom: 1px solid #c2c2c2;
}
.basket-box .element .delete-box {
    text-align: right;
}
.basket-box .element .price-box {
    margin-top: 20px;
    margin-bottom: 25px;
}
.basket-box .element .name {
    color: #504f4b;
    margin-bottom: 40px;
}
.basket-box .element .art {
    color: #504f4b;
    font-size: 14px;
}
.basket-box .element .image {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    height: 150px;
}
.basket-box .element .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.basket-box .element .count {
    font-size: 24px;
}
.basket-box .element .count span.currency {
    font-size: 0.6em;
}
.basket-box .element .delete-link {
    display: inline-block;
    padding-top: 13px;
    position: relative;
}
.basket-box .element .delete-link span {
    opacity: 0;
    color: #c74341;
    font-size: 14px;
}
.basket-box .element .delete-link:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    display: block;
    width: 25px;
    height: 1px;
    background: grey;
}
.basket-box .element .delete-link:after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    display: block;
    width: 25px;
    height: 1px;
    background: grey;
}
.basket-box .element .delete-link:hover span {
    opacity: 1;
}
.basket-box .element .delete-link:hover:before {
    background: #c74341;
}
.basket-box .element .delete-link:hover:after {
    background: #c74341;
}

.amount_inp {
    display: inline-block;
    width: 34px;
    max-width: 50px;
    color: #50504c;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    text-align: center;
    border: none;
    background: transparent;
}

.but_change {
    width: 34px;
    height: 34px;
    background-color: #eaeaea;
    border: none;
    outline: none;
}

.hint-link a {
    color: #787978;
    font-size: 12px;
    text-decoration: underline;
}

.authorization {
    background-color: #f7f7f7;
    padding: 15px 0;
}
.authorization .inp {
    color: #454444;
    padding-left: 15px;
    font-family: "OpenSans", sans-serif;
    font-size: 16px;
    height: 40px;
}
.authorization .button-send {
    height: 40px;
    padding: 0 50px;
}

.filters {
    margin-top: 29px;
    margin-bottom: 15px;
    text-align: left;
}
.filters__item {
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
}
.filters__item a {
    display: inline-block;
    vertical-align: top;
    color: #8a8989;
    padding: 1px 5px;
    font-size: 16px;
}
.filters__item a:hover {
    color: #fff;
    background-color: #8a8989;
}
.filters__item.active a {
    color: #fff;
    background-color: #dd0601;
}
.filters--sales {
    margin-top: 35px;
}
.filters--sales .filters__item {
    margin-left: 0;
    margin-right: 5px;
    margin-bottom: 7px;
}
.filters--sales .filters__item a {
    padding: 0 7px;
    font-size: 20px;
}
.filters--sales .filters__item a {
    color: #fff;
    background-color: #8a8989;
}
.filters--sales .filters__item:hover a {
    color: #fff;
    background-color: #585858;
}
.filters--sales .filters__item.active a {
    color: #fff;
    background-color: #585858;
}
.filters--page {
    text-align: center;
    margin-top: 2px;
}
.filters--page .filters__item {
    margin-left: 0;
    margin-right: 5px;
    margin-bottom: 11px;
}
.filters--page .filters__item a {
    color: #fff;
    background-color: #8a8989;
}
.filters--page .filters__item:hover a {
    color: #fff;
    background-color: #585858;
}
.filters--page .filters__item.active a {
    color: #fff;
    background-color: #585858;
}
.filters--page--left {
    text-align: left;
}
.filters--page--view {
    margin-top: 9px;
    margin-bottom: 0;
}
.filters--page--view .filters__item a {
    padding: 0 7px;
    font-size: 20px;
}

.top-line {
    background: #f5f5f5;
}

.menu__item {
    display: inline-block;
    vertical-align: top;
}
.menu__item a {
    text-align: center;
    color: #5f5f5f;
    font-size: 14px;
    display: block;
    padding: 10px 0;
    width: 100%;
}
.menu--right-part {
    padding-left: 0;
}
.menu--left-part {
    padding-right: 0;
}
.menu--top {
    font-size: 0;
}
.menu--top .menu__item a {
    padding: 11px 13px 10px 13px;
    transition: all 0.3s ease-in-out;
}
.menu--top .menu__item a:hover {
    background: rgba(0, 0, 0, 0.1);
}
.menu--top .menu__item.active a {
    background: rgba(0, 0, 0, 0.1);
}
.menu--main {
    display: table;
    width: 100%;
    position: relative;
    z-index: 10;
}
.menu--main .menu__item {
    position: relative;
    background-color: #6f6f6f;
    transition: all 0.3s ease-in-out;
}
.menu--main .menu__item.active > a {
    background-color: #dc281e;
}
.menu--main .menu__item a {
    color: #fff;
    font-size: 18px;
    padding: 17px 0 17px 0;
    text-align: center;
}
.menu--main .menu__item .menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 100%;
}
.menu--main .menu__item .menu .menu__item {
    display: block;
    position: relative;
}
.menu--main .menu__item:hover {
    background-color: #595959;
}
.menu--main .menu__item:hover > .menu {
    display: block;
}
.menu--main > .menu__item {
    display: table-cell;
}
.menu--main > .menu__item > .menu {
    left: 0;
    top: 100%;
    background-color: transparent;
}
.menu--main > .menu__item > .menu > .menu__item {
    background-color: transparent;
    border-top: 1px solid transparent;
}
.menu--main > .menu__item > .menu > .menu__item span {
    display: inline-block;
    vertical-align: middle;
}
.menu--main > .menu__item > .menu > .menu__item a {
    background-color: #595959;
}
.menu--main > .menu__item > .menu > .menu__item a:hover {
    background-color: #494949;
}
.menu--main > .menu__item > .menu .menu .menu__item a {
    padding-top: 7px;
    padding-bottom: 7px;
    background-color: #494949;
}
.menu--main > .menu__item > .menu .menu .menu__item a:hover {
    background-color: #3c3c3c;
}
.menu--main .menu .menu__item a {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
}
.menu--main .menu .menu__item.with-icon > a {
    line-height: 1.2;
    padding-left: 60px;
    padding-right: 40px;
}
.menu--main .menu .menu__item.with-icon .icon {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 15px;
    width: 40px;
    text-align: center;
    height: 32px;
}
.menu--main .menu .menu__item.with-icon .icon .icon-svg {
    fill: #969697;
}
.menu--main .menu .menu__item.has-child > a {
    position: relative;
}
.menu--main .menu .menu__item.has-child > a:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 25px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/grey_str_right.png") no-repeat 50% 50% / auto 20px;
}
.menu--modal {
    overflow-x: hidden;
    position: relative;
}
.menu--modal .menu__item {
    position: static;
    display: block;
}
.menu--modal .menu__item a {
    text-align: left;
    border-bottom: 1px solid #3b3b3b;
}
.menu--modal > .menu__item a {
    background-color: #6f6f6f;
    padding: 15px;
    display: block;
    color: #fff;
    font-size: 18px;
}
.menu--modal > .menu__item .menu {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
    visibility: hidden;
    transition: all 0.3s ease;
}
.menu--modal > .menu__item .menu .menu__item a {
    font-size: 14px;
}
.menu--modal > .menu__item .menu .menu__item.active > .menu {
    transform: translateX(0);
    visibility: visible;
}
.menu--modal > .menu__item > .menu > .menu__item > a {
    background-color: #595959;
}
.menu--modal > .menu__item > .menu > .menu__item > .menu > .menu__item > a {
    background-color: #444343;
}
.menu--modal > .menu__item.active > .menu {
    transform: translateX(0);
    visibility: visible;
}
.menu--modal > .menu__item a.head {
    padding: 15px;
    display: block;
    color: #fff;
    font-size: 18px !important;
    background-color: #dc281e !important;
    border-bottom: 1px solid #3b3b3b;
    position: relative;
}
.menu--modal > .menu__item a.head:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 20px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/white_str_right.png") no-repeat 0 0 / auto 100%;
}
.menu--modal > .menu__item a.subhead {
    padding: 15px;
    display: block;
    color: #fff;
    background-color: #595959 !important;
    font-size: 16px !important;
    border-bottom: 1px solid #3b3b3b;
    position: relative;
}
.menu--modal > .menu__item a.subhead:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/white_str_down.png") no-repeat 0 0/100% auto;
}
.menu--modal > .menu__item a.back {
    background-color: #fff !important;
    color: #555555;
    font-size: 14px;
    position: relative;
    padding-left: 35px;
}
.menu--modal > .menu__item a.back:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 20px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/black_str_left.png") no-repeat 0 0 / auto 100%;
}
.menu--modal .menu__item.has-child > a {
    position: relative;
}
.menu--modal .menu__item.has-child > a:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 20px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/white_str_right.png") no-repeat 0 0 / auto 100%;
}

.sidebar--prod .menu {
    margin-bottom: 25px;
}
.sidebar--prod .menu .menu__item {
    display: block;
}
.sidebar--prod .menu .menu__item a {
    display: block;
}
.sidebar--prod > .menu {
    background-color: transparent;
}
.sidebar--prod > .menu > .menu__item {
    background-color: transparent;
    border-top: 1px solid transparent;
    display: block;
    position: relative;
}
.sidebar--prod > .menu > .menu__item span {
    display: inline-block;
    vertical-align: middle;
}
.sidebar--prod > .menu > .menu__item a {
    color: #fff;
    font-size: 18px;
    padding: 17px 0 17px 0;
    background-color: #595959;
}
.sidebar--prod > .menu .menu .menu__item a {
    padding-left: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
    background-color: #fff;
    color: #414141;
}
.sidebar--prod > .menu .menu .menu__item:hover a {
    color: #dc281e;
}
.sidebar--prod > .menu .menu .menu__item.active a {
    color: #fff;
    background-color: #dc281e;
}
.sidebar--prod .menu .menu__item a {
    text-align: left;
}
.sidebar--prod .menu .menu__item.with-icon > a {
    position: relative;
    line-height: 1.2;
    padding-left: 60px;
    padding-right: 40px;
}
.sidebar--prod .menu .menu__item.with-icon .icon {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 15px;
    width: 40px;
    text-align: center;
    height: 32px;
}
.sidebar--prod .menu .menu__item.with-icon .icon .icon-svg {
    fill: #969697;
}
.sidebar--prod .menu .menu__item.has-child {
    position: relative;
}
.sidebar--prod .menu .menu__item.has-child .menu {
    display: none;
}
.sidebar--prod .menu .menu__item.has-child .str {
    position: absolute;
    width: 50px;
    height: 50px;
    max-height: 100%;
    right: 0;
    top: 3px;
    background: url("../img/grey_str_right.png") no-repeat 50% 50% / auto 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(90deg);
}
.sidebar--prod .menu .menu__item.has-child.active .menu {
    display: block;
}
.sidebar--prod .menu .menu__item.has-child.active .str {
    transform: rotate(270deg);
}

.range_values {
    margin: 0 -5px;
    font-size: 0;
    margin-bottom: 15px;
}
.range_values label {
    display: inline-block;
    width: 50%;
    box-sizing: border-box;
    padding: 0 5px;
}
.range_values label input {
    width: 100%;
    border: 1px solid #d0d0d0;
    height: 30px;
    color: #353535;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    padding: 0 5px;
}

.ui-slider-horizontal {
    height: 2px;
}

.ui-widget.ui-widget-content {
    border: none;
}

.ui-widget-header {
    background: #dc281e;
}

.ui-widget-content {
    background: #828282;
}

.ui-slider .ui-slider-handle {
    width: 6px;
    height: 17px;
    border-radius: 0;
    background: url("../img/range.png") no-repeat 50% 0 / auto 100% !important;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -6px;
    margin-left: -3px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: none;
    background: #4a4a4a;
}

.filters-prod {
    font-size: 14px;
}
.filters-prod__item {
    margin-bottom: 10px;
    background-color: #ebeaea;
    padding: 20px 20px;
}
.filters-prod__item--clear {
    padding-right: 50px;
    position: relative;
}
.filters-prod__item--clear:after {
    position: absolute;
    content: "";
    width: 25px;
    right: 25px;
    height: 100%;
    top: 0;
    background: url("/frontend/web/images/str_circle.png") no-repeat 0 50%/100%
    auto;
}
.filters-prod h4 {
    font-size: 18px;
    color: #363535;
}
.filters-prod h4 span {
    font-size: 16px;
    color: #464545;
}
.filters-prod .checkbox-custom {
    width: 14px;
    height: 14px;
    border: 1px solid #707070;
}
.filters-prod .checkbox:checked + .checkbox-custom {
    border: 1px solid #dc281e;
}
.filters-prod .checkbox:checked + .checkbox-custom::before {
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    background: #dc281e;
}
.filters-prod .label.inline {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 3px;
}

.required.error {
    border: 1px solid #db271d;
    outline: none;
}

label.error {
    font-size: 10px;
    color: #db271d;
}

.label {
    padding: 0;
}

a.filters-prod__item {
    display: block;
    color: #464545;
}
a.filters-prod__item:hover {
    background-color: #dcdbdb;
}

.search-line {
    padding: 10px 0;
    position: absolute;
    width: 100%;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    z-index: 16;
}
.search-line.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.search-line .search-box {
    height: 53px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.search-line input[type="search"] {
    color: #666565;
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    font-size: 14px;
    font-style: italic;
    border: 1px solid #9a9a9a;
    padding: 0 30px;
    margin: 1px;
    height: 100%;
    outline: none;
    width: calc(100% - 200px);
    float: left;
}
.search-line button {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 19px;
    background-color: #dc281e;
    outline: none;
    border: none;
    padding: 0;
    height: 100%;
    float: left;
    width: 200px;
}
.search-line button:hover {
    background-color: #c3241c;
}

.menu-box {
    position: relative;
    z-index: 15;
}
.menu-box .backgr {
    z-index: 17;
    position: relative;
    background-color: #6f6f6f;
}
.menu-box .search-line.active {
    position: static;
}
.menu-box.fixed {
    position: fixed;
    top: 0;
    width: 100%;
}
.menu-box.fixed .search-line {
    position: absolute;
}
.menu-box .search {
    display: block;
    vertical-align: top;
    text-align: center;
}
.menu-box .search a {
    display: block;
    font-size: 18px;
    padding: 17px 0 17px 0;
    color: #fff;
}
.menu-box .search a .icon {
    width: 22px;
    display: inline-block;
    vertical-align: middle;
}
.menu-box .search a .icon--main {
    display: inline-block;
}
.menu-box .search a .icon--hover {
    display: none;
}
.menu-box .search:hover,
.menu-box .search.focus {
    color: #fff;
    background-color: #595959;
}
.menu-box .search:hover .icon--hover,
.menu-box .search.focus .icon--hover {
    display: inline-block;
}
.menu-box .search:hover .icon--main,
.menu-box .search.focus .icon--main {
    display: none;
}

.header-emulator {
    display: none;
}
.header-emulator.shown {
    display: block;
}

.menu-section {
    position: relative;
}

.language {
    padding-left: 17px;
}
.language__item {
    display: inline-block;
    vertical-align: top;
}
.language__item a {
    padding: 12px 7px 8px 5px;
    color: #8a8989;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}
.language__item a:hover {
    color: #c3241c;
    text-decoration: underline;
}
.language__item a.active {
    color: #c3241c;
}

.img--page {
    max-height: 380px;
    overflow: hidden;
    margin-bottom: 30px;
    text-align: center;
}
.img--page img {
    height: 100%;
    width: auto;
}

.user-block {
    text-align: right;
    font-size: 0;
}
.user-block__item {
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.user-block__item:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 80%;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #cfcfcf;
}
.user-block__item:first-child:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 80%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #cfcfcf;
}
.user-block__item a {
    display: block;
    color: #5f5f5f;
    font-size: 12px;
    background-color: transparent;
    transition: all 0.2s ease;
    padding: 11px 18px 12px 50px;
    position: relative;
}
.user-block__item a .icon {
    width: 22px;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}
.user-block__item a .icon--main {
    display: block;
}
.user-block__item a .icon--hover {
    display: none;
}
.user-block__item a:hover {
    color: #fff;
    background-color: #dc281e;
}
.user-block__item a:hover .icon--hover {
    display: block;
}
.user-block__item a:hover .icon--main {
    display: none;
}
.user-block__item.active a {
    color: #fff;
    background-color: #dc281e;
}
.user-block__item.active a .icon--hover {
    display: block;
}
.user-block__item.active a .icon--main {
    display: none;
}
.user-block--modal {
    background: #f8f7f7;
    border-bottom: 1px solid #3b3b3b;
}
.user-block--modal .user-block__item {
    width: 50%;
    text-align: left;
    position: relative;
}
.user-block--modal .user-block__item a:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 80%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #cfcfcf;
}
.user-block--modal .user-block__item:last-child a:after {
    display: none;
}
.user-block--modal .user-block__item a {
    color: #999;
    padding: 0 10px 0 40px;
    width: 100%;
    font-size: 12px;
    margin: 0;
    height: 40px;
    line-height: 40px;
}
.user-block--modal .user-block__item a span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}
.user-block--modal .user-block__item a .icon {
    left: 10px;
    transform: translateX(0) translateY(-50%);
}
.user-block--modal .user-block__item a:hover {
    color: #ffffff;
}

.st0 {
    fill: #e42518;
}

.st1 {
    fill: transparent;
}

.st2 {
    fill: #010202;
}

.logo {
    max-width: 300px;
    margin: 11px 0 25px;
}
.logo img {
    max-width: 100%;
}

.phones {
    color: #6f6f6f;
    font-size: 23px;
    margin-top: 29px;
}
.phones a {
    color: #6f6f6f;
}

.address {
    color: #6f6f6f;
    margin-top: 21px;
    font-size: 13px;
}

.content table {
    margin-bottom: 50px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d1d1d1;
}
.content table span.red {
    color: #db281d;
}
.content table span.el {
    margin-right: 15px;
}
.content table td {
    padding: 20px 15px;
    color: #636363;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    border: 1px solid #d1d1d1;
}
.content table thead tr td {
    font-size: 12px;
}
.content table.history thead td {
    color: #414141;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}
.content table.history tbody td {
    font-size: 14px;
}

table.contacts {
    border: none;
    color: #636363;
    font-size: 16px;
    font-family: "MuseoSansRegular", sans-serif;
    margin-bottom: 0;
}
table.contacts .phone {
    font-size: 0;
}
table.contacts .phone__item {
    display: inline-block;
    font-size: 16px;
    margin-right: 0;
    vertical-align: bottom;
    width: 50%;
}
table.contacts .phone__item:nth-child(4) {
    margin-right: 0;
}
table.contacts .phone__item:nth-child(3) {
    margin-right: 0;
}
table.contacts .phone .messengers {
    text-align: left;
    margin-top: 0;
    display: inline-block;
    padding-right: 0;
    vertical-align: bottom;
    width: 50%;
}
table.contacts a {
    color: #636363;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 16px;
}
table.contacts td {
    border: none;
    vertical-align: top;
}
table.contacts tfoot td {
    padding-left: 25px;
}
table.contacts tbody td {
    padding-top: 0;
    position: relative;
    padding-bottom: 15px;
}
table.contacts tbody td:first-child {
    padding-left: 32px;
    padding-right: 20px;
    width: 175px;
}
table.contacts tbody td:first-child .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 24px;
    width: 24px;
    text-align: center;
}
table.contacts tbody td:first-child .icon img {
    max-width: 100%;
    max-height: 100%;
}

.write-us {
    text-align: center;
    position: relative;
    padding-bottom: 30px;
    margin-top: 15px;
}
.write-us a {
    color: #c42231;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
}
.write-us__form {
    padding: 25px 30px;
    text-align: left;
    border: 1px solid #d3d3d3;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
}
.write-us__form.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}
.write-us__form .head {
    color: #292929;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    text-align: left;
    margin-bottom: 15px;
}
.write-us__form .inp {
    color: #8a8988;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 10px 10px 10px 25px;
    margin-bottom: 10px;
    border: 1px solid #bbb5a5;
}
.write-us__form .inp-box {
    padding: 0 10px;
}
.write-us__form .inp-box:first-child {
    padding-left: 15px;
}
.write-us__form .inp-box:nth-child(2) {
    padding-right: 15px;
}
.write-us__form .inp_button {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    background: #c42231;
    border: none;
    outline: none;
    padding: 10px 35px;
}
.write-us__form .inp_button:hover {
    background-color: #ae1e2b;
}
.write-us__form textarea.inp {
    height: 155px;
}

.map {
    margin-top: 30px;
}
.map iframe {
    width: 100% !important;
    height: 500px !important;
}

#map {
    margin-top: 30px;
    width: 100% !important;
    height: 500px !important;
}

.gallery {
    margin: 25px 0;
}
.gallery .img {
    margin-bottom: 25px;
}
.gallery .img img {
    width: 100%;
}

.messengers {
    text-align: center;
    margin-top: 8px;
    padding-right: 6px;
}
.messengers__item {
    display: inline-block;
    vertical-align: top;
    margin: 0 4px;
}
.messengers__item .icon {
    width: 28px;
}
.messengers__item .icon--main {
    display: block;
}
.messengers__item .icon--hover {
    display: none;
}
.messengers__item:hover .icon--hover {
    display: block;
}
.messengers__item:hover .icon--main {
    display: none;
}

.order-call {
    color: #414141;
    padding-right: 6px;
    display: inline-block;
    float: right;
    margin-top: 31px;
}
.order-call .name {
    font-size: 18px;
}
.order-call .phone {
    font-size: 15px;
}
.order-call .phone a {
    color: #414141;
}
.order-call .link {
    margin-top: 4px;
}
.order-call .link a {
    font-size: 13px;
    color: #dc281e;
    text-decoration: underline;
}

.section {
    margin: 50px 0;
}

.banner {
    position: relative;
}
.banner--main {
    min-height: 300px;
    margin-top: 0;
}
.banner--main > .img {
    position: relative;
    text-align: center;
    height: 571px;
    overflow: hidden;
}
.banner--main > .img img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
}
.banner--main > .img img.main-image {
    opacity: 1;
}
.banner > .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.banner.section {
    margin-top: 0;
}
.banner.section .img {
    text-align: center;
    height: auto;
    overflow: hidden;
}
.banner.section .img img {
    -o-object-fit: contain;
    object-fit: contain;
}
.banner--page.section {
    margin-bottom: 0;
}

.categories {
    position: absolute;
    width: 100%;
    bottom: -40px;
    z-index: 9;
}
.categories-box {
    position: relative;
}
.categories-box .categories {
    position: static;
    margin-top: 0;
}
.categories__item {
    border-radius: 5px;
    position: relative;
    height: 200px;
    display: block;
    padding: 23px 0 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
}
.categories__item .name {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}
.categories__item .img {
    height: 70px;
    text-align: center;
    /*padding-left: 50px;*/
    bottom: 45px;
    width: 100%;
}
.categories__item .img .icon-svg {
    margin: 0 auto;
    max-height: 100%;
    fill: #888a90;
    transition: all 0.3s ease-in-out;
}
.categories__item:hover .img .icon-svg {
    fill: #fff;
}
.categories__item .link {
    color: #fff;
    font-size: 15px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
}
.categories__item:hover {
    background-color: #dc281e;
}
.categories__item:hover .link {
    background: rgba(0, 0, 0, 0.1);
}
.categories--without_img {
    position: relative;
    bottom: 0;
    padding: 10px 0 46px;
}
.categories--without_img .head {
    margin-bottom: 28px;
}
.categories--without_img .categories__item {
    height: auto !important;
    padding: 0;
    min-height: 40px;
    position: relative;
    line-height: 36px;
}
.categories--without_img .name {
    vertical-align: middle;
    padding-left: 50px;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    line-height: 16px;
}
.categories--without_img .img {
    height: 20px;
    text-align: center;
    display: inline-block;
    /*position: absolute;*/
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
    width: 50px;
}
.categories--without_img .img .icon {
    margin: 0 auto;
    max-height: 100%;
}
.categories--without_img .img .icon--main {
    display: block;
}
.categories--without_img .img .icon--hover {
    display: none;
}
.categories--detail {
    padding: 27px 0 3px;
}

.sidebar--personal {
    position: relative;
    margin-bottom: 300px;
}
.sidebar--personal:after {
    width: 100%;
    height: 250px;
    background: url("../img/personal_doodle.png") no-repeat 50% 50% / auto 200px;
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
}
.sidebar .head {
    background-color: #707070;
    color: #fff;
    font-size: 20px;
    padding: 10px 10px 10px 25px;
    margin-bottom: 5px;
    position: relative;
}
.sidebar .left-menu__item {
    margin-bottom: 2px;
}
.sidebar .left-menu__item a {
    color: #dfdfdf;
    font-family: "OpenSans", sans-serif;
    font-size: 16px;
    padding: 10px 25px;
    background-color: #707070;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    border-bottom: 1px solid #d0d0d0;
}
.sidebar .left-menu__item a:hover {
    background-color: #999;
    color: #fff;
}
.sidebar .left-menu__item.active a {
    background-color: #999;
    width: 110%;
    width: calc(100% + 30px);
    transition: all 0.3s ease;
    color: #fff;
}

.sign-out {
    text-align: right;
}
.sign-out a {
    color: #636363;
    font-family: "Open Sans", sans-serif;
}

.products {
    background-color: #f8f7f7;
    padding: 55px 0 50px;
}
.products.section {
    margin-bottom: 0;
}
.products--category.section {
    margin-top: 10px;
    padding-top: 0;
}
.products--sales {
    padding-top: 0;
}
.products__item {
    margin-bottom: 25px;
    padding: 13px 14px;
    background: #fff;
    border: 1px solid #dcdcdc;
    outline: 3px solid transparent;
    transition: all 0.3s ease;
}
.products__item .cat {
    font-size: 14px;
    color: #8a8989;
}
.products__item .name {
    margin-bottom: 20px;
    font-size: 18px;
    color: #1d1d1d;
}
.products__item .img {
    position: relative;
    margin-bottom: 0;
    text-align: center;
}
.products__item .img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: all 0.3s ease;
}
.products__item .img img {
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.products__item .img .hover {
    position: relative;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 33px 0 20px;
}
.products__item .img .hover table {
    margin-bottom: 58px;
}
.products__item--ad {
    overflow: hidden;
    position: relative;
}
.products__item--ad .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: #fff;
    font-size: 28px;
    background-color: #dc281e;
}
.products__item--ad .ban {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}
.products__item--sale {
    position: relative;
    overflow: hidden;
}
.products__item--sale .sale_icon {
    position: absolute;
    top: 0;
    right: 0;
}
.products__item--sale .sale_icon .backgr {
    position: relative;
    width: 110px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}
.products__item--sale .sale_icon .backgr:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 120px;
    transform: rotate(-6deg);
    background: #dc281e;
    bottom: 0;
    left: 0;
}
.products__item--sale .sale_icon .backgr .text {
    position: relative;
    color: #f5f5f5;
    font-family: "MuseoSansCyrl", sans-serif;
    font-size: 20px;
}
.products__item .table_prop {
    width: 100%;
    font-size: 12px;
    margin-bottom: 10px;
}
.products__item .table_prop .tr {
    font-size: 0;
}
.products__item .table_prop .tr .td {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    padding: 4px 0;
    word-wrap: break-word;
    font-size: 12px;
}
.products__item .table_prop .tr .td:first-child {
    color: #1d1d1d;
    text-align: left;
}
.products__item .table_prop .tr .td:last-child {
    color: #646464;
    text-align: right;
}
.products__item .more--simple {
    background-color: #dc281e;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    display: inline-block;
}
.products__item .price {
    padding: 20px 0 10px;
    text-align: center;
    color: #1d1d1d;
    font-size: 14px;
}
.products__item .price span {
    font-size: 24px;
}
.products__item:hover {
    outline: 2px solid #dc281e;
    outline-offset: 0;
    border: 1px solid #dc281e;
}
.products__item:hover .img .hover {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}
.products__item:hover .img:after {
    opacity: 1;
    transition: all 0.3s ease;
}

.owl-carousel .products__item:hover {
    outline: none;
}

.reviews-box {
    padding: 27px 0;
    background-color: #f7f7f7;
}

.reviews__item {
    padding: 12px 0 29px;
    margin-bottom: 13px;
    border-bottom: 1px solid #cbcbcb;
}
.reviews__item:last-child {
    border: none;
}
.reviews__item .head {
    color: #414141;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}
.reviews__item .head time {
    font-size: 12px;
    margin-left: 5px;
}
.reviews__item .body {
    margin-top: 10px;
}

.section-head {
    color: #414141;
    font-family: "Open Sans", sans-serif;
    font-size: 30px;
}
.section-head svg {
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}

.viewed_carousel {
    margin-top: 20px;
}

.viewed {
    padding: 10px 0;
}

.pagination {
    /*display: block;*/
    /*text-align: center;*/
    /*margin: 10px 0; */
}
.pagination__item {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    padding: 5px 10px;
    margin: 0 2px;
    font-weight: 700;
}
.pagination a.pagination__item {
    color: #464545;
}
.pagination a.pagination__item:hover {
    color: #fff;
    background-color: #9a9a9a;
}
.pagination span.pagination__item {
    color: #fff;
    background-color: #9a9a9a;
}

.more {
    text-align: center;
}
.more a {
    display: inline-block;
}
.more--main {
    margin-top: 23px;
    margin-bottom: 10px;
}
.more--main a {
    padding: 13px 37px;
    border: 1px solid #3d3b3b;
    color: #636363;
    font-size: 16px;
}
.more--main a:hover {
    background-color: #dc281e;
    color: #fff;
    border: 1px solid #fff;
}
.more--simple a {
    background-color: #dc281e;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
}
.more--simple a:hover {
    background-color: #ae2720;
}
.more--products {
    margin-top: 4px;
    margin-bottom: 45px;
}

p {
    text-align: justify;
}

.page-title h1 {
    color: #414141;
    margin-bottom: 17px;
    margin-top: 32px;
    font-size: 30px;
}

.sign-out {
    margin-top: 35px;
}

.content .page-title h1 {
    margin-top: 0 !important;
    font-size: 24px;
}

.col-not-pad {
    padding-left: 0;
    padding-right: 0;
}
.col-not-pad:first-child {
    padding-left: 15px;
}
.col-not-pad:last-child {
    padding-right: 15px;
}

.form {
    margin-bottom: 24px;
}
.form .part {
    margin-bottom: 20px;
}
.form .head {
    color: #010101;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    margin-bottom: 14px;
    margin-top: 7px;
}
.form input {
    color: #636363;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: italic;
    padding: 8px 14px;
    width: 100%;
    margin-bottom: 8px;
}
.form button.send {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    background-color: #bb2b23;
    border: none;
    outline: none;
    padding: 6px 45px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.form button.send:hover {
    background-color: #ae2720;
}
.form textarea {
    color: #636363;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: italic;
    padding: 10px 14px;
    height: 120px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 6px;
}
.form label {
    width: 100%;
}
.form label span {
    color: #636363;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    width: 86px;
}
.form label input {
    color: #636363;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: italic;
    padding: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 80%;
    width: calc(100% - 86px);
}
.form .col-not-pad label span {
    text-align: right;
    padding-right: 15px;
    box-sizing: border-box;
}
.form .col-not-pad:first-child label span {
    text-align: left;
    padding-right: 0;
    box-sizing: border-box;
}
.form--password label {
    width: 100%;
}
.form--password label span {
    color: #636363;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    width: 30%;
    width: 156px;
}
.form--password label input {
    color: #636363;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: italic;
    padding: 10px 14px;
    display: inline-block;
    vertical-align: middle;
    width: 70%;
    width: calc(100% - 156px);
}
.form--basket label input {
    color: #a49f9f;
    font-style: normal;
    width: 100%;
    padding: 7px 14px;
    margin-bottom: 0;
    font-weight: 300;
}
.form--basket .col-not-pad {
    padding-left: 2.5px;
    padding-right: 2.5px;
}
.form--basket .col-not-pad:first-child {
    padding-left: 15px;
}
.form--basket .col-not-pad:last-child {
    padding-right: 15px;
}
.form--basket .part {
    margin-bottom: 0;
}

.label {
    white-space: normal;
    text-align: left;
}
.label.inline {
    max-width: 90%;
    padding-top: 0;
}

label.el {
    margin-bottom: 10px;
    margin-top: 10px;
    display: block;
}

.form-head {
    padding: 20px 0 10px;
    color: #040303;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
}
.form-head--min {
    color: #434343;
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
}

.franke-box {
    margin-top: 20px;
}
.franke-box .head {
    color: #040404;
    font-size: 20px;
}
.franke-box .head span {
    color: #666;
    font-size: 14px;
}
.franke-box .label {
    color: #030303;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
}
.franke-box .label .hint {
    color: #434443;
    font-size: 14px;
    font-weight: normal;
}
.franke-box .radio-custom {
    margin-top: 5px;
}

.hint {
    color: #7e7f7e;
    font-size: 14px;
}

span.red {
    color: #c6241a;
}

.sale-blocks {
    margin-top: 80px;
    margin-bottom: 66px;
}
.sale-blocks--page {
    margin-top: 0;
}
.sale-blocks__text h2.head {
    margin-top: 0;
}
.sale-blocks__text .head {
    line-height: 24px;
    margin-top: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
}
.sale-blocks__text .head span {
    color: #da271e;
}
.sale-blocks__text ul {
    margin-top: 10px;
}
.sale-blocks__text ul li {
    list-style: none;
    padding-left: 15px;
}
.sale-blocks__text .note {
    margin-top: 10px;
}
.sale-blocks__text .link {
    margin-top: 20px;
}
.sale-blocks__text .link a {
    color: #414141;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}
.sale-blocks__item {
    padding: 10px 20px 10px 32%;
    color: #3e3e3e;
    font-family: "Open Sans", sans-serif;
}
.sale-blocks__item--blue {
    background: #90ecec url("../img/doodle_blue.png") no-repeat 10px 50%/30% auto;
}
.sale-blocks__item--green {
    background: #8cebac url("../img/doodle_green.png") no-repeat 10px 50%/30% auto;
}
.sale-blocks__item .head {
    font-family: "Segoe Print";
    font-size: 22px;
}
.sale-blocks__item .description {
    font-size: 16px;
}
.sale-blocks__item .numbers {
    font-size: 18px;
    text-align: center;
    margin-top: 6px;
}
.sale-blocks__item .count-box {
    border-top: 1px solid #3e3e3e;
    padding-top: 6px;
    margin-top: 5px;
}
.sale-blocks__item .count-box .count {
    display: table;
    width: 100%;
    margin-bottom: 20px;
}
.sale-blocks__item .count-box .count__item {
    display: table-cell;
    text-align: center;
    position: relative;
}
.sale-blocks__item .count-box .count__item:after {
    content: ":";
    right: 0;
    top: 50%;
    position: absolute;
    font-size: 30px;
    transform: translateY(-50%);
}
.sale-blocks__item .count-box .count__item:last-child:after {
    display: none;
}
.sale-blocks__item .count-box .count-text {
    font-size: 11px;
    display: inline-table;
}
.sale-blocks__item .count-box .count-text-box {
    padding-right: 0;
}
.sale-blocks__item .count-box .number {
    font-size: 30px;
    line-height: 30px;
}
.sale-blocks__item .count-box .label_num {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #3e3e3e;
    font-family: "Open Sans", sans-serif;
}

.about-product__item .image {
    height: 323px;
    overflow: hidden;
    width: 50%;
}
.about-product__item .image img {
    width: 100%;
}
.about-product__item .image.pull-left {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 15px;
    padding-right: 15px;
}
.about-product__item .image.pull-right {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 15px;
    padding-left: 15px;
}

.info-blocks {
    padding: 40px 0 0;
}
.info-blocks__item {
    margin: 30px 0;
}
.info-blocks__item .img img {
    width: 100%;
}
.info-blocks__item .text {
    color: #3d3b3b;
}
.info-blocks__item .text .head {
    margin: 35px 0 27px;
    font-size: 50px;
    font-weight: 700;
}
.info-blocks__item .text .head--thin {
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
}
.info-blocks__item .text .head--small {
    font-size: 45px;
}
.info-blocks__item .text .head--wide {
    letter-spacing: 11px;
}
.info-blocks__item .text .head--cursive {
    margin: 45px 0 55px;
    font-size: 32px;
    font-style: italic;
}
.info-blocks__item .text .body {
    font-size: 16px;
    text-align: justify;
    line-height: 23px;
}
.info-blocks__item .text .more {
    text-align: right;
    margin: 15px 0;
}
.info-blocks__item .text .more a {
    color: #3d3b3b;
    font-size: 14px;
}

.posts {
    padding: 20px 0;
}
.posts .head {
    color: #3d3b3b;
    font-size: 36px;
    text-align: center;
    position: relative;
    margin-bottom: 18px;
}
.posts--page {
    margin-bottom: 40px;
}
.posts__item {
    margin-bottom: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}
.posts__item .img {
    height: 180px;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.posts__item .img img {
    height: 100%;
}
.posts__item .img:before {
    background-color: #fff;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}
.posts__item .tags {
    margin: 7px 0;
}
.posts__item .tags span {
    background-color: #6f6f6f;
    color: #f7f7f7;
    font-size: 10px;
    text-transform: uppercase;
    padding: 0 4px;
    display: inline-block;
}
.posts__item .name {
    color: #3d3b3b;
    font-size: 20px;
}
.posts__item .body {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
}
.posts__item:hover {
    outline: 1px solid #be1002;
}
.posts__item:hover .img:before {
    opacity: 0.65;
}

.rewards {
    height: auto;
    display: table;
    width: 100%;
    position: relative;
}
.rewards:after {
    position: absolute;
    content: "";
    width: 208px;
    height: 130px;
    background: url(../img/icons/FRANKE_illu_KS_double-paperplane.svg) no-repeat
    50% 50% / contain;
    left: -11px;
    top: -48px;
}
.rewards-box {
    background-color: #f7f7f7;
}
.rewards-box--page.section {
    margin-bottom: 0;
}
.rewards__item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 85px 65px;
}
.rewards__item img {
    max-width: 100%;
}
.rewards__item:first-child {
    text-align: left;
    padding-left: 0;
}
.rewards__item:last-child {
    text-align: right;
    padding-right: 0;
}

.delivery {
    margin-bottom: 50px;
}
.delivery__item {
    margin-bottom: 20px;
    overflow: hidden;
}
.delivery__item .icon {
    float: left;
    width: 10%;
}
.delivery__item .icon img {
    max-width: 100%;
}
.delivery__item .text {
    padding-left: 10px;
    float: left;
    width: 90%;
}
.delivery__item .text h4 span {
    font-size: 0.8em;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.buttons {
    display: table;
    width: 100%;
    margin-top: 35px;
    margin-bottom: 5px;
}
.buttons__item {
    display: table-cell;
    vertical-align: top;
    text-align: center;
}
.buttons__item:first-child {
    text-align: left;
}
.buttons__item:last-child {
    text-align: right;
}
.buttons .button {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    outline: none;
    border: none;
    height: 40px;
    padding: 0 8px;
    max-width: 100%;
    margin-right: 0;
}
.buttons .button--red {
    font-size: 20px;
    padding: 0 50px;
    background-color: #bb2b23;
}
.buttons .button--red:hover {
    background-color: #ad2b24;
}
.buttons .button--green {
    font-size: 16px;
    background-color: #8cc093;
}
.buttons .button--green:hover {
    background-color: #72a979;
}
.buttons .button--blue {
    font-size: 16px;
    background-color: #53c1eb;
}

.top-properties {
    color: #636363;
    font-size: 14px;
}
.top-properties__item {
    margin-bottom: 40px;
}
.top-properties__item:last-child {
    margin-bottom: 20px;
}
.top-properties .price-text {
    color: #bd2d23;
    font-size: 30px;
}
.top-properties .code {
    font-size: 16px;
}
.top-properties .availability-icon {
    padding-left: 30px;
    display: inline-block;
    position: relative;
}
.top-properties .availability-icon svg {
    position: absolute;
    width: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.top-properties .sale-icon {
    padding-left: 30px;
    display: inline-block;
    position: relative;
    text-align: left;
    line-height: 16px;
    margin-top: 10px;
    color: #636363;
}
.top-properties .sale-icon svg {
    position: absolute;
    width: 20px;
    left: 0;
    top: 0;
}

.quote {
    color: #636363;
    font-style: italic;
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 28px;
    margin-bottom: 26px;
}

.description-product .head {
    margin-bottom: 6px;
    color: #414141;
    font-size: 20px;
    margin-top: 15px;
}
.description-product .text {
    color: #636363;
}

#slider {
    height: 470px;
    margin-bottom: 0;
    border: 1px solid #dcdcdc;
}

.features {
    margin-bottom: 40px;
    margin-top: 20px;
}
.features__item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 7px;
    outline: none;
}
.features__item .icon {
    border: 1px solid #ebebeb;
    background: #fff;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    padding: 5px;
    box-sizing: border-box;
}
.features__item .icon img {
    width: 100%;
}
.features__item .hidden-text {
    position: absolute;
    width: 400px;
    left: 0;
    top: 100%;
    background-color: #2b2d33;
    padding: 10px;
    color: #cbcbcb;
    z-index: 14;
    opacity: 0;
    transition: all 0.2s ease;
    visibility: hidden;
    font-size: 14px;
    line-height: 23px;
}
.features__item .hidden-text .head {
    color: #f2f2f2;
    font-size: 18px;
    margin-bottom: 10px;
}

.flexslider2 .flex-viewport {
    height: 500px !important;
}

.left-imgs {
    width: 75px;
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
    font-size: 0;
    height: 500px;
}
.left-imgs__item {
    max-width: 100%;
    width: 70px;
    display: inline-block;
    height: 70px;
    background: #fff;
    border: 1px solid #dcdcdc;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer;
}
.left-imgs__item.active {
    border: 1px solid #bd2d24;
}
.left-imgs__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.flex-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.min-imgs {
    margin-top: 5px;
}
.min-imgs__item {
    display: inline-block;
    vertical-align: top;
    width: 103px;
    height: 103px;
    background: #fff;
    border: 1px solid #dcdcdc;
    padding: 5px;
    margin-bottom: 14px;
    margin-right: 6px;
    cursor: pointer;
    text-align: center;
    line-height: 95px;
    position: relative;
}
.min-imgs__item.active {
    border: 1px solid #bd2d24;
}
.min-imgs__item img {
    max-width: 95%;
    max-height: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.min-imgs__item .hidden-block {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.33);
    border: 1px solid #ebebeb;
    width: 100%;
    color: #636363;
    font-size: 12px;
    padding: 3px;
    line-height: normal;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 15;
}
.min-imgs__item .hidden-block .name {
    display: block;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}
.min-imgs__item .hidden-block .numb {
    display: block;
}
.min-imgs__item:hover .hidden-block {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease;
}

.tabs {
    margin-bottom: 10px;
}
.tabs__item {
    display: inline-block;
    color: #414141;
    cursor: pointer;
    margin-right: 25px;
    margin-bottom: 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.tabs__item:hover {
    border-bottom: 2px solid #ac271f;
}

.product-box {
    padding: 22px 0 40px;
    background-color: #f7f7f7;
}

.search-mobile {
    display: none;
    height: 30px;
    ackground: transparent;
    width: 100%;
    position: relative;
}
.search-mobile input[type="search"] {
    border: none;
    outline: none;
    width: 100%;
    background: none;
    padding-right: 30px;
    height: 30px;
    padding-left: 10px;
    border-bottom: 1px solid #7b7b7b;
}
.search-mobile button {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    width: 30px;
    height: 30px;
    outline: none;
    border: none;
}
.search-mobile .rewards-box--page.section {
    margin-top: 50px;
}

.bottom-properties {
    margin-top: 13px;
}
.bottom-properties .head {
    color: #414141;
    font-size: 20px;
    margin-bottom: 15px;
}
.bottom-properties .table .tr {
    overflow: hidden;
    font-size: 0;
}
.bottom-properties .table .tr .td {
    padding-bottom: 8px;
    font-size: 16px;
}
.bottom-properties .table .tr .property {
    display: inline-block;
    vertical-align: top;
    color: #414141;
    padding-right: 15px;
    width: 40%;
}
.bottom-properties .table .tr .value {
    display: inline-block;
    vertical-align: top;
    color: #838383;
    width: 60%;
    word-wrap: break-word;
}

.about {
    padding: 25px 0 27px;
}
.about p.indent {
    color: #313030;
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 27px;
    text-align: justify;
    display: block;
}
.about p.indent:last-child {
    margin-bottom: 0;
}
.about .more {
    text-align: right;
}
.about .more a {
    color: #313030;
    font-size: 17px;
}

.social__item {
    display: inline-block;
    vertical-align: top;
    height: 25px;
    width: 25px;
}
.social__item .icon {
    max-height: 100%;
}
.social__item .icon {
    margin: 0 auto;
    max-height: 100%;
}
.social__item .icon--main {
    display: block;
}
.social__item .icon--hover {
    display: none;
}
.social__item:hover .icon--hover {
    display: block;
}
.social__item:hover .icon--main {
    display: none;
}

ul.mark-list li {
    list-style-image: url("../img/list_image.png");
    list-style-position: inside;
    margin-bottom: 15px;
}

.videos iframe {
    width: 100%;
    margin-bottom: 15px;
    max-height: 100%;
}

.bottom-line {
    display: table;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 50px;
}
.bottom-line__item {
    padding-top: 45px;
    display: table-cell;
}
.bottom-line__item:nth-child(3) {
    position: relative;
}
.bottom-line__item:nth-child(3):after {
    position: absolute;
    content: "";
    width: 73px;
    height: 150px;
    background: url(../img/icons/butterfly.svg) no-repeat 0 0/100% auto;
    left: 100%;
    top: 0;
    transform: translateX(-50%);
}
.bottom-line__item:last-child {
    width: 270px;
    padding-top: 0;
}
.bottom-line__item ul li {
    list-style: none;
    margin-bottom: 7px;
}
.bottom-line__item ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

.site-footer {
    background-color: #6f6f6f;
    color: #fff;
}
.site-footer a {
    color: #fff;
}
.site-footer .top-line {
    padding: 26px 0 22px;
    width: 100%;
    background: transparent;
}
.site-footer .top-line-box {
    background-color: #999;
}
.site-footer .top-line__item {
    display: table-cell;
}
.site-footer .phones {
    color: #fff;
    font-size: 20px;
    margin-top: 0;
}
.site-footer .phones__item {
    padding: 0;
}
.site-footer .social__item {
    display: inline-block;
    vertical-align: baseline;
    height: 28px;
    width: 25px;
    margin-right: 10px;
}
.site-footer .messengers {
    text-align: left;
    margin-top: 4px;
}
.site-footer .messengers__item {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
}
.site-footer .img-logo {
    margin: 10px 0 8px;
    max-width: 100%;
}

.icon {
    transition: all 0.3s ease-in-out;
}
.icon.telegram {
    color: #d5d5d5;
}
.icon.telegram:hover {
    color: #2c9dcf;
}
.icon.viber {
    color: #d5d5d5;
}
.icon.viber:hover {
    color: #7c519e;
}
.icon.whatsup {
    color: #d5d5d5;
}
.icon.whatsup:hover {
    color: #3ebf2b;
}
.icon.skype {
    color: #d5d5d5;
}
.icon.skype:hover {
    color: #00aff0;
}
.icon.soc {
    fill: #d9d9d8;
}
.icon.soc:hover {
    fill: #fff;
}

.site-footer .icon.telegram {
    color: #2c9dcf;
}
.site-footer .icon.viber {
    color: #7c519e;
}
.site-footer .icon.whatsup {
    color: #3ebf2b;
}
.site-footer .icon.skype {
    color: #00aff0;
}

@media (max-width: 1499px) and (min-width: 992px) {
    .hidden-lg-md {
        display: none !important;
    }
}
.inline-svg-icon {
    display: inline-block;
    width: 23px;
    height: 25px;
    margin-right: 30px;
    cursor: pointer;
}

@media (min-width: 1200px) {
    .lg-nopad-r {
        padding-right: 0 !important;
    }

    .lg-nopad-l {
        padding-left: 0 !important;
    }

    .logo {
        max-width: 400px;
    }

    .banner.section .img {
        height: 530px;
    }
}
@media (min-width: 1500px) {
    .buttons {
        display: block;
    }

    .buttons__item {
        display: inline-block;
    }

    .buttons .button {
        margin-right: 30px;
    }

    .features__item .icon {
        width: 43px;
        height: 43px;
    }

    .features__item {
        margin-right: 10px;
    }

    .categories--without_img {
        padding: 28px 0 14px;
    }

    .col-lg-25 {
        width: 20%;
    }

    .sale-blocks__item .head {
        font-size: 28px;
    }

    .sale-blocks__item .description {
        font-size: 20px;
    }

    .sale-blocks__item .numbers {
        font-size: 22px;
    }

    .sale-blocks__item .count-box .count-text {
        font-size: 13px;
    }

    .sale-blocks__item .count-box .number {
        font-size: 38px;
        line-height: 40px;
    }

    .sale-blocks__item .count-box .label_num {
        font-size: 12px;
    }

    /* .sale-blocks__item {
    padding: 10px 35px 10px 32%;
  } */

    .container {
        width: 1470px;
    }

    .logo {
        margin: 6px 0 28px;
    }

    .phones {
        padding-left: 0;
        margin-top: 25px;
    }

    .address {
        margin-top: 14px;
        font-size: 17px;
        padding-left: 0;
    }

    .banner--main > .img {
        height: 650px;
    }

    .categories {
        bottom: -5px;
    }

    .categories__item {
        padding: 32px 0 0;
    }

    .categories__item .name {
        line-height: 25px;
    }

    .categories__item .link {
        font-size: 17px;
        height: 58px;
        line-height: 58px;
    }

    .categories__item .img {
        height: 100px;
        bottom: 58px;
        width: 100%;
    }

    .categories--without_img {
        bottom: 0;
    }

    .categories--without_img .categories__item {
        padding: 0;
        min-height: 120px;
        line-height: 46px;
    }

    .categories--without_img .img {
        height: 34px;
        bottom: 50%;
        width: 60px;
        left: 10px;
    }

    .categories--without_img .img img {
        max-width: 100%;
    }

    .categories--without_img .name {
        vertical-align: middle;
        text-align: center;
        display: inline-block;
        font-size: 18px;
        line-height: 21px;
    }

    .info-blocks {
        padding: 25px 0 0;
    }

    .info-blocks__item .text .head {
        margin: 38px 0 30px;
        font-size: 67px;
        font-weight: 700;
    }

    .info-blocks__item .text .body {
        font-size: 21px;
        line-height: 28px;
    }

    .info-blocks__item .text .more {
        text-align: right;
        margin: 0;
    }

    .info-blocks__item .text .head--wide {
        letter-spacing: 14px;
    }

    .info-blocks__item .text .head--small {
        font-size: 59px;
    }

    .info-blocks__item .text .head--image {
        margin: 85px 0 50px;
        height: 65px;
    }
    .info-blocks__item .text .head--image img {
        max-height: 100%;
    }

    .posts {
        padding: 13px 0;
    }

    .posts .head:after {
        right: 22%;
        top: -22px;
    }

    .posts__item .tags {
        margin: 3px 0;
    }

    .posts__item {
        width: 20%;
    }

    .rewards {
        height: 345px;
    }

    .about p.indent {
        font-size: 21px;
        margin-bottom: 28px;
        line-height: 27px;
    }

    .about .more {
        text-align: right;
        margin-top: 5px;
    }

    .about .more a {
        color: #313030;
        font-size: 21px;
    }

    .about {
        padding: 16px 0 20px;
    }

    .site-footer .social__item {
        margin-right: 0;
        margin-left: 14px;
    }

    .site-footer .phones {
        font-size: 24px;
        margin-top: 0;
    }

    .site-footer .messengers {
        text-align: right;
        margin-top: 0;
        margin-right: 20px;
    }

    .site-footer .messengers__item {
        margin: 0 4px 0 0;
    }

    .bottom-line__item ul li {
        margin-bottom: 11px;
    }

    .bottom-line__item ul li a {
        font-size: 17px;
        line-height: 25px;
        text-decoration: none;
    }
    .bottom-line__item ul li a:hover {
        text-decoration: underline;
    }

    .bottom-line__item:last-child {
        width: 260px;
    }

    .site-footer .img-logo {
        margin: 4px 0 0;
    }
}
.mobile-menu-icon a {
    display: none;
    text-align: center;
    padding: 1px 5px;
    height: 40px;
    width: 45px;
    background-color: #e7e7e7;
}
.mobile-menu-icon a span {
    background-color: #7b7b7b;
    display: block;
    height: 3px;
    width: 85%;
    margin: 7px auto;
}

.mobile-left-menu-icon {
    text-align: center;
    padding: 1px 5px;
    height: 40px;
    width: 45px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 15px;
}
.mobile-left-menu-icon span {
    background-color: #9b9b9b;
    display: block;
    height: 3px;
    width: 85%;
    margin: 7px auto;
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .form label input {
        width: 100%;
    }

    .form .col-not-pad {
        padding: 0 15px !important;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .col-md-lg-4 {
        width: 33.33333333% !important;
    }
}
@media (min-width: 500px) and (max-width: 767px) {
    .col-xs-sm-5 {
        width: 41.66666667% !important;
    }

    .col-xs-sm-7 {
        width: 58.33333333% !important;
    }
}
@media (max-width: 1200px) {
    .button-send--order {
        font-size: 19px;
        padding: 0 25px;
        height: 45px;
    }

    .buttons .button {
        line-height: 17px;
        margin: 0 5px;
    }

    .categories--without_img .name {
    }

    .categories--without_img .img {
        width: 40px;
        height: 17px;
    }

    table.contacts tbody td:first-child {
        padding-right: 10px;
        width: auto;
    }

    .about-product__item .image {
        height: 200px;
    }

    .products__item .img .hover {
        padding: 20px 0 0;
    }

    .phones {
        font-size: 16px;
    }

    .menu--main .menu__item a {
        font-size: 17px;
    }

    .menu-box .search a {
        font-size: 17px;
    }

    .categories__item .name {
        font-size: 17px;
    }

    .categories--without_img .name {
        font-size: 12px;
    }

    .posts__item .name a {
        font-size: 18px;
    }

    .bottom-line__item:nth-child(3):after {
        width: 45px;
    }

    .site-footer .phones {
        font-size: 18px;
    }
}
@media (min-width: 992px) {
    .features__item:hover .hidden-text {
        opacity: 1;
        visibility: visible;
        transition: all 0.2s ease;
    }
}
@media (max-width: 991px) {
    .sidebar--prod > .menu > .menu__item a {
        font-size: 16px;
    }

    .form-head {
        padding: 10px 0 5px;
    }

    label.el {
        margin-bottom: 20px;
    }

    .button-send--order {
        font-size: 20px;
        height: 40px;
        padding: 0 35px;
    }

    .steps__item {
        margin-top: 5px;
    }

    .all-sum {
        display: table;
        width: 100%;
    }
    .all-sum__item {
        display: table-cell;
        text-align: center;
        font-size: 30px;
    }
    .all-sum__item .text {
        display: inline-block;
        margin-right: 10px;
    }
    .all-sum__item .numb {
        display: inline-block;
    }
    .all-sum__item .count {
        font-size: 18px;
    }
    .all-sum__item .smaller {
        font-size: 20px;
    }

    .buttons__item {
        display: inline-block;
        vertical-align: top;
    }

    .buttons {
        text-align: center;
        margin-top: 22px;
        margin-bottom: 29px;
    }

    .features__item:focus .hidden-text {
        opacity: 1;
        visibility: visible;
        transition: all 0.2s ease;
    }

    .features__item {
        position: static;
    }

    .features__item .hidden-text {
        max-width: 100%;
    }

    .features {
        position: relative;
    }

    .top-properties__item {
        margin-bottom: 30px;
    }

    .min-imgs__item {
        width: 65px;
        height: 65px;
        margin-bottom: 5px;
        margin-right: 2px;
    }

    .left-imgs__item {
        width: 45px;
        height: 45px;
        margin-bottom: 4px;
    }

    .left-imgs {
        width: 50px;
        margin-right: 20px;
    }

    #slider {
        height: 290px;
    }

    body {
        font-size: 14px;
    }

    .bottom-properties .table .tr .td {
        font-size: 14px;
    }

    .sidebar .left-menu__item.active a {
        width: 103%;
        width: calc(100% + 10px);
    }

    .sidebar .left-menu__item a {
        font-size: 14px;
        padding: 10px 20px;
    }

    .sidebar .head {
        font-size: 18px;
        padding: 10px 10px 10px 20px;
    }

    .content table td {
        padding: 20px 15px;
        font-size: 14px;
    }

    .sign-out {
        margin-top: 25px;
    }

    .videos iframe {
        height: 200px;
    }

    .posts--page {
        margin-bottom: 5px;
    }

    .posts__item {
        margin-bottom: 40px;
    }

    .filters--page {
        margin-bottom: 0;
    }

    .sale-blocks__text ul {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    table.contacts .phone .messengers {
        width: 100%;
    }

    table.contacts .phone__item {
        width: 100%;
    }

    .sale-blocks__item .head {
        font-size: 20px;
    }

    .sale-blocks__item .description {
        font-size: 14px;
    }

    .sale-blocks__item .numbers {
        font-size: 16px;
    }

    .sale-blocks__item .count-box .number {
        line-height: 24px;
    }

    .sale-blocks__item .count-box .count-text {
        font-size: 9px;
    }

    .sale-blocks__item--blue {
        background-image: none;
    }

    .sale-blocks__item--green {
        background-image: none;
    }

    .sale-blocks__item {
        padding: 10px 20px;
    }

    .sale-blocks {
        margin-top: 50px;
        margin-bottom: 45px;
    }

    .sale-blocks--page {
        margin-top: 0;
        margin-bottom: 45px;
    }

    .page-title h1 {
        margin-top: 20px;
        margin-bottom: 23px;
        font-size: 30px;
    }

    .delivery__item .icon {
        width: 8%;
    }

    .img--page {
        max-height: 250px;
        margin-bottom: 30px;
    }

    .write-us__form {
        left: 0;
        transform: translateX(0);
        width: 600px;
    }

    .map iframe {
        height: 350px !important;
    }

    .about-product__item .image {
        height: 200px;
    }

    .about-product__item .image.pull-left {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 10px;
        padding-right: 10px;
    }

    .about-product__item .image.pull-right {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 10px;
        padding-left: 10px;
    }

    .products__item .img .hover table {
        margin-bottom: 25px;
    }

    .products__item--ad .text {
        padding: 20px;
        font-size: 25px;
    }

    .menu--top {
        display: none;
    }

    .mobile-menu-icon a {
        display: block;
    }

    .address {
        display: none;
    }

    .menu-series {
        display: none;
    }

    .bottom-line__item:last-child {
        width: 186px;
    }

    .logo {
        max-width: 300px;
        margin: -4px 0 16px;
    }

    .search-line .search-box {
        height: 40px;
    }

    .search-line button {
        font-size: 16px;
    }

    .phones {
        font-size: 18px;
        margin-top: 13px;
        text-align: right;
    }

    .messengers__item {
        margin: 8px 4px 2px;
    }

    .order-call {
        margin-top: 14px;
    }

    .menu--main .menu__item a,
    .menu-box .search a {
        font-size: 14px;
    }

    .menu-box .search a .icon {
        width: 15px;
    }

    .menu--main .menu__item a,
    .menu-box .search a {
        padding: 13px 0 13px 0;
    }

    .banner--main > .img {
        height: 363px;
    }

    .categories {
        bottom: 36px;
    }

    .categories__item .link {
        font-size: 11px;
        height: 26px;
        line-height: 26px;
    }

    .categories__item {
        height: 100px;
        padding: 14px 0 0;
    }

    .categories__item .name {
        font-size: 12px;
        line-height: 13px;
    }

    .categories__item .img {
        height: 38px;
        bottom: 35px;
    }

    .categories__item .img .icon {
        max-height: 100%;
        max-width: 60%;
    }

    .categories--without_img {
        bottom: 0;
    }

    .categories--without_img .name {
        padding-left: 0;
        text-align: center;
    }

    .categories--without_img .categories__item {
        text-align: center;
    }

    .info-blocks__item {
        margin: 25px 0;
    }

    .info-blocks__item .text .head {
        font-size: 37px;
        line-height: 37px;
        margin: 0 0 5px 0;
    }

    .info-blocks__item .text .body {
        font-size: 15px;
        line-height: 22px;
    }

    .info-blocks__item .text .head--wide {
        font-size: 24px;
        line-height: 24px;
    }

    .info-blocks__item .text .head--cursive {
        font-size: 20px;
        line-height: 20px;
    }

    .info-blocks {
        padding: 20px 0 0;
    }

    .section {
        margin: 25px 0 25px 0;
    }

    .posts {
        padding: 16px 0;
    }

    .posts .head {
        font-size: 31px;
        margin-bottom: 6px;
    }

    .posts .head:after {
        width: 60px;
        height: 45px;
        right: 11px;
        top: 7px;
    }

    .posts__item .img {
        height: 152px;
    }

    .posts__item .tags {
        margin: 7px 0 4px;
    }

    .posts .more a {
        padding: 8px 23px;
        font-size: 16px;
    }

    .posts .more {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .rewards:after {
        position: absolute;
        content: "";
        width: 128px;
        height: 100px;
        left: 10px;
        top: -25px;
    }

    .rewards {
        height: 200px;
    }

    .rewards__item {
        padding: 0 35px;
    }

    .about {
        padding: 17px 0 13px;
    }

    .site-footer .social__item {
        height: 16px;
        width: 19px;
        margin-right: 3px;
    }

    .site-footer .phones {
        font-size: 14px;
    }

    .site-footer .messengers {
        text-align: right;
        margin-top: 0;
    }

    .site-footer .messengers__item {
        margin: 0 2px;
    }

    .site-footer .messengers__item .icon {
        width: 20px;
    }

    .site-footer .top-line {
        padding: 22px 0 17px;
    }

    .bottom-line__item {
        padding-top: 27px;
    }

    .bottom-line__item ul li a {
        line-height: 23px;
    }

    .site-footer .img-logo {
        margin: 20px 0 4px;
    }

    .bottom-line__item:nth-child(3):after {
        width: 52px;
    }

    .section-head {
        font-size: 24px;
    }

    .categories--detail {
        padding: 20px 0 3px;
    }

    .page-title h1 {
        margin-top: 20px;
        margin-bottom: 16px;
        font-size: 24px;
    }

    .features__item {
        margin-right: 3px;
    }

    .features__item .icon {
        width: 33px;
        height: 33px;
    }

    .features {
        margin-bottom: 20px;
        margin-top: 25px;
    }

    .description-product .text {
        color: #636363;
        font-size: 16px;
    }

    .description-product {
        margin-bottom: 30px;
    }

    .bottom-properties__item {
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .sidebar--prod {
        max-width: 440px;
        margin: 0 auto 30px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -15px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -15px;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel button.owl-dot {
        width: 15px;
    }

    .steps .form-head {
        padding-top: 5px;
    }

    .steps__item .body {
        padding: 15px 0 10px;
    }

    .label {
        display: inline;
    }

    .viewed {
        padding: 0 15px;
    }

    .not-pad {
        padding: 0 15px;
    }

    .basket-box .element .image {
        height: 110px;
        margin-bottom: 20px;
    }

    .basket-box .element .count {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .basket-box .element .visible-xs-inline {
        margin-right: 10px;
    }

    .basket-box .element .name {
        margin-bottom: 30px;
    }

    .basket-box .element .art {
        margin-bottom: 20px;
    }

    .basket-box .element .label {
        color: #50504c;
    }

    .basket-box .element .delete-link span {
        opacity: 0 !important;
    }

    .basket-box .element .delete-link:before {
        top: 50%;
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }

    .basket-box .element .delete-link:after {
        top: 50%;
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }

    .authorization .inp {
        max-width: 100%;
        width: 350px;
        margin-bottom: 5px;
    }

    .all-sum__item {
        display: block;
        margin-right: 0;
    }

    .all-sum {
        display: block;
        width: 100%;
    }

    .page-title h1 {
        margin-top: 20px;
        margin-bottom: 16px;
        font-size: 20px;
    }

    .tabs {
        margin-bottom: 10px;
        margin-top: 5px;
    }

    .tabs__item {
        margin-right: 30px;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .product-box {
        padding: 14px 0 40px;
    }

    .top-properties .price-text {
        font-size: 25px;
    }

    .top-properties__item {
        margin-bottom: 16px;
    }

    .min-imgs__item {
        width: 93px;
        height: 93px;
        margin-bottom: 5px;
        margin-right: 2px;
    }

    .buttons {
        font-size: 0;
        max-width: 500px;
        margin: 14px auto 8px;
    }

    .buttons .button {
        padding: 0;
        display: block;
        width: 100%;
        margin: 0;
    }

    .buttons__item {
        width: 50%;
        margin-bottom: 10px;
    }

    .features {
        margin-top: 8px;
    }

    .buttons__item:nth-child(2n) {
        width: 50%;
        padding-left: 5px;
    }

    .buttons__item:nth-child(2n + 1) {
        width: 50%;
        padding-right: 5px;
    }

    .buttons__item:last-child {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .features__item {
        margin-right: 7px;
    }

    .features__item .icon {
        width: 46px;
        height: 46px;
    }

    .quote {
        padding-bottom: 7px;
        margin-bottom: 24px;
        line-height: 23px;
    }

    .description-product {
        margin-bottom: 18px;
    }

    .bottom-properties__item {
        margin-bottom: 15px;
    }

    #slider {
        margin-bottom: 15px;
    }

    .mobile-link-drop-menu {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 13;
    }

    .sidebar--personal {
        position: relative;
    }

    .sidebar--personal .left-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0 15px;
        z-index: 12;
        opacity: 0;
        background: #fff;
        transition: all 0.3s ease;
    }

    .table-adaptive tr td {
        padding-left: 35px;
    }
    .table-adaptive tr td:first-child {
        padding-left: 10px;
    }

    .sidebar--personal .left-menu.active {
        display: block;
        opacity: 1;
        transition: all 0.3s ease;
        position: static;
        padding: 0;
        margin-top: 2px;
    }

    .sidebar .head {
        padding: 10px 60px 10px 20px;
        font-size: 20px;
        margin-bottom: 0;
    }

    .sidebar--personal {
        margin-bottom: 15px;
        padding-bottom: 3px;
    }
    .sidebar--personal:after {
        display: none;
    }

    .sidebar .left-menu__item.active a {
        width: 100%;
    }

    .content table {
        margin-bottom: 25px;
    }

    table.history {
        display: block;
    }
    table.history tr {
        border-bottom: 1px solid #d1d1d1;
        display: block;
        padding: 5px;
    }
    table.history tr td {
        display: block;
        border: none;
        padding: 0;
    }
    table.history tbody td {
        display: inline;
        border: none;
        margin-right: 10px;
    }
    table.history tfoot tr:last-child {
        border: none;
    }

    .videos iframe {
        height: 340px;
    }

    .page-title h1 {
        margin-top: 13px;
        margin-bottom: 9px;
    }

    .filters--page {
        text-align: left;
    }

    .filters--page .filters__item {
        width: auto;
        margin-bottom: 6px;
    }

    .filters--page .filters__item a {
        font-size: 12px;
        padding: 1px 9px;
    }

    .write-us__form {
        left: 50%;
        transform: translateX(-50%);
    }

    table.contacts .phone__item {
        width: 50%;
        margin-right: 0;
    }

    .sale-blocks__item .count-box .count {
        margin: 0 auto 20px;
    }

    .sale-blocks {
        margin-bottom: 18px;
        margin-top: 40px;
    }

    .sale-blocks--page {
        margin-bottom: 18px;
        margin-top: 0;
    }

    .sale-blocks__item {
        margin-bottom: 20px;
    }

    .sale-blocks__item .count-box .count-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .sale-blocks__item .count-box .count-text-box {
        text-align: center;
        padding-right: 15px;
        margin-bottom: 6px;
    }

    .sale-blocks__item .count-box {
        padding-top: 10px;
        margin-top: 18px;
    }

    .sale-blocks__item .numbers {
        margin-top: 11px;
    }

    .sale-blocks__item .description {
        font-size: 15px;
    }

    .sale-blocks__item .head {
        font-size: 30px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .sale-blocks__item {
        padding: 160px 20px 10px 20px;
    }

    .sale-blocks__item--blue {
        background: #90ecec url(../img/doodle_blue.png) no-repeat 50% 0 / auto 150px;
    }

    .sale-blocks__item--green {
        background: #8cebac url(../img/doodle_green.png) no-repeat 50% 0 / auto
        150px;
    }

    .products--sales {
        padding-bottom: 10px;
    }

    .products--sales .page-title h1 {
        margin-top: 12px;
        margin-bottom: 5px;
        font-size: 30px;
    }

    .products--sales .page-title {
        margin-bottom: 14px;
    }

    .filters--sales .filters__item a {
        padding: 0 7px;
        font-size: 18px;
    }

    .products--sales .products__item:before {
        width: 30%;
    }

    table.contacts .phone__item {
        font-size: 14px;
        width: 100%;
    }

    table.contacts {
        font-size: 13px;
    }

    table.contacts a {
        font-size: 14px;
    }

    .table-responsive {
        border: none;
    }

    .write-us__form .head {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .write-us__form .inp {
        padding: 10px 10px 10px 20px;
    }

    .write-us__form .inp_button {
        padding: 8px 30px;
        font-size: 16px;
    }

    .write-us__form .inp-box {
        padding: 0 15px;
    }

    .write-us__form {
        left: 50%;
        transform: translateX(-50%);
        width: 470px;
        max-width: 100%;
        padding: 25px 20px;
    }

    .about-product__item .image {
        height: auto;
    }

    .about-product__item .image img {
        height: auto;
        width: 100%;
    }

    .about-product__item .image {
        width: 100%;
    }

    .about-product__item .image.pull-right,
    .production__item .image.pull-right,
    .about-product__item .image.pull-left,
    .production__item .image.pull-left {
        display: block;
        margin: 10px auto;
        float: none !important;
        padding: 0;
    }

    h1 {
        margin-top: 25px;
        margin-bottom: 5px;
        font-size: 30px;
    }

    .filters {
        font-size: 0;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .filters__item {
        margin-left: 0;
        display: inline-block;
        width: 50%;
        vertical-align: top;
    }

    .products__item .img .hover {
        display: none;
    }

    .products__item .img {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .products__item:hover .img img {
        position: static;
        transform: translateX(0) translateY(0);
    }

    .products__item .img img {
        position: static;
        transform: translateX(0) translateY(0);
    }

    .products__item {
        margin: 0 auto 20px;
        max-width: 340px;
    }

    .categories {
        position: static;
        margin-top: -35px;
    }

    .categories-box .categories__item {
        height: auto;
        padding: 14px 0 14px;
    }

    .categories-box .categories__item .img {
        display: none;
    }

    .categories-box .categories__item .link {
        display: none;
    }

    .search-mobile {
        display: block;
    }

    .language {
        display: none;
    }

    .user-block__item a {
        width: 30px;
        height: 30px;
        padding: 0;
        background: transparent;
        margin-left: 5px;
    }

    .user-block__item a .icon {
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .user-block__item:first-child:before {
        display: none;
    }

    .user-block__item:after {
        display: none;
    }

    .top-line {
        background-color: #e7e7e7;
        padding: 4px 0;
    }

    .messengers__item .icon--main {
        display: none;
    }

    .messengers__item .icon--hover {
        display: block;
    }

    .site-footer .social {
        text-align: center;
    }

    .logo-bottom {
        text-align: center;
    }

    .site-footer .img-logo {
        margin: 11px 0 28px;
    }

    .site-footer .social__item {
        height: 22px;
        margin-right: 15px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .logo {
        max-width: 300px;
        margin: 10px auto 0;
    }

    .phones {
        font-size: 16px;
        margin-top: 11px;
        text-align: center;
    }

    .phones__item {
        margin-bottom: 5px;
    }

    .mobile-right {
        text-align: right;
    }

    .mobile-left {
        text-align: left;
    }

    .messengers {
        margin-top: 0;
        margin-bottom: 9px;
    }

    .messengers__item {
        margin: 5px 3px 5px;
    }

    .menu--left-part {
        padding-right: 15px;
    }

    .menu--right-part {
        padding-left: 15px;
    }

    .menu--main .menu__item a {
        padding: 8px 0 8px 0;
        font-size: 24px;
    }

    .menu--main {
        text-align: center;
    }

    .menu--main > .menu__item {
        display: block;
    }

    .categories__item {
        height: 135px;
        padding: 14px 0 0;
        margin-bottom: 10px;
    }

    .categories__item-box {
        padding: 0 5px;
    }

    .categories__item .link {
        font-size: 14px;
        height: 30px;
        line-height: 30px;
    }

    .categories__item .name {
        font-size: 17px;
        line-height: 20px;
        padding: 0 10px;
    }

    .categories__item .img {
        height: 70px;
        bottom: 35px;
    }

    .posts__item .img img {
        width: 100%;
    }

    .posts__item .img {
        height: auto;
    }

    .mobile-menu-icon a {
        height: 30px;
        width: 45px;
    }

    .mobile-menu-icon a span {
        margin: 5px auto;
    }

    .banner--main > .img {
        height: auto;
    }

    .section {
        margin: 5px 0 5px 0;
    }

    .posts .head:after {
        display: none;
    }

    .posts {
        padding: 24px 0;
    }

    .posts .head {
        font-size: 31px;
        margin-bottom: 0;
    }

    .posts__item .name a {
        font-size: 21px;
    }

    .posts__item .tags {
        margin: 7px 0 5px;
    }

    .posts .more {
        margin-top: 14px;
        margin-bottom: 9px;
    }

    .posts .more a {
        padding: 3px 12px;
        font-size: 16px;
    }

    .info-blocks {
        padding: 20px 0 0;
    }

    .info-blocks__item {
        margin: 3px 0 25px 0;
    }

    .info-blocks__item .text .head {
        font-size: 49px;
        line-height: 49px;
        margin: 15px 0 11px 0;
    }

    .info-blocks__item .text .body {
        font-size: 16px;
        line-height: 22px;
    }

    .info-blocks__item .text .more {
        text-align: right;
        margin: 9px 17px;
    }

    .info-blocks__item .text .head--wide {
        letter-spacing: 7px;
        font-size: 25px;
        line-height: 25px;
    }

    .info-blocks__item .text .head--small {
        font-size: 33px;
        line-height: 33px;
    }

    .info-blocks__item .text .head--cursive {
        font-size: 22px;
        line-height: 22px;
        margin: 24px 0 27px 0;
    }

    .rewards {
        height: auto;
        display: block;
        padding: 48px 0 0;
        text-align: center;
    }

    .rewards__item {
        display: inline-block;
        padding: 0 5px;
        height: 149px;
        margin-bottom: 15px;
    }

    .rewards__item img {
        max-width: 100%;
        display: inline-block;
        max-height: 100%;
        vertical-align: bottom;
    }

    .rewards-box--page.section {
        margin-top: 50px;
    }

    .products--sales .filters__item {
        width: auto;
        margin-right: 5px;
    }

    .products--sales .filters {
        margin-bottom: 20px;
    }

    .posts--page {
        padding: 10px 0;
    }

    .posts__item {
        margin-bottom: 30px;
    }

    .categories--without_img {
        margin-top: 0;
    }

    .section-head {
        font-size: 29px;
    }

    .form input {
        padding: 14px 14px;
        margin-bottom: 13px;
    }

    .form button.send {
        padding: 12px 23px;
        margin-top: 2px;
        margin-bottom: 5px;
    }

    .form {
        margin-bottom: 6px;
    }
}
@media (max-width: 530px) {
    .videos iframe {
        height: 250px;
    }

    .delivery__item .icon {
        width: 16%;
    }

    .delivery__item .text {
        width: 84%;
    }

    .categories-box .categories__item {
        height: 50px;
        line-height: 50px;
        padding: 0;
        text-align: center;
    }
    .categories-box .categories__item .name {
        line-height: normal;
        display: inline-block;
        padding: 0;
    }
}
@media (max-width: 500px) {
    .form label span {
        display: block;
        width: auto;
        padding: 3px 5px 3px 5px;
    }

    .form label input {
        padding: 8px 14px;
    }

    .form label input {
        width: 100%;
    }

    .col-not-pad {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form .col-not-pad label span {
        text-align: left;
        padding-right: 0;
    }
}
@media (max-width: 370px) {
    .videos iframe {
        height: 230px;
    }

    .products__item {
        margin: 0 auto 25px;
        max-width: 100%;
    }
}
.box-shadow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: none;
}

.box-modal-fixed--menu {
    position: fixed;
    width: 245px;
    height: 100%;
    z-index: 101;
    background-color: #fff;
    left: 0;
    overflow: auto;
    top: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}
.box-modal-fixed--menu.active {
    visibility: visible;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.box-modal-fixed--order {
    position: fixed;
    width: 300px;
    z-index: 102;
    background-color: #fff;
    left: 50%;
    overflow: auto;
    top: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s ease;
    padding: 25px 30px;
    text-align: left;
    border: 1px solid #d3d3d3;
}
.box-modal-fixed--order.active {
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
}
.box-modal-fixed--order.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}
.box-modal-fixed--order .head {
    color: #292929;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    text-align: left;
    margin-bottom: 15px;
}
.box-modal-fixed--order .inp {
    color: #8a8988;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 10px 10px 10px 25px;
    margin-bottom: 10px;
    border: 1px solid #bbb5a5;
}
.box-modal-fixed--order .inp.error {
    margin-bottom: 0;
}
.box-modal-fixed--order .inp-box {
    padding: 0 10px;
}
.box-modal-fixed--order .inp-box:first-child {
    padding-left: 15px;
}
.box-modal-fixed--order .inp-box:nth-child(2) {
    padding-right: 15px;
}
.box-modal-fixed--order .inp_button {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    background: #c42231;
    border: none;
    outline: none;
    padding: 10px 35px;
}
.box-modal-fixed--order .inp_button:hover {
    background-color: #ae1e2b;
}
.box-modal-fixed--order textarea.inp {
    height: 155px;
}

.box-modal-fixed--order-basket {
    position: fixed;
    width: 300px;
    z-index: 103;
    background-color: #fff;
    left: 50%;
    overflow: auto;
    top: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s ease;
    padding: 25px 30px;
    text-align: left;
    border: 1px solid #d3d3d3;
}
.box-modal-fixed--order-basket.active {
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
}
.box-modal-fixed--order-basket.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}
.box-modal-fixed--order-basket .head {
    color: #292929;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    text-align: left;
    margin-bottom: 15px;
}
.box-modal-fixed--order-basket .inp {
    color: #8a8988;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 10px 10px 10px 25px;
    margin-bottom: 10px;
    border: 1px solid #bbb5a5;
}
.box-modal-fixed--order-basket .inp.error {
    margin-bottom: 0;
}
.box-modal-fixed--order-basket .inp-box {
    padding: 0 10px;
}
.box-modal-fixed--order-basket .inp-box:first-child {
    padding-left: 15px;
}
.box-modal-fixed--order-basket .inp-box:nth-child(2) {
    padding-right: 15px;
}
.box-modal-fixed--order-basket .inp_button {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    background: #c42231;
    border: none;
    outline: none;
    padding: 10px 35px;
}
.box-modal-fixed--order-basket .inp_button:hover {
    background-color: #ae1e2b;
}
.box-modal-fixed--order-basket textarea.inp {
    height: 155px;
}

.box-modal-fixed--order_one_click {
    position: fixed;
    width: 300px;
    z-index: 104;
    background-color: #fff;
    left: 50%;
    overflow: auto;
    top: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s ease;
    padding: 25px 30px;
    text-align: left;
    border: 1px solid #d3d3d3;
}
.box-modal-fixed--order_one_click.active {
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
}
.box-modal-fixed--order_one_click.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}
.box-modal-fixed--order_one_click .head {
    color: #292929;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    text-align: left;
    margin-bottom: 15px;
}
.box-modal-fixed--order_one_click .inp {
    color: #8a8988;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 10px 10px 10px 25px;
    margin-bottom: 10px;
    border: 1px solid #bbb5a5;
}
.box-modal-fixed--order_one_click .inp.error {
    margin-bottom: 0;
}
.box-modal-fixed--order_one_click .inp-box {
    padding: 0 10px;
}
.box-modal-fixed--order_one_click .inp-box:first-child {
    padding-left: 15px;
}
.box-modal-fixed--order_one_click .inp-box:nth-child(2) {
    padding-right: 15px;
}
.box-modal-fixed--order_one_click .inp_button {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    background: #c42231;
    border: none;
    outline: none;
    padding: 10px 35px;
}
.box-modal-fixed--order_one_click .inp_button:hover {
    background-color: #ae1e2b;
}
.box-modal-fixed--order_one_click textarea.inp {
    height: 155px;
}

.box-modal-fixed--rassr {
    position: fixed;
    width: 600px;
    max-width: 100%;
    z-index: 105;
    background-color: #fff;
    max-height: 90vh;
    left: 50%;
    overflow: auto;
    top: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s ease;
    padding: 25px 30px;
    text-align: left;
    border: 1px solid #d3d3d3;
}
.box-modal-fixed--rassr.active {
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
}
.box-modal-fixed--rassr.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}
.box-modal-fixed--rassr .head {
    color: #292929;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    text-align: left;
    margin-bottom: 15px;
}
.box-modal-fixed--rassr .inp {
    color: #8a8988;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 10px 10px 10px 25px;
    margin-bottom: 10px;
    border: 1px solid #bbb5a5;
}
.box-modal-fixed--rassr .inp.error {
    margin-bottom: 0;
}
.box-modal-fixed--rassr .inp-box {
    padding: 0 10px;
}
.box-modal-fixed--rassr .inp-box:first-child {
    padding-left: 15px;
}
.box-modal-fixed--rassr .inp-box:nth-child(2) {
    padding-right: 15px;
}
.box-modal-fixed--rassr .inp_button {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    background: #c42231;
    border: none;
    outline: none;
    padding: 10px 35px;
}
.box-modal-fixed--rassr .inp_button:hover {
    background-color: #ae1e2b;
}
.box-modal-fixed--rassr textarea.inp {
    height: 155px;
}

.box-modal-fixed--sale {
    position: fixed;
    width: 300px;
    z-index: 106;
    background-color: #fff;
    max-height: 90vh;
    left: 50%;
    overflow: auto;
    top: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.3s ease;
    padding: 25px 30px;
    text-align: left;
    border: 1px solid #d3d3d3;
}
.box-modal-fixed--sale.active {
    visibility: visible;
    transition: all 0.3s ease;
    opacity: 1;
}
.box-modal-fixed--sale.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}
.box-modal-fixed--sale .head {
    color: #292929;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    text-align: left;
    margin-bottom: 15px;
}
.box-modal-fixed--sale .inp {
    color: #8a8988;
    font-family: "MuseoSansRegular", sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 10px 10px 10px 25px;
    margin-bottom: 10px;
    border: 1px solid #bbb5a5;
}
.box-modal-fixed--sale .inp.error {
    margin-bottom: 0;
}
.box-modal-fixed--sale .inp-box {
    padding: 0 10px;
}
.box-modal-fixed--sale .inp-box:first-child {
    padding-left: 15px;
}
.box-modal-fixed--sale .inp-box:nth-child(2) {
    padding-right: 15px;
}
.box-modal-fixed--sale .inp_button {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    background: #c42231;
    border: none;
    outline: none;
    padding: 10px 35px;
}
.box-modal-fixed--sale .inp_button:hover {
    background-color: #ae1e2b;
}
.box-modal-fixed--sale textarea.inp {
    height: 155px;
}
@media (max-width: 767px) {
    .banner--main {
        min-height: 180px;
    }
}
@media (min-width: 1300px) and (max-width: 1499px) {
    .categories__item {
        height: 160px;
    }
    .categories {
        bottom: -10px;
    }
}
@media (min-width: 1300px) {
    .categories__item .name {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .user-block {
        margin-left: -30px;
    }
}
.form-control {
    height: fit-content;
}

@media (min-width: 1600px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1500px;
    }
}
