

/* Start:/local/templates/main/styles/common.css?1788962555128224*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,700&subset=cyrillic&display=swap');

* {
    margin: 0;
    padding: 0;
    font: inherit;
    box-sizing: border-box;
}

span,
input {
    padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-focus-ring-color: rgba(255, 255, 255, 0);
    cursor: default;
}

body {
    font-size: 100%;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

a {
    background: transparent;
}

*:focus,
*:active,
*:hover {
    outline: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    -moz-tab-size: 4;
    tab-size: 4;
    white-space: pre-wrap;
}

q {
    quotes: '\201C' '\201D' '\2018' '\2019';
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button {
    overflow: visible;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

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

textarea {
    overflow: auto;
    vertical-align: top;
}

button,
input,
select[multiple],
textarea {
    background-image: none;
    background-color: transparent;
}

input,
select,
textarea {
    border-radius: 0;
    box-shadow: none;
}

input,
textarea {
    resize: none;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

[placeholder]:focus::-webkit-input-placeholder {
    color: transparent;
}

[placeholder]:focus::-moz-placeholder {
    color: transparent;
}

[placeholder]:focus:-ms-input-placeholder {
    color: transparent;
}

[placeholder]:focus::placeholder {
    color: transparent;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    color: #000;
    background: #fff;
}


/* Выше идет нормалайз. Ниже базовые стили элементов */

h1,
.h1 {
    color: #37474f;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}

/*походие статьи*/
.similar-articles {
    margin-top: 30px;
}

.similar-articles h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 колонок */
    gap: 20px; /* Расстояние между статьями */
}

.article-item {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-item:hover {
    transform: translateY(-5px);
}

.article-item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Обеспечивает обрезку картинки до квадрата */
    border-radius: 8px;
}

.article-item h4 {
    font-size: 16px;
    margin: 10px 0;
    font-weight: bold;
}

.article-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}


@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 статьи в ряд */
    }
}

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 статьи в ряд */
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 статьи в ряд */
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr; /* 1 статья в ряд */
    }
}


@media only screen and (max-width:563px) {

    h1,
    .h1 {
        font-size: 30px;
    }
}

.h1-left {
    text-align: left;
    max-width: 525px;
}

h2 {
    color: black;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

@media only screen and (max-width:563px) {
    h2 {
        font-size: 23px;
    }
}

.h2 {
    font-size: 27px;
    margin-bottom: 20px;
}

h3,
.h3 {
    font-size: 23px;
    margin-bottom: 16px;
}

h4,
.h4 {
    font-size: 19px;
    margin-bottom: 12px;
}

h5,
.h5 {
    font-size: 15px;
    margin-bottom: 12px;
    margin-top: 12px;
}

h6,
.h6 {
    font-size: 15px;
    margin-bottom: 12px;
}

ol,
.ol,
ul,
.ul {
    margin-bottom: 25px;
    padding: 0 0 0 1.5em;
    list-style-position: inside;
}

ol ul,
.ol ul,
ul ul,
.ul ul,
ol .ul,
.ol .ul,
ul .ul,
.ul .ul,
ol ol,
.ol ol,
ul ol,
.ul ol,
ol .ol,
.ol .ol,
ul .ol,
.ul .ol {
    margin-top: 0.6em;
    margin-bottom: 0.3em;
}

ul,
.ul {
    list-style-type: disc;
    font-size: 15px;
    color: #37474f;
}

ol,
.ol {
    list-style-type: decimal;
}

li,
.li {
    line-height: 24px;
}

a:not([class]) {
    text-decoration: none;
    color: #038cdb;
}

u,
.u {
    text-decoration: underline;
}

sup,
.sup {
    font-size: smaller;
    vertical-align: super;
}

sub,
.sub {
    font-size: smaller;
    vertical-align: sub;
}

img,
.img {
    border: 0 none;
}

p,
.p {
    color: #37474f;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 15px;
}

small,
.small {
    font-size: 0.8em;
}

big,
.big {
    font-size: 1.2em;
}

abbr,
.abbr {
    border-bottom: 1px dashed #343434;
}

blockquote,
.blockquote {
    margin-bottom: 0.9em;
    padding: 1.5em 2em;
    background: #ebebeb;
}

var,
.var {
    font-style: italic;
}

em,
.em,
i,
.i {
    font-style: italic;
}

b,
.b,
strong,
.strong {
    font-weight: 700;
}

s,
.s,
strike,
.strike {
    text-decoration: line-through;
}

pre,
.pre {
    padding: 1em;
    background: #f1f1f1;
}

table,
.table {
    width: 100%;
    border: 1px solid #b5b5b5;
    margin-bottom: 0.9em;
}

caption,
.caption {
    padding: 0.5em 0;
    font-size: 1.5em;
}

th,
.th,
td,
.td {
    padding: 0.5em;
    border: 1px solid #b5b5b5;
}

@media only screen and (max-width:563px) {
    .td {
        padding: 4px;
    }
}

th,
.th {
    text-align: center;
}

img,
form,
.form,
iframe,
.iframe,
object,
.object,
video,
.video {
    max-width: 100%;
    border: 0 none;
}

.clear {
    content: '';
    display: table;
    clear: both;
}

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

.nav {
    margin-bottom: 0;
}

.nav li {
    display: inline-block;
    list-style: none;
    margin-bottom: 0;
}

.navigation-item.hFixNav {
    padding: 1% 2%;
}

.page {
    position: relative;
    min-height: 100%;
    overflow: auto;
    overflow-x: hidden;
}

.body {
    /*margin-bottom: 330px;*/
    /* Отступ от футера. Равен высоте футера + отступ от контента до футера. Нужен если используюется прилипающий футер */
    color: #000;
    /* Базовый цвет шрифта */
    font-size: 13px;
    /* Базовый размер шрифта */
    font-family: 'Roboto', sans-serif;
    /* Базовое семейство шрифтов */
    font-weight: 400;
    /* Базовая жырность шрифта */
    line-height: 1.3;
    /* Базовая высота строки */
    /* Базовый цвет фона */
    overflow-x: hidden;
}

@media only screen and (min-width:865px) and (max-width:1085px) {
    .body {
        /*margin-bottom: 310px;*/
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .body {
        /*margin-bottom: 202px;*/
    }
}

@media only screen and (max-width:563px) {
    .body {
        /*margin: 0 auto 250px auto;*/
    }
}

.p__holder {
    padding-top: 25px;
    background: url(/local/templates/main/styles/../images/backgrounds/bg.png);
}

.p__holder-wrapp {
    width: 1180px;
    margin: 0 auto;
    padding-bottom: 1px;
}

.p__holder-wrapp h2+p {
    padding-top: 15px;
}

@media only screen and (min-width:865px) and (max-width:1180px) {
    .p__holder-wrapp {
        width: 100%;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .p__holder-wrapp {
        width: 500px;
    }
}

@media only screen and (max-width:563px) {
    .p__holder-wrapp {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.p__header {
    width: 100%;
    min-height: 239px;
    background: #fff;
    position: relative;
    top: 0px;
    z-index: 999;
    transition: all 0.3s ease;
}

.p__header.fixed  {
    position: fixed;
    top: 0;
    left: 0;
}

@media (max-width: 1026px) {
    .p__header {
        min-height: 231px;
    }
}

@media (max-width: 866px) {
    .p__header {
        min-height: 121px;
    }
}

@media (max-width: 632px) {
    .p__header {
        min-height: 112px;
    }
}

@media (max-width: 564px) {
    .p__header {
        min-height: 75px;
    }
}

.h__top {
    border-bottom: 7px solid #eebb00;
    position: relative;
}

.navigation {
    width: 1180px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding: 0;
    text-transform: uppercase;
}

@media only screen and (min-width:865px) and (max-width:1180px) {
    .navigation {
        width: 100%;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .navigation {
        width: 500px;
        display: none;
        border: 1px solid #e0e4e8;
        width: 100%;
        position: absolute;
        background: #fff;
        z-index: 20;
        top: 100%;
    }
}

@media only screen and (max-width:563px) {
    .navigation {
        width: 300px;
        display: none;
        border: 1px solid #e0e4e8;
        width: 100%;
        position: absolute;
        background: #fff;
        z-index: 20;
        top: 100%;
    }
}

.h__navigation {
    border-bottom: 1px solid #e0e4e8;
    width: 100%
}

.navigation-item {
    margin: 10px auto;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 21px;
    text-transform: uppercase;
    text-align: center;
    padding: 1% 0;
}

@media only screen and (max-width:1220px) {
    .navigation-item {
        padding: 1% 0.7%;
    }

    .navigation-item.hFixNav {
        padding: 1% 0.7%;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .nav .navigation-item {
        display: block;
        border-bottom: 1px solid #e0e4e8;
    }
}

@media only screen and (max-width:563px) {
    .nav .navigation-item {
        display: block;
        border-bottom: 1px solid #e0e4e8;
    }
}

.navigation-item a:first-child,
.navigation-item a:last-child {
    padding: 0;
}

.navigation-item a {
    display: block;
    width: 100%;
    color: black !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 21px;
    text-transform: uppercase;
}

.navigation-item:hover,
.navigation-item:visited {
    color: black;
    text-decoration: none;
}

.h__top-bottom {
    width: 1180px;
    margin: 10px auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media only screen and (min-width:865px) and (max-width:1180px) {
    .h__top-bottom {
        width: 100%;
        margin: 10px 0 5px;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .h__top-bottom {
        width: 500px;
        position: relative;
    }
}

@media only screen and (max-width:563px) {
    .h__top-bottom {
        width: 300px;
    }
}

.h__logo {
    display: inline-block;
    padding-right: 10px;
}

@media only screen and (max-width:563px) {
    .h__logo img {
        width: 50%;
    }
}

.h__slogan {
    border-left: 1px solid #eebb00;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    color: #000;
    width: 15%;
    padding: 5px 0 5px 15px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .h__slogan {
        display: none;
    }
}

@media only screen and (max-width:563px) {
    .h__slogan {
        display: none;
    }
}

.h__contact {
    display: inline-block;
    vertical-align: top;
}

.h__contact-phone {
    color: #eebb00;
    font-size: 17px;
    font-weight: 900;
    line-height: 21px;
    position: relative;
    margin-left: 42px;
}

.h__contact-phone a {
    color: #eebb00;
}

.h__contact-phone:before {
    content: url(/local/templates/main/styles/../images/icons/phone.png);
    display: block;
    position: absolute;
    left: -14%;
    top: 4%;
}

@media only screen and (max-width:563px) {
    .h__contact-phone {
        margin-left: 0;
    }

    .h__contact-phone:before {
        content: '';
    }
}

.h__contact-grafik {
    position: relative;
    margin-left: 42px;
    margin-top: 1%;
    font-size: 15px;
}

@media only screen and (max-width:563px) {
    .h__contact-grafik {
        display: none;
    }
}

.h__contact-grafik:before {
    content: url(/local/templates/main/styles/../images/icons/clock.png);
    display: block;
    position: absolute;
    left: -14%;
    top: 4%;
}

.red-btn {
    background: #eebb00;
    color: #fff;
    border: none;
    padding: 13px;
}

.red-btn:hover {
    background: #eebb00;
}

.h__callback {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 3%;
    padding-left: 30px;
    font-size: 15px;
}

#button-up {
    display: none;
    opacity: 0.9;
    filter: alpha(opacity=90);
    position: fixed;
    right: 0px;
    bottom: 60px;
    color: #000;
    transition: .3s;
    z-index: 9;
}

#button-up:hover {
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
    transition: .3s;
    color: #FF0000;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .h__callback {
        margin-top: 0;
        width: 210px;
        top: 65%;
        right: 10%;
        font-size: 13px;
        padding-right: 11px;
        position: absolute;
    }
}

.h__callback:before {
    content: url(/local/templates/main/styles/../images/icons/call.png);
    display: block;
    position: absolute;
    left: 3%;
    top: 27%;
}

.h__callback-mobil {
    display: none;
}

@media only screen and (max-width:563px) {
    .h__callback {
        display: none;
    }

    .h__callback-mobil:before {
        content: '';
    }

    .h__callback-mobil {
        margin-top: 1%;
        display: block;
        margin-left: 0;
        padding: 10px;
        font-size: 14px;
    }
}

.h__calculation {
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 1%;
    margin-left: 1%;
    padding-left: 30px;
    font-size: 13px;
    text-decoration: none;
    height: 44px;
    width: 19.5%;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .h__calculation {
        width: 43.5%;
        font-size: 12px;
    }
}

.h__calculation a {
    color: #fff;
}

.h__calculation:before {
    content: url(/local/templates/main/styles/../images/icons/calc.png);
    display: block;
    position: absolute;
    left: 5%;
    top: 30%;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .h__catalog {
        display: none;
    }
}

@media only screen and (max-width:563px) {
    .h__catalog {
        display: none;
    }
}

@media only screen and (max-width:563px) {
    .h__calculation {
        display: none;
    }
}

.h__kat-wrapp {
    width: 1180px;
    margin: 13px auto -4px auto;
}

@media only screen and (min-width:865px) and (max-width:1180px) {
    .h__kat-wrapp {
        width: 100%;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .h__kat-wrapp {
        width: 500px;
    }
}

@media only screen and (max-width:563px) {
    .h__kat-wrapp {
        width: 300px;
    }
}

.h__bottom {
    border-bottom: 1px solid #e0e4e8;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .h__kat-nav {
        padding-left: 0;
    }
}

@media only screen and (max-width:563px) {
    .h__kat-nav {
        padding-left: 0;
    }
}

.kat-nav__item {
    width: 19.3%;
    padding-bottom: 13px;
    position: relative;
}

@media only screen and (max-width:1024px) {
    .kat-nav__item img {
        display: none;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .nav .kat-nav__item {
        width: 100%;
        display: block;
        border-bottom: 1px solid #e0e4e8;
        border-left: none;
    }
}

@media only screen and (max-width:563px) {
    .nav .kat-nav__item {
        width: 100%;
        display: block;
        border-bottom: 1px solid #e0e4e8;
        border-left: none;
    }
}

.kat-nav__item-wrapp {
    border-left: 1px solid #e0e4e8;
    display: contents;
}

.kat-nav__item:hover>.drop-menu {
    display: block;
}

.kat-nav__item-desc {
    display: inline-block;
    vertical-align: top;
    margin-left: 4%;
}

.kat-nav__name a {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.kat-nav__link {
    color: black;
    text-decoration: none;
    width: 100%;
}

.kat-nav__item:hover .kat-nav__name {
    color: #eebb00;
}

@media only screen and (max-width:563px) {
    .select-item:before {
        content: '';
        display: none;
        width: 10px;
        height: 10px;
        margin: 0 0 7px 6px;
        border-top: 2px solid #eebb00;
        border-right: 2px solid #eebb00;
        transform: rotate(135deg);
        position: absolute;
        right: 8%;
        top: 43%;
    }
}

.kat-nav__item--select {
    border-bottom: 1px solid #eebb00;
}

.drop-menu {
    position: absolute;
    box-shadow: 0 13px 15px rgba(0, 0, 0, 0.17);
    z-index: 1;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    padding: 0;
    width: 100%;
    left: 2px;
    top: 75%;
    display: none;
    border-top: 10px solid transparent;
}

@media only screen and (max-width:563px) {
    .drop-menu {
        z-index: 22;
        top: 86%;
    }
}

.drop-menu:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9.5px 10px 9.5px;
    border-color: transparent transparent #ececec transparent;
    position: absolute;
    top: -10px;
    right: 50%;
}

.drop-menu li {
    background: #efefef;
    width: 100%;
    padding: 6px 14px;
    border-bottom: 1px solid #d4d4d4;
    border-left: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
}

.drop-menu li:hover {
    background: #f5f5f5;
}

.drop-menu__link {
    color: black;
    text-decoration: none;
}

.kat-nav__range-price {
    color: black;
    font-size: 14px;
    font-weight: 300;
}

.breadnav {
    margin-bottom: 30px;
}

.breadnav__item a {
    color: #000;
    text-decoration: underline;
}

.breadnav__item:after {
    content: '>';
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    color: #b6b6b6;
}

.breadnav__last-item {
    color: #000;
}

.common-h1 {
    color: #37474f;
    font-size: 36px;
    font-weight: 400;
}

@media only screen and (max-width:563px) {
    .common-h1 {
        font-size: 25px;
    }
}

@media only screen and (max-width:563px) {
    .common-catalog {
        margin-top: 35px;
    }
}

.common-calculator {
    margin-top: 35px;
    position: relative;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 45px -20px rgba(0, 0, 0, .7);
}

.calculator__head {
    color: #37474f;
    font-size: 27px;
    font-weight: 300;
    margin-left: 2%;
    margin-bottom: 30px;
    width: 310px;
    margin: 0 auto;
    margin-bottom: 30px;
    position: relative;
}

.calculator__head:before {
    content: url(/local/templates/main/styles/../images/icons/gcalc.png);
    display: block;
    position: absolute;
    left: -20px;
    top: 0;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .calculator__head:before {
        content: '';
    }
}

@media only screen and (max-width:563px) {
    .calculator__head:before {
        content: '';
    }
}

.calculator__input-name {
    color: black;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 13px;
}


/*select-style*/

.select-wrapper {
    position: relative;
    width: 375px;
    margin: 0 0 20px 0;
    border: 1px solid #000;
}

@media only screen and (max-width:563px) {
    .select-wrapper {
        width: 100%;
    }
}

.select-wrapper select {
    width: 102%;
    height: 37px;
    padding: 0 20px 0 7px;
    background: transparent;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .select-wrapper select {
        width: 100%;
    }
}

@media only screen and (max-width:563px) {
    .select-wrapper select {
        width: 100%;
    }
}

.select-wrapper select::-ms-expand {
    display: none;
}

.select-arrow-3 {
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 3%;
    top: 16%;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(135deg);
}

.calculator__input-list option {
    color: black;
    font-size: 16px;
    font-weight: 300;
}

.float-wrapp {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 14px;
}

.form-input {
    width: 300px;
    padding: 11px;
    border: 1px solid #000;
    margin-top: -4px;
    background: transparent;
}

.form-question {
    position: absolute;
    color: black;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #ad8829;
    border-radius: 50%;
    padding: 2px 8px 0px 7px;
    background: #f5da98;
    cursor: pointer;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .calculator__input-wrapp .form-question {
        right: 17.7%;
    }
}

body .input-error {
    border: 1px solid #eebb00;
    background: url(/local/templates/main/styles/../images/icons/errorinput.png) no-repeat #ffddde;
    background-position: right center;
    position: relative;
    color: #000;
}

.amount-error {
    color: black;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #eebb00;
    border-left: none;
    margin-left: -3px;
    padding: 8px 5px 10px 8px;
}

.error-label {
    color: #eebb00;
    font-size: 13px;
    font-weight: 300;
    margin-left: 3%;
    margin-top: 4px;
    position: absolute;
}

.prod-detail-calc .error-label {
    bottom: -20px;
    width: 310px;
    z-index: 1;
    background: #fff;
}

.delivery-date__head {
    color: black;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 13px;
}

.delivery-date__desc .question-delivery:hover~.prompt {
    display: block;
}

.delivery-date__desc {
    position: relative;
    font-size: 16px;
    font-weight: 300;
    display: inline-block;
}

.delivery-date__desc span {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
}

@media only screen and (max-width:563px) {
    .delivery-date__desc span {
        font-size: 16px;
    }
}

.delivery-date__desc .form-question {
    right: -15px;
    top: -10px;
    font-size: 15px;
    line-height: 20px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .prod-detail-calc .question-delivery {
        top: 35px;
    }
}

@media only screen and (max-width:563px) {
    .form-question {
        display: none;
    }
}

.btn-empty {
    display: block;
    margin: 20px auto 0;
    height: 43px;
    width: 260px;
    border: 2px solid #e5c063;
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
    padding: 3px 0 0 0px;
    text-align: center;
    position: relative;
}

.btn-empty:hover {
    background: #e5c063;
}

.btn-empty:after {
    content: '\00BB';
    color: #eebb00;
    display: block;
    position: absolute;
    right: 14px;
    top: 0px;
    font-size: 25px;
}

.common-calculator .btn-empty {
    margin-top: 35px;
}

.calculator__manual {
    color: black;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    margin-top: 10px;
    margin-bottom: 35px;
}

.calculator__form-top {
    border-bottom: 1px solid #a8a8a8;
    position: relative;
}

.calculator__form-top:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 50%;
    bottom: -9px;
    border-top: 1px solid #a8a8a8;
    border-right: 1px solid #a8a8a8;
    transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    ;
}

.calculator__form-top:before {
    content: '';
    display: block;
    width: 21px;
    height: 7px;
    position: absolute;
    right: 49.8%;
    bottom: -2px;
    background: url(/local/templates/main/styles/../images/backgrounds/bg.png);
}

.calculator__form-bottom {
    margin-top: 35px;
    padding: 0 11%;
}

@media only screen and (max-width:563px) {
    .calculator__form-bottom {
        padding: 0;
    }
}

.calculator__bottom-head {
    color: #37474f;
    font-size: 27px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 23px;
}

.price__name {
    color: black;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.price__value {
    font-weight: 300;
}

.calculator__price {
    width: 36%;
    text-align: right;
    display: inline-block;
}

.price__value {
    padding-left: 5px;
}

.price__total {
    font-weight: 300;
    color: black;
    font-size: 30px;
    line-height: 36px;
}

.price__total .price__value {
    color: #eebb00;
    font-weight: 400;
}

.price__total .price__value .price-int {
    font-weight: 700;
}

.price__phone {
    display: inline-block;
    vertical-align: top;
    margin-left: 29px;
}

.price__phone-name {
    color: black;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
    text-align: center;
}

.btn-wrapp {
    display: inline-block;
    vertical-align: top;
}

.btn-wrapp .btn-empty {
    width: 200px;
    margin: 29px 0 0 28px;
}

.testis .accordion {
    font-size: 2rem;
    width: 90%;
    margin: 25px auto;
    border-radius: 5px;
}

.testis .accordion-header,
.testis .accordion-body {
    background: white;
}

.testis .accordion-header {
    padding: 1.5em 1.5em;
    color: black;
    cursor: pointer;
    font-size: .7em;
    transition: all .3s;
    font-weight: bold;

}

.testis .accordion__item {
    border-bottom: 1px solid #ffc400;
}

.testis .accordion__item .accordion__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.testis .accordion-header:hover {
    background: #ffc400;
    position: relative;

}

.testis .accordion-body {
    background: #fcfcfc;
    color: #353535;
    display: none;
}

.testis .accordion-body__contents {
    padding: 1.5em 1.5em;
    font-size: .6em;
}

.testis .accordion__item.active:last-child .accordion-header {
    border-radius: none;
}

.testis .accordion:first-child>.accordion__item>.accordion-header {
    border-bottom: 1px solid transparent;
}

.testis .accordion__item>.accordion-header:after {
    content: "\276F";
    font-family: IonIcons;
    font-size: 1.2em;
    float: right;
    position: relative;
    top: -2px;
    transition: .3s all;
    transform: rotate(90deg);
}

.testis .accordion__item.active>.accordion-header:after {
    transform: rotate(-90deg);
}

.testis .accordion__item.active .accordion-header {
    background: #ffe17e87;
}

.testis .accordion__item .accordion__item .accordion-header {
    background: #f1f1f1;
    color: #353535;
}

@media screen and (max-width: 1100px) {

    .prod-detail-desc .h2,
    .prod-detail-desc .common-cat {
        display: none;
    }

    .testis .accordion {
        width: 90%;
        font-size: 1.5rem;
    }

}

.about {
    margin-top: 50px;
}

.about__header {
    margin-left: 45px;
    margin-bottom: 35px;
    color: #37474f;
    font-size: 27px;
    font-weight: 400;
    position: relative;
}

.about__header:before {
    content: url(/local/templates/main/styles/../images/icons/avto.png);
    display: block;
    position: absolute;
    left: -43px;
    top: 1%;
}

.preim {
    display: inline-block;
    vertical-align: top;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .preim {
        width: 100%;
    }
}

@media only screen and (max-width:563px) {
    .preim {
        width: 98%;
    }
}

.preim-item {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    margin: 10px;
}

@media only screen and (max-width:563px) {
    .preim-item {
        width: 100%;
        margin: 3px;
    }
}

.edge-item__photo {
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.edge-item__deck {
    text-align: center;
    color: #37474f;
    font-size: 13px;
    font-weight: 300;
}

.edge-item__deck p {
    margin-bottom: 0;
    line-height: 18px;
    font-size: 13px;
}

.edge-item__deck span {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.about__video {
    width: 49%;
    display: inline-block;
}

.specialoffers_slider.sluderus .specialoffers_item {
    padding: 10px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .about__video {
        width: 100%;
    }
}

@media only screen and (max-width:563px) {
    .about__video {
        width: 100%;
        display: inline-block;
    }
}

.about__video .video {
    border: 3px solid #a8a8a8;
}

.general_content {
    padding: 35px 0 65px 0;
}

.p__holder-wrapp .general_content {
    padding: 35px 0 15px 0;
}

.content {
    padding: 35px 0 65px 0;
}

.p__holder-wrapp .content {
    padding: 35px 0 15px 0;
}

.prompt {
    background: white;
    border: 1px solid #606060;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 269px;
    position: absolute;
    padding: 18px;
    display: none;
}

.form-question-wrapp {
    padding: 9px;
    position: absolute;
    right: -6%;
    top: -4px;
    width: 67px;
    height: 30px;
}

.form-amount-wrapp {
    position: absolute;
    top: -1140%;
    right: -185.4%;
    padding-bottom: 20px;
    width: 269px;
    height: 350px;
    display: none;
}

.calculator__input-wrapp .form-question-wrapp:hover .form-amount-wrapp {
    display: block;
}

.form-amount-wrapp .prompt {
    display: block;
}

.calculator__input-wrapp .question-delivery:hover~.prompt {
    display: block;
}

.prompt-delivery {
    top: -325%;
    right: -20%;
    z-index: 10;
}

.prompt:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 49%;
    bottom: -6px;
    border-top: 10px solid #fff;
    border-right: 9px solid #fff;
    transform: rotate(135deg);
}

.prompt:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 50%;
    bottom: -9px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(135deg);
}

.prompt p {
    color: black;
    font-size: 12px;
    font-weight: 300;
    line-height: 15px;
}

.question-delivery {
    right: 21.7%;
}

.amount-quest {
    right: 20%;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .amount-quest {
        right: 40%;
    }
}

.calculator__form-top .question-amount {
    top: -3%;
    right: 2.6%;
}

.amount__avto-item {
    display: inline-block;
    margin-bottom: 5px;
}

.question-amount p {
    margin-bottom: 20px;
}

.avto-item-picture {
    border-radius: 10px;
    margin-left: 10px;
    padding-bottom: 5px;
    width: 103px;
}

.avto-item-desc {
    text-align: center;
}

.avto-item-desc:before {
    content: '';
    display: block;
    width: 90%;
    margin-left: 10%;
    height: 1px;
    background: #a8a8a8;
}


/* Прилипающий футер */

.p__footer {
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.footer_background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    left: 0;
    z-index: -1;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .p__footer {
        bottom: 2px;
    }
}

.f-top-logo {
    display: inline-block;
}

.footer {
    width: 100%;
    height: 100%;
    padding: 35px 30px;
    color: #eaeaea;
    font-size: 14px;
    line-height: 1.25;
}

@media only screen and (max-width:563px) {
    .footer {
        padding: 35px 5px;
    }
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li a {
    color: #8f8f8f;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}

.f-content {
    width: 1180px;
    margin: 0 auto;
    display: flex;
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .f-content {
        width: 100%;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .f-content {
        width: 500px;
    }
}

@media only screen and (max-width:563px) {
    .f-content {
        width: 300px;
    }
}

.f-bid {
    border: 2px solid #e5c063;
    padding: 8px 30px 8px 30px;
    background: transparent;
    color: #fff;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    text-decoration: none;
    margin: 14px 0;
    display: block;
}

.slider-btn {
    border: 2px solid #e5c063;
    padding: 8px 30px 8px 30px;
    background: transparent;
    color: #fff;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    text-decoration: none;
    margin: 14px 0;
    display: inline-block;
}

.lnline-top {
    display: inline-block;
    vertical-align: top;
}

.f-product-menu {
    margin-left: 100px;
}

.f-header {
    color: #e5c063;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 10px;
}

.f-servise-menu {
    margin-left: 50px;
    width: 20%;
}

.formik .popup {
    z-index: 1;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .f-servise-menu {
        display: none;
    }
}

@media only screen and (max-width:563px) {
    .f-servise-menu {
        display: none;
    }
}

.f-general-menu {
    margin-left: 35px;
}


.f-contact {
    margin-left: 80px;
    width: 18%;
}



.f-phone .phone-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    margin-left: 42px;
    margin-top: 10px;
    position: relative;
}

.f-phone .phone-value:before {
    content: url(/local/templates/main/styles/../images/icons/foterphone.png);
    display: block;
    position: absolute;
    left: -50px;
    top: -7px;
}

.f-phone .phone-desc {
    margin-left: 42px;
    color: #e5c063;
    font-size: 13px;
    font-weight: 700;
    line-height: 21px;
}

.f-callback {
    border: 2px solid #eebb00;
    color: white;
    background: transparent;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    padding: 7px 7px;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .f-callback {
        margin-top: 80px;
        right: -8%;
    }
}

.f-callback:before {
    content: '';
}

.f-adress {
    color: white;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    position: relative;
    margin-left: 42px;
}


.f-adress:before {
    content: url(/local/templates/main/styles/../images/icons/fotradress.png);
    display: block;
    position: absolute;
    left: -50px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .f-social {
        display: none;
    }
}

.footer ul li a:hover {
    color: #fff;
}

.f-social-item {
    border: 2px solid #8f8f8f;
    width: 39px;
    height: 39px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding-top: 10px;
    margin-right: 11px;
    margin-top: 20px;
    cursor: pointer;
}

.content__navigaion {
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px);
    margin-bottom: 40px;
    padding-left: 0;
    justify-content: center;
}

.nav .content__navigaion-item {
    margin-right: 10px;
    margin-bottom: 10px;
    border: 2px solid #e5c063;
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
    padding: 0;
    text-align: center;
    position: relative;
    cursor: pointer;
}

@media only screen and (max-width:563px) {
    .nav .content__navigaion-item {
        width: auto;
        margin-bottom: 10px;
        display: block;
    }
}

.content__navigaion-item:hover {
    background: #e5c063;
}

.navigaion-item__link {
    align-items: center;
    color: black;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    text-decoration: none;
    padding: 0 15px;
    height: 57px;
    justify-content: center;
}

.catalog__section {
    border-bottom: 1px solid #e0e4e8;
    margin-bottom: 25px;
	padding-bottom: 15px;
}

.section-photo {
    vertical-align: top;
    display: inline-block;
    max-width: 200px;
    margin-bottom: 10px;
}

.section-desc {
    vertical-align: top;
    display: inline-block;
    min-width: 100%;
}

.section-photo {
    margin-right: 43px;
    float: left;
}

@media only screen and (max-width:864px) {
	.section-desc h2 {
		text-align: center;
	}
	
	.section-photo {
		display: block;
		float: none;
		margin: 0 auto;
        scroll-margin-top: 104px;
	}
}

.section-photo--inner {
    width: 100%;
    height: 85px;
}

.content-table {
    width: 60%;
    min-width: 519px;
    margin-top: 25px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .content-table {
        width: 500px;
        min-width: auto;
    }
}

@media only screen and (max-width:563px) {
    .content-table {
        width: 317px;
        min-width: auto;
        font-size: 12px;
        overflow-x: scroll;
        display: block;
    }
}

.content-table td {
    padding: 10px 25px;
}

@media only screen and (min-width:564px) and (max-width:864px) {

    .content-table td,
    .content-table th {
        padding: 4px 11px;
        max-width: 116px;
    }
}

@media only screen and (max-width:563px) {

    .content-table td,
    .content-table th {
        padding: 3px 3px;
        max-width: 103px;
    }

    .content-table th:nth-child(2) {
        width: 89px;
    }
}

.table-price-value {
    white-space: nowrap;
}

@media only screen and (max-width:563px) {
    .table-price-value {
        width: 89px;
    }
}

.part-btn {
    float: left;
    margin-right: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 8px 1px 0 0px;
    height: 55px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .part-btn {
        margin-right: 8px;
    }
}

.red-empty {
    border: 2px solid #eebb00;
}

.red-empty:hover {
    background: #f57070;
}

.section-desc .part-btn:after {
    top: 6px;
}

.catalog__edge .edge-item__photo {
    border-radius: 50%;
    display: inline-block;
    margin-left: 0;
    margin-bottom: 10px;
    margin-right: 10px;
    width: 133px;
    float: left;
}

@media only screen and (max-width:563px) {
    .catalog__edge .edge-item__photo {
        width: 115px;
        object-fit: contain;
    }

}

.catalog__edge .edge-item__deck p {
    color: #37474f;
    font-size: 13px;
    font-weight: 300;
    text-align: left;
    line-height: 14px;
    padding-top: 10%;
}

.cont-text__item {
    color: black;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 19%;
    text-align: center;
    margin-left: 11%;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .cont-text__item {
        line-height: 14px;
        vertical-align: top;
        text-align: center;
        margin-left: 4%;
        width: 28%;
        font-size: 13px;
    }
}

@media only screen and (max-width:563px) {
    .cont-text__item {
        display: block;
        width: auto;
        text-align: center;
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.cont-text__item a {
    color: #000;
}

@media only screen and (max-width:563px) {
    .catalog .catalog__contact {
        display: none;
    }
}

.cont-text__mail:before {
    content: url(/local/templates/main/styles/../images/icons/mail.png);
    display: block;
    margin-bottom: 25px;
}

.cont-text__phone:before {
    content: url(/local/templates/main/styles/../images/icons/catphone.png);
    display: block;
    margin-bottom: 25px;
}

.cont-text__adress:before {
    content: url(/local/templates/main/styles/../images/icons/catmap.png);
    display: block;
    margin-bottom: 25px;
}

.catalog__bottom {
    margin-top: 60px;
}

.catalog__bottom-map {
    display: inline-block;
    height: 450px;
    width: 50%;
    /*  background: url(/local/templates/main/styles/../images/map.jpg) no-repeat center center; */
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .catalog__bottom-map {
        margin-bottom: 13px;
    }
}

@media only screen and (max-width:864px) {
    .catalog__bottom-map {
        width: 100%;
    }
}

.catalog__bottom-form {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.catalog__bottom-form .h2 {
    font-style: italic;
    text-align: center;
    text-transform: none;
}

.catalog__bottom-form .h2 {
    font-style: italic;
    text-align: center;
    text-transform: none;
}

form.kat-form.js-ajax-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bottom-form_div {
    width: 48%;
    text-align: right;
}

.bottom-form_submitdiv {
    width: 100%;
    margin: 0 30%;
}

@media only screen and (max-width:768px) {
	form.kat-form.js-ajax-form {
		flex-direction: column;
	}
	.bottom-form_div .kat-form__input {
		width: 100%;
	}
	
	.bottom-form_div {
		width: 100%;
	}

    .bottom-form_submitdiv {
        margin: 0;
        width: 100%;
    }
}

.kat-form__textarea {
    width: 100%;
    height: 116px;
}

p.form-privacy {
    text-align: center;
    margin-top: 30px;
}

.bottom-ymap {
    height: 490px;
}

.bottom-ymap>div {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    width: 100%;
}

.bottom-ymap_div {
    width: 49%;
    padding-top: 20px;
}

.bottom-ymap_name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    padding-left: 20px;
	text-align: center;
}

.bottom-ymap_line {
    background: black;
    width: 100%;
    position: absolute;
    height: 20px;
}

.bottom-ymap__lazy {
    min-height: 450px;
    background: #f5f5f5;
    border-radius: 4px;
}

@media only screen and (max-width:864px) {
    .bottom-ymap > div {
        display: flex;
        flex-direction: column;
        height: 490px;
    }
    .bottom-ymap_div {
        display: flex;
        flex-direction: column;
        height: 50%;
        width: 100%;
    }
    .bottom-ymap_div iframe {
        height: 100%;
    }
}

.common-cat .slick-arrow::before {
    color: #eebb00 !important;
}

.many-slides .slick-prev::before {
    font-family: 'slick' !important;
    content: '\2190' !important;
    color: #eebb00 !important;
    top: 50%;
}

.many-slides .slick-prev {
    top: 50%;
    left: -25px;
}

.many-slides .slick-next::before {
    font-family: 'slick' !important;
    content: '\2192' !important;
    color: #eebb00 !important;
    top: 50%;
}

.many-slides .slick-next {
    top: 50%;
    right: -25px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .catalog__bottom-form {
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }
}

@media only screen and (max-width:563px) {
    .catalog__bottom-form {
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }
}

.kat-form__input {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 18px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .kat-form__input {
        display: block;
        width: 90%;
        padding: 7px;
        margin-bottom: 22px;
        font-size: 13px;
    }
}

@media only screen and (max-width:563px) {
    .kat-form__input {
        padding: 7px;
    }
}

.kat-form__textarea {
    padding: 15px;
    font-size: 18px;
    display: block;
    margin-bottom: 30px;
}

@media only screen and (max-width:563px) {
    .kat-form__textarea {
        width: 99%;
    }
}

.kat-form__submit {
    background: #e5c063;
    border: none;
    width: 100%;
    color: black;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px;
}


/*-----------------------popup-------------------------------*/

.popup {
    color: #000;
    font-size: 16px;
    font-weight: 300;
    position: fixed;
    z-index: 9999;
    top: 20%;
    width: 585px;
    margin-left: -292px;
    left: 50%;
    margin-top: 10px;
    opacity: 1;
    background-color: #fff;
    border: 3px solid #457fe6;
    border-radius: 8px;
    display: none;
}

.popup.new-popup-form {
    color: initial;
    font-size: 14px;
    font-weight: 300;
    width: 570px;
    top: initial;
    left: initial;
    margin-right: 0;
    transform: none;
    opacity: 1;
    background-color: #ffffff;
    display: none;
    margin-left: 0;
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
    padding: 0;
}

.popup#request-form {
    top: 10%;
}

.popup.new-popup-form .fancybox-close-small {
    color: #fff;
}

.popup.discount-form {
    top: 2%;
}

.new-popup-form .popup-hed {
    padding: 20px 8px;
    background-color: #457fe6;
    position: relative;
}

.new-popup-form .popup-body {
    padding: 20px 36px 40px 36px;
}

.new-popup-form .popup-body a {
    font-weight: bold;
}

.new-popup-form .popup-body p {
    font-family: 'Roboto-regular', sans-serif;
    font-size: 14px;
}

.new-popup-form .popup-body p.phone {
    font-family: 'Roboto', sans-serif;
    /* Базовое семейство шрифтов */
    font-weight: 700;
    font-size: 18px;
}

.discount-form .popup-hed:before {
    content: '';
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    background-image: url(/local/templates/main/images/procent-icon.png);
    left: 30px;
    top: 12px;
}

.new-popup-form .popup__title {
    color: #fff;
    text-transform: none;
    max-width: 70%;
    margin: 0 auto;
}

.new-popup-form .close {
    color: #fff;
    font-size: 38px;
    top: -8px;
    right: 4px;
}

.new-popup-form .request__body {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 0;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0 20px 0;
}

.new-popup-form input,
.new-popup-form textarea {
    background: #fff;
    border-radius: 5px;
    padding: 12px;
    border: 1px solid #d0d0d0;
    color: #000;
    font-size: 14px;
}

.discount-form .request__body .input-popup {
    flex-basis: calc(50% - 10px);
}

.new-popup-form textarea {
    flex-basis: 100%;
    margin-top: 20px;
}

.new-popup-form .politics {
    font-size: 12px;
}

.new-popup-form input::-webkit-input-placeholder {
    /* Chrome */
    color: #000;
}

.new-popup-form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #000;
}

.new-popup-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #000;
    opacity: 1;
}

.new-popup-form input:-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #000;
    opacity: 1;
}

.new-popup-form textarea::-webkit-input-placeholder {
    /* Chrome */
    color: #000;
}

.new-popup-form textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #000;
}

.new-popup-form textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #000;
    opacity: 1;
}

.new-popup-form textarea:-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #000;
    opacity: 1;
}

.new-popup-form .submit {
    line-height: 21px;
    display: block;
    padding: 12px 40px;
    background: #eebb00;
    color: #fff;
    border-radius: 3px;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto;
    margin-top: 20px;
}

.request-form .popup-hed:before {
    content: '';
    display: block;
    width: 45px;
    height: 35px;
    position: absolute;
    background-image: url(/local/templates/main/images/truck-img.png);
    left: 30px;
    top: calc(50% - 18px);
}

.request-form .popup-hed p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}

.request-form .input2x,
.request-main-form .input2x {
    flex-basis: calc(35% - 10px);
    max-width: calc(35% - 10px);
}

.request-form .input1x,
.request-main-form .input1x {
    flex-basis: calc(65% - 10px);
}

.request-form input,
.request-main-form input {
    margin-bottom: 20px;
    padding-left: 38px;
    background-repeat: no-repeat;
    background-position: 8px center;
}

.request-form .volume-wrap,
.request-main-form .volume-wrap {
    position: relative;
}

.request-form .volume-wrap .meter,
.request-main-form .volume-wrap .meter {
    position: absolute;
    right: 2px;
    top: 20px;
    line-height: 32px;
    transform: translate(0, -50%);
    padding: 0 10px 0 6px;
    background-color: #fff;
}

.request-form input.volume,
.request-main-form input.volume {
    max-width: 100%;
    flex-basis: 100%;
}

.request-form input.volume,
.request-main-form input.volume {
    background-image: url(/local/templates/main/styles/../images/volume-img.png);
}

.request-form input.address,
.request-main-form input.address {
    background-image: url(/local/templates/main/styles/../images/address-img.png);
}

.request-form input.name,
.request-main-form input.name {
    background-image: url(/local/templates/main/styles/../images/person-icon.png);
    background-position: 11px center;
}

.request-form input.phone,
.request-main-form input.phone {
    background-image: url(/local/templates/main/styles/../images/phone-img.png);
}

.request-form textarea,
.request-main-form textarea {
    margin: 0;
}

.callback-fix-btn {
    display: block;
    width: 65px;
    height: 65px;
    position: fixed;
    left: 0;
    top: 45em;
    background-image: url(/local/templates/main/styles/../images/truba.png);
    cursor: pointer;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-transition: all 0.2s ease-out 0.2s;
    -moz-transition: all 0.2s ease-out 0.2s;
    -o-transition: all 0.2s ease-out 0.2s;
    transition: all 0.2s ease-out 0.2s;
    z-index: 9;
}

/*.callback-fix-btn:hover {
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}*/

.h__whatsapp img {
    width: 20px;
    height: 20px;
}

.h__calculatormos {
    display: none;
}

.delivery__peyment-item img {
    float: left;
    margin-right: 30px;
}

.delivery__peyment-item {
    height: 110px;
}

.delivery__peyment-item:last-child {
    height: auto;
}

.peyment-item__head {
    font-size: 17px;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .new-popup-form .popup-body p {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 992px) {
    .new-popup-form .popup-body p {
        display: none;
    }
}

@media screen and (max-width: 768px) {
	.delivery__peyment .peyment__head {
		text-align: center;
	}
	.delivery__peyment-item {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 10px;
		height: auto;
	}
	.delivery__peyment-item img {
		margin: 0;
		max-width: 94px;
	}
}

@media screen and (max-width: 600px) {
    .popup.new-popup-form {
        width: 90%;
    }
}

@media screen and (max-width: 512px) {

    .calculatormos {
        display: none;
    }

    .h__calculatormos {
        display: block;
    }

    .h__calculatormos {
        display: flex;
    }

    .h__calck_block {
        width: 50%;
        background: #eebb00;
        display: flex;
    }

    .h__phone_pop_block {
        width: 50%;
        background: #eebb00;
        display: flex;
    }

    .callback-fix-btn.h__phone {
        position: inherit;
    }

    .h__calculatormos-text {
        color: white;
        font-size: 14px;
        font-weight: 600;
        padding-top: 5px;
        /*width: 100%;*/
        text-align: center;
        font-size: 15px;
    }

    .new-popup-form .request__body .input-popup {
        width: 100%;
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .new-popup-form textarea {
        margin: 0;
    }

    .new-popup-form .popup-hed:before {
        display: none;
    }

    .request-form input.volume,
    .request-main-form input.volume {
        margin-bottom: 0 !important;
    }

    .h__calck_block img {
        width: 25px;
        height: 25px;
        padding-left: 3px;
        margin-left: 3px;
    }

    .callback-fix-btn {
        width: 25px;
        height: 25px;
        margin-left: 7px;
        padding-left: 7px;
        background-image: url(/local/templates/main/styles/../images/callback-icon-cub.svg);
    }

}




@media screen and (max-width: 390px) {
    .h__calculatormos-text {
        font-size: 13px;
    }
}

@media screen and (max-width: 370px) {
    .h__calculatormos-text {
        font-size: 12px;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .popup {
        width: 500px;
        margin-left: -250px;
        top: 0;
    }
}

@media only screen and (max-width:563px) {
    .popup {
        width: 300px;
        margin-left: -150px;
        top: -25px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.popup-hed {
    padding: 16px 8px;
}

.popup__title {
    color: #eebb00;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.popup__label {
    margin-bottom: 10px;
}

.close {
    color: #a6a6a6;
    position: absolute;
    font-size: 50px;
    top: -14px;
    cursor: pointer;
    padding: 1px 8px;
    right: 0;
}
.form-back-call .close {
    top: -8px;
    right: 8px;
    color: #000;
}
.callback__body {
    padding: 20px 40px;
    text-align: center;
    font-size: 14px;
}

.popup__name {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.callback__body .popup__field {
    border: 1px solid #457fe6;
}
.popup__field {
    height: 38px;
    width: 90%;
    margin-bottom: 14px;
    border: 1px solid #457fe6;
    opacity: 0.8;
    padding: 5px;
    background: inherit;
    color: #fff;
}

.empty-btn {
    border: 2px solid #e5c063;
    padding: 8px 30px 8px 30px;
    background: transparent;
    color: #e5c063;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
}


.points-list {
    width: 500px;
    list-style: none;
    float: left;
}

@media only screen and (max-width:563px) {
    .points-list {
        padding-left: 0;
        width: 300px;
        line-height: 17px;
    }
}

.points-list__item {
    padding: 3px 0;
    text-align: right;
    background: url(/local/templates/main/styles/../images/backgrounds/points.png) 0 22px repeat-x;
    line-height: 8px;
}

.points-list__item span {
    float: left;
    text-align: left;
    background: url(/local/templates/main/styles/../images/backgrounds/bg.png);
}

.points-list__item .points {
    float: none;
    text-align: right;
    background: url(/local/templates/main/styles/../images/backgrounds/bg.png);
}

.checkin__tabs {
    margin-top: 35px;
}

.tabs__content {
    margin-top: 50px;
}

.tabNavigation {
    list-style: none;
    margin: 0 auto;
}

.tabNavigation__item {
    display: inline-block;
    position: relative;
}

@media only screen and (max-width:563px) {
    .tabNavigation__item {
        margin-right: 0px;
        margin-bottom: 10px;
        width: 45%;
    }
}

.tabNavigation__item {
    padding: 16px 32px;
    margin-left: 8px;
    font-size: 15px;
    font-family: 'PT Sans Bold', sans-serif;
}

.tabNavigation__item a,
.tabNavigation__item a:hover {
    color: #000;
    text-decoration: none;
}

.tabNavigation .tabNavigation__item {
    margin-right: 10px;
    margin-bottom: 15px;
    border: 2px solid #e5c063;
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
    padding: 0;
    text-align: center;
    position: relative;
    cursor: pointer;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .tabNavigation .tabNavigation__item {
        margin-bottom: 10px;
        width: auto;
    }
}

@media only screen and (max-width:563px) {
    .tabNavigation .tabNavigation__item {
        margin-right: 5px;
        margin-bottom: 10px;
        width: auto;
    }
}

.tabNavigation .active {
    background: #e5c063;
}

.active:after {
    content: '';
    display: block;
    background: url(/local/templates/main/styles/../images/icons/form-check.png);
    position: absolute;
    width: 20px;
    height: 20px;
    right: -5px;
    top: -5px;
}

.jobs__item {
    display: inline-block;
    vertical-align: top;
    margin-right: 14px;
    margin-bottom: 14px;
    background: white;
    border: 2px solid #e5c063;
    color: black;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding: 23px;
    width: 30%;
    height: 396px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .jobs__item {
        width: 46%;
        height: auto;
    }
}

@media only screen and (max-width:563px) {
    .jobs__item {
        width: 100%;
        height: auto;
    }
}

.jobs__item-name {
    color: black;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

.jobs__item-name a {
    color: black;
    text-decoration: underline;
}

.jobs__item-price {
    color: #898989;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.demands__button {
    border: 2px solid #eebb00;
    color: black;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    text-decoration: none;
    padding: 10px 36px;
}

.demands-list {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}

.demands-list ul {
    padding: 0;
}

.delivery__photo {
    margin-right: 35px;
    margin-bottom: 35px;
    float: left;
}

@media only screen and (max-width:563px) {
    .delivery__photo {
        display: none;
    }
}

.delivery__map:before {
    content: '';
    display: table;
    clear: both;
}

.delivery__map {
    margin-bottom: 35px;
}

.delivery-zone:before {
    content: '';
    display: table;
    width: 19px;
    height: 19px;
    background-color: #479e29;
    border-radius: 50%;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 5px;
}

.delivery-zone {
    margin-top: 15px;
}

@media only screen and (max-width:563px) {
    .delivery-zone {
        margin-bottom: 15px;
    }
}

.delivery-btn {
    height: 50px;
    width: 355px;
    line-height: 36px;
    margin: 20px auto 20px auto;
}

@media only screen and (max-width:563px) {
    .delivery-btn {
        width: 100%;
    }

    .delivery-btn:after {
        content: '';
    }
}

.btm-dost {
    background: url(/local/templates/main/styles/../images/backgrounds/delivery-bg.png) repeat-x;
}

.btm-dost-wrapp {
    width: 1180px;
    margin: 0 auto;
    padding: 21px;
    text-align: center;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .btm-dost-wrapp {
        width: 100%;
    }
}

@media only screen and (max-width:563px) {
    .btm-dost-wrapp {
        width: 100%;
    }
}

.btm-dost-wrapp p {
    font-weight: 300;
    line-height: 30px;
    color: #e5c063;
    font-size: 18px;
}

@media only screen and (max-width:563px) {
    .btm-dost-wrapp p {
        line-height: 23px;
        font-size: 17px;
    }
}

.btm-dost-phone {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.delivery-btn--bottom {
    color: #fff;
    width: 285px;
    margin: 0 auto;
    margin-top: 15px;
}

.content-photo--left {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.content-photo--right {
    float: right;
    margin-left: 15px;
}

.content-block {
    margin-bottom: 10px;
}

.gray {
    color: #37474f;
}

.twocoll-list {
    column-count: 2;
}

.about__bottom-item {
    width: 20%;
    display: inline-block;
    margin-right: 56px;
    margin-top: 10px;
    vertical-align: top;
    color: #37474f;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    
   html body .about__bottom-item {
        width: 100%;
        margin-right: 0;
    }
}

@media only screen and (max-width:563px) {
    
}

.about__bottom-item p{
    font-size: 13px;
    line-height: 16px;
}
.bottom-item__ico {
    text-align: center;
    margin-bottom: 0px;
    min-height: 80px;
}

.last-ico {
    text-align: center;
    padding-top: 20px;
}

.bottom-item__ico img {
    vertical-align: middle;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.bottom-item__hed {
    color: #37474f;
    line-height: 24px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.form-calc {
    width: 50%;
    margin: 0 auto;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .form-calc {
        width: 100%;
        margin: 0 auto;
    }
}

@media only screen and (max-width:563px) {
    .form-calc {
        width: 100%;
    }
}

.form-calc .calculator__input-name {
    display: inline-block;
    width: 24%;
}

@media only screen and (max-width:563px) {
    .form-calc .calculator__input-name {
        width: 100%;
    }
}

.form-calc .select-wrapper {
    display: inline-block;
    margin-left: 35px;
    width: 65%;
}

@media only screen and (max-width:563px) {
    .form-calc .select-wrapper {
        width: 100%;
        margin-left: 0;
    }
}

.form-calc .form-input {
    margin-left: 35px;
    width: 65%;
}

@media only screen and (max-width:563px) {
    .form-input {
        width: 80%;
        margin-left: 0;
    }
}

.form-calc .feild-wrapp {
    margin-bottom: 10px;
}

.form-calc .date-input {
    margin-left: 35px;
    width: 10%;
    text-align: center;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .form-calc .date-input {
        width: 17%;
    }
}

@media only screen and (max-width:563px) {
    .form-calc .date-input {
        margin-left: 0;
        width: 31%;
    }
}

.form-calc .form-amount {
    width: 10%;
}

@media only screen and (max-width:563px) {
    .form-calc .form-amount {
        width: auto;
        margin-left: 0;
    }
}

.calc-manual {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
}

.form-calc .btn-empty {
    margin: 0 auto;
}

.calc {
    padding: 21px;
    margin: 0 auto;
    width: 50%;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .calc {
        padding: 21px;
        margin: 0 auto;
        width: 100%;
    }
}

@media only screen and (max-width:563px) {
    .calc {
        padding: 21px;
        margin: 0 auto;
        width: 100%;
    }
}

.list-item__name {
    color: black;
    font-size: 16px;
    line-height: 36px;
    font-weight: 700;
}

.calc__total .total-text {
    color: black;
    font-weight: 300;
    font-size: 30px;
}

.calc__total-price {
    color: black;
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    color: #eebb00;
    font-weight: 700;
}

.total-simvol {
    color: #eebb00;
    font-weight: 400;
    font-size: 30px;
}

.calc .btn-empty {
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
}


/*-------------------*/

.t__top-menu {
    display: none;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .t__top-menu {
        display: block;
        width: 45px;
        text-align: center;
        color: #eebb00;
        position: absolute;
        right: 3%;
        top: 25%;
    }

    .nav__t {
        position: relative;
        display: block;
        width: 45px;
        height: 30px;
        margin: 0 auto 10px;
        font-size: 0;
        line-height: 0;
        border: 0 none;
        border-top: 4px solid #eebb00;
        border-bottom: 4px solid #eebb00;
        outline: 0 none;
        background: transparent;
        cursor: pointer;
    }

    .nav__t:before,
    .nav__t:after {
        content: '';
        position: absolute;
        top: 9px;
        left: 0;
        display: block;
        width: 45px;
        height: 4px;
        background: #eebb00;
        -webkit-transition: -webkit-transform 0.1s ease;
        transition: transform 0.1s ease;
    }

    .nav__t--type_close {
        width: 40px;
        border-color: transparent;
    }

    .nav__t--type_close:before {
        width: 40px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .nav__t--type_close:after {
        width: 40px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@media only screen and (max-width:563px) {
    .t__top-menu {
        display: block;
        width: 45px;
        text-align: center;
        color: #eebb00;
        position: absolute;
        right: 3%;
        top: 5%;
    }

    .nav__t {
        position: relative;
        display: block;
        width: 45px;
        height: 30px;
        margin-bottom: 5px;
        font-size: 0;
        line-height: 0;
        border: 0 none;
        border-top: 4px solid #eebb00;
        border-bottom: 4px solid #eebb00;
        outline: 0 none;
        background: transparent;
        cursor: pointer;
    }

    .nav__t:before,
    .nav__t:after {
        content: '';
        position: absolute;
        top: 9px;
        left: 0;
        display: block;
        width: 45px;
        height: 4px;
        background: #eebb00;
        -webkit-transition: -webkit-transform 0.1s ease;
        transition: transform 0.1s ease;
    }

    .nav__t--type_close {
        width: 40px;
        border-color: transparent;
    }

    .nav__t--type_close:before {
        width: 40px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .nav__t--type_close:after {
        width: 40px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

.t__top-catalog {
    display: none;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .t__top-catalog {
        display: none;
        position: absolute;
        right: 3%;
        top: 53%;
        text-align: center;
        color: #eebb00;
    }

    .h__callback.h__callback_n.red-btn.js-popup {
        display: none;
    }
}

@media only screen and (max-width:563px) {
    .t__top-catalog {
        display: block;
        position: absolute;
        width: 45px;
        right: 3%;
        top: 53%;
        text-align: center;
        color: #eebb00;
    }
}

.vacansii-h1 {
    color: #37474f;
    font-size: 36px;
    font-weight: 700;
    text-align: left;
}

@media only screen and (max-width:563px) {
    .vacansii-h1 {
        font-size: 26px;
    }
}

.popup__vacansii .send-btn {
    color: #000;
}

.vacansii-btn {
    margin: 20px 0 20px 0;
    width: 250px;
}

.vacansii__demands {
    color: #37474f;
    font-size: 16px;
}

.vacansii__title {
    color: black;
}

.vacansii-form {
    background: #fff;
    opacity: 1;
}

.vacansii__name {
    display: inline-block;
    width: 16%;
    text-align: left;
}

.vacansii__field {
    width: 76%;
    margin-bottom: 14px;
    opacity: 1;
    padding: 5px;
    background: #fff;
    color: #000;
    display: inline-block;
    margin-left: 6%;
}

.vacansii__wrapper {
    display: inline-block;
    width: 76%;
    margin-left: 6%;
    border: 1px solid #a6a6a6;
}

.vacansii__btn {
    color: #000;
    position: relative;
}

.vacansii__btn:after {
    content: '\00BB';
    color: #eebb00;
    display: block;
    position: absolute;
    right: 14px;
    top: 6px;
    font-size: 25px;
}

.prod-detail-properties {
    /*  border-right: 1px solid #a8a8a8;*/
    width: 100%;
    display: inline-block;
}

@media screen and (max-width: 864px) {
    .specialoffers__item--photo {
        width: initial;
        max-width: 100%;
        margin: 0 auto;
        display: block;
        height: initial;
        min-height: 234px;
        float: none;
        width: initial;
    }

    .specialoffers__item-date {
        margin-top: 20px;
    }
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .delivery-wrapp {
        position: absolute;
        width: 30px;
        height: 30px;
        top: -18px;
        left: 252px;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .prod-detail-properties {
        border: none;
    }
}

@media only screen and (max-width:563px) {
    .prod-detail-properties {
        width: 100%;
        border: none;
    }
}

.pagination__item {
    border: 1px solid #d4d4d4;
    width: 41px;
    height: 41px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    line-height: 41px;
}

.pagination__item a {
    color: #000;
    text-decoration: none;
}

.pagination {
    padding-left: 0;
    margin-top: 40px;
}

.pagination__item--active {
    background: #eebb00;
}

.pagination__item--active a {
    color: #fff;
    text-decoration: none;
}

.product {
    padding-top: 30px;
}

.inf-properties__photo {
    margin-right: 30px;
    float: left;
    display: block;
    border: 5px solid #e5c063;
    width: 360px;
    height: 360px;
    object-fit: cover;
    object-position: center;
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .inf-properties__photo {
        max-width: 100%;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .inf-properties__photo {
        max-width: 100%;
        margin-bottom: 28px;
    }
}

@media only screen and (max-width:563px) {
    .inf-properties__photo {
        width: 100%;
        margin-right: 10px;
        float: none;
    }
}

.inf-properties__price {
    color: black;
    font-size: 30px;
    font-weight: 700;
    line-height: 15px;
    border: 0 none;
    width: auto;
    display: block;
    padding: 0 15px 15px;
    margin: 0 0 15px;
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .inf-properties__price {
        margin-top: 15px;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .inf-properties__price {
        font-size: 96%;
        padding: 16px;
        display: table;
    }
}

@media only screen and (max-width:563px) {
    .inf-properties__price {
        font-size: 17px;
        padding: 13px;
        margin: 0;
        display: flex;
        justify-content: center;
    }

}

.inf-properties__pricename {
    font-size: 12px;
    padding-top: 10px;
}

.inf-properties__price td {
    padding-top: 5px;
    color: #E76056;
    border: 1px solid #E76056;
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .inf-properties__price td {
        font-size: 50%;
    }
}

.inf-properties__prop ul {
    font-size: 14px;
    line-height: 25px;
}

.prod-detail-calc {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 39%;
    padding-left: 18px;
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .prod-detail-calc {
        width: 54%;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .prod-detail-calc {
        width: 45%;
    }
}

@media only screen and (max-width:563px) {
    .prod-detail-calc {
        width: 100%;
    }
}

.prod-detail-calc .calculator__head:before {
    left: 16px;
}

.product__form-input {
    width: 82%;
    padding: 11px;
    border: 1px solid #000;
    margin-top: -4px;
    background: transparent;
    float: left;
    line-height: 15px;
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .product__form-input {
        width: 84%;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .product__form-input {
        width: 83%;
    }
}

@media only screen and (max-width:563px) {
    .product__form-input {
        width: 87%;
    }
}

.prod-detail-calc .question-amount {
    top: -5px;
    right: 1.6%;
}

.prod-detail-calc .amount {
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-right: 1px solid;
    /*padding: 7px 7px 6px 7px;*/
    display: inline-block;
    margin-top: -4px;
    margin-left: -4px;
    padding: 9px;
}

.prod-detail-calc .calculator__head {
    margin-bottom: 18px;
    margin-left: 4%;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .prod-detail-calc .calculator__head {
        font-size: 18px;
    }
}

.prod-detail-calc .select-wrapper {
    width: 100%;
}

.prod-detail-calc .float-wrapp {
    width: 43%;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .prod-detail-calc .float-wrapp {
        width: 100%;
    }
}

@media only screen and (max-width:563px) {
    .prod-detail-calc .float-wrapp {
        width: 100%;
    }
}

.prod-detail-calc .question-delivery {
    right: 26.7%;
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .prod-detail-calc .question-delivery {
        top: -1px;
        right: 3%;
    }
}

.prod-detail-calc .prompt-delivery {
    top: -120px;
    right: -3%;
    z-index: 10;
}

@media only screen and (min-width:865px) and (max-width:1227px) {
    .prod-detail-calc .prompt-delivery {
        top: -130px;
        right: -129px;
    }
}

.prod-detail-calc .calc-manual {
    margin-bottom: 4px;
}

.prod-detail-calc .calc-manual p {
    font-size: 12px;
}

.popup__order-form {
    background: url(/local/templates/main/styles/../images/backgrounds/bg.png);
    padding: 45px;
    text-align: center;
}

.order-form {
    opacity: 1;
}

.popup__order-form .close {
    color: #000;
}

.order-form__title {
    color: #37474f;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
}

.order-form__currency {
    font-weight: 400;
}

.order-form__list-item {
    margin-bottom: 42px;
}

.order-form__name {
    color: black;
    font-size: 16px;
    margin-bottom: 5px;
}

.order-form__field {
    background: transparent;
    color: #000;
    width: 67%;
    border-color: #000;
}

.input-manual {
    color: #868686;
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    line-height: 18px;
    margin-bottom: 30px;
}

.popup__order-form .btn-empty {
    text-align: center;
    margin: 0 auto;
}


.common-text {
    text-align: center;
}

.common-text .btn-empty {
    margin: 0 auto;
}

.common-text .btn-empty:hover {
    cursor: pointer;
}

.common-cat-item {
    display: inline-block;
    position: relative;
    margin-right: 11px;
    width: 18.85%
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .common-cat-item {
        width: 45%;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:563px) {
    .common-cat-item {
        width: 80%;
        margin-bottom: 10px;
    }
}


/*.common-cat--inner .common-cat-item{
	 margin-left: 4%;
}*/

@media only screen and (max-width: 563px) {
    .common-cat--inner .common-cat-item {
        width: 46%;
        height: auto;
        margin-left: 0;
    }
}

@media only screen and (max-width:563px) {
    .common-cat {
        text-align: center;
    }

    .common-cat-item {
        margin-right: 0;
    }

    .cat-item__link {
        font-size: 14px;
    }
}

.cat-item__link-wrapp {
    position: absolute;
    color: black;
    font-size: 22px;
    font-weight: 700;
    background: #e5c063;
    width: 100%;
    max-width: 100%;
    text-align: center;
    vertical-align: top;
    top: 40px;
    padding: 11px 0;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .cat-item__link-wrapp {
        width: 100%;
    }
}

.cat-item__link {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
}

.request__body {
    padding: 20px 40px;
    text-align: center;
}

.form__thanks {
    left: 50%;
    margin-right: -50%;
    margin-left: 0;
    transform: translate(-50%, 0);
}

.content-table a {
    color: black;
}

.product__calculate-link {
    text-decoration: none;
    position: relative;
}

.product__calculate-link:after {
    content: '\00BB';
    color: #eebb00;
    display: block;
    position: absolute;
    right: -18px;
    top: -11px;
    font-size: 25px;
}

@media (max-width:864px) {
    .product__calculate-link:after {
        content: '\00BB';
        color: #eebb00;
        display: block;
        position: absolute;
        right: -11px;
        top: -6px;
        font-size: 20px;
    }
}

.catalog__section h2 a {
    color: #37474f;
}

.js-input-amount~span {
    color: black;
    /*font-size: 16px;*/
    font-weight: 300;
    border: 1px solid #000;
    border-left: none;
    margin-left: -3px;
    padding: 8px 5px 10px 8px;
    padding: 11px;
}

.sect__description:before {
    content: '';
    clear: both;
    display: block;
}

.section-desc .part-btn {
    margin-left: 25%;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .section-desc .part-btn {
        margin-left: 5%;
    }
}

@media only screen and (max-width:563px) {
    .section-desc .part-btn {
        margin-left: 5%;
    }
}

.section-desc .red-empty {
    border: 2px solid #eebb00;
    margin-left: 5% !important;
}

.product__wrapp {
    width: 83%;
    margin-left: 17%;
}

.product__wrapp .part-btn {
    margin-left: 7%;
}

.product__wrapp .red-empty {
    margin-left: 0;
}

@media only screen and (max-width: 864px) {
	.section-desc .red-empty {
		border: 2px solid #eebb00;
		margin-left: auto !important;
		margin-right: auto;
	}

    .product__wrapp {
        margin-left: 0;
		width: 100%;
    }
}

.not-show-town {
    display: none;
}

.show_all_town {
    display: block;
    clear: both;
    color: #038cdb;
}

.link-town {
    color: #038cdb;
}

.dostavka-town h2 {
    padding-bottom: 7px;
}

.f-text {
    color: white;
    font-size: 12px;
    position: relative;
    margin: 15px 0 0 30px;
}

.list-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: none;
    font-size: 14px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .list-price-table {
        width: 100%;
        min-width: auto;
        font-size: 12px;
        overflow-x: scroll;
        display: block;
    }

}

@media only screen and (max-width: 563px) {
    .list-price-table {
        width: 100%;
        min-width: auto;
        font-size: 12px;
        overflow-x: scroll;
        display: block;
    }

    .calculator__price {
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    .price__phone {
        display: block;
        vertical-align: top;
        margin-left: 0;
        text-align: center;
    }

    .btn-wrapp {
        display: block;
        vertical-align: top;
        text-align: center;
    }

    .btn-wrapp .btn-empty {
        width: 200px;
        margin: 20px auto;
    }

}

.list-price-table th {
    background: #ffffff;
    border-top: 1px solid #b5b5b5;
    border-left: none;
    border-right: none;
}

.list-price-table th:first-child {
    border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
    border-left: 1px solid #b5b5b5;
}

.list-price-table th:last-child {
    border-radius: 0 10px 0 0;
    border-right: 1px solid #b5b5b5;
    -webkit-border-right: 1px solid #b5b5b5;
    -moz-border-right: 1px solid #b5b5b5;
}

.list-price-table td {
    border-bottom: 1px solid #b5b5b5;
    border-right: 1px solid #b5b5b5;
    border-left: none;
    border-top: none;
    text-align: center;
}

.list-price-table tr:hover {
    background: #f5efef;
}

.list-price-table td:first-child {
    border-left: 1px solid #b5b5b5;
    text-align: left;
}

.list-price-table .link-order {
    color: #eebb00;
    font-weight: 300;
}

.list-price-table .link-order:after {
    font-weight: 800;
}

.section-desc .part-btn-req {
    padding: 7px 33px 8px 20px;
    background: #eebb00;
    color: #fff;
    border-radius: 3px;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    float: right;
    margin: 0;
    height: auto;
    width: auto;
    margin-top: 20px;
    margin-left: 1% !important;
}

.part-btn-req:after {
    color: #fff;
}

.part-btn-order {
    padding: 7px 38px 6px 36px;
    background: transparent;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border: 1px solid #9b9b9b;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    float: right;
    margin: 0;
    height: auto;
    width: auto;
    margin-top: 20px;
}

.part-btn-order:hover {
    background: none;
}

.similar-incat {
    padding: 30px 0;
    width: 1183px;
}

@media only screen and (min-width:865px) and (max-width:1180px) {
    .similar-incat {
        width: 850px;
    }

    .similar-incat .many-slides-item {
        width: auto;
    }
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .similar-incat {
        width: 500px;
    }
}

@media only screen and (max-width:563px) {
    .similar-incat {
        width: 300px;
    }
}

.section__advantage {
    margin-bottom: 80px;
}

.advantage__item {
    display: inline-block;
    width: 30%;
    padding: 22px;
    margin-right: 3%;
    vertical-align: top;
    background: hsla(0, 0%, 100%, .25) border-box;
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .3) inset, 0 1px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 1px hsla(0, 0%, 100%, .3);
    border-radius: 6px;
    height: 160px;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .advantage__item {
        width: 46%;
        padding: 20px;
        margin-bottom: 13px;
        height: auto;
    }
}

@media only screen and (max-width:563px) {
    .advantage__item {
        display: block;
        width: 90%;
        margin-bottom: 10px;
        height: auto;
    }
}

.advantage__ico {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
}

.advantage__title {
    display: inline-block;
    vertical-align: top;
    color: #37474f;
    font-size: 22px;
    font-weight: 400;
    font-family: 'Roboto-regular', sans-serif;
    margin-top: 10px;
}

.advantage__text p>span {
    color: #eebb00;
}

.font-light {
    font-family: 'Roboto-regular', sans-serif;
    font-weight: 400;
}

.gosts__item-link {
    text-decoration: none;
    color: #555;
    line-height: 18px;
    margin-left: 52px;
    display: block;
}

.gosts__item {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    padding: 14px;
    position: relative;
}

@media only screen and (min-width:564px) and (max-width:864px) {
    .gosts__item {
        width: 49%
    }
}

@media only screen and (max-width:563px) {
    .gosts__item {
        width: 100%;
    }
}

.gosts__item-link:before {
    content: url('/local/templates/main/styles/../images/icons/png-ico.png');
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
}

.spoiler-open {
    cursor: pointer;
    text-align: right;
    position: relative;
    margin-right: 13px;
}

.spoiler-open:after {
    content: '\00BB';
    color: #eebb00;
    display: block;
    position: absolute;
    right: -18px;
    top: -11px;
    font-size: 25px;
}

.common-cat-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0;
}

.common-cat-item .cat-item__photo {
    object-fit: cover;
    width: 100%;
    height: 260px;
}

@media only screen and (max-width:563px) {
    .common-cat-section {
        -webkit-box-pack: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
    }

    .common-cat-item .cat-item__photo {
        width: 100%;
    }

    .section-desc .part-btn-req {
        float: left;
    }

    .section-desc .part-btn {
        float: left;
        margin-left: 0px;
        width: 150px;
    }

    p {
        width: 95%;
    }

    .request-form .popup-hed p {
        width: 100%;
    }

    li {
        width: 95%;
    }

    .h1 {
        width: 95%;
    }

    .section-photo--inner img {
        height: 50px;
    }
}

@media only screen and (max-width:385px) {
    .list-price-table {
        width: 100%;
        font-size: 11px;
    }
}

@media only screen and (max-width:355px) {
    .list-price-table {
        font-size: 10px;
    }
}

@media only screen and (max-width:320px) {
    .jq-selectbox__select {
        max-width: 277px;
    }
}

.back:after {
    content: '\00ab';
}

.special_word {
    font-style: italic;
    text-decoration: underline;
}

.product__order-form {
    display: none;
    width: 45%;
    display: inline-block;
    padding: 10px;
    text-align: center;
    border: 1px solid #000;
    margin-left: 0;
}

.product__order-form .empty-btn {
    color: #000;
    padding: 6px 12px 5px 12px;
    font-size: 15px;
}

.form__field {
    border: 1px solid #000;
    width: 93%;
    height: 20px;
    padding: 11px;
}

.form__name {
    font-size: 15px;
    margin-bottom: 10px;
    margin: 10px 0px;
}

.stati_item {
    width: auto;
}

.stati_item,
.stati_item a {
    color: #37474f;
}

.stati-date {
    font-size: 14px;
    margin-top: 5px;
    float: right;
    font-weight: bold;
}

.stati_item .specialoffers__item-name {
    margin-top: 0px;
}

.show_more {
    font-size: 14px;
    float: right;
}

body .news-detail.news-stati img.detail_picture {
    margin-right: 20px;
    margin-bottom: 20px;
}

.news-stati {
    clear: both;
}

.stati-date-time {
    font-size: 14px;
    margin-bottom: 10px;
    width: 110px;
    display: block;
}

@media only screen and (max-width:860px) {
    body .news-detail.news-stati img.detail_picture {
        clear: both;
        float: none;
        margin: 0 auto 10px;
    }

    .stati-date {
        margin-top: 0px;
        margin-bottom: 10px;
        float: none;
    }
}

.contact-wr {
    vertical-align: top;
    width: 44%;
    display: inline-block;
}

@media only screen and (max-width:860px) {
    .contact-wr {
        width: 100%;
    }
}

.specialoffers_article_title {
    color: black;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.specialoffers_h h2 {
    font-size: 36px;
    font-weight: 100;
    text-transform: none;
}

.specialoffers_item.slick-slide {
    margin-top: 15px;

}

.h__callback.h__callback_n {
    margin-left: 0px;
}

.icons-of-mess {
    margin-left: 10px;
    margin-right: 5px;
    width: 30px;
    display: flex;
	flex-wrap: wrap;
	gap: 8px;
    vertical-align: top;
}

.icons-of-mess div {
    width: 23px;
    height: 22px;
}

@media only screen and (min-width:960px) {
    .icons-of-mess {
        margin-left: 0;
        margin-right: 0;
        width: auto;
		gap: 16px;
    }

    .icons-of-mess div {
        width: 42px;
        height: 42px;
        display: inline-block;
        vertical-align: top;
    }
	
    .icons-of-mess div > a {
        display: block;
    }
	
    .icons-of-mess div > a img {
        height: 42px;
		width: 42px;
    }
}

@media only screen and (max-width:864px) {
    .icons-of-mess div {
        width: 26px;
        height: 25px;
    }

    .icons-of-mess div.h__telegramm {
        width: 23px;
        margin-top: 3px;
        margin-left: 2px;
    }
}

@media only screen and (min-width:564px) and (max-width:630px) {
    .icons-of-mess {
        display: none;
    }
}

@media only screen and (max-width:563px) {
    .icons-of-mess {
        width: 230px;
    }

    .icons-of-mess div {
        display: inline-block;
        vertical-align: top;
    }

    body .icons-of-mess div.h__telegramm {
        margin-top: 2px;
    }
}

.price_exel {
    position: absolute;
    right: 0px;
    font-size: 15px;
    text-transform: uppercase;
    top: -55px;
    padding: 13px;
    color: #E76056;
    border: 1px solid #E76056;
    text-decoration: none;
    font-weight: bold;
}

.price_exel:hover {
    color: #fff;
    background-color: #E76056;
}

.price_exel span {
    color: #fff;
    background-color: #E76056;
    font-size: 10px;
    padding: 10px 7px;
    border-radius: 50px;
}

.price_exel:hover span {
    color: #E76056;
    background-color: #fff;
    font-size: 10px;
    padding: 10px 7px;
    border-radius: 50px;
}

.price_dogovor {
    position: absolute;
    /* right: 210px; */
    right: 310px;
    font-size: 15px;
    text-transform: uppercase;
    top: -55px;
    padding: 13px;
    color: #457FE6;
    border: 1px solid #457FE6;
    text-decoration: none;
    font-weight: bold;
}

.price_dogovor:hover {
    color: #fff;
    background-color: #457FE6;
}

.price_dogovor span {
    color: #fff;
    background-color: #457FE6;
    font-size: 10px;
    padding: 10px 6px;
    border-radius: 50px;
}

.price_dogovor:hover span {
    color: #457FE6;
    background-color: #fff;
    font-size: 10px;
    padding: 10px 6px;
    border-radius: 50px;
}

.content.catalog {
    position: relative;
}

@media only screen and (max-width:850px) {

    .price_exel,
    .price_dogovor {
        position: relative;
        display: block;
        top: 0 !important;
        bottom: 0;
        right: 0;
        left: 0;
        margin-bottom: 15px;
        text-align: center;
    }
}

.sertifikate {
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .3) inset, 0 1px 15px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: 240px;
    margin-right: 30px;
    height: 355px;
    overflow: hidden;
    margin-bottom: 10px;
}

.container-sertifikate {
    margin-top: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.sert-h1 {
    text-transform: none;
}

@media only screen and (max-width:950px) {
    .sertifikate {
        width: 200px;
        height: auto;
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .sertifikate-img {
        height: auto;
    }
}

@media only screen and (max-width:370px) {
    .sertifikate {
        width: 220px;
    }
}

.cont-text__phone a:not(:first-child) {
    display: none;
}

.preim-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
    width: calc(100% + 15px * 2);
    margin-left: -15px;
    margin-right: -15px
}

.preim-list .item {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25%;
    flex-basis: 25%
}

@media screen and (max-width: 864px) {
    .preim-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .preim-list .item {
        width: 50%;
        justify-content: center;
        flex-basis: 50%;
    }
}

.preim-card {
    width: 100%;
    max-width: 170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.preim-card .badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #e5c063;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px
}

.preim-card .badge {
    display: block;
}

.preim-list .item:nth-child(1) .badge {
    background: url(/local/templates/main/styles/../images/icons/24-hours.svg) center no-repeat;
    background-size: auto 60px;
}

.preim-list .item:nth-child(2) .badge {
    background: url(/local/templates/main/styles/../images/icons/ruble.svg) center no-repeat;
    background-size: auto 60px;
}

.preim-list .item:nth-child(3) .badge {
    background: url(/local/templates/main/styles/../images/icons/delivery-truck.png) center no-repeat;
    background-size: 60px 35px;
}

.preim-list .item:nth-child(4) .badge {
    background: url(/local/templates/main/styles/../images/icons/stopwatch.png) no-repeat;
    background-size: 50px 59px;
    background-position: center 10px;
}

.preim-card .card-text {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.minimum-order {
    margin: 15px 0 50px;
    padding: 15px;
    border: 1px solid #E76056;
    color: #E76056;
    font-size: 36px;
    text-align: center
}

@media screen and (max-width: 575px) {
    .minimum-order {
        padding: 12px;
        font-size: 14px;
    }
}

.text-section {
    padding: 30px 0
}

.product-header-price {
    font-weight: normal;
    text-transform: none;
}

@media screen and (max-width: 864px) {
    .product-header-price {
        margin-bottom: 15px
    }

    .hFixed .navigation.nav {
        display: none;
    }
}

.hFixNav {
    padding: 0% 2%;
}

.video-section {
    padding: 30px 0
}

.shipping-section {
    padding: 20px 0;
    background-color: #FFF;
    -webkit-box-shadow: 0 0 45px -20px rgba(0, 0, 0, .7);
    box-shadow: 0 0 45px -20px rgba(0, 0, 0, .7);
}

.shipping-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1180px;
    min-width: 300px;
    margin: 0 auto;
}

@media only screen and (max-width: 1180px) and (min-width: 865px) {
    .shipping-block {
        width: 100%;
    }
}

@media only screen and (max-width: 864px) and (min-width: 564px) {
    .shipping-block {
        width: 500px;
    }
}

@media only screen and (max-width: 563px) {
    .shipping-block {
        width: 290px;
    }
}

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

.shipping-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
}

.shipping-right p {
    margin-bottom: 0;
}

.shipping-title {
    font-size: 20px;
    color: #000;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.shipping-title span {
    color: #E76056;
}

.shipping-phone a {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    color: #E76056;
}

.shipping-phone a:before {
    position: absolute;
    content: url(/local/templates/main/images/icons/phone-icon.png);
    display: block;
    width: 22px;
    height: 29px;
    left: -30px;
    top: 0;
}

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

.shipping-subcontent p {
    margin: 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: right;
}

.item-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.delivery-icon {
    position: relative;
    width: 171px;
    height: 103px;
    margin-right: 30px;
    background: url(/local/templates/main/images/icons/icon-shipping-car.png) no-repeat center center;
}

@media screen and (min-width:992px) and (max-width:1200px) {
    .shipping-subcontent {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width:991px) {
    .shipping-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .shipping-left .shipping-content {
        text-align: center;
        margin-top: 30px;
    }

    .shipping-subcontent {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .shipping-title,
    .shipping-subcontent p {
        font-size: 16px;
        color: #000;
        line-height: 20px;
        text-align: center;
    }

    .shipping-right .shipping-subcontent p {
        text-align: right;
    }

    .delivery-icon {
        margin-right: 0;
    }

    .shipping-title br {
        display: none;
    }

    .shipping-title span,
    .shipping-phone a {
        white-space: nowrap
    }
}

@media screen and (max-width:575px) {
    .shipping-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .shipping-block .shipping-right {
        padding-top: 15px
    }

    .shipping-phone a,
    .shipping-right .shipping-subcontent p {
        text-align: center;
    }
}

.schema-hide {
    display: none !important;
}

.min-capacity {
    color: #37474f;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #37474f;
    background-color: #fff;
}

@media screen and (max-width: 576px) {
    .min-capacity {
        font-size: 28px;
        line-height: 36px;
    }
}

.ymap-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* background: url('/local/templates/main/images/map.jpg') #ffffff no-repeat; */
    background-position: center center;
    background-size: cover;
}


/* Блок, в котором появится Яндекс.Карта */

#map-yandex {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
}

.loader {
    position: absolute;
    z-index: 15;
    top: -100%;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #000000;
    transition: opacity .7s ease;
    opacity: 0;
    background-color: rgba(0, 0, 0, .55);
}

.loader:after,
.loader:before {
    box-sizing: border-box;
}

.loader.is-active {
    top: 0;
    opacity: 1;
    z-index: 5;
}

.loader-default:after {
    position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    width: 48px;
    height: 48px;
    content: '';
    animation: rotation 1s linear infinite;
    border: solid 8px #ffffff;
    border-left-color: transparent;
    border-radius: 50%;
}

@keyframes rotation {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

@keyframes blink {
    from {
        opacity: .5;
    }

    to {
        opacity: 1;
    }
}

.offset-margin-top-bottom-20 {
    margin: 20px auto;
}

.kat-nav__item.has_child .kat-nav__name {
    display: inline-block;
}

.kat-nav__item.has_child .kat-nav__name:after {
    background-image: url(/local/templates/main/images/arrow_d_m.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto;
    display: inline-block;
    margin-left: 10px;
    width: 8px;
    height: 5px;
    content: ' ';
}

.child-nav__item--select {
    color: #eebb00;
    font-weight: bold;
}

.contactgroup-block {
    margin-top: 30px;
}

.contactgroup-block img {
    display: block;
    filter: contrast(0);
}

.contactgroup-block a {
    color: #8f8f8f;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}

/* .hFixed {
    position: fixed;
    top: 0;
    margin: 0 auto 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    z-index: 30;
    width: 100%;
} */

.leftPart,
.rightPart {
    width: 49%;
    display: inline-block;
    vertical-align: middle;
}

.rightPart {
    padding: 0px 35px;
}

.rightPart .common-text {
    text-align: justify;
}

@media screen and (max-width:992px) {

    .leftPart,
    .rightPart {
        width: auto;
        display: block;
    }

    .rightPart {
        padding: 0;
    }
}

.common-slide-item_spec {
    background-size: cover;
    padding: 47px 0 25px 0;
    position: relative;
}

.common-slide-item_spec img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.slide-desc_spec {
    position: inherit;
}

@media only screen and (max-width: 864px) and (min-width: 564px) {
    .slide-desc_spec .slide-desc-text--top {
        left: 6%;
    }
}

@media only screen and (max-width: 563px) {
    .slide-desc_spec .slide-desc-text--bottom br {
        display: none;
    }

    .slide-desc_spec .slide-desc-text--top {
        padding-bottom: 15px;
    }
}


.h2 {
    color: black;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.h2-left {
    font-size: 27px;
    margin-bottom: 20px;
}

.banner {
    position: relative;
}

.banner .price_dogovor {
    top: auto;
    bottom: 30px;
    color: #fff;
    background-color: #457FE6;
}

.banner .price_exel {
    top: auto;
    bottom: 30px;
    color: #fff;
    background-color: #E76056;
}

.banner .h2-left {
    font-weight: 800;
    margin-left: 20px;
    color: white;
}

.banner .h1-left {
    font-weight: 800;
    padding-left: 20px;
    padding-top: 10px;
    color: white;
    margin-bottom: 0px;
    background: rgb(1, 1, 1, 0.2);
}

.banner .off {
    background: rgb(1, 1, 1, 0.2);
    margin-top: 0;
    max-width: 525px;
}

.banner.banner-dark .h1-left,
.banner.banner-dark .off{
    background: rgb(1, 1, 1, 0.5);
}

.banner+.content.catalog {
    padding-top: 0;
}

.cartIcons {
    max-width: calc(100% - 360px);
    display: inline-block;
}

.detail_link {
    border: 2px solid #e5c063;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 15px;
}

.stringOrder {
    text-align: center;
    width: 300px;
    display: inline-block;
    margin-bottom: 15px;
}

.tabs {
    margin-left: auto;
    margin-right: auto;
}

.tabs__nav {
    display: flex;
    overflow-x: auto;
}

.tabs__nav > input[type="radio"] {
    display: none;
}

.tabs__nav > input[type="radio"]:checked+label {
    background-color: #e5c063;
    color: white;
}

.tabs__content > div {
    display: none;
    border: 1px solid #e5c063;
    padding: 10px 15px;
    background: white;
    border-radius: 4px;
}

.tabs:has(#tab-btn-1:checked) #content-1,
.tabs:has(#tab-btn-2:checked) #content-2,
.tabs:has(#tab-btn-3:checked) #content-3 {
    display: block;
}

.tabs__nav > label {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #eee;
    border: 1px solid transparent;
    padding: 2px 8px;
    font-size: 18px;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    margin-left: 6px;
    cursor: pointer;
}

.tabs__nav > label:first-of-type {
    margin-left: 0;
}

@media (max-width:1227px) {
    .stringOrder {
        text-align: left;
        width: fit-content;
        display: inherit;
    }

    .cartIcons {
        max-width: 100%;
    }
}

.sectlist .sectlist-img:hover {
    border: 1px solid rgba(0, 0, 0, .2);
    color: #d76c25;
    text-decoration: none;
}

.sectlist .sectlist-img {
    width: 140px;
    height: 140px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: 10px auto;
    background-color: #fff;
    border: 2px solid #d76c25;
}

.sectlist .item {
    width: 200px;
    display: inline-block;
    text-align: center;
    margin: 10px;
    font-size: 16px;
}

.sectlist .item-price {
    background: #eebb00;
    color: #000;
    padding: 3px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sectlist .js-popup {
    background: #e5c063 !important;
    text-align: center;
    color: #fff;
    padding: 5px 25px;
    font-weight: bold;
    cursor: pointer;
}

.sectlist {
    text-align: center;
}

.content-table.price-table.list-price-table td a {
    color: #eebb00;
    text-decoration: underline;
}

.usl-price {
    display: block;
    height: 43px;
    width: 220px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
    padding: 3px 0 0 0px;
    text-align: center;
    margin: auto;
    color: white;
    position: absolute;
    bottom: 0;
    left: 61px;
}

.short_title_psevdo {
    min-height: 40px;
}

.h__mobile-forms-btn {
    display: none;
}

@media only screen and (max-width: 630px) and (min-width: 563px) {
    .h__top-bottom {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 563px) {
    .h__contact {
        display: none;
    }

    .nav__t.js-nav-t {
        color: black;
    }

    .h__logo img {
        width: auto;
        height: auto;
    }

    .icons-of-mess {
        display: none;
        order: 3;
        width: 300px;
        margin: 0;
        padding: 10px;
        position: fixed;
        top: 50vh;
        background: #ffffffa6;
    }

    .h__callback-mobil {
        color: black;
        background: none;
        text-decoration: underline;
        width: 80px;
        display: inline-block;
        padding: 0;
        vertical-align: top;
        order: 2;
        height: 40px;
        margin: 0;
        font-size: 9px;
        text-transform: uppercase;
    }

    .t__top-catalog {
        color: black;
        top: 13px;
    }

    .h__contact-phone {
        display: block;
    }

    .t__top-menu {
        left: 5%;
        color: black;
        top: 13px;
    }

    .t__top-menu .nav__t.js-nav-t {
        border-top: 3px solid black;
        border-bottom: 3px solid black;
    }

    .h__contact-phone {
        display: none;
    }

    .h__logo {
        width: 115px;
        order: 0;
        padding: 0;
    }

    .h__top-bottom {
        width: calc(100% - 145px);
        display: flex;
        min-height: 54px;
    }

    .t__top-menu .nav__t:before,
    .t__top-menu .nav__t:after {
        height: 3px;
        background: black;
    }

    .icons-of-mess div {
        width: 33px;
        margin-left: 2px;
        height: 25px;
    }

    .h__top {
        border-bottom: none;
    }

    .t__top-menu,
    .t__top-catalog {
        text-transform: uppercase;
        font-size: 10px;
    }

    .h__viber {
        order: 1;
    }

    .h__catalog {
        border: 1px solid #e0e4e8;
        width: 100%;
        position: absolute;
        background: #fff;
        z-index: 20;
        top: 50%;
        left: 0%;
    }

    .h__bottom {
        position: relative;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
    }

    .h__mobile-forms-btn {
        display: block;
        width: 30px;
        height: 35px;
        padding: 0;
        border: 0 none;
        font-size: 0;
        color: transparent;
        background-image: url('/local/templates/main/styles/../images/icons/new-phone-icon.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        animation: pulse 1.5s infinite;
        transition: transform 0.3s ease;
    }
}

.sityList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media only screen and (max-width: 900px) {
    .sityList {
        grid-template-columns: 1fr 1fr;
    }
}

.waWidjet {
    position: fixed;
    bottom: 155px;
    width: 46px;
    right: 10px;
    z-index: 9;
}

.waWidjet img {
    width: 46px;
    height: 46px;
}

.header_menu_link {
    color: black;
    text-decoration: none;
}

.specialoffers__item a img {
    width: 300px;
}

.calculatormos a img {
    width: 65px;
    position: fixed;
    z-index: 9;
    top: 40em;
}

.calcBtn {
    padding: 14px 33px 14px 20px;
    background: #eebb00;
    color: #fff;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-size: 20px;
    font-weight: bold;
    line-height: 21px;
    height: auto;
    max-width: 420px;
    display: block;
    text-decoration: none;
    margin: 90px auto 10px;
    text-align: center;
}

p.article-headers+ol li a {
    color: #000;
    text-decoration: underline;
    font-size: 16px;
}

p.article-headers {
    font-weight: bold;
    font-size: 21px;
    color: #000;
}

img.img-float-right {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
    z-index: 10;
    position: relative;
}

@media (max-width:563px) {
    img.img-float-right {
        display: block;
        float: initial;
        margin: 15px auto;
    }
}

#cookie_notification.show {
    display: flex;
}

#cookie_notification {
    display: none;
    background: #eebb00;
    border-radius: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    padding: 14px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 80px;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

#cookie_notification p {
    font-size: 16px;
    margin: 0;
}

#cookie_notification a {
    color: #fff;
}

.cookie_accept {
    background: #fff;
    border: 0 none;
    padding: 10px 20px;
    font-weight: bold;
    color: #eebb00;
}

@media (min-width:505px) {
    #cookie_notification {
        flex-direction: row;
    }
}

@media (min-width:780px) {
    #cookie_notification {
        left: 80px;
        bottom: 20px;
    }
}

@media (min-width:1230px) {
    #cookie_notification {
        left: 50%;
        right: auto;
        width: 1140px;
        margin-left: -570px;
    }
}

@media (max-width:1090px) {
    .h__slogan {
        display: none;
    }
}

.common-calculator .form-privacy {
    text-align: center;
    margin: 20px 0 0 0;
}

.popup .form-privacy {
    color: #fff;
}

.service .form-privacy {
    text-align: center;
    margin: 20px 0 20px 0;
}

#map-yandex img {
    object-fit: cover;
}

.mobile-back.popup {
    opacity: 1;
    padding: 20px 0;
    border-radius: 15px;
    background: #eb0;
}

.mobile-back.popup>*:not(.close) {
    color: #000;
    width: 100%;
    text-align: left;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    height: initial;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
}

.mobile-back.popup a,
.mobile-back.popup .close {
    color: #000;
}

.mobile-back.popup>*:not(.close) a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-back.popup>*:not(.close) img {
    margin-right: 20px;
}


.text_inside {
    width: 170px;
}

@media (max-width:563px) {
    .waWidjet {
        display: none;
    }

    li.kat-nav__item.has_child.active ul.drop-menu {
        display: block;
    }

    .kat-nav__item:hover>.drop-menu {
        display: none;
    }

    .form-back-call.popup {
        z-index: 9999999;
        opacity: 1;
    }
}

.news-stati>ul {
    list-style-type: none;
}

.news-stati>ul>li {
    background: #e2e2e2;
    margin-bottom: 10px;
    border: 2px solid #d4d4d4;
    padding: 10px 20px;
    position: relative;
}

.news-stati>ul>li:before {
    content: '';
    position: absolute;
    left: -12px;
    bottom: 2px;
    border: 20px solid transparent;
    border-left: 25px solid #eebb00;
}

.serts_main {
    margin: 35px 0;
}

.serts_main h2 {
    margin-bottom: 25px;
}

.sert_slider {
    overflow: hidden;
}

.sert_slider a img {
    width: 100%;
    height: 330px;
    object-fit: contain;
}

.table_prices_mainpage {
    margin: 100px 0 50px;
}

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

.table_prices_mainpage_btns button {
    border: 2px solid #eebb00;
    background: transparent;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    padding: 7px 20px;
    margin: 0 10px 10px;
    outline: none;
}

.table_prices_mainpage .price-table {
    display: none;
}

.table_prices_mainpage .price-table td {
    background: #ffffffcc;
}

.table_prices_mainpage .price-table.active_pr {
    display: table;
}

.news-stati table,
.news-stati table td {
    border: none;
}

.news-stati table thead tr {
    background: #eebb00;
}

.news-stati table thead tr td {
    padding: 15px 10px;
    color: #fff;
    font-weight: 700;
}

.news-stati table tbody tr {
    border-bottom: 1px solid #eebb00;
}

.news-stati table tbody tr td {
    padding: 15px 10px;
    background: #fff;
}

.news-stati table tbody tr:nth-child(2n-1) td {
    background: #efefef;
}

@media screen and (max-width: 500px) {
    .table_prices_mainpage-tables {
        overflow-x: scroll;
    }
}

@media only screen and (max-width:563px) {

    .stringOrder {
        text-align: center;
        width: 100%;
        display: inherit;
        margin-top: 10px;
    }

}

.form-control.name {
    color: var(--text_color);
    font: 14px var(--font_family);
    display: block;
    width: 49%;
    height: 37px;
    padding: 0 15px;
    transition: .2s linear;
    border: 1px solid #e1e1e1;
    margin-right: 15px;
    margin: 0px 0px 15px;
}

.form-control.text {
    color: var(--text_color);
    font: 14px var(--font_family);
    display: block;
    width: 100%;
    height: 130px;
    padding: 5px 15px;
    transition: .2s linear;
    border: 1px solid #e1e1e1;
}

.form-group-block {
    display: flex;
    justify-content: space-between;
}

.form-group-block .form-group {
    width: 49%;
}

.review-label {
    margin-bottom: 5px;
}

.btn.btn-review {
    color: #fff;
    font: 700 var(--font_size)/37px var(--font_family);
    display: inline-block;
    padding: 0 20px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    border-radius: 5px;
    background: #eebb00;
    text-decoration: none;
    text-align: center;
    line-height: 41px;
    width: 232px;
    height: 41px;
    margin: 20px 0;
}

.review-form-thanks {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    background: #eebb00;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 10px;
    display: none;
}

.review_title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

.review_text {
    font-size: 15px;
    margin-bottom: 10px;
}

.review-inner__text {
    font-size: 15px;
    margin: 10px 0;
}

.review-inner__title {
    font-weight: 600;
}

.review-inner.link {
    font-size: 15px;
    font-weight: 500;
}

.review-inner.link a {
    color: #939393;
}

.review-inner__text {
    font-size: 15px;
    margin: 10px 0;
}

.review-inner__title {
    font-weight: 600;
}

.review_block-uslug .review_title {
    color: #37474f;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
}

.review_block-uslug {
    margin-top: 30px;
}

.search-page select {
    display: none;
}

.search-page input[type="submit"] {
    display: none;
}

.search-page input[type="text"] {
    border: 2px solid #eebb00;
    padding: 5px;
}

.footer_search {
    max-width: 220px;
    margin-top: 10px;
}

.search-page input[type="text"]::placeholder {
    color: #eebb00;
}

.footer_search input[type="submit"] {
    display: none;
}

.footer_search #title-search-input {
    border: 2px solid #eebb00;
    max-width: 220px;
    padding: 5px 10px;
    color: aliceblue;
}

.footer_search #title-search-input::placeholder {
    color: #FFFFFF;
}

@media only screen and (max-width:563px) {
    .slick-dots {
        bottom: -50px !important;
    }
}

.slick-dots2 {
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}

.slick-dots2 li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 5px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.slick-dots2 li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots2 li button:hover,
.slick-dots2 li button:focus {
    outline: none;
}

.slick-dots2 li button:hover:before,
.slick-dots2 li button:focus:before {
    opacity: 1;
}

.slick-dots2 li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    background: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots2 li.slick-active button:before {
    opacity: .75;
    color: black;
}

.h__calculatormos-text a {
    color: white;
    text-decoration: none;
}

.map_info_block-inner {
    width: 400px;
    background: #fff;
    padding: 35px 20px 20px;
    position: absolute;
    top: 130px;
    left: 5%;
}

.map_info_block {
    position: relative;
}

.map_info_block-inner-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.map_info_block-inner-text {
    color: #a29595;
    font-size: 14px;
    text-align: center;
    padding-top: 10px;
}

.map_info_block-inner-button {
    width: 220px;
    margin: 0 auto;
}

.map_info_block-button {
    background: #eebb00;
}

.calculator__input-wrapp.float-wrapp {
    width: 31%;
}

.calculator__input-wrapp.float-wrapp .select-wrapper {
    width: 100%;
}

.calculator__input-wrapp.float-wrapp .form-input {
    width: calc(100% - 40px);
}

.product__wrapp table.content-table.price-table {
    display: table;
}

.item-name.small_font {
    font-size: 11px;
}

.product__wrapp table.content-table.price-table td:first-child a {
    color: #005e94;
}

.common-cat {
    max-width: 94%;
    margin: 0 auto;
}

.f-logo-wrap .f-product-menu {
    display: none;
}

.f-contact .f-text {
    display: none;
}

.container-sertifikate.formik .new-popup-form textarea {
    flex-basis: 47%;
}

.container-sertifikate.formik div#request-form {
    width: 90%;
    border-radius: initial;
    display: block !important;
    margin: 0 auto 20px;
}

.left_formik_block {

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    padding: 0;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.container-sertifikate.formik .left_formik_block {
    width: 50%;
}

.container-sertifikate.formik p.politics {
    text-align: center;
    display: block !important;
}


.review-block-stati {
    width: 100%;
    margin: auto;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.review-block-stati .input-group {
    display: flex;
    justify-content: space-between;
}

.review-block-stati .input-group .input-item {
    width: 49%;
    display: inline-block;
    padding-right: 40px;
    font-size: 15px;
}

.review-block-stati .input-group label {
    display: block;
    margin-top: 10px;
}

.review-block-stati .input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.review-block-stati .rating {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.review-block-stati .rating .stars,
.rating_article .stars {
    color: #dfdfdf;
    font-size: 31px;
    margin-top: 4px;
}

.review-block-stati .rating .stars span {
    cursor: pointer;
}

.review-block-stati .rating .stars span.active,
.rating_article .stars span.active {
    color: #eebb00;
}

.rating_article .stars {
    margin-top: 0px;
}

.rating_article img {
    width: 22px;
    margin: 0 5px 0 20px;
}

.rating_article span.stars_count {
    font-weight: bold;
    font-size: 14px;
    margin-top: 2px;
}

.rating_article {
    display: flex;
    align-items: center;
    float: left;
}

.review-block-stati .input-textarea textarea#comment {
    resize: vertical;
    min-height: 90px;
    padding: 10px;
}

.review-block-stati .input-textarea label {
    margin-bottom: 5px;
}

.review-block-stati .input-textarea {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    margin-bottom: 10px;
}

.review-block-stati .input-group .input-item.rating-item {
    width: auto;
    min-width: 200px;
    padding-right: initial;
}

.review-block-stati button {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.review-block-stati button:hover {
    background-color: darkorange;
}

.review-block-stati input[type="email"],
input[type="text"],
textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.review-block-stati span.form_message.active {
    left: 20px;
}

.review-block-stati span.form_message {
    position: absolute;
    background: green;
    bottom: 20px;
    height: 39px;
    left: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
    color: #fff;
    width: calc(100% - 40px);
    font-size: 15px;
    transition: .3s;
}

.review-block-stati span.form_message.neok {
    background: #eebb00;
}

p.title_review {
    color: black;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
}

.item_review_block {
    display: block;
    border-bottom: 1px dashed;
    margin-bottom: 10px;
    font-size: 15px;
    padding: 20px;
}

.item_review_block .review_block_name {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 10px;
    margin-right: 10px;
}

.item_review_block .review_block_star {
    display: inline-block;
}

.item_review_block .review_block_star span {
    color: #eebb00;
}

.reviews_block_items {
    background: #fff;
    margin-top: 20px;
    padding: 20px;
}

.rating_article.inside_article {
    float: right;
    margin-top: -14px;
}

.stars span.active:after {
    content: none;
}

.specialoffers__item.stati_item .rating_article {
    margin-top: 9px;
}

/*Адаптив*/


@media screen and (max-width: 1200px) {
    .f-servise-menu {
        margin-left: 35px;
    }
}

@media screen and (max-width: 1180px) {
    .f-content {
        justify-content: space-around;
    }

    .f-servise-menu {
        display: none;
    }

    .f-product-menu {
        margin-left: 0;
    }

    .f-contact {
        width: 210px;
        margin-left: 0;
    }
}

@media screen and (max-width: 1000px) {
    .f-general-menu {
        display: none;
    }

    .container-sertifikate.formik .left_formik_block {
        width: 100%;
    }

    .container-sertifikate.formik .new-popup-form textarea {
        flex-basis: 100%;
    }

    .container-sertifikate.formik div#request-form {
        width: 570px;
    }
}

@media screen and (max-width: 865px) {
    .map_info_block-main,.zagh2 {
        display: none;
    }

    .calculator__input-wrapp.float-wrapp,
    .f-contact {
        width: 100%;
    }

    .f-content {
        flex-direction: column;
    }

    .h__callback {
        display: none;
    }

    .f-logo {
        text-align: center;
    }

    a.fancybox.order-btn.f-bid.f-request {
        text-align: center;
        width: 330px;
        margin: 20px auto;
        max-width: 80%;
    }

    .f-product-menu,
    .f-text {
        display: none;
    }

    .f-logo-wrap .f-product-menu,
    .f-contact .f-text {
        display: block;
    }

    .f-logo-wrap .f-product-menu {
        width: 160px;
        margin: 10px auto 20px;
    }

    .footer_search {
        margin: 0 auto;
    }

    .f-contact .f-phone {
        width: 230px;
        margin: 0 auto 20px;
    }

    .f-phone .phone-desc,
    .f-phone .phone-value {
        margin-left: 64px;
    }

    .f-adress {
        width: 220px;
        margin: 0 auto;
        padding-left: 60px;
    }

    .f-adress:before {
        left: 8px;
    }

    .contactgroup-block {
        text-align: center;
    }

    .contactgroup-block a+a {
        display: block;
        margin: 10px auto 20px;
        width: 190px;
    }

    .f-text {
        text-align: center;
        padding-left: initial;
        margin-left: initial;
        margin-top: 25px;
    }

    .review-block-stati .input-group .input-item {
        width: 100%;
        margin-bottom: 10px;
        padding-right: initial;
    }

    .review-block-stati .input-group {
        flex-direction: column;
    }

    .review-block-stati .input-textarea {
        margin-top: initial;
    }

}

@media only screen and (max-width: 864px) {

    .product__wrapp table.content-table.price-table {
        width: 100%;
    }

    .product__wrapp table.content-table.price-table td:last-child {
        padding-left: 19px;
    }
}

@media only screen and (max-width: 563px) {
.about__bottom-item {
    width: 50%;
    
}}
@media only screen and (max-width: 563px) {

    .product__wrapp table.content-table.price-table,
    .product__wrapp {
        width: 100%;
    }

    .product__wrapp table.content-table.price-table td:last-child {
        padding-left: 19px;
    }
}

@media only screen and (max-width: 362px) {

    .rating_article .stars {
        font-size: 23px;
    }

    .specialoffers__item.stati_item .rating_article {
        margin-top: 14px;
    }

    .rating_article img {
        margin: 0 5px 0 10px;
    }
}

.h__mobile-forms-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.h__mobile-forms-btn-tel {
    display: none;
}

@media only screen and (max-width: 563px){
    .h__mobile-forms-btn-tel {
        display: block;
        padding: 0;
        border: 0 none;
        font-size: 10px;
        color: black;
    }
}

@media (max-width: 420px) {
    .p__holder {
        background-image: none;
        background-color: #f5f4f4;
    }
    .p__holder-wrapp .common-slide.slider-home-page {
      display: none;
    }
}


form.kat-form.js-ajax-form .checkbox-wrap {
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.common-calculator .checkbox-wrap {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 10px;
}
/* End */


/* Start:/local/templates/main/styles/custom.css?17441242906994*/
body .preim-list{
    width: 100%;
}

.kat-form__textarea{
    max-width: 100%;
}
.drop-menu {
    width: 102%;
}


.slider-home-page .slide-desc {
    position: relative;
    margin: 50px 20px;
    overflow: hidden;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: self-start;
}
.slider-home-page .slide-desc-text--top {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 20px;
  left: auto;
  top: 0;
  height: 42px;
}
.slider-home-page .slide-desc-text--top:before {
  display: none !important;
}

.slider-home-page .slide-desc-text--top > span {
  display: flex;
  position: relative;
  z-index: 100;
  padding: 0 0 0 25px;
  text-align: right;
}
.slider-home-page .slide-desc-text--top > span:after {
    content: '';
    display: block;
    top: 0;
    /* left: auto; */
    right: -40px;
    bottom: 0;
    position: absolute;
    width: 110%;
    height: 100%;
    background: #eebb00;
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    transform: skew(30deg);
    z-index: -1;
}
.slide-desc-text, .slide-desc-text--bottom {
  margin-right: 20px;
}
.slider-home-page .common-slide-item, .new_slider_spec .slider-home-page .common-slide-item  {
  display: flex !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: initial;
}
.slider-home-page .slider-btn {
  margin-bottom: 30px;
}
.specialoffers .common-slide-item {
    display: flex !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
}
.common-slide-item_spec {
  margin: 30px 0;
}
.common-slide-item_spec .slide-desc {
    width: auto;
  margin: 0 20px;
  padding: 0;
  left: auto;
  padding: 30px;
  
}
.common-cat {
    max-width: 100%;
    margin: 0;
}

/*$grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)
$container-max-widths: (sm: 480px, md: 720px, lg: 960px, xl: 1170px)



1200px
992px
768px
576px
*/
.many-slides .many-slides-item img, .many-slides2 .many-slides-item img {
    width: auto;
}
.common-cat .slick-slider {
    max-width: 100%;
}

.p__holder-wrapp {
    max-width: 1180px;
    padding-right: 15px;
    padding-left: 15px;
}
.prod-detail-desc .slick-track {
    display: flex;
    width: 100%;
}
.calculator__price {
    width: auto;
}
.many-slides2{
    padding-top: 20px;
}
.many-slides2 .many-slides-item .many-slides-item-desc {
    position: relative;
}
.many-slides2 .many-slides-item  {
    display: flex;
    flex-direction: column;
    min-height: 200px; 
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    display: flex;
    height: 200px;
    justify-content: center;

}
  


.many-slides .slick-prev, .many-slides2 .slick-prev {
  top: 0;
  left: auto;
  right: 60px;
  width: 30px;
  height: 30px;
}
.many-slides .slick-next, .many-slides2 .slick-next {
  top: 0;
  right: 20px;
  width: 30px;
  height: 30px;
}
.slick-prev:before, .slick-next:before  {
  font-size: 28px !important;
  color: #eebb00 !important;
}

.cat-item__link {
    word-wrap: break-word;
}


.catalog__edge .h1 {
  width: 100%;
}
.catalog__edge {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: space-between;
}
.preim-item {
  margin: 0;
  width: 33%;
  padding: 10px;
}
.usl-item__name {
    padding: 131px 42px 40px;
}

@media (min-width: 576px) {
    .p__holder-wrapp {
        max-width: 480px;
        
    }
}
@media (min-width: 768px) {
    .p__holder-wrapp {
        max-width: 720px;
        
    }
    
}
@media (min-width: 992px) {
    .p__holder-wrapp {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .p__holder-wrapp {
        max-width: 1180px;
        
    }
    
    
    

}
@media (max-width: 1200px) {
    .many-slides-item-desc {
       
        width: 100%;
        top: 50%;
        left: 0;
    }
    .preim-item {
      width: 50%;
    }
    .usl-item-link{
        width: 45%;
    }


}

@media (min-width: 992px) {

    .common-usl {
        padding: 0px 32px 30px; 
    }
}
@media (max-width: 768px) {
    
    .preim-item {

      display: flex;
      flex-direction: column;
    }

}

@media (max-width: 563px) {
    .usl-item-link{
        width: 95%;
    }
}







@media screen and (max-width: 1100px) {
    .prod-detail-desc .h2, .prod-detail-desc .common-cat {
        display: flex;
        width: 100%;
    }

}
@media only screen and (min-width: 865px) and (max-width: 1180px) {
    .similar-incat {
        width: 100%;
    }
}

@media only screen and (min-width: 564px) and (max-width: 864px) {
    .p__holder-wrapp {
        width: 100%;
    }
    .similar-incat {
        width: 100%;
    }

    .usl-item-link {
        width: 75%;
    }
}

@media only screen and (max-width: 563px) {
    .similar-incat {
        width: 100%;
    }
}


@media only screen and (max-width: 768px){

}


@media only screen and (min-width: 564px) and (max-width: 864px){
    .f-callback{
        right: unset !important;
    }
}

.specialoffers_slider .slick-next{
    right: 10px;
}

.specialoffers_slider .slick-prev{
    right: 45px;
}

body .spoiler-open{
    margin-right: 23px;
}



@media only screen and (max-width: 563px){
    body .preim-item{
        width: 99%;
        align-items: center;
    }
    .catalog__edge .preim-item .edge-item__deck p {
        text-align: center;
    }
}
.about__bottom{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.about__bottom .about__bottom-item {
 
margin-right: 0;
}

.stl-fw-bold {
	font-weight: bold;
}

.stati-flex-holder {
	display: flex;
	flex-wrap:wrap;
	column-gap: 20px;
	max-width: 800px;
	margin: 25px auto;
}

.stati-flex-holder .--text {
	width: calc(100% - 200px);
}

.stati-flex-holder ol li, .stati-flex-holder p {
	line-height: 24px;
	font-size: 15px;
	margin-bottom: 25px;
}

.stati-flex-holder ol {
	padding-left: 0;
}

.stati-flex-holder .images-flex {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
	max-width: 170px;
}

.stati-flex-holder .images-flex.--full {
	width: 100%;
	max-width: 100%;
	flex-basis: 100%;
}

.stati-faq {
	padding-top: 15px;
}

.stati-faq__item {
	margin-bottom: 10px;
}

.stati-faq__item-name {
	font-weight: bold;
	margin-bottom: 5px;
}

.stati-faq__item-body {
	margin-bottom: 0px;
	padding-left: 10px;
}

@media only screen and (max-width: 767px){
  .stati-flex-holder {
	  flex-direction: column;
	  column-gap: 0px;
  }
  .stati-flex-holder .--text {
	 width: 100%; 
	 max-width: 100%;
  }
  .stati-flex-holder .images-flex {
	 width: 100%; 
	 max-width: 100%; 
	 gap: 12px;
	 flex-direction: row;
	 flex-wrap: wrap;
	 justify-content: center;
  }
  .stati-flex-holder .images-flex img {
	  max-width: 140px;
  }
}

@media only screen and (max-width: 420px){
  .stati-flex-holder .images-flex img {
	  max-width: 100%;
  }	
}
/* End */


/* Start:/local/templates/main/scripts/fancybox/jquery.fancybox.min.css?157918881814065*/
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;backface-visibility:hidden;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;height:100%;left:0;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-webkit-transform:translateZ(0);transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.87;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s,visibility 0s linear .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s,visibility 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;text-align:center;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;-webkit-transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;height:100%;margin-right:-.25em;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--next{z-index:99995}.fancybox-slide--image{overflow:visible;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px 6px 0}.fancybox-slide--iframe{padding:44px 44px 0}.fancybox-content{background:#fff;display:inline-block;margin:0 0 6px;max-width:100%;overflow:auto;padding:0;padding:24px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{-webkit-animation-timing-function:cubic-bezier(.5,0,.14,1);animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;margin:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;-webkit-transform-origin:top left;transform-origin:top left;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-drag .fancybox-content{cursor:-webkit-grab;cursor:grab}.fancybox-is-dragging .fancybox-content{cursor:-webkit-grabbing;cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--html .fancybox-content{margin-bottom:6px}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;margin:0;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff;height:calc(100% - 44px);margin-bottom:44px}.fancybox-iframe,.fancybox-video{background:transparent;border:0;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{vertical-align:top}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;cursor:pointer;display:inline-block;height:44px;margin:0;outline:none;padding:10px;transition:color .2s;vertical-align:top;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:focus,.fancybox-button:hover{color:#fff}.fancybox-button.disabled,.fancybox-button.disabled:hover,.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default}.fancybox-button svg{display:block;overflow:visible;position:relative;shape-rendering:geometricPrecision}.fancybox-button svg path{fill:transparent;stroke:currentColor;stroke-linejoin:round;stroke-width:3}.fancybox-button--pause svg path:nth-child(1),.fancybox-button--play svg path:nth-child(2){display:none}.fancybox-button--play svg path,.fancybox-button--share svg path,.fancybox-button--thumbs svg path{fill:currentColor}.fancybox-button--share svg path{stroke-width:1}.fancybox-navigation .fancybox-button{height:38px;opacity:0;padding:6px;position:absolute;top:50%;width:38px}.fancybox-show-nav .fancybox-navigation .fancybox-button{transition:opacity .25s,visibility 0s,color .25s}.fancybox-navigation .fancybox-button:after{content:"";left:-25px;padding:50px;position:absolute;top:-25px}.fancybox-navigation .fancybox-button--arrow_left{left:6px}.fancybox-navigation .fancybox-button--arrow_right{right:6px}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#555;cursor:pointer;height:44px;margin:0;padding:6px;position:absolute;right:0;top:0;width:44px;z-index:10}.fancybox-close-small svg{fill:transparent;opacity:.8;stroke:currentColor;stroke-width:1.5;transition:stroke .1s}.fancybox-close-small:focus{outline:none}.fancybox-close-small:hover svg{opacity:1}.fancybox-slide--iframe .fancybox-close-small,.fancybox-slide--image .fancybox-close-small,.fancybox-slide--video .fancybox-close-small{color:#ccc;padding:5px;right:-12px;top:-44px}.fancybox-slide--iframe .fancybox-close-small:hover svg,.fancybox-slide--image .fancybox-close-small:hover svg,.fancybox-slide--video .fancybox-close-small:hover svg{background:transparent;color:#fff}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small{display:none}.fancybox-caption{bottom:0;color:#fff;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:25px 44px;right:0}.fancybox-caption:before{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);background-repeat:repeat-x;background-size:contain;bottom:0;content:"";display:block;left:0;pointer-events:none;position:absolute;right:0;top:-25px;z-index:-1}.fancybox-caption:after{border-bottom:1px solid hsla(0,0%,100%,.3);content:"";display:block;left:44px;position:absolute;right:44px;top:0}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{-webkit-animation:a .8s infinite linear;animation:a .8s infinite linear;background:transparent;border:6px solid hsla(0,0%,39%,.5);border-radius:100%;border-top-color:#fff;height:60px;left:50%;margin:-30px 0 0 -30px;opacity:.6;padding:0;position:absolute;top:50%;width:60px;z-index:99999}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;-webkit-transform:scale3d(1.5,1.5,1.5);transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;-webkit-transform:rotate(1turn);transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;-webkit-transform:scale3d(0,0,0) translate3d(-100%,0,0);transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;-webkit-transform:scale3d(0,0,0) translate3d(100%,0,0);transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;-webkit-transform:scaleX(1) translateZ(0);transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{-webkit-transform:translate3d(-100%,0,0) scale(.1) skew(-10deg);transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{-webkit-transform:translate3d(100%,0,0) scale(.1) skew(10deg);transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#fff;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:transparent;top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs>ul{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x>ul{overflow:hidden}.fancybox-thumbs-y>ul::-webkit-scrollbar{width:7px}.fancybox-thumbs-y>ul::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y>ul::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs>ul>li{-webkit-backface-visibility:hidden;backface-visibility:hidden;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs-loading{background:rgba(0,0,0,.1)}.fancybox-thumbs>ul>li{background-position:50%;background-repeat:no-repeat;background-size:cover}.fancybox-thumbs>ul>li:before{border:4px solid #4ea7f9;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs .fancybox-thumbs-active:before{opacity:1}@media (max-width:800px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs>ul>li{max-width:calc(100% - 10px)}}
/* End */


/* Start:/local/templates/main/scripts/slick/slick.css?16050883671758*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
}

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

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/local/templates/main/scripts/slick/slick-theme.css?17833335333159*/
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/local/templates/main/scripts/slick/./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    font-display: swap;

    src: url('/local/templates/main/scripts/slick/./fonts/slick.eot');
    src: url('/local/templates/main/scripts/slick/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('/local/templates/main/scripts/slick/./fonts/slick.woff') format('woff'), url('/local/templates/main/scripts/slick/./fonts/slick.ttf') format('truetype'), url('/local/templates/main/scripts/slick/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -35px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -15px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* End */


/* Start:/local/templates/main/scripts/styler/dist/jquery.formstyler.min.css?15791888181827*/
.jq-checkbox,
.jq-radio{position:relative;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
.jq-checkbox input,
.jq-radio input{position:absolute;z-index:-1;margin:0;padding:0;opacity:0;}
.jq-file{position:relative;display:inline-block;overflow:hidden;}
.jq-file input{position:absolute;top:0;right:0;height:auto;margin:0;padding:0;opacity:0;font-size:100px;line-height:1em;}
.jq-file__name{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.jq-selectbox,
.jq-select-multiple{position:relative;display:inline-block;}
.jq-selectbox select,
.jq-select-multiple select{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;opacity:0;}
.jq-selectbox li,
.jq-select-multiple li{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;}
.jq-selectbox{z-index:10;}
.jq-selectbox__select{position:relative;}
.jq-selectbox__select-text{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;text-overflow:ellipsis;}
.jq-selectbox__dropdown{position:absolute;}
.jq-selectbox__search input{-webkit-appearance:textfield;}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration{-webkit-appearance:none;}
.jq-selectbox__dropdown ul{position:relative;overflow:auto;overflow-x:hidden;list-style:none;-webkit-overflow-scrolling:touch;}
.jq-select-multiple ul{position:relative;overflow-x:hidden;-webkit-overflow-scrolling:touch;}
.jq-number{display:inline-block;}
.jq-number__field input{-moz-appearance:textfield;text-align:left;}
.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button{margin:0;-webkit-appearance:none;}
/* End */


/* Start:/local/templates/main/scripts/styler/dist/jquery.formstyler.theme.css?157918881810433*/
.jq-checkbox,
.jq-radio {
	vertical-align: -4px;
	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;
	border: 1px solid #C3C3C3;
	background: linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 1px rgba(0,0,0,.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
	cursor: pointer;
}
.jq-checkbox.focused,
.jq-radio.focused {
	border: 1px solid #08C;
}
.jq-checkbox.disabled,
.jq-radio.disabled {
	opacity: .55;
}
.jq-checkbox {
	border-radius: 3px;
}
.jq-checkbox.checked .jq-checkbox__div {
	width: 8px;
	height: 4px;
	margin: 3px 0 0 3px;
	border-bottom: 2px solid #666;
	border-left: 2px solid #666;
	-webkit-transform: rotate(-50deg);
	transform: rotate(-50deg);
}
.jq-radio {
	border-radius: 50%;
}
.jq-radio.checked .jq-radio__div {
	width: 10px;
	height: 10px;
	margin: 3px 0 0 3px;
	border-radius: 50%;
	background: #777;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,.7);
}
.jq-file {
	width: 270px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.jq-file input {
	cursor: pointer;
}
.jq-file__name {
	box-sizing: border-box;
	width: 100%;
	height: 34px;
	padding: 0 80px 0 10px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #FFF;
	box-shadow: inset 1px 1px #F1F1F1;
	font: 14px/32px Arial, sans-serif;
	color: #333;
}
.jq-file__browse {
	position: absolute;
	top: 1px;
	right: 1px;
	padding: 0 10px;
	border-left: 1px solid #CCC;
	border-radius: 0 4px 4px 0;
	background: linear-gradient(#FFF, #E6E6E6);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px/32px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
}
.jq-file:hover .jq-file__browse {
	background: linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-file:active .jq-file__browse {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-file.focused .jq-file__name {
	border: 1px solid #5794BF;
}
.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-number {
	position: relative;
	vertical-align: middle;
	padding: 0 36px 0 0;
}
.jq-number__field {
	width: 100px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
}
.jq-number__field:hover {
	border-color: #B3B3B3;
}
.jq-number__field input {
	box-sizing: border-box;
	width: 100%;
	padding: 8px 9px;
	border: none;
	outline: none;
	background: none;
	font: 14px Arial, sans-serif;
	color: #333;
}
.jq-number__spin {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 14px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: linear-gradient(#FFF, #E6E6E6);
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
.jq-number__spin.minus {
	top: auto;
	bottom: 0;
}
.jq-number__spin:hover {
	background: linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-number__spin:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-number__spin:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 11px;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #999;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:after {
	top: 5px;
	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-bottom: none;
	border-left: 5px solid transparent;
}
.jq-number__spin.minus:hover:after {
	border-top-color: #000;
}
.jq-number__spin.plus:hover:after {
	border-bottom-color: #000;
}
.jq-number.focused .jq-number__field {
	border: 1px solid #5794BF;
}
.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-number.disabled .jq-number__spin:after {
	border-bottom-color: #AAA;
}
.jq-number.disabled .jq-number__spin.minus:after {
	border-top-color: #AAA;
}
.jq-selectbox {
	vertical-align: middle;
	cursor: pointer;
}
.jq-selectbox__select {
	height: 37px;
	line-height: 37px;
	padding: 0 45px 0 10px;
}
.jq-selectbox__select:hover {
}
.jq-selectbox__select:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
.jq-selectbox.focused .jq-selectbox__select {
	
}
.jq-selectbox.disabled .jq-selectbox__select {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-selectbox__select-text {
	display: block;
	width: 100%;
}
.jq-selectbox .placeholder {
	color: #888;
}
.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 100%;
	
}
.jq-selectbox__trigger-arrow {
	-ms-transform:rotate(135deg);

}
.jq-selectbox:hover .jq-selectbox__trigger-arrow {
}
.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
}
.jq-selectbox__dropdown {
	box-sizing: border-box;
	width: 100%;
	margin: 2px 0 0;
	padding: 0;
	border: 1px solid #CCC;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0 2px 10px rgba(0,0,0,.2);
	font: 14px/18px Arial, sans-serif;
}
.jq-selectbox__search {
	margin: 5px;
}
.jq-selectbox__search input {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 5px 27px 6px 8px;
	border: 1px solid #CCC;
	border-radius: 3px;
	outline: none;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==') no-repeat 100% 50%;
	box-shadow: inset 1px 1px #F1F1F1;
	color: #333;
}
.jq-selectbox__not-found {
	margin: 5px;
	padding: 5px 8px 6px;
	font-size: 13px;
}
.jq-selectbox ul {
	margin: 0;
	padding: 0;
}
.jq-selectbox li {
	min-height: 18px;
	padding: 5px 10px 6px;
	color: #231F20;
}
.jq-selectbox li.selected {
	background-color: #A3ABB1;
	color: #FFF;
}
.jq-selectbox li:hover {
	background-color: #08C;
	color: #FFF;
}
.jq-selectbox li.disabled {
	color: #AAA;
	display: none !important;
}
.jq-selectbox li.disabled:hover {
	background: none;
}
.jq-selectbox li.optgroup {
	font-weight: bold;
}
.jq-selectbox li.optgroup:hover {
	background: none;
	color: #231F20;
	cursor: default;
}
.jq-selectbox li.option {
	padding-left: 25px;
}
.jq-select-multiple {
	box-sizing: border-box;
	padding: 1px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #FFF;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px/18px Arial, sans-serif;
	color: #333;
	cursor: default;
}
.jq-select-multiple.focused {
	border: 1px solid #5794BF;
}
.jq-select-multiple.disabled {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-select-multiple ul {
	margin: 0;
	padding: 0;
}
.jq-select-multiple li {
	padding: 3px 9px 4px;
	list-style: none;
}
.jq-select-multiple li:first-child {
	border-radius: 3px 3px 0 0;
}
.jq-select-multiple li:last-child {
	border-radius: 0 0 3px 3px;
}
.jq-select-multiple li.selected {
	background: #08C;
	color: #FFF;
}
.jq-select-multiple li.disabled {
	color: #AAA;
}
.jq-select-multiple li.optgroup {
	font-weight: bold;
}
.jq-select-multiple li.option {
	padding-left: 25px;
}
.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
	background: #CCC;
	color: #FFF;
}
input[type='email'].styler,
input[type='password'].styler,
input[type='search'].styler,
input[type='tel'].styler,
input[type='text'].styler,
input[type='url'].styler,
textarea.styler {
	padding: 8px 9px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
}
input[type='search'].styler {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea.styler {
	overflow: auto;
}
input[type='email'].styler:hover,
input[type='password'].styler:hover,
input[type='search'].styler:hover,
input[type='tel'].styler:hover,
input[type='text'].styler:hover,
input[type='url'].styler:hover,
textarea.styler:hover {
	border-color: #B3B3B3;
}
input[type='email'].styler:hover:focus,
input[type='password'].styler:hover:focus,
input[type='search'].styler:hover:focus,
input[type='tel'].styler:hover:focus,
input[type='text'].styler:hover:focus,
input[type='url'].styler:hover:focus,
textarea.styler:hover:focus {
	border-color: #CCC;
	border-top-color: #B3B3B3;
	outline: none;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
button.styler,
input[type='button'].styler,
input[type='submit'].styler,
input[type='reset'].styler {
	overflow: visible;
	padding: 8px 11px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	outline: none;
	background: linear-gradient(#FFF, #E6E6E6);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
button.styler.styler::-moz-focus-inner,
input[type='button'].styler.styler::-moz-focus-inner,
input[type='submit'].styler.styler::-moz-focus-inner,
input[type='reset'].styler.styler::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button.styler:not([disabled]):hover,
input[type='button'].styler:not([disabled]):hover,
input[type='submit'].styler:not([disabled]):hover,
input[type='reset'].styler:not([disabled]):hover,
input[type='reset'].styler:hover {
	background: linear-gradient(#F6F6F6, #E6E6E6);
}
button.styler:active,
input[type='button'].styler:active,
input[type='submit'].styler:active,
input[type='reset'].styler:active {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled] {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}

.jq-selectbox, .jq-select-multiple {
	display: block;
}
.jq-selectbox__trigger-arrow {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 30%;
	top: 11%;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(135deg);
}




/* End */


/* Start:/bitrix/components/bitrix/search.title/templates/.default/style.css?15791888192108*/
div.title-search-result {
	border:1px solid #c6c6c6;
	display:none;
	overflow:hidden;
	z-index:205;
}

table.title-search-result {
	border-collapse: collapse;
	border:none;
	width:10%;
}

table.title-search-result th {
	background-color:#F7F7F7;
	border-right:1px solid #e8e8e8;
	color:#949494;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
	padding-left:14px;
 	padding-right:12px;
	text-align:right;
	vertical-align:top;
	white-space:nowrap;
	width:1%;
}

table.title-search-result td {
	background-color:white;
	color:black;
	font-weight:normal;
	padding-top:2px;
	padding-bottom:2px;
	text-align:left;
	white-space:nowrap;
}

table.title-search-result td.title-search-item {
	padding-left:8px;
	padding-right:15px;
}

table.title-search-result td.title-search-item a {
	padding-left:4px;
	padding-right:15px;
	text-decoration: none;
	color:black;
	vertical-align:top;
	display:block;
}

table.title-search-result td.title-search-item img {
	vertical-align:top;
}

table.title-search-result td.title-search-item b {
	color:#cf0000;
	font-weight:normal;
}

table.title-search-result tr.title-search-selected td
,table.title-search-result tr.title-search-selected a
,table.title-search-result tr.title-search-selected td.title-search-more a
{
	background-color:#fff2be;
}

table.title-search-result td.title-search-more {
	font-size:11px;
	font-weight:normal;
	padding-right:15px;
	padding-left:24px;
	padding-top:0px;
}

table.title-search-result td.title-search-more a
{
	padding-left:12px;
	padding-right:15px;
	text-decoration:none;
	color:#999999;
}

table.title-search-result td.title-search-all {
	padding-left:24px;
	padding-right:15px;
}

table.title-search-result td.title-search-all a
{
	padding-left:4px;
	text-decoration:none;
	color:#808080;
}

table.title-search-result td.title-search-separator
, table.title-search-result th.title-search-separator {
	padding-top:0px;
	padding-bottom:0px;
	font-size:4px;
}

div.title-search-fader {
	display:none;
	background-image: url('/bitrix/components/bitrix/search.title/templates/.default/images/fader.png');
	background-position: right top;
	background-repeat: repeat-y;
	position:absolute;
}
/* End */


/* Start:/local/templates/main/template_styles.css?17833238577453*/
.prod-detail-properties-tops {
    position: relative;
    padding-bottom: 50px;
}
.prod-detail-properties table tbody {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.inf-properties__price td.detail-variable-row {
    padding-left: 0;
}
.detail-variable-content.detail-variable-content-new {
    position: relative;
    top: 0;
    right: 0;
    font-size: 24px;
}
.prod-detail-properties .stringOrder {
    text-align: start;
    max-width: 250px;
    width: 100%;
}
.stringOrder .detail_link {
    display: block;
    font-size: 24px;
    max-width: 200px;
    width: 100%;
    text-align: center;
}
.prod-detail-properties .shipping-section {
    margin-left: -50%;
    margin-right: -50%;
}
.prod-detail-properties  .cartIcons {
    max-width: 100%;
    width: 100%;
}
.prod-detail-properties .preim-card .card-text {
    max-width: 170px;
    min-height: 45px;
}
.prod-detail-properties .preim-card span {
    text-align: center;
}
.prod-detail-properties .preim-list {
    margin-top: 0;
}
@media (max-width: 1227px) {
    .prod-detail-properties .stringOrder {
        display: inline-block;
    }
}
@media (max-width: 1200px) {
    .prod-detail-properties .inf-properties__price tr {
        flex-direction: row;
    }
    .prod-detail-properties-tops {
        padding-bottom: 80px;
    }
    .prod-detail-properties .shipping-block {
        max-width: 930px;
    }
    .detail-variable-content.detail-variable-content-new {
        font-size: 22px;
    }
    .stringOrder .detail_link {
        font-size: 22px;
    }
}
@media (max-width: 992px) {
    .inf-properties__photo {
        margin-right: 10px;
    }
    .inf-properties__price tr {
        gap: 5px;
    }
    .inf-properties__price {
        padding: 0 0 15px 15px;
    }
    .inf-properties__price td.detail-variable-row {
        font-size: 14px;
    }
    .detail-variable-row-sale {
        max-width: 150px;
    }
    .inf-properties__price td {
        padding: 5px 3px;
        display: flex;
        align-items: center;
    }
    .details-btn-row {
        flex-direction: column;
        align-items: start;
    }
    .prod-detail-properties .shipping-block {
        max-width: 720px;
    }
    .prod-detail-properties-tops {
        padding-bottom: 20px;
    }
}
@media only screen and (min-width: 564px) and (max-width: 864px) {
    .prod-detail-properties .inf-properties__price {
        font-size: 100%;
        padding: 0;
        display: block;
    }
    .prod-detail-properties-tops {
        padding-bottom: 70px;
    }
    .prod-detail-properties table tbody {
        gap: 10px;
    }
    .prod-detail-properties .inf-properties__price tr {
        flex-direction: column;
    }
    .detail-variable-content.detail-variable-content-new {
        font-size: 18px;
    }
    .stringOrder .detail_link {
        font-size: 18px;
    }
    .prod-detail-properties .details-btn-row {
        flex-direction: column;
        align-items: start;
    }
    .prod-detail-properties .cartIcons {
        margin-bottom: 20px;
    }
    .inf-properties__photo {
        margin-right: 30px;
    }
}
@media only screen and (min-width: 564px) and (max-width: 864px) {
    .prod-detail-properties .inf-properties__price {
        display: table;
    }
    .prod-detail-properties .inf-properties__price tr {
        flex-direction: row;
    }
    .prod-detail-properties .inf-properties__price tr td {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 767px) {
    .prod-detail-properties-tops {
        padding-bottom: 20px;
    }
}
@media only screen and (max-width: 563px) {
    .prod-detail-properties .inf-properties__price {
        justify-content: start;
        padding-left: 0;
        padding-right: 0;
    }
    .prod-detail-properties .details-btn-row {
        flex-direction: row;
    }
    .prod-detail-properties .cartIcons {
        margin-bottom: 20px;
    }
    .prod-detail-properties .stringOrder {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .prod-detail-properties-tops {
        padding-bottom: 20px;
    }
    .inf-properties__price {
        padding: 15px 0 0;
    }
}
@media only screen and (max-width: 520px) {
    .detail-variable-content.detail-variable-content-new {
        font-size: 16px;
    }
    .stringOrder .detail_link {
        font-size: 16px;
    }
    .prod-detail-properties .details-btn-row {
        font-size: 16px;
    }
    .prod-detail-properties .details-btn-row-link {
        font-size: 14px;
        padding: 5px 10px;
    }
    .prod-detail-properties .inf-properties__price {
        font-size: 14px;
    }
    .prod-detail-properties .inf-properties__price td {
        display: flex;
        align-items: center;
    }
    .prod-detail-properties .preim-card {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-direction: row;
        max-width: 100%;
    }
    .prod-detail-properties .preim-list .item {
        width: 100%;
        justify-content: center;
        flex-basis: 100%;
    }
    .prod-detail-properties .preim-card .badge {
        flex-shrink: 0;
    }
    .prod-detail-properties .preim-card .card-text {
        max-width: 100%;
        min-height: 45px;
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 400px) {
    .prod-detail-properties .details-btn-row {
        flex-direction: column;
        align-items: start;
    }
}
@media only screen and (max-width: 380px) {
    .detail-variable-row-sale {
        max-width: 150px;
    }
    .prod-detail-properties .preim-card .card-text {
        margin-bottom: 10px;
    }
}
@media (max-width: 512px) {
    .form-back-call.popup {
        max-width: 340px;
        width: 100%;
        left: 0;
    }
    .form-back-call.popup:not(.fancybox-content) {
        left: 50%;
        margin-left: -170px;
    }
    .form-back-call .callback__body {
        padding: 20px 0;
    }
    .form-back-call .close {
        display: none;
    }
    .h__calculatormos .h__calck_block, .h__calculatormos .h__phone_pop_block {
        justify-content: center;
        gap: 10px;
    }
    .prod-detail-desc .many-slides-item-desc {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
    }
    .prod-detail-desc .many-slides-item-desc .item-name .sect-name {
        font-weight: 600;
        font-size: 16px;
        line-height: 120%;
    }
    .prod-detail-desc .many-slides-item-desc .item-price {
        font-size: 16px;
        font-weight: 600;
    }
}
@media (max-width: 480px) {
    .prod-detail-desc .many-slides-item-desc .item-name .sect-name {
        font-size: 14px;
    }
    .prod-detail-desc .many-slides-item-desc .item-price {
        font-size: 14px;
    }
}
@media (max-width: 420px) {
    .prod-detail-desc .many-slides-item-desc {
        padding: 0;
    }
}
@media (max-width: 380px) {
    .prod-detail-desc .many-slides-item-desc .item-name .sect-name {
        font-size: 13px;
    }
    .prod-detail-desc .many-slides-item-desc .item-price {
        font-size: 13px;
    }
}
/* End */
/* /local/templates/main/styles/common.css?1788962555128224 */
/* /local/templates/main/styles/custom.css?17441242906994 */
/* /local/templates/main/scripts/fancybox/jquery.fancybox.min.css?157918881814065 */
/* /local/templates/main/scripts/slick/slick.css?16050883671758 */
/* /local/templates/main/scripts/slick/slick-theme.css?17833335333159 */
/* /local/templates/main/scripts/styler/dist/jquery.formstyler.min.css?15791888181827 */
/* /local/templates/main/scripts/styler/dist/jquery.formstyler.theme.css?157918881810433 */
/* /bitrix/components/bitrix/search.title/templates/.default/style.css?15791888192108 */
/* /local/templates/main/template_styles.css?17833238577453 */
