/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 23.04.2019
    Author     : yuki
*/
@import url("fonts.css");
@import url("buttons.css");
@import url("list.css");
@import url("info_article.css");
@import url("modal.css");
@import url("breadcrumbs.css");
@import url("accordion.css");
@import url("tabs.css");
@import url("carousel.css");
@import url("fetcher.css");

@-webkit-keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

* {
    outline: 0 !important;
}
html,body {
    margin: 0;
    overflow-x: hidden;
    min-width: 320px;
}
html.opened,
body.opened{
    overflow-y: hidden;
    position:relative;
    height: auto;
}
@media (max-width: 990px){
    html.opened, body.opened {
        overflow: hidden;
        position: relative;
        height: 100vh;
    }
}
.hidden {
    display: none !important;
}
.m-t_40{
    margin-top: 40px !important;
}
.text-indent{
    text-indent: -9999px;
}
.no-wrap {
    -ms-flex-wrap: nowrap;flex-wrap: nowrap;
}
.site-color{
    color: #7d5bde !important;
    font-size: 14px;
    display: inline-block;
}
.not-flex {display: block !important;}
hr {
    margin: 0 auto;
    border-top: 1px solid #dee2e6;
    display: block;
    width: 100%;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
a {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a,span {
    display: inline-block;
}
a:hover, a:focus{
    text-decoration: none;
    outline: 0;
}

/* For Firefox */
input[type='number'] {
    -moz-appearance:textfield;
}
/* Webkit browsers like Safari and Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="search"] {
    -webkit-appearance: none;
}
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
.form-control{
    border: 1px solid #b1b1b1;
    background-color: #ffffff;
    padding: 5px 10px;
    font-size: 14px;
    color: #1735dc;
    font-family: "Open Sans";
    border-radius: 2px;
}
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=text]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder{
    color: #1735dc !important;
    font-size: 14px !important;
    opacity: 1 !important;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus{
    border-color: #1735dc;
}
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=password]{
    height: 40px;
}
textarea{
    min-height: 100px;
    resize: none;
}
.form-control.error{
    border-color: #EB5E54 !important;
}
@media (max-width: 767px){
    textarea{
        height: 80px;
        font-size: 12px;
    }
    input[type=text],
    input[type=tel],
    input[type=email],
    input[type=number],
    input[type=password]{
        height: 28px;
        font-size: 12px;
    }
}
.full-width {
    width: 100% !important;
    max-width: 100%;
}
.datapicker,
.timepicker{
    padding-right: 40px;
}
.datapicker {
    background: #fff url(../images/icons/calendar_icon.png) no-repeat calc(100% - 10px) center / 20px;
}
.timepicker {
    background: #fff url(../images/icons/time_icon.png) no-repeat calc(100% - 10px) center / 20px;
}
.selecter{
    margin: 0;
}
.selecter-selected{
    padding: 9px 10px;
    height: 40px;
    border: 1px solid #b1b1b1;
    font-size: 14px;
    color: #1735dc;
    font-family: "Open Sans";
    border-radius: 2px;
}
.selecter-item{
    font-size: 14px;
    padding: 9px 10px;
    color: #666666;
}
.inline-form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.inline-form-group > input {
    max-width: calc(100% / 4);
    margin-right: -1px;
}
.form-control:focus,textarea:focus {
    box-shadow: none !important;
    outline: none !important;
}
mark {
    padding: 0;
    display: block;
    color: #c8b5ff;
    background: transparent;
}
del{
    color: rgba(0, 0, 0, .4);
}
ins {
    text-decoration: none;
    color: #000000;
}
/* specail classes -----------------------------------------------------------*/
.layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0,0,0,.7);
    -webkit-transition: opacity .25s ease,visibility 0s ease .25s;
    transition: opacity .25s ease,visibility 0s ease .25s;
}
.layer.active{
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .25s ease,visibility 0s ease;
    transition: opacity .25s ease,visibility 0s ease;
}
.overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0.3;
    z-index: 0;
}
.flex-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.justify-content-between{
    -webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;
}
.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}
.border{
    border: 1px solid #eaeff1;
    border-radius: 2px;
}
.s-title {
    color: #000000;
    font-size: 38px;
    line-height: 28px;
    margin-bottom: 15px;
}
.sub-title {
    color: #000000;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}
.page-head > h1{
    color: #000000;
    font-size: 25px;
    margin: 0;
}
.page-head > h1 > a {color: #000;}
.counter .wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.counter input.count{
    width: 60px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #b1b1b1;
    background-color: #ffffff;
    color: #202123;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.counter .ctrl {
    cursor: pointer;
    vertical-align: middle;
}
.counter .ctrl> svg{
    display: inline-block;
    vertical-align: middle;
    fill: #1735dc;
}
.flt-ch-item__checkbox .check-box {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 1px solid #95a5a6;
    background-color: #dde0e0;
    display: inline-block;
    top: 1px;
}
.flt-ch-item__checkbox label {
    cursor: pointer;
    vertical-align: top;
    margin-bottom: 0;
    display: -webkit-box;display: -ms-flexbox;display: flex;
}
.flt-ch-item__checkbox input[type="checkbox"]:checked + label > .check-box::before, 
.flt-ch-item__checkbox input[type="radio"]:checked + label > .check-box::before {
    background: #1735dc url(../images/icons/tick.svg) no-repeat center / 12px;
}
.flt-ch-item__checkbox .check-box::before {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 1px;
    background-color: #dde0e0;
}
.accept-box_inner .flt-ch-item__checkbox {
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    display: inline-block;
}
.accept-box_inner .flt-ch-item__checkbox .check-box {
    position: absolute;
    top: 3px;
    left: 0;
}
.accept-box_inner .accept-box {
    text-align: left !important;
    display: inline-block;
    color: #666666;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-left: 10px;
}
.flt-ch-item__checkbox.radio_style .check-box,
.flt-ch-item__checkbox.radio_style .check-box::before{
    border-radius: 50%;
}
.flt-ch-item__checkbox.radio_style .check-box{
    background: #fff;
    margin-right: 5px;
}
.flt-ch-item__checkbox.radio_style .check-box::before{
    width: 10px;
    height: 10px;
    background: #fff;
    top: 4px;
    left: 4px
}
.flt-ch-item__checkbox.radio_style input[type="radio"]:checked + label > .check-box::before{
    background: #7d5bde;
}
.filter-conf .flt-ch-item__checkbox.radio_style .label-box{
    font-size: 14px;
}
.filter-conf .flt-ch-item__checkbox.switch_checkbox .check-box{
    width: 48px;
    height: 22px;
    border-radius: 11px;
    border: 1px solid #b1b1b1;
    background-color: #ffffff;
    margin: 0 0 0 10px;
}
.flt-ch-item__checkbox.switch_checkbox .check-box::before{
    width: 14px;
    height: 14px;
    background-color: #7d5bde;
    border-radius: 50%;
    top: 3px;
    right: 4px;
    left: auto;
    background-color: #b1b1b1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.filter-conf .flt-ch-item__checkbox.switch_checkbox input[type="checkbox"]:checked + label > .check-box::before{
    background: #7d5bde;
    left: 4px;
    right: auto;
}
/* specail classes  END-----------------------------------------------------------*/

.header {
    padding: 16px 0;
    height: 100px;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #b1b1b1;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.header.is-fixed {
    position: fixed;
    z-index: 1000;
    animation-name: stickySlideDown;
    transition: none;
}
.header .logo > img {
    max-width: 180px;
    width: 100%;
}
.header .contact_data .phone{
    color: #1735dc;
    font-family: "Bebas Neue Bold";
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.35px;
    line-height: 48px;
    margin-top: 10px;
}
.header .main_nav {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .main_nav > a {
    color: #7d5bde;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.header .main_nav > a.active,
.header .main_nav > a:hover {
    color: #1735dc;
}
.header .main_nav .sub-menu {
    box-shadow: 2px 7px 5px 0px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1001;
    background: #fff;
    top: 100px;
    left: auto;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    max-width: 720px;
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.header .main_nav .sub-menu.open{
    opacity: 1;
    visibility: visible;
}
.header .main_nav .sub-menu > li{
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid #7d5bde;
    margin-right: 30px;
    width: calc(50% - 30px);
}
.header .main_nav .sub-menu > li:first-child,
.header .main_nav .sub-menu > li:nth-child(2){
    border-top: 0;
    padding-top: 0;
}
.header .main_nav .sub-menu > li > a {
    color: #1735dc;
    font-family: "Bebas Neue Bold";
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
}
.header .main_nav .sub-menu > li > a + ul > li{
    margin-bottom: 5px;
}
.header .main_nav .sub-menu > li > a + ul > li > a {
    color: #7d5bde;
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 400;
}
.header .main_nav .sub-menu > li > a + ul > li > a:hover {
    color: #1735dc;
}

.slider-bunner .banner-title h2{
    color: #7d5bde;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 50px;
}
.slider-bunner img {
    position: absolute;
    width: 330px;
    top: 50%;
    right: 80px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slider-bunner .banner-title p{
    color: #fff;
    font-family: "Bebas Neue Bold";
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    max-width: 60%;
}
.slider-bunner .swiper-slide {
    padding: 60px 0 50px;
}
/*-----------------------------------------------------------------------------*/
.banner_main {
    padding: 75px 0;
}
.banner_main .wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.banner_main .banner_part {
    width: 50%;
}
.banner_main .banner_part > img {
    display: block;
    margin: 0 auto;
}
.banner_main .banner_part h2 {
    color: #1735dc;
    font-family: "Bebas Neue Bold";
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 50px;
}
.banner_main .banner_part .btn{
    max-width: 340px;
    margin: 0 auto 15px;
    display: block;
    font-size: 32px;
    height: 60px;
    line-height: 52px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.banner_main .banner_part article {
    color: #202123;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.banner_main.banner_main_2 {
    padding: 50px 0;
}
.banner_main.banner_main_2 >.wrapper {
    -ms-flex-wrap: wrap;flex-wrap: wrap;
}
.banner_main.banner_main_2 .title {
    color: #ffffff;
    font-family: "Bebas Neue Bold";
    font-size: 48px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
    text-align: center;
}
.banner_main.banner_main_2 .banner_part{
    position: relative;
    margin-bottom: auto;
}
.banner_main.banner_main_2 .banner_part article{
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
}
.banner_main.banner_main_2 .banner_part article > p{
    margin-bottom: 19px;
}
.banner_main.banner_main_2 .banner_part.img-part:after{
    content: '';
    position: absolute;
    top: 65px;
    left: 50%;
    width: calc(100% - 160px);
    height: calc(100% - 45px);
    background: #fff;
    border-radius: 125px;
    z-index: 10;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.banner_main.banner_main_2 .banner_part.img-part > img{
    position: relative;
    z-index: 12;
    max-width: 500px;
    width: 100%;
}
.banner_main.banner_main_2 .serial-proiz {
    position: relative;
    background: #fff;
}
.banner_main.banner_main_2 .serial-proiz .serial-proiz_title {
    background-color: #b1b1b1;
    padding: 8px 20px;
    margin: 0;
    color: #1735dc;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
}
.banner_main.banner_main_2 .serial-proiz article.serial-proiz_descr {
    padding: 15px 20px;
    color: #7d5bde;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
}
.banner_main.banner_main_2 .notes{
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    max-width: 678px;
    margin: 50px auto 0;
    display: block;
    text-align: center;
    letter-spacing: 0.17px;
}
/*-----------------------------------------------------------------------------*/
.time_todone{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.time_todone > div {
    width: 50%;
    padding: 70px;
    color: #fff;
}
.time_todone > div:first-child{
    text-align: right;
    background-color: #1735dc;
}
.time_todone > div:first-child .title{
    color: #ffffff;
    font-family: "Bebas Neue Bold";
    font-size: 48px;
    font-weight: 400;
    line-height: 46px;
    max-width: 480px;
    margin-bottom: 0;
    margin-left: auto;
    background-image: 
        url(../images/icons/clock_icon.png),
        url(../images/icons/arrow_right_icon.png);
    background-position:
        left center,
        right center;
    background-repeat:
        no-repeat;
    background-size: 
        contain;
}
.time_todone > div:first-child .title > span {
    width: 200px;
    height: 115px;
    text-align: left;
    margin: 0 auto;
    display: block;
    letter-spacing: 0.35px;
}
.time_todone > div:last-child{
    text-align: left;
    background-color: #7d5bde;
}
.time_todone > div:last-child > article.descr{
    width: 460px;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 400;
}
/*-----------------------------------------------------------------------------*/
.page_title {
    color: #1735dc;
    font-family: "Bebas Neue Bold";
    font-size: 48px;
    font-weight: 400;
    line-height: 46px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 15px;
}
.page_title-wr {
    text-align: center;
    background-color: #1735dc;
    color: #fff;
    padding-top: 25px;
    padding-bottom: 15px;
}
.page_title-wr .page_title {
    text-align: center !important;
    color: #fff;
    margin: 0;
}
.contacts_data {
    padding: 15px 0;
    background-color: #7d5bdc;
    color: #fff;
}
.contacts_data > .wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.contacts_data a {
    color: #fff;
}
.contacts_data .contacts_item {
    width: 33%;
    padding-right: 30px;
}
.contacts_data .contacts_item .title{
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}
.contacts_data .contacts_item .data{
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}
.contacts_map {
    min-height: 480px;
    background: #cccccc;
    border-bottom: 5px solid #7d5bdc;
}
.btns_list {
    margin: 40px -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.btns_list.single{
    margin: 0;
    background-color: #1735dc;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.btns_list > a {
    text-align: left;
    background: #1735dc;
    padding: 15px;
    padding-left: 130px;
    color: #fefefe;
    font-family: "Bebas Neue Bold";
    font-size: 32px;
    line-height: 38px;
    font-weight: 400;
    width: calc((100% / 3) - 10px);
    margin: 0 5px;
    max-width: 385px;
    height: 135px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.btns_list.single > a{
    margin: 0 auto;
    background-color: transparent;
}
.btns_list .btn_question {
    background: #1735dc url(../images/icons/question_icon.svg) no-repeat 10px center / 107px;
}
.btns_list .btn_callback {
    background: #1735dc url(../images/icons/callback_icon.svg) no-repeat 10px center / 107px;
}
.btns_list .btn_consult {
    background: #1735dc url(../images/icons/consult_icon.svg) no-repeat 10px center / 107px;
}
.btns_list:not(.single) a:hover,
.btns_list.single:hover {
    background-color: #c8b5ff;
}
.catalog_page .btns_list.single{
    margin-top: 30px;
}
/*------------------------------------------------------------------------------*/
.filter-conf .flt-title{
    color: #202123;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 0;
    margin-bottom: 10px;
    width: 100%;
}
.filter-conf .flt_type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.filter-conf .flt_type{
    border-bottom: 2px solid #b1b1b1;
    margin-bottom: 25px;
}
.filter-conf .flt_type .radio{
    margin-right: 10px;
    margin-bottom: 10px;
}
.filter-conf .flt_type .radio > label {
    margin: 0;
    border: 3px solid #b1b1b1;
    color: #b1b1b1;
    font-family: "Bebas Neue Bold";
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.15px;
    padding: 4px 5px 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.filter-conf .flt_type .radio input[type=radio]:checked + label,
.filter-conf .flt_type .radio label:hover{
    color: #1735dc;
    border-color: #1735dc;
}
.filter-conf .main_flt-conf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.filter-conf .main_flt-conf.antenn-flt_conf{
    -webkit-box-orient: horizontal;-webkit-box-direction: normal;-ms-flex-flow: row wrap;flex-flow: row wrap;
}
.filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div{
    width: calc((100% - 360px) / 4);
}
.filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div:last-child{
    width: 360px;
}
.filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div:last-child ul > li{
    height: 40px;
}
.filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div:last-child ul{
    margin: 0;
}
.filter-conf .main_flt-conf.antenn-flt_conf label{
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 0;
    min-width: 45px;
}
.filter-conf .main_flt-conf.antenn-flt_conf .flt-ch-item__checkbox .label-box,
.filter-conf .main_flt-conf.antenn-flt_conf p.label{
    font-size: 14px;
    margin: 0;
}
.filter-conf .main_flt-conf.antenn-flt_conf textarea{
    resize: none;
}
.filter-conf .main_flt-conf.antenn-flt_conf input:not([type="checkbox"]):not([type="radio"]){
    max-width: 85px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid #b1b1b1;
    background-color: #ffffff;
    padding: 5px;
}
.filter-conf .main_flt-conf.antenn-flt_conf  .selecter-element{
    opacity: 0 !important;
}
.filter-conf .main_flt-conf.antenn-flt_conf  .selecter-selected{
    padding: 6px;
    padding-right: 20px;
    height: 26px;
    line-height: 12px;
    min-width: 85px;
    border-radius: 4px;
    border: 1px solid #b1b1b1;
}
.filter-conf .main_flt-conf.antenn-flt_conf .selecter-selected::after{
    border-top: 5px solid #7d5bde;
    right: 6px;
}
.filter-conf .main_flt-conf.antenn-flt_conf input:disabled, 
.filter-conf .main_flt-conf.antenn-flt_conf select:disabled, 
.filter-conf .main_flt-conf.antenn-flt_conf textarea:disabled,
.selecter.disabled .selecter-selected{
    cursor: not-allowed;
    background-color: #e9ecef !important;
    opacity: .8;
}
.filter-conf .main_flt-conf.antenn-flt_conf input:not([type="checkbox"]):not([type="radio"]) + span {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.filter-conf .main_flt-conf .deliver-title{
    background-color: #fff;
    color: #202123;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.filter-conf .main_flt-conf .deliver-title > p.label{
    margin: 0;
    font-size: 16px;
}
.filter-conf .dop_line-params .dop_line-params_row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.filter-conf .main_flt-conf ul{
    margin-right: 10px;
    border-top: 2px solid #b1b1b1;
    min-width: 180px;
}
.filter-conf .half-part > input[type=text]{
    max-width: 85px;
}
.filter-conf .half-part .selecter-selected{
    min-width: 90px;
}
.main_flt-conf ul > li{
    padding: 8px;
    height: auto;
    min-height: 40px;
}
.main_flt-conf ul > li:nth-child(odd){
    background-color: #d8d8d8;
}
.main_flt-conf ul > li:nth-child(even){
    background-color: #ebebeb;
}
.filter-conf .flt-ch-item__checkbox .check-box{
    margin-right: 10px;
}
.filter-conf .flt-ch-item__checkbox .label-box{
    color: #202123;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.16px;
    vertical-align: top;
    margin-top: 0;
    width: calc(100% - 30px);
}
.filter-conf .flt-ch-item__checkbox input[type="checkbox"]:checked + label{
    border-color: #7d5bde;
}
.flt-ch-item__checkbox .check-box::before{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.filter-conf .flt-ch-item__checkbox input[type="checkbox"]:checked + label > .check-box::before{
    background: #7d5bde url(../images/icons/tick.svg) no-repeat center / 12px;
}
.filter-conf .main_flt-conf .graph-container{
    height: 300px;
    width: 500px;
    background: url(../images/graph_bg.png) no-repeat center / 100% 100%;
    position: relative;
    padding: 35px 25px;
    display: -webkit-box;display: -ms-flexbox;display: flex;
}
.filter-conf .main_flt-conf .graph-container:before{
    position: absolute;
    width: 145px;
    height: auto;
    display: block;
    color: #202123;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.filter-conf .main_flt-conf #section_1.graph-container::before{
    content: "полоса пропускания на уровне -3dB";
    top: 110px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.filter-conf .main_flt-conf #section_2.graph-container::before{
    content: "полоса пропускания на уровне -3dB";
    top: 26px;
    right: 100px;
}
.filter-conf .main_flt-conf #section_3.graph-container::before{
    content: "полоса пропускания на уровне -3dB";
    top: 26px;
    left: 65px;
}
.filter-conf .main_flt-conf #section_4.graph-container::before{
    content: "полоса пропускания на уровне -1.5dB";
    top: 58px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.filter-conf .btn-primary{
    display: block;
    margin: 30px auto 50px;
}
.ion-slider .range-label{
    font-size: 13px !important;
    line-height: 12px !important;
    display: inline-block;
    width: 20px;
    vertical-align: bottom;
    margin-bottom: 7px;
}
.ion-slider .range-label.from-range{
    text-align: left;
}
.ion-slider .range-label.to-range{
    text-align: right;
}
.ion-slider_double .range-label {
    font-size: 14px;
    display: inline-block;
    width: 25px;
    text-align: center;
}
.ion-slider_double .irs-slider.from{
    background: #1735dc;
}
.ion-slider_double .irs-slider.to{
    background: #da0000;
}
.ion-slider_double .irs-bar{
    background: #636363;
}
/*----------------------------------------------------------------------------*/
.irs{
    height: 24px;
}
.irs.js-irs-0,
.irs.js-irs-1,
.irs.js-irs-2,
.irs.js-irs-3{
    height: 24px;
    width: calc(100% - 50px);
    display: inline-block;
}
.antenn-sizes .irs.js-irs-0,
.antenn-sizes .irs.js-irs-1,
.antenn-sizes .irs.js-irs-2,
.antenn-sizes .irs.js-irs-3{
    width: calc(100% - 75px);
}
.irs.js-irs-4 {
    width: calc(100% - 60px);
}
.irs-bar,
.irs-bar-edge,
.irs-line{
    height: 4px;
    border-radius: 2px;
    background: #b1b1b1;
    border-color: #b1b1b1;
    top: 10px;
}
.irs-slider{
    width: 14px;
    height: 14px;
    border: none;
    top: 5px;
}
.irs-slider.single{
    background: #7d5bde;
}
/*----------------------------------------------------------------------------*/
.dop_line-params {
    margin-top: 10px;
}
.dop_line-params .dop_line-params_row{
    padding: 10px;
}
.dop_line-params .dop_line-params_row:first-child{
    background-color: #d8d8d8;
}
.dop_line-params .dop_line-params_row:first-child > div {
    width: 33%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 15px;
}
.dop_line-params .dop_line-params_row:first-child > div:last-child{
    padding-right: 0;
}
.dop_line-params .dop_line-params_row:first-child > div label{
    margin-right: 10px;
}
.dop_line-params .dop_line-params_row:first-child > div input[type=number],
.dop_line-params .dop_line-params_row:first-child > div .selecter{
    margin-right: auto;
}
.dop_line-params .dop_line-params_row:last-child{
    background-color: #ebebeb;
}
.dop_line-params .dop_line-params_row input[name="order_individual_other_descr"],
.dop_line-params .dop_line-params_row input[name="connector_type_descr"]{
    max-width: calc(100% - 90px) !important;
}
.main_flt-conf .graph-container{
    position: relative;
}
.main_flt-conf .graph-container .form-group{
    position: absolute;
    margin:0;
}
.main_flt-conf .graph-container .form-group.input-double{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 146px;
}
.main_flt-conf #section_1.graph-container .form-group.top-left{
    top: 72px;
    left: 80px;
}
.main_flt-conf #section_2.graph-container .form-group.top-left{
    top: 85px;
    left: 86px;
}
.main_flt-conf #section_3.graph-container .form-group.top-left{
    top: 85px;
    right: 73px;
}
.main_flt-conf #section_4.graph-container .form-group.top-left{
    top: 90px;
    left: 90px;
}
.main_flt-conf #section_1.graph-container .form-group.top-left:before{
    content: url(../images/icons/dots.svg);
    display: inline-block;
    width: 28px;
    height: 6px;
    position: absolute;
    left: -35px;
    top: -1px;
}
.main_flt-conf #section_1.graph-container .form-group.bottom-left{
    bottom: 64px;
    left: 45px;
}
.main_flt-conf #section_2.graph-container .form-group.bottom-left{
    bottom: 35px;
    right: 230px;
    width: 55px;
    -webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-flow: column;flex-flow: column;
}
.main_flt-conf #section_3.graph-container .form-group.bottom-left{
    bottom: 35px;
    left: 225px;
    -webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-flow: column;flex-flow: column;
    width: 55px;
}
.main_flt-conf #section_4.graph-container .form-group.bottom-left{
    bottom: 65px;
    left: 90px;
}
.main_flt-conf #section_1.graph-container .form-group.top-right{
    top: 72px;
    right: 85px;
}
.main_flt-conf #section_2.graph-container .form-group.top-right{
    top: 120px;
    left: 180px;
}
.main_flt-conf #section_3.graph-container .form-group.top-right{
    top: 125px;
    right: 164px;
}
.main_flt-conf #section_4.graph-container .form-group.top-right{
    top: 90px;
    right: 65px;
}
.main_flt-conf #section_1.graph-container .form-group.top-right:before{
    content: url(../images/icons/dots.svg);
    display: inline-block;
    width: 28px;
    height: 6px;
    position: absolute;
    left: 55px;
    top: -1px;
}
.main_flt-conf #section_1.graph-container .form-group.bottom-right{
    bottom: 64px;
    right: 45px;
}
.main_flt-conf #section_2.graph-container .form-group.bottom-right{
    bottom: 60px;
    right: 80px;
    width: 55px;
    -webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-flow: column;flex-flow: column;
}
.main_flt-conf #section_3.graph-container .form-group.bottom-right{
    bottom: 65px;
    left: 75px;
    -webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-flow: column;flex-flow: column;
    width: 55px;
}
.main_flt-conf #section_4.graph-container .form-group.bottom-right{
    bottom: 65px;
    right: 84px;
}
.main_flt-conf .graph-container .form-group label{
    border: 1px solid #b1b1b1;
    background-color: #b1b1b1;
    margin: 0;
    color: #202123;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.14px;
    padding: 1px 4px;
    position: absolute;
    z-index: 1;
    top: -22px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.main_flt-conf #section_1.graph-container .form-group.bottom-right label,
.main_flt-conf #section_4.graph-container .form-group.bottom-right label{
    right: 0;
}
.main_flt-conf .graph-container .form-group input{
    width: 50px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #b1b1b1;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
    padding: 5px;
}
/*-----------------------------------------------------------------------------*/
.prod_result{
    margin-bottom: 50px;
}
.prod_result ul{
    position: relative;
    padding-top: 0;
    max-height: 360px;
    overflow-y: auto;
}
.prod_result ul > li{
    background-color: #fff !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.prod_result ul > li:nth-child(2n) > span {
    background-color: #ebebeb;
}
.prod_result ul > li:nth-child(2n+1) > span {
    background-color: #d8d8d8;
}
.prod_result ul > li{
    padding: 0;
    height: auto;
}
.prod_result ul > li > span:not(:first-child){
    padding: 8px;
    margin-right: 5px; 
    flex-grow: 1;
    width: calc((100% - 160px) / 10);
    font-size: 14px;
}
.prod_result ul > li > span:first-child{
    width: 160px;
    padding: 10px;   
    margin-right: 10px;
    flex-grow: 1;
}
.prod_result ul > li > span:last-child{
    margin-right: 0;
}
.prod_result ul > li.head{
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}
.prod_result ul > li.head > span{
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    background-color: #b1b1b1;
}
.prod_result ul > li > span  >  a{
    font-size: 14px;
    word-wrap:break-word;
    color: #7d5bde;
    text-decoration: underline;
}
/*-------------------------------404-------------------------------------------*/
.page-404 {
    margin-bottom: 30px;
}
.page-404 .not_found{
    color: #545454;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}
/*-----------------------------------------------------------------------------*/
.footer {
    background-color: #b1b1b1;
    padding: 45px 0;
    color: #545454;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
}
.footer .logo > img {
    max-width: 140px;
    width: 100%;
}
.sub-footer {
    height: 70px;
    background-color: #202123;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}
.sub-footer .wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sub-footer nav > a {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}
.sub-footer nav > a:hover{
    color: #7d5bde;
    text-decoration: underline;
}
.sub-footer nav > a:last-child{
    margin-bottom: 0;
}
.header .main_nav .sub-menu > li.razdel_item{
    display: none;
}
.aside{
    width: 380px;
    margin-right: 60px;
    margin-top: 0px;
}
.main_content {
    width: calc(100% - 440px);
}
.catalog_page .main_content {
    width: calc(100% - 400px);
    margin-top: -60px;
}
.main_content .not_result{
    line-height: 18px;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    color: #202123;
}
.question_page .page_title{
    text-align: left;
}
.aside .search {
    border: 2px solid #7d5bde;
    background-color: #7d5bde;
    padding: 8px;
    position: relative;
}
.aside .search input[type=search],
.aside .search input[type=text]{
    border-radius: 2px;
    background-color: #ffffff;
    border: none;
    width: calc(100% - 45px);
    margin-right: 10px;
}
.aside .search button{
    color: #fff;
    font-size: 26px;
    width: 35px;
    height: 35px;
    border: none;
    position: absolute;
    top: 6px;
    right: 6px;
}
.aside .search button.search-btn{
    background: transparent url(../images/icons/search.png) no-repeat center/ 30px;
}
.aside .search button.reset-btn{
    background: transparent;
}
.aside .search button > i{
    position: relative;
    top: -8px;
    left: -5px;
}
.page_header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.catalog_page .page_header .page_title {
    min-width: 380px;
    text-align: left;
    margin-right: 20px;
}
.catalog_page .page_subtitle{
    color: #1735dc;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
    position: relative;
    margin-bottom: 25px;
}
.catalog_page .page_subtitle > span {
    position: relative;
}
.catalog_page .page_subtitle > span:before{
    content: '';
    width: 100%;
    height: 5px;
    background-color: #1735dc;
    bottom: -11px;
    left: 0;
    position: absolute;
}
.catalog_page .aside {
    border: 2px solid #202123;
    background-color: #ffffff;
    margin-top: 0;
    margin-right: 20px;
    margin-bottom: auto;
    padding: 15px;
}
.aside .nav-list a:hover {
    color: #1735dc !important;
}
.aside .nav-list .cat-title:not(:last-child){
    width: 100%;
    display: block;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #b1b1b1;
}
.aside .nav-list .cat-title > a{
    display: block;
    color: #b1b1b1;
    font-family: "Bebas Neue Bold";
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.aside .nav-list .cat-title.active > a{
    color: #1735dc;
}
.aside .nav-list .subcat-title > a{
    display: block;
    margin-bottom: 5px;
    color: #b1b1b1;
    line-height: 18px;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
}
.aside .nav-list .cat-title.active .subcat-title > a{
    color: #202123;
}
.aside .nav-list .cat-title.active .subcat-title.active > a{
    color: #1735dc;
}
.prod_list{
    margin: 0 0 30px;
}
.prod_list.greed .prod_item{
    margin-bottom: 20px;
    width: calc(50% - 5px);
}
.prod_list.greed .prod_item .prod_item__wr{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    border: 1px solid #b1b1b1;
}
.prod_list.greed .prod_item .img_prev {
    width: calc(50% - 5px);
    min-height: 180px;
}
.prod_list.greed .prod_item .info {
    width: calc(50% - 5px);
    margin: 0;
    padding: 15px 10px;
}
.prod_list.greed .prod_item .btns {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.prod_list.greed .prod_item .btns > a{
    width: calc(50% - 5px);
}
.prod_list.greed .prod_item .title {
    color: #1735dc;
    font-family: "Bebas Neue Bold";
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 24px;
    display: block;
    width: 100%;
}
.prod_list.greed .prod_item .info  span {
    color: #202123;
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    display: block;
    width: 100%;
}
.prod_list.greed .prod_item .btn_more,
.prod_list.greed .prod_item .btn_order{
    margin-top: 10px;
}
.cart {
    position: absolute;
    top: 0;
    right: 15px;
    width: 380px;
    height: 60px;
    background-color: #cdcdcd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cart > .title {
    color: #1735dc;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    width: calc(100% - 100px);
    padding: 20px;
}
.cart > .cart_cnt{
    width: 91px;
    height: 100%;
    background-color: #7d5bde;
    padding: 20px 10px;
    text-align: center;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    line-height: 18px;
}
.product_page .aside{
    margin-right: 0;
    margin-left: 10px;
    margin-top: 0;
}
.product_page .breadcrumb + .wrapper{
    margin-bottom: 80px;
}
.product_page .main_content {
    width: calc(100% - 390px);
}
.product_page .aside .btn_download{
    margin-top: 13px;
}
.product_page .main_img {
    min-height: 475px;
    width: 100%;
    margin-bottom: 15px;
}
#prod_order {
    margin: 13px 0 15px;
    background-color: #7d5bde;
    padding: 20px;
}
#prod_order .form-cnt {
    margin: 0 0 20px 0;
}
#prod_order .form-cnt label{
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
#prod_order .form-cnt input[type=number]{
    width: 75px;
    height: 40px;
    border-radius: 4px;
    background-color: #ffffff;
    color: #202123;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
#prod_order small.disclamer{
    display: block;
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}
#prod_order small.disclamer:last-of-type {
    margin-bottom: 80px;
}
#prod_order small.disclamer:last-of-type + p {
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
}
#prod_order .phone{
    display: block;
    height: 75px;
    background: #1735dc url(../images/icons/phone_mob_icon.svg) no-repeat calc(100% - 20px) center / 55px;
    color: #fefeff;
    font-family: "Bebas Neue Bold";
    font-size: 48px;
    font-weight: 400;
    padding: 10px 20px;
    line-height: 64px;
    margin: 0 -20px -20px;
}
.graphics-gallery .title{
    color: #1735dc;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.graphics-gallery .gallery_inner {
    border-radius: 10px;
    border: 3px solid #b1b1b1;
    background-color: #b1b1b1;
    height: auto;
    overflow: hidden;
    position: relative;
}
.graphics-gallery .gallery_inner .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    color: #fff;
    opacity: 1;
    border: none;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.graphics-gallery .gallery_inner .slick-arrow:hover {
    color: #1735dc;
}
.graphics-gallery .gallery_inner .slick-arrow.prev-arrow{
    left: 0;
}
.graphics-gallery .gallery_inner .slick-arrow.next-arrow{
    right: 0;
}
.graphics-gallery .gallery_inner .slick-list {
    padding: 0 !important;
}
.graphics-gallery .gallery_inner .slick-slide{
    width: 100%;
    max-width: 374px;
}
.graphics-gallery .gallery_inner .slick-slide > a{
    display: block;
    position: relative;
}
.graphics-gallery .gallery_inner .slick-slide > a:before {
    color: #fff;
    font: normal normal normal 32px/1 FontAwesome;
    content: "\f00e";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.graphics-gallery .gallery_inner .slick-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    opacity: 0.3;
}
@media (max-width: 1199px){
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div:nth-last-child(2) ul{
        margin-right: 0;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr{
        -webkit-box-orient: horizontal;-webkit-box-direction: normal;-ms-flex-flow: row wrap;flex-flow: row wrap;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div {
        width: calc(100% / 4);
    }
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div:last-child {
        width: 100%;
        margin-top: 10px;
    }
}
@media (max-width: 1160px){
    .time_todone > div:last-child > article.descr{
        width: 100%;
        font-size: 22px;
    }
    .time_todone > div{
        padding: 35px;
    }
    .time_todone > div:first-child .title{
        font-size: 42px;
        line-height: 42px;
        max-width: 450px;
    }
    .time_todone > div:first-child .title > span{
        width: 175px;
        height: auto;
        margin-left: 160px;
    }
    .catalog_page .aside{
        width: 300px;
        margin-right: 15px;
    }
    .catalog_page .main_content{
        width: calc(100% - 315px);
    }
    .catalog_page .page_header .page_title {
        min-width: 300px;
        margin-right: 15px;
    }
    .aside .nav-list .subcat-title > a{
        margin-bottom: 10px;
    }
}
@media (max-width: 990px){
    .filter-conf .dop_line-params .dop_line-params_row{
        -webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf label,
    .filter-conf .main_flt-conf.antenn-flt_conf .flt-ch-item__checkbox .label-box,
    .filter-conf .main_flt-conf.antenn-flt_conf p.label{
        font-size: 12px;
        line-height: 14px;
    }
    .time_todone > div:first-child{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .time_todone > div:last-child > article.descr {
        width: 100%;
        font-size: 18px;
    }
    .time_todone > div:first-child .title {
        font-size: 28px;
        line-height: 32px;
    }
    .time_todone > div:first-child .title > span{
        margin-left: 140px;
    }
    .banner_main.banner_main_2 .serial-proiz article.serial-proiz_descr{
        font-size: 20px;
        line-height: 24px;
    }
    .banner_main.banner_main_2 .title{
        line-height: 48px;
    }
    .product_page .breadcrumb + .wrapper {
        margin-bottom: 50px;
    }
    .product_page .page_title{
        font-size: 36px;
        font-weight: 400;
        line-height: 32px;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    #prod_order small.disclamer:last-of-type + p{
        font-size: 16px;
    }
    #prod_order small.disclamer:last-of-type {
        margin-bottom: 30px;
    }
    #prod_order small.disclamer{
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 15px;
    }
    #prod_order .form-cnt {
        margin: 0 0 25px 0;
    }
    #prod_order .form-cnt label{
        font-size: 16px;
        line-height: 23px;
    }
    #prod_order .form-cnt input[type="number"]{
        width: 50px;
        height: 26px;
        font-size: 14px;
    }
    #prod_order .phone{
        font-size: 30px;
        font-weight: 400;
        line-height: 36px;
        height: 50px;
        background: #1735dc url(../images/icons/phone_mob_icon.svg) no-repeat calc(100% - 20px) center / 37px;
    }
    .cart{
        width: 300px;
    }
    .cart > .title{
        font-size: 22px;
    }
    .product_page .main_content {
        width: calc(100% - 310px);
    }
    .slider-bunner img{
        width: 240px;
    }
    .header .main_nav .sub-menu > li.razdel_item{
        display: inline-block;
        width: 100%;
    }
    .header .main_nav .sub-menu > li:nth-child(3n), .header .main_nav .sub-menu > li:nth-child(4n) {
        /*border-bottom: 1px solid #7d5bde;*/
    }
    .header .main_nav .sub-menu > li:last-child,
    .header .main_nav .sub-menu > li.razdel_item{
        border-bottom: 0;
    }
    .header .main_nav .sub-menu{
        top: 88px;
        left: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
        height: calc(100vh - 88px);
    }
    .header .main_nav{
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
    }
    .header .main_nav > a{
        display: none !important;
    }
    .header .mob_menu_trigger {
        margin-left: auto;
        width: 55px;
        height: 55px;
        background: url(../images/icons/menu_mob_icon.svg) no-repeat center / contain;
        position: relative;
        z-index: 1001;
    }
    .header .contact_data .phone{
        text-indent: -9999px;
        width: 55px;
        height: 55px;
        background: url(../images/icons/phone_mob_icon.svg) no-repeat center / contain;
        margin-left: 10px;
        margin-top: 0;
    }
    .header .logo > img {
        max-width: 145px;
    }
    .btns_list > a {
        font-size: 24px;
        line-height: 28px;
        background-size: 79px !important;
        padding-left: 100px;
        height: 100px;
    }
    .aside {
        width: 300px;
        margin-right: 30px;
        margin-top: 20px;
    }
    .main_content {
        width: calc(100% - 330px);
    }
    .prod_list.greed .prod_item{
        width: 100%;
        min-height: 180px;
    }
    .prod_result ul{
        -webkit-column-count: 2;column-count: 2;
    }
    .prod_result ul > li.head{
        display: none;
    }
    .prod_result ul > li > span:not(:first-child){
        display: none;
    }
    .prod_result ul > li > span{
        margin-right: 0 !important;
        border-top: 2px solid #b1b1b1;
        padding: 7px;
    }
    .prod_result {
        margin-bottom: 30px;
    }
    .main_flt-conf .graph-container .form-group input{
        width: 43px;
        height: 25px;
    }
    .main_flt-conf .graph-container .form-group label{
        font-size: 10px;
        line-height: 16px;
        top: -18px;
    }
    .filter-conf .main_flt-conf .graph-container::before{
        font-size: 10px;
        line-height: 14px;
    }
    .filter-conf .main_flt-conf #section_1.graph-container::before{
        top: 55px;
    }
    .filter-conf .main_flt-conf #section_2.graph-container::before{
        top: 15px;
        right: 45px;
    }
    .filter-conf .main_flt-conf #section_3.graph-container::before{
        top: 15px;
        left: 35px;
    }
    .filter-conf .main_flt-conf #section_4.graph-container::before{
        top: 35px;
    }
    .main_flt-conf #section_4.graph-container .form-group.top-left {
        top: 55px;
        left: 50px;
    }
    .main_flt-conf #section_4.graph-container .form-group.top-right {
        top: 55px;
        right: 15px;
    }
    .main_flt-conf #section_4.graph-container .form-group.bottom-left {
        bottom: 33px;
        left: 36px;
        max-width: 110px;
    }
    .main_flt-conf #section_4.graph-container .form-group.bottom-right {
        bottom: 33px;
        right: 28px;
        max-width: 110px;
    }
    .main_flt-conf #section_3.graph-container .form-group.top-left {
        top: 55px;
        right: 30px;
    }
    .main_flt-conf #section_3.graph-container .form-group.top-right {
        top: 75px;
        right: 86px;
    }
    .main_flt-conf #section_3.graph-container .form-group.bottom-left {
        bottom: 12px;
        left: 140px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        width: 95px;
    }
    .main_flt-conf #section_3.graph-container .form-group.bottom-right {
        bottom: 40px;
        left: 35px;
    }
    .main_flt-conf #section_2.graph-container .form-group.top-left {
        top: 55px;
        left: 50px;
    }
    .main_flt-conf #section_2.graph-container .form-group.top-right { 
        top: 75px;
        left: 105px;
    }
    .main_flt-conf #section_2.graph-container .form-group.bottom-left {
        bottom: 25px;
        right: 135px;
        width: 55px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        width: 95px;
    }
    .main_flt-conf #section_2.graph-container .form-group.bottom-right {
        bottom: 35px;
        right: 35px;
    }
    .main_flt-conf #section_1.graph-container .form-group.top-left {
        top: 36px;
        left: 35px;
    }
    .main_flt-conf #section_1.graph-container .form-group.top-left::before{display: none;}
    .main_flt-conf #section_1.graph-container .form-group.top-right {
        top: 37px;
        right: 25px;
    }
    .main_flt-conf #section_1.graph-container .form-group.top-right::before{display: none;}
    .main_flt-conf .graph-container .form-group.input-double{
        width: 105px;
    }
    .main_flt-conf #section_1.graph-container .form-group.bottom-left {
        bottom: 34px;
        left: 16px;
    }
    .main_flt-conf #section_1.graph-container .form-group.bottom-right {
        bottom: 33px;
        right: 7px;
    }
}
@media (max-width: 767px){
    .banner_main .banner_part .btn{
        font-size: 24px;
        height: 42px;
        line-height: 32px;
    }
    .banner_main .banner_part .btn:last-child{
        margin-bottom: 0;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf .flt-ch-item__checkbox:not(.radio_style):not(.switch_checkbox) .label-box{
        width: calc(100% - 15px);
    }
    .filter-conf .main_flt-conf.antenn-flt_conf .flt-ch-item__checkbox:not(.radio_style):not(.switch_checkbox) .check-box{
        margin-right: 5px;
        width: 15px;
        height: 15px;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf input:not([type="checkbox"]):not([type="radio"]) {
        max-width: 45px;
    }
    .main_flt-conf ul > li {
        padding: 6px;
    }
    .filter-conf .main_flt-conf:not(.antenn-flt_conf) ul > li:last-child{display: none;}
    .site-color{font-size: 11px;}
    .filter-conf .main_flt-conf.antenn-flt_conf label{
        min-width: 40px;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf input:not([type="checkbox"]):not([type="radio"]) + span{
        font-size: 12px; 
    }
    .dop_line-params .dop_line-params_row:last-child{
        -webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-flow: column;flex-flow: column;
    }
    .dop_line-params .dop_line-params_row:last-child > input[type=text]{
        width: 100%;
        max-width: 100% !important;
        margin-top: 10px;
    }
    .dop_line-params .dop_line-params_row:first-child > div input[type="number"], .dop_line-params .dop_line-params_row:first-child > div .selecter {
        margin-left: auto;
        margin-right: 0;
    }
    .dop_line-params .dop_line-params_row:first-child > div input[type="number"]{
        max-width: 65px !important;
    }
    .dop_line-params .dop_line-params_row:first-child > div{
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .dop_line-params .dop_line-params_row:first-child > div{
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .dop_line-params .dop_line-params_row:first-child > div:last-child{
        margin-bottom: 0;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf p.label.not-label-xs{
        font-size: 13px;
        margin-left: -5px;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr{
        padding: 0 !important;
        margin-bottom: 0 !important;
    }
    .dop_line-params {
        margin-top: 0;
        width: 100% !important;
        padding: 0 !important;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div {
        width: 100%;
        margin-top: 0 !important;
        margin-bottom: 10px;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div:nth-child(odd){
        padding-right: 0px;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div:nth-child(even){
        padding-left: 0px;
    }
    .filter-conf .main_flt-conf .deliver-title{
        padding-left: 0;
        padding-bottom: 0;
        padding-top: 12px;
    }
    .filter-conf .main_flt-conf.antenn-flt_conf > .antenn_wr > div:last-child{
        padding: 0;
    }
    .filter-conf .btn-primary{
        height: auto;
        font-size: 24px;
        line-height: 30px;
        white-space: normal;
        margin: 30px auto;
        padding-bottom: 0;
        max-width: 290px;
    }
    .filter-conf .main_flt-conf .graph-container{
        max-width: 300px;
        width: 100%;
        height: 180px;
        margin: 0 auto;
        padding: 22px 10px;
    }
    .filter-conf .flt-ch-item__checkbox .label-box{
        font-size: 14px;
        line-height: 18px;
    }
    .filter-conf .main_flt-conf{
        -ms-flex-flow: wrap;flex-flow: wrap;
    }
    .filter-conf .main_flt-conf > div{
        width: 100%;
        margin-bottom: 30px;
    }
    .filter-conf .main_flt-conf > div:first-child{
        padding-right: 5px;
    }
    .filter-conf .main_flt-conf > div:nth-child(2){
        padding-left: 5px;
    }
    .filter-conf .main_flt-conf > div:first-child,
    .filter-conf .main_flt-conf > div:nth-child(2){
        width: 50%;
    }
    .filter-conf .main_flt-conf > div:last-child{
        margin-bottom: 0;
    }
    .filter-conf .main_flt-conf > div:last-child .flt-title{
        display: none;
    }
    .filter-conf .main_flt-conf ul{
        margin-right: 0;
        min-width: 100%;
    }
    .filter-conf .flt_type .radio {
        margin-right: 8px;
        margin-bottom: 8px;
    }
    .filter-conf .flt_type .radio > label{
        font-size: 15px;
        letter-spacing: 0.11px;
        line-height: 20px;
        border-width: 2px;
    }
    .filter-conf .flt-title{
        margin-left: 0;
        font-size: 13px;
    }
    .time_todone > div:last-child > article.descr{
        font-size: 16px;
    }
    .time_todone > div:last-child > article.descr p:last-child{
        margin-bottom: 0;
    }
    .time_todone > div:first-child .title{
        max-width: 290px;
        margin: 0 auto;
        font-size: 24px;
        line-height: 24px;
    }
    .time_todone > div:first-child .title > span {
        margin-left: 90px;
        width: 150px;
    }
    .time_todone > div{
        width: 100%;
        padding: 30px 15px;
    }
    .banner_main.banner_main_2 .notes{
        font-size: 16px;
        margin: 20px 0 0;
    }
    .banner_main.banner_main_2 .serial-proiz{
        width: calc(100% + 15px);
    }
    .banner_main.banner_main_2 .serial-proiz article.serial-proiz_descr{
        padding: 8px 10px;
        font-size: 16px;
    }
    .banner_main.banner_main_2 .serial-proiz .serial-proiz_title{
        font-size: 12px;
        padding: 8px 10px;
    }
    .banner_main.banner_main_2 .banner_part.img-part::after {
        content: '';
        position: absolute;
        top: 25px;
        left: 50%;
        max-width: 290px;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 90px;
        z-index: 10;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    .banner_main.banner_main_2 .banner_part.img-part {
        margin-bottom: 45px;
    }
    .banner_main.banner_main_2 .banner_part article{
        font-size: 14px;
    }
    .banner_main.banner_main_2 .title {
        line-height: 24px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    .banner_main.banner_main_2{
        padding: 30px 0 !important;
    }
    .how_to_order_page .banner_main {
        padding: 15px 0 50px;
    }
    .selecter {
        max-width: 100% !important;
    }
    .selecter-selected{
        font-size: 12px;
        line-height: 14px;
        padding: 5px 10px;
        height: 28px;
    }
    .selecter-item {
        font-size: 12px;
        padding: 5px 10px;
        color: #666666;
    }
    .accept-box_inner .accept-box{
        font-size: 12px;
        line-height: 18px;
    }
    .datapicker {
        background: #fff url(../images/icons/calendar_icon.png) no-repeat calc(100% - 10px) center / 14px;
    }
    .timepicker {
        background: #fff url(../images/icons/time_icon.png) no-repeat calc(100% - 10px) center / 14px;
    }
    .graphics-gallery .gallery_inner .slick-slide img {
        max-width: 284px;
    }
    .product_page .aside{
        margin-bottom: 10px;
    }
    .product_page .breadcrumb + .wrapper {
        margin-bottom: 20px;
    }
    .product_page .main_content{
        margin-bottom: 5px;
    }
    .graphics-gallery .title{
        margin-bottom: 20px;
        font-size: 16px;
    }
    .product_page .aside {
        margin-right: 0;
        margin-left: 0;
        margin-top: 0;
    }
    .product_page .main_content {
        width: 100%;
    }
    .product_page .main_img{
        min-height: auto;
        padding-bottom: 60%;
    }
    .product_page .page_title{
        font-size: 24px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
    }
    .slider-bunner img{
        position: static;
        display: block;
        margin: 15px auto 30px;
        -webkit-transform: none;
        transform: none;
    }
    .header {
        padding: 12px 0;
        height: 80px;
    }
    .header .main_nav .sub-menu{
        top: 80px;
        left: 0;
        height: calc(100vh - 81px);
        overflow-y: auto;
        max-width: 100vw;
    }
    .header .main_nav .sub-menu > li{
        width: 100%;
        margin-right: 15px;
        margin-bottom: 5px;
    }
    .slider-bunner .swiper-slide {
        padding: 20px 0;
    }
    .slider-bunner .banner-title h2{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .slider-bunner .banner-title p{
        font-size: 24px;
        line-height: 32px;
        max-width: 100%;
    }
    .banner_btn {
        width: 120px;
        height: 40px;
        line-height: 46px;
        font-size: 24px;
    }
    .banner_main {
        padding: 50px 0;
    }
    .banner_main .wrapper{
        -ms-flex-wrap: wrap;flex-wrap: wrap;
    }
    .banner_main .banner_part {
        width: 100%;
    }
    .banner_main .banner_part:first-child{
        margin-bottom: 50px;
    }
    .banner_main .banner_part > img{
        max-width: 170px;
    }
    .banner_main .banner_part h2{
        font-size: 24px;
        line-height: 32px;
    }
    .banner_main .banner_part article{
        font-size: 14px;
        line-height: 20px;
        text-align: left;
        padding-right: 15px;
    }
    .footer {
        padding: 15px 0;
        text-align: center;
        font-size: 12px;
    }
    .footer .logo > img {
        max-width: 90px;
    }
    .footer .footer_inner > div {
        margin-bottom: 15px;
    }
    .footer .footer_inner > div:last-child{
        margin-bottom: 0;
    }
    .sub-footer{
        height: auto;
        padding: 15px 0;
        font-size: 10px;
    }
    .sub-footer small{
        font-size: 10px;
    }
    .sub-footer nav > a{
        font-size: 10px;
        margin-bottom: 3px;
    }
    .sub-footer .wrapper > div {
        padding: 0;
        margin-bottom: 10px;
    }
    .sub-footer .wrapper > div:last-child{
        margin-bottom: 0;
    }
    .page_title {
        font-size: 24px;
        line-height: 24px;
        margin: 20px 0 15px;
    }
    .contacts_data .contacts_item {
        width: 100%;
        padding-right: 0;
        margin-bottom: 35px;
    }
    .contacts_data .contacts_item:last-child{
        margin-bottom: 0;
    }
    .contacts_map {
        min-height: 320px;
        height: 320px;
        overflow: hidden;
    }
    .btns_list {
        margin: 15px 0;
    }
    .btns_list > a{
        width: 100%;
        margin:0;
        max-width: 100%;
    }
    .question_page {
        position: relative;
    }
    .aside{
        margin-top: 60px;
    }
    .question_page .page_title{
        position: absolute;
        top: 60px;
        text-align: center;
        width: calc(100% - 30px);
    }
    .aside,
    .main_content{
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .cart {
        position: absolute;
        top: 0;
        right: 15px;
        width: 135px;
    }
    .cart > .title{
        width: calc(100% - 80px);
        font-size: 16px;
        line-height: 16px;
        padding: 12px;
    }
    .cart > .cart_cnt {
        width: 60px;
        padding: 11px 5px;
        font-size: 18px;
        line-height: 36px;
    }
    .catalog_page .aside{
        width: 100%;
        margin-right: 0;
    }
    .catalog_page .main_content{
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
    .btns_list.single > a{
        max-width: 290px;
    }
    .prod_list {
        margin: 0;
    }
    .prod_list.greed .prod_item .title{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .prod_list.greed .prod_item .info span{
        font-size: 11px;
    }
    .prod_list.greed .prod_item .img_prev {
        width: 100%;
        background-size: contain !important;
    }
    .prod_list.greed .prod_item {
        width: 100%;
        min-height: auto;
        height: auto;
    }
    .prod_list.greed .prod_item .info {
        width: 100%;
        margin: 0;
    }
    .prod_list.greed .prod_item .info .btns{
        width: 100%;
    }
    .catalog_page .page_subtitle{
        font-size: 20px;
        line-height: 20px;
    }
}