:root {
    --mm-ocd-width: 80%;
    --mm-ocd-min-width: 200px;
    --mm-ocd-max-width: 440px
}

body.mm-ocd-opened {
    overflow-y: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

.mm-ocd {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    background: rgba(0, 0, 0, 0);
    -webkit-transition-property: bottom, background-color;
    -o-transition-property: bottom, background-color;
    transition-property: bottom, background-color;
    -webkit-transition-duration: 0s, .3s;
    -o-transition-duration: 0s, .3s;
    transition-duration: 0s, .3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-delay: .45s, .15s;
    -o-transition-delay: .45s, .15s;
    transition-delay: .45s, .15s
}

.mm-ocd--open {
    bottom: 0;
    background: rgba(0, 0, 0, .25);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.mm-ocd__content {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: var(--mm-ocd-width);
    min-width: var(--mm-ocd-min-width);
    max-width: var(--mm-ocd-max-width);
    background: #fff;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

.mm-ocd--left .mm-ocd__content {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.mm-ocd--right .mm-ocd__content {
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.mm-ocd--open .mm-ocd__content {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.mm-ocd__backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: clamp(calc(100% - var(--mm-ocd-max-width)), calc(100% - var(--mm-ocd-width)), calc(100% - var(--mm-ocd-min-width)));
    background: rgba(3, 2, 1, 0)
}

.mm-ocd--left .mm-ocd__backdrop {
    right: 0
}

.mm-ocd--right .mm-ocd__backdrop {
    left: 0
}

.mm-spn, .mm-spn a, .mm-spn li, .mm-spn span, .mm-spn ul {
    display: block;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:root {
    --mm-spn-item-height: 50px;
    --mm-spn-item-indent: 20px;
    --mm-spn-line-height: 24px
}

.mm-spn {
    width: 100%;
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

.mm-spn ul {
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    left: 100%;
    bottom: 0;
    z-index: 2;
    width: 130%;
    padding-right: 30%;
    line-height: var(--mm-spn-line-height);
    overflow: visible;
    overflow-y: auto;
    background: inherit;
    -webkit-transition: left .3s ease 0s;
    -o-transition: left .3s ease 0s;
    transition: left .3s ease 0s;
    cursor: default
}

.mm-spn ul:after {
    content: "";
    display: block;
    height: var(--mm-spn-item-height)
}

.mm-spn>ul {
    left: 0
}

.mm-spn ul.mm-spn--open {
    left: 0
}

.mm-spn ul.mm-spn--parent {
    left: -30%;
    overflow-y: hidden
}

.mm-spn li {
    position: relative;
    background: inherit;
    cursor: pointer
}

.mm-spn li:before {
    content: "";
    display: block;
    position: absolute;
    top: calc(var(--mm-spn-item-height)/ 2);
    right: calc(var(--mm-spn-item-height)/ 2);
    z-index: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(45deg) translate(0, -50%);
    -ms-transform: rotate(45deg) translate(0, -50%);
    transform: rotate(45deg) translate(0, -50%);
    opacity: .4
}

.mm-spn li:after {
    content: "";
    display: block;
    margin-left: var(--mm-spn-item-indent);
    border-top: 1px solid;
    opacity: .15
}

.mm-spn a, .mm-spn span {
    position: relative;
    z-index: 1;
    padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height))/ 2) var(--mm-spn-item-indent)
}

.mm-spn a {
    background: inherit;
    color: inherit;
    text-decoration: none
}

.mm-spn a:not(:last-child) {
    width: calc(100% - var(--mm-spn-item-height))
}

.mm-spn a:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-right: 1px solid;
    opacity: .15
}

.mm-spn span {
    background: 0 0
}

.mm-spn.mm-spn--navbar {
    cursor: pointer
}

.mm-spn.mm-spn--navbar:before {
    content: "";
    display: block;
    position: absolute;
    top: calc(var(--mm-spn-item-height)/ 2);
    left: var(--mm-spn-item-indent);
    width: 10px;
    height: 10px;
    margin-top: 2px;
    border-top: 2px solid;
    border-left: 2px solid;
    -webkit-transform: rotate(-45deg) translate(50%, -50%);
    -ms-transform: rotate(-45deg) translate(50%, -50%);
    transform: rotate(-45deg) translate(50%, -50%);
    opacity: .4
}

.mm-spn.mm-spn--navbar.mm-spn--main {
    cursor: default
}

.mm-spn.mm-spn--navbar.mm-spn--main:before {
    content: none;
    display: none
}

.mm-spn.mm-spn--navbar:after {
    content: attr(data-mm-spn-title);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--mm-spn-item-height);
    padding: 0 calc(var(--mm-spn-item-indent) * 2);
    line-height: var(--mm-spn-item-height);
    opacity: .4;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.mm-spn.mm-spn--navbar.mm-spn--main:after {
    padding-left: var(--mm-spn-item-indent)
}

.mm-spn.mm-spn--navbar ul {
    top: calc(var(--mm-spn-item-height) + 1px)
}

.mm-spn.mm-spn--navbar ul:before {
    content: "";
    display: block;
    position: fixed;
    top: inherit;
    z-index: 2;
    width: 100%;
    border-top: 1px solid currentColor;
    opacity: .15
}

.mm-spn.mm-spn--light {
    color: #444;
    background: #f3f3f3
}

.mm-spn.mm-spn--dark {
    color: #ddd;
    background: #333
}

.mm-spn.mm-spn--vertical {
    overflow-y: auto
}

.mm-spn.mm-spn--vertical ul {
    width: 100%;
    padding-right: 0;
    position: static
}

.mm-spn.mm-spn--vertical ul ul {
    display: none;
    padding-left: var(--mm-spn-item-indent)
}

.mm-spn.mm-spn--vertical ul ul:after {
    height: calc(var(--mm-spn-item-height)/ 2)
}

.mm-spn.mm-spn--vertical ul.mm-spn--open {
    display: block
}

.mm-spn.mm-spn--vertical li.mm-spn--open:before {
    -webkit-transform: rotate(135deg) translate(-50%, 0);
    -ms-transform: rotate(135deg) translate(-50%, 0);
    transform: rotate(135deg) translate(-50%, 0)
}

.mm-spn.mm-spn--vertical ul ul li:last-child:after {
    content: none;
    display: none
}

.mobile-menu:not(.mm-spn) {
    display: none
}


.mfp-arrow,
.owl-carousel,
.owl-carousel .owl-item,
.owl-theme .owl-dots,
.owl-theme .owl-nav {
    -webkit-tap-highlight-color: transparent
}

.content-advantages ul li,
.content-group--info .list ul li,
.content-tabs ul li,
.footer-contacts ul li,
.footer-nav ul li,
.footer-soc ul li,
.mobileleft_menu ul li {
    list-style-type: none
}

.list-title a {
    line-height: 1.5;
}

.pricetable {
    border-top: 1px solid #aaa;
    border-left: 1px solid #aaa;
}

.pricetable tr td {
    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}

.owl-carousel,
.owl-carousel .owl-item {
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.mfp-arrow:after,
.mfp-arrow:before,
.mfp-container:before,
.mfp-figure:after {
    content: ''
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    -webkit-transition: height .5s ease-in-out;
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease, -webkit-transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.mfp-bg,
.mfp-wrap {
    position: fixed;
    left: 0;
    top: 0
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #fff;
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #fff;
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots {
    text-align: center
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 9px 5px;
    background: #fff;
    border: 1px solid #db2b36;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.mfp-bg,
.mfp-container,
.mfp-wrap {
    width: 100%;
    height: 100%
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #db2b36
}

.mfp-bg {
    z-index: 1042;
    overflow: hidden;
    background: #0b0b0b;
    opacity: .8
}

.mfp-wrap {
    z-index: 1043;
    outline: 0 !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

img.mfp-img,
legend {
    -webkit-box-sizing: border-box
}

.mfp-container:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-close,
.mfp-preloader {
    text-align: center;
    position: absolute
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #CCC;
    top: 50%;
    width: auto;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #CCC
}

.mfp-close,
.mfp-preloader a:hover {
    color: #FFF
}

.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader {
    display: none
}

button.mfp-arrow,
button.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation
}

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    right: 0;
    top: 0;
    text-decoration: none;
    opacity: .65;
    padding: 0 0 18px 10px;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:focus,
.mfp-close:hover {
    opacity: 1
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-figure,
img.mfp-img {
    line-height: 0
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    margin: -55px 0 0;
    top: 50%;
    padding: 0;
    width: 90px;
    height: 110px
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:focus,
.mfp-arrow:hover {
    opacity: 1
}

.mfp-arrow:after,
.mfp-arrow:before {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: inset transparent
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: .7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-image-holder .mfp-content,
img.mfp-img {
    max-width: 100%
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

button,
hr,
input {
    overflow: visible
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

.mfp-figure:after,
img.mfp-img {
    width: auto;
    height: auto;
    display: block
}

img.mfp-img {
    box-sizing: border-box;
    padding: 40px 0;
    margin: 0 auto
}

.mfp-figure:after {
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    right: 0;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #444
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),
screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

#small-dialog,
.header-search,
sub,
sup {
    position: relative
}

@media all and (max-width:900px) {
    .mfp-arrow {
        -webkit-transform: scale(.75);
        -ms-transform: scale(.75);
        transform: scale(.75)
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        -ms-transform-origin: 0;
        transform-origin: 0
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        -ms-transform-origin: 100%;
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

#small-dialog {
    background: #fff;
    padding: 20px 30px;
    text-align: left;
    max-width: 400px;
    margin: 40px auto
}

.footer-contacts,
.footer-copy,
.header-contacts {
    text-align: right
}

.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    opacity: 0
}

.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: .8
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0
}

.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg)
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0)
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg)
}

.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: .8
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0
}

.container {
    max-width: 1332px;
    margin: 0 auto;
    padding: 0 15px
}

.row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

audio,
canvas,
progress,
video {
    display: inline-block
}

html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

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

h1 {
    font-size: 2em;
    margin: .67em 0
}

figure {
    margin: 1em 40px
}

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

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    color: #db2b36;
    background-color: transparent;
    text-decoration: none;
    -webkit-text-decoration-skip: objects
}

a:hover {
    text-decoration: none;
    border: 0px;
}

.regions_post a {
    border-bottom: 1px solid #f6cacd;
}

.regions_post a:hover {
    border: 0px;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

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

img {
    border-style: none
}

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

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
select {
    text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: ButtonText dotted 1px
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

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

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

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

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

.tabs__content,
[hidden],
template {
    display: none
}

.tabs__content.active {
    display: block
}

::-webkit-input-placeholder {
    color: #cfcfcf;
    opacity: 1
}

:-moz-placeholder {
    color: #666;
    opacity: 1
}

::-moz-placeholder {
    color: #666;
    opacity: 1
}

:-ms-input-placeholder {
    color: #666;
    opacity: 1
}

body,
html {
    height: 100%;
    font-family: 'Noto Sans', sans-serif;
}

p {
    color: #444;
    font-size: 15px;
    line-height: 22px;
}

.item-page a {
    border-bottom: 1px solid #f6cacd;
}

.item-page a:hover {
    border: 0px;
}

.link a {
    border: 0px;
}

item-page body input:focus:required:invalid,
body input:required:valid,
body textarea:focus:required:invalid,
body textarea:required:valid {
    color: #666
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content {
    flex: 1 0 auto;
}

.topline,
.topline-tablets {
    background: #000;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.topline .row,
.topline-tablets .row {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 42px
}

.topline-tablets-year,
.topline-year {
    color: #aaa;
    font-size: 13px
}

.topline ul,
.topline-tablets ul {
    margin: 0
}

.topline ul li,
.topline-tablets ul li {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.topline ul li a,
.topline-tablets ul li a {
    color: #aaa;
    text-decoration: none;
    border-bottom: 1px solid #444;
    font-size: 13px;
    margin-left: 30px
}

.topline ul.nav.menu>li {
    position: relative;
    padding: 10px 0;
}

.menu ul.nav.menu>li>ul {
    display: none;
    position: absolute;
    background-color: transparent;
    z-index: 100;
    padding-left: 0;
    padding-top: 13px;
    top: 100%;
    left: 17px;
    width: 220px;
}

.menu ul.nav.menu>li:hover>ul {
    display: block;
}

.menu ul.nav.menu>li.item-139>ul {
	grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 2px;
	width: 450px;
}
.menu ul.nav.menu>li.item-139:hover>ul {
    display: grid;
}

.menu ul.nav.menu>li ul li {
    display: block;
    background-color: #db2b36;
    border-bottom: 1px solid #eee;
    position: relative;
    font-size: 15px;
}

.menu ul.nav.menu>li ul li:last-child {
    border-bottom: none;
}

.menu ul.nav.menu>li ul li a {
    margin-left: 0px;
    display: block;
    padding: 10px;
    border-bottom: none;
    color: #fff;
}

.menu ul.nav.menu .parent::after {
    content: '';
    height: 7px;
    width: 7px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg);
    color: #FFF;
    position: absolute;
    right: 12px;
    top: 2px;
}

.menu ul.nav.menu .parent .parent::after {
    transform: rotate(-45deg);
    right: 8px;
    top: 14px;
}

.menu ul.nav.menu>li ul li a:hover {
    background-color: #222;
}

.menu ul.nav.menu>li>ul>li>ul {
    display: none;
    position: absolute;
    background-color: #000;
    position: absolute;
    left: 100%;
    padding-left: 0px;
    top: 0px;
    min-width: 200px;
}

.menu ul.nav.menu>li ul li:hover ul {
    display: block;
}

.topline ul li a:hover,
.topline-tablets ul li a:hover {
    text-decoration: none;
    border: 0px;
}

.mobile_header {
    display: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.mobile_header .name {
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 22px
}

.mobile_header .name a {
    color: #fff;
    text-decoration: none
}

.mobile_header .btn {
    cursor: pointer
}

.mobile_header .btn .line {
    width: 40px;
    height: 3px;
    background: #fff;
    margin-top: 8px;
    display: block
}

.mobile_header .btn .line:first-child {
    margin-top: 0
}

.header .row {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 120px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.content-tabs--open div .form,
.header-contacts--city {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column
}

.header-search input {
    height: 36px;
    width: 336px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    color: #000;
    outline: 0;
    padding-left: 8px;
    box-sizing: initial;
}

.header-search input:focus {
    border: 1px solid #b11623
}

.header-search--btn {
    width: 18px;
    height: 18px;
    background: url(../img/icon-search.png);
    display: block;
    position: absolute;
    right: 10px;
    top: 11px
}

.header-contacts--city,
.menu nav ul li {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox
}

.header-search--btn:hover {
    background: url(../img/icon-search--focus.png)
}

.header-contacts--city {
    display: inline-flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 48px;
    margin-bottom: 16px
}

.header-contacts--city span {
    color: #aaa;
    font-size: 12px;
    text-align: left
}

.header-contacts--city .phone {
    font-size: 24px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.header-contacts--time {
    font-size: 13px;
    color: #444
}

.header-contacts--time a {
    color: #db2b36;
    text-decoration: none;
    border-bottom: 1px dashed rgba(219, 43, 54, .3)
}

.header-contacts--time a:hover {
    border-bottom: 1px dashed #db2b36
}

.menu-toggle {
    display: none;
}

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

.menu.home.fixed {
    position: fixed;
    top: 0px;
    z-index: 250;
    margin-top: 0px;
    width: 100%;
}

.header.home.padbot {
    padding-bottom: 45px;
}

.menu .container .row {
    background: #db2b36
}

.menu .row {
    min-height: 48px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.menu nav ul {
    margin: 0;
    padding: 0
}

.menu nav>ul>li {
    display: inline-flex;
    padding: 0 27px;
    position: relative;
}

.content-tabs--open div .graph,
.slider .item-text img {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox
}

.menu nav>ul>li>a {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    position: relative;
    letter-spacing: 0.5px;
}


.slider {
    padding: 40px 0
}

.slider .item {
    position: relative
}

.slider .item-text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 181px
}

.slider .item-text img {
    max-width: 932px;
    display: inline-flex
}

.content-header,
.content-tabs ul {
    -webkit-box-pack: justify;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox
}

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

.content-header--title {
    font-size: 18px;
    color: #0c2d72;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.content-header--offers a {
    font-size: 13px;
    text-decoration: none;
    color: #aaa;
    border-bottom: 1px solid #e8e8e8;
}

.content-header--offers a:hover {
    border-bottom: 0px;
}

.content-tabs {
    padding-top: 26px
}

.content-tabs ul {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: flex;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
}

.content-tabs ul li {
    padding: 34px 48px
}

.content-tabs ul li.active {
    background: #e8e8e8
}

.content-tabs ul li a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 15px;
    line-height: 28px;
    color: #0c2d72;
    text-decoration: none
}

.content-tabs ul li a span {
    width: 100%;
    display: block
}

.content-tabs--open div,
.content-tabs--open div .form .range .top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox
}

.content-tabs--info {
    margin-right: 30px
}

.content-tabs--price {
    font-size: 20px;
    color: #000
}

.content-tabs--price .green {
    font-size: 12px;
    color: #009600
}

.content-tabs--price .red {
    font-size: 12px;
    color: #db2b36
}

.content-tabs--open>div {
    border: 10px solid #e8e8e8
}

.content-tabs--open div {
    display: flex;
    position: relative
}

.content-tabs--open div .graph {
    display: inline-flex;
    width: 150%;
}

.content-tabs--open div .form {
    border-left: 10px solid #e8e8e8;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    min-height: 411px;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.content-group--personal,
.content-tabs--open div .form .range {
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

.content-tabs--open div .form .title {
    color: #0c2d72;
    font-size: 15px;
    margin-bottom: 20px
}

.content-tabs--open div .form .price {
    font-size: 20px;
    margin-bottom: 30px
}

.content-tabs--open div .form .range {
    width: 290px;
    -ms-flex-direction: column;
    flex-direction: column
}

.content-tabs--open div .form .range .slider-wrapper {
    padding: 0 5px;
}

.content-tabs--open div .form .range .top {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 15px;
    color: #444;
    padding-right: 7px;
}

.content-advantages ul,
.content-tabs--open div .form .range .bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-box;
    -webkit-box-pack: justify
}

.content-tabs--open div .form .range .bottom {
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
    color: #444
}

.content-tabs--open div .form form {
    width: 288px;
    padding-top: 32px
}

.content-tabs--open div .form form input {
    width: 242px;
    height: 36px;
    border: 0;
    background: url(../img/input-phone.png) no-repeat;
    padding-left: 45px;
    font-size: 14px;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    outline: 0;
    margin-bottom: 34px
}

.content-tabs--open div .form form input.submit {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    height: 52px;
    background: #db2b36;
    padding: 0;
    width: 100%;
    max-width: 280px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    border: 2px solid transparent
}

.content-advantages,
.content-info {
    padding-top: 60px
}

.content-tabs--open div .form form input.submit:hover {
    background: #fff;
    color: #db2b36;
    border: 2px solid #db2b36;
    cursor: pointer
}

.content-info--title {
    font-size: 2em;
}

.content-info p {
    font-size: 15px;
    color: #444;
    line-height: 22px
}

.content-info p b {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: #000
}

.content-info p a {
    color: #db2b36;
    text-decoration: none;
    border-bottom: 1px solid #f6cacd;
}

.content-info p a:hover {
    border-bottom: 0
}

.content-advantages ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}

.content-advantages ul li {
    flex: 1 0 auto;
    max-width: 50%;
}

.content-advantages--open,
.content-group {
    padding-top: 40px
}

.content-advantages ul li a {
    color: #fff;
    display: flex;
    font-size: 20px;
    text-decoration: none;
    width: 100%;
    height: 37px;
    align-items: center;
    background: #db2b36;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    -webkit-transition: all .5s;
    transition: all .5s;
    padding-left: 35px;
    position: relative;
    box-sizing: border-box;
}

.content-group,
.content-group--personal {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox
}

.content-advantages ul li a:before {
    content: '';
    left: 15px;
    top: 10px;
    background: url(../img/arrow-right--white.png) center no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    -webkit-transition: all .5s;
    transition: all .5s
}

.content-advantages ul li a.active {
    background-color: #fff;
    color: #000;
    border-top: 3px solid #db2b36
}

.content-advantages ul li a.active:before {
    background: url(../img/arrow-down--bottom.png) center no-repeat
}

.content-advantages--open .title {
    font-size: 24px;
    color: #0c2d72
}

.content-advantages--open p {
    font-size: 15px;
    color: #444;
    line-height: 22px;
    margin-top: 14px
}

.content-advantages--open p b {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: #000
}

.content-advantages--open p a {
    color: #db2b36;
    text-decoration: none;
    border-bottom: 1px solid #f6cacd;
}

.content-advantages--open p a:hover {
    border-bottom: 0
}

.content-group {
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 40px;
}

.content-group--info {
    width: min(45%, 616px);
}


.content-group--info .list .title {
    font-size: 18px;
    color: #db2b36;
    margin-bottom: 28px
}

.content-group--info .list ul {
    margin: 0;
    padding-left: 15px
}

.content-group--info .list ul li {
    padding-left: 15px;
    position: relative;
    font-size: 15px;
    line-height: 28px
}

.content-group--form .title,
.content-group--info .suppliers .title {
    font-size: 18px;
    color: #0c2d72;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.content-group--info .list ul li:before {
    width: 7px;
    height: 7px;
    content: '';
    position: absolute;
    background: #db2b36;
    left: 0;
    top: 11px
}

.content-group--info .suppliers {
    padding-top: 5px
}

.content-group--info .suppliers .carousel {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 0 30px;
    box-sizing: border-box;
}


.content-group--info .suppliers .carousel .owl-prev {
    width: 9px;
    height: 100%;
    background: url(../img/arrow-slider.png);
    padding: 0;
    position: absolute;
    left: -25px;
    top: 0
}

.content-group--info .suppliers .carousel .owl-next {
    width: 9px;
    height: 100%;
    background: url(../img/arrow-slider.png);
    padding: 0;
    -ms-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    position: absolute;
    top: 0;
    right: -25px
}

.content-group--form form input.name,
.modal-manager .right form input.name {
    background: url(../img/input-name.png) no-repeat
}

.content-group--info .suppliers .title {
    padding-top: 50px;
    margin-bottom: 25px
}

.content-group--info .suppliers .item {
    max-width: 616px
}

.content-group--info .suppliers .item img {
    max-width: 150px;
    max-height: 65px;
    margin: 0 auto;
    width: auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

.content-group--info .suppliers .item img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.content-group--form p {
    font-size: 15px;
    color: #444;
    line-height: 22px;
    margin-top: 14px
}

.content-group--form p b {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: #000
}

.content-group--form p a {
    color: #db2b36;
    text-decoration: none;
    border-bottom: 1px solid #f6cacd;
}

.content-group--form p a:hover {
    border-bottom: 0
}

.content-group--form form {
    width: 288px;
    padding-top: 33px
}

.content-group--form form input:not([type="checkbox"]) {
    width: 242px;
    height: 36px;
    border: 0;
    padding-left: 45px;
    font-size: 14px;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    outline: 0;
    margin-bottom: 17px
}

.content-group--form form input.mail {
    background: url(../img/input-mail.png) no-repeat;
}

.content-group--form form input.submit {
    height: 36px;
    background: #db2b36;
    padding: 0;
    width: 99%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    border: 2px solid transparent
}

.content-group--form form input.submit:hover {
    background: #fff;
    color: #db2b36;
    border: 2px solid #db2b36;
    cursor: pointer
}

.content-group--personal {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.content-group--personal .link a,
.content-price__text {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox
}

.content-group--personal .name {
    color: #0c2d72;
    font-size: 18px;
    margin-bottom: 11px
}

.content-group--personal .description {
    font-size: 15px;
    color: #444;
    margin-bottom: 16px
}

.content-group--personal .img {
    margin-bottom: 16px
}

.content-group--personal .link a {
    width: 257px;
    height: 33px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    background: #0c2d72;
    display: flex;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    transition: all .5s
}

.content-group--personal .link a:hover {
    background: #fff;
    color: #0c2d72;
    border: 2px solid #0c2d72;
    cursor: pointer
}

.content-banner {
    margin-top: 38px;
    margin-bottom: 15px
}

.content-banner img {
    width: 100%
}

.content-breadcrumps ul {
    margin: 0;
    padding: 0
}

.content-breadcrumps ul li {
    font-size: 14px;
    color: #444;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-right: 10px;
    margin-right: 5px;
    position: relative
}

.content-breadcrumps {
    margin-top: 15px;
}

.content-breadcrumps ul li a {
    color: #aaa;
    text-decoration: none;
	border-bottom:1px solid;
}

.content-breadcrumps ul li a:after {
    background: url(../img/breadcrumps-after.png);
    width: 5px;
    height: 7px;
    position: absolute;
    right: 0;
    top: 4px;
    content: ''
}

.content-breadcrumps ul li a:hover {
    text-decoration: none
}

.content h1 {
    font-size: 30px;
    font-weight: 400;
}

.content h2 {
    font-size: 24px;
    font-weight: 400;
    color: #0c2d72;
    padding: 20px 0 5px 0;
    margin: 0;
}

.content h2 b {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: #0c2d72;
}

.content h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #db2b36;
    padding: 20px 0 5px 0;
    margin: 0;
}

.content-price__text {
    font-size: 15px;
    color: #444;
    margin: 30px 0;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.content-price__text p {
    margin: 10px 0;
    line-height: 23px;
}

.content-price__text ul {line-height: 23px;}

.content-price__item {
    border: 10px solid #e8e8e8;
    padding: 30px;
    margin-top: 25px
}

.content-price__item .top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.content-price__item .top .title {
    font-size: 24px;
    color: #0c2d72
}

.content-price__item .top .link ul {
    margin: 0
}

.content-price__item .top .link ul li {
    display: inline-block;
    padding-right: 10px
}

.content-price__item .top .link ul li .graph {
    width: 31px;
    height: 31px;
    background: url(../img/icon-graph.png);
    display: block
}

.content-price__item .top .link ul li .graph:hover {
    background: url(../img/icon-graph--hover.png)
}

.content-price__item .top .link ul li .photo {
    width: 31px;
    height: 31px;
    background: url(../img/icon-photo.png);
    display: block
}

.content-price__item .top .link ul li .photo:hover {
    background: url(../img/icon-photo--hover.png)
}

.content-price__item .top .link ul li .sert {
    width: 31px;
    height: 31px;
    background: url(../img/icon-sert.png);
    display: block
}

.content-price__item .bottom,
.content-price__item .bottom .left-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox
}

li.gray {
    color: #aaaaaa;
}

.content-price__item .top .link ul li .sert:hover {
    background: url(../img/icon-sert--hover.png)
}

.content-price__item .bottom {
    display: flex
}

.content-price__item .bottom .left-block {
    display: flex;
    font-size: 15px;
    width: 75%
}

.content-price__item .bottom .left-block ul li,
.content-price__item .bottom .right-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox
}

.content-price__item .bottom .left-block ul {
    width: 33%;
    padding: 0;
    margin-top: 10px;
    margin-right: 30px;
}

.content-price__item .bottom .right-block .price .green img,
.content-price__item .bottom .right-block .price .red img {
    width: 15px
}

.content-price__item .bottom .left-block ul li {
    list-style-type: none;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 25px
}

.content-price__item .bottom .left-block ul li a {
    color: #db2b36;
    text-decoration: none;
    border-bottom: 1px solid #f6cacd;
}

.content-price__item .bottom .left-block ul li a:hover {
    border-bottom: 1px solid #fff;
}

.content-price__item .bottom .left-block ul li.gray a {
    color: #aaaaaa;
    text-decoration: none;
    border: 0px;
}

.content-price__item .bottom .left-block ul li.gray a.i_icon {
    background: url(../images/i-icon.png) no-repeat right;
    padding-right: 20px;
}

.content-price__item .bottom .left-block ul li .line {
    border-bottom: 1px solid #e8e8e8;
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
    min-height: 11px;
    margin: 0 5px
}

.content-price__item .bottom .right-block {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.content-price__item .bottom .right-block .price {
    font-size: 40px
}

.content-price__item .bottom .right-block .price .red {
    font-size: 20px;
    color: #db2b36
}

.content-price__item .bottom .right-block .price .green {
    font-size: 20px;
    color: #009600
}

.content-price__item .bottom .right-block .price_2 {
    color: #444;
    font-size: 18px;
    margin-top: 10px;
}

.content-price__item .bottom .right-block .btn a {
    background: #db2b36;
    color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    width: 156px;
    height: 40px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 700;
}
.content-price-dir{
	display: flex;
}
.content-price-dir> div.btn{
	margin: 0 10px;
}
.content-price-dir > div.btn a {
    background: #db2b36;
    color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    width: 156px;
    height: 40px;
    text-decoration: none;
    font-weight: 700;
}

.content-price-dir > div.btn.big a {
	width: 196px;
}
.content-price__item .bottom .right-block .btn a:hover {
    background: #f6cacd
}

.regions_post ul {
    column-count: 7;
}

@media all and (max-width:1330px) {
    .regions_post ul {
        column-count: 6;
    }
}

@media all and (max-width:1150px) {
    .regions_post ul {
        column-count: 5;
    }
}

@media all and (max-width:970px) {
    .regions_post ul {
        column-count: 4;
    }
}

@media all and (max-width:790px) {
    .regions_post ul {
        column-count: 3;
    }
}

@media all and (max-width:580px) {
    .regions_post ul {
        column-count: 2;
    }
}

.regions_post ul li,
.item-page>ul li {
    list-style-type: none;
    padding-left: 15px;
    position: relative;
    line-height: 28px;
    color: #444;
    font-size: 15px;
}

.regions_post ul li:before,
.item-page>ul li:before {
    width: 7px;
    height: 7px;
    content: '';
    position: absolute;
    background: #db2b36;
    left: 0;
    top: 10px;
}

.footer {
    background: #000;
    padding: 45px 0 25px;
    border-top: 5px solid #db2b36;
    margin-top: 30px;
    flex: 0 0 auto;
}

.footer .row {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px
}

.footer .row:last-child {
    margin: 0
}

.footer-nav--title {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    margin: 0;
    padding: 0
}

.footer-nav ul li a {
    font-size: 14px;
    color: #ffffff;
	text-decoration: none;
    /*color: #aaa;    
    border-bottom: 1px solid #444;*/
    line-height: 1.7;
}

.footer-nav ul li a:hover {
    border: 0px;
}

.footer-nav ul li ul {
    display: none;
}

.footer-contacts--title,
.footer-map--title {
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer-nav ul li a:hover {
    text-decoration: none
}

.footer-map {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 60px
}

.footer-contacts ul li,
.footer-contacts a,
.footer-copy--copy,
.footer-soc {
    font-size: 14px;
    color: #ffffff
}

.footer-contacts ul {
    margin: 0;
    padding: 0
}

.footer-contacts ul li {
    margin-bottom: 7px
}

.footer-contacts ul li span {
    margin-right: 16px
}

.footer-soc {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.footer-soc ul {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0
}

.modal-manager .content-modal,
.modal-manager .left {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex
}

.footer-soc ul li {
    margin-right: 5px
}

.footer-copy--copy b {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.footer-copy--offers {
    font-size: 14px;
    color: #ffffff;
    line-height: 2;
}

input[type=range] {
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
    background: 0 0;
    height: 20px
}

input[type=range]:focus {
    outline: 0
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: .2s;
    -webkit-box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
    box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
    background: #cfcfcf;
    border: 0 solid #000101
}

input[type=range]::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
    box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
    height: 25px;
    width: 25px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: #fff;
    border: 2px solid #db2b36;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -6.6px
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #cfcfcf
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: .2s;
    box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
    background: #cfcfcf;
    border-radius: 25px;
    border: 0 solid #000101
}

input[type=range]::-moz-range-thumb {
    box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
    border: 0 solid #000;
    height: 20px;
    width: 39px;
    border-radius: 7px;
    background: #000;
    cursor: pointer
}

input[type=range]::-ms-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: .2s;
    background: 0 0;
    border-color: transparent;
    border-width: 39px 0;
    color: transparent
}

input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper {
    background: #cfcfcf;
    border: 0 solid #000101;
    border-radius: 50px;
    box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d
}

input[type=range]::-ms-thumb {
    box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
    border: 0 solid #000;
    height: 20px;
    width: 39px;
    border-radius: 7px;
    background: #cfcfcf;
    cursor: pointer
}

input[type=range]:focus::-ms-fill-lower,
input[type=range]:focus::-ms-fill-upper {
    background: #cfcfcf
}

.mobileleft_menu {
    position: fixed;
    height: 100%;
    width: 55%;
    background: #fff;
    z-index: 99;
    overflow: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-left: -55%
}

.mobileleft_menu.active {
    margin-left: 0
}

.mobileleft_menu .logo {
    float: left;
    width: 60%;
    padding: 10px
}

.mobileleft_menu .logo img {
    width: 100%
}

.mobileleft_menu .close {
    float: left;
    width: 30%;
    text-align: center;
    font-size: 23px;
    padding-top: 20px
}

.mobileleft_menu ul {
    width: 100%;
    float: left
}

.mobileleft_menu ul li a {
    color: #000
}

.modal-manager {
    max-width: 960px !important;
    height: 560px;
    background: url(../img/modalbg-personal.jpg) !important;
    background-size: cover !important;
    padding: 0 !important;
    margin: 0 auto
}

.modal-manager .content-modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.modal-manager .left,
.modal-manager .right,
.modal-order .content-modal__top .left,
.modal-order .content-modal__top .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

.modal-manager .left {
    width: 44%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 560px
}

.modal-manager .right,
.modal-order .content-modal__top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex
}

.modal-manager .right form input,
.modal-order .content-modal__top .right input.name {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    outline: 0
}

.modal-manager .left .name {
    font-size: 18px;
    color: #0c2d72;
    margin-bottom: 10px
}

.modal-manager .left .photo {
    margin-bottom: 10px;
}

.modal-manager .left .photo img {
    max-width: 261px;
    border: 2px solid #f1f1f1;
}

.modal-manager .left .description {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px
}

.modal-manager .left .phone {
    color: #444;
    font-size: 15px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.modal-manager .left .mail {
    font-size: 15px;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #444;
    margin-top: 5px
}

.modal-manager .left .mail a {
    color: #444;
    text-decoration: none;
}

.modal-manager .right {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 560px;
    width: 39%;
    margin-left: 100px;
}

.modal-manager .right .title {
    font-size: 30px
}

.modal-manager .right p {
    font-size: 15px;
    color: #444
}

.modal-manager .right form {}

.modal-manager .right form textarea {
    width: 303px;
    padding: 10px;
    border-color: #cfcfcf;
}

.modal-manager .right form input:not([type="checkbox"]) {
    width: 242px;
    height: 36px;
    border: 0;
    padding-left: 45px;
    font-size: 14px;
    display: inline-flex;
    margin-bottom: 17px
}

.modal-manager .right form input.mail {
    background: url(../img/input-mail.png) no-repeat;
}

.modal-manager .right form input.submit {
    height: 36px;
    background: #db2b36;
    padding: 0;
    width: 66%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0;
    margin-top: 15px;
    -webkit-transition: all .5s;
    transition: all .5s;
    border: 2px solid transparent;
    font-size: 15px;
    font-weight: 700;
}

.modal-manager .right form input.submit:hover {
    background: #fff;
    color: #db2b36;
    border: 2px solid #db2b36;
    cursor: pointer
}

.modal-order {
    width: 644px !important;
    height: 402px !important;
    background: url(../img/modalbg-order.jpg) !important;
    margin: 0 auto !important
}

.modal-order .content-modal__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.modal-order .content-modal__top .left {
    width: 305px;
    height: 305px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.modal-order .content-modal__top .left .title {
    font-size: 24px;
    color: #0c2d72;
    margin-top: 10px
}

.modal-order .content-modal__top .left .price {
    font-size: 40px;
    margin-top: 10px
}

.modal-order .content-modal__top .left .block-checkbox {
    margin: 10px 0
}

.modal-order .content-modal__top .left .block-checkbox ul {
    margin: 0;
    padding: 0
}

.modal-order .content-modal__top .left .block-checkbox ul li {
    display: inline-block;
    font-size: 15px;
    color: #444
}

.modal-order .content-modal__top .right,
.modal-order .content-modal__top .right .range .top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox
}

.modal-order .content-modal__top .left .city {
    font-size: 15px;
    color: #444
}

.modal-order .content-modal__top .left .city select {
    color: #db2b36;
    border: 0;
    outline: 0
}

.modal-order .content-modal__top .left .city select span {
    border-bottom: 1px dashed #db2b36
}

.modal-order .content-modal__top .right {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 339px;
    height: 305px
}

.modal-order .content-modal__top .right .title {
    font-size: 24px;
    color: #db2b36;
    text-align: center;
    margin-right: 45px;
    margin-bottom: 15px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.modal-order .content-modal__top .right input.name {
    width: 242px;
    height: 36px;
    border: 0;
    padding-left: 45px;
    font-size: 14px;
    display: inline-flex;
    margin-bottom: 17px;
    background: url(../img/input-name.png) no-repeat
}

.modal-order .content-modal__top .right input.phone {
    width: 242px;
    height: 36px;
    border: 0;
    background: url(../img/input-phone.png) no-repeat;
    padding-left: 45px;
    font-size: 14px;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    outline: 0;
    margin-bottom: 15px;
    background-size: 98.5%
}

.modal-order .content-modal__bottom .left,
.modal-order .content-modal__bottom .right {
    padding: 20px
}

.modal-order .content-modal__top .right .range {
    max-width: 282px
}

.modal-order .content-modal__top .right .range .top {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 15px;
    color: #444
}

.modal-order .content-modal__bottom,
.modal-order .content-modal__top .right .range .bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox
}

.modal-order .content-modal__top .right .range .bottom {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
    color: #444
}

.modal-order .content-modal__bottom {
    height: 96px;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.modal-order .content-modal__bottom .left .price {
    font-size: 24px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.modal-order .content-modal__bottom .left span {
    font-size: 9px;
    color: #444
}

.modal-order .content-modal__bottom .right .btn a {
    width: 134px;
    height: 36px;
    background: #db2b36;
    color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase
}

#zakaz {
    width: 644px !important;
    height: 402px !important;
    display: none;
    background: url(../img/modalbg-order.jpg) !important;
    margin: 0 auto !important;
    padding: 0px;
}

#zakaz_form {
    display: block;
    width: 100%;
    padding-top: 30px;
}

#zakaz h3 {
    font-size: 24px;
    margin-top: 10px;
    color: #db2b36;
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

#zakaz .left_part {
    float: left;
    text-align: center;
    width: 45%;
    padding-bottom: 10px;
    box-sizing: border-box;
    padding-left: 5px;
    height: 250px;
}

#zakaz .right_part {
    float: right;
    padding: 0 15px 0 20px;
    width: 55%;
    font-size: 15px;
    color: #444;
    box-sizing: border-box;
    text-align: center;
    height: 250px;
}

#zakaz .bottom_part {
    clear: both;
    border-radius: 0px 0px 7px 7px;
    padding: 18px 25px 10px;
    position: relative;
    display: table;
    width: 100%;
    box-sizing: border-box;
}

#zakaz .left_part .form_item img {
    padding-top: 20px;
}

#zakaz .right_part dl {
    margin: 0px;
}

#zakaz .feedback dl dd input {
    box-sizing: border-box;
    border-radius: 0px;
    border: 1px solid #cfcfcf;
    height: 36px;
}

#zakaz .feedback dl dd input.name {
    width: 242px;
    height: 36px;
    border: 0;
    padding-left: 45px;
    font-size: 14px;
    display: inline-flex;
    margin-bottom: 17px;
    background: url(../img/input-name.png) no-repeat;
}

#zakaz .feedback dl dd input.phone {
    width: 242px;
    height: 36px;
    border: 0;
    background: url(../img/input-phone.png) no-repeat;
    padding-left: 45px;
    font-size: 14px;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    outline: 0;
    margin-bottom: 15px;
    background-size: 98.5%;
}

#zakaz div.callback_button {
    float: right;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    width: 134px;
    height: 36px;
    background: #db2b36;
    color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

#zakaz .place_input {
    display: none;
    margin-bottom: 10px;
}

#zakaz .volume {
    display: inline-block;
    text-align: left;
    width: 217px;
    font-size: 15px;
    color: #444;
}

#zakaz #display-box {
    border: medium none;
    display: inline-block;
    text-align: right;
    width: 45px;
    font-size: 15px;
    color: #444;
}

#zakaz .item_summ_block {
    float: left;
    font-size: 24px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: #000000;
}

#zakaz .checkbox_line {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
}

#zakaz .checkbox_line label {
    margin: 0 4px;
}

#zakaz .feedback dl dd {
    margin: 0px;
}

.tovar-zagolovok {
    font-size: 24px;
    color: #0c2d72;
    margin-top: 10px;
}

.tovar-price {
    font-size: 40px;
    margin-top: 15px;
    display: block;
}

#zakaz .place {
    margin-top: 26px;
    font-size: 15px;
    color: #444;
}

#zakaz #place_name {
    color: #db2b36;
    border-bottom: 1px dashed #db2b36;
    cursor: pointer;
}

#zakaz .text_comment {
    display: block;
    clear: both;
    font-size: 10px;
    line-height: 13px;
    padding-top: 0px;
}

.ui-slider-horizontal {
    width: 280px;
    height: 5px;
    background: url(../images/sliderbg.png) no-repeat left;
    position: relative;
    margin: 0;
    background-size: contain;
}

.ui-widget-header {
    background: url(../images/sliderbga.png) no-repeat left;
    height: 5px;
    left: 0px;
    top: 0px;
    position: absolute;
}

.ui-slider-handle {
    width: 19px;
    height: 19px;
    outline: none;
    position: absolute;
    top: -9px;
    margin-left: -8px;
    z-index: 200;
    background-color: #fff;
    border: 2px solid #db2b36;
    border-radius: 50%;
}

.calc_shkala .calc_sh {
    float: right;
    width: 280px;
    background: url(../images/marks.png) no-repeat bottom center;
    margin-bottom: 18px;
    padding: 13px 0 20px 0;
    position: relative;
    background-size: contain;
}

#callback {
    width: 440px !important;
    height: 302px !important;
    background: #fff;
    border: 2px solid #db2b36;
    box-shadow: 10px 10px 0px #fff, 10px -10px 0px #fff, -10px 10px 0px #fff, -10px -10px 0px #fff;
    margin: 0 auto !important;
    padding: 0px;
}

#callback .center_part {
    width: 315px;
    text-align: center;
    margin: 0 auto;
}

#callback h3 {
    font-size: 24px;
    margin-top: 10px;
    color: #db2b36;
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

#callback .feedback input {
    box-sizing: border-box;
}

#callback .feedback input.name {
    width: 242px;
    height: 36px;
    border: 0;
    padding-left: 45px;
    font-size: 14px;
    display: inline-flex;
    margin-bottom: 17px;
    background: url(../img/input-name.png) no-repeat;
}

#callback .feedback input.phone {
    width: 242px;
    height: 36px;
    border: 0;
    background: url(../img/input-phone.png) no-repeat;
    padding-left: 45px;
    font-size: 14px;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    outline: 0;
    margin-bottom: 15px;
    background-size: 98.5%;
}

#callback form input.submit:hover {
    background: #fff;
    color: #db2b36;
    border: 2px solid #db2b36;
    cursor: pointer;
}

#callback form input.submit {
    font-size: 14px;
    font-weight: 700;
    height: 41px;
    background: #db2b36;
    padding: 0;
    width: 66%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0;
    margin-top: 15px;
    -webkit-transition: all .5s;
    transition: all .5s;
    border: 2px solid transparent;
}

#callback .form_result {
    font-size: 20px;
    padding: 50px;
    line-height: 28px;
    text-align: center;
}

.search-results .result-title {
    padding-left: 10px;
    padding-bottom: 10px;
}

.search .pagination ul {
    list-style: none;
    display: table;
    border-left: 1px solid #555;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    padding-left: 0px;
    margin-left: 10px;
}

.search .pagination ul li {
    display: table-cell;
    border-right: 1px solid #555;
}

.search .pagination ul li a {
    padding: 10px 15px;
    display: block;
    background-color: #db2b36;
    color: #fff;
    text-decoration: none;
}

.search .pagination ul li a:hover {
    background-color: #fff;
    color: #db2b36;
}

.search .pagination ul li span {
    padding: 10px;
    display: block;
    background-color: #e8e8e8;
}

@media all and (max-width:1200px) {
    .menu nav ul li {
        padding: 0 25px
    }

    .content-price__item .bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .content-price__item .bottom .left-block {
        width: 100%
    }

    .header-search {
        display: none
    }

    .content-group {
        justify-content: center;
    }

    .content-group--info {
        width: 100%;
    }
}

@media all and (max-width:992px) {
    .menu nav ul li a {
        font-size: 13px
    }

    .menu ul.nav.menu .parent::after {
        height: 5px;
        width: 5px;
        right: 0;
    }

    .menu nav ul li {
        padding: 0 10px
    }

    .topline .row {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .content-tabs--open,
    .footer-map,
    .topline-year {
        display: none
    }

    .content-price__item .bottom .left-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .topline ul {
        padding: 0
    }

    .topline ul li a {
        padding-left: 16px
    }

    .content-tabs ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .content-tabs ul li {
        width: 35%;
        border: 2px solid #e8e8e8;
        margin-top: 15px
    }

    .content-price__item .bottom .left-block ul {
        width: 100%
    }
}

@media all and (max-width:768px) {

    .container,
    img {
        max-width: 100%
    }

    .mobile-linemenu ul li {
        list-style-type: none
    }

    .modal-manager .left {
        width: 50%
    }

    .topline-tablets ul {
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        -webkit-transition: all .5s;
        transition: all .5s
    }

    .topline-tablets ul.active {
        max-height: 30px;
        height: 30px
    }

    .topline-tablets ul li a {
        padding-left: 25px
    }

    header {
        display: none
    }

    header.home {
        display: block
    }

    header.home .header-contacts--time {
        display: none
    }

    header.home .header-search {
        display: block;
        margin-left: 50px
    }

    header.home .icon-phone {
        display: block !important;
        margin-right: 20px;
        margin-left: 50px
    }

    .topline.home,
    .topline.home .topline-year {
        display: block
    }

    .header .row {
        flex-wrap: wrap;
    }

    .header-contacts {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        justify-content: space-between;
        margin-top: 10px;
    }

    .header-contacts--city {
        padding-left: 0;
    }

    .slider {
        padding-top: 0
    }

    .topline.home .row {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .topline.home ul {
        display: none
    }

    .topline.home .btn {
        display: block !important
    }

    .topline.home .btn a,
    .topline.home .btn-mob a {
        font-size: 13px;
        text-decoration: none;
        color: #aaa
    }

    .menu.home {
        display: none
    }

    .content-advantages__mobile .item {
        background: #fafafa;
        margin-bottom: 10px
    }

    .content-advantages__mobile .item span {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 30px;
        background: #db2b36;
        color: #fff;
        font-size: 15px;
        text-transform: uppercase;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative
    }

    .content-advantages__mobile .item.active span:before {
        display: none
    }

    .content-advantages__mobile .item span:after {
        width: 10px;
        height: 2px;
        background: #fff;
        content: '';
        position: absolute;
        right: 10px;
        top: 15px
    }

    .content-advantages__mobile .item span:before {
        width: 2px;
        height: 10px;
        background: #fff;
        content: '';
        position: absolute;
        right: 14px;
        top: 11px
    }

    .content-advantages__mobile .item span b {
        margin-left: 15px
    }

    .content-advantages__mobile .item.active span {
        background: 0 0;
        border-top: 2px solid #db2b36;
        color: #db2b36
    }

    .content-advantages__mobile .item.active span:after {
        background: #db2b36
    }

    .content-advantages__mobile .item.active .content-adv__mobile {
        max-height: 1000px;
        -webkit-transition: 2s linear;
        transition: 2s linear
    }

    .content-advantages__mobile .item .content-adv__mobile {
        max-height: 0;
        overflow: hidden
    }

    .content-advantages__mobile .item .content-adv__mobile .title {
        font-size: 20px;
        color: #0c2d72;
        padding: 10px
    }

    .content-advantages__mobile .item .content-adv__mobile p {
        color: #444;
        padding: 10px;
        margin: 5px
    }

    .container {
        overflow: hidden
    }

    .mobile_header {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .menu nav ul {
        display: none
    }

    .content-price__item .top .link {
        margin-top: 15px
    }

    .content-price__item .top .link ul {
        width: 100%;
        padding: 0;
        margin: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .content-price__item .top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .content-advantages ul li {
        max-width: 100%;
        position: relative
    }

    .content-advantages ul,
    .content-group {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .content-group--form,
    .content-group--personal {
        margin-top: 30px
    }

    .slider .item-text {
        padding-top: 100px
    }

    .mobile-linemenu {
        background: #fafafa
    }

    .mobile-linemenu ul {
        margin: 0 0 20px;
        padding: 0;
        border-top: 2px #db2b36 solid;
        overflow: hidden
    }

    .mobile-linemenu ul li a {
        color: #db2b36;
        font-size: 14px;
        height: 30px;
        padding-top: 12px;
        border-bottom: 2px #000 solid;
        display: block;
        width: 100%;
        text-decoration: none;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 700;
        position: relative;
        padding-left: 15px
    }

    .mobile-linemenu ul li a:after {
        position: absolute;
        content: '';
        right: 30px;
        top: 10px;
        width: 10px;
        height: 16px;
        background: url(../img/mobile-menu-arrow.png)
    }

    .menu-toggle {
        display: initial;
    }

    .slider {
        padding-bottom: 0
    }

    .slider .container {
        padding: 0
    }

    .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: -30px;
        position: relative
    }

    .owl-theme .owl-dots .owl-dot span {
        background: 0 0;
        border: 1px solid #fff
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        background: #fff
    }

    .content-group--form,
    .content-group--personal {
        width: 100%
    }


    .content-group--form form input.submit {
        width: 30%;
        height: 36px
    }

    .content-group--form form,
    .content-group--personal .link a {
        width: 100%
    }

    .owl-carousel {
        max-width: 100% !important
    }

    .mobile-supplier .title {
        font-size: 20px;
        text-transform: uppercase;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 700;
        margin-left: 15px;
        margin-bottom: 15px
    }

    .modal-order {
        display: none
    }


    .modal-order__mobile {
        display: block;
        width: 644px !important;
        padding: 30px 0 0;
        background: #fff !important;
        margin: 0 auto !important
    }

    .modal-order__mobile .content-modal,
    .modal-order__mobile .content-modal__top .left,
    .modal-order__mobile .content-modal__top .right {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal
    }

    .modal-order__mobile .content-modal {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .modal-order__mobile .content-modal__top {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 20px
    }

    .modal-order__mobile .content-modal__top .left {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 20px 0
    }

    .modal-order__mobile .content-modal__top .left .title {
        font-size: 18px;
        color: #0c2d72;
        margin-top: 10px
    }

    .modal-order__mobile .content-modal__top .left .price {
        font-size: 40px;
        margin-top: 10px
    }

    .modal-order__mobile .content-modal__top .left .block-checkbox {
        margin: 10px 0
    }

    .modal-order__mobile .content-modal__top .left .block-checkbox ul {
        margin: 0;
        padding: 0
    }

    .modal-order__mobile .content-modal__top .left .block-checkbox ul li {
        display: inline-block;
        font-size: 15px;
        color: #444
    }

    .modal-order__mobile .content-modal__top .left .city {
        font-size: 15px;
        color: #444
    }

    .modal-order__mobile .content-modal__top .left .city select {
        color: #db2b36;
        border: 0;
        outline: 0
    }

    .modal-order__mobile .content-modal__top .left .city select span {
        border-bottom: 1px dashed #db2b36
    }

    .modal-order__mobile .content-modal__top .right {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .modal-order__mobile .content-modal__top .right .title {
        font-size: 18px;
        color: #db2b36;
        text-align: center;
        margin-bottom: 15px;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 700;
    }

    .modal-order__mobile .content-modal__top .right input.name {
        width: 242px;
        height: 36px;
        border: 0;
        padding-left: 45px;
        font-size: 14px;
        display: -webkit-inline-flex;
        display: -moz-inline-flex;
        display: -ms-inline-flex;
        display: -o-inline-flex;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        outline: 0;
        margin-bottom: 17px;
        background: url(../img/input-name.png) no-repeat
    }

    .modal-order__mobile .content-modal__top .right input.phone {
        width: 242px;
        height: 36px;
        border: 0;
        background: url(../img/input-phone.png) no-repeat;
        padding-left: 45px;
        font-size: 14px;
        display: -webkit-inline-flex;
        display: -moz-inline-flex;
        display: -ms-inline-flex;
        display: -o-inline-flex;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        outline: 0;
        margin-bottom: 15px;
        background-size: 98.5%
    }

    .modal-order__mobile .content-modal__top .right .range {
        width: 282px
    }

    .modal-order__mobile .content-modal__top .right .range .top {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        font-size: 15px;
        color: #444
    }

    .modal-order__mobile .content-modal__top .right .range .bottom {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        font-size: 12px;
        color: #444
    }

    .modal-order__mobile .content-modal__bottom {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 0 100px;
        margin: 0 auto;
        background: #fafafa
    }

    .modal-order__mobile .content-modal__bottom .left,
    .modal-order__mobile .content-modal__bottom .right {
        padding: 20px
    }

    .modal-order__mobile .content-modal__bottom .left .price {
        font-size: 18px;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 700;
    }

    .modal-order__mobile .content-modal__bottom .left span {
        font-size: 9px;
        color: #444
    }

    .modal-order__mobile .content-modal__bottom .right .btn a {
        width: 134px;
        height: 36px;
        background: #db2b36;
        color: #fff;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        font-size: 14px;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 700;
        text-transform: uppercase
    }

    .content-price__item .top .link ul {
        text-align: left;
        display: inline
    }

    .content-price__item .top .link ul li .graph,
    .content-price__item .top .link ul li .photo,
    .content-price__item .top .link ul li .sert {
        background-size: 100% !important
    }

    .content-price__item .bottom .left-block {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 47%
    }

    .content-price__item .bottom .left-block ul {
        display: none
    }

    .content-price__item .bottom .left-block ul:first-child {
        display: block
    }

    .content-price__item .bottom {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .content-price__item .bottom .right-block {
        background: #fafafa;
        padding: 10px 35px;
        margin-left: 20px
    }

    .content-price__item .bottom .right-block .price_2 {
        margin-top: 0
    }

    .content-price__item .bottom .right-block .btn a {
        margin-top: 10px
    }

    .content-price__item .bottom .left-block ul li {
        margin-top: 13px
    }

    .topline {
        display: none
    }

    .footer .row {
        flex-direction: column;
        margin-bottom: 0;
    }

    .footer-nav, .footer-contacts {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-copy {
        width: 100%;
        text-align: center;
    }
}

@media all and (max-width:560px) {
    .modal-order__mobile {
        width: 100% !important
    }

    .modal-order__mobile .content-modal__bottom {
        padding: 0 10px
    }

    header.home .header-search {
        display: none
    }

    .topline.home .btn-mob {
        display: block !important
    }

    .topline.home .btn {
        display: none !important
    }

    .footer-soc {
        display: none
    }

    .footer-map {
        width: 100%
    }

    .content-price__item .bottom .left-block ul li:nth-child(1) a {
        padding-left: 50px
    }

    .content-price__item .bottom .left-block ul li:nth-child(2) a {
        padding-left: 20px
    }

    .content-group--form form input.submit {
        width: 280px
    }

    .content-price__item .bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .content-price__item .bottom .left-block {
        width: 100%
    }

    .content-price__item .bottom .right-block {
        width: 70%;
        margin-left: 0
    }

    .content-price__item .bottom .right-block .price {
        font-size: 25px;
        margin-bottom: 10px
    }

    .mobileleft_menu {
        width: 80%;
        margin-left: -80%
    }

    .modal-manager {
        height: auto;
        background: #fff !important
    }

    .modal-manager .content-modal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .modal-manager .content-modal .left {
        width: 100%
    }

    .modal-manager .content-modal .right {
        width: 90%;
        margin: 0 auto
    }

    .modal-manager .right form input.submit {
        width: 81%
    }

    .modal-manager .left {
        height: 400px
    }
}

@media all and (max-width:480px) {
    .header-contacts--city .phone {
        font-size: 5vw;
    }

    .content-group--form form {
        width: 100%;
        text-align: center
    }

    .slider .item-text {
        padding-top: 45px
    }

    .content-group--form form input.submit {
        text-align: center
    }

    .content-tabs ul li {
        width: 100%
    }
}

@media all and (min-width:992px) {
    .content-group--form p {
        max-width: 340px
    }

    .content-price__mobile,
    .mobile-linemenu,
    .mobile-supplier {
        display: none
    }

    .modal-order {
        display: block
    }

    .content-advantages__mobile,
    .modal-order__mobile {
        display: none
    }
}

@-ms-viewport {
    user-zoom: fixed
}

@viewport {
    user-zoom: fixed
}


.grecaptcha-badge {
    display: none !important;
}
[data-del="del"] {
	pointer-events: none;
    background: #e8e8e8 !important;
    border: none !important;
}

.moduletable .suppliers {margin:25px 0;padding:0 70px}
.moduletable .suppliers .title {
	font-size: 18px;
	color: #0c2d72;
	font-family: 'Noto Sans', sans-serif;
	font-weight: 700;
	text-align:center
}
.moduletable .suppliers .item {padding:15px;text-align:center;displaY:flex;align-items:center;justify-content:center;height:150px}
.moduletable .owl-carousel .owl-item img {width:auto;height:auto;display:inline-block;vertical-align:top;max-height:130px;max-width:90%}
.moduletable .suppliers .carousel .owl-prev {
	position:absolute;top:50%;left:-70px;
	width:50px;height:50px;
	margin-top:-25px;
	background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxNzkyIiB2aWV3Qm94PSIwIDAgMTc5MiAxNzkyIiB3aWR0aD0iMTc5MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTIwMyA1NDRxMCAxMy0xMCAyM2wtMzkzIDM5MyAzOTMgMzkzcTEwIDEwIDEwIDIzdC0xMCAyM2wtNTAgNTBxLTEwIDEwLTIzIDEwdC0yMy0xMGwtNDY2LTQ2NnEtMTAtMTAtMTAtMjN0MTAtMjNsNDY2LTQ2NnExMC0xMCAyMy0xMHQyMyAxMGw1MCA1MHExMCAxMCAxMCAyM3oiLz48L3N2Zz4=) 50% 50% no-repeat;
	background-size:100% auto
}
.moduletable .suppliers .carousel .owl-next {
	position:absolute;top:50%;right:-70px;
	width:50px;height:50px;
	margin-top:-25px;
	background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxNzkyIiB2aWV3Qm94PSIwIDAgMTc5MiAxNzkyIiB3aWR0aD0iMTc5MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTE3MSA5NjBxMCAxMy0xMCAyM2wtNDY2IDQ2NnEtMTAgMTAtMjMgMTB0LTIzLTEwbC01MC01MHEtMTAtMTAtMTAtMjN0MTAtMjNsMzkzLTM5My0zOTMtMzkzcS0xMC0xMC0xMC0yM3QxMC0yM2w1MC01MHExMC0xMCAyMy0xMHQyMyAxMGw0NjYgNDY2cTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==) 50% 50% no-repeat;
	background-size:100% auto;
}
