* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif
}

a {
    text-decoration: none;
    outline: 0
}

input {
    outline: 0;
    -webkit-appearance: none;
}
button {
    -webkit-appearance: none;
}
ol,
ul {
    margin: 0;
    padding: 0
}
.d-block {
    display: block !important;
}
html {
    min-height: 100%;
}
html.mpf-show {
    overflow: inherit !important;
    margin-right: 0 !important;
}
body {
    color: #000;
    min-height: 100%;
}

img {
    max-width: 100%
}

div.bx-auth{
    margin: 0 auto;
}
.container:after,
.container:before {
    content: " ";
    display: table
}

.container:after {
    clear: both
}

.clearfix:after,
.clearfix:before {
    content: " ";
    display: table
}

.clearfix:after {
    clear: both
}

.w-100 {
    width: 100% !important;
}
.w-auto {
    width: auto !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.mt-50 {
    margin-top: 50px !important;
}
 
@media only screen and (max-width: 767px){
    .mt-0-sm {
        margin-top: 0 !important;    
    }
    
}

.mr-10 {
    margin-right: 10px;
}
.pr-40 {
    padding-right: 40px !important; 
}
.ml-0 {
    margin-left: 0 !important;
}
.d-flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.justify-space-between {
    justify-content: space-between;
}
.align-items-center {
    -ms-align-items: center;
    align-items: center;
}
.mobile-only {
    display: none;
}
.desktop-only {
    display: block;
}
.mb-30 {
    margin-bottom: 30px;
}
.text-nowrap {
    white-space: nowrap;
}
.transparent {
    background-color: transparent !important;
}
.hidden {
    display: none
}
.ico {
    display: inline-block;
}
.ico-mobile {
    width: 24px;
    min-width: 24px;
    height: 37px;
    background: url(../img/mobile.svg) 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}
.ico-mail {
    width: 32px;
    min-width: 32px;
    height: 26px;
    background: url(../img/mail.svg) 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
}
.ico-whatsapp {
    width: 26px;
    min-width: 26px;
    height: 26px;
    background: url(../img/whatsapp.svg) 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}
.btn {
    display: inline-block;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    font-family: 'Open Sans', sans-serif;
    padding: 14px 15px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.btn_blue {
    background: #5F7CED;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .25);
    color: #fff !important
}

.btn_blue:hover {
    background: #4866D9
}

.btn_submit {
    border: none;
    cursor: pointer
}
.btn_error-message {
    border: 2px solid #C4C4C4;
    box-sizing: border-box;
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    color: #C4C4C4;
    padding: 14px 61px;
    margin-left: 18px;
}
.btn_error-message:hover {
    box-shadow: 0px 4px 7px rgba(0, 0, 0, 0);
}
.btn_gray-to-blue {
    display: inline-block;
    height: 52px;
    line-height: 52px;
    background: #F2F2F4;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    font-weight: normal;
    font-size: 16px;
    padding: 0 35px;
    color: #5F7CED;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    text-align: center;
}
.btn_gray-to-blue:hover {
    background: #5F7CED;
    color: #fff;
}

.list-group-button {
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none !important;
}
.list-group-button li {
    padding: 20px 16px 0 0 !important;
    display: inline-block;
}
.list-group-button li:last-child {
    padding-right: 0;
}
.list-group-button li:before {
    display: none !important;
}
.list-group-button .btn_gray-to-blue {
    min-width: 150px;
    white-space: nowrap;
}

.page-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden
}

.page-content {
    position: relative;
    padding-top: 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.page-content_border {
    border-bottom: 1px solid #DDDFE5;
    padding-bottom: 70px
}

.dropdown-wrapper {
    position: relative
}

.dropdown-list {
    visibility: hidden;
    opacity: 0;
    height: 0;
    display: none;
    position: absolute;
    top: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    padding-top: 9px;
    list-style-type: none;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    z-index: 500
}

.dropdown-wrapper.open .dropdown-list {
    visibility: visible;
    display: block;
    opacity: 1;
    height: auto
}

.dropdown-list_profile {
    width: 196px
}

.dropdown-list_cities {
    width: 166px
}

.dropdown-list:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #979DB1;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.dropdown-li {
    background-color: #979DB1
}

.dropdown-link {
    display: block;
    font-size: 14px;
    color: #fff;
    padding: 10px 18px;
    position: relative
}

.dropdown-link:after {
    content: '';
    display: block;
    width: calc(64%);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #B6BBD1
}

.dropdown-li:last-child .dropdown-link:after {
    content: none
}

.dropdown-link:hover {
    background-color: #5F7CED;
    color: #fff
}

.dropdown-link:hover:after {
    background-color: #5F7CED
}




@media (max-width: 1250px) {
    .header__info .ww_box_select_geocity {
        display: block;
    }
}
@media (max-width: 991px) {
    .header__info .ww_box_select_geocity {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}




.ww_box_select_geocity_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;    
}

.choose-city__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;    
}
.profile-links {
    display: inline-block;
    margin-left: 17px;
}

.profile-links__text {
    cursor: pointer;
    padding-bottom: 5px;
    background-image: url(../img/profile_icon.svg);
    background-repeat: no-repeat;
    background-position: left 3px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 18px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.profile-links__text:hover {
    color: #5F7CED
}





.main-menu__item:last-child {
    margin-right: 0
}




.inner-search__form {
    position: relative;
    padding-top: 25px;
    width: 100%;
}
.inner-search__form-input {
    display: block;
    outline: 0;
    background-color: #fff;
    border: 2px solid #000;
    box-shadow: inset 0 1px 2px rgb(0 25 64 / 33%);
    border-radius: 3px;
    height: 37px;
    line-height: 37px;
    max-width: 100%;
    width: 240px;
    background-image: url(../img/search-loop_icon.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    padding-right: 50px;
    padding-left: 12px;
    margin: 0 auto;
}

/* .main-content {
    padding-top: 10px
} */

.main-news__link {
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    text-decoration: underline;
    text-decoration-color: transparent;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #5F7CED;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 25px;
}

.main-news__link:hover {
    text-decoration-color: #5F7CED
}

.main-content__text {
    padding-bottom: 20px
}

.main-content__text:after,
.main-content__text:before {
    content: " ";
    display: table
}

.main-content__text:after {
    clear: both
}

.main-content__text-col {
    margin-top: 20px;
    float: left;
    color: #545454
}

.main-content__text-col a {
    color: #5F7CED
}

.main-content__text-col .link_underline {
    text-decoration: underline
}

.main-content__text-col_first {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    width: 450px;
    max-width: 100%;
    margin-right: 39px
}

.main-content__text-col_second {
    font-size: 12px;
    line-height: 19px;
    width: 655px;
    max-width: 100%
}


.button-to-shop {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px
}

.button-to-shop__link {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .25);
    border-radius: 3px;
    background-color: #5F7CED;
    padding: 14px 97px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.button-to-shop__link:hover {
    background: #4866D9
}




/*старая карта*/
.main-offices__map {
    border-radius: 5px;
    width: 635px;
    border: 1px solid #D9DADF;
}
/* // */




/* // */



.slick-dots {
    bottom: -36px
}

.slick-dots li {
    margin-left: 10px;
    margin-right: 10px;
    height: auto;
    width: auto
}

.slick-dots li button {
    height: 3px;
    width: 70px;
    outline: 0;
    padding: 0;
    background: #CAD2D5;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.slick-dots li button:before {
    content: none
}

.slick-dots li.slick-active button {
    background: #5F7CED
}

.slick-dotted.slick-slider {
    margin-bottom: 20px
}

.main-offers {
    padding-top: 30px;
    padding-bottom: 20px
}


.main-quiz {
    background-color: #F5F7F9;
    padding-top: 15px;
    padding-bottom: 15px
}

.main-quiz__inner {
    display: flex;
    justify-content: center;
    align-items: center
}

.main-quiz__question {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #000;
    margin-right: 30px
}

.main-quiz__variants {
    position: relative;
    display: flex;
    justify-content: center;
    width: 470px;
    max-width: 100%;
    padding: 0px 25px 0px;
}

.main-quiz__variants:after,
.main-quiz__variants:before {
    content: '';
    width: 20px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    background-image: url(../img/question-border.svg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.main-quiz__variants:before {
    left: 0
}

.main-quiz__variants:after {
    right: 0;
    transform: rotate(180deg)
}

.main-quiz__variants-col {
    margin-right: 30px
}

.main-quiz__variants-col:last-child {
    margin-right: 0
}


.main-quiz__item-hidden-input {
    display: none
}

.main-quiz__item-input {
    display: inline-block;
    position: relative;
    width: 15px;
    height: 15px;
    border: 1px solid #C8C9CA;
    border-radius: 100%;
    margin-right: 5px;
    vertical-align: middle
}

.main-quiz__item-input:before {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.main-quiz__item-hidden-input:checked+.main-quiz__item-input:before {
    background-color: #5F7CED
}

.main-quiz__item-input-text {
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #545454;
    vertical-align: middle
}

.main-quiz__button {
    margin-left: 30px
}

.main-quiz__submit {
    display: inline-block;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 27px;
    text-align: center;
    width: 82px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../img/ok.png);
    -webkit-background-size: contain;
    background-size: contain;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    padding-right: 12px;
}

.main-quiz__submit:hover {
    opacity: .9
}

.main-quiz-basic__wrapper {
    display: flex;
    margin: 0 -15px;
}
@media (max-width: 991px){
    .main-quiz-basic__wrapper {
        display: block;
        margin: 0;
    }
}
.main-quiz-basic {
    background-color: #F5F7F9;
    padding: 28px 33px 40px;
    margin: 0 15px;
    width: 50%;
}
.main-quiz-basic_single {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 991px){
    .main-quiz-basic {
        width: 100%;
        margin: 0 0 20px;
    }
}
@media (max-width: 767px){
    .main-quiz-basic {
        padding: 25px 20px;
    }
}

.main-quiz-basic__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px){
    .main-quiz-basic__inner {
        display: block;
    }
}

.main-quiz-basic__question {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
}
@media (max-width: 767px){
    .main-quiz-basic__question {
        margin-bottom: 20px;
    }    
}

.main-quiz-basic__question span {
    display: block;
    width: min-content;
}
@media (max-width: 767px){
    .main-quiz-basic__question span {
        width: auto;
    }
}

.main-quiz-basic__variants {
    position: relative;
    display: flex;
    max-width: 100%;
    align-items: center;
}
@media (max-width: 767px){
    .main-quiz-basic__variants {
        display: block;
    }
}

.main-quiz-basic__variants:before,
.main-quiz-basic__variants:after {
    display: block;
    content: '';
    width: 20px;
    height: 140px;
    margin-left: 30px;
    margin-right: 30px;
    min-width: 20px;
}
.main-quiz-basic__variants:before {
    background: url(../img/brace-l.png) no-repeat 0 0;
    background-size: contain;
}
.main-quiz-basic__variants:after {
    background: url(../img/brace-r.png) no-repeat 0 0;
    background-size: contain;
}
@media (max-width: 767px){
    .main-quiz-basic__variants:before,
    .main-quiz-basic__variants:after {
        display: none;
    }
}

.main-quiz-basic__variants-col {
    /*width: 50%;*/
    margin-right: 30px;
}
@media (max-width: 767px){
    .main-quiz-basic__variants-col {
        width: 100%;
        margin-right: 0;
    }    
}

.main-quiz-basic__variants-col:last-child {
    margin-right: 0;    
}

.main-quiz-basic__item {
    cursor: pointer;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.main-quiz-basic__item:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px){
    .main-quiz-basic__item:last-child {
        margin-bottom: 13px;
    }
}
.main-quiz-basic__item-hidden-input {
    display: none
}

.main-quiz-basic__item-input {
    position: relative;
    width: 18px;
    min-width: 18px;
    height: 18px;
    border: 1px solid #C8C9CA;
    border-radius: 100%;
    margin-right: 5px;
}

.main-quiz-basic__item-input:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}
.main-quiz-basic__item-hidden-input:checked+.main-quiz-basic__item-input {
    background: #617FEA;
}
.main-quiz-basic__item-hidden-input:checked+.main-quiz-basic__item-input:before {
    background-color: #fff;
}

.main-quiz-basic__item-input-text {
    font-size: 12px;
    line-height: 16px;
}

.main-quiz-basic__submit {
    display: inline-block;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    line-height: 34px;
    text-align: center;
    width: 102px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../img/ok.png);
    -webkit-background-size: contain;
    background-size: contain;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    padding-right: 12px;
}
.main-quiz-basic .vote-note-box.vote-note-note {
    margin-top: 20px;
}
.main-quiz-quiz__btn:hover {
    opacity: .9
}
.button-more-quiz {
    padding: 35px 0;
    text-align: center;
}
@media (max-width: 991px){
    .button-more-quiz {
        padding-top: 0;
    }
}
.button-more-quiz__btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .25);
    border-radius: 3px;
    background-color: #5F7CED;
    padding: 14px 18px 14px 45px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}
.button-more-quiz__btn:after {
    background: url(../img/arrow-right.svg) no-repeat 0 50%;
    background-size: contain;
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 20px;
}
.button-more-quiz__btn:hover {
    background: #4866D9
}


.header-mobile,
.search-mobile {
    display: none
}
.header-mobile__description a {
    color: #545454;
}
.breadcrumbs {
    list-style-type: none;
    padding-bottom: 0px;
}

.breadcrumbs__item {
    display: inline-block;
    position: relative;
    font-size: 12px;
    line-height: 1.4;
    padding-right: 25px;
    margin-bottom: 10px
}

.breadcrumbs__link {
    color: #666E6F
}

.breadcrumbs__link:after {
    content: '';
    display: block;
    width: 6px;
    height: 9px;
    background-image: url(../img/breadcrumb-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%)
}

.page-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4;
    color: #000;
    margin: 15px 0
}

.page-title_catalog {
    display: inline-block
}

.article {
    padding-top: 8px;
    padding-bottom: 25px;
}
.article__body {
    display: flex;
}
.article__date {
    margin-bottom: 10px;
}

.article__image img {
    display: block;
    height: auto;
}

.article__content {
    background-color: #fff;
    font-size: 16px;
    line-height: 1.6;
    color: #545454;
    padding-left: 40px;
    padding-top: 27px;
}
.article__aside {
    width: 320px;
    min-width: 320px;
}
.article__content_without-image {
    margin-top: 0;
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
}

.article__content p {
    margin-bottom: 20px
}
.article__content h2 {
    padding: 8px 0;
    font-size: 24px;
    line-height: 33px;
    color: #000
}

.article__content h3 {
    font-size: 18px;
    color: #000
}

.article__content ul,
.manufacturer-page__prod ul {
    list-style-type: none;
    padding-left: 22px;
    margin: 10px 0 40px
}

.article__content ul li,
.manufacturer-page__prod ul li {
    color: #545454;
    position: relative;
    padding-left: 14px
}

.article__content ul li:before,
.manufacturer-page__prod ul li:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: #5F7CED;
    position: absolute;
    top: 12px;
    left: 0
}

.article__content ol,
.manufacturer-page__prod ol {
    padding-left: 37px
}

.article__content ol li,
.manufacturer-page__prod ol li {
    font-size: 14px;
    line-height: 25px;
    color: #545454
}

.secondary-page .container {
    width: 1300px
}

.secondary-page .page-content {
    padding-top: 15px
}

.secondary-page .header {
    padding-bottom: 20px
}
.secondary-page .header__right {    
    max-width: 690px;
}

.secondary-page .header__description {
    padding-top: 0;
}
.secondary-page .header__description-bottom {
    padding-top: 0;
}
.secondary-page .header__description-link {
    font-size: 13px;
    font-weight: 600;
    line-height: 19px
}
.table-block {
    padding: 40px 0
}

.table-block__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 41px
}

.table-block__body {
    margin-top: 35px
}

.table-block table {
    width: 100%;
    border-spacing: 0 0
}

.table-block table thead {
    background: #F3F3F5
}

.table-block table thead tr {
    border: none
}

.table-block table thead th {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    vertical-align: middle;
    padding: 13px 10px 15px 27px;
    text-align: left
}

.table-block table tbody tr:nth-child(even) td {
    background: #F3F3F5
}

.table-block table tbody td {
    font-size: 16px;
    line-height: 22px;
    color: #545454;
    padding: 17px 10px 14px 27px;
    vertical-align: middle
}

.faq-block {
    padding: 40px 0
}

.faq-block__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    color: #000
}

.faq-block__body {
    margin-top: 30px;
    max-width: 800px;
}

.faq-block__item {
    border-bottom: 1px solid #C8C9CA;
    padding: 33px 0px 35px 0px;
    position: relative;
    cursor: pointer
}

.faq-block__item:last-child {
    border-bottom: none
}

.faq-block__item:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0px;
    top: 33px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    background: url(../img/arr-blue-down.svg);
}

.faq-block__item_opened:before {
    background-color: transparent;
    transform: rotate(180deg)
}

.faq-block__item-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #3A5BDB;
    padding-left: 40px;
    padding-bottom: 0;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    position: relative;
    z-index: 1;
}

.faq-block__item-content {
    font-size: 16px;
    padding-left: 40px;
    line-height: 20px;
    color: #000;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.faq-block__item_opened .faq-block__item-content {
    max-height: 9999px;
    position: relative;
}
.faq-block__item_opened .faq-block__item-content:before {
    position: absolute;
    left: 0px;
    top: 10px;
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: #000;
}

.faq-block__item_opened .faq-block__item-title {
    padding-bottom: 13px;
}

.faq-block__item_opened:after {
    background-color: transparent;
    transform: rotate(90deg)
}

.pagination {
    list-style-type: none;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0 !important;
}
@media only screen and (max-width: 767px){
    .pagination {
        justify-content: center;
    }
}
.pagination li {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}
.pagination li:first-child {
    margin-left: 0;
}
@media only screen and (max-width: 767px){
    .pagination li:first-child {
        margin-left: 5px;
    }
}

.pagination li:before {
    display: none !important;
}
.pagination__item {
    margin: 0 5px;
    font-size: 14px !important;
    line-height: 19px !important;
    color: #545454 !important;    
}

.pagination__link,
.link.pagination-list__item {
    display: block;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    font-size: 14px !important;
    line-height: 19px !important;
    color: #545454 !important;
}
.pagination__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 2px;
}
.pagination__link:hover {
    color: #5F7CED !important;
    background: #E4E4E9 !important;    
}
.pagination__link-current {
    background: #E4E4E9 !important;
    color: #000 !important;
}
.pagination__link-current:hover {
    color: #000 !important;
    cursor: default;
} 
.pagination__link-prev,
.pagination__link-next {
    background: transparent;
    border: 1px solid #BEBEBE;
}
.pagination__link-prev:hover,
.pagination__link-next:hover {
    border: 1px solid #E4E4E9;
}
.pagination__link-prev:hover svg,
.pagination__link-next:hover svg {
    fill: #5F7CED;
}

.pagination__link-prev svg {
    -moz-transform: rotate(180deg); /* Для Firefox */
    -ms-transform: rotate(180deg); /* Для IE */
    -webkit-transform: rotate(180deg); /* Для Safari, Chrome, iOS */
    -o-transform: rotate(180deg); /* Для Opera */
    transform: rotate(180deg);    
}
.pagination__link svg {
    fill: #545454;
}
.bg-page {
    background: #E5E5E5;
    padding-top: 22px;
    padding-bottom: 70px
}

.news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
    padding-top: 20px
}

.news-list__item {
    width: 293px;
    margin-left: 16px;
    margin-right: 16px;
    background-color: #fff;
    min-height: 408px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 30px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.news-list__item:hover {
    opacity: .9
}

.news-list__image {
    height: 272px;
    overflow: hidden
}

.news-list__image img {
    display: block;
    width: 100%
}

.news-list__date {
    color: #000;
    padding-top: 13px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 19px
}

.news-list__title {
    padding: 12px 10px 15px 15px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #000
}

.video-list {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 30px
}

.video-list__block-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #000
}

.video-list__body {
    margin-top: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.video-list__col {
    padding-left: 15px;
    padding-right: 15px;
    width: 324px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.video-list .video-list__col_double {
    width: 652px
}

.video-list__item {
    display: block;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.video-list__item:hover {
    opacity: .9
}

.video-list__image {
    background: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
    border-radius: 4px;
    overflow: hidden;
    position: relative
}

.video-list__image img {
    display: block;
    width: 100%
}

.video-list__image:before {
    content: '';
    display: block;
    background: url(../img/news-page/play_icon.png) center center no-repeat #FFF;
    box-sizing: border-box;
    border-radius: 2px;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 1
}

.video-list__date {
    font-size: 14px;
    line-height: 19px;
    color: #000;
    margin-top: 10px
}

.video-list__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    margin-top: 12px;
    padding-bottom: 10px
}

.ajax-loader {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px
}

.ajax-loader__btn {
    display: inline-block;
    background: #979DB1;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFF;
    padding: 14px 35px;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.ajax-loader__btn:hover {
    background: #5F7CED
}

.response-block {
    background: #5F7CED;
    color: #fff;
    padding-top: 48px;
    padding-bottom: 46px
}

.response-block__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 49px;
    text-align: center;
    float: left;
    margin-right: 60px
}

.response-block__description {
    float: left;
    font-size: 14px;
    line-height: 20px;
    margin-right: 59px;
    margin-top: 8px
}

.response-block__form {
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.response-block__input {
    display: block;
    outline: 0;
    background: #FFF;
    border-radius: 4px;
    border: none;
    line-height: 60px;
    font-size: 16px;
    color: #838A9F;
    padding-left: 24px;
    padding-right: 15px;
    width: 324px;
    margin-right: 11px
}

.response-block__submit {
    background: #FFF;
    border-radius: 4px;
    outline: 0;
    border: none;
    line-height: 60px;
    width: 175px;
    display: block;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #3A5BDB;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.response-block__submit:hover {
    background: #3A5BDB;
    color: #fff
}

.response-block input[type=text]::-moz-placeholder {
    font-size: 16px;
    color: #838A9F
}

.response-block input[type=text]::-webkit-input-placeholder {
    font-size: 16px;
    color: #838A9F
}

.response-block input[type=text]:-ms-input-placeholder {
    font-size: 16px;
    color: #838A9F
}

.response-block input[type=text]::-ms-input-placeholder {
    font-size: 16px;
    color: #838A9F
}

.response-block input[type=text]::placeholder {
    font-size: 16px;
    color: #838A9F
}

.table-wrapper {
    overflow-x: auto
}

.analytics-categories {
    display: flex;
    justify-content: space-between;
    padding-top: 30px
}

.analytics-categories__block {
    padding-left: 54px;
    background-repeat: no-repeat;
    background-position: left 3px;
    margin-bottom: 30px
}

.analytics-categories__block_work {
    background-image: url(../img/analytics/work.svg);
    min-height: 32px;
}

.analytics-categories__block_exposition {
    background-image: url(../img/analytics/exposition.svg)
}

.analytics-categories__block_people {
    background-image: url(../img/analytics/people.svg)
}

.analytics-categories__block_company {
    background-image: url(../img/analytics/company.svg)
}

.analytics-categories__block_services {
    background-image: url(../img/analytics/services.svg)
}

.analytics-categories__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #000
}

.analytics-categories__list {
    margin-top: 16px;
    list-style-type: none
}

.analytics-categories__link {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 32px;
    color: #000;
    text-decoration: underline;
    text-decoration-color: #9F9FBE;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.analytics-categories__link:hover {
    text-decoration-color: transparent
}
.analytics-categories__link_new {
    position: relative;
    vertical-align: middle;
}
.analytics-categories__link_new:after {
    content: '';
    background-image: url(../img/Novoe.png);
    display: block;
    width: 49px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    margin-bottom: 3px;
}
.analytics-categories__tag {
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 0 7px;
    margin-left: 5px
}

.analytics-categories__tag_new {
    color: #FFF;
    background: #5ED494
}

.analytics-categories__more {
    display: inline-block;
    margin-top: 15px;
    border: 1px solid #979DB1;
    border-radius: 50px;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #979DB1;
    text-transform: uppercase;
    padding: 6px 21px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.analytics-categories__more:hover {
    color: #E5E5E5;
    background-color: #979DB1
}

.single-slider {
    margin-top: 40px;
    margin-bottom: 20px
}
.single-slider .swiper-wrapper {
    -ms-align-items: center;
    align-items: center;
}
.single-slider__slide {
    width: 830px!important;
    max-width: 100%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}
.single-slider__slide img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.single-slider__description {
    font-size: 12px;
}
.single-slider__slide:not(.swiper-slide-active) {
    opacity: .2;
    transform: scale(.52) translateX(40%)
}

.single-slider__slide.swiper-slide-active+div {
    transform: scale(.52) translateX(-40%)
}

.single-slider .swiper-button {
    background-image: none;
    outline: 0;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0
}

.single-slider .swiper-button svg {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.single-slider .swiper-button svg:hover path {
    fill: #5F7CED
}

.single-slider .swiper-button svg:hover circle {
    fill: #fff
}

.single-slider .swiper-button circle,
.single-slider .swiper-button path {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.single-slider .swiper-button-prev {
    left: 8%
}

.single-slider .swiper-button-next {
    right: 8%
}

.single-slider-description {
    width: 830px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

.single-slider-description__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #000
}

.single-slider-description__content {
    padding-top: 20px;
    padding-left: 140px;
    font-size: 16px;
    line-height: 26px;
    color: #545454
}

.single-slider-description__content p {
    margin-top: 20px;
    margin-bottom: 20px
}

.page-description {
    font-size: 16px;
    line-height: 26px;
    color: #000
}

.manufacturers-block {
    padding: 30px 0
}

.manufacturers-block__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #000
}

.manufacturers-block__counter {
    display: inline-block;
    margin-left: 5px;
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    color: #979DB1
}

.manufacturers-block__list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px
}

.manufacturers-block__item {
    width: 20%;
    padding: 1.5px
}

.manufacturers-block__link {
    display: block;
    outline: 0;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.manufacturers-block__link:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
    opacity: .9
}

.manufacturers-block__image {
    height: 175px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.manufacturers-block__image img {
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain
}

.manufacturers-block__name {
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px
}

.manufacturer-page {
    width: 770px;
    max-width: 100%
}
.manufacturer-page__prod {
    padding-bottom: 30px;
}
.manufacturer-page__image {
    padding: 40px 0
}

.manufacturer-page__content {
    font-size: 16px;
    line-height: 26px;
    color: #545454
}

.manufacturer-page__content p {
    margin-bottom: 20px
}

.manufacturer-page__content a {
    font-weight: 700;
    color: #545454
}

.forum {
    border-bottom: 1px solid #E0E7F0
}

.forum__item {
    border-top: 1px solid #E0E7F0
}

.forum__form {
    display: none;
    margin-top: 15px
}

.forum__form.showed {
    display: block
}

.forum__form-textarea {
    display: block;
    background-color: #fff;
    border-radius: 0 0 3px 3px;
    padding: 15px 17px;
    min-height: 157px;
    width: 791px;
    max-width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #A7B6C1;
    resize: none;
    outline: 0;
    border: none
}

.forum__form-submit {
    outline: 0;
    background: #5F7CED;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .25);
    border-radius: 3px;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    padding: 14px 64px;
    cursor: pointer;
    margin-top: 20px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.forum__form-submit:hover {
    background: #4866D9
}

.forum__form-textarea::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 20px;
    color: #A7B6C1
}

.forum__form-textarea:-moz-placeholder {
    font-size: 16px;
    line-height: 20px;
    color: #A7B6C1
}

.forum__form-textarea::-moz-placeholder {
    font-size: 16px;
    line-height: 20px;
    color: #A7B6C1
}

.forum__form-textarea:-ms-input-placeholder {
    font-size: 16px;
    line-height: 20px;
    color: #A7B6C1
}

.forum__form-textarea::placeholder {
    font-size: 16px;
    line-height: 20px;
    color: #A7B6C1
}

.theme {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 25px 10px 35px;
    min-height: 110px;
    position: relative;
    cursor: pointer
}

.theme:before {
    content: '';
    display: block;
    width: 12px;
    height: 8px;
    background-image: url(../img/forum/item-toggler.svg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    top: 45%;
    left: 2px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.theme__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    width: 660px;
    max-width: 100%
}

.theme__author {
    font-size: 18px;
    line-height: 25px;
    color: #000
}

.theme__date {
    font-size: 18px;
    line-height: 25px;
    color: #000;
    margin-left: auto
}

.forum__content {
    overflow: hidden;
    max-height: 0;
    background: #FBFBFB;
    border-radius: 0 0 3px 3px;
    padding: 0 40px 0 60px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.comment {
    margin-top: 20px
}

.comment:first-child {
    margin-top: 0
}

.comment_reply {
    padding-left: 60px
}

.comment__top {
    padding-bottom: 10px
}

.comment__body {
    font-size: 16px;
    line-height: 22px;
    color: #000
}

.comment__bottom {
    padding-top: 20px;
    vertical-align: middle
}

.comment__rating {
    display: inline-block;
    margin-right: 18px;
    vertical-align: middle
}

.comment__rating-link {
    display: inline-block;
    width: 24px;
    height: 17px;
    background-image: url(../img/forum/rate-toggler.svg);
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    vertical-align: middle
}

.comment__rating-link_plus {
    background-position: left center;
    border-right: 2px solid #CBCFDC;
    padding-right: 10px
}

.comment__rating-link_minus {
    background-position: 10px center;
    padding-left: 8px;
    background-image: url(../img/forum/rate-toggler-down.svg)
}

.comment__counter {
    display: inline-block;
    font-size: 14px;
    line-height: 19px;
    color: #979DB1;
    padding-left: 20px;
    background-image: url(../img/forum/comment-counter.svg);
    background-repeat: no-repeat;
    background-position: left center;
    vertical-align: middle
}

.comment__author {
    display: inline-block;
    font-size: 14px;
    line-height: 19px;
    color: #979DB1;
    vertical-align: middle
}

.comment__author_reply {
    font-size: 14px;
    line-height: 19px;
    color: #44505E;
    background: #E0E7F0;
    border-radius: 12px;
    padding: 1.5px 12px;
    margin-right: 35px;
    position: relative
}

.comment__author_reply:after {
    content: '';
    display: block;
    background-image: url(../img/forum/reply-to.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 15px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%)
}

.comment__date {
    display: inline-block;
    font-size: 14px;
    line-height: 19px;
    color: #979DB1;
    vertical-align: middle
}

.comment__reply {
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    color: #979DB1;
    border-bottom: 1px dashed #979DB1;
    margin-left: 18px;
    vertical-align: middle
}

.comment__like {
    display: inline-block;
    background-image: url(../img/forum/like.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px;
    font-size: 14px;
    line-height: 17px;
    color: #979DB1
}

.comment__dotlink {
    position: relative;
    margin-right: 18px
}

.comment__dotlink:after {
    content: '';
    display: block;
    background: #A7B6C1;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -12px
}

.forum__item.opened .theme:before {
    transform: rotate(180deg)
}

.forum__item.opened .forum__content {
    max-height: 100%;
    padding-top: 40px;
    padding-bottom: 80px
}

.contacts-dropdown {
    width: 290px;
    max-width: 100%;
    position: relative;
}

.contacts-dropdown__current {
    background-color: #fff;
    border: 1px solid #E5E5E5;
    height: 50px;
    line-height: 48px;
    font-size: 15px;
    color: #000;
    padding-left: 20px;
    padding-right: 35px;
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.contacts-dropdown__current:after {
    content: '';
    display: block;
    width: 12px;
    height: 8px;
    background-image: url(../img/contacts-dropdown.svg);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.contacts-dropdown__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #E5E5E5;
    border-top: none;
    list-style-type: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 234px;
    overflow-y: auto;
}

.contacts-dropdown__item {
    padding: 8px 20px;
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid #E5E5E5;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none
}

.contacts-dropdown__item:last-child {
    border-bottom: none
}

.contacts-dropdown__item:hover {
    color: #fff;
    background-color: #3A5BDB
}

.contacts-dropdown__item_current {
    display: none
}

.contacts-dropdown.opened .contacts-dropdown__current:after {
    transform: translateY(-50%) rotate(180deg)
}

.contacts-dropdown.opened .contacts-dropdown__list {
    display: block
}

.contacts-block {
    margin-top: 30px
}

.contacts-block__tab {
    display: none
}

.contacts-block__tab.opened {
    display: block
}

.contacts-block__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #000
}

.contacts-block__inform {
    margin-top: 15px;
    font-size: 15px;
    line-height: 26px;
    color: #000;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.contacts-block__address {
    width: 340px;
    max-width: 100%;
    margin-right: 20px
}
.contacts-block__address a {
    color: #5F7CED;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    text-decoration: underline;
    text-decoration-color: transparent;
}
.contacts-block__address a:hover {
    text-decoration-color: #000;
}
.contacts-block__address b,
.contacts-block__work b {
    font-size: 18px
}
.contacts-block__work {
    width: 400px;
    max-width: 100%;
}
.contacts-block__links {
    position: relative;
}
.contacts-block__links:before {
    content: '';
    display: inline-block;
    width: 29px;
    height: 26px;
    background: url(../img/bag.svg) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    left: -50px;
    top: 0;
}
.contacts-block__links_info {
    margin-top: 25px;
}
.contacts-block__links_info:before {
    content: '';
    display: inline-block;
    width: 29px;
    height: 26px;
    background: url(../img/contacts-block__links_info.svg) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    left: -50px;
    top: 0;
}
.contacts-block__links a {
    color: #000;
    text-decoration: underline;
}

.contacts-block__list {
    list-style-type: none;
    margin-top: 30px;
}
.contacts-block__list a {
    color: #5F7CED;
}
.contacts-block__list li {
    margin: 0;
    position: relative;
    line-height: 1.4;
}
.contacts-block__list li:before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 9px;
    background: url(../img/li-mark.svg) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    margin-right: 5px;
    vertical-align: middle;
}
.contacts-block__list a {
    font-size: 13px;
}

.contacts-path {
    padding-top: 50px;
}

.contacts-path__tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

.contacts-path__tab {
    margin-right: 10px;
    background: #F2F2F2;
    border-radius: 4px 4px 0 0;
    height: 50px;
    font-size: 19px;
    line-height: 34px;
    color: #414141;
    padding-left: 30px;
    padding-right: 27px;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.contacts-path__tab span {
    display: inline-block;
    margin-left: 8px
}

.contacts-path__tab svg {
    display: inline-block;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.contacts-path__tab svg * {
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.contacts-path__tab:hover,
.contacts-path__tab_active {
    color: #fff;
    background: #5F7CED
}

.contacts-path__tab:hover svg *,
.contacts-path__tab_active svg * {
    fill: #fff
}

.contacts-path__content {
    padding-top: 20px;
    max-width: 1000px;
    width: 100%;
    padding-right: 20px
}
.contacts-path__content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 2;
    color: #545454;
}

.contacts-path__block {
    display: none;
    justify-content: space-between;
    font-size: 16px;
    line-height: 1.8;
}
.contacts-path__title {
    font-size: 16px;
}
.contacts-path__block p {
    color: #000;
}
.contacts-path__block  ul {
    padding-left: 20px;
    margin-bottom: 20px;

}
.contacts-path__block  ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 2;
}


.contacts-path__block.opened {
    display: block
}

.contacts-path__map {
    background-color: #fff;
    margin: 40px 0;
}

.contacts-path__map-block {
    height: 318px
}

.contacts-path__map-block img {
    display: block
}

.contacts-path__map-button {
    display: block;
    border: 1px solid #F2F2F2;
    border-radius: 0 0 4px 4px;
    line-height: 50px;
    text-align: center;
    cursor: pointer
}

.contacts-path__map-button span {
    display: inline-block;
    font-size: 15px;
    color: #414141;
    background-image: url(../img/to-map.svg);
    background-repeat: no-repeat;
    background-position: left center;
    line-height: 50px;
    padding-left: 24px
}


.contacts-path__reviews__title {
    font-size: 16px;
}

.contacts-path__reviews__date {
    font-size: 12px;
    line-height: 1.2;
    color: #848484;
}
.contacts-path__reviews__item {
    background: #fff;
    padding: 20px 25px 25px;
    margin-top: 30px;
}
.contacts-path__reviews__item h4 {
    font-size: 13px;
}
.contacts-path__reviews__item p {
    font-size: 13px;
    line-height: 20px;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 0;
}
.contacts-path__reviews__form textarea {
    width: 100%;
    height: 36px;
    background: #FFFFFF;
    border: 1px solid #C8C9CA;
    box-sizing: border-box;
    resize: none;
    margin: 0;
}
.contacts-path__reviews__form__name {
    color: #838A9F;
    font-size: 14px;
    line-height: 15px;
}
.contacts-path__reviews__form__row {
    margin-top: 15px;
}
.contacts-path__reviews__form__input {
    border: 1px solid #C8C9CA;
    width: 200px;
    max-width: 100%;
    height: 36px;
    margin-top: 10px;
}

.voting {
    border-top: 1px solid #E0E7F0;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.voting__column {

}

.voting__block {
    margin-top: 25px;
    padding-bottom: 25px;
    display: flex;
}
.voting__side {

}
.voting__side:first-child {
    border-right: 1px solid #D4D5D6;
    padding-right: 30px;
    text-align: right;
}
.voting__side:nth-child(2) {
    padding-left: 30px;
    width: 320px;
}
.voting__title {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: #000
}

.voting__description {
    margin-top: 12px;
    font-size: 12px;
    line-height: 20px;
    padding-bottom: 5px;
    color: #545454;
}



.voting__result {
    position: relative;
}

.voting__result-name {
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    vertical-align: bottom;
    padding-right: 5px;
    font-weight: bold;
}

.voting__result-count {
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    color: #545454;
    vertical-align: bottom
}

.voting__result-scale {
    padding-top: 5px;
    display: flex;
    align-items: flex-end
}

.voting__result-progress {
    background: #5F7CED;
    height: 6px;
    width: 100%
}

.voting__result-dots {
    height: 1px;
    margin-left: 16px;
    margin-right: 14px;
    width: 100%;
    overflow-x: hidden;
    position: relative
}

.voting__result-dots:before {
    content: '........................................................................................................................................................................................................................................';
    color: #C8C9CA;
    font-weight: 300;
    font-size: 18px;
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 14px;
    overflow: hidden
}

.voting__result-value {
    font-weight: 700;
    min-width: 42px;
    line-height: 14px;
    font-size: 12px;
    position: absolute;
    top: 8px;
    right: 0px;
    text-align: right;

}

.yandex-map {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0
}

.video-page {
    padding-top: 28px;
    margin-left: -15px;
    margin-right: -15px;
}

.video-page__item {
    display: inline-block;
    width: 33%;
    vertical-align: top;
    background: #FFF;
    overflow: hidden;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    margin-bottom: 40px;
    color: #000;
    position: relative;
    padding: 0 15px;
}

.video-page__item:hover .video-page__title {
    color: #3A5BDB;
    transition: all .25s;
}

.video-page__image {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.video-page__image:before {
    content: "";
    position: absolute;
    background-image: url(../img/play-youtube.svg);
    top: 50%;
    left: 50%;
    transform:translate(-50%, -50%);
    width: 71px;
    height: 71px;
}

.video-page__image:after {
    content: "";
    position: absolute;
    background: rgba(58, 91, 219, 0.3);
    background-size: 100px 100px;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .25s;
}

.video-page__item:hover .video-page__image:after {
    opacity: 1;
    transition: all .25s;
}

.video-page__image img {
    display: block;
    width: 100%
}

.video-page__date {
    padding-top: 9px;
    font-size: 14px;
    line-height: 19px
}

.video-page__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    margin-top: 15px;
    /*padding-left: 20px;*/
    /*padding-right: 15px*/
}

.video-page__announce {
    font-size: 14px;
    line-height: 20px;
    color: #545454;
    margin-top: 10px;
    /*padding-left: 20px;*/
    /*padding-right: 10px;*/
    font-family: Roboto, sans-serif
}

.mfp-video.mfp-bg {
    opacity: 0;
    background: #fff;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    transition: all .15s ease-out
}

.mfp-video.mfp-bg.mfp-ready {
    opacity: .79
}

.mfp-video.mfp-bg.mfp-removing {
    opacity: 0
}

.mfp-video.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    transition: all .15s ease-out
}

.mfp-video.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1
}

.mfp-video.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0
}

.mfp-video .mfp-close {
    background-image: url(../img/video/close.svg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 28px;
    height: 28px;
    color: transparent;
    padding-right: 0;
    right: 0
}

.catalog {
    padding-top: 12px;
    display: flex;
    justify-content: space-between
}

.catalog_detail {
    padding-top: 5px
}

.catalog_detail .catalog__aside {
    padding-top: 0;
    margin-top: -10px
}

.catalog-detail table {
    width: 100%;
    border-spacing: 0 0;
    font-style: initial;
    text-align: left;
}

.catalog-detail table::-webkit-scrollbar {
    display: none;
}
.catalog-detail table {
    display: block;
    overflow-x: auto;
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
    overflow-y: hidden;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-wrap: inherit;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
}
.catalog-detail table p {
    text-align: left !important;
}
.catalog-detail table caption {
    margin-bottom: 30px;
}
.catalog-detail table thead {
    background: #F3F3F5
}

.catalog-detail table thead tr {
    border: none
}

.catalog-detail table thead th,
.catalog-detail #HEAD td {
    font-weight: 700;
    vertical-align: middle;
    padding: 13px 10px 15px 20px;
    text-align: left
}

.catalog-detail table tbody tr td {
    background: #F3F3F5;
}
.catalog-detail table tbody tr:nth-child(even) td {
    background: #fff;
}

.catalog-detail table tbody td {
    font-size: 14px;
    line-height: 1.6;
    color: #545454;
    padding: 17px 10px 14px 20px;
    vertical-align: top;
    border: none;
}

.catalog__content {
    /* width: 980px */
}
.catalog__content iframe{
    margin: 0 auto;
    display: flex;
}
.catalog__content p {
    font-size: 16px;
    line-height: 1.6;
    color: #545454;
    margin: 20px 0;
}
.catalog__content ul {
    list-style-type: none;
    padding-left: 22px;
    margin: 10px 0 40px;
}
.catalog__content ul li {
    margin-bottom: 15px;
    color: #545454;
    position: relative;
    padding-left: 14px;
}
.catalog__content ul li:before{
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: #5F7CED;
    position: absolute;
    top: 11px;
    left: 0;
}
.catalog__aside {
    padding-top: 30px;
    padding-left: 37px;
    width: 290px
}

.catalog__category {
    padding-bottom: 38px
}

.catalog__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #000;
    padding-bottom: 2px
}

.catalog__list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5.5px;
    margin-right: -5.5px
}

.product-cat {
    display: block;
    width: 236px;
    min-height: 280px;
    outline: 0;
    background-color: #fff;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
    border-radius: 4px;
    margin-left: 5.5px;
    margin-right: 5.5px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000;
    padding-bottom: 20px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.product-cat:hover {
    opacity: .9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0)
}

.product-cat__image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.product-cat__name {
    padding-left: 13px;
    padding-right: 13px
}

.catalog-categories {
    list-style-type: none
}
.catalog-categories__item {
    margin-bottom: 15px;
}
.catalog-categories__link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    color: #000;
    text-decoration: underline;
    text-decoration-color: #9F9FBE;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.catalog-categories__link:hover {
    color: #3A5BDB;
    text-decoration-color: #3A5BDB
}

.catalog-categories__link_active {
    color: #3A5BDB;
    text-decoration: none
}
.catalog-links::-webkit-scrollbar, .video-categoties::-webkit-scrollbar {
    display: none;
}
.catalog-links {
    scrollbar-width: none;
    list-style: none;
    padding: 0;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: inline-flex;
    position: relative;
    z-index: 3;
    white-space: nowrap;
    overflow-x: scroll;
    overflow: -moz-scrollbars-none;
    overflow-y: hidden;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-wrap: inherit;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
    list-style-type: none;
    margin-left: 60px;
}

.catalog-links__item {
    display: inline-block;
    margin-right: 40px
}

.catalog-links__item:last-child {
    margin-right: 0
}

.catalog-links__link {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #000;
    text-decoration: underline;
    text-decoration-color: #CAD2D5;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.catalog-links__link:hover {
    color: #3A5BDB;
    text-decoration-color: #3A5BDB
}

.catalog-detail {
    padding-right: 16px
}
.catalog-detail img {
    height: auto;
}

.catalog-detail-tabs {
    background: #F3F3F5;
    padding: 0 18px
}

.catalog-detail-tabs__item {
    display: inline-block;
    margin-right: 30px
}

.catalog-detail-tabs__item:last-child {
    margin-right: 0
}

.catalog-detail-tabs__link {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    padding: 18px 0 15px;
    border-bottom: 3px solid transparent;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.catalog-detail-tabs__link:hover,
.catalog-detail-tabs__link_active {
    border-bottom: 3px solid #3A5BDB;
    text-shadow: 0 0 1px #3A5BDB;
    color: #3A5BDB;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text
}

.catalog-detail-banners {
    margin-top: 10px;
    display: flex
}

.catalog-detail-banners__main {
    width: 62%;
    height: 277px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative
}

.catalog-detail-banners__logo {
    position: absolute;
    right: 0;
    bottom: -19px;
    background-color: #fff;
    min-width: 315px;
    max-width: 100%;
    min-height: 76px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.catalog-detail-banners__logo img {
    display: block;
    max-width: 100%;
    object-fit: contain
}

.catalog-detail-banners__gallery {
    padding-left: 10px;
    width: 38%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between
}

.catalog-detail-banners__image {
    height: 100%;
    width: 49%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover
}

.catalog-detail-banners__image_2,
.catalog-detail-banners__image_3 {
    height: 134px;
    align-self: flex-end
}

.catalog-detail-content__article {
    padding-top: 35px;
    padding-left: 15%;
    padding-right: 16%;
    font-size: 14px;
    color: #545454;
    font-family: Roboto, sans-serif
}

.catalog-detail-content__article p {
    position: relative;
    padding-bottom: 20px
}

.catalog-detail-content__article p[big-letter] {
    margin-top: 20px
}

.catalog-detail-content__article p[big-letter]:before {
    content: attr(big-letter);
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 67px;
    color: #005C9F;
    position: absolute;
    right: 100%;
    top: -30px
}

.catalog-detail-content h2,
.catalog-detail-content h3,
.catalog-detail-content h4,
.catalog-detail-content h5,
.catalog-detail-content h6 {
    color: #000;
    font-family: 'Open Sans', sans-serif;
    margin: 5px 0
}

.catalog-detail-content h2 {
    font-size: 18px
}

.catalog-detail-content h3 {
    font-size: 17px
}

.catalog-detail-content h4,
.catalog-detail-content h5,
.catalog-detail-content h6 {
    font-size: 16px
}

.p_blue {
    font-size: 18px;
    line-height: 25px;
    color: #004388
}

#map-container,
#map-container-mobile {
    min-height: 10px
}
.contact-link {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    font-family: Roboto, sans-serif;
    padding-left: 35px;
    line-height: 25px;
    background-repeat: no-repeat;
    background-position: left center
}

.contact-link_phone {
    background-image: url(../img/detail/phone.svg)
}

.contact-link_mail {
    background-image: url(../img/detail/mail.svg)
}

.detail-contact {
    padding: 40px 0
}

.form {
    max-width: 540px
}

.form_detail {
    margin: auto
}
.form_subscribe {
    max-width: 300px;
}

.form__row {
    padding: 5px 0
}

.form__row_buttons {
    align-items: center;
    flex-wrap: wrap
}

.form__row_buttons>* {
    margin-right: 12px;
    margin-top: 12px;
}

.form__input {
    font-family: Roboto, sans-serif;
    border: 1px solid #CAD2D5;
    color: #838A9F;
    font-size: 16px;
    line-height: 22px;
    padding: 13px 15px;
    width: 100%
}

.form::-webkit-input-placeholder {
    color: #838A9F;
    font-size: 16px;
    line-height: 22px
}

.form:-ms-input-placeholder {
    color: #838A9F;
    font-size: 16px;
    line-height: 22px
}

.form::-moz-placeholder {
    color: #838A9F;
    font-size: 16px;
    line-height: 22px
}

.form:-moz-placeholder {
    color: #838A9F;
    font-size: 16px;
    line-height: 22px
}

.form__textarea {
    font-family: Roboto, sans-serif;
    border: 1px solid #CAD2D5;
    color: #838A9F;
    font-size: 16px;
    line-height: 22px;
    width: 100%;
    padding: 13px 15px;
    min-height: 107px;
    max-width: 100%;
    min-width: 100%
}

.form__submit {
    border: none;
    cursor: pointer;
    padding: 14px 5%;
    margin-right: 50px
}

.form__clear {
    font-family: Roboto, sans-serif;
    display: inline-block;
    color: #838A9F;
    font-size: 16px;
    line-height: 140%;
    cursor: pointer;
    border-bottom: 1px dotted #979DB1
}

.other-catalogs {
    padding-top: 10px;
    padding-bottom: 50px
}

.other-catalogs__title {
    color: #000;
    font-weight: 700;
    font-size: 30px;
    line-height: 41px
}

.other-catalogs__list {
    margin-top: 45px
}

.other-catalogs__item {
    width: 307px;
    min-height: 137px;
    height: auto;
    max-width: 100%;
    background: #E9F0F2;
    padding: 20px 5px 20px 20px;
    display: flex;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-transition: opacity .25s;
    -o-transition: opacity .25s;
    transition: opacity .25s
}

.other-catalogs__item:hover {
    opacity: .8
}

.other-catalogs__item-left {
    width: 66px;
    min-width: 66px;
    height: 94px;
    margin-right: 20px;
    overflow: hidden;
}

.other-catalogs__item-left img {
    height: auto
}

.other-catalogs__item-right {
    position: relative;
    padding-bottom: 25px
}

.other-catalogs__item-title {
    color: #3A5BDB;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px
}

.other-catalogs__item-lang {
    color: #929A9C;
    font-size: 12px;
    line-height: 14px
}

.other-catalogs__item-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-right: 13px
}

.other-catalogs__item-download {
    color: #000;
    font-size: 14px;
    line-height: 16px;
    background-image: url(../img/detail/download.svg);
    background-repeat: no-repeat;
    padding-left: 22px
}

.other-catalogs__item-info {
    color: #929A9C;
    font-size: 14px;
    line-height: 16px;
    min-width: 85px;
    display: flex;
    justify-content: space-between
}

.other-catalogs .swiper-buttons {
    position: absolute;
    width: 100px;
    top: 10px;
    right: 0;
    height: 16px
}

.other-catalogs .swiper-buttons__arrow {
    width: 16px;
    height: 16px;
    background-image: url(../img/detail/other-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    top: 0;
    margin-top: 0;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.other-catalogs .swiper-buttons__arrow:hover {
    opacity: .8
}

.other-catalogs .swiper-buttons__arrow_next {
    transform: rotate(180deg)
}

.sale-page__content {
    padding-top: 5px;
    padding-bottom: 30px;

}
.sale-page__inner {
    display: flex;
    justify-content: space-between;
}

.sale-page__left {
    /* padding-right: 34px;
    width: 76%; */
}
.sale-page__left .article__content {
    padding-right: 0;
}
.sale-page__right {
    width: 310px;
}
.sale-page__menu {
    width: 100%;
    max-width: 100%;
    padding: 15px 0 20px;
}
.sale-page__menu-list {
    list-style-type: none;
}
.sale-page__menu-item {
    padding-bottom: 13px;
}
.sale-page__menu-link {
    display: inline-block;
    color: #000000 !important;
    font-size: 16px;
    line-height: 20px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    text-decoration: underline;
    text-decoration-color: transparent;
}
.sale-page__menu-link:hover {
    color: #5F7CED !important;
    text-decoration-color: #5F7CED;
}
.sale-page__content-left {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    width: 510px;
    max-width: 100%;
}

.sale-page__content-right {
    font-size: 14px;
    line-height: 22px;
    color: #4A4A4A;
    margin-top: 10px;
    width: 700px;
    max-width: 100%;
}
.sale-page__content-right  a {
    color: #5F7CED;
}
.sale-page__content-right  p {
    margin-bottom: 10px;
}
.sale-steps__inner {
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    max-width: 100%;
}
.sale-page {
    padding-bottom: 40px;
}
.sale-steps__block {
    background: #FFF;
    padding: 25px 35px;
    position: relative;
}
.sale-steps__block:first-child:after {
    content: '';
    display: block;
    background-color: #F3F3F5;
    width: 1px;
    height: 70%;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}
.sale-steps__contact__city {
    font-weight: 700;
    font-size: 16px;
    min-height: 22px;
    color: #000;
    display: block;
}

.sale-steps__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #000;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 30px;
    height: 42px;
}
.sale-steps__title .ico {
    margin-right: 10px;
}

.sale-steps__contact {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #5F7CED;
    width: 100%;
    margin-top: auto;
}

.sale-steps__contact span {
    color: #5F7CED
}

.sale-steps__contact-description {
    font-size: 12px;
    color: #4A4A4A;
    width: 100%;
    font-weight: normal;
    margin-bottom: auto;
}

.sale-steps__text {
    color: #545454;
    font-size: 14px;
    line-height: 19px;
}

.sale-steps__info {
    padding: 30px 0 0px;
    color: #545454;
    font-size: 15px;
    line-height: 1.4
}

.sale-steps__block_phone {
    min-width: 520px;
}
.sale-steps__block_phone .select__result__wrapper {
    min-width: 250px;
    height: 37px;
    margin-bottom: 30px;
}
.sale-steps__block_phone__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.sale-steps__block_phone .select__result {
    height: 37px;
    line-height: 33px;
}
.sale-steps__block_phone .select__result:after {
    top: 16px;
}

.sale-steps__descr__right {
    width: 250px;
}
.sale-steps__block_mail .sale-steps__contact-description {
    font-size: 12px;
    line-height: 1.2;
    color: #A4A4A4;
    width: 100%;
    margin-bottom: auto;
    font-weight: normal;
}
.sale-order {
    background: #E5E5E5;
    padding: 60px 0 80px
}

.sale-order__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto
}
.sale-order__inner_left {
    margin-left: 0;
}
.sale-order__left {
    margin-top: 20px;
    width: 76%;
    padding-right: 34px;
}

.sale-order__right__wrapper {
    display: inline-block;
    margin-top: 20px;
}
.sale-order__right {
    background: #5F7CED;
    width: 310px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
    border-radius: 4px;
    padding: 34px 34px 55px;
    color: #fff;
    position: relative;
    height: 100%;
}

.sale-order__form {
    background: #FFF;
    border-radius: 4px;
    padding: 18px 50px 30px;
    box-shadow: 0px 0px 15px rgb(0, 0, 0, 0.2);
    border-radius: 6px;
    max-width: 650px;
    width: 100%;
    margin: auto;
    position: relative;
}
.sale-order__form:before {
    position: absolute;
    content: '';
    width: 100%;
    background: #5F7CED;
    height: 74px;
    left: 0;
    top: 0;
    border-radius: 6px 6px 0 0;
    z-index: 0;
}
.popup-choose-city .sale-order__form {
    padding: 0;
    box-shadow: none;
}

.sale-order__form-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.sale-order__form-row {
    padding-top: 30px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.sale-order__form-row_single {
    padding-top: 25px
}

.sale-order__form-col {
    width: 100%;
    max-width: 260px;
}

.sale-order__form-field {
    position: relative
}

.sale-order__form-field_error .sale-order__form-input {
    border: 1px solid #EE2E24
}

.sale-order__form-name {
    background-color: #fff;
    position: absolute;
    color: #A4A4A4;
    font-size: 10px;
    line-height: 22px;
    left: 11px;
    top: -11px;
    padding: 0 5px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    opacity: 0;
}

.sale-order__form-input {
    border: 2px solid #979DB1;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 22px;
    padding: 10px 9px;
    width: 100%
}

.sale-order__form-info {
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;

    color: #4A4A4A;
    margin-bottom: 7px
}

.sale-order__form-textarea {
    border: 2px solid #979DB1;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 22px;
    padding: 10px 9px;
    width: 100%;
    max-width: 100%;
    min-height: 86px;
    resize: none;
}

.sale-order__form-politics {
    color: #A4A4A4;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    margin-top: -8px;
}
.subscribe .sale-order__form-politics .sale-order__form-checkbox:before {
    top: 0;
}
.sale-order__form-politics a {
    color: #A4A4A4;
    font-size: 12px;
    line-height: 16px;
    text-decoration: underline
}

.sale-order__form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: relative;
    margin-right: 12px
}

.sale-order__form-checkbox:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #000000;
    z-index: 1
}

.sale-order__form-checkbox:checked:after {
    content: '';
    display: block;
    position: absolute;
    left: 1px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url("../img/checkbox-black.svg");
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2
}

.sale-order::-webkit-input-placeholder {
    color: #A4A4A4;
    font-size: 14px;
    line-height: 22px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.sale-order:-ms-input-placeholder {
    color: #A4A4A4;
    font-size: 14px;
    line-height: 22px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.sale-order::-moz-placeholder {
    color: #A4A4A4;
    font-size: 14px;
    line-height: 22px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.sale-order:-moz-placeholder {
    color: #A4A4A4;
    font-size: 14px;
    line-height: 22px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.sale-order__form-field.in-focus .sale-order__form-name {
    opacity: 1;
}
.sale-order .sale-order__form-field.in-focus input::-webkit-input-placeholder {
    color: transparent;
}
.sale-order .sale-order__form-field.in-focus input:-ms-input-placeholder {
    color: transparent;
}
.sale-order .sale-order__form-field.in-focus input::-moz-placeholder {
    color: transparent;
}
.sale-order .sale-order__form-field.in-focus input:-moz-placeholder {
    color: transparent;
}
.sale-order__form-error {
    color: #EE2E24;
    font-size: 10px;
    line-height: 22px;
    text-align: right;
    position: absolute;
    right: 0;
    top: 100%
}

.sale-order__right-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px
}

.sale-order__right-text {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    line-height: 20px;
    margin-top: 15px
}

.sale-order__right-bottom {
    position: absolute;
    bottom: 55px;
    left: 0;
    width: 100%;
    height: 225px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 34px;
    padding-right: 34px;
    background-image: url(../img/sale/form-right-image.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain
}

.sale-order__right-bottom:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-image: url(../img/sale/form-right-icon.png);
    width: 52px;
    height: 53px
}

.sale-order__right-info {
    width: 100%;
    color: rgba(255, 255, 255, .8);
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 17px
}

.sale-order__right-btn {
    width: 100%;
    background: #FFF;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .25);
    border-radius: 3px;
    color: #5F7CED;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: -15px;
    padding: 8.5px 0;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s
}

.sale-order__right-btn:hover {
    color: #fff;
    background: #4866D9
}

.more-sections-mobile {
    padding-bottom: 30px;
    background: #F5F7F9;
    display: none;
}

.catalog-detail__pdf {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.catalog-detail__pdf .other-catalogs__item {
    margin-bottom: 10px;
    max-width: 100%
}

.sale-advantages {
    padding-top: 65px;
    padding-bottom: 70px
}

.sale-advantages__inner {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px
}

.sale-advantages__block {
    display: flex;
    align-items: center;
    width: 294px;
    max-width: 100%;
    margin: 50px 15px 10px
}

.sale-advantages__block-img {
    margin-right: 24px
}

.sale-advantages__block-text {
    color: #545454;
    font-size: 14px;
    line-height: 22px
}

.sale-manufacturers {
    padding: 70px 0;
    background: #F5F7F9
}

.sale-manufacturers__inner {
    display: flex;
    justify-content: space-between
}

.sale-manufacturers__left {
    margin-top: 40px;
    width: 49%;
    color: #545454;
    font-size: 16px;
    line-height: 1.6;
}

.sale-manufacturers__left a {
    color: #5F7CED
}

.sale-manufacturers__right {
    margin-top: 40px;
    width: 42%
}

.sale-manufacturers__partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.sale-manufacturers__partner {
    min-width: 33.33%;
    margin-bottom: 50px
}

.sale-manufacturers__partner img {
    display: block
}

.sale-manufacturers__info {
    border-top: 1px solid #D0D0D0;
    padding-top: 28px;
    color: #545454;
    font-size: 16px;
    line-height: 26px
}

.sale-manufacturers__info a {
    color: #5F7CED
}

.sale-offices {
    padding-top: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #DDDFE5
}

.sale-offices__description {
    margin-top: 20px;
    color: #545454;
    text-align: center;
    font-size: 16px;
    line-height: 26px
}


.sale-page-main .sale-steps__inner {
    width: 100%;
}
.sale-page-main .sale-page__content {
    padding-top: 0;
}
.sale-page-main .sale-page__content-right {
    width: 100%;
}
.sale-page-main .sale-page__content-left {
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
}


.search {
    position: relative;
    margin: 15px 0px;
}
.search__field {
    border: none;
    display: block;
    outline: none;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding-left: 15px;
    padding-right: 70px;
    font-size: 14px;
    line-height: 19px;
    color: #000;
}
.search__clear {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/x.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 14px;
    height: 14px;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.search__clear.show {
    opacity: 1;
}
.search__submit {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 22px;
    height: 22px;
    border: none;
    background-color: transparent;
    color: transparent;
    cursor: pointer;
}
.search-count {
    font-size: 14px;
    line-height: 19px;
    color: #666666;
}

.basket__table {
    width: 100%;
    border-spacing: 0px;
    border-collapse: collapse;
}
.main-catalog__table {
    font-size: 12px;
}
.basket__table-head {
    background-color: #979DB0;
    color: #fff;
}
.main-catalog__table td {
    padding-top: 10px;
    padding-bottom: 10px;
}
.basket__table td {
    padding: 15px 10px;
}
.basket__table-head td {
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}
.btn--basket__table {
    margin-left: 25px;
    padding: 9px 25px 10px;
    font-size: 11px;
    line-height: 1;
}
.main-catalog__table td:first-child {
    padding-left: 10px;
    white-space: nowrap;
}
.main-catalog__table .basket__table-head-vendor {
    min-width: 82px;
}
.basket__table-head td span {
    font-weight: normal;
    font-size: 10px;
}
.main-catalog__table .basket__table-head-price {
    min-width: 65px;
}
.basket__table-head-stock {
    text-align: center;
}
.main-catalog__table .basket__table-head-total {
    min-width: 96px;
}
.basket__table-item {
    border-top: 1px solid #C8C9CA;
    background-color: #fff;
    position: relative;
}
.main-catalog__table .basket__table-product {
    max-width: none;
}
.basket__table td:first-child {
    padding-left: 20px;
}
.main-catalog__table td:first-child {
    padding-left: 10px;
    white-space: nowrap;
}
.main-catalog__table .basket__table-item td {
    vertical-align: middle;
}
.basket__table-link {
    color: #5F7CED;
}
.search-result {
    padding: 15px 0px;
    margin-top: 15px;
}
.search-result__title {
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}
.search-result__body {
    padding-top: 15px;
}
.search-result .product-cat {
    width: 202px;
    min-height: 240px;
}
.search-result  .product-cat__image {
    height: 180px;
}
.search-result__table {
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;  
    overflow-x: auto;
    scrollbar-width: none;
    overflow: -moz-scrollbars-none;
    overflow-y: hidden;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-wrap: inherit;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;      
}
@media only screen and (max-width: 767px){
    .search-result__table {
        display: block;
    }
}
.search-result__table::-webkit-scrollbar {
    display: none;
}

.search-result__table th,
.search-result__table td {
    text-align: left;
    padding: 10px 20px !important;
    font-size: 13px;
    line-height: 18px;
} 
.search-result__table th {
    color: #545454;
    font-weight: normal;
    border-bottom: 1px solid #C8C9CA;
    white-space: nowrap;
}
.search-result__table td {
    border-bottom: 1px solid #C8C9CA;
    vertical-align: middle;
    color: #000;
}
.search-result__table a {
    color: #000 !important;
}
.search-result__table img {
    max-height: 330px;
}
.search__more {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search__more-title {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #5F7CED;
    font-weight: normal;
    text-decoration: underline;
    text-decoration-color: #5F7CED;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.product-cat_more {
    background-color: transparent;
    padding-bottom: 0;
    border: 1px solid #C8C9CA;
}
.product-cat_more:hover {

}
.product-cat_more:hover .search__more-title {
    text-decoration-color: transparent;
}
.pages-result {
    background-color: #fff;
    padding: 33px 38px;
    display: flex;
    justify-content: space-between;
}
.pages-result__list {
    list-style-type: none;
    width: 48%;
}
.pages-result__item {

}
.pages-result__link {
    font-size: 16px;
    line-height: 32px;
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #9F9FBE;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.pages-result__link:hover {
    text-decoration-color: transparent;
}
.search-result .manufacturers-block__item {

}
.manufacturers-block__link_more {
    background-color: transparent;
    border: 1px solid #CBCFDC;
}
.manufacturers-block__link_more:hover .search__more-title {
    text-decoration-color: transparent;
}
.search-result .other-catalogs__item {
    background-color: #fff;
}
.search-result .other-catalogs__item_more {
    padding: 5px;
    background-color: transparent;
    border: 1px solid #CAD2D5;
    border-radius: 5px;
}
.search-result .other-catalogs__item_more:hover .search__more-title {
    text-decoration-color: transparent;
}
.basket__table-quantity .page-content .counter {
    width: 85px;
    margin: 0;
}
.counter a {
    width: 23px;
    height: 23px;
    background-color: #979DB1;
    border-radius: 3px;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
    position: relative;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.counter a.minus {
    background-image: url(../img/icons/minus-icon.svg);
    background-size: 11px 1px;
    margin-right: -5px;
}
.counter a.plus {
    background-image: url(../img/icons/plus-icon.svg);
    background-size: 11px 11px;
    margin-left: -5px;
}
.counter .count {
    border: none;
    width: 42px;
    height: 23px;
    background: #F3F3F5;
    color: #000000;
    text-align: center;
}
.basket__table-status, .basket__table-stock {
    text-align: right;
}
.basket__table-total {
    text-align: center;
}
.catalog-add-link {
    color: #5F7CED;
    padding-left: 20px;
    background-image: url(../img/icons/add-to-cart-icon.svg);
    background-repeat: no-repeat;
    background-position: left center;
}
.basket__table-loop {
    display: inline-block;
    white-space: nowrap;
}
.error-page {
    display: flex;
    justify-content: center;
    padding: 150px 0px;
}
.error-page__block {
    margin-left: 40px;
    margin-right: 40px;
}
.error-page__block_left {
    margin-right: 70px;
}
.error-page__block_right {
    margin-left: 70px;
}
.error-page__title {
    font-weight: bold;
    font-size: 50px;
    line-height: 55px;
    color: #000000;
}
.error-page__message {
    font-size: 50px;
    line-height: 55px;
    color: #000000;
    font-weight: 300;
}
.error-page__text {
    margin-top: 30px;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #000000;

}
.error-page__buttons {
    padding-top: 40px;
}
.error-page .btn_blue {
    padding: 14px 54px;
}
.catalog-dropdown {
    display: none;
}
.designations {
    width: 700px;
    max-width: 100%;
}
.designations__form {

}
.designations__result {
    color: #545454;
    padding-top: 50px;
}
.designations__result p {
    margin-bottom: 25px;
}
.designations__result b {

}
.designations__result a {
    color: #5F7CED;
}
.designations__row {
    margin-top: 6px;
    display: flex;
    align-items: center;
}
.designations__select {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    width: 660px;
    max-width: 100%;
}
.designations__select-title {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 4px;
    cursor: pointer;
    padding: 15px 20px;
    padding-right: 30px;

}
.designations__select-title:after {
    content: '';
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/contacts-dropdown.svg);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 10px;
    height: 6px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.designations__select.open .designations__select-title:after {
    transform: translateY(-50%) rotate(-180deg);
}
.designations__select.open .designations__select-title {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.designations__select-list {
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 10;
    top: 100%;
    left: 0px;
    width: 100%;
    border: 1px solid #E5E5E5;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 215px;
    overflow-y: auto;
}
.designations__select.open .designations__select-list {
    z-index: 100;
    display: block;
}
.designations__select-item {
    box-sizing: border-box;
    cursor: pointer;
    padding: 10px 20px;
    padding-right: 30px;
    border-bottom: 1px solid #E5E5E5;
    background-color: #fff;
}
.designations__select-item:last-child {
    border-bottom: none;
}
.designations__radio {
    margin-right: 60px;
    margin-top: 10px;
    cursor: pointer;
}
.designations__radio-choose {
    display: none;
}
.designations__radio-field {
    display: flex;
    align-items: center;
}
.designations__radio-input {
    width: 18px;
    height: 18px;
    border: 2px solid #CBCFDC;
    border-radius: 100%;
    position: relative;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.designations__radio-input:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-radius: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.designations__radio-value {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin-left: 10px;
}
.designations__radio-choose:checked + .designations__radio-field .designations__radio-input {
    border: 2px solid #5F7CED;
}
.designations__radio-choose:checked + .designations__radio-field .designations__radio-input:after {
    background-color: #5F7CED;
}
.designations__bottom {
    padding-top: 40px;
}
.designations__submit {
    border: none;
    cursor: pointer;
    padding: 14px 54px;
}
.sitemap {
    list-style-type: none;
    margin: 5px 0px;
}
.sitemap_sub {
    padding-left: 25px;
}
.sitemap__item {

}
.sitemap__link {
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: #000000;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.29);
}
.sitemap_sub .sitemap__link {
    color: #545454;
    font-weight: normal;
    font-size: 16px;
    line-height: 34px;
    text-decoration-color: #545454;
}
.sitemap__link:hover {
    text-decoration-color: transparent;
}
.catalog-search {
    padding: 5px 0px;
}
.catalog-search__row {
    display: flex;
    margin: 10px 0px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.catalog-search--type-1 {
    display: flex;
    margin: 10px 0;
}
@media only screen and (max-width: 767px){
    .catalog-search--type-1 {
        display: block;
    }
    .catalog-search--type-1 .catalog-search__field {
        width: 100% !important;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .catalog-search--type-1 .catalog-search__field--item-2 {
        max-width: 100% !important;
    }
    .catalog-search--type-1 .catalog-search__field-title {
        font-size: 12px;
        padding-bottom: 5px;
    }
    .catalog-search--type-1 .catalog-search__field-input {
        height: 40px;
        line-height: 38px;
    }
    .catalog-search--type-1 .catalog-search .custon-select:after {
        top: 18px;
    }
}
.catalog-search__row_submit {
    margin-top: 40px;
}
.catalog-search__col {
    margin-right: 30px;
    padding-bottom: 10px;
}
.catalog-search__col:last-child {
    margin-right: 0;
}
.catalog-search__field {
    max-width: 100%;
}
.catalog-search__field-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    padding-bottom: 12px;
}
.catalog-search__field-title_single {
    margin-top: 20px;
}
.catalog-search__field-box {
    display: flex;
}
.catalog-search__field-input {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    width: 465px;
    max-width: 100%;
    height: 46px;
    line-height: 44px;
    padding: 0px 12px;
    color: #000;
    font-size: 15px;
}
.catalog-search__field-input::-webkit-input-placeholder {font-size: 16px;color: #979797;font-family: 'Open Sans', sans-serif;}
.catalog-search__field-input::-moz-placeholder          {font-size: 16px;color: #979797;font-family: 'Open Sans', sans-serif;}/* Firefox 19+ */
.catalog-search__field-input:-moz-placeholder           {font-size: 16px;color: #979797;font-family: 'Open Sans', sans-serif;}/* Firefox 18- */
.catalog-search__field-input:-ms-input-placeholder      {font-size: 16px;color: #979797;font-family: 'Open Sans', sans-serif;}
.catalog-search__field .btn_search {
    padding-top: 12px;
    padding-bottom: 12px;
}
.catalog-search__field--item-2 {
    width: 300px;
    max-width: 50% !important;
}
.catalog-search__field-input_half {
    width: 110px;
    margin-right: 7px;
}
.catalog-search__field-input_half:last-child {
    margin-right: 0;
}
.catalog-search__radio {
    display: flex;
}
.catalog-search__radio-item {
    margin-right: 50px;
    cursor: pointer;
}
.catalog-search__radio-hidden {
    display: none;
}
.catalog-search__radio-content {
    display: flex;
    align-items: center;
}
.catalog-search__radio-box {
    width: 18px;
    height: 18px;
    border: 1px solid #CBCFDC;
    border-radius: 100%;
    position: relative;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    margin-right: 10px;
}
.catalog-search__radio-box:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    background: #5F7CED;
    border-radius: 100%;
    opacity: 0;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.catalog-search__radio-hidden:checked + .catalog-search__radio-content .catalog-search__radio-box:before {
    opacity: 1;
}
.catalog-search__radio-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}
.catalog-search__checkbox {
    display: flex;
    padding-bottom: 15px;
}
.catalog-search__checkbox-col {
    margin-right: 45px;
}
.catalog-search__checkbox-col:last-child {
    margin-right: 0;
}
.catalog-search__checkbox-item {
    display: block;
    cursor: pointer;
    margin-bottom: 10px;
}
.catalog-search__checkbox-hidden {
    display: none;
}
.catalog-search__checkbox-content {
    display: flex;
    align-items: center;
}
.catalog-search__checkbox-box {
    width: 16px;
    height: 16px;
    border: 1px solid #C8C9CA;
    border-radius: 2px;
    margin-right: 10px;
    position: relative;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.catalog-search__checkbox-box:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/check-icon.svg);
    opacity: 0;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.catalog-search__checkbox-hidden:checked + .catalog-search__checkbox-content .catalog-search__checkbox-box:before {
    opacity: 1;
}
.catalog-search__checkbox-title {
    font-size: 16px;
    line-height: 22px;
    color: #545454;
}

.catalog-search .custon-select {
    position: relative;
}
.catalog-search .custon-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
}
.catalog-search .custon-select:after {
    content: "";
    position: absolute;
    right: 9px;
    top: 20px;
    z-index: 1;
    width: 11px;
    height: 6px;
    pointer-events: none;
    box-sizing: border-box;
    background-image: url(/shop/img/icons/dropdown-input-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.catalog-search select:focus {
  outline: 0;
}
.btn_search {
    padding: 14px 54px;
}
.searcg-result {
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
    margin-top: 60px;
}
.searcg-result:before {
    content: '';
    display: block;
    height: 1px;
    width: 9999px;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateX(-50%);
    background-color: #DDDFE5;
}
.searcg-result__title {
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
}
.searcg-result__content {
    margin-top: 20px;
    overflow-x: auto;
}
.plan-link {
    font-size: 14px;
    line-height: 19px;
    color: #5F7CED;
    border-bottom: 1px dashed rgba(95, 124, 237, 0.5);
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.plan-link:hover {
    border-bottom: 1px dashed transparent;
}
.basket__table-plan {
    position: relative;
}
.plan-popup {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #fff;
    box-shadow: 0px 4px 10px #D3D6DF;
    padding: 40px;
    z-index: 9999;
    display: none;

}
.plan-popup__close {
    width: 16px;
    height: 16px;
    background-image: url(../img/plan-close.svg);
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.plan-popup__body {

}
.plan-popup__params {
    display: flex;

}
.plan-popup__param {
    margin-right: 30px;
    min-width: 80px;
    margin-top: 15px;
}
.plan-popup__param:last-child {
    margin-right: 0;
}
.plan-popup__param-value {
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}
.plan-popup__param-title {
    font-size: 11px;
    line-height: 15px;
    color: #979DB1;
}
.plan-popup__image {
    margin-top: 30px;
    text-align: center;
}
.plan-popup__image img {
    max-width: 100%;

}
.plan-popup__bottom {
    margin-top: 30px;
    text-align: center;
}


.plan-popup__bottom .btn_blue {
    padding: 9px 42px;
}
.plan-popup__bottom .btn_underline {
    padding: 9px 10px;
    text-decoration-line: underline;
    color: #5F7CED;
    margin-left: 30px;
}
.plan-popup__bottom .btn_underline:hover {
    text-decoration-color: transparent;
}

.plan-popup__print {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    line-height: 18px;
    text-decoration-line: underline;
    color: #5F7CED;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.plan-popup__print:hover {
    text-decoration-color: transparent;
}
.plan-popup.open {
    display: block;
}
#print-window {

}
.catalog-detail__pdf_spec {
    margin-left: -7px;
    margin-right: -7px;
}
.catalog-detail__pdf_spec  .other-catalogs__item {
    width: 48%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 0;
    margin-bottom: 16px;
    margin-left: 7px;
    margin-right: 7px;
}
.catalog-detail__pdf_spec .other-catalogs__item-left {
    width: 27%;
    margin-right: 0;
}
.catalog-detail__pdf_spec .other-catalogs__item-right {
    width: 68%;
    padding-bottom: 0;
}
.catalog-detail__pdf_spec  .other-catalogs__item-spec {
    width: 100%;
    position: relative;
    padding-top: 15px;

}
.catalog-detail__pdf_spec .other-catalogs__item-bottom {
    position: static;
    justify-content: flex-start;
    padding-top: 15px;
}
.catalog-detail__pdf_spec .other-catalogs__item-lang {
    line-height: 16px;
}
.catalog-detail__pdf_spec .other-catalogs__item-download {
    margin-right: 23px;
}

.video-link {

}
.video-link__item {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 0px;
    transform: translateY(-100%);
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #000;
    font-size: 16px;
    line-height: 31px;
    padding-left: 40px;
    background-image: url(../img/video-link.svg);
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    margin-top: -17px;

}
.video-link__item:hover {
    text-decoration-color: transparent;
}
.catalog-before {
    padding-bottom: 5px;
    width: 980px;
    max-width: 100%;
}
.catalog-before p {
    margin-bottom: 10px;
}
.catalog-detail-content__tab {
    display: none;
}
.catalog-detail-content__tab_active {
    display: block;
}
/* You can alter this CSS in order to give Smooth Div Scroll your own look'n'feel */

/* The scroll wrapper is always the same width and height as the containing element (div).
   Overflow is hidden because you don't want to show all of the scrollable area.
*/
div.scrollWrapper
{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

div.scrollableArea
{
    position: relative;
    width: auto;
    height: 100%;
}
.faq-block__top {
    display: flex;
    flex-wrap: wrap;
}
.faq-block__top > div {
    margin-right: 30px;
    margin-top: 20px;
}
.faq-block__top > div:last-child {
    margin-right: 0;
}
.dropdown-links {
    cursor: pointer;
    position: relative;
    width: 380px;
    max-width: 100%;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}
.dropdown-links__current {
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    border: 1px solid #C8C9CA;
    border-radius: 4px;
    padding: 15px 18px;
    padding-top: 13px;
    position: relative;
}
.dropdown-links__current:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    background-image: url(../img/dropdown-links-arrow.svg);
}
.dropdown-links__list {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    background-color: #fff;
    list-style-type: none;
    z-index: 100;
    border-left: 1px solid #C8C9CA;
    border-right: 1px solid #C8C9CA;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: none;
}
.dropdown-links__item {

}
.dropdown-links__link {
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    border-bottom: 1px solid #C8C9CA;
    padding: 15px 18px;
    padding-top: 13px;
}
.dropdown-links__item:last-child .dropdown-links__link {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;

}

.to-faq-button a {
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    color: #3A5BDB;
    padding: 14px 20px;
    border: 1px solid #5F7CED;
    border-radius: 4px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.add-question {
    background: #F5F7F9;
    padding: 40px 0px;
    padding-bottom: 80px;
}
.add-question__title {
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #000000;
}
.add-question__form {
    width: 500px;
    max-width: 90%;
    margin: auto;
    padding-top: 10px;
}
.add-question__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.add-question__field {
    margin-top: 20px;
    width: 240px;
    max-width: 48%;
}
.add-question__field_full {
    width: 100%;
    max-width: 100%;
}
.add-question__name {
    color: #838A9F;
    font-size: 14px;
    line-height: 15px;
}
.add-question__input {
    color:#000000;
    font-size: 14px;
    line-height: 15px;
    padding: 12px 16px;
    padding-bottom: 13px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    margin-top: 8px;
    width: 100%;
    display: block;
    outline: none;
}
.add-question__input_textarea {
    min-height: 115px;
    max-width: 100%;
}
.add-question__input::-webkit-input-placeholder {color:#000000;font-family: 'Open Sans', sans-serif;}
.add-question__input::-moz-placeholder          {color:#000000;font-family: 'Open Sans', sans-serif;}/* Firefox 19+ */
.add-question__input:-moz-placeholder           {color:#000000;font-family: 'Open Sans', sans-serif;}/* Firefox 18- */
.add-question__input:-ms-input-placeholder      {color:#000000;font-family: 'Open Sans', sans-serif;}
.add-question__input_disabled {
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.add-question__dropdown {
    position: relative;
    cursor: pointer;
}
.add-question__dropdown-current {
    position: relative;
}
.add-question__dropdown-current:after {
    content: '';
    display: block;
    width: 12px;
    height: 8px;
    background-image: url(../img/contacts-dropdown.svg);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
.add-question__dropdown-list {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    background-color: #fff;
    list-style-type: none;
    z-index: 100;
    border: 1px solid #E5E5E5;
    border-top: none;
    display: none;
}
.add-question__dropdown-item {
    background-color: #fff;
    color:#000000;
    font-size: 14px;
    line-height: 15px;
    padding: 12px 16px;
    padding-bottom: 13px;
    border-top: 1px solid #E5E5E5;

}
.add-question__dropdown-item.current {
    display: none;
}
.add-question__dropdown-item:first-child {
    border-top: none;
}
.add-question .btn_submit {
    padding: 14px 34px;
}

.classifier {

}
.classifier__top {
    padding-bottom: 15px;
}
.classifier__content {
    padding-top: 15px;
}
.classifier__title {
    font-size: 18px;
    line-height: 25px;
    color: #9F9FBE;
}
.classifier-categories {
    display: flex;
    flex-wrap: wrap;

    list-style-type: none;
    padding: 0;
    margin: 0;
    max-width: 1269px;
}

.classifier-categories__link {
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
    background-color: #fff;
    padding: 14px 20px;
    padding-bottom: 17px;
    border: 1px solid #5F7CED;
    text-align: center;
    flex-grow: 1;
    margin-left: -1px;
    margin-right: -1px;
    margin-top: -1px;
    margin-bottom: -1px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.classifier-categories__link:hover,
.classifier-categories__link.current {
    color: #fff;
    background: #5F7CED;
}
.classifier-category {
    margin-top: 15px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 8%;
    background-color: #fff;
    margin-bottom: 15px;
}
.classifier-category__item {
    width: 25%;
    padding-right: 15px;
    padding-bottom: 10px;
}
.classifier-category__link {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #3A5BDB;
    text-decoration: underline;
    text-decoration-color: transparent;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.classifier-category__link:hover {
    text-decoration-color: #3A5BDB;
}
.classifier-card {
    display: flex;
    background-color: #fff;
    padding: 60px 20px;
    margin-top: 25px;
}
.classifier-card__image {
    width: 430px;
    min-width: 430px;
    margin-right: 20px;
    position: relative;
}
.classifier-card__image img {
    position: absolute;
    display: block;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}
.classifier-card__content {
    width: 100%;
}
.classifier-card__title {
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    color: #000000;
}
.classifier-card__params {
    margin-top: 54px;
    display: flex;
}
.classifier-card__params-col {
    margin-right: 110px;
}
.classifier-card__params-col:last-child {
    margin-right: 0;
}
.classifier-card__param {
    font-size: 14px;
    line-height: 19px;
    color: #979DB1;
    margin-bottom: 14px;
}
.classifier-card__param span {
    display: inline-block;
}
.classifier-card__param span:nth-child(1) {
    width: 105px;
    margin-right: 20px;
}
.classifier-card__param span:nth-child(2) {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000000;


}
.classifier-card__buttons {
    padding-top: 70px;
}
.classifier-card__buttons .btn_blue {
    padding: 9px 42px;
}
.classifier-card__buttons .btn_underline {
    padding: 9px 10px;
    text-decoration-line: underline;
    color: #5F7CED;
    margin-left: 30px;
}
.classifier-card__buttons .btn_underline:hover {
    text-decoration-color: transparent;
}
.classifier-categories-mobile {
    display: none;
}
/* временно скрываем ссылки на профиль*/
.profile-links,
.mobile-links__link_profile {
    display: none !important;
}



.geolocations {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 40px;
    overflow: auto;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    transform: translateY(-100%);
}
.geolocations_opened {
    transform: none;
}
.geolocations__close {
    position: absolute;
    top: 50px;
    right: 5%;
    background: #F3F3F5;
    border-radius: 100%;
    width: 55px;
    height: 55px;
    background-image: url(../img/ok.svg);
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;

}
.geolocations__body {
    width: 990px;
    max-width: 100%;

    margin-left: auto;
    margin-right: auto;
}
.geolocations__title {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    color: #000000;
}
.geolocations__list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.geolocations__list-item {
    margin-top: 20px;
    margin-bottom: 10px;
    width: 25%;
    padding-right: 15px;
}
.geolocations__list-link {
    font-size: 18px;
    line-height: 1.3;
    color: #4A4A4A;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.geolocations__list-link:hover {
    color: #5F7CED;
}
.geolocations__search {
    margin-top: 30px;
}
.geolocations__search-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}
.geolocations__search-fields {

}
.geolocations__search-input {
    border: 1px solid #CAD2D5;
    width: 300px;
    border-radius: 3px;
    height: 50px;
    line-height: 48px;
    padding: 0px 15px;
    margin-right: 5px;
    margin-top: 10px;
}
.geolocations__search-submit {
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
body.geolocations_opened {
    overflow: hidden;
}
.mobile-panel {
    display: none;
}
.popup {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px #424551;
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 50px 30px;
    padding-bottom: 30px;
    position: relative;
}
.popup_voting {
    width: 355px;
    text-align: center;
}
.popup_subscribe {
    width: 355px;
    padding: 15px 20px;
}
.popup-voting__title {
    font-weight: bold;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    color: #000000;
}
.popup_subscribe .popup-voting__title {
    text-align: left;
}
.popup-voting__button {
    margin-top: 24px;
}
.popup-voting__button .btn {
    padding: 12px 16px;
}
.popup-voting__links {
    padding-top: 10px;
}
.popup-voting__link {
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #5F7CED;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    text-decoration: underline;
    text-decoration-color: transparent;
}
.popup-voting__link:hover {
    text-decoration-color: #5F7CED;
}
.link-to-votes {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 12px;
    line-height: 20px;
    color: #5F7CED;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    text-decoration: underline;
    text-decoration-color: transparent;
    border: 1px solid #5F7CED;
    border-radius: 3px;
    padding: 7px 17px;
}
.link-to-votes:hover {
    color: #DCDCDC;
    background-color: #5F7CED;
}
.header-mobile__cart {
    display: none;
}
img[align="left"] {
    margin: 20px;
    margin-left: 0;
}
img[align="right"] {
    margin: 20px;
    margin-right: 0;
}

.popup__email {
    color: #5F7CED;
}
.popup_subscribe .popup__text {
    margin-top: 18px;
    font-size: 14px;
    line-height: 19px;
    color: #000000;
}
.popup_subscribe .popup__info {
    font-size: 13px;
    line-height: 18px;
    color: #545454;
    margin-top: 18px;
}
div.colorbox {
    margin-left: 5px;
    width: 30px;
    height: 15px;
    border: 1px solid #000;
}
#generating-table td{
    padding: 10px;

}
.manufacturer-page__history {
    padding-bottom: 30px;
}
.news-control {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 15px;
}
.news-control__col  {
    margin-top: 15px;
    margin-right: 55px;
}
.news-control__col:last-child {
    margin-right: 0;
}
.news-control__title {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    min-height: 36px;
}
.news-control__content {
    margin-top: 15px;
}
.news-control__variants {

}
.news-control__variant {
    cursor: pointer;
}
.news-control__variant-radio {
    display: none;
}
.news-control__variant-field {
    display: flex;
    align-items: center;
}
.news-control__variant-box {
    margin-right: 6px;
    border: 1px solid #C8C9CA;
    width: 17px;
    min-width: 17px;
    height: 17px;
    border-radius: 100%;
    position: relative;

}
.news-control__variant-box-circle {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    opacity: 0;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.news-control__variant-box-circle:before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 100%;
}
.news-control__variant-value {
    font-size: 12px;
    line-height: 30px;
}
.news-control__variant-radio:checked + .news-control__variant-field .news-control__variant-box-circle {
    opacity: 1;
}
.news-control__input {
    width: 36px;
    height: 36px;
    border: 1px solid #C8C9CA;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}
.news-control__col_full {
    width: 100%;
}
.news-control__btn {
    border-radius: 3px;
    margin-right: 10px;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    padding: 9px 24px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}
.news-control__btn_reset {
    background: #E5E5ED;
    color: #5F7CED;
}
.news-control__btn_submit {
    background: #5F7CED;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    color: #fff;
}
.news-body-control {
    max-width: 800px;
    margin-left: 0;
}
.news-control__results {
    border-top: 1px solid #C8C9CA;
    margin-top: 15px;
}
.news-control__results-block {
    margin-top: 30px;
}
.news-control__results-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 15px;
}
.news-control__results-code {
    border: 1px solid #C8C9CA;
    padding: 6px 10px;
}
.news-control__results-example {
    margin-top: 15px;
}
.copy-btn {
    display: none;
}
.popup-choose-city__wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: transparent;
    max-width: 1300px;
    z-index: 10000;
    box-shadow: none;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.popup-choose-city {
    position: fixed;
    width: auto;
    height: auto;
    max-width: 100%;
    z-index: 10000;
    box-shadow: 0px 0px 10px #424551;
    border-radius: 3px;
    top: 10px;
    right: 15px;
    padding: 7px 10px 0;
    max-width: 277px;
    background: #fff;
}
.popup-choose-city.inner {
    /*position: fixed;*/
    padding: 30px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 750px;
    max-width: 100%;
}
.popup-choose-city.inner + .mfp-close {
    display: block;
    z-index: 10000;
}
.popup-choose-city__inner {
    max-width: 1000px;
    margin: 0 auto;
}
.popup-choose-city + .mfp-close {
    display: none;
    top: 20px !important;
    right: 20px !important;
    width: 55px;
    height: 55px;
    background: url(../img/close.svg) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    text-indent: -5000px;
}
.popup-choose-city__title {
    font-size: 12px;
    line-height: 1.4;
    color: #000000;
}
.popup-your-city__title {
    font-weight: bold;
    font-size: 17px;
    line-height: 1.4;
    color: #000000;
    display: none;
}
.popup-choose-city__list {
    display: none;
    margin-left: 4px;
    margin-right: -30px;
}
.popup-choose-city__list h3 {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 15px;
}
.popup-choose-city__list ul {
    list-style-type: none;
    display: inline-block;
    width: 25%;
    vertical-align: top;
    margin-top: 30px;
    margin-left: -4px;
}

.popup-choose-city__list ul a {
    font-size: 12px;
    color: #5F7CED;
    cursor: pointer;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.popup-choose-city__list ul a:hover {
    text-decoration: underline;
}
.popup-choose-city__target {
    font-weight: bold;
    font-size: 17px;
    line-height: 23px;
    color: #EE2E24;
    margin-top: 15px;
}
.popup-choose-city__message {
    font-size: 12px;
    color: #979DB1;
    margin-top: 15px;
}
.popup-choose-city__form > p {
    margin-bottom: 5px;
    font-size: 12px;
    color: #979DB1;
}
.popup-choose-city__form,
.popup-choose-city__form-mob {
    margin-top: 10px;
}
.popup-choose-city__search {
    position: relative;
}
.popup-choose-city__input {
    border: 1px solid #C8C9CA;
    padding: 0px 20px;
    padding-right: 35px;
    height: 46px;
    line-height: 44px;
    width: 100%;
    font-size: 18px;
    color: #000000;
    background-image: url(../img/icons/loop-icon.svg);
    background-repeat: no-repeat;
    background-position: 97% center;
    background-size: 22px 22px;
}
.popup-choose-city__variants {
    list-style-type: none;
    background: #F3F3F5;
    max-height: 0px;
    overflow-y: auto;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.popup-choose-city__variants.open {
    max-height: 460px;
}
.popup-choose-city__variant {
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    padding: 10px 20px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    cursor: pointer;
}
.popup-choose-city__variant:hover {
    background: #5F7CED;
    color: #fff;
}
.popup-choose-city__bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    padding-top: 0px;
}
.popup-choose-city__bottom input:first-child {
    margin-right: 10px;
}
.popup-choose-city__bottom input:last-child {
    width: 100%;
    background: #979DB1;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.popup-choose-city__bottom input:last-child:hover {
    opacity: 0.8;
}
.popup-choose-city__button,
.box-choose-city__button,
.box-choose-city__button_mob {
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    border: none;
    cursor: pointer;
    padding: 0px 20px;
    height: 30px;
    line-height: 30px;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    margin-bottom: 10px;
}

body .mfp-bg {
    background: rgba(57, 61, 75, 0.5);
    opacity: 1;
}
.main-offices__text-button {
    padding-top: 20px;
}
.main-offices__text-button a {
    border: 1px solid #5F7CED;
    padding-left: 20px;
    padding-right: 20px;
}
.main-offices__text-button a:hover {
    background-color: #5F7CED;
    color: #fff;
}
.catalog table {
    width: 100% !important;
    max-width: 100% !important;
    border: none;
}
.catalog table td {
    padding: 10px;
    max-width: 100% !important;
}
.catalog table col {
    width: 100% !important;
    max-width: 100% !important;
}
.video-categoties {
    scrollbar-width: none;
    list-style: none;
    padding: 0;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: inline-flex;
    position: relative;
    z-index: 3;
    white-space: nowrap;
    overflow-x: scroll;
    overflow: -moz-scrollbars-none;
    overflow-y: hidden;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-wrap: inherit;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
    list-style-type: none;
}
.video-categoties__item {
    display: inline-block;
    margin-right: 20px;
    padding-bottom: 15px;
}
.video-categoties__link {
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    text-decoration: underline;
    text-decoration-color: transparent;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.video-categoties__item.current .video-categoties__link,
.video-categoties__link:hover {
    text-decoration-color: #3A5BDB;
    color: #3A5BDB;
}
.search-pages-result {
    border-bottom: 1px solid #C8C9CA;
    padding-bottom: 20px;
}
.search-pages-result__item {
    padding-top: 15px;
    padding-bottom: 10px;
}
.search-pages-result__title {
    color: #124DE3;
    font-size: 16px;
    line-height: 20px;
}
.search-pages-result__title a {
    color: #124DE3;
}
.search-pages-result__announce {
    color: #000000;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    margin-top: 5px;
}
.earch-pages-result__counter {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    padding-bottom: 10px;
}
.search-page .catalog-search__row {
    margin-bottom: 0;
}
.article__content table p {
    margin: 0;
}

#map-container .fm-scale {
    right: 10px;
    top: 50%;
    margin: 0px;
    left: auto;
    bottom: auto;
    width: 27px;
    height: 87px;
}
#map-container .fm-scale-display {
    display: none;
}
#map-container .fm-scale-buttons {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url(../img/map-scale.svg);
}
#map-container .fm-scale-minus,
#map-container .fm-scale-plus {
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    color: transparent;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    margin: 0px;
    padding: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    font-size: 0;
    line-height: 0;
}

#map-container .fm-scale-minus {
    background-image: url(../img/map-scale-minus.svg);
    bottom: 8px;
}
#map-container .fm-scale-plus {
    background-image: url(../img/map-scale-plus.svg);
    top: 8px;
}
#map-container .fm-inactive {
    opacity: 0.5;
}

#_result {
    background-color: #DCDCDC;
}
.voting__result-info {
    padding-right: 30px;
}
.header-index-links{
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.header-index-links:hover {
    border-bottom: 1px solid transparent;
}
.sale-steps__contact_whatsapp {
    display: inline-block;
    background-image: url(/local/templates/portal/css/../img/whatsapp.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 35px;
    margin-top: 10px;
    line-height: 1;
}
.sale-steps__contact_whatsapp .text-nowrap {
    color: #00D16A;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
}
.sale-steps__contact_whatsapp .sale-steps__contact-description {
    color: #4A4A4A;
}
.add-question__politics {
    font-size: 12px;
    width: auto;
    max-width: 100%;
    color: #838A9F;
}
.add-question__politics a {
    color: #5F7CED;
}
.tg-text-icon img {
    vertical-align: middle;
}


/* ny-2021*/
.ny-schedule{
    display: flex;
    margin-top:-30px;
}
.ny-schedule a{
    margin: 20px auto;
    width: auto;
    background: url(../img/ng/ng_02.png) no-repeat;
    width: 604px;
    height: 44px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    padding: 15px;
    font-weight: bold;
    position: relative;

}

.ny-schedule a br{
    display: none;
}

.ny-schedule a:before{
    width: 36px;
    height: 50px;
    content: '';
    background-color: gray;
    display: block;
    position: absolute;
    background: url(../img/ng/ng_01.png) no-repeat;
    left: 75px;
    top: -2px;
}

.video-categoties__mob {
    display: none;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out; 
    -moz-transition: all 0.3s ease-out; 
    -o-transition: all 0.3s ease-out; 
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
        opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
        opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}   
.image-popup-icon-circle {
    padding: 4px;
    display: block;
}
.image-popup-icon-circle img {
    display: block;
}

.form-bg {
    background: url('../img/form-bg.png') no-repeat;
    background-position: center;
    background-size: cover;
}

.sale-order__form-submit--width {
    width: 100%;
    max-width: 260px;
    padding: 12px 0;
}


.sale-order__span {
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;

    color: #4A4A4A;
}

.sale-order__form-politics a.sale-order__link {
    color: #5F7CED;
    text-decoration: none;
}

.sale-order__form-input::placeholder {
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
}

.sale-order__form-title--mb {
    margin-bottom: 32px;
}
.form-wrap {
    padding: 30px 0;
}

.main-search.sale-order__form:before,
form.catalogue-form.sale-order__form:before {
    content: none;
}

.main-search.sale-order__form,
form.catalogue-form.sale-order__form {
    max-width: 100%;
    padding: 0;
    box-shadow: none;
}
.header-mobile__img {
    display: none;
}

.order-phone {
    margin-right: 20px;
    height: 24px;
}
@media (max-width: 1024px){
    .order-phone {
        margin-right: 15px;
    }
}
@media (max-width: 991px){
    .order-phone {
        margin-right: 10px;
    }
}
.modal-popup {
    display: none;
    position: fixed;
    max-width: 330px;
    width: 100%;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    box-shadow: 0px 0px 10px #424551;
    border-radius: 3px;
    height: max-content;
    z-index: 10005;
}
.modal-popup__form.sale-order__form {
    box-shadow: none;
    border-radius: inherit;
    padding: 0;    
}
.overlay {
    display: none;
    box-sizing: content-box;
    background-color: rgba(59, 67, 76, 0.7);
    width: 100%;
    height: 100%;
    padding: inherit;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 10000;
}

.modal-popup__content {
    padding: 20px 30px 30px;
}

.modal-popup__h2 {
    font-weight: bold;
    font-size: 17px;
    line-height: 23px;
    margin-bottom: 20px;
}

.modal-popup__input {
    background: #FFFFFF;
    border: 1px solid #C8C9CA;
    box-sizing: border-box;
    width: 100%;
    padding: 9.5px 13px;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.5px;
}

.modal-popup__label {
    font-size: 13px;
    line-height: 18px;
    color: #545454;
    display: block;
    margin-bottom: 6px;
}

.modal-popup__button {
    background: #5F7CED;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    border: none;
    padding: 13px;
    margin-top: 17px;
}

.modal-popup__input-wrap {
    margin: 13px 0;
}

.modal-popup__top {
    position: relative;
}

.cross {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.cross:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    background: #000;
    transform: rotate(45deg);
    right: 0;
    top: 12px;
}

.cross:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    background: #000;
    transform: rotate(-45deg);
    right: 0;
    top: 12px;
}

.modal-popup.show,
.overlay.show {
    display: block;
}

.search-result__table__head {
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}
.search-result__table__head small {
    font-size: 11px;
    line-height: 15px;
    color: #545454;
    font-weight: 400;
    margin-left: 4px;
}
@media only screen and (max-width: 767px){
    .auto__picture {
        width: auto;
        height: auto;
        margin: 0 auto !important;
        float: none;
        display: block;
        max-width: 40%;
    }
}
.catalog-search__parameters__name {
    color: #545454;
    font-size: 11px;
    line-height: 1;
    padding-bottom: 10px;
}
.catalog-search__parameters__name b {
    font-size: 15px;
    color: #000000;
}
.catalog-search__field--model,
.catalog-search__field--number {
    margin-right: 30px;
}
@media only screen and (max-width: 1024px){
    .catalog-search__field--model,
    .catalog-search__field--number {
        width: calc(50% - 5px) !important;
        margin-bottom: 30px;
    }
    .catalog-search__field--model {
        margin-right: 10px;
    }
    .catalog-search__field--number {
        margin-right: 0px;
    }
}

.catalog-search__field__parameters {
    width: 123px !important;
}
@media only screen and (max-width: 1024px){
    .catalog-search__field__parameters {
        width: calc(33.33% - 7px) !important;
        margin-bottom: 30px;
    }
}

.catalog-search__field__submit .general-parameters__submit {
    width: 110px !important;
}
@media only screen and (max-width: 767px){
    .catalog-search__field.catalog-search__field__submit {
        width: calc(50% - 5px) !important;
        margin-top: 10px;
    }
    .catalog-search__field__submit .general-parameters__submit {
        width: 100% !important;
    }
}
.catalog-search--type-2 {
    display: flex;
    margin: 10px 0;
}
@media only screen and (max-width: 1024px){
    .catalog-search--type-2 {
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 767px){
    .catalog-search--type-2 {
        justify-content: space-between;
    }
    .catalog-search--type-2 .catalog-search__field {
        width: 100% !important;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .catalog-search--type-2 .catalog-search__field--item-2 {
        max-width: 100% !important;
    }
    .catalog-search--type-2 .catalog-search__field-title {
        font-size: 12px;
        padding-bottom: 5px;
    }
    .catalog-search--type-2 .catalog-search__field-input {
        height: 40px;
        line-height: 38px;
    }
    .catalog-search--type-2 .catalog-search .custon-select:after {
        top: 18px;
    }
}

.catalog-search--type-3 {
    display: flex;
    margin: 10px 0 40px;
    flex-wrap: wrap;
    max-width: 710px;
    align-items: flex-end;
    justify-content: space-between;
}
@media only screen and (max-width: 1024px){
    .catalog-search--type-3 {
        justify-content: flex-start;
    }
}
.catalog-search--type-3 .catalog-search__field--model,
.catalog-search--type-3 .catalog-search__field--number {
    width: calc(50% - 30px);
}

@media only screen and (max-width: 962px){
    .catalog-search--type-3 .catalog-search__field--model,
    .catalog-search--type-3 .catalog-search__field--number {
        width: 100% !important;
        margin-right: 0;
    }

}

@media only screen and (max-width: 767px){
    .catalog-search--type-3 {
        justify-content: space-between;
    }
    .catalog-search--type-3 .catalog-search__field {
        width: 100% !important;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .catalog-search--type-3 .catalog-search__field-title {
        font-size: 12px;
        padding-bottom: 5px;
    }
    .catalog-search--type-3 .catalog-search__field-input {
        height: 40px;
        line-height: 38px;
    }
    .catalog-search--type-3 .catalog-search .custon-select:after {
        top: 18px;
    }
}
.catalog-search__title {
    margin-bottom: 30px;
    margin-top: 15px;
    font-size: 22px;
    line-height: 26px;
}
.search-result__table td {
    text-align: left;
    padding: 13px 20px !important;
    line-height: 18px;
}
.search-result__table th {
    color: #545454;
    font-weight: normal;
    border-bottom: 1px solid #C8C9CA;
    white-space: nowrap;
    font-size: 13px;
}
.search-result__table td {
    border-bottom: 1px solid #C8C9CA;
    vertical-align: top;
    color: #000;
    font-size: 12px;
    padding: 16px 20px !important;
}
.search-result__table .items {
    position: relative;
}

.search-result__table .items td {
    position: relative;
    top: -1px;
    background: #fff;
}
.search-result__table .items td:first-child {
    padding-left: 40px !important;
}
.search-result__table .items td:before {
    content: '';
    display: inline-block;
    height: 1px;
    border-top: 1px dashed #C8C9CA;
    position: absolute;
    left: 2px;
    right: 0;
    top: 1px;
}
.search-result__table .items td:first-child:before {
    left: 40px;
}
.search-result__table .items td:first-child:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 21px;
    position: absolute;
    left: 20px;
    top: 8px;
    background: url(../img/shape-1.svg);
    background-size: contain;
}

.search-result__table a {
    color: #5F7CED !important;
}


.tech-service {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 40px;
}
.tech-service__body {
    flex-grow: 1;
    max-width: 900px;
    padding-right: 40px;
    
}
.tech-service__aside {
    
}
.tech-service__description {
    color: #545454;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
}

.tech-service__links {
    margin-top: 40px;
    padding-bottom: 20px;
}
.tech-service__links-row {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -20px;
    margin-bottom: -20px;
}
.tech-service__links-col {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.tech-service__links-col-25 {
    width: 25%;
}
.tech-service__links-col-33 {
    width: 33.33%;
}
.tech-service__links-col-50 {
    width: 50%;
}
.tech-service__links-col-75 {
    width: 75%;
}
.tech-service__links-col-100 {
    width: 100%;
}
.tech-service__link {
    display: block;
    border-radius: 4px;
    background: #EBEBEE;
    padding: 10px 20px;
    position: relative;
    min-height: 150px;
    height: 100%;
    transition: all 0.25s;
}
.tech-service__link:hover {
    background: #D9EAFB;
}
.tech-service__link_bg-2 {
    background: #DCDCE9;
}
.tech-service__link_image-right {
    padding-right: 190px;
}
.tech-service__link-title {
    color: #5F7CED;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
}
.tech-service__link-text {
    margin-top: 10px;
    color: #000000;
    font-size: 12px;
    line-height: 150%;
}
.tech-service__link-text-60 {
    width: 60%;
}
.tech-service__link-image {
    position: absolute;
}
.tech-service__link-image img {
    display: block;
    max-width: 135px;
    max-height: 150px;
}
.tech-service__link-image_h-center {
    left: 50%;
    transform: translateX(-50%);
}
.tech-service__link-image_h-right {
    right: 0px;
}
.tech-service__link-image_v-bottom {
    bottom: 0px;
}
.tech-service__link-image_v-center {
    top: 50%;           
    transform: translateY(-50%);
}
.tech-service__link-image_padding-right-50 {
    padding-right: 50px;
}
.tech-service__steps {
    display: flex;
    padding-top: 25px;
    padding-bottom: 25px;
}
.tech-service__steps-item {
    width: 33.33%;
    padding-right: 40px;
    position: relative;
    margin-right: 15px;
}
.tech-service__steps-item:after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 17px;
    height: 77px;
    background-image: url(/tech-service/img/tech-service__steps-item.svg);
}
.tech-service__steps-item:last-child {
    padding-right: 0;
    margin-right: 0;
}
.tech-service__steps-item:last-child:after {
    content: none;
}
.tech-service__steps-title {
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    line-height: 150%;
}
.tech-service__steps-list {
    list-style-type: none;
}
.tech-service__steps-list li {
    margin-top: 6px;
    color: #000000;
    font-size: 13px;
    line-height: 15px;
}
.tech-service__advantages {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 30px;
}
.tech-service__col {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
}
.tech-service__item {
    margin-bottom: 40px;
}
.tech-service__title {
    display: flex;
    align-items: center;
}
.tech-service__title img {
    margin-right: 25px;
}
.tech-service__title span {
    color: #000000;
    font-weight: bold;
    font-size: 22px;
    line-height: 110%;        
}
.tech-service__text {
    padding-top: 10px;
    color: #545454;
    font-size: 16px;
    line-height: 150%;
}
.tech-service__text p {
    margin-top: 20px;        
}
.tech-service__contacts {
    border-top: 1px solid #C6C6C7;
    margin-top: 20px;
    padding-top: 40px;
}
.tech-service__contacts-title {
    color: #000000;
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
}
.tech-service__contacts-list {
    margin-top: 30px;
    list-style-type: none;
}
.tech-service__contacts-list li {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}
.tech-service__contacts-list-title {
    color: #545454;
    font-size: 16px;
    line-height: 150%;
    width: 70px;
    margin-right: 20px;
}
.tech-service__contacts-list-val {
   
}
.tech-service__contacts-list-val a {
    color: #5F7CED;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}
.tech-service__menu {
    list-style-type: none;
    padding-bottom: 5px;
}
.tech-service__menu li {
    margin-top: 10px;
}
.tech-service__menu li:first-child {
    margin-top: 0;
}
.tech-service__menu a {
    color: #000000;
    font-size: 15px;
    line-height: 20px;
    transition: all 0.25s;
}
.tech-service__menu a:hover {
    color: #5F7CED;
}
.tech-service__aside .tech-service__contacts {
    padding-top: 20px;
}
.tech-service__aside .tech-service__contacts-list {
    margin-top: 0;
}
.tech-service__detail {
    padding: 0;
}
.tech-service__detail-description {
    color: #545454;
    font-weight: bold;

}
.tech-service__detail p {
    margin-top: 20px;        
}
.tech-service__detail ul {
    margin-bottom: 20px;
    margin-top: 20px;
}
.contacts-page__row {
    display: flex;
}
.contacts-page__col {
    width: 50%;
}
.contacts-page__text {
    margin-top: -10px;
}
.contacts-page__text p {
    margin: 10px 0px;
}


.analyst {
    padding-top: 25px;
    padding-bottom: 25px;
}
.analyst__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.analyst__top-side {

}
.analyst-menu {
    display: flex;
    align-items: flex-end;
}
.analyst-menu ul {
    max-width: 330px;
    margin-right: 48px;
    list-style-type: none;
}
.analyst-menu li {
    
}
.analyst-menu a {
    color: #838A9F;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    transition: all 0.25s;
}
.analyst-menu a:hover, .analyst-menu a.is-active {
    color: #3A5BDB;
}
.analyst-toggler {
    display: flex;
    align-items: center;
}
.analyst-toggler__item {
    line-height: 32px;
    display: flex;
    align-items: center;
    border-right: 1px solid #E6E6E6;
    padding-left: 12px;
    padding-right: 12px;
    cursor: pointer;
}
.analyst-toggler__item:last-child {
    border-right: none;
}
.analyst-toggler__item svg {
    width: 18px;
    min-width: 18px;
    margin-right: 6px;
}
.analyst-toggler__item svg path{
    transition: all 0.25s;
}
.analyst-toggler__item span {
    color: #838A9F;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.25s;
}
.analyst-toggler__item.active svg path, .analyst-toggler__item:hover svg path {
    fill: #5F7CED;
}
.analyst-toggler__item.active span, .analyst-toggler__item:hover span {
    color: #5F7CED;
}
.analyst__random {
    padding-top: 50px;
  
}
.analyst__row {
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
}
.analyst__col {
    padding-left: 20px;
    padding-right: 20px;
    border-right: 1px solid #E6E6E6;
    position: relative;
}
.analyst__col:last-child {
    border-right: none;
}
.analyst__col:first-child .analyst-card:first-child {
    border-bottom: 1px solid #E6E6E6;
}
.analyst__col:first-child .analyst-card:first-child .analyst-card__title {
    font-size: 35px;
}
.analyst__col:first-child .analyst-card:nth-child(2) .analyst-card__title {
    font-size: 30px;
}
.analyst__col:nth-child(1) {
    width: 561px;
    min-width: 561px;
}
.analyst__col:nth-child(2) {
    width: 300px;
    min-width: 300px;
}
.analyst__col:nth-child(2) .analyst-card:nth-child(2) {
    background: #E6E6E6;
    margin-left: -21px;
    margin-right: -21px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 25px;
    margin-bottom: 0;
}
.analyst__col:nth-child(3) {
    flex-grow: 1;
}
.analyst__col:nth-child(3)  .analyst-card__title {
    font-size: 22px;
}

.analyst-card {
    margin-bottom: 30px;
}
.analyst-card__cat {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}   
.analyst-card__cat img {
    width: 22px;
    min-width: 22px;
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}
.analyst-card__cat span, .analyst-card__cat a {
    color: #838A9F;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    margin-top: 2px;
}

.analyst-card__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    color: #000000;
    margin-bottom: 20px;
    
}
.analyst-card__title:hover {
    color: #5F7CED;
}
.analyst-card__title a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    transition: all 0.25s;
}
.analyst-card__announce {
    color: #545454;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding-bottom: 15px;
}
.analyst-card__announce p {
    margin-bottom: 25px;
}
.analyst-card__readmore {
    font-style: italic;
    color: #838A9F;
    display: inline-block;
    margin-left: 5px;
}
.analyst-card__image {
    margin-bottom: 20px;
}
.analyst__bottom {
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 20px;
}
.analyst__bottom-item {
    border-right: 1px solid #E6E6E6;
    width: 25%;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
}
.analyst__bottom-item:last-child {
    border-right: none;
}
.analyst__bottom-item .analyst-card__image {
    height: 150px;
    overflow: hidden;
}
.analyst__bottom-item img {
    display: block;
    object-fit: contain;
    max-height: 150px;
}
.analyst__section {
    margin: 40px 0px;
    background: linear-gradient(0deg, #838A9F, #838A9F), linear-gradient(0deg, #5F7CED, #5F7CED), #E6E6E6;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 12px 20px;
}
.analyst__section img {
    width: 30px;
    min-width: 30px;
    margin-right: 18px;
}   
.analyst__section a {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    margin-top: 2px;
}
.analyst.list {
   
}
.analyst.list .analyst__row {
    display: block;
    margin-left: 0;
    margin-right: 0;
}
.analyst.list .analyst__col:nth-child(1), .analyst.list .analyst__col:nth-child(2), .analyst.list .analyst__col:nth-child(3) {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    border-right: none;
}
.analyst.list .analyst-card__title, 
.analyst.list .analyst__col:first-child .analyst-card:first-child .analyst-card__title, 
.analyst.list .analyst__col:first-child .analyst-card:nth-child(2) .analyst-card__title {
    font-size: 22px; 
}   
.analyst.list .analyst__col .analyst-card {
    border-bottom: 1px solid #E6E6E6;
}
.analyst.list .analyst__col:nth-child(2) .analyst-card:nth-child(2) {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
}
.analyst:not(.list) .analyst__col:nth-child(2) .analyst-card__image img {
    max-height: 150px;
} 
.analyst:not(.list) .analyst__col:nth-child(1) .analyst-card__image img, .analyst:not(.list) .analyst__col:nth-child(3) .analyst-card__image img {
    max-height: 280px;
}  
.analyst.list .analyst-card {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.analyst.list .analyst-card__announce {
    padding-bottom: 15px;
}
.analyst.list .analyst-card__announce p:last-child {
    margin-bottom: 0;
}

.analyst.list .analyst__bottom {
    display: block;
    margin-left: 0;
    margin-right: 0;
   
}
.analyst.list .analyst__bottom-item {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #E6E6E6;
    margin-top: 0;
}
.analyst.list .analyst__bottom-item img {
    width: auto;
    height: auto !important;
}
.analyst__dropdown {
    display: none;
}
.video-section-btn {
	margin-left: 25px;
}
.video-section-btn a {
    display: inline-block;
    /* position: absolute; */
    top: 27px;
    left: 200px;
    white-space: nowrap;
    transition: all 0.25s;
}
.video-section-btn a:hover {
    opacity: 0.7;
}
.video-section-btn svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -2px;
}
.video-section-btn span {
    display: inline-block;
    vertical-align: middle;
    color: #5F7CED;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
}
@media only screen and (max-width: 991px) {
    .video-section-btn a {
        top: 22px;
        left: 185px;
    }
}
@media only screen and (max-width: 767px) {
    .video-section-btn a {
        top: 135px;
        left: 0;
    }
}

.subscription-format  input{
    -webkit-appearance: checkbox;
}


@media (max-width:768px) {
    .catalog.catalog_detail iframe{
        width: 100%;
    }
    .catalog.catalog_detail .pagination{
        display: flex;
        flex-wrap: wrap;
    }
}
.subscription-form .subscription-email,
.subscription-utility .subscription-textbox{
    width: 100%;
    padding: .72rem .75rem;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    border-radius: 0.25rem;
    border: 1px solid #908F8F;
    background: #FFF;
}
.subscription-utility .subscription-textbox{
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.subscription-layout tr:first-child .field-form {
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
    
}
@media (max-width:768px) {
    .subscription-layout tr:first-child .field-form {
        flex-direction: column;
    }
    
}
.subscription-buttons input,
.subscription-utility input{
    border-radius: 0.25rem;
    background: #5F7CED;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
    border: none;
    outline: none;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: .88rem;
    max-width: 16.25rem;
    width: 100%;
    transition: all .3s;
}