@charset "UTF-8";

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.eot');
    src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Light.woff2') format('woff2'),
    url('../fonts/Roboto-Light.woff') format('woff'),
    url('../fonts/Roboto-Light.ttf') format('truetype'),
    url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto-Regular.ttf') format('truetype'),
    url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.eot');
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/Roboto-Medium.woff') format('woff'),
    url('../fonts/Roboto-Medium.ttf') format('truetype'),
    url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.eot');
    src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/Roboto-Bold.woff') format('woff'),
    url('../fonts/Roboto-Bold.ttf') format('truetype'),
    url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'lednikoff';
    src:  url('../fonts/lednikoff.eot?3amsls');
    src:  url('../fonts/lednikoff.eot?3amsls#iefix') format('embedded-opentype'),
    url('../fonts/lednikoff.ttf?3amsls') format('truetype'),
    url('../fonts/lednikoff.woff?3amsls') format('woff'),
    url('../fonts/lednikoff.svg?3amsls#alightik') format('svg');
    font-weight: normal;
    font-style: normal;
}





/**************************ЦВЕТА*******************************/
.color{
    box-sizing: border-box;
}
.color-round{
    border-radius: 50%;
}
.color--white,
.color--white6000{
    background-color: #ffffff;
    border: solid 1px #868e94;
}
.color--gold2000{
    background-color: #e6c9a7;
}
.color--warm2400{
    background-color: #f4f4f4;
}
.color--warm2700{
    background-color: #fff2c1;
}
.color--warm3000{
    background-color: #fefa7f;
}
.color--day4000{
    background-color: #fff963;
}
.color--cool8{
    background-color: #eff7ff;
}
.color--cool10{
    background-color: #e9f5ff;
}
.color--cool15{
    background-color: #e3effa;
}
.color--rgb{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/**************************ЦВЕТА*******************************/


/*********************PRELOADER************************/
.preloader,
.preloader2{
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: space-around;
    -webkit-justify-content: space-around;
    align-items: center;
    -webkit-align-items: center;
    align-content: center;
    -webkit-align-content: center;
    background-color: #ffffff;
    z-index: 9999;
}
.preloader2{
    background-color: rgba(255,255,255,0.5);
}
.preloader *, .preloader *:before, .preloader *:after,
.preloader2 *, .preloader2 *:before, .preloader2 *:after{
    box-sizing: border-box;
}
.banter-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    margin-left: -36px;
    margin-top: -36px;
}
.banter-loader__box {
    float: left;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 6px;
}
.banter-loader__box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #bf9450;
}
.banter-loader__box:nth-child(3n) {
    margin-right: 0;
    margin-bottom: 6px;
}
.banter-loader__box:nth-child(1):before, .banter-loader__box:nth-child(4):before {
    margin-left: 26px;
}
.banter-loader__box:nth-child(3):before {
    margin-top: 52px;
}
.banter-loader__box:last-child {
    margin-bottom: 0;
}

@keyframes moveBox-1 {
    9.0909090909% {
        transform: translate(-26px, 0);
    }
    18.1818181818% {
        transform: translate(0px, 0);
    }
    27.2727272727% {
        transform: translate(0px, 0);
    }
    36.3636363636% {
        transform: translate(26px, 0);
    }
    45.4545454545% {
        transform: translate(26px, 26px);
    }
    54.5454545455% {
        transform: translate(26px, 26px);
    }
    63.6363636364% {
        transform: translate(26px, 26px);
    }
    72.7272727273% {
        transform: translate(26px, 0px);
    }
    81.8181818182% {
        transform: translate(0px, 0px);
    }
    90.9090909091% {
        transform: translate(-26px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.banter-loader__box:nth-child(1) {
    animation: moveBox-1 4s infinite;
}

@keyframes moveBox-2 {
    9.0909090909% {
        transform: translate(0, 0);
    }
    18.1818181818% {
        transform: translate(26px, 0);
    }
    27.2727272727% {
        transform: translate(0px, 0);
    }
    36.3636363636% {
        transform: translate(26px, 0);
    }
    45.4545454545% {
        transform: translate(26px, 26px);
    }
    54.5454545455% {
        transform: translate(26px, 26px);
    }
    63.6363636364% {
        transform: translate(26px, 26px);
    }
    72.7272727273% {
        transform: translate(26px, 26px);
    }
    81.8181818182% {
        transform: translate(0px, 26px);
    }
    90.9090909091% {
        transform: translate(0px, 26px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.banter-loader__box:nth-child(2) {
    animation: moveBox-2 4s infinite;
}

@keyframes moveBox-3 {
    9.0909090909% {
        transform: translate(-26px, 0);
    }
    18.1818181818% {
        transform: translate(-26px, 0);
    }
    27.2727272727% {
        transform: translate(0px, 0);
    }
    36.3636363636% {
        transform: translate(-26px, 0);
    }
    45.4545454545% {
        transform: translate(-26px, 0);
    }
    54.5454545455% {
        transform: translate(-26px, 0);
    }
    63.6363636364% {
        transform: translate(-26px, 0);
    }
    72.7272727273% {
        transform: translate(-26px, 0);
    }
    81.8181818182% {
        transform: translate(-26px, -26px);
    }
    90.9090909091% {
        transform: translate(0px, -26px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.banter-loader__box:nth-child(3) {
    animation: moveBox-3 4s infinite;
}

@keyframes moveBox-4 {
    9.0909090909% {
        transform: translate(-26px, 0);
    }
    18.1818181818% {
        transform: translate(-26px, 0);
    }
    27.2727272727% {
        transform: translate(-26px, -26px);
    }
    36.3636363636% {
        transform: translate(0px, -26px);
    }
    45.4545454545% {
        transform: translate(0px, 0px);
    }
    54.5454545455% {
        transform: translate(0px, -26px);
    }
    63.6363636364% {
        transform: translate(0px, -26px);
    }
    72.7272727273% {
        transform: translate(0px, -26px);
    }
    81.8181818182% {
        transform: translate(-26px, -26px);
    }
    90.9090909091% {
        transform: translate(-26px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.banter-loader__box:nth-child(4) {
    animation: moveBox-4 4s infinite;
}

@keyframes moveBox-5 {
    9.0909090909% {
        transform: translate(0, 0);
    }
    18.1818181818% {
        transform: translate(0, 0);
    }
    27.2727272727% {
        transform: translate(0, 0);
    }
    36.3636363636% {
        transform: translate(26px, 0);
    }
    45.4545454545% {
        transform: translate(26px, 0);
    }
    54.5454545455% {
        transform: translate(26px, 0);
    }
    63.6363636364% {
        transform: translate(26px, 0);
    }
    72.7272727273% {
        transform: translate(26px, 0);
    }
    81.8181818182% {
        transform: translate(26px, -26px);
    }
    90.9090909091% {
        transform: translate(0px, -26px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.banter-loader__box:nth-child(5) {
    animation: moveBox-5 4s infinite;
}

@keyframes moveBox-6 {
    9.0909090909% {
        transform: translate(0, 0);
    }
    18.1818181818% {
        transform: translate(-26px, 0);
    }
    27.2727272727% {
        transform: translate(-26px, 0);
    }
    36.3636363636% {
        transform: translate(0px, 0);
    }
    45.4545454545% {
        transform: translate(0px, 0);
    }
    54.5454545455% {
        transform: translate(0px, 0);
    }
    63.6363636364% {
        transform: translate(0px, 0);
    }
    72.7272727273% {
        transform: translate(0px, 26px);
    }
    81.8181818182% {
        transform: translate(-26px, 26px);
    }
    90.9090909091% {
        transform: translate(-26px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.banter-loader__box:nth-child(6) {
    animation: moveBox-6 4s infinite;
}

@keyframes moveBox-7 {
    9.0909090909% {
        transform: translate(26px, 0);
    }
    18.1818181818% {
        transform: translate(26px, 0);
    }
    27.2727272727% {
        transform: translate(26px, 0);
    }
    36.3636363636% {
        transform: translate(0px, 0);
    }
    45.4545454545% {
        transform: translate(0px, -26px);
    }
    54.5454545455% {
        transform: translate(26px, -26px);
    }
    63.6363636364% {
        transform: translate(0px, -26px);
    }
    72.7272727273% {
        transform: translate(0px, -26px);
    }
    81.8181818182% {
        transform: translate(0px, 0px);
    }
    90.9090909091% {
        transform: translate(26px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.banter-loader__box:nth-child(7) {
    animation: moveBox-7 4s infinite;
}

@keyframes moveBox-8 {
    9.0909090909% {
        transform: translate(0, 0);
    }
    18.1818181818% {
        transform: translate(-26px, 0);
    }
    27.2727272727% {
        transform: translate(-26px, -26px);
    }
    36.3636363636% {
        transform: translate(0px, -26px);
    }
    45.4545454545% {
        transform: translate(0px, -26px);
    }
    54.5454545455% {
        transform: translate(0px, -26px);
    }
    63.6363636364% {
        transform: translate(0px, -26px);
    }
    72.7272727273% {
        transform: translate(0px, -26px);
    }
    81.8181818182% {
        transform: translate(26px, -26px);
    }
    90.9090909091% {
        transform: translate(26px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.banter-loader__box:nth-child(8) {
    animation: moveBox-8 4s infinite;
}

@keyframes moveBox-9 {
    9.0909090909% {
        transform: translate(-26px, 0);
    }
    18.1818181818% {
        transform: translate(-26px, 0);
    }
    27.2727272727% {
        transform: translate(0px, 0);
    }
    36.3636363636% {
        transform: translate(-26px, 0);
    }
    45.4545454545% {
        transform: translate(0px, 0);
    }
    54.5454545455% {
        transform: translate(0px, 0);
    }
    63.6363636364% {
        transform: translate(-26px, 0);
    }
    72.7272727273% {
        transform: translate(-26px, 0);
    }
    81.8181818182% {
        transform: translate(-52px, 0);
    }
    90.9090909091% {
        transform: translate(-26px, 0);
    }
    100% {
        transform: translate(0px, 0);
    }
}
.banter-loader__box:nth-child(9) {
    animation: moveBox-9 4s infinite;
}
/*********************PRELOADER************************/


.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
html{
    height: 100%;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 1.2;
    color: #3c3c3c;
    min-width: 320px;
    background-color: white;
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
}
body *{
    margin: 0;
    padding: 0;
}
main{
    /*min-height: calc(100vh - 651px);*/
    padding-top: 152px;
    background-color: #f0f0f0;
    flex: 1 0 auto;
}
main:after{
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 152px;
    background-color: #3c3c3c;
    top: 0;
}
#bx-panel ~ main{
    padding: 0;
}
h3{
    font-size: 30px;
    font-weight: 500;
    color: #5e5e5e;
    text-align: center;
    text-transform: uppercase;
}
a {
    text-decoration: none;
    color: #3c3c3c;
    transition: all 0.2s;
}
*:focus,
*:hover,
*:active{
    outline: none;
}
img{
    border: none;
    display: block;
}
.hover-border{
    position: relative
}
.hover-border:hover{
    cursor: pointer;
}
.hover-border:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: #4c5256;
    position: absolute;
    left: 0;
    bottom: -2px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.hover-border:hover:after ,
.hover-border.active:after{
    width: 100%;
}
.container{
    max-width: 1340px;
    padding: 0 100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.top-padding-wrap{
    padding: 100px 0;
}
input:focus,
button:focus{
    outline: none;
}
button,
.button{
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}
button:hover,
.button:hover{
    cursor: pointer;
}
.button--grey{
    background-color: #696969;
}
.button--grey:hover,
.button--grey:active{
    background-color: #bdbdbd;
}
.button--light-grey{
    color: #000000;
    background-color: #f6f6f6;
}
.button--light-grey:hover{
    background-color: #363534;
    color: #f2f2f2;
}
.button--dark-grey{
    background-color: #363534;
    color: #f2f2f2;
}
.button--dark-grey:hover{
    background-color: #c4c4c4;
}
.button--white{
    border: solid 1px #303030;
    background-color: #ffffff;
    font-size: 20px;
    letter-spacing: 0.4px;
    color: #303030;
    text-transform: uppercase;
    padding: 0 30px;
}
.button--white:hover,
.button--white:active,
.button--white.active_el{
    background-color: #3c3c3c;
    border: solid 1px #3c3c3c;
    color: #ffffff;
}
.button--white-nob{
    font-size: 16px;
    background-color: #ffffff;
    color: #3c3c3c;
    text-transform: uppercase;
    text-align: center;
}
.button--white-nob:hover{
    background-color: #5e5e5e;
    color: #ffffff;
}
.button--red{
    background-color: #e83e38;
    font-size: 20px;
    letter-spacing: 0.4px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s;
}
.button--red:hover,
.button--red:active{
    background-color: #fb615c;
}
.button--transp{
    border: solid 1px #ffffff;
    font-size: 18px;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    background-color: transparent;
}
.button--transp:hover{
    border: solid 1px #bac5cf;
    background-color: rgba(189, 189, 189, 0.56);
}
.button--gold{
    font-size: 20px;
    letter-spacing: 0.4px;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #bf9450;
}
.button--gold:hover{
    background-color: #8f7041;
}
.parallax {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}
.parallax__group {
    position: relative;
    height: 559px;
    transform-style: preserve-3d;
    overflow: hidden;
}

.parallax__layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.parallax__layer--base {
    transform: translateZ(0);
}

.parallax__layer--back {
    transform: translateZ(-1px) scale(2);
}
.parallax__layer--back img{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
/**************************ШАПКА*******************************/
header {
    position: fixed;
    /*position: sticky;*/
    z-index: 100;
    top: 0;
    width: 100%;
}

#bx-panel ~ header{
    position: static;
}
.header__main{
    /*height: 157px;*/
    height: 102px;
    opacity: 1;
    visibility: visible;
    transition: all 0.2s;
}
.header__main.hidden{
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}
.header__main > div{
    transition: all 0.2s;
}
.header__main.hidden > div{
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}
.header__main-top{
    height: 39px;
    background-color: #f4f4f4;
    font-size: 12px;
    border-bottom: 1px solid #bdbdbd;
}
.header__main-top .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.header__main-top--map span:hover{
    cursor: pointer;
}
.header__main-top--map .icon-ic_map{
    margin-right: 7px;
}
#modal-map{
    width: 80%;
    height: 80%;
    padding: 0;
    overflow: hidden;
}
.header__main-top--wrap{
    display: flex;
}
.header__main-top--menu{
    display: flex;
    align-items: center;
}
.header__main-top--menu li{
    list-style: none;
    margin-right: 44px;
    white-space: nowrap;
    font-size: 12px;
}
.header__main-top--menu li .icon-ic{
    margin-right: 6px;
}
.header__main-top--payment{
    display: flex;
    align-items: center;
}
.header__main-top--payment-box{
    display: block;
    width: 37px;
    height: 28px;
    background-image: url("../img/box.svg");
    margin-right: 21px;
    background-size: contain;
    background-repeat: no-repeat;
}
.header__main-top--payment-ya{
    display: block;
    width: 66px;
    height: 22px;
    background-image: url("../img/logo_ya_kassa_ru.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.header__main-top--lang{
    display: flex;
    align-items: center;
}
.header__main-top--lang a{
    margin-left: 34px;
    color: #bdbdbd;
    font-size: 14px;
    position: relative;
    transition: all 0.2s;
}
.header__main-top--lang a.active,
.header__main-top--lang a:hover{
    color: #3c3c3c;;
}
.header__main-top--lang a::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3c3c3c;
    position: absolute;
    left: 0;
    bottom: -11px;
    opacity: 0;
    transition: all 0.2s;
}
.header__main-top--lang a.active::after,
.header__main-top--lang a:hover::after{
    opacity: 1;
}
.header__main-middle{
    background-color: #ffffff;
}
.header__main-middle .container{
    height: 62px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}
.header__sticky .logo img{
    height: 45px;
}
/*.logo img:last-child{
    margin: 0 auto;
}*/
.header__main-middle--city{
    position: relative;
}
.header__main--chosen-city{
    margin-left: 40px;
    white-space: nowrap;
}
.header__main--chosen-city a{
    width: 125px;
    display: block;
}
.header__main--chosen-city i{
    font-style: normal;
}
.header__main--chosen-city span{
    font-size: 6px;
    margin-left: 4px;
    display: inline-block;
    transform-origin: center;
    transform: rotateZ(0deg);
    transition: all 0.4s;
}
.header__main--chosen-city span.visible{
    transform: rotateZ(-90deg);
}
.modal-city{
    padding: 20px;
    width: 258px;
    box-sizing: border-box;
    background-color: #ffffff;
    position: absolute;
    top: 39px;
    left: 34px;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transition: all 0.2s;
}
.modal-city.hidden{
    opacity: 0;
    visibility: hidden;
}
.modal-city__title span{
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 11px;
    height: 11px;
    font-size: 11px;
    color: #bdbdbd;

}
.modal-city__title span:hover{
    cursor: pointer;
    color: #3c3c3c;
}

.modal-city__title{
    font-size: 18px;
    padding: 0 20px 20px;
    white-space: nowrap;
    border-bottom: 1px solid #f4f4f4;
}
.modal-city__list{
    padding-top: 15px;
}
.modal-city__list li{
    height: 35px;
    /*border-top: 1px solid #ffffff;*/
    list-style: none;
}
.modal-city__list li a{
    font-size: 12px;
    line-height: 35px;
    padding: 0 20px;
    transition: all 0.2s;
}
.modal-city__list li a.active,
.modal-city__list li a:hover{
    font-weight: bold;
    color: #e83e38;
}
.header-copyright__soc{
    white-space: nowrap;
    margin-left: 30px;
}
.header-copyright__soc a {
    display: inline-block;
    color: #696969;
    font-size: 30px;
    transition: all 0.2s;
}
.header-copyright__soc a.icon-ic_insta{
    font-size: 31px;
    margin-right: -2px;
}
.header-copyright__soc a.icon-ic_youtube{
    margin-left: 5px;
}
.header-copyright__soc a:hover{
    color: #e83e38;
}
.header__main-search{
    margin-left: 16px;
    width: 52.2%;
}
#header__main-search-form{
    width: 100%;
    display: flex;
    font-size: 12px;
}
#header__main-search-form input{
    padding: 0 18px;
    height: 27px;
    box-sizing: border-box;
    flex-grow: 1;
    border: 1px solid #bdbdbd;
    width: 100%;
    border-right: 0;
    color: #3c3c3c;
}
#header__main-search-form input::placeholder          {font-size: 12px; color: #bdbdbd;}
#header__main-search-form input::-moz-placeholder     {font-size: 12px; color: #bdbdbd;}
#header__main-search-form input:-moz-placeholder      {font-size: 12px; color: #bdbdbd;}
#header__main-search-form input:-ms-input-placeholder {font-size: 12px; color: #bdbdbd;}

#header__main-search-form input:focus{
    outline: none;
}
#header__main-search-form button{
    width: 76px;
    color: #ffffff;
    border: none;
    height: 27px;
}
.header__top-login{
    margin-left: 16px;
    position: relative;
    padding-bottom: 20px;
    margin-top: 25px;
}
.header__top-login > div{
    white-space: normal;
    display: flex;
}
.header__top-login > div .header__top-login-account{
    display: flex;
    white-space: nowrap;
    align-items: center;
}
.header__top-login a{
    font-size: 12px;
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    transition: all 0.2s;
}
.header__top-login .header__top-login-elem > a{
    height: auto;
    position: relative;
}
.header__top-login .header__top-login-account .icon-ic{
    font-size: 5px;
    margin-left: 4px;
    margin-top: 3px;
}
.header__top-login-account:hover{
    cursor: pointer;
}
.header__top-login .header__top-login-account:hover .icon-ic{
    color: #272525;
}
.header__top-login .icon-ic_user{
    color: #bdbdbd;
    font-size: 20px;
    margin-right: 9px;
}
.header__top-login a:hover,
.header__top-login:hover .header__top-login-elem a{
    text-decoration: underline;
    color: #272525;
}
.header__top-account-menu{
    visibility: hidden;
    opacity: 0;
    list-style: none;
    margin: 0;
    padding: 0 19px;
    right: 0;
    top: 38px;
    position: absolute;
    z-index: -1;
    width: 364px;
    overflow-y: auto;
    max-height: calc(100vh - 95px);
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 0 2px 8px 0 rgba(105, 105, 105, 0.1);
    transition: all 0.1s;
}
.header__sticky .header__top-login{
    margin-top: 15px;
    padding-bottom: 15px;
}
.header__sticky .header__top-account-menu{
    top: 40px;
}
.header__top-account-menu.visible,
.header__top-login:hover .header__top-account-menu {
    visibility: visible;
    opacity: 1;
    z-index: 1;
}
.header__top-account-menu li{
    height: 48px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s;
}
.header__top-account-menu li:last-child,
.header__top-account-menu li:nth-last-child(2){
    border: none;
}
.header__top-login .for_auth{
    display: none;
}
.header__top-login.active .for_auth{
    display: block;
}
.header__top-login .for_guest{
    display: block;
}
.header__top-login .header__top-account-auth{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    background-color: #f4f4f4;
    width: calc(100% + 38px);
    margin-left: -19px;
    padding: 0 19px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.header__top-login .header__top-account-auth .header__top-account-login{
    width: 135px;
    height: 45px;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    text-align: center;
}
.header__top-login .header__top-account-auth .header__top-account-login:hover{
    color: #3c3c3c;
}
.header__top-login .header__top-account-auth .header__top-account-register{
    text-transform: uppercase;
    width: auto;
    height: auto;
}
.header__top-login .header__top-account-auth .header__top-account-register:hover{
    color: #e83e38;
}
.header__top-login .header__top-account-exit{
    width: calc(100% + 38px);
    height: 80px;
    background-color: #f4f4f4;
    margin-left: -19px;
    padding: 0 19px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.header__top-login .header__top-account-exit a{
    height: 100%;
    line-height: 80px;
}
.header__top-login .header__top-account-exit span{
    font-size: 22px;
    margin-right: 13px;
    vertical-align: text-bottom;
    transition: all 0s;
}
.header__top-login.active .for_guest{
    display: none;
}
.header__top-account-menu li a{
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 10px;
    font-size: 14px;
    font-weight: normal;
    color: #1e1b17;
    line-height: 48px;
    box-sizing: border-box;
    transition: all 0.2s;
}
.header__top-account-menu li:hover a,
.header__top-login .header__top-account-exit:hover span{
    color: #e83e38;
    text-decoration: none;
}
.header__top-account-menu li:hover a.header__top-account-register{
    color: #3c3c3c;
    color: initial;
}
.header__user-lists{
    display: flex;
    margin-top: 7px;
}
.header__user-lists > div{
    margin-left: 16px;
}
.header__user-lists a{
    font-size: 20px;
    color: #bdbdbd;
    position: relative;
    transition: all 0.2s;
}
.header__user-lists > div > a.icon-ic{
    display: block;
    height: 23px;
}
.header__user-lists a.icon-ic_compare{
    font-size: 23px;
}
.header__user-lists a.icon-ic_cart{
    font-size: 22px;
}
.header__user-cart,
.header__user-compare,
.header__user-fav{
    position: relative;
    white-space: nowrap;
}
/*.header__main-minicart.hidden {
    visibility: hidden;
    opacity: 0;
}*/
.header__main-minicart{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    /*top: 40px;*/
    right: -20px;
    background-color: white;
    z-index: 2;
    transition: all 0.2s;
    top: 20px;
    padding-top: 20px;
    background-color: transparent;
    overflow: hidden;
}
/*.header__main-minicart*/
.header__user-cart:hover .header__main-minicart{
    visibility: visible;
    opacity: 1;

}
.header__main-minicompare,
.header__main-minifav{
    opacity: 0;
    visibility: hidden;
    /*top: 40px;*/
    right: -20px;
    z-index: 3;
    position: absolute;
    transition: all 0.2s;
    top: 20px;
    padding-top: 20px;
    background-color: transparent;
    overflow: hidden;
}
.header__main-minifav{
    z-index: 4;
}
.header__user-compare:hover .header__main-minicompare,
.header__user-fav:hover .header__main-minifav{
    opacity: 1;
    visibility: visible;
}

.header__sticky .header__main-minicart,
.header__sticky .header__main-minicompare,
.header__sticky .header__main-minifav{
    /*top: 36px;*/
    top: 16px;
}
.header__main-minicart::before,
.header__main-minicompare::before,
.header__main-minifav::before{
    /*width: 100%;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    opacity: 0;*/
}

span.header__user--num{
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: #5e5e5e;
    border-radius: 50%;
    font-size: 7px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    line-height: 11px;
    top: -2px;
    left: 12px;
}
span.header__user--text{
    position: static;
    margin-left: 6px;
    font-size: 12px;
    color: #3c3c3c;
    font-family: "Roboto";
    line-height: 20px;
    vertical-align: text-bottom;
    transition: all 0.2s;
}
.header__user-lists a span.active{
    background-color: #e83e38;
}
.header__user-lists a:not(.icon-ic_cart)::after{
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: #3c3c3c;
    position: absolute;
    left: 0;
    bottom: -8px;
    opacity: 0;
    transition: all 0.2s;
}
.header__sticky .header__user-lists a::after{
    background-color: #bf9450;
}
.header__user-lists > div:hover a::after{
    opacity: 1;
}
.header__user-lists a:hover span.header__user--text,
.header__user-lists .header__user-cart:hover a span.header__user--text{
    text-decoration: underline;
    color: #272525;
}
.header__user-lists span.header__user--text:hover{
    text-decoration: underline;
}
.header__main-bottom{
    height: 55px;
    background-color: #3c3c3c;
}
.main-nav{
    height: 55px;
    padding: 0;
    margin: 0;
    position: relative;
}
.main-nav span.icon-ic_menu{
    font-size: 14px;
    position: absolute;
    display: inline-block;
    top: 0;
    left: 20px;
    color: #ffffff;
    line-height: 55px;
    z-index: 100;
}
.main-nav span.icon-ic_menu:hover{
    cursor: pointer;
}
.header__main-bottom span.icon-ic_menu{

}
.header__main-bottom .header__main-menu > ul,
.header__main-bottom  .main-nav > ul{
    display: flex;
}
.header__main-menu li,
.top-menu__catalog-menu li{
    height: 55px;
    line-height: 55px;
    list-style: none;
}
.top-menu__item,
.top-menu__item a,
.top-menu__item span{
    color: #ffffff;
    height: 100%;
    display: block;
    text-align: center;
    flex-grow: 1;
    font-size: 14px;
    position: relative;
    transition: all 0.2s;
}
.top-menu__item--hamburger span{
    text-align: left;
}
.menu-child .top-menu__item a{
    font-size: 12px;
}
.top-menu__item > a{
    white-space: nowrap;
}
.top-menu__item.parent{
    position: relative;
}
.top-menu__item .menu-child{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    width: 263px;
    z-index: 1;
    transition: all 0.2s;
    background-color: #ffffff;
}

.top-menu__item .menu-child li{
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #ffffff;
}
.top-menu__item .menu-child li a{
    text-align: left;
    padding: 0 20px;
}
.top-menu__item:hover .menu-child{
    visibility: visible;
    opacity: 1;
}
.top-menu__item:hover,
.top-menu__item:hover a,
.menu-child .top-menu__item:hover a{
    background-color: #f4f4f4;
    color: #3c3c3c;
}
.top-menu__item:hover span{
    cursor: pointer;
}
.top-menu__catalog-menu{
    flex-grow: 0;
    width: 264px;
    position: relative;
}
.top-menu__catalog-menu a{
    padding-left: 55px;
    text-align: left;
    position: relative;
}
/*.top-menu__catalog-menu > a::before{
    content: "\e901";
    font-family: lednikoff;
    font-size: 14px;
    position: absolute;
    display: block;
    top: 0;
    left: 20px;
    color: #ffffff;
}*/

.top-menu__catalog-menu:hover,
.top-menu__catalog-menu:hover .top-menu__catalog-menu-wrap > a,
.top-menu__item:hover > a,
.top-menu__item:hover > span{
    background-color: #6d6d6d;
    color: #ffffff;
}
.top-menu__catalog-item,
.top-menu__catalog-item a,
.top-menu__catalog--wrap,
.top-menu__catalog--wrap a{
    background-color: #f4f4f4;
    color: #1e1b17;
    font-size: 12px;

}
.top-menu__catalog-item:hover > a,
.top-submenu__catalog li:hover > a,
.top-menu__item .top-menu__catalog--wrap a.active,
.top-menu__item .top-menu__catalog--wrap a:hover,
.menu-child .top-menu__item:hover a{
    color: #e83e38 !important;
}
.top-menu__catalog--wrap{
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    display: none;
}
.top-menu__item .top-menu__catalog--wrap a{
    line-height: 130%;
    padding: 10px 20px;
    position: relative;
    z-index: 0;
    background-color: #fafafa;
}
.top-menu__item .top-menu__catalog--wrap a.active{
    box-shadow: rgba(60,60,60,0.13) 0 0 8px 0;
    z-index: 1;
    background-color: #f4f4f4;
}
.top-submenu__catalog,
.top-submenu2__catalog{
    padding: 8px 0;
}
.top-submenu__catalog::after,
.top-submenu2__catalog::after{
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    right: 263px;
    background-color: #ffffff;
}
.top-menu__catalog-item/*,
.top-submenu__catalog li*/{
    border-top: 1px solid #ffffff;
    height: 40px !important;
    line-height: 40px !important;
}
.top-submenu__catalog li{
    /*border-top: 1px solid #ffffff;*/
    height: auto !important;
    line-height: normal !important;
    /*margin: 16px 0;*/
}
.top-menu__catalog-item a{
    position: relative;
    padding: 0 20px;
}
.top-submenu__catalog li a{
    padding: 8px 20px;
}
.top-menu__catalog-item a::before{
    content: "\e929";
    position: absolute;
    display: block;
    font-family: lednikoff;
    font-size: 4.4px;
    top: 0;
    right: 25px;
    transform-origin: center;
    transform: rotateZ(-90deg);
}
.top-submenu__catalog a::before{
    top: 40%;
}
.top-submenu2__catalog li a::before{
    content: none;
}
.top-menu__catalog-menu ul,
.top-menu__catalog--wrap{
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.top-menu__catalog-menu ul{
    position: absolute;
    left: 0;
    /*top задается при наличии переключателя видов каталога*/
   /* top: 105px;*/
    width: 264px;
    z-index: 1000;
    background-color: #ffffff;
}
.header__sticky .top-menu__catalog-menu ul{
    left: 264px;
}
.header__main .top-menu__catalog-menu:hover ul.active,
.header__main .top-menu__catalog-menu:hover .top-menu__catalog--wrap{
    opacity: 1;
    visibility: visible;
}
/*.top-menu__catalog-menu:hover ul.active,
.top-menu__catalog-menu:hover .top-menu__catalog--wrap{
    opacity: 1;
    visibility: visible;
}*/
.top-menu__catalog-menu ul.top-submenu__catalog{
    padding-left: 264px;
    min-height: calc(100% + 50px);
    /*top задается при наличии переключателя видов каталога*/
    /*top: -50px;*/
    top: 0;
    background-color: #f4f4f4;
    z-index: -1;
    transition: none;
}
.top-menu__catalog-menu ul.top-submenu2__catalog{
    padding-left: 528px;
    min-height: 100%;
    top: 0;
    background-color: #f4f4f4;
    z-index: -1;
    transition: none;
}
.header__sticky .top-menu__catalog-menu ul.top-submenu__catalog,
.header__sticky .top-menu__catalog-menu ul.top-submenu2__catalog{
    left: 0;
}
.top-menu__catalog-item:hover .top-submenu__catalog,
.top-submenu__catalog > li:hover .top-submenu2__catalog{
    opacity: 1;
    visibility: visible;
}

.header__sticky {
    background-color: #3c3c3c;
    width: 100%;
    height: 0;
    transition: all 0.2s;
    position: relative;
    opacity: 0;
    z-index: -99999;
}
.header__sticky.visible{
    height: 55px;
    position: fixed;
    top: 0;
    opacity: 1;
    z-index: 100;
    transition: all 0.2s;
}
.header__sticky .container{
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    height: 100%;
}
.header__sticky-menu--wrap{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__sticky-catalog{
    display: none;
}
.header__sticky .header__top-login-inner,
.header__sticky .header__top-login-inner.active{
    margin-top: 5px;
}
.header__sticky a,
.header__sticky span.header__user--text,
.header__sticky .icon-ic,
.header__sticky .header__main-top--map span{
    color: #ffffff;
    position: relative;
}
.header__top-login .header__top-account-exit span{
    color: #1e1b17;
    transition: all 0.2s;
}
.header__sticky .miniform .icon-ic_cross{
    color: #5e5e5e;
}
.header__sticky .icon-ic::after:not(.icon-ic_user){
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background-color: #bf9450;
    position: absolute;
    left: 0;
    bottom: -11px;
    opacity: 0;
    transition: all 0.2s;
}
.header__sticky .icon-ic:hover::after:not(.icon-ic_user){
    opacity: 1;
}
.header__sticky a:not(.icon-ic):hover,
.header__sticky .header__top-login:hover .header__top-login-elem a,
.header__sticky .header__top-login:hover .header__top-login-elem span,
.header__sticky span:hover,
.header__sticky .header__user-lists a:hover span.header__user--text,
.header__sticky .header__user-lists > div:hover a span.header__user--text,
.header__sticky .header__main-top--map:hover > span,
.header__sticky .header__main-top--map:hover > a,
.header__sticky-tel:hover > a,
.header__sticky .header__top-login .header__top-login-account:hover .icon-ic,
.header__sticky #header__sticky-search-form .icon-ic_search-cat:hover,
.header__sticky .header__top-login .header__top-account-exit:hover span,
.header__sticky .header__top-account-exit:hover a {
    color: #bf9450;
}
.header__sticky .miniform span:hover,
.header__sticky .miniform--empty span:hover{
    color: inherit;
}
.header__sticky .hover-border::after{
    background-color: #bf9450;
}
.header__sticky .header__main-top--map{
    white-space: nowrap;
    font-size: 12px;
}
.header__sticky-tel{
    font-size: 12px;
    margin-left: 30px;
}
.header__sticky .header__top-login > a:hover span{
    color: #bf9450;
}
.header__sticky span.header__user--num{
    background-color: #bf9450;
}
.header__sticky span.header__user--num:hover{
    color: #ffffff;
}
#header__sticky-search-form{
    display: flex;
    flex-direction: row-reverse;
    padding-left: 20px;
    position: relative;
}
#header__sticky-search-form label{
    font-size: 28px;
}
#header__sticky-search-form label:hover{
    cursor: pointer;
}
#header__sticky-search-form input{
    font-size: 12px;
    border: none;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    width: 0;
    position: absolute;
    display: block;
    height: 30px;
    right: 28px;
    transition: all 0.2s;
    background-color: #3c3c3c;
}
#header__sticky-search-form .search-field.active{
    width: 324px;
}
.header__sticky .header__user-lists > div {
    margin-left: 23px;
}

/*  Стики-меню     */
.header__sticky .container{
    position: relative;
}
.header__sticky .main-nav > ul,
.header__sticky .main-nav:hover > ul.hidden{
    position: absolute;
    top: 55px;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.2s;
}
.header__sticky .main-nav:hover > ul{
    visibility: visible;
    opacity: 1;
    height: auto;
}
.header__sticky .main-nav span.icon-ic_menu{
    left: 0;
    padding: 0 20px 0 0;
    display: block;
}
.header__sticky .top-menu__item{
    border-top: 1px solid #ffffff;
    height: 40px;
    line-height: 40px;
    background-color: #f4f4f4;
}
.header__sticky .top-menu__close-menu{
    text-align: left;
    display: none;
}
.header__sticky .top-menu__item a,
.header__sticky .top-menu__item span{
    color: #3c3c3c;
    background-color: #f4f4f4;
    font-size: 12px;
    padding: 0 40px;
    text-align: left;
    position: relative;
}
.header__sticky .top-menu__item span.icon-ic_cross{
    padding: 0 40px;
    display: inline-block;
    line-height: 40px;
}
.header__sticky .top-menu__item span.icon-ic_cross:hover{
    cursor: pointer;
}
.header__sticky .top-menu__item a:hover,
.header__sticky .top-menu__item span:hover{
    color: #e83e38;
    background-color: #f4f4f4;
}
.header__sticky .top-menu__catalog-menu a::before,
.header__sticky .top-menu__item.parent > a::before{
    content: "\e929";
    position: absolute;
    display: block;
    font-family: lednikoff;
    font-size: 4.4px;
    top: 0;
    right: 25px;
    transform-origin: center;
    transform: rotateZ(-90deg);
}
.header__sticky .top-submenu__catalog a::before{
    top: 8px;
}
.header__sticky .top-submenu2__catalog a::before{
    content: none;
}
.header__sticky .top-menu__catalog--wrap{
    left: 264px;
    top: -41px;
}
.header__sticky .top-menu__catalog--wrap a{
    line-height: 130%;
    padding: 10px 20px;
}
.header__sticky .top-menu__catalog--wrap a::before{
    content: none;
}
.header__sticky  .top-menu__catalog-menu ul{
    /*top задается при наличии переключателя видов каталога*/
    /*top: 49px;*/
    top: -1px;
}
.header__sticky ul.top-submenu__catalog{
    /*top задается при наличии переключателя видов каталога*/
    /*top: -50px;*/
    top: 0;
}
.header__sticky ul.top-submenu2__catalog{
    top: 0;
}
.header__sticky ul.top-submenu__catalog li a{
    padding: 8px 20px;
}
.header__sticky .top-menu__item .menu-child{
    left: 264px;
    top: -1px;
}
.header__sticky .top-menu__catalog-menu:hover ul.active,
.header__sticky .top-menu__catalog-menu:hover .top-menu__catalog--wrap{
    visibility: visible;
    opacity: 1;
}
.header__sticky a.logo,
.header__sticky a.header__sticky-catalog{
    display: flex;
    align-items: center;
}
.header__sticky a.logo{
    position: absolute;
    top: 5px;
    left: 200px;
}


/*МИНИФОРМЫ*/
.miniform--empty{
    width: 416px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px 0 rgba(105, 105, 105, 0.1);
}
.miniform--empty a::after,
.miniform a::after{
    content: none !important;
}
.miniform__title{
    height: 36px;
    padding: 0 20px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
}
.miniform__title-info{
    font-weight: 500;
    height: 36px;
    line-height: 36px;
}
.miniform__body{
    padding: 0 20px;
   /* text-align: center;*/
    position: relative;
}
.miniform--empty .miniform__body{
    padding-bottom: 20px;
    white-space: normal;
}
.header__main-minicart .miniform__body{
    text-align: center;
}
.miniform--empty .miniform__body::after{
    content: "";
    display: block;
    position: absolute;
    width: 376px;
    height: 1px;
    background-color: #e0e0e0;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.miniform-img{
    background: url("../img/minicart.png") 100% 100% no-repeat;
    width: 119px;
    height: 89px;
    margin: 17px auto;
}
.miniform__message{
    font-size: 14px;
    color: #607b91;
    margin-top: 20px;
}
.header__main-minicompare .miniform__body{
    text-align: left;
}
.miniform--empty .miniform__subfooter{
    padding: 20px 23px;
}
.miniform--empty .miniform__subfooter a{
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    display: block;
    color: #3c3c3c;
    margin-bottom: 15px;
}
.miniform--empty .miniform__subfooter a:last-child{
    margin-bottom: 0;
}
.miniform--empty .miniform__subfooter a:hover{
    color: #7e7c7c;
}
.miniform--empty .miniform__subfooter a>span{
    color: #e83e38;
}
.miniform__footer{
    background-color: #f4f4f4;
}
.miniform--empty .miniform__footer{
    padding: 20px;
}
.header__main-minicart .miniform--empty .miniform__footer .button{
    font-size: 12px;
    color: #ffffff !important;
    text-transform: uppercase;
    width: 120px;
    height: 28px;
    margin: 0 auto;
}
.miniform{
    width: 841px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px 0 rgba(105, 105, 105, 0.1);
}
.header__main-minifav .miniform{
    width: 600px;
}
.header__main-minicompare .miniform{
    width: 548px;
}
.header__main-minicfav .miniform{
    width: 751px;
}
.miniform__title-qty{
    margin-left: 275px;
}
.header__main-minicompare .miniform__title-qty{
    margin-left: 50px;
}
.header__main-minifav .miniform__title-qty{
    margin-left: 250px;
}
.miniform__title-qty span{
    color: #e83e38;
}
a.miniform__title-remove{
    font-size: 12px;
    color: #3c3c3c;
    margin-left: 35px;
    transition: all 0.2s;
}
a.miniform__title-remove:hover{
    text-decoration: underline;
    color: #bf9450;
}
.miniform .miniform__body{
    padding: 0 20px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 397px;
    overflow-y: auto;
    overflow-x: hidden;
}
.miniform__table{
    width: 100%;
    border-spacing:0;
    /*table-layout: fixed;*/
}
.miniform__table th{
    height: 57px;
    font-size: 12px;
    vertical-align: middle;
    text-align: left;
    font-weight: normal;
    padding: 0 9px;
}
.miniform__table th.miniform__table-head--summ{
    text-align: center;
}
.miniform__table td{
    height: 79px;
    border-top: 1px solid #e0e0e0;
    vertical-align: middle;
    text-align: left;
    padding: 0 9px;
}
.miniform__table td:first-child{
    width: 58px;
}
.miniform__table td img{
    max-width: 58px;
    max-height: 59px;
    width: auto;
    height: auto;
}
.miniform__table-article{
    font-weight: 300;
}
.miniform__table-article span{
    font-weight: 500;
}
a.miniform__table-name{
    font-size: 14px;
    font-weight: normal;
    color: #3c3c3c;
    white-space: normal;
    margin-top: 4px;
    display: inline-block;
    max-width: 230px;
}
.header__main-minifav a.miniform__table-name{
    max-width: 300px;
}
a.miniform__table-name:hover{
    color: #e83e38;
}
.miniform__table .buy-block__wrap{
    display: flex;
    align-items: center;
}
.miniform__table .buy-block__items{
    width: 70px;
    height: 28px;
    margin-right: 5px;
}

.miniform__table  .buy-block__items input{
    font-size: 14px;
}
.header__main-minicart .buy-block__item-avail{
    width: 70px;
    margin-top: 2px;
}
.miniform__table-discount{
    font-size: 12px;
    color: #e83e38;
    margin-bottom: 5px;
}
.miniform__table-price--old{
    font-size: 12px;
    text-decoration: line-through;
    margin-bottom: 5px;
}
.miniform__table-price--cur{
    color: #0053a3;
}
.miniform__table-price--summ{
    text-align: center;
}
.miniform__table .button{
    width: 135px;
    height: 28px;
    font-size: 12px;
    text-transform: uppercase;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.miniform__table .button--red{
    color: #ffffff;
    margin-bottom: 27px;
}
.miniform__table .buy-block__tocart-btn{
    color: #ffffff;
    font-family: "Roboto" !important;
}
.miniform__table .buy-block__tocart-btn::before{
    display: none;
    font-family: lednikoff !important;
    position: absolute;
    right: 20px;
}
.miniform__table .buy-block__tocart-btn.active_el{
    padding-left: 20px;
    justify-content: space-between;
}
.miniform__table .buy-block__tocart-btn.active_el::before{
    display: block;
}
.miniform__table .button:hover,
.miniform__table .buy-block__tocart-btn.active_el{
    color: #ffffff !important;
}
.miniform__table .icon-ic_cross{
    font-size: 11px;
    color: #5e5e5e;
    width: auto;
    height: 30px;
    display: inline-block;
    position: relative;
}
.miniform__table .icon-ic_cross::before{
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.miniform__table .icon-ic_cross:hover{
    cursor: pointer;
    color: #e83e38 !important;
}
.miniform__table .icon-ic_refresh{
    position: relative;
    color: #3c3c3c;
    color: initial;
    margin-right: 40px;
    width: 30px;
    height: 30px;
    border: solid 1px rgb(224, 224, 224);
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.miniform__table .icon-ic_refresh::before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.miniform__table .icon-ic_refresh:hover{
    cursor: pointer;
    color: #bf9450 !important;
}
.miniform__table .icon-ic_refresh.active_el{
    color: #bf9450 !important;
}
.miniform__table .icon-ic_refresh .hint-elem{
    right: 0;
    left: auto;
    font-size: 10px;
    font-family: "Roboto";
}
.miniform__table .icon-ic_refresh:hover .hint-elem{
    opacity: 1;
    visibility: visible;
}
.miniform .miniform__subfooter{
    background-color: #f4f4f4;
    padding: 20px 40px 20px 20px;
    display: flex;
}
.miniform__subfooter .miniform__subfooter-note{
    font-size: 10px;
    font-weight: 300;
    color: #000000;
    max-width: 257px;
    white-space: normal;
}
.miniform__subfooter-price{
    margin-left: 140px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.miniform__subfooter-discount{
    color: #e83e38;
    font-weight: normal;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    margin-bottom: 5px;
}
.miniform__subfooter-discount--summ{
    font-weight: 300;
}
.miniform__subfooter-discount--summ span{
    font-weight: normal;
}
.miniform__subfooter-total{
    color: #3c3c3c;
    font-weight: bold;
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
}
.miniform__subfooter-total--summ{
    font-weight: 300;
}
.miniform__subfooter-total--summ span{
    font-weight: bold;
}
.miniform__footer{
    background-color: #f4f4f4;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
}
.miniform__footer .button{
    height: 28px;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
}
.miniform__footer .button:hover{
    color: #ffffff !important;
}
.header__main-minicart .miniform__footer .button{
    width: 200px;
}
.header__main-minicart .miniform__footer .button--grey{
    margin-right: 30px;
}
.header__main-minicompare .miniform__footer{
    justify-content: center;
}
.header__main-minicompare .miniform__footer .button--grey{
    width: 176px;
}
.header__main-minifav .miniform__footer .button--grey{
    width: 135px;
    margin-right: 32px;
}
.header__main-minifav .miniform__footer .button--light-grey{
    width: 200px;
    background-color: #b0afaf;
}
.header__main-minifav .miniform__footer .button--light-grey:hover{
    background-color: #3c3c3c;
}





/*МОДАЛЬНЫЕ ФОРМЫ*/

/*Форма регистрации-авторизации*/

#modal-auth-form{
    width: 294px;
    padding: 0;
}
.auth-form__title{
    height: 54px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    padding-left: 19px;
}
.auth-form__title-button{
    font-weight: 500;
    display: inline-block;
}
.auth-form__title-button:first-child{
    margin-right: 74px;
}
.auth-form__title-button:hover{
    color: #3c3c3c;
}
.auth-form__title-button:hover span:after,
.auth-form__title-button span.active:after{
    background: #ed1638;
}
#modal-auth-form .fancybox-close-small{
    width: 18px;
    height: 18px;
    padding: 0;
    top: 18px;
    right: 22px;
}
#modal-auth-form .fancybox-close-small svg path{
    fill: #c7d7e3;
}
.auth-form__content{
    display: none;
    color: #b0afaf;
    padding: 20px;
}
.auth-form__content > p{
    padding: 8px 5px 8px 25px;
    border: solid 1px rgba(199, 215, 227, 0.22);
    background-color: rgba(199, 215, 227, 0.22);
    position: relative;
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: normal;
    color: #607b91;
}
.auth-form__content > p:before{
    content: "!";
    color: #e83e38;
    position: absolute;
    display: block;
    font-size: 14px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.auth-form__content > p .errortext{
    font-size: 10px;
    font-weight: normal;
    color: #607b91;
}
.auth-form__content.active{
    display: block;
}
.auth-form__content .text-input-field{
    height: 28px;
    border: solid 1px #dbdbdb;
    background-color: #ffffff;
    line-height: 28px;
    margin-bottom: 10px;
    font-size: 10px;
    padding: 0 10px;
}
.auth-form__success-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.auth-form__success-greet{
    font-size: 12px;
    color: #000000;
    margin-bottom: 20px;
}
.auth-form__success-wrap a{
    font-size: 12px;
    color: #607b91;
    text-decoration: underline;
}
.auth-form__success-wrap .button--red{
    width: 120px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    font-weight: normal;
    margin-top: 0 !important;
}
#modal-auth-form .auth-form__note{
    font-size: 10px;
    color: #607b91;
}
.reg-form__type-payer{
    display: flex;
    margin: 20px 0 25px 0;
}
.reg-form__type-payer input{
    display: none;
}
input ~ .success{
    display: none !important;
}
.reg-form__type-payer label{
    display: block;
    position: relative;
    font-size: 10px;
    color: #797979;
    padding-left: 19px;
}
.reg-form__type-payer label:hover{
    cursor: pointer;
}
.reg-form__type-payer label:first-of-type{
    margin-right: 27px;
}
.reg-form__type-payer label:before{
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px rgba(151, 151, 151, 0.35);
    border-radius: 50%;
    left: 0;
}
.reg-form__type-payer label:after{
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e83e38;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    left: 2px;
    top: 2px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.reg-form__type-payer input:checked ~ label:after{
    opacity: 1;
    visibility: visible;
}
#modal-auth-form .button{
    font-size: 10px;
    margin-top: 20px;
    height: 28px;
    line-height: 28px;
}
#forgot-form .button{
    margin-top: 10px;
}
.auth-form__footer{
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}
#reg-form .auth-form__footer{
    text-align: center;
}
#auth-form .auth-form__footer{
    display: flex;
    justify-content: space-between;
}
.auth-form__footer a{
    font-size: 10px;
    color: #607b91;
}
#auth-form .auth-form__footer a:last-child{
    text-decoration: underline;
}
.form__result .form__result-title{
    font-weight: 500;
    color: #3c3c3c;
    margin-bottom: 20px;
    text-align: left;
}
.form__result .auth-form__footer .button--grey{
    color: #ffffff;
    margin-top: 0 !important;
}

/*Элементы форм Битриксовые*/
div.bx-auth-serv-icons a {
    border: 1px solid transparent;
    margin: 0;
}
div.bx-auth-lbl {
    margin-top: 20px;
    margin-bottom: 4px;
    font-size: 12px;
}
.reg-form__captcha-title{
    margin-top: 10px;
    margin-bottom: 7px;
    font-size: 11px;
    color: #5e5e5e;
}
.reg-form__captcha-input input{
    height: 28px !important;
    border: solid 1px #dbdbdb;
    background-color: #ffffff;
    line-height: 28px !important;
    margin-bottom: 15px;
    font-size: 12px;
    padding: 0 10px;
}

/***************************ШАПКА КОНЕЦ************************/




/**********************ХЛЕБНЫЕ КРОШКИ**************************/
.breadcrumbs{
    /*background-color: #ffffff;*/
    padding-top: 60px;
}
.breadcrumbs__list{
    display: flex;
    flex-wrap: wrap;
}
.breadcrumbs__item{
    list-style: none;
    margin-right: 25px;
    position: relative;
    font-size: 12px;
    white-space: nowrap;
    line-height: 1.87;
}
.breadcrumbs__item:last-child{
    font-weight: 500;
    white-space: normal;
}
.breadcrumbs__item:not(:last-child) a{
    text-decoration: underline;
    white-space: nowrap;
}
.breadcrumbs__item:not(:last-child)::after{
    content: "/";
    display: block;
    position: absolute;
    top: 0;
    right: -12px;
}
.breadcrumbs--dark{
    background-color: #3c3c3c;
    padding: 17px 0;
    position: relative;
    margin-top: -1px;
}
.breadcrumbs--dark .breadcrumbs__list{
    margin: 0;
}
.breadcrumbs--dark .breadcrumbs__item,
.breadcrumbs--dark .breadcrumbs__item a{
    color: white;
}


/***************************ФУТЕР*******************************/
footer{
    flex: 0 0 auto;
}
footer .scroll_up{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}
.scroll_up:hover{
    cursor: pointer;
    background: rgba(255, 255, 255, 1);
    opacity: 1;
}
.scroll_up a{
    display: block;
    transform: rotateZ(180deg);
    margin-top: -5px;
    opacity: 0.5;
}
.scroll_up:hover a{
    opacity: 1;
}
.footer__promote{
    height: 84px;
    background-color: #f6f6f6;
}
.footer__promote .container{
    display: flex;
    align-items: center;
    height: 100%;
}
.footer__promote .logo{
    margin-right: 67px;
}
.footer__promote-list{
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}
.footer__promote-list li{
    list-style: none;
}
.footer__promote-list a{
    font-size: 18px;
    color: #000000;
    text-transform: uppercase;
    position: relative;
}
.footer__promote-list a:after{
    content: "";
    display: block;
    position: absolute;
    width: 0;
    background-color: #000000;
    height: 1px;
    bottom: -2px;
    left: 0;
    transition: all 0.2s;
}
.footer__promote-list a:hover:after{
    width: 100%;
}
.footer__menu{
    /*background-color: #303030;*/
    background-image: url("../img/content/footer-bgnd.jpg");
    background-size: cover;
    background-position-x: right;
}
.footer__menu .container{
    display: flex;
    justify-content: space-between;
    padding: 50px 0 100px;
    color: #ffffff;
    font-size: 12px;
}
.footer__menu-title{
    text-transform: uppercase;
    margin-bottom: 15px;
}
.footer__menu-contacts ul{
    position: relative;
}
.footer__menu-contacts ul.footer__contacts-list--tel{
    margin-bottom: 25px;
}
.footer__menu-contacts ul::before{
    position: absolute;
    top: 0;
    left: 0;
}
.footer__menu-contacts ul.footer__contacts-list--mail::before{
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("../img/close-envelope.svg");
    background-size: cover;
    background-repeat: no-repeat;
}
.footer__menu li{
    list-style: none;
    margin-bottom: 5px;
}
.footer__menu-contacts ul li{
    padding-left: 25px;
}
.footer__menu a{
    color: #ffffff;
    font-family: "Roboto";
}
.footer__menu a:hover{
    color: #bf9450;
}
/*.footer__menu .hover-border::after{
    background-color: #ffffff;
}*/
.footer__menu-subscribe{
    font-size: 14px;
    width: 21%;
}
#footer__subscribe-form{
    margin-top: 25px;
    position: relative;
}
#footer__subscribe-form input,
#footer__subscribe-form button{
    display: block;
    width: 100%;
}
#footer__subscribe-form input{
    height: 33px;
    border: none;
    box-sizing: border-box;
    padding: 0 23px;
    margin-bottom: 10px;
}
#footer__subscribe-form a.button,
#footer__subscribe-form button{
    font-size: 14px;
    font-weight: 500;
    height: 33px;
    line-height: 33px;
    text-transform: uppercase;
}
.subscription-footer .notetext,
.subscription-footer div.subscription-utility p,
.subscription-footer .errortext{
    display: block;
    margin: 10px auto;
    padding: 10px;
    background: #ffffff70;
    border-radius: 5px;
}

.subscription-footer .notetext br:last-of-type,
.subscription-footer .errortext br:last-of-type{
    display: none;
}
.footer-copyright{
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    padding-bottom: 20px;
}
.footer-copyright .container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
}
.footer-copyright .container::before,
.footer-copyright .container::after{
    content: "";
    display: block;
    position: absolute;
    width: calc(50% - 210px);
    height: 1px;
    top: 50%;
    background-color: rgba(191, 148, 80, 0.31);
}
.footer-copyright .container::before{
    left: 0;
}
.footer-copyright .container::after{
    right: 0;
}
.footer-copyright__text{
    font-size: 10px;
    color: #ffffff;
    margin-right: 26px;
}
.footer-copyright__soc a{
    display: inline-block;
    color: #e0e0e0;
    font-size: 30px;
    margin-left: 5px;
    transition: all 0.2s;
}
.footer-copyright__soc a:hover{
    color: #bf9450;
}

/***************************КАРТОЧКА*******************************/
.catalog-page__card{
    padding-top: 142px;
    margin-top: -82px;
    background-color: #ffffff;
}
.catalog-page__card section h1{
    font-size: 36px;
    font-weight: normal;
    line-height: 1.2;
}
.product__info-wrap{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.product__info-gallery-wrap{
    width: 580px;
    margin-right: 20px;
    flex-shrink: 0;
}
.product__gallery-img{
    width: 580px;
    width: 100%;
    flex-shrink: 0;
    /*margin-right: 20px;*/
    overflow: hidden;
    height: auto;
    max-height: 580px;
}
.product__gallery-img .slick-list{
    height: auto;
    max-height: 580px;
}
.catalog-page__card .product__gallery-img .slick-dots{
    height: 14px;
    bottom: -54px;
}
.catalog-page__card .product__gallery-img .slick-dots li{
    width: 14px;
    height: 14px;
    margin: 0 5px;
}
.catalog-page__card .product__gallery-img .slick-dots button {
    padding: 0;
    width: 14px;
    height: 4px;
    margin: 0;
    transition: all 0.2s;
}
.catalog-page__card .product__gallery-img .slick-dots li button:before{
    content: "";
    width: 14px;
    height: 14px;
    background-color: transparent;
    border: solid 1px #5e5e5e;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 1;
    transition: all 0.2s;
}
.catalog-page__card .product__gallery-img .slick-dots li.slick-active button:before,
.catalog-page__card .product__gallery-img .slick-dots li:hover button:before{
    background-color: #c4c4c4;
    border: solid 1px #c4c4c4;
}
.product__gallery-img picture > *{
    width: 100%;
}
.product__gallery-img img[src*=no_photo]{
    width: 100%;
}
.product__gallery-thumb{
    width: 602px;
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: 25px;
    overflow: hidden;
}
.product__gallery-thumb .slick-slide{
    position: relative;
    margin-right: 22px;
}
.product__gallery-thumb .slick-current::after,
.product__gallery-thumb .slick-slide:hover::after{
    content: "";
    display: block;
    position: absolute;
    width: 73px;
    height: 73px;
    top: 0;
    left: 0;
    border: solid 1px #bf9450;
}
.product__gallery-thumb img{
    width: 75px;
    height: 75px;
}
.product__gallery-thumb .slick-slide:hover{
    cursor: pointer;
}
.slick-slide:focus,
.slick-slide:active{
    outline: none;
}
.product__info{
    width: 465px;
    max-width: 465px;
    display: flex;
    flex-direction: column;
}
.product__info-descr-wrap{
    /*min-height: 580px;*/
    display: flex;
    flex-direction: column;
    /*margin-bottom: 25px;*/
    flex-grow: 1;
}
.product__info-article{
    font-size: 18px;
}
.product__info-article span{
    font-weight: bold;
}
.product__info-price-wrap{
    margin-top: 27px;
}
.product__info-price--old{
    font-size: 20px;
    letter-spacing: 1.4px;
    text-decoration: line-through;
}
.product__info-price--cur{
    font-size: 44px;
    font-weight: bold;
    margin: 10px 0;
}
.product__info-descr{
    color: #5e5e5e;
    margin-bottom: 30px;
}
.product__info-descr-wrap .catalog__item-satelites{
    margin-top: 0;
    margin-bottom: 30px;
    text-align: right;
}
.product__info-color-wrap{
    margin-bottom: 17px;
}
.product__info-color--title{
    font-size: 18px;
    font-weight: 300;
    color: #333333;
}
.product__info-colors{
    display: flex;
    flex-wrap: wrap;
}
.product__info-color{
    margin: 10px 20px 0 0;
    position: relative;
    width: 32px;
    height: 32px;
    border: solid 1px #e0e0e0;
    display: block;
}
.product__info-color:after,
.product__info-color:after{
    content: "";
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    top: -1px;
    left: -1px;
    border: solid 1px #bf9450;
    opacity: 0;
    transition: all 0.2s;
}
.product__info-color:hover:after,
.product__info-color:focus:after{
    opacity: 1;
}
.hint-elem{
    position: absolute;
    font-size: 10px;
    color: #4f4f4f;
    padding: 3px 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    top: -20px;
    left: 50%;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.product__info-color:hover .hint-elem{
    opacity: 1;
    visibility: visible;
}
.buy-form{
    margin-top: auto;
}
.buy-block__items{
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    width: 100px;
    height: 53px;
    display: flex;
    position: relative;
}
.buy-block__items > span{
    position: absolute;
    line-height: 53px;
    font-size: 18px;
    font-weight: 300;
    color: #696969;
    right: -30px;
}
.buy-block__items input{
    border: none;
    width: 44px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: #696969;
}
.buy-block__items button{
    border: none;
    background-color: #ffffff;
    width: 28px;
    font-size: 18px;
    font-weight: 300;
    color: #696969;
}
.buy-block__item-avail{
    font-size: 10px;
    color: #4f4f4f;
    width: 100px;
    text-align: center;
    margin-top: 8px;
    white-space: nowrap;
}
.product__info-buy-block-wrap{
    margin-bottom: 25px;
}
.product__info-buy-block-wrap .product__info-price-wrap{
    display: none;
}
.buy-block__total{
    font-size: 18px;
    font-weight: 300;
    color: #5e5e5e;
    margin-top: 24px;
}
.buy-block__total span{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.4px;
    color: #5e5e5e;
}
.buy-block__buy-btns{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.buy-block__buy-btns a{
    width: calc((100% - 15px)/2);
    height: 57px;
    line-height: 57px;
    position: relative;
    font-family: "Roboto" !important;
    box-sizing: border-box;
}
.buy-block__buy-btns .buy-block__tocart-btn::before{
    color: #ffffff;
    font-size: 20px;
    font-family: lednikoff;
    position: absolute;
    right: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}
.buy-block__buy-btns .buy-block__tocart-btn.active::before,
.buy-block__buy-btns .buy-block__tocart-btn.active_el::before{
    visibility: visible;
    opacity: 1;
}
.catalog-page__card .buy-block__buy-btns .buy-block__tocart-btn.active_el{
    padding-left: 8px;
}
.catalog-page__card .buy-block__buy-btns .buy-block__tocart-btn::before{
    right: 10%;
}
.product__info-actions{
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 465px;
    margin-top: auto;
}
.product__info-actions-btns{
    display: flex;
}
.product__info-actions-btns .icon-ic{
    font-size: 24px;
    width: 53px;
    height: 53px;
    box-sizing: border-box;
    border: solid 1px #e0e0e0;
    color: #5e5e5e;
    position: relative;
    text-align: center;
    line-height: 53px;
    margin-right: 15px;
    transition: all 0.2s;
}
.product__info-actions-btns .icon-ic:hover,
.product__info-actions-btns .icon-ic.active_el{
    border: solid 1px #bf9450;
    color: #bf9450;
    cursor: pointer;
}
.product__info-actions-btns .icon-ic:hover a,
.product__info-actions-btns .icon-ic.active_el a{
    color: #bf9450;
}
.product__info-action-catalog{
    position: relative;
    margin-top: 25px;
    display: block;
}
.product__info-action-catalog span{
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.6px;
    color: #5e5e5e;
    font-family: "Roboto";
    vertical-align: super;
}
.product__info-action-catalog span.hover-border:after{
    bottom: 1px;
}
.product__info-action-catalog:hover span{
    color: #3c3c3c;
}
.product__info-action-catalog svg{
    width: 24px;
    height: 24px;
    fill: #5e5e5e;
}
.icon-ic_catalog::before{
    content: none;
}
.product-tabs__title-wrap{
    width: 100%;
    display: flex;
    border-bottom: 1px solid #5e5e5e;
    margin-top: 30px;
}
h6.product-tabs__title{
    font-size: 14px;
    font-weight: normal;
    letter-spacing: -0.6px;
    color: #3c3c3c;
    height: 30px;
    line-height: 30px;
    background-color: #f4f3f3;
    margin-right: 15px;
    padding: 0 25px;
    transition: all 0.2s;
}
h6.product-tabs__title:hover,
h6.product-tabs__title.active{
    color: #ffffff;
    background-color: #3c3c3c;
    cursor: pointer;
}
.product-tab-wrap{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}
.product__features-wrap{
    width: calc((100% - 12px)/2);
}
.product__features-th{
    font-weight: 500;
    letter-spacing: 0.6px;
    width: 100%;
    background-color: #f4f3f3;
    padding: 4px 30px;
    box-sizing: border-box;
}
.product__features-tr{
    display: flex;
}
.product__features-tr div{
    padding: 4px 30px;
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}
.product__features-tr div:first-child{
    margin-right: 4px;
    width: calc(55% - 2px) ;
}
.product__features-tr div:last-child{
    width: calc(45% - 2px);
    font-weight: 500;
}
.product__features-wrap .product__features-tr:last-child div{
    border-bottom: none;
}
.product__delivery-item{
    padding-bottom: 60px;
}
.product__delivery--title{
    font-size: 20px;
    margin-bottom: 20px;
}
.product__delivery--tr{
    padding: 20px;
}
.product__delivery--tr:nth-child(2n){
    background-color: #f0f0f0;
}
.product__delivery--th{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.additional-goods{
    padding: 100px 0;
}
.additional-goods .button--dark-grey{
    height: 0;
    line-height: 40px;
    text-transform: uppercase;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}
.additional-goods .button--dark-grey.visible{
    visibility: visible;
    height: 40px;
    opacity: 1;
}
.catalog-page__card .additional-goods{
    padding: 50px 0 100px 0;
    background-color: #f4f3f3;
}
.additional-goods__slider-wrap{
    /*max-width: 1140px;*/
    margin: 50px auto 0 auto;
    position: relative;
    width: calc(100% + 40px);
    margin-left: -10px;
}
.additional-goods__slider-wrap .slick-list.draggable{
    width: 100%;
    overflow: hidden;
}
.additional-goods__slider-wrap .slick-track{
    /*margin-left: -20px;*/
    display: flex;
    float: none;
}
.additional-goods__slider-wrap.slick-initialized .slick-slide{
    display: flex;
}
.additional-goods__item-wrap{
    width: 270px;
    box-shadow: 0 2px 8px 0 rgba(105, 105, 105, 0.1);
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    height: auto;
}
.additional-goods__actions{
    text-align: right;
    margin: 17px 17px 0;
}
.additional-goods__actions a{
    font-size: 21px;
    color: #5e5e5e;
    transition: all 0.2s;
    margin-left: 15px;
    transition: all 0.2s;
}
.additional-goods__actions a:hover ,
.additional-goods__actions a.active,
.additional-goods__actions a.active_el{
    color: #bf9450;
}
.additional-goods__img{
    /*display: block;*/
    width: 163px;
    height: 163px;
    display: flex;
    align-items: center;
    margin: 36px auto 23px auto;
    position: relative;
}
.additional-goods__img img{
    height: auto;
    width: auto;
    max-width: 163px;
    max-height: 166px;
    display: block;
    border: none;
}
.additional-goods__img:hover::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(128, 128, 128, 0.29);
}
.additional-goods__name{
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0 17px;
    text-align: center;
    transition: all 0.2s;
}
.additional-goods__name:hover{
    color: #e83e38;
}
.additional-goods__article{
    font-weight: 300;
    margin-top: 15px;
    text-align: center;
}
.additional-goods__article span{
    font-weight: 500;
}
.additional-goods__order-wrap{
    margin-top: auto;
}
.additional-goods__order{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 17px;
    margin-bottom: 15px;
}
.additional-goods__order .buy-block__items{
    width: 70px;
    height: 38px;
}
.additional-goods__order .buy-block__items input{
    font-size: 16px;
    width: 32px;
}
.additional-goods__order .buy-block__items button{
    width: 19px;
    padding: 0 9px;
}
.additional-goods__order .buy-block__items span{
    font-size: 16px;
    font-weight: normal;
    line-height: 38px;
    /*right: -25px;*/
    position: static;
    margin-left: 5px;
}
.additional-goods__price{
    font-size: 16px;
    font-weight: bold;
}
.additional-goods__price span{
    font-weight: normal;
}
.additional-goods__buy-btns{
    display: flex;
}
.additional-goods__buy-btns a{
    width: 50%;
    height: 45px;
    line-height: 45px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto" !important;
}
.additional-goods__buy-btns .additional-goods__tocart-btn{
    border: none;
    border-top: solid 1px #e0e0e0;
    padding: 0 12px;
    position: relative;
}
.additional-goods__buy-btns .additional-goods__tocart-btn:hover{
    border-top: solid 1px #767676;
}
.additional-goods__buy-btns .additional-goods__tocart-btn.active_el{
    background-color: #3c3c3c;
    border: solid 1px #3c3c3c;
    color: #ffffff;
    padding: 0 8px;
    justify-content: flex-start;
}
.additional-goods__buy-btns .additional-goods__tocart-btn::before {
    color: #ffffff;
    font-size: 15px;
    font-family: lednikoff;
    position: absolute;
    right: 12px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}
.additional-goods__buy-btns .additional-goods__tocart-btn.active_el::before {
    visibility: visible;
    opacity: 1;
}

.additional-goods__slider-wrap button.slick-arrow{
    position: absolute;
    transform-origin: center;
    width: auto;
    height: auto;
    top: 40%;
    background-color: transparent;
    transition: all 0.2s;
}
.additional-goods__slider-wrap button:hover{
    color: #3c3c3c;
}
.additional-goods__slider-wrap button::before{
    font-size: 35px;
    color: #e0e0e0;
    font-family: lednikoff;
}
.additional-goods__slider-wrap button.slick-prev{
    transform: rotateZ(90deg);
    left: -66px;
}
.additional-goods__slider-wrap button.slick-next{
    transform: rotateZ(-90deg);
    right: -66px;
}
.product__info-stock_summary{
    font-size: 12px;
    margin-bottom: 10px;
    text-align: right;
}
.product__info-stock_summary .available{color:green}
.product__info-stock_summary .wait{color: darkorange}
.product__info-stock_summary .notavailable{color: red}


/***************************ГЛАВНАЯ*******************************/
main.main-page{
    background-color: transparent;
}
section.bgnd--white{
    background-color: #ffffff;
}
section.bgnd--grey{
    background-color: #f9f9f9;
}
section.bgnd--grey1{
    background-color: #f4f3f3;
}
section.bgnd--light-grey{
    background-color: #f6f6f6;
}
.bgnd--dark-grey{
    /*background-color: #e8e7e7;*/
    background-image: linear-gradient(to bottom, #ffffff, rgba(231, 232, 233, 0.96));
}
.main-slider-block{
    /*margin-top: 20px;
    display: flex;
    justify-content: space-between;*/
}
.main-slider-wrap{
    position: relative;
    /*display: flex;
    justify-content: space-between;
    margin-right: 20px;*/
}
.main-slider{
    width: 100%;
    height: 518px;
    overflow: hidden;
}
.main-slider__item{
    position: relative;
    width: 100%;
    height: 518px;
    overflow: hidden;
}
.main-slider__item img{
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.main-slider__item .container{
    height: 100%;
    position: relative;
}
.main-slider__title{
    font-size: 60px;
    font-weight: normal;
    line-height: 1.21;
    letter-spacing: -1.5px;
    color: #ffffff;
    position: absolute;
    right: 121px;
    top: 120px;
    text-transform: uppercase;
    z-index: 1;
}
.main-slider__item .button{
    width: 160px;
    height: 38px;
    line-height: 38px;
    position: absolute;
    right: 121px;
    bottom: 82px;
    z-index: 1;
}
.main-page .slick-dots{
    bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-page .slick-dots li{
    width: auto;
    height: auto;
}
.main-page .slick-dots button{
    padding: 0;
    width: 13px;
    height: 13px;
    background-color: transparent;
    margin: 0;
    transition: all 0.2s;
    border: 2px solid transparent;
    border-radius: 50%;
}
.main-page .slick-dots li:hover button,
.main-page .slick-dots li.slick-active button{
    width: 13px;
    height: 13px;
    border: 2px solid #e83e38;
}
.main-page .slick-dots li button:before{
    content: "";
    width: 9px;
    height: 9px;
    left: 2px;
    top: 2px;
    background-color: #e0e0e0;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.2s;
}
.main-page .slick-dots li:hover button:before,
.main-page .slick-dots li.slick-active button:before{
    background-color: transparent;
}
.main-page .main-slider-block .slick-dots li:hover button:before,
.main-page .main-slider-block .slick-dots li.slick-active button:before{
    border-color: #ffffff;
}
.main-page .slick-dotted.slick-slider{
    margin-bottom: 0;
}
.send-request-form{
    width: 313px;
    height: 518px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 22px;
    box-sizing: border-box;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.37), rgba(255, 255, 255, 0));
}
.send-request-form div.button--red{
    width: calc(100% + 44px);
    margin-left: -22px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    font-weight: normal;
    display: none;
}
.request-form__title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    margin-top: 110px;
    text-transform: uppercase;
}
.request-form__descr{
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    margin-top: 37px;
    text-align: center;
}
.request-form__fields-wrap{
    margin-top: 40px;
    position: relative;
}
.comm-form input{
    width: 100%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
}
.comm-form--modal input{
    position: relative;
}
.comm-form--modal input.error{
    color: #e83e38;
}
.comm-form--modal input + label.success,
.comm-form--modal input + label.error + label.success{
    display: none;
    transition: all 0.2s;
}
.comm-form--modal input.valid + label.success,
.comm-form--modal input.valid + label.error + label.success{
    display: block;
    position: absolute;
    right: 31px;
    color: #139547;
    z-index: 1;
    margin-top: -27px;
    font-size: 9px;
}
.comm-form textarea{
    width: 100%;
    box-sizing: border-box;
    line-height: 150%;
}
.send-request-form input{
    border: solid 1px rgba(255, 255, 255, 0.19);
    background-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    padding: 0 6px;
    font-size: 12px;
    margin-bottom: 11px;

}
.send-request-form input::-webkit-input-placeholder {color:#ffffff;}
.send-request-form input::-moz-placeholder          {color:#ffffff;}/* Firefox 19+ */
.send-request-form input:-moz-placeholder           {color:#ffffff;}/* Firefox 18- */
.send-request-form input:-ms-input-placeholder      {color:#ffffff;}
.comm-form label.error{
    font-size: 12px;
    color: rgba(232, 62, 56, 0.8);
    padding: 8px 9px;
    position: absolute;
    display: flex;
    align-items: center;
}
.comm-form--modal label.error{
    position: relative;
    border: solid 1px #c7d7e338;
    background-color: #c7d7e338;
    font-size: 10px;
    color: #607b91;
    padding-left: 25px;
    margin-bottom: 10px;

}
.send-request-form label.error{
    /*border: solid 1px rgba(199, 215, 227, 0.22);*/
    box-shadow: 0 0 1px rgba(199, 215, 227, 0.22);
    background-color: rgba(246, 246, 246, 0.7);
    right: -100%;
    left: 100%;
    margin-top: -50px;
    margin-left: 10px;
    display: block;

}
.send-request-form label.error span:first-child{
    font-size: 16px;
    font-weight: bold;
    margin-top: -4px;
}
.comm-form button{
    width: 100%;
    height: 40px;
    line-height: 40px;
}
.main-adds-block{
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-adds-block > div{
    height: 249px;
    width: 100%;
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
}
.adds__about{
    background: url("../img/content/main-adds1.jpg") no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.adds__about::before{
    content: "";
    background-color: rgba(60, 60, 60, 0.81);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.adds__about-decsr{
    font-size: 16px;
    line-height: 1.3;
    color: #ffffff;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}
.adds__about-decsr span{
    font-weight: 500;
    color: #e83e38;
}
.adds__about-decsr a{
    display: inline-block;
    width: 88px;
    height: 20px;
    vertical-align: bottom;
}
.adds__about-decsr a img{
    width: 88px;
    height: 24px;
    margin-top: -3px;
}
.main-adds-block a.button{
    position: absolute;
    bottom: 30px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
}
.adds__about a.button{
    width: 159px;
}
.adds__spec-offers img{
    height: 249px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.adds__spec-offers a.button{
    width: 110px;
}
.category-icons-block{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 70px 0;
}
.category-icon__item-wrap{
    display: block;
    width: 145px;
    margin-right: 7%;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}
.category-icon__item-wrap:nth-child(5n){
    margin-right: 0;
}
.category-icon__item-wrap:hover{
    border-color: #e83e38;
    background-color: #e7ecf0;
}
.category-icon__item-wrap .icon-ic{
    color: #3c3c3c;
    font-size: 53px;
    transition: all 0.2s;
    margin-top: 33px;
}
.category-icon__item-wrap:hover .icon-ic{
    color:#e83e38;
}
.category-icon__title{
    font-weight: 500;
    width: 100px;
    margin: 15px auto 31px auto;
}

.main-page h2{
    font-size: 32px;
    font-weight: normal;
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-transform: uppercase;
}
.underline::after{
    content: "";
    display: inline-block;
    height: 1px;
    border: solid 1px #bf9456;
    position: absolute;
    bottom: -3px;
    width: 80%;
}
.underline--left::after{
    left: 0;
}
.service-block-wrap{
    padding-top: 54px;
    display: flex;
    justify-content: space-between;
}
.service__offer-wrap{
    width: 323px;
    margin-left: 17px;
    position: relative;
    height: 432px;
}
.service__offer-wrap--red{
    background: url("../img/content/main-service1.jpg");
}
.service__offer-wrap--green{
    background: url("../img/content/main-service2.jpg");
}
.service__offer-wrap--grey{
    background: url("../img/content/main-service3.jpg");
}
.service__offer-title{
    font-size: 28px;
    font-weight: 500;
    line-height: 1.31;
    color: #ffffff;
    padding: 22px 18px 23px 40px;
    text-transform: uppercase;
    margin-left: -17px;
    margin-top: 17px;
    width: 306px;
    height: 108px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.service__offer-wrap--red .service__offer-title{
    background-color: rgba(129, 29, 30, 0.83);
}
.service__offer-wrap--green .service__offer-title{
    background-color: rgba(55, 80, 80, 0.9);
}
.service__offer-wrap--grey .service__offer-title{
    background-color: rgba(63, 75, 85, 0.9);
}
.service__offer-text{
    width: 243px;
    height: 45px;
    padding: 2px 0 2px 23px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.05;
    color: #ffffff;
    margin-top: 15px;
    box-sizing: border-box;
}
.service__offer-wrap--red .service__offer-text{
    background-color: rgba(129, 29, 30, 0.71);
}
.service__offer-wrap--green .service__offer-text{
    background-color: rgba(59, 83, 83, 0.49);
}
.service__offer-wrap--grey .service__offer-text{
    background-color: rgba(63, 75, 85, 0.49);
}
.service__offer-wrap .button{
    width: 168px;
    height: 44px;
    position: absolute;
    left: 24px;
    bottom: 27px;

}
.why-us{
    position: relative;
    min-height: 559px;
    background-image: url("../img/content/main__why-us-bgnd.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
/*.why-us::after{
    content: "";
    position: absolute;
    display: block;
    background-color: rgba(235, 232, 232, 0.95);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}*/
.why-us .top-padding-wrap{
    z-index: 1;
    position: relative;
}
.why-us-block{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.why-us__item{
    width: 18.2%;
}
.why-us__item img{
    margin-bottom: 48px;
    display: block;
    border: none;
    height: 92px;
}
.why-us__title{
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
}
.why-us__title span{
    padding: 2px 5px;
    line-height: 160%;
    background-color: #96a9b8;
}
.why-us__text{
    margin-top: 12px;
    line-height: 1.27;
}
.stock-block-wrap{
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.stock__banner{
    width: 270px;
    flex-grow: 1;
    max-width: 560px;
    height: 457px;
    box-shadow: 0 2px 15px 0 rgba(105, 105, 105, 0.1);
    position: relative;
    margin-right: 20px;
    overflow: hidden;
}
.stock__banner img{
    width: auto;
    height: 100%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}
.stock__banner a.button--dark-grey{
    position: absolute;
    bottom: 73px;
    left: 50%;
    transform: translateX(-50%);
    width: 163px;
    height: 36px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}
.stock__sale-wrap{
    width: 560px;
    height: 457px;
    overflow: hidden;
}
.stock__sale-item{
    width: 560px;
    height: 457px;
    box-shadow: 0 2px 15px 0 rgba(105, 105, 105, 0.1);
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    position: relative;
}
.sale-item__percent{
    width: 50px;
    height: 24px;
    background-color: #e53d60;
    color: #ffffff;
    position: absolute;
    top: 10px;
    left: 10px;
    text-align: center;
    line-height: 24px;
}
.stock__sale-item h6{
    text-align: center;
    margin-top: 60px;
    padding: 0 10px;
}
.stock__sale-item h6 a{
    font-size: 20px;
    font-weight: normal;
    top: 60px;
}
.stock__sale-item h6 a:hover{
    color: #e83e38;
}
.sale-item__info{
    display: flex;
    margin-top: 50px;
    justify-content: space-between;
    padding: 0 70px 0 60px;
}
.sale-item__info a{
    display: block;
}
.sale-item__info a img{
    width: 230px;
    height: 225px;
}
.sale-item__buy-form{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sale-item__art{
    font-size: 12px;
    font-weight: 300;
    color: #333333;
}
.sale-item__art span{
    font-weight: 500;
}
.sale-item__buy-form .buy-block__wrap{
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.sale-item__buy-form .buy-block__items{
    width: 70px;
    height: 38px;
}
.sale-item__buy-form .buy-block__items *{
    font-size: 16px;
}
.sale-item__buy-form .buy-block__wrap span{
    font-weight: normal;
    color: #333333;
    height: 38px;
    line-height: 38px;
    padding-left: 5px;
}
.sale-item__price{
    margin-top: 16px;
}
.sale-item__price-old{
    display: block;
    color: #5e5e5e;
    text-decoration: line-through;
    line-height: 1.7;
    text-align: center;
}
.sale-item__price-cur{
    display: block;
    font-size: 30px;
    color: #e83e38;
    margin-top: 11px;
    line-height: 1.2;
    text-align: center;
}
.sale-item__lists{
    display: flex;
    align-items: center;
    margin-top: 25px;
}
.sale-item__lists .icon-ic{
    font-size: 21px;
    color: #5e5e5e;
    margin-right: 18px;
}
.sale-item__lists .icon-ic:last-child:first-child{
    font-size: 23px;
}
.sale-item__lists .icon-ic:last-child{
    margin-right: 0;
}
.sale-item__lists .icon-ic:hover,
.sale-item__lists .icon-ic.active_el{
    color: #e83e38;
}
.sale-item__buy-form .button{
    width: 121px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}
.sale-item__stock{
    font-size: 10px;
}
.sale-item__stock .available{color: green}
.sale-item__stock .wait{color: darkorange}
.sale-item__stock .notavailable{color: red}

.main-page .stock__sale-wrap .slick-dots{
    bottom: 23px;
}
.consult-block{
    background: url("../img/content/main-consult-bgnd.jpg") no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 77px 0 98px 0;
    background-position: 50%;
}
.consult-block .request-form__fields-wrap{
    margin-top: 0;
}
.consult-block .container{
    display: flex;
    justify-content: space-between;
}
.consult__text{
    font-size: 32px;
    font-weight: normal;
    max-width: 420px;
    padding: 0 5px;
    color: #D8D8D8;
}
.consult__text p{
    margin: 4px 0;
    position: relative;
    display: inline-block;
    padding: 0 4px;
    line-height: 1;
    z-index: 1;
}
.consult__text p::before{
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    bottom: -2px;
    right: 0;
    z-index: -1;
}
.consult__text--red::before{
    content: "";
    background-color: rgba(232, 62, 56, 0.45);
}
.consult__text--grey::before{
    content: "";
    background-color: rgba(196, 196, 196, 0.33);
}
.order-consult-form-wrap{
    width: 290px;
    position: relative;
}
#order-consult-form input{
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: rgba(255, 255, 255, 0.28);
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    padding: 0 12px ;
    margin-bottom: 11px;
}
#order-consult-form input::-webkit-input-placeholder {color:#ffffff;}
#order-consult-form input::-moz-placeholder          {color:#ffffff;}/* Firefox 19+ */
#order-consult-form input:-moz-placeholder           {color:#ffffff;}/* Firefox 18- */
#order-consult-form input:-ms-input-placeholder      {color:#ffffff;}

#order-consult-form label.error,
#footer__subscribe-form label.error{
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: rgba(255, 255, 255, 0.5);
    left: calc(-100% - 10px);
    right: calc(100% + 10px);
    justify-content: flex-end;
    margin-top: -47px;
    text-align: right;
}
#footer__subscribe-form label.error{
    margin-top: -43px;
    background-color: rgba(255, 255, 255, 0.7);
}
#order-consult-form label.error span:last-child,
#footer__subscribe-form label.error span:last-child{
    font-size: 16px;
    font-weight: bold;
    margin-top: -4px;
}
.news-block-wrap{
    padding-top: 53px;
    width: calc(100% + 44px);
    padding-bottom: 40px;
    margin-left: -22px;
}
.main-page  .news-block-wrap .slick-track{
    display: flex !important;
}
.news__item{
    width: 335px;
    margin: 0 22px;
    box-shadow: 0 1px 10px 0 rgba(66, 69, 71, 0.1);
    border: solid 1px rgba(150, 169, 184, 0.26);
    background-color: rgb(255, 255, 255);
    display: flex !important;
    flex-direction: column;
    height: auto;
    /*flex-grow: 1;*/
}
.news__img{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
.news-block-wrap img{
    max-width: 100%;
}
.news__img img{
    width: 100%;
    height: auto;
}
.main-page .news__item-descr{
    padding: 0 20px 16px 20px;
    display: flex !important;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}
.news__title{
    margin-top: 16px;
    width: 100%;
}
.news__title a{
    font-size: 20px;
    font-weight: 500;
    transition: all 0.2s;
}
.news__title a:hover{
    color: #e83e38;
}
.news__date{
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    padding: 4px;
}
.news__date::before{
    content: "";
    display: block;
    position: absolute;
    background-color: #96a9b8;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.news__text{
    margin-top: 16px;
    width: 100%;
    margin-bottom: 10px;
}
.news__text p{
    margin: 0;
}
.news__more{
    margin-top: auto;
    font-weight: 500;
    color: #333333;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}
.news__more:hover{
    color: #bf9450;
}
.news__more span{
    color: #bf9450;
    display: block;
    transform-origin: center;
    position: absolute;
    transform: rotateZ(-90deg);
    font-size: 5px;
    top: 6px;
    right: -15px;
}
.news-block-wrap .slick-dots{
    bottom: -60px;
}
.news-block-wrap .slick-dots li button:before{
    background-color: #5e5e5e;
}
.clients-block{
    width: calc(100% + 30px);
    margin-top: 50px;
    padding-bottom: 73px;
}
.client__logo{
    width: 168px;
    height: 168px;
    margin-right: 30px;
    display: block;
}
.client__logo img{
    border: solid 1px #96a9b8;
}
.clients-block .slick-dots{
    bottom: 0;
}
.clients-block .slick-dots li button:before{
    background-color: #5e5e5e;
}
.contacts-block-wrap{
    display: flex;
    min-height: 574px;
    height: 574px;
}
.contacts-block-wrap > div{
    width: 50%;
    position: relative;
}
.contacts-block-wrap .parallax__group{
    height: 574px;
}
.contacts-block-wrap .parallax__layer--back {
    transform: translateZ(-1px) scale(4);
}
.letter-form-wrap{
    padding: 100px 100px 100px 0;
    display: flex;
    justify-content: flex-end;
    /*position: absolute;
    top: 0;
    right: 0;*/
    background-image: url("../img/content/main__letter-form.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
#letter-form{
    max-width: 465px;
}
.letter-form__title{
    font-size: 24px;
    line-height: 1.07;
    color: #ffffff;
    text-align: center;
}
.request-form__result{
    color: #ffffff;
    margin-top: 10px;
}
.letter-form__body{
    margin-top: 20px;
    position: relative;
}
#letter-form input,
#letter-form textarea{
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: rgba(255, 255, 255, 0.28);
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    padding: 0 12px;
    margin-bottom: 20px;
}
#letter-form textarea{
    height: 85px;
    resize: none;
    padding: 12px;
}
#letter-form label.error {
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: rgba(255, 255, 255, 0.7);
    margin-top: -60px;
    left: calc(100% + 10px);
    right: calc(-70% - 10px);
    justify-content: flex-start;
    z-index: 1;
    display: block;
}
.faq-form__body label.error{
    position: relative;
    display: inline;
    top: -80px;
}
.faq-form__body textarea + label.error{
    top: -130px;
}
.faq-form__body .form__agree-confirmation label.error{
    top: 0;
    display: block;
}
#feedb-form .form__agree-confirmation input + label.error{
    top: -5px;
    display: block;
}
#letter-form *::placeholder          {font-size: 12px; color: #bdbdbd;}
#letter-form *::-moz-placeholder     {font-size: 12px; color: #bdbdbd;}
#letter-form *:-moz-placeholder      {font-size: 12px; color: #bdbdbd;}
#letter-form *:-ms-input-placeholder {font-size: 12px; color: #bdbdbd;}
.map-block-wrap{
    position: relative;
}
#map{
    width: 100%;
    height: 100%;
}
.map__address-button{
    position: absolute;
    width: 172px;
    height: 37px;
    line-height: 37px;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: none;
}
.map__address-wrap{
    position: absolute;
    z-index: -100;
    left: 25px;
    top: 62px;
    width: 311px;
    box-shadow: 0 2px 20px 0 rgba(105, 105, 105, 0.25);
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}
.map__address-wrap.active{
    visibility: visible;
    opacity: 1;
    z-index: 0;
}
.map__city-title{
    width: 100%;
    box-sizing: border-box;
    padding-left: 75px;
    height: 53px;
    line-height: 53px;
    background-color: #303030;
    font-size: 16px;
    font-weight: normal;
    color: #ffffff;
    position: relative;
}
.map__city-title:hover{
    cursor: pointer;
}
.map__city-title .icon-ic{
    font-size: 17px;
    left: 42px;
    line-height: 53px;
    position: absolute;
}
.map__city-addr-wrap{
    box-sizing: border-box;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.map__city-title.active + .map__city-addr-wrap{
    height: 311px;
    visibility: visible;
    opacity: 1;
}
.map__city-addr{
    padding: 30px 20px 60px 20px;
    font-size: 16px;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.map__city-title.active + .map__city-addr-wrap .map__city-addr{
    visibility: visible;
    opacity: 1;
}
.map__city-addr a{
    display: block;
    line-height: 1.3;
}
.map__city-addr a:hover{
    color: #e83e38;
}
.map__city-addr a.buy__table-cont--viber,
.map__city-addr a.buy__table-cont--whatsapp{
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/*                 КАТАЛОГ                */
.category-block{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-top: 50px;
    padding-bottom: 70px;
}
.category__item{
    display: block;
    width: calc(25% - 32px);
    max-width: calc(50% - 32px);
    flex-grow: 1;
    flex-shrink: 1;
    height: 200px;
    margin: 0 16px 30px 16px;
    position: relative;
    box-sizing: border-box;
}
.category__img-wrap{
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}
.category__img-wrap img{
    position: absolute;
    display: block;
    height: 100%;
    width: auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.category__img-hover{
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #316773;
    transition: all 0.2s;
}
.category__item:hover .category__img-hover{
    opacity: 0.7;
}
.category__title{
    position: absolute;
    width: 100%;
    /*max-width: 260px;*/
    bottom: 0;
    left: -20px;
    height: 88px;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #316773;
    opacity: 0.82;
}
.category__title span{
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.cat-banner{
    height: 350px;
    overflow: hidden;
    position: relative;
}

.cat-banner > div{
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.cat-banner .cat-banner__title{
    font-size: 36px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 350px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.cat-banner--538{
    height: 538px;
}
.cat-banner img{
    width: auto;
    min-width: 100%;
    max-width: 150%;
    height: auto;
    min-height: 100%;
    max-height: 200%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cat-banner__hover{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.8;
    background-color: #316773;
}
.catalog-page__catalog h1{
    font-size: 36px;
    font-weight: normal;
    margin-top: 60px;
}
.catalog{
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
}
.sidebar{
    width: 290px;
    margin-right: 20px;
    flex-shrink: 0;
}
.sidebar__choose{
    display: flex;
    justify-content: space-between;
}
.sidebar__choose-tab{
    width: 140px;
    height: 40px;
    line-height: 40px;
    background-color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s;
}
.sidebar__choose-tab.active,
.sidebar__choose-tab:hover{
    background-color: #3c3c3c;
    color: white;
}
.sidebar__choose-tab:hover{
    cursor: pointer;
}
.sidebar__choose-tab.active:hover{
    cursor: default;
}

#catalog-search{
    margin-top: 40px;
    background-color: #ffffff;
    position: relative;
}
#catalog-search .search-field{
    height: 36px;
    line-height: 36px;
    border: solid 1px #e0e0e0;
    width: 100%;
    font-size: 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 35px 0 18px;
}
#catalog-search .search-field::-webkit-input-placeholder {color:#bdbdbd;
    text-align: center;}
#catalog-search .search-field::-moz-placeholder          {color:#bdbdbd;
    text-align: center;}/* Firefox 19+ */
#catalog-search .search-field:-moz-placeholder           {color:#bdbdbd;
    text-align: center;}/* Firefox 18- */
#catalog-search .search-field:-ms-input-placeholder      {color:#bdbdbd;
    text-align: center;}

#catalog-search .search-field + button{
    position: absolute;
    top: 10px;
    right: 55px;
    background-color: transparent;
    transition: all 0.2s;
}

#catalog-search label{
    font-size: 17px;
    color:#bdbdbd;
    transition: all 0.2s;
    display: block;
    position: absolute;
    top: 10px;
    right: 55px;
}
#catalog-search label:hover{
    cursor: pointer;
}
#catalog-search .search-field:focus ~ label,
#catalog-search .search-field.active ~ label{
    color: #3c3c3c;
    right: 18px;
}
#catalog-search .search-field:focus + button,
#catalog-search .search-field.active + button{
    right: 18px;
}
#catalog-search button span{
    font-size: 17px;
    color:#bdbdbd;
    transition: all 0.2s;
}
#catalog-search .search-field:focus + button > span{
    color: #3c3c3c;
}
.sidebar-wrap{
    position: relative;
    margin-top: 25px;
}
.sidebar__block{
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
}
.sidebar__block.active{
    display: block;
}
.sidebar__block-title{
    padding: 0 20px;
}
.sidebar__block-title--bttm .sidebar__title-more{
    padding: 30px 0;
}
.sidebar__title-name{
    padding: 27px 0;
    font-size: 18px;
    font-weight: 500;
}
.sidebar__title-more{
    display: flex;
    justify-content: flex-end;
    padding-bottom: 16px;
}
.sidebar__title-more a{
    font-size: 12px;
    font-weight: 300;
    color: #5e5e5e;
    text-decoration: underline;
    transition: all 0.2s;
}
.sidebar__title-more a:hover{
    color: #3c3c3c;
}
.smart-filter_item{
    background-color: #ffffff;
    position: relative;
}
.smart-filter_item:not(:last-child){
    border-bottom: 1px solid #e0e0e0;
}
.smart-filter_title{
    padding: 23px 50px 23px 23px;
    position: relative;
    background-color: #ffffff;
}
.smart-filter_title:hover{
    cursor: pointer;
}
.smart-filter_title.opened{
    background-color: transparent;
}
.smart-filter_title > span{
    font-family: 'Roboto' !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}
.smart-filter_title > span::before{
    font-family: lednikoff;
    font-size: 7px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
    transition: all 0.2s;
}
.smart-filter_title.opened > span::before{
    transform: translateY(-50%) rotateZ(180deg) ;
}
.smart-filter_params-box{
    height: 0;
    opacity: 0;
    padding: 0 20px;
    visibility: hidden;
    border-top: 0 solid #e0e0e0;
    transition: all 0.2s;
}
.smart-filter_title.opened + .smart-filter_params-box{
    height: auto;
    padding: 30px 20px;
    opacity: 1;
    visibility: visible;
    border-top: 1px solid #e0e0e0;
}
.slider-range--inputs{
    display: flex;
    justify-content: space-between;
}
.slider-range--input{
    width: 115px;
    height: 23px;
    line-height: 23px;
    padding: 0 10px;
    font-weight: 300;
    border: solid 1px #e0e0e0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
.slider-track{
    width: calc(100% - 24px);
    height: 2px;
    background-color: #e0e0e0;
    position: relative;
    margin: 0 auto;
    margin-top: 31px;
}
.slider-handle{
    width: 24px;
    height: 24px;
    background-color: rgba(60, 60, 60, 0.63);
    position: absolute;
    border-radius: 50%;
    top: -11px;
}
.slider-handle.left{
    margin-left: -11px;
}
.slider-handle.right{
    margin-right: -12px;
}
.slider-handle:active{
    background-color: rgba(232, 62, 56, 0.54);
}
.slider-handle::before{
    content: "";
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3c3c3c;
    top: 9px;
    left: 9px;
}
.slider-handle:active::before{
    background-color: #e83e38;
}
.smart-filter_params-box ul{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-left: -5px;
}
.smart-filter_params-box li{
    margin: 0 3px 9px 2px;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.smart-filter_params-box li:hover,
.smart-filter_params-box label:hover,
.smart-filter_params-box label:hover span{
    cursor: pointer;
}
.smart-filter_params--color_href li{
    width: 34px;
    height: 34px;
    padding: 0;
    margin: 0 5px 9px 5px;
}
.smart-filter_params--color_href li:hover .hint-elem{
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}
.smart-filter_params--list li > span,
.smart-filter_params--list li label > span{
    font-size: 13px;
    border: solid 1px #e0e0e0;
    padding: 5px 3px;
    display: block;
    background-color: #ffffff;
}
.smart-filter_params--list li > span.select-all-input{
    color: #1e1b17;
    border: solid 1px #e0e0e0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.smart-filter_params--list li > span.select-all-input:hover{
    cursor: pointer;
}
.smart-filter_params--color_href li > span.select-all-input{
    font-size: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}
.smart-filter_params-box li input{
    display: none;
}
.smart-filter_params-box li label{
    width: 100%;
    height: 100%;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s;
}
.smart-filter_params-box li label.bx-filter-param-label.disabled{
    opacity: 0.35;
}
.smart-filter_params-box li label.bx-filter-param-label.disabled:hover,
.smart-filter_params-box li label.bx-filter-param-label.disabled:hover span{
    cursor: default;
}
.smart-filter_params--color_href li label{
    border: solid 1px #e0e0e0;
}
.smart-filter_params--color_href li label:hover,
.smart-filter_params--color_href li input:checked + label{
    border: solid 1px #bf9450;
}
.smart-filter_params-box li label:hover > span{
    border: solid 1px #bf9450;
}
.smart-filter_params-box li input:checked + span{
    border: solid 1px #bf9450;
    background-color: #bf9450;
    color: #ffffff;
}
.bx-filter-container-modef{
    display: block;
    position: absolute;
    z-index: 10;
    background-color: #ffffff;
    top: -30px;
}
#modef{
    position: relative;
    height: 43px;
    width: 330px;
}
#modef > div{
    height: 100%;
    width: 165px;
    line-height: 43px;
    border: solid 1px #3c3c3c;
    border-right: none;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}
#modef .button--red{
    width: 165px;
    height: 43px;
    top: 0;
    right: 0;
    font-size: 14px;
}
.bx-filter-button-box{
    background-color: #3c3c3c;
    padding: 25px 35px 30px 35px;
}
.bx-filter-static-result{
    font-size: 18px;
    line-height: 1.18;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}
.bx-filter-button-box .button--red{
    font-size: 14px;
    font-weight: bold;
    display: block;
    height: 40px;
    width: 100%;
}
.items-block{
    flex-grow: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
}
.items-found{
    position: absolute;
    top: -37px;
    right: 0;
}
.sort-block{
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    position: relative;
}
.items-block:before{
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 310px);
    height: 1px;
    background-color: #e0e0e0;
    top: 40px;
    left: -310px;
}
.sort__params{
    list-style: none;
    display: flex;
    padding-left: 15px;
}
.sort__param{
    margin-left: 40px;
}
.sort__param.selected a,
.sort__param a:hover{
    color: #e83e38;
}
.sort__qty{
    position: relative;
}
.sort__qty-result-wrap:hover{
    cursor: pointer;
}
.sort__qty-result{
    border: none;
    width: 38px;
    margin-right: 9px;
    background-color: #f0f0f0;
}
.sort__qty-result:hover{
    cursor: pointer;
}
.sort__qty-result-wrap{
    width: 74px;
    padding: 0 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.sort__qty-result-wrap span{
    font-size: 7px;
    transform-origin: center;
    display: inline-block;
    height: 16px;
    line-height: 18px;
    transition: all 0.2s;
}
.sort__qty.opened .sort__qty-result-wrap span{
    transform: rotateZ(180deg);
}
.sort__qty-vars{
    list-style: none;
    background-color: #e0e0e0;
    position: absolute;
    right: 0;
    top: 28px;
    height: 0;
    visibility: hidden;
    opacity: 0;
    width: 74px;
    z-index: 1;
    transition: all 0.2s;
}
.sort__qty.opened .sort__qty-vars{
    height: auto;
    visibility: visible;
    opacity: 1;
}
.sort__qty-vars li{
    height: 39px;
}
.sort__qty-vars li a{
    height: 40px;
    line-height: 40px;
    padding: 0 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.sort__qty-vars li a:hover,
.sort__qty-vars li.active a{
    color: #e83e38;
}

.catalog__items-wrap{
    padding-top: 101px;
    padding-bottom: 60px;
}
.catalog__item{
    width: 100%;
    background-color: #ffffff;
    display: flex;
    flex-grow: 1;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 20px;
}
.catalog__item:hover{
    box-shadow: 0 10px 20px 0 rgba(117, 118, 118, 0.14);
}
.catalog__item-img{
    width: 166px;
    height: 200px;
    position: relative;

}
.catalog__item-img--inner{
    overflow: hidden;
    position: absolute;
    width: 166px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.7s;
}
.catalog__item-img img{
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s;
}
.catalog__item-img--zoom{
    width: 34px;
    height: 34px;
    background-color: rgba(255,255,255,0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.catalog__item-img:hover .catalog__item-img--zoom{
    opacity: 1;
    visibility: visible;
}
.catalog__item-img--inner.active{
    height: 300px;
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%)
}
.catalog__item-img--inner.active:hover .catalog__item-img--zoom{
    opacity: 0;
    visibility: hidden;
}
.catalog__item-img--zoom .icon-ic{
    font-size: 26px;
    position: absolute;
    top: 3px;
    left: 5px;
    color: #828282;
}
.catalog__item .product__info-actions-btns{
    margin-top: 20px;
    margin-left: 6px;
}
.catalog__item .product__info-actions-btns .icon-ic{
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
}
.catalog__item-main-info{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-left: 20px;
    max-width: 497px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.catalog__item .product__info-color{
    position: absolute;
    right: 14px;
    top: 14px;
    width: 16px;
    height: 16px;
    border: solid 1px #3c3c3c;
    margin: 0;
}
.catalog__item .product__info-color:after{
    width: 16px;
    height: 16px;
    top: -1px;
    left: -1px;
    border: solid 1px #bf9450;
}
.catalog__item .hint-elem{
    font-size: 10px;
    right: 50%;
    top: -25px;
    left: auto;
}
.catalog__item-article{
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}
.catalog__item-name{
    font-size: 18px;
    line-height: 1.18;
    margin-top: 16px;
    padding-right: 25px;
    font-weight: 500;
}
.catalog__item-article:hover,
.catalog__item-name:hover{
    color: #e83e38;
    text-decoration: underline;
}
.catalog__item-descr-wrap{
    max-height: 200px;
    overflow: hidden;
}
.catalog__item-descr-wrap>*{
    display: block;
}
.catalog__item-descr{
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-top: 12px;
    padding-right: 35px;
    transition: all 0.2s;
}
.catalog__item-descr:hover{
    color: #000000;
}
.catalog__item-satelites{
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.6px;
    color: #5e5e5e;
    text-decoration: underline;
}
.catalog__item .catalog__item-satelites{
    margin-left: 6px;
    margin-top: 10px;
    white-space: nowrap;
    display: block;
}
.catalog__item > .catalog__item-satelites{
    display: none;
}
.catalog__item-satelites:hover{
    color: #bf9450;
}
.sale-item__buy--catalog{
    width: 147px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}
.sale-item__buy--catalog .sale-item__price{
    margin-top: 54px;
    margin-left: 11px;
}
.sale-item__buy--catalog .sale-item__price-old{
    line-height: 1.2;
    margin-bottom: 10px;
    white-space: nowrap;
    text-align: left;
}
.sale-item__buy--catalog .sale-item__price-cur{
    line-height: 1.2;
    font-size: 20px;
    font-weight: bold;
    color: #3c3c3c;
    white-space: nowrap;
    text-align: left;
    margin-top: 0;
}
.sale-item__buy--catalog .sale-item__price-cur small{
    font-weight: normal;
}
.catalog__item .buy-block__form-inner{
    margin-top: auto;
    margin-bottom: 10px;
}
/*.catalog__item .sale-item__buy-form{
    height: 100%;
}*/
.catalog__item .buy-block__wrap{
    margin-top: 0;
}
.catalog__item .buy-block__item-avail{
    /*text-align: left;*/
    /*margin-left: 5px;*/
    width: 70px;
    text-align: center;
}
.catalog__item .buy-block__buy-btns{
    margin-top: auto;
    position: relative;
    left: -78px;
}
.catalog__item .sale-item__buy-form .button {
    margin-top: 0;
    width: 125px;
    height: 40px;
    padding: 0 20px;
}
.catalog__item .buy-block__tocart-btn.active_el{
    background-color: #3c3c3c;
    border: solid 1px #3c3c3c;
    color: #ffffff;
    text-align: left;
    padding-left: 0;
}
.catalog__item .buy-block__tocart-btn.active_el::before{
    font-size: 14px;
    right: 10px;

}
.catalog__item .buy-block__buy-btn{
    margin-left: 10px;
}
.catalog__pagination-wrap{
    position: relative;
    width: 100%;
}
.catalog-page__catalog .catalog__pagination-wrap{
    position: relative;
    width: calc(100% + 310px);
    margin-left: -310px;
}
.catalog__pagination{
    width: 100%;
    display: flex;
    justify-content: center;
}
.catalog__pagination-list{
    list-style: none;
    display: flex;
}
.catalog__pagination-item{
    width: 32px;
    height: 32px;
    margin: 0 10px;
}
.catalog__pagination-item a{
    display: block;
    font-size: 16px;
    width: 100%;
    height: 100%;
    line-height: 32px;
    text-align: center;
}
.catalog__pagination-item a.active{
    box-shadow: 0 4px 6px 0 rgba(60, 60, 60, 0.15);
    background-color: #3c3c3c;
    color: white;
}
.catalog__pagination-item a:hover{
    text-decoration: underline;
}
.catalog__pagination-item a.active:hover {
    text-decoration: none;
    cursor: default;
}
.catalog__pagination-item a span{
    font-size: 7px;
    color: #5e5e5e;
    display: block;
    transition: all 0.2s;
}
.catalog__pagination-item.disabled a span{
    opacity: 0.5;
}
.catalog__pagination-item.disabled a:hover span{
    cursor: default;
}
.catalog__pagination-arrow a{
    display: flex;
}
.catalog__pagination-arrow a:hover{
    text-decoration: none;
}
.catalog__pagination-arrow a:hover span{
    color: #3c3c3c;
}
.catalog__pagination-arrow--left a span{
    transform: rotateZ(90deg);
}
.catalog__pagination-arrow--left a span:first-child{
    margin-right: -8px;
}
.catalog__pagination-arrow--right a span{
    transform: rotateZ(-90deg);
}
.catalog__pagination-arrow--right a{
    margin-left: 8px;
}
.catalog__pagination-arrow--right:last-child a{
    margin-left: 0px;
}
.catalog__pagination-arrow--right a span:first-child{
    margin-left: 8px;
}
.catalog__pagination-arrow--right:last-child a span:last-child{
    margin-left: -8px;
}
.catalog__pagination-info{
    position: absolute;
    right: 0;
    top: 0;
}
.catalog__pagination-info-text{
    font-size: 16px;
    line-height: 32px;
}
/*категории*/
.category-list{
    background-color: #ffffff;
    list-style: none;
    width: 100%;
}
.category-list--sub{
    opacity: 0;
    visibility: hidden;
    height: 0;
}
.category-list__link.active + .category-list--sub{
    opacity: 1;
    visibility: visible;
    height: auto;
}
.category-list__item span{
    border-bottom: 1px solid #e0e0e0;
    display: block;
    line-height: 46px;
    height: 46px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 21px;
}
.category-list__link{
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    height: 46px;
    width: 100%;
    align-items: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 21px;
    position: relative;
    transition: all 0.2s;
}
.category-list:not(.category-list--sub) > li:last-child a{
    border-bottom: none;
}
.category-list--level_3 .category-list__link{
    padding-left: 33px;
}
.category-list--level_3 .category-list__link:before{
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    left: 19px;
    top: 20px;
    background-color: #3c3c3c;
    transition: all 0.2s;
}
.category-list--level_3 .category-list__link.active:before{
    background-color: #e83e38;
}
.category-list--level_3 .category-list__link:hover:before{
    background-color: #ffffff;
}
.category-list__link.active{
    color: #e83e38;
}
.category-list__link:hover{
    background-color: #fb615c;
    color: #ffffff;
}
.category__archive{
    width: 100%;
    height: 40px;
    text-align: center;
}

.category__archive a{
    text-transform: uppercase;
    font-weight: 500;
    height: 40px;
    background-color: #696969;
    line-height: 42px;
    color: #ffffff;
    display: block;
}
.category__archive a:hover{
    background-color: #3c3c3c;
}

/************ ИНФОРМАЦИОННЫЕ СТРАНИЦЫ***************/
.info-page{
    padding-bottom: 100px;
    background-color: #f0f0f0;
}
.info-page h2 {
    font-size: 36px;
    font-weight: normal;
    margin-top: 60px;
}
.info-page h3{
    font-size: 28px;
    font-weight: normal;
    text-align: left;
    text-transform: none;
}
.cat-banner--info-details h1{
    text-transform: initial;
    font-size: 42px;
}
.share-block{
    margin-top: 60px;
}
.share-block .icon-ic_share{
    font-size: 21px;
    margin-right: 10px;
    color: #3c3c3c;
    position: relative;
    display: inline-block;

}
.share-block .icon-ic_share .share-block__buttons{
    position: absolute;
    display: flex;
    align-items: center;
    left: 0;
    min-height: 40px;
}
.share-block .icon-ic_share .share-block__buttons:before{
    content: "Поделиться:";
    position: relative;
    display: block;
    font-size: 16px;
    font-family: Roboto;
    color: #3c3c3c;
    margin-right: 15px;
    display: none;
}
.share-block .icon-ic_share .icon-ic{
    font-size: 27px;
    color: #BDBDBD;
    display: block;
}
.share-block .icon-ic_share .icon-ic.icon-ic_insta{
    font-size: 40px;
}
.share-block .icon-ic_share .icon-ic.icon-ic_vk{
    margin-left: 5px;
}
.share-block .icon-ic:hover{
    color: #bf9450;
    cursor: pointer;
}
/*НОВОСТИ*/
.info-page .news-block-wrap{
    width: calc(100% + 30px);
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
    margin-left: -15px;
    padding-top: 60px;
}
.news-content--news a{
    text-decoration: underline;
}
.info-page .news__item{
    width: calc((100% - 91px)/3 );
    margin: 0 15px 60px 15px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 541px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s;
}
.info-page .news__item:hover{
    box-shadow: 0 10px 20px 0 rgba(117, 118, 118, 0.14);
}
.info-page .news__img{
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
.info-page .news__img img{
    position: relative;
    height: auto;
    width: 100%;
    top: 0;
}
.info-page .news__descr-wrap{
    padding: 30px 25px 30px 20px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: flex-start;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.info-page .news__title{
    margin-top: 0;
    width: 100%;
}
.info-page .news__title a{
    transition: all 0s;
}
.info-page .news__title a:hover{
    color: #3c3c3c;
    position: relative;
    text-decoration: underline;
    text-decoration-color:#bf9450;
}
.info-page .news__date{
    margin-top: 15px;
}
.info-page .news__more{
    margin-top: auto;
}
.cat-banner--info-details + .info-page .news__date{
    margin-top: 40px;
}
.news__content-wrap{
    /*margin-bottom: 80px;*/
    margin-top: 40px;
    background-color: #ffffff;
    padding: 30px 20px 60px 20px;
}
.news__content-wrap p{
    margin: 20px 0;
}
.news__content-wrap p:first-child{
    margin-top: 0;
}
.news__content-wrap ol,
.news__content-wrap ul{
    padding-left: 20px;
}
.news__content-wrap li{
    margin: 10px 0;
}
.news__content-wrap img{
    margin: 20px;
    max-width: 100%;
}
.news__content-wrap table{
    margin: 20px 0;
    width: 100%;
    border: solid 1px #e0e0e0;
    border-collapse: collapse;
}
.news__content-wrap table th{
    background-color: #f4f3f3;
    padding: 24px 10px;
}
.news__content-wrap table td{
    border: solid 1px #e0e0e0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
}
.news__content-wrap ul{
    padding-left: 20px;
}
.news__content-wrap li{
    margin: 10px 0;
}
.news__content-wrap .table-wrap{
    width: 100%;
    overflow-x: auto;
}
a.back-to-main{
    width: 214px;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 60px;
    text-decoration: none;
}
.info-page .nav-links{
    margin-top: 100px;
    display: flex;
}
.nav-link{
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.6px;
    color: #5e5e5e;
    text-decoration: underline;
}
.nav-link:hover{
    color: #bf9450;
}
.nav-link--prev{
    margin-right: 60px;
    position: relative;
}
.nav-link--prev::before{
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 20px;
    right: -30px;
    top: 0;
    background-color: #bf9450;
}
.info-page .additional-goods{
    padding-top: 40px;
    padding-bottom: 0;
}

/*ПРОЕКТЫ*/
.news-block-wrap--projects .news__img{
    height: auto;
}
.news-block-wrap--projects .news__item{
    min-height: 628px;
}
.news-block-wrap--projects .news__text-copyr{
    margin: 10px 0;
}
.info__gallery{
    padding-top: 60px;
}
.info__gallery h1{
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 20px;
}
.info__gallery-wrap .slick-list{
    padding: 40px 0 !important;
}
.info__gallery-wrap img {
    margin: 0 15px;
    transition: all 0.5s;
    box-shadow: 0 10px 30px 0 rgba(189, 189, 189, 0.7);
    width: auto;
    height: auto;
    max-height: 585px;
}
.info__gallery-wrap img.slick-current.slick-active{
    margin-top: -10px;
}
.info__gallery .slick-slider button{
    width: 94px;
    height: 94px;
    border-radius: 50%;
    box-shadow: 0 10px 15px 0 rgba(189, 189, 189, 0.26);
    border: solid 1px #979797;
    background-color: rgba(255, 255, 255, 0.79);
    opacity: 0.5;
    transition: all 0.2s;
    z-index: 1;
    margin-top: -50px;
}
.info__gallery .slick-slider button:hover{
    opacity: 1;
}
.info__gallery .slick-prev{
    left: 265px;
    transform: rotateZ(90deg);
}
.info__gallery .slick-next{
    right: 265px;
    transform: rotateZ(-90deg);
}
.info__gallery  .slick-slider button:before{
    content: none;
}
.info__gallery .slick-slider button span:before{
    font-size: 13px;
    color: #5e5e5e;
}
.info__gallery ~ .info-page .news__content-wrap{
    margin-bottom: 100px;
}
/*.info__gallery ~ .info-page .back-to-main{
    margin-top: 60px;
    margin-right: 40px;
    float: left;
}
.info__gallery ~ .info-page .share-block{
    margin-top: 80px;
}
.info__gallery ~ .info-page .share-block .icon-ic_share{
    line-height: 40px;
}*/

/*КАТАЛОГИ*/
.news-block-wrap--catalogs{
    margin-bottom: 0;
}
.news-block-wrap--catalogs .news__img{
    height: auto;
}
.news-block-wrap--catalogs .news__item{
    min-height: 693px;
}
.news-block-wrap--catalogs .news__text p{
    margin-bottom: 10px;
}
.news-block-wrap--catalogs .news__dwnld{
    margin-top: auto;
}
.news-block-wrap--catalogs .button--white{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    width: 143px;
    height: 40px;
    line-height: 40px;
    border: solid 1px #e0e0e0;
    position: relative;
    text-align: left;
    padding: 0;
    padding-left: 20px;
    margin-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.news-block-wrap--catalogs .button--white:hover{
    padding-left: 20px !important;
}
.news-block-wrap--catalogs .button--white .icon-ic{
    margin-left: 20px;
    transition: all 0s;
}
.news-block-wrap--catalogs .news__dwnld span{
    white-space: nowrap;
}

/*ВИДЕО*/
.news-block-wrap--video .news__item{
    width: calc((100% - 60px)/2 );
    min-height: 600px;
}
.news-block-wrap--video .news__img{
    position: relative;
}
.news-block-wrap--video .news__img::before{
    content: "";
    background: url("../img/play.svg");
    display: block;
    position: absolute;
    width: 47px;
    height: 48px;
    background-size: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s;
    z-index: 1;
    opacity: 0.5;
}
.news-block-wrap--video .news__img:hover::before{
    opacity: 1;
    width: 49px;
    height: 50px;
}
.news-block-wrap--video .news__img::after{
    content: "";
    position: absolute;
    background-color: rgba(224, 224, 224, 0.35);
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.news-block-wrap--video .news__img:hover::after{
    opacity: 1;
    visibility: visible;
}
.news-block-wrap--video .news__date{
    position: absolute;
    left: 16px;
    bottom: 13px;
}
.news-block-wrap--video .news__text{
    margin-bottom: 30px;
}
.info__gallery--video .info__gallery-wrap{
    width: 1140px;
    height: 774px;
    margin: 0 auto;
    padding-bottom: 40px;
    position: relative;
}
.info__gallery--video .info__gallery-preview{
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.info__gallery--video .info__gallery-preview::before{
    content: "";
    width: 176px;
    height: 176px;
    position: absolute;
    background: url("../img/play.svg") 100% 100% no-repeat;
    -webkit-background-size: cover;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.5s;
}
.info__gallery--video .info__gallery-preview:hover::before{
    width: 180px;
    height: 180px;
}
.info__gallery--video .info__gallery-preview::after{
    background-color: rgba(237, 22, 56, 0.41);
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.info__gallery--video .news__date{
    bottom: 20px;
    left: 20px;
    position: absolute;
    display: none;
}
.info__gallery--video iframe{
    width: 100%;
    height: 100%;
}
.info__gallery--video .info__gallery-buttons{
    position: absolute;
    top: calc(50% - 47px);
    transform: translateY(-50%);
    width: 100%;
}
.info__gallery--video .info__gallery-buttons > a{
    display: block;
    position: absolute;
    width: 94px;
    height: 94px;
    box-shadow: 0 10px 15px 0 rgba(189, 189, 189, 0.26);
    border: solid 1px #979797;
    background-color: rgba(255, 255, 255, 0.79);
    border-radius: 50%;
    transform-origin: center;
    opacity: 0.5;
    transition: all 0.2s;
}
.info__gallery--video .info__gallery-buttons > a:hover{
    opacity: 1;
}
.info__gallery--video .info__gallery-buttons > .info__gallery-button--prev{
    transform: rotateZ(90deg);
    left: -9vw;
}
.info__gallery--video .info__gallery-buttons > .info__gallery-button--next{
    transform: rotateZ(-90deg);
    right: -9vw;
}
.info__gallery--video .info__gallery-buttons > a span{
    color: #5e5e5e;
    font-size: 13px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.info__gallery--video .icon-ic_scroll{
    font-size: 36px;
    color: #ffffff;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    transition: all 0.2s;
}
.info__gallery--video .icon-ic_scroll:hover{
    cursor: pointer;
    opacity: 1;
}
.info-page h4{
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
}

/*ВОПРОС-ОТВЕТ*/
.faq__form-wrap{
    margin-top: 40px;
}
.faq__form-button{
    width: 163px;
    height: 40px;
    margin-top: 30px;
    text-transform: uppercase;
}
#modal__faq-form,
#modal__order-mount-form{
    padding: 60px;
    width: 592px;
}
.faq-form-title,
.feedb-form-title{
    font-size: 28px;
}
#faq-form,
#order-mount-form,
#feedb-form{
    margin-top: 42px;
}
#faq-form .text-input-field,
#order-mount-form .text-input-field,
.contacts-form .text-input-field,
#feedb-form .text-input-field{
    margin-bottom: 20px;
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: #ffffff;
    font-size: 12px;
    padding: 0 10px;
}
#faq-form textarea.text-input-field,
#order-mount-form textarea.text-input-field,
#feedb-form textarea.text-input-field{
    height: 85px;
    padding: 10px;
    resize: none;
}
#order-mount-form .form__agree-confirmation input + label.error{
    position: absolute;
    top: -5px;
}
.news-block-wrap.news-block--faq{
    display: block;
}
.news-block--faq .news__item.active{
    background-color: #ffffff;
}
.news-block--faq .news__item{
    padding: 30px 20px;
    min-height: auto;
    transition: all 0.2s;
    border: solid 1px #f4f3f3;
    margin-bottom: 20px;
    background-color: #ffffff;
    width: 100% !important;
}
.news-block--faq .news__item:hover{
    -webkit-box-shadow: 0 10px 20px 0 rgba(117, 118, 118, 0.14);
    -moz-box-shadow: 0 10px 20px 0 rgba(117, 118, 118, 0.14);
    box-shadow: 0 10px 20px 0 rgba(117, 118, 118, 0.14);
}
.news-block--faq .news__item.active:hover{
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.news-block--faq .news__descr-wrap {
    padding: 0;
    display: block;
}
.info-page .news-block--faq .news__title a:hover{
    text-decoration: none;
    color: #3c3c3c;
    cursor: default;
}
.news-block--faq .news__text p,
.news-block--faq .news__text > div{
    margin-bottom: 20px;
}
.news-block-wrap .news__text ul,
.news-block-wrap .news__text ol{
    padding-left: 20px;
}
.news-block-wrap .news__text li{
    margin: 10px 0;
}
.news-block-wrap .news__text a{
    text-decoration: underline;
}
.news-block-wrap .news__text a:hover{
    color: #e83e38;
}
.news-block--faq .news__item .news__text--preview{
    display: block;
    margin-top: 16px;
}
.news-block--faq .news__item.active .news__text--preview{
    display: none;
}

.news-block--faq .news__item .news__text--full{
    display: none;
}
.news-block--faq .news__item.active .news__text--full{
    display: block;
    margin-top: 16px;
}
.news-block--faq .news__item .news__more{
    display: inline-block;
    opacity: 1;
    visibility: visible;
    height: auto;
    transition: all 0.2s;
}
.news-block--faq .news__item.active .news__more{
    display: none;
}
.news-block--faq .news__item .button{
    display: none;
    width: 125px;
    height: 40px;
    text-transform: uppercase;
    margin-top: 40px;
    color: #ffffff;
}
.news-block--faq .news__item.active .button{
    display: flex;

}

/*СХЕМЫ НИШ ДЛЯ МОНТАЖА*/
.news-block--assembling .news__item{
    min-height: 460px;
    background-color: #ffffff;
    position: relative;
}
.news-block--assembling .news__item:after{
    content: "";
    border: 1px solid #E0E0E0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.2s;
    z-index: 1;
}
.news-block--assembling .news__item:hover:after{
    opacity: 0;
    visibility: hidden;
}
.news-block--assembling .news__img{
    background-color: #fbfbfb;
}
.news-content--assembling{
    margin-top: 60px;
    margin-bottom: 100px;
}
.news-content--assembling .news__scheme-wrap{
    background-color: #fbfbfb;
    text-align: center;
    margin-bottom: 100px;
   /* min-height: auto;*/
}
.news-content--assembling p{
    font-size: 16px;
}
.news-content--assembling ~ .back-to-main{
    text-transform: none;
    text-decoration: underline;
    font-size: 14px;
    margin-top: 100px;
    display: inline-block;
    font-weight: normal;
    line-height: normal;
    height: auto;
    width: auto;
    background-color: transparent;
}
.news-content--assembling ~ .back-to-main:hover{
    color: #bf9450;
    cursor: pointer;
}
 /*ЭЛЕКТРОСХЕМЫ*/
.news-block--schemes .news__item{
    min-height: 550px;
}
.news-block--schemes .news__img{
    height: 270px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.news__scheme-wrap{
    /*min-height: 672px;*/
    background-color: #fbfbfb;
    display: flex;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    align-items: center;
    margin-top: 60px;
}
.news__scheme-wrap img{
    width: 100%;
    margin: 20px 0;
}
.news-content--schemes.news__content-wrap{
    margin-top: 20px;
}
.news-content--schemes .news__descr-wrap{
    /*border: solid 1px #f4f3f3;*/
    background-color: #ffffff;
    padding: 10px 0 0 0;
    margin-top: 0;
}
.news-content--schemes .news__descr-wrap p{
    margin: 0;
}
.news-content--schemes .button--grey{
    width: 192px;
    height: 40px;
    text-transform: uppercase;
    background-color: #e0e0e0;
    font-weight: 500;
    color: #445562;
    margin-top: 60px;
    margin-bottom: 40px;
    transition: all 0.2s;
}
.news-content--schemes .button--grey:hover{
    background-color: #eaf2f8;
    color: #445562;
}
.news-content--schemes .button--grey span{
    font-size: 20px;
    margin-left: 20px;
    transition: all 0s;
}
/*СТАТЬИ*/

.news-block--articles .news__descr-wrap{
    min-height: 358px;
}
.news__content--articles ~ .back-to-main{
    margin-top: 0;
    margin-right: 40px;
    float: left;
}
.news__content--articles ~ .share-block .icon-ic_share{
    height: 40px;
    line-height: 40px;
}

/*СЕРТИФИКАТЫ*/

.news-block--certificates .news__item{
    border: 1px solid #E0E0E0;
    min-height: 571px;
    flex-grow: 0;
}
.news-block--certificates .news__img .icon-ic{
    position: absolute;
    display: block;
    font-size: 130px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: #3c3c3c;
    transition: all 0.2s;
}
.news-block--certificates .news__img:hover .icon-ic{
    color: #ff0019;
}
.news-block--certificates .news__descr-wrap{
    padding-bottom: 0;
    position: relative;
}
.news-block--certificates .news__dwnld,
.news-block--plugin .news__dwnld,
.news-block--software .news__dwnld{
    height: 62px;
    background-color: #c3c4c5;
    display: flex;
    align-items: center;
    width:100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.2s;
}
.news-block--certificates .news__dwnld:hover,
.news-block--plugin .news__dwnld:hover,
.news-block--software .news__dwnld:hover{
    background-color: #c7d7e3;
}
.news-block--certificates .news__dwnld .button,
.news-block--plugin .news__dwnld .button,
.news-block--software .news__dwnld .button{
    width: 143px;
    height: 40px;
    border: solid 1px #e0e0e0;
    background-color: #fdfdfd;
    color: #445562;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 20px;
    margin-right: 23px;
    transition: all 0.2s;
}
.news-block--certificates .news__dwnld:hover .button,
.news-block--plugin .news__dwnld:hover .button,
.news-block--software .news__dwnld:hover .button{
    color: #445562;
    background-color: #eaf2f8;
}
.news-block--certificates .news__dwnld .button > span{
    font-size: 20px;
    margin-left: 20px;
}

/*ПО*/
.news-block--software .news__item{
    min-height: 540px;
}
.news-block--software .news__descr-wrap{
    padding: 20px 20px 62px 20px;
    position: relative;
}
.news-block--software .news__dwnld .button > span,
.news-block--plugin .news__dwnld .button > span{
    display: none;
}

/*КАЛЕНДАРЬ СОБЫТИЙ*/
.calendar-wrap{
    display: flex;
    margin-top: 37px;
}
.events__type-wrap{
    width: 292px;
    flex-shrink: 0;
}
.calendar__events-select{
    height: 55px;
    line-height: 55px;
    background-color: #3c3c3c;
    color: #ffffff;
    font-size: 16px;
    padding-left: 20px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: uppercase;
    position: relative;
    display: none;
}
.calendar__events-select .icon-ic{
    font-size: 7px;
    color: #ffffff;
    position: absolute;
    right: 14px;
    top: 25px;
}
.events-type__list{
    height: auto;
    visibility: visible;
    opacity: 1;
    transition: all 0.2s;
}
.events-type__list.hidden{
    height: 0;
    visibility: hidden;
    opacity: 0;
}
.events-type__list li{
    height: 55px;
    line-height: 55px;
    list-style: none;
    background-color: #ffffff;
    margin-bottom: 1px;
    font-size: 18px;
    text-transform: uppercase;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*.events-type__list li:hover,*/
.events-type__list li.active{
    box-shadow: 0 12px 36px 0 rgba(60, 60, 60, 0.14);
}
.events-type__list li a{
    display: block;
    padding-left: 30px;
}
.events-type__list li a:hover,
.events-type__list li.active a{
    color: #ffffff;
    background-color: #3c3c3c;
}
.events-wrap{
    border: solid 1px #f2f5f8;
    background-color: #ffffff;
    padding: 30px 20px;
    flex-basis: 100%;
}
.events__title{
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
}
.events__filter{
    margin-top: 40px;
}
.events__filter-years{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.events__filter-years-wrap a{
    display: inline-block;
    padding: 0 20px;
    height: 30px;
    line-height: 30px;
    margin-right: 20px;
    margin-bottom: 7px;
    text-decoration: underline;
    transition: all 0.2s;
}
.events__filter-years-wrap a:hover,
.events__filter-years-wrap a.active{
    box-shadow: inset 0 0 20px 0 rgba(150, 169, 184, 0.4);
    background-color: #f4f3f3;
    font-weight: 500;
    text-decoration: none;
}
.events__filter-clear{
    font-size: 12px;
    text-decoration: underline;
    margin-left: 20px;
}
.events__filter-months{
    margin-top: 30px;
}
.events__filter-months a{
    display: inline-block;
    padding: 0 20px;
    height: 30px;
    line-height: 30px;
    margin-right: 20px;
    margin-bottom: 7px;
    font-size: 12px;
    transition: all 0.2s;
}
.events__filter-months a:hover,
.events__filter-months a.active{
    box-shadow: inset 0 0 20px 0 rgba(150, 169, 184, 0.4);
    background-color: #f4f3f3;
    font-weight: 500;
}
.events-wrap .news-block-wrap{
    width: calc(100% + 20px);
    margin-left: -10px;
    padding-bottom: 0;
    justify-content: center;
}
.news__item.news__item--calendar{
    width: calc((100% - 60px)/3);
    height: 190px;
    min-height: auto;
    background-image: url("../img/content/event_bgnd.jpg");
    background-size: cover;
    margin: 0 10px 60px 10px;
    position: relative;
}
.news__item.news__item--calendar:before{
    position: absolute;
    background-color: rgba(245, 248, 250, 0.94);
    content: "";
    display: block;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transition: all 0.2s;
    z-index: 0;
}
.news__item.news__item--calendar:hover{
    box-shadow: none;
}
.news__item.news__item--calendar:hover:before{
    background-color: rgba(0, 83, 163, 0.73);
}
.news__item.news__item--calendar.disable:hover:before{
    background-color: rgba(245, 248, 250, 0.94);
}
.news__item--calendar .news__descr-wrap{
    position: relative;
    z-index: 1;
    padding: 0;
}
.news__item--calendar .news__date{
    height: 30px;
    background-color: #bedff8;
    line-height: 30px;
    font-size: 12px;
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    margin-top: 0;
    width: 100%;
    color: #3c3c3c;
    transition: all 0.2s;
}
.news__item--calendar .news__date:before{
    content: none;
}
.news__item--calendar:hover .news__date{
    background-color: transparent;
    color: #ffffff;
}
.news__item--calendar.disable .news__date{
    background-color: #e0e0e0;
}
.news__item--calendar.disable:hover .news__date{
    color: #3c3c3c;
}
.news__item--calendar .news__point{
    opacity: 0;
    visibility: hidden;
    margin-top: 5px;
    padding-left: 10px;
    font-size: 12px;
    color: #ffffff;
    transition: all 0.2s;
}
.news__item--calendar:hover .news__point{
    opacity: 1;
    visibility: visible;
}
.news__item--calendar.disable:hover .news__point{
    color: #3c3c3c;
}
.news__item--calendar .news__point span{
    margin-right: 10px;
    transition: all 0s;
}
.news__item--calendar .news__title{
    height: 95px;
    display: flex;
    align-items: center;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.news__item--calendar .news__title a{
    font-size: 18px;
    font-weight: 500;
    color: #3c3c3c;
    text-align: center;
    transition: all 0.2s;
}
.news__item--calendar:hover .news__title a{
    color: #ffffff;
    text-decoration: none;
}
.news__item--calendar.disable:hover .news__title a{
    color: #3c3c3c;
}
.calendar__buttons{
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.calendar__buttons .button{
    width: 84px;
    height: 24px;
    font-size: 12px;
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.news__item--calendar:hover .calendar__buttons .button{
    opacity: 1;
    visibility: visible;
}
.news__item--calendar.disable:hover .calendar__buttons .button--red{
    opacity: 0;
    visibility: hidden;
}
.info-page--calendar .catalog__pagination{
    justify-content: flex-start;
}
.events-wrap.events-wrap--detail{
    padding: 40px 20px 60px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 292px);
}
.events-wrap.events-wrap--detail .news-block-wrap{
    padding-top: 0;
    width: 100%;
    margin-left: 0;
}
.events-wrap--detail h2{
    margin-top: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: none;
}
.event__announce{
    margin-top: 20px;
}
.event__info-wrap{
    background-color: #f4f3f3;
    margin-top: 40px;
    padding: 20px 100px 20px 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.event__info-row{
    margin-bottom: 20px;
}
.event__info-row:last-child{
    margin-bottom: 0;
}
.event__info-row p{
    display: inline-block;
    width: 115px;
    font-size: 12px;
    font-weight: 500;
}
.event__info-row span{
    margin-left: 15px;
    font-weight: normal;
    font-size: 12px;
}
.event__place a{
    font-size: 12px;
    display: inline-block;
}
.event__place a p{
    text-decoration: underline;
    display: inline-block;
}
.event__place a span{
    text-decoration: none;
    margin-right: 5px;
}
.event__content-wrap{
    padding: 10px 0;
}
.event__content-wrap p{
    margin: 20px 0;
    line-height: 1.23;
}
#event-map-wrap{
    width: 100%;
    height: 323px;
}
.event-reg__item-form{
    margin-top: 60px;
    width: 100%;
}
.event-reg__item-form .contacts-form-title{
    font-size: 18px;
}
#event-reg-form{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
#event-reg-form > div{
    width: calc((100% - 20px)/2);
}
#event-reg-form input{
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#event-reg-form label.error{
    margin-top: -85px;
    padding: 8px 0;
}
#event-reg-form textarea{
    height: 100px;
    padding: 10px;
    resize: none;
}
#event-reg-form  .reg-form__type-payer {
    margin: -5px 0 15px 0;
}
#event-reg-form .reg-form__type-payer label{
    font-size: 12px;
    color: #5e5e5e;
}
#event-reg-form .reg-form__type-payer label:before{
    width: 14px;
    height: 14px;
}
#event-reg-form .reg-form__type-payer input:checked ~ label:before{
    border-color: #e83e38;
}
#event-reg-form .reg-form__type-payer label:after{
    left: 3px;
    top: 3px;
}
#event-reg-form .form__agree-confirmation{
    margin-top: 0;
    margin-bottom: 10px;
}
#event-reg-form .form__agree-confirmation label.error{
    display: block;
    font-size: 10px;
    margin-top: -20px;
}
#event-reg-form .button--red{
    font-size: 14px;
    font-weight: bold;
    line-height: 42px;
}
.events-wrap--detail .share-block{
    margin-top: 40px;
}










/*КАЛЬКУЛЯТОРЫ*/
.calculator{
    background-color: #f0f0f0;
    margin-top: -60px;
    padding-top: 60px;
}
.news-block--calc .news__item{
    min-height: 455px;
}
.news-block--calc .news__descr-wrap{
    padding: 20px;
}
.calculator .sort__qty-result{
    background-color: #ffffff;
}
/*Calc 1*/
.calc__card-wrap{
    padding: 30px 20px;
    border: solid 1px #f2f5f8;
    background-color: #ffffff;
    margin-top: 60px;
}
.calc__card-wrap h2{
    font-size: 28px;
    font-weight: normal;
    margin-top: 0;
}
.calc__params-wrap{
    background-color: #f4f3f3;
    padding: 30px 40px 30px 20px;
    margin-top: 20px;
}
.calc__params-inputs{
    display: flex;
}
.calc__params-left{
    margin-right: 100px;
}
.calc__param-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.calc__param-wrap:last-child{
    margin-bottom: 30px;
}
.calc__param-wrap p{
    margin-right: 23px;
    width: 177px;
    max-width: 177px;
    display: inline-block;
}
.calc__param-wrap .buy-block__items{
    width: 100px;
    height: 30px;
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    transition: all 0.2s;
}
.calc__param-wrap .buy-block__items input{
    font-size: 12px;
}
.calc__param-wrap .buy-block__items button{
    font-size: 18px;
}
.calc__param-wrap .buy-block__items.focus{
    border: solid 1px #96a9b8;

}
.calc__param-wrap .buy-block__items.focus *{
    background-color: #f5f8fa;
}
.calc__params-right{
    flex-grow: 1;
    flex-basis: 100%;
}
.calc__params-right .calc__param-wrap{
    justify-content: flex-start;
}
.calc__param-wrap .personal__control-category--wrap{
    box-shadow: 0 2px 8px 0 rgba(53, 54, 83, 0.18);
    width: 220px;
}
.calc__params-right .calc__param-wrap p{
    width: 126px;
    /*flex-shrink: 0;*/
}
.calc__param-wrap .personal__control-category--wrap .personal__category::after{
    width: 100%;
}
.calc__param-wrap .personal__control--long{
    width: 100%;
    max-width: 488px;
}
.calc__param-wrap .personal__control-category--wrap .personal__category{
    width: 100%;
}
.calc__param-wrap .personal__control-category--wrap .personal__category::after{
    width: 100%;
}
.calc__param-wrap .personal__control-category--wrap input{
    height: 30px;
    line-height: 30px;
    border: none;
    font-size: 12px;
    width: calc(100% - 30px);

}
.calc__param-wrap .personal__control-category--wrap li{
    display: block;
    height: auto;
}
.calc__param-wrap .personal__control-category--wrap li a{
    line-height: 1.5;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
}
.calc__param-wrap .personal__control-category--wrap.active .personal__category,
.calc__param-wrap .personal__control-category--wrap.active ul,
.calc__param-wrap .personal__control-category--wrap.active input{
    background-color: #f5f8fa;
}
.calc__params-result{
    background-color: #ffffff;
    text-align: center;
    padding: 32px 0;
    width: calc(100% + 60px);
    margin-left: -20px;
}
.calc__params-result--name span{
    font-weight: 500;
    color: #e83e38;
    margin-left: 30px;
}
.calc__params-buttons{
    padding-top: 30px;
    display: flex;
    justify-content: center;
}
.calc__params-buttons .button{
    width: 220px;
    height: 30px;
    text-transform: uppercase;
    font-size: 10px;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.calc__params-buttons .button:first-child{
    margin-right: 40px;
}
.calc__params-buttons .button--grey{
    color: #ffffff;
}
.calc__params-buttons .button--transp{
    color: #5e5e5e;
    border: solid 1px #5e5e5e;
}
.calc__result-wrap{
    margin-top: 30px;
}
.calc__result-info{
    font-weight: 500;
}
.calculator .personal__favorites-sort{
    display: flex;
    justify-content: space-between;
}
.calc__result-sort{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.calc__result-wrap .form__agree-confirmation{
    margin: 0 !important;
}
.calculator .personal__control-qty{
    margin-left: 20px;
}
.calc__result-goods{
    display: flex;
    flex-wrap: wrap;
    padding-left: 2px;
    padding-bottom: 30px;
}
.calculator .additional-goods__item-wrap{
    width:calc(100%/4);
    margin: 30px 0 30px -1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 0 2px 15px 0 rgba(105, 105, 105, 0.1);
    border: solid 1px #e0e0e0;
}
.calculator .additional-goods__article-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
.calculator .additional-goods__article-wrap .form__agree-confirmation{
    margin-bottom: 0;
    margin-right: 10px !important;
}
.calculator .additional-goods__article-wrap .form__agree-confirmation label{
    width: 13px;
    height: 13px;
}
.calculator .additional-goods__article-wrap .additional-goods__article{
    margin-top: 0;
}

/*Calc 2*/
.calc__params-center{
    width: 100%;
}
.calc__params-center .calc__param-wrap{
    width: 100%;
    justify-content: flex-start;
}
.calc__params-center .calc__param-wrap p{
    margin-right: 23px;
    width: 177px;
    max-width: 177px;
    display: inline-block;
}
.calc__params-center .calc__param-wrap .personal__control--long{
    max-width: 572px;
}
.calc__param-wrap .calc__param-wrap--searchtype{
    width: 175px;
}
.calc__params-left--short{
    margin-right: 25px;
}
input.calc__search-type,
.calc__search-type{
    width: 220px;
    height: 30px;
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
input.calc__search-type:focus{
    border: solid 1px #e5e5e5;
    background-color: #f5f8fa;

}
[hidden] {
    display: none !important;
}
/*calc 3*/
#form-calc_1 .calc__params-right p{
    width: auto;
    max-width: none;
}
#form-calc_1 input.calc__search-type{
    width: 157px;
}
.calc__params-result--name p{
    margin-top: 20px;
}
.calc__params-result--name p:first-child{
    margin-top: 0;
}
#form-calc_1 .calc__params-result--name p{
    text-align: left;
}
.calc__params-result--name p s{
    text-decoration: none;
    width: calc(50% - 40px);
    text-align: right;
    display: inline-block;
    margin-right: 20px;
}
/*calc 4*/
#form-calc_8 .calc__params-right p{
    width: auto;
    max-width: none;
}
#form-calc_8 input.calc__search-type,
#form-calc_8 .calc__params-right .personal__control-category--wrap{
    width: 157px;
}
#form-calc_8 .calc__params-result--name p{
    text-align: left;
}
.calc__params-result--summ{
    border: solid 1px rgba(224, 224, 224, 0.5);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 0;
}
/*calc 5*/
#form-calc_6 .calc__params-result--name p,
#form-calc_3 .calc__params-result--name p{
    text-align: left;
}
#form-calc_6 .calc__params-result--name p s{
    text-decoration: none;
    width: calc(50% - 40px);
    text-align: right;
    display: inline-block;
    margin-right: 20px;
    max-width: 203px;
    margin-left: calc(50% - 243px);
}
/*calc 6*/
#form-calc_2 .calc__params-right .calc__param-wrap p{
    width: 150px;
}
#form-calc_2 .calc__params-result--name p,
#form-calc_5 .calc__params-result--name p,
#form-calc_4 .calc__params-result--name p{
    text-align: left;
}
#form-calc_2 .calc__params-result--name p s,
#form-calc_3 .calc__params-result--name p s,
#form-calc_5 .calc__params-result--name p s,
#form-calc_4 .calc__params-result--name p s {
    text-decoration: none;
    width: calc(50% - 40px);
    text-align: right;
    display: inline-block;
    margin-right: 20px;
    max-width: 262px;
    margin-left: calc(50% - 302px);
}
/*calc 7*/
#form-calc_3 .calc__params-right .calc__param-wrap p,
#form-calc_5 .calc__params-right .calc__param-wrap p,
#form-calc_4 .calc__params-right .calc__param-wrap p{
    width: 160px;
}
/************СТАТИЧНЫЕ СТРАНИЦЫ***************/

.static-page{
    padding-bottom: 100px;
    /*overflow-x: hidden;*/
    background-color: #ffffff;
    padding-top: 100px;
    margin-top: -100px;
}
.static-page h2 {
    font-size: 36px;
    font-weight: normal;
    margin-top: 60px;
}
.static-page h3{
    font-size: 28px;
    font-weight: normal;
    text-align: left;
    text-transform: none;
}

/*Магазины*/
.static-page.static-page__buy{
    background-color: #f0f0f0;
}
.where-buy-block{
    margin-top: 40px;
}
.static-page .sidebar{
    width: 100%;
    margin-right: 0;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.static-page .sidebar::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    bottom: 0;
    left: 0;
}
.static-page .sidebar__choose-tab{
    width: auto;
    padding-right: 30px;
    padding-left: 30px;
}
.static-page .where-buy-block--contacts .sidebar__choose-tab:not(.active){
    background-color: #f4f3f3;
}
.static-page .where-buy-block--contacts .sidebar__choose-tab:not(.active):hover{
    background-color: #3c3c3c;
}
.static-page .sidebar__choose-tab:first-child{
    margin-right: 10px;
}
.map-list__selector{
    position: absolute;
    left: 50%;
    bottom: 11px;
}
.map-list__selector a{
    position: relative;
    font-family: "Roboto" !important;
}
.map-list__selector a:first-child{
    margin-right: 70px;
}
.map-list__selector a::before{
    position: absolute;
    font-size: 13px;
    left: -23px;
    font-family: lednikoff;
    top: 2px;
}
.map-list__selector a:hover,
.map-list__selector a:hover::before,
.map-list__selector a.active{
    color: #e83e38;

}
/*.map-list__selector a:hover{
    text-decoration: underline;
}*/
/*.map-list__selector a.active{
    background-color: rgba(232, 62, 56, 0.07);
}*/
.map-list__selector a.active span{
    font-weight: 500;
    text-decoration: underline;
}
.map-list__selector a.active::before{
    text-decoration: none;
}
.map-list__selector a.active_el:hover{
    cursor: default;
}
.to-main{
    position: absolute;
    right: 0;
    bottom: 11px;
    text-decoration: underline;
    display: block;
}
.to-main:hover{
    color: #bf9450;
}
.where-buy__content{
    width: 100%;
    position: relative;
    padding-top: 60px;
}
.where-buy__map{
    height: 800px;
}
.buy__table{
    width: 100%;
    border-spacing: 0;
    border: solid 1px #e0e0e0;
}
.buy__table th{
    background-color: #f4f3f3;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: solid 1px #e0e0e0;
    vertical-align: top;
    text-align: left;
}
.buy__table td{
    padding: 34px 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: solid 1px #e0e0e0;
    vertical-align: top;
    background-color: #ffffff;
}
.buy__table tr:last-child td{
    border: none;
}
.buy__table th:first-child,
.buy__table td:first-child{
    padding-left: 60px;
    width: 355px;
    max-width: 355px;
}
.buy__table td:nth-child(2){
    white-space: nowrap;
}
.buy__table th:last-child,
.buy__table td:last-child{
    padding-right: 60px;
}
.buy__table p span{
    display: block;
}
.buy__table-title{
    font-weight: 500;
    margin-bottom: 10px;
}
.buy__table-cont{
    margin-bottom: 10px;
    display: block;
    /*flex-wrap: wrap;*/
}
.buy__table-cont--tel-wrap{
    display: flex;
    flex-wrap: nowrap;
}
.buy__table-cont--tel-wrap-offset,
.buy__table-tel--wrap-offset{
    /*padding-left: 56px;*/
}
.buy__table-cont a{
    display: inline-block;
    margin-right: 10px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    width: 18px;
    height: 18px;
}
.buy__table-cont--viber{
    background-image: url('../img/viber.svg');
}
.buy__table-cont--whatsapp{
    background-image: url('../img/whatsapp.svg');
}
.buy__table-cont a.buy__table-cont--tel{
    width: auto !important;
    white-space: nowrap;
    margin-right: 0;
}
.buy__table-cont a:hover,
.buy__table-tel a:hover{
    color: #bf9450;
}
.buy__table-map-link{
    white-space: nowrap;
    text-decoration: underline;
}
.buy__table-map-link:hover{
    color: #e83e38;
}
.ymaps-2-1-74-balloon__close-button{
    color: #ffffff !important;
    background-image: url("../img/ic_cross-white.svg") !important;
    height: 30px !important;
}
.ymaps-2-1-74-balloon__content{
    margin-right: 0 !important;
    font-family: "Roboto" !important;
    padding: 0 !important;
    width: 311px !important;
}
.ymaps-2-1-74-balloon__content > ymaps{
    width: auto !important;
    height: auto !important;
}
.ymaps-2-1-74-balloon-content__header{
    margin-bottom: 0 !important;
}
.ymaps-2-1-74-balloon-content__header > div{
    color: #ffffff;
    background-color: #303030;
    font-size: 16px;
    font-weight: normal;
    padding: 17px 54px;
    font-family: "Roboto" !important;
}
.ymaps-2-1-74-balloon-content__header > div::before{
    font-family: lednikoff;
    margin-left: -20px;
    margin-right: 20px;
}
.balloon-content__body{
    padding: 20px 20px 0 20px;
    font-size: 16px;
}
.where-buy__map .balloon-content__body{
    padding-bottom: 20px;
}
.balloon-content__body p,
.balloon-content__body .buy__table-cont,
.balloon-content__body .buy__table-tel{
    margin-bottom: 20px;
}
.balloon-content__body p:last-child{
    margin-bottom: 0;
}
/*Партнерство*/
.static-page.static-page--partnership{
    padding-bottom: 0;
}
.static__text-wrap{
    font-size: 14px;
    margin-top: 40px;
}
.static__text-wrap p{
    margin: 20px 0;
    line-height: 1.4;
}
.static__text-wrap a{
    text-decoration: underline;
    transition: all 0.2s;
}
.static__text-wrap a:hover{
    color: #ed1638;
}
.static__list-wrap{
    margin: 100px 0;
}
.static__list{
    margin-top: 50px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.static__list-item{
    position: relative;
    padding-left: 78px;
    width: 327px;
    margin-bottom: 25px;
    margin-right: 120px;
}
.static__list-item img{
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.static__form-wrap{
    margin-top: 100px;
    background-image: url("../img/content/partner-form_1980x649.jpg");
    background-size: cover;
    padding: 50px 0 100px 0;
}
.static__form-wrap h3,
.static__form-wrap .partner-form__agree p,
.static__form-wrap .partner-form__agree p a{
    color: #ffffff;
}
#partner-form{
    margin-top: 40px;
    width: 465px;
    position: relative;
}
#partner-form .text-input-field{
    height: 40px;
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: #ffffff;
    font-size: 12px;
    margin-bottom: 25px;
    padding: 0 10px;
}
#partner-form textarea.text-input-field{
    height: 85px;
    padding: 10px;
    resize: none;
}
#partner-form .text-input-field::-webkit-input-placeholder {color:#797979;}
#partner-form .text-input-field::-moz-placeholder          {color:#797979;}/* Firefox 19+ */
#partner-form .text-input-field:-moz-placeholder           {color:#797979;}/* Firefox 18- */
#partner-form .text-input-field:-ms-input-placeholder      {color:#797979;}

#partner-form label.error{
    margin-top: -90px;
}
#partner-form textarea + label.error{
    margin-top: -140px;
}
.partner-form__agree,
.form__agree-confirmation{
    margin-top: -5px;
    margin-bottom: 20px;
    position: relative;
}
.partner-form__agree p,
.form__agree-confirmation p{
    font-size: 10px;
    color: #5e5e5e;
    margin-left: 20px;
}
.partner-form__agree p a,
.form__agree-confirmation p a{
    text-decoration: underline;
    transition: all 0.2s;
}
.partner-form__agree p a:hover,
.form__agree-confirmation p a:hover{
    color: #ed1638;
}
.partner-form__agree .checkbox-label,
.form__agree-confirmation .checkbox-label{
    width: 12px;
    height: 12px;
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: #ffffff;
    position: relative;
    display: block;
    -webkit-box-sizing: initial;
    -moz-box-sizing: initial;
    box-sizing: initial;
    float: left;
}
.partner-form__agree .checkbox-label:hover,
.form__agree-confirmation .checkbox-label:hover{
    cursor: pointer;
}
.partner-form__agree input:checked ~ .checkbox-label,
.form__agree-confirmation  input:checked ~ .checkbox-label{
    background-color: #ed1638;
}
.partner-form__agree .checkbox-label:before,
.form__agree-confirmation .checkbox-label:before{
    color: white;
    width: 10px;
    height: 10px;
    font-size: 10px;
    position: absolute;
    top: 2px;
    left: 1px;
    display: none;
}
.form__agree-confirmation .checkbox-label:before{
    left: 2px;
}
.partner-form__agree input:checked ~ .checkbox-label:before,
.form__agree-confirmation input:checked ~ .checkbox-label:before{
    display: block;
}
.partner-form__agree input + label.error,
.form__agree-confirmation  input + label.error{
    margin-top: -25px !important;
}
.partner-form__agree input + label.error a,
.form__agree-confirmation  input + label.error a{
    color: rgba(232, 62, 56, 0.8);
    text-decoration: underline;
}
#partner-form .button--red{
    font-size: 14px;
    font-weight: bold;
}

/*О бренде*/
.static__list--checked{
    display: block;
}
.static__list--checked .static__list-item{
    position: relative;
    padding-left: 42px;
    font-size: 18px;
    margin-bottom: 20px;
    width: 100%;
    margin-right: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.static__list--checked .static__list-item:last-child{
    margin-bottom: 0;
}
.static__list--checked .static__list-item::before{
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background-color: #e83e38;
    left: 0;
    border-radius: 50%;
}
.static__list--checked .static__list-item .icon-ic{
    color: #ffffff;
    position: absolute;
    left: 4px;
    top: 5px;
    font-size: 13px;
}
.static__inner-banner{
    width: 100%;
    height: 593px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
    margin-bottom: 100px;
}
.static__inner-banner img{
    width: auto;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
.static__inner-banner .container{
    width: 100%;
    padding: 100px;
}
.static__inner-banner h5{
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    line-height: 35px;
    width: 462px;
    height: 35px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    z-index: 1;
}
.static__inner-banner h5:before{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(to top, #e83e38, #ed1638);
    opacity: 0.65;
    z-index: -1;
}
.inner-banner__content{
    margin-top: 58px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.inner-banner__item{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.inner-banner__item.inner-banner__graph{
    width: 250px;
    height: 300px;
    padding-bottom: 55px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.inner-banner__item.inner-banner__graph::before{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(to top, #e83e38, #ed1638);
    opacity: 0.65;
    z-index: 0;
}
.inner-banner__item.inner-banner__graph .icon-ic{
    z-index: 1;
    display: block;
    font-size: 120px;
    text-align: center;
}
.inner-banner__item.inner-banner__graph p{
    font-size: 26px;
    font-weight: bold;
    margin-top: 30px;
    z-index: 1;
    text-align: center;
}
.static-page .share-block{
    margin-top: 100px;
}

/*Доставка и оплата*/
.static__info-wrap{
    margin-top: 60px;
}
.static__info-wrap .static__info-item{
    position: relative;
    width: 100%;
    display: flex;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 20px;
}
.static__info-wrap .static__info-item:nth-last-child(2n){
    background-color: #f4f4f4;
}
.static__img-wrap{
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.static__info-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 668px;
    flex-basis: 100%;
}
.static__info-content > *{
    margin-bottom: 10px;
}
.static__info-content > *:last-child{
    margin-bottom: 0;
}
.static__info-content .static__info-item--title{
    font-size: 16px;
    font-weight: 500;
}
.static__info-content .static__info-item--text a{
    font-weight: 500;
    text-decoration: underline;
}
.static__info-content > a{
    font-weight: 300;
    text-decoration: underline;
}
/*Услуга монтажа*/
.static__list--mount{
    justify-content: space-between;
}
.static__list--mount .static__list-item{
    padding-left: 0;
    margin-bottom: 50px;
    width: 495px;
    margin-right: 0;
}
.static__list--mount .static__list-item:nth-last-child(1),
.static__list--mount .static__list-item:nth-last-child(2){
    margin-bottom: 0;
}
.static__list--mount .static__list-item .icon-ic{
    font-size: 65px;
    color: #e83e38;
}
.static__list--mount .static__list-item .static__list-title{
    font-size: 16px;
    font-weight: 500;
    margin: 24px 0;
    text-transform: uppercase;
}
.static__list--mount .static__list-item p{
    margin-top: 9px;
    max-width: 461px;
}
.static__inner-banner--mount{
    height: 270px;
}
.static__inner-banner--mount .container{
    padding: 105px 100px;
}
.static__inner-banner--mount .inner-banner__content{
    margin-top: 0;
    align-items: center;
}
.static__inner-banner--mount .inner-banner__item{
    position: relative;
    padding-left: 70px;
}
.static__inner-banner--mount .inner-banner__item .inner-banner__item--title{
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 11px;
}
.static__inner-banner--mount .inner-banner__item .inner-banner__item--title b{
    font-weight: normal;
}
.static__inner-banner--mount .inner-banner__item .inner-banner__item--title span{
    font-size: 40px;
    color: #e0e0e0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.static__inner-banner--mount .inner-banner__item a{
    font-size: 20px;
    color: #e0e0e0;
    transition: all 0.2s;
}
.static__inner-banner--mount .inner-banner__item a:hover{
    color: #ffffff;
}
.static__inner-banner--mount .inner-banner__item a.button{
    width: 199px;
    height: 38px;
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 500;
}
.static__inner-banner--mount .inner-banner__item a.button:hover{
    color: #ffffff;
}
.static__submenu{
    padding: 0 24px;
    position: relative;
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
.static__submenu::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;

}
.static__submenu span{
    display: inline-block;
}
.static__submenu span:hover{
    cursor: pointer;
    color: #e83e38;
}
.static__submenu span.active{
    color: #e83e38;
}
.static__table{
    margin-top: 60px;
    padding-bottom: 100px;
}
.static__table-servise h2{
    margin-bottom: 60px;
}
.static__table-item{
    height: 148px;
    background-color: #f4f3f3;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 90px;
    margin-bottom: 1px;
}
.static__table-item img{
    width: 100px;
    height: 102px;
    margin-top: 20px;
    margin-right: 70px;
}
.static__table-servname{
    flex-grow: 1;
    max-width: 680px;
    padding-top: 31px;
    padding-left: 20px;
}
.static__table-servname > span{
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
}
.static__table-item .button{
    width: 178px;
    height: 40px;
    border: solid 1px #3c3c3c;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: uppercase;
    margin-top: 54px;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}
.static_note-important p{
    margin-bottom: 25px;
    font-size: 20px;
    color: #3c3c3c;
}
.static_note-important p:last-child{
    margin-bottom: 0;
}
.static_note-important p span{
    font-size: 28px;
    font-weight: 500;
    color: #e83e38;
}


/*Контакты*/
.where-buy__item-wrap{
    padding-top: 100px;
}
.where-buy__item-wrap:first-child{
    padding-top: 40px;
}
.where-buy__item-wrap:nth-child(2n){
    background-color: #f4f3f3;
}
.where-buy__item-wrap > .container{
    padding-bottom: 100px;
}
.where-buy__item-contacts-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.where-buy__item-contacts{
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: #ffffff;
    width: 354px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 25px 30px 60px;
    margin-right: 30px;
}
.where-buy__item-contacts > *{
    margin-bottom: 15px;
}
.where-buy__item-contacts > *:last-child{
    margin-bottom: 0;
}
.where-buy__item-contacts > .buy__table-title:last-of-type{
    margin-bottom: 10px;
}
.contacts__content .contacts-form{
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}
.contacts-form__show-btn{
    display: none;
}
.contacts__content .contacts-form-title{
    font-size: 18px;

}
.contacts__content .contacts-form > div{
    width: 362px;
}
.contacts__content .contacts-form > div:last-child{
    margin-left: 30px;
}
.contacts__content .contacts-form textarea{
    height: 100px;
    padding: 10px;
    resize: none;
}
.contacts__content .contacts-form .reg-form__type-payer {
    margin-top: 0;
}
.contacts__content .contacts-form .reg-form__type-payer label{
    font-size: 12px;
}
.contacts__content .contacts-form .reg-form__type-payer label:before{
    width: 14px;
    height: 14px;
}
.contacts__content .contacts-form .reg-form__type-payer input:checked ~ label:before{
    border: solid 1px #e83e38;
}
.contacts__content .contacts-form .reg-form__type-payer label:after{
    left: 3px;
    top: 3px;
}
.contacts__content .contacts-form label.error{
    margin-top: -85px;
}
.contacts__content .contacts-form .button--red{
    font-size: 14px;
}
.where-buy__item-buttons{
    margin-top: 28px;
    display: flex;
}
.where-buy__item-buttons .button--white{
    width: 217px;
    height: 36px;
    font-size: 16px;
    text-transform: none;
    margin-right: 40px;
}
.where-buy__item-coords-wrap > div{
    height: 0;
    transition: all 0.2s;
}
div[data-scheme="map"]{
    height: 525px;
    width: 100%;
}

div[data-scheme="scheme"]{
    height: 370px;
    padding-bottom: 20px;
}
.where-buy__item-coords-wrap > div img{
    margin: 0 auto;
    max-width: 100%;
}
/*Плагин*/
.news-block--plugin .news__item{
    width: 455px !important;
    height: 590px;
    background-image: url("../img/content/plugin-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/*Форма обратной связи*/

.feedb__wrap{
    margin-top: 40px;
}
.feedb__items-wrap{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.feedb__items-wrap > div {
    width: calc((100% - 31px)/2);
}
.feedb__items-wrap .button{
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}
.feedb__form,
.feedb__additional > div{
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s;
}
.feedb__form:hover,
.feedb__additional > div:hover{
    box-shadow: 0 10px 20px 0 rgba(117, 118, 118, 0.14);
}
.feedb__form{
    padding: 45px 45px 40px 45px;
}
.feedb__additional > div:first-child{
    /*margin-bottom: 30px;*/
}
.feedb__additional > div{
    /*height: calc((100% - 30px)/2);*/
    text-align: center;
}
.feedb__additional > div span.icon-ic{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #ed1638;
    width: 47px;
    height: 47px;
    border: 1px solid #ed1638;
    border-radius: 50%;
    transition: all 0.2s;
}
.feedb__additional > div:hover span.icon-ic{
    border: 1px solid #bf9450;
}
.feedb__call{
    /*padding-top: 63px;
    padding-bottom: 20px;*/
    padding: 63px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feedb__call-title{
    font-size: 28px;
}
.feedb__call-number{
    font-size: 25px;
    font-weight: 500;
    margin-top: 14px;
}
.feedb__call-number a{
    position: relative;
    transition: all 0.2s;
}
.feedb__call-number .icon-ic{
    left: -70px;
    top: -47px;
}
.feedb__call > a{
    margin-top: 40px;
    font-size: 20px;
    text-decoration: underline;
    display: inline-block;
}
.feedb__call a:hover{
    color: #bf9450;
    text-decoration: underline;
}
.feedb__chat{
    padding-top: 70px;
    padding-bottom: 20px;
    display: none;
}
.feedb__chat .feedb__call-title{
    position: relative;
    display: inline-block;
}
.feedb__chat .feedb__call-title .icon-ic{
    top: 0;
    left: -68px;
}
.feedb__chat .button{
    width: 217px;
    height: 40px;
    margin: 30px auto 0 auto;
    text-transform: uppercase;

}

/*О компании*/
.static-page--about{
    overflow: hidden;
}
.static__about{
    height: 540px;
    background-color: #f2f8fd;
    position: relative;
}
.static__about:first-child{
    margin-top: 100px;
}
.static__about-content{
    width: 50%;
    background-color: #ffffff;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.static__about--left .static__about-content{
    padding-right: 90px;
}
.static__about--right .static__about-content{
    margin-left: 50%;
    padding-left: 90px;
}
.static__about-content h2{
    margin-top: 0;
    margin-bottom: 20px;
}
.static__about .static__text-wrap{
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
}
.static__about-content li{
    position: relative;
    list-style: none;
    margin: 20px 0;
    padding-left: 44px;
}
.static__about-content li span{
    position: absolute;
    display: block;
    font-size: 20px;
    left: 0;
    top: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.static__about-content li:hover span{
    color: #ed1638;
}
.static__about-img{
    width: 440px;
    height: 410px;
    position: absolute;
}
.static__about--left .static__about-img{
    right: 65px;
    bottom: -35px;
}
.static__about--right .static__about-img{
    left: 65px;
    top: -35px;
}
.static__about--left .static__about-img img{
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.static__about-slider{
    height: 243px;
    width: 100vw;
    transform: skewY(-5.4deg) translateX(-50%);
    background-color: #999999;
    left: 50%;
    top: 35px;
    position: absolute;
    display: flex;
}
.static__about-slider img{
    margin-left: 10px;
    transform: skewY(5.4deg);
}
.static__about-info{
    position: relative;
    padding-top: 100px;
    padding-bottom: 90px;
}
.static__about-info > img{
    position: absolute;
    width: 1716.3px;
    height: 172.4px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.static__about-info-title{
    padding-top: 64px;
    font-size: 28px;
    position: relative;
}
.static__about-info-title span{
    color: #ed1638;
}
.static__about-chart{
    box-shadow: 0 10px 20px 0 rgba(117, 118, 118, 0.14);
    background-image: linear-gradient(to top, #e83e38, #ed1638 43%, #ed1638);
    position: relative;
    display: inline-block;
    margin-top: 200px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}
.static__about-chart-text{
    font-weight: 500;
    color: #ffffff;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}
.static__about-chart-text li{
    margin-bottom: 10px;
    list-style: none;
}
.static__about-chart-text li:last-child{
    margin-bottom: 0;
}
.static__about-chart-in,
.static__about-chart-out{
    position: absolute;
    display: flex;
}
.static__about-chart-in--top{
    top: -7px;
    left: -248px;
}
.static__about-chart-in--bottom{
    bottom: -33px;
    left: -248px;
}
.static__about-chart-item{
    width: 64px;
    height: 64px;
    box-shadow: 0 10px 20px 0 rgba(117, 118, 118, 0.25);
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.static__about-chart-in--top .static__about-chart-item:first-child{
    margin-right: 20px;
}
.static__about-chart-in--top .static__about-chart-item:nth-of-type(2){
    margin-right: 6px;
}
.static__about-chart-in--bottom .static__about-chart-item:first-child{
    background-color: #ed1638;
    margin-top: -26px;
    margin-right: 0;
}
.static__about-chart-in--bottom .static__about-chart-item:nth-of-type(2){
    margin-left: -5px;
    margin-right: 5px;
}
.static__about-chart-out{
    top: 35px;
    right: -250px;
}
.static__about-chart-out .static__about-chart-item:nth-of-type(2){
    margin-left: 20px;
}
.static__about-chart-out .static__about-chart-item:nth-of-type(1){
    margin-left: 7px;
}
.static__about-chart-out .icon-ic{
    font-size: 50px;
    color: #ff0019;
}
.static__about-social{
    padding-top: 100px;
    padding-bottom: 10px;
}
.static__about-social-title{
    font-size: 28px;
}
.static__about-social-links{
    margin-top: 40px;
}
.static__about-social-links a{
    font-size: 40px;
    color: #3c3c3c;
}
.static__about-social-links a:hover{
    color: #bf9450;
}
.static__about-social-buttons{
    margin-top: 100px;
    display: flex;
}
.static__about-social-buttons .button{
    width: 214px;
    height: 40px;
    margin-right: 34px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.static__about-social .icon-ic_share{
    font-size: 28px;
}
/*Страница поиска*/
.search-page{
    padding: 50px 0;
}
.search-query{
    height: 38px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #ffffff !important;
    font-size: 14px !important;
}
.search-page .search-button{
    height: 38px;
    width: 70px;
    color: #ffffff;
    font-size: 14px !important;
}
.search-page .search-result{
    margin-top: 20px;
}
.search-page .catalog__items-wrap{
    padding-top: 0;
}
.search-page .catalog__item-main-info{
    max-width: none;
}
/*Потилика конфиденциальности*/
.static-page--privacy{
    background-color: #f0f0f0;
}
.static-page--privacy--wrap{
    background-color: #ffffff;
    padding: 20px;
    margin-top: 60px;
}
.static-page--privacy--wrap h2{
    margin-top: 0;
}
.static-page--privacy h4{
    margin-top: 40px;
}
.static-page--privacy p:last-child{
    margin-top: 40px;
}

/*404*/
.static-page.static-page--404-wrap{
    background-color: #f0f0f0;
}
.static-page--404{
    width: 100%;
    height: 350px;
    background-image: url("../img/content/404.jpg");
    background-size: cover;
    background-position: center;
    /*margin-top: 60px;*/
    padding-top: 123px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.static__404-header{
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
}
.static__404-text{
    margin-top: 20px;
    max-width: 532px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}
.static-page--404 + .button--gold{
    width: 317px;
    height: 57px;
    margin: 100px auto 0 auto;
}
.static-page + .personal,
.static-page + .personal .additional-goods{
    margin-top: 0;
    padding-top: 0;
}

/***************************************************/
/**************ЛИЧНЫЙ КАБИНЕТ***********************/
/***************************************************/

.personal{
    background-color: #f0f0f0;
    margin-top: -60px;
    padding-top: 60px;
}
.personal h2{
    font-size: 36px;
    font-weight: normal;
    text-transform: none;
    margin-top: 60px;
}
.personal__card-wrap{
    display: flex;
    align-items: flex-start;
    margin-top: 40px;
    width: 100%;
}
.personal__menu{
    width: 291px;
    flex-shrink: 0;
}
.personal__menu ul.personal__menu-select-list{
    width: 100%;
    list-style: none;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.2s;
}
.personal__menu ul.personal__menu-select-list.hidden{
    height: 0;
    opacity: 0;
    visibility: hidden;
}
.personal__menu li{
    height: 55px;
    margin-bottom: 1px;
}
.personal__menu li a{
    height: 100%;
    line-height: 55px;
    padding-left: 30px;
    background-color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}
.personal__menu li a:hover,
.personal__menu li.active a{
    box-shadow: 0 12px 36px 0 rgba(60, 60, 60, 0.14);
    background-color: #3c3c3c;
    color: #ffffff;
}
li.personal__menu-name{
    background-color: #376fa6;
    padding: 14px 30px;
    height: auto;
}
.personal__menu-name--name{
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.personal__menu-name--email{
    color: #ffffff;
}
li.personal__menu-cart{
    height: 53px;
    border: 1px solid #ffffff;
}
li.personal__menu-cart a{
    position: relative;
    line-height: 53px;
}
li.personal__menu-cart:hover,
li.personal__menu-cart.active{
    border: solid 1px rgba(237, 22, 56, 0.16);
}
li.personal__menu-cart a:hover,
li.personal__menu-cart.active a{
    background-color: #ffe7ea;
    color: #e83e38;
}
.personal__menu-cart span.personal__menu-cart--qty{
    text-transform: none;
}
.personal__menu-cart span.personal__menu-cart--qty *{
    font-weight: 500;
    font-style: normal;
}
.personal__menu-cart span.personal__menu-cart--triang{
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-left:7px solid #e83e38;
    border-top:9px solid transparent;
    border-bottom:9px solid transparent;
    top: 18px;
    right: 15px;
}

.personal__block {
    background-color: #ffffff;
    flex-grow: 1;
    padding: 30px 20px;
    align-self: stretch;
    flex-basis: 100%;
}
.personal__block-title{
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
}
.personal__block-data{
    margin-top: 10px;
}
.personal__field{
    height: 56px;
    width: 100%;
    background-color: #f4f3f3;
    margin: 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 20px;
    flex-grow: 1;
}
.personal__field-title{
    width: 40%;
    flex-shrink: 1;
    margin-right: 20px;
}
.personal__input{
    display: flex;
}
.personal__input-field{
    pointer-events:none;
    border: none;
    background-color: transparent;
    width: fit-content;

}
.personal__input.edit .personal__input-field{
    pointer-events: all;
    width: 200px;
    height: 30px;
    border: solid 1px #e0e0e0;
    background-color: #f9f8f8;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
}
.personal__input .icon-ic{
    color: #bf9450;
    font-size: 24px;
    display: block;
    margin-left: 15px;
}
.personal__input.edit .icon-ic{
    display: none;
}
.personal__input .icon-ic:hover{
    cursor: pointer;
}
.personal__input .reg-form__type-payer label{
    font-size: 14px;
}
.personal__input .reg-form__type-payer label:before {
    width: 14px;
    height: 14px;
}
.personal__input  .reg-form__type-payer input:checked ~ label:before{
    border: solid 1px #e83e38;
}
.personal__input .reg-form__type-payer label:after {
    left: 3px;
    top: 3px;
}
.personal__input span:not(.icon-ic){
    color: #659c08;
    margin: 0 20px;
    display: block;
    height: 24px;
    line-height: 28px;
}
.personal__address{
    display: flex;
    align-items: center;
}
.personal__field--address.empty .personal__address--active{
    display: none;
}
#modal-pass-form,
#modal-addr-form{
    width: 294px;
    padding: 0;
}
#modal-pass-form .button,
#modal-addr-form .button{
    font-size: 10px;
    margin-top: 10px;
    height: 28px;
    line-height: 28px;
}
#modal-pass-form .auth-form__footer,
#modal-addr-form .auth-form__footer{
    padding: 0;
}
.text-input-field--wrap{
    display: flex;
    justify-content: space-between;
}
.text-input-field--wrap input{
    width: calc((100% - 20px)/2);
}
.select-input-field--wrap{
    position: relative;
}
.select-input-field--wrap:hover{
    cursor: pointer;
}
.select-input-field--wrap input{
    pointer-events:none;
}
.select-input-field--wrap > span{
    display: block;
    position: absolute;
    color: #3c3c3c;
    top: 0;
    right: 0;
    font-size: 6.5px;
    padding: 11px;
}
.select-input-field--wrap > span:hover{
    cursor: pointer;
    color: #000000;
}
.select-input__list{
    position: absolute;
    list-style: none;
    font-size: 10px;
    color: #3c3c3c;
    width: 100%;
    max-height: 168px;
    overflow-x: auto;
    z-index: 5;
    top: 27px;
    border: solid 1px #dbdbdb;
    background-color: #ffffff;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.select-input__list--city{
    z-index: 1;
}
.select-input__list.active{
    height: auto;
    opacity: 1;
    visibility: visible;
}
.select-input__list li a,
.select-input__list li span{
    line-height: 28px;
    padding: 0 10px;
    display: block;
}
.select-input__list a:hover{
    color: #e83e38;
    cursor: pointer;
}
#modal-addr-form .form__agree-confirmation{
    margin-top: 10px;
}
.address__field-wrap{
    border: solid 1px #f4f3f3;
    padding: 20px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}
.address__field-wrap.active{
    display: block;
}
.address__field{
    display: flex;
    align-items: flex-start;
    padding: 8px 20px;
    background-color: #ffffff;
    border: solid 1px #f2f5f8;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.address__field.default{
    border: solid 1px #96a9b8;
    background-color: #f4f4f4;
}
.address__field:hover{
    box-shadow: 0 2px 16px 0 rgba(100, 104, 107, 0.15);
}
.address__info-wrap{
    flex-grow: 1;
    flex-basis: 100%;
}
.address__field ul{
    list-style: none;
}
.address__field li{
    margin: 12px 0;
    display: flex;
    line-height: 1.4;
}
.address__field span.icon-ic{
    font-size: 15px;
    display: block;
    margin-right: 12px;
}
.address__field span.icon-ic_avatar{
    color: #ed1638;
}
.address__field.default span.icon-ic_avatar{
    color: #3c3c3c;
}
.address__edit-wrap{
    width: 196px;
    margin-left: 20px;
    flex-shrink: 0;
}
.address__edit-wrap li{
    font-size: 12px;
}
.default-radio-input{
    display: none;
}
.address__field label{
    display: block;
}
.address__field label.default-radio{
    position: relative;
    padding-left: 23px;

}
.address__field label.default-radio::before{
    width: 13px;
    height: 13px;
    content: "";
    display: block;
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px rgba(151, 151, 151, 0.35);
    border-radius: 50%;
    left: 0;
}
.address__field label.default-radio::after{
    content: "";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #e83e38;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    left: 3px;
    top: 3px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.address__field input:checked + label.default-radio::before{
    border: solid 1px #e83e38;
}
.address__field input:checked + label.default-radio::after{
    opacity: 1;
    visibility: visible;
}
.address__field label.default-radio:hover{
    cursor: pointer;
    color: #e83e38;
}
.address__field label.default-radio span,
.address__field input:checked + label.default-radio span:first-child{
    display: none;
}
.address__field label.default-radio span:first-child,
.address__field input:checked + label.default-radio span:last-child{
    display: block;
}
.address__edit-wrap a:hover{
    color: #e83e38;
}
.address__edit-wrap span{
    margin-right: 13px;
}
.address__edit-wrap img{
    display: inline-block;
}
.address__controll-wrap{
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.address__controll-wrap .icon-ic_plus{
    color: #bf9450;
    font-size: 24px;
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}
.address__controll-wrap .icon-ic_plus:hover{
    cursor: pointer;
}
.address__controll-wrap .button--dark-grey{
    width: 96px;
    height: 33px;
    font-size: 12px;
}
.personal__block-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10px 0 10px;
}
.personal__block-delete{
    font-size: 12px;
    color: #5e5e5e;
}
.personal__block-delete .icon-ic{
    font-size: 8px;
    color: #c7d7e3;
    margin-left: 10px;
}
.personal__block-delete:hover{
    color: #96a9b8;
}
.personal__block-footer .button{
    height: 33px;
    font-size: 14px;
    width: 200px;
}
.personal .additional-goods h3{
    height: 106px;
    line-height: 106px;
    background-color: #3c3c3c;
    color: #ffffff;
    font-size: 28px;
    font-weight: normal;
    text-transform: none;
    text-align: left;
}
.personal .additional-goods h3 span{
    display: block;
}
.personal .additional-goods__slider-wrap {
    margin: 100px auto 0 auto;
}

/*    Подписки     */
.personal__block-subscribe{
    margin-top: 40px;
    position: relative;
}
.personal__block-subscribe label{
    width: 15px;
    height: 15px;
    margin-right: 10px;
}
.personal__block-subscribe .form__agree-confirmation{
    display: flex;
    align-items: center;
}
.form__agree-confirmation--all p{
    font-size: 16px;
    font-weight: 500;
}
.personal__block-subscribe p{
    margin-left: 0;
}
.personal__block-subscribe p.notetext{
    position: absolute;
    bottom: 50px;
    font-style: italic;
}
.personal__subscribe-separate{
    background-color: #f4f3f3;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 21px 60px;
}
.personal__subscribe-separate .form__agree-confirmation{
    margin: 0;
}
.personal__subscribe-separate .form__agree-confirmation:last-child{
    margin-top: 20px;
}
.personal__subscribe-separate p{
    font-size: 14px;
}

/*   Избранное   */
.personal__block-favorites--epmty{
    margin-bottom: 30px;
    text-align: center;
    margin-top: 30px;
}
.personal__block-favorites--epmty .icon-ic_star{
    font-size: 58px;
    color: #bdbdbd;
}
.personal__block-favorites--epmty p{
    margin-top: 30px;
}
.personal__block-favorites--epmty .button{
    width: 135px;
    height: 45px;
    text-transform: uppercase;
    margin: 30px auto 0 auto;
}
.personal__block-favorites.active .personal__block-favorites--epmty{
    display: none;
}
.personal__block-favorites--wrap{
    display: none;
}
.personal__block-favorites.active .personal__block-favorites--wrap{
    display: block;
    margin-top: 20px;
}
.personal__favorites-control{
    border: solid 1px rgba(224, 224, 224, 0.5);
    background-color: #f4f3f3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 55px;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}
.personal__control-actions{
    display: flex;
    align-items: center;
}
.personal__control-category--wrap{
    position: relative;
}
.personal__control-category--wrap .personal__category{
    width: 220px;
    height: 30px;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding-left: 20px;
}
.personal__category:hover{
    cursor: pointer;
}
.personal__control-category--wrap .personal__category::after{
    content: "";
    display: block;
    position: absolute;
    width: 220px;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #e0e0e0;
}
.personal__category p{
    line-height: 30px;
    font-size: 12px;
}
.personal__category .icon-ic_arrow{
    font-size: 7px;
    color: #96a9b8;
    position: absolute;
    right: 14px;
    top: 12px;
}
.personal__category:hover .icon-ic_arrow{
    color: #3c3c3c;
}
.personal__category-list{
    height: 0;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    list-style: none;
    background-color: #ffffff;
    z-index: 1;
    transition: all 0.2s;
}
.personal__category-list li{
    height: 30px;
    border-bottom: 1px solid #f2f5f8;
    display: none;
}
.personal__category-list li.visible{
    display: block;
}
.personal__category-list li a{
    height: 100%;
    line-height: 30px;
    padding-left: 20px;
    font-size: 12px;
    display: block;
}
.personal__category-list li a:hover,
.personal__category-list li.active a{
    color: #e83e38;
}
.personal__control-category--wrap.active .personal__category-list{
    height: auto;
    visibility: visible;
    opacity: 1;
}
.personal__control-qty{
    margin-left: 15px;
}
.personal__control-qty span{
    color: #e83e38;
}
.personal__control-actions .form__agree-confirmation{
    margin-left: 20px;
    margin-top: 0;
    margin-bottom: 0;
}
.personal__control-actions .form__agree-confirmation label{
    width: 13px;
    height: 13px;
}
.personal__block-favorites--wrap .form__agree-confirmation p{
    margin-top: 1px;
}
.personal__control-actions .form__agree-confirmation p{
    font-size: 12px;
}
.personal__control-buttons{
    display: flex;
}
.personal__control-buttons .icon-ic{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 10px;
    text-align: center;
}
.personal__control-buttons .icon-ic:hover,
.personal__control-buttons .icon-ic.active_el{
    color: #bf9450;;
}
.personal__favorites-sort{
    display: flex;
    justify-content: flex-end;
    height: 52px;
    align-items: center;
    margin-top: 21px;
}
.catalog__pagination--top li:first-child{
    margin-right: 26px;
}
.catalog__pagination--top .icon-ic_arrow{
    font-size: 7px;
}
.personal__favorites-item{
    margin-bottom: 20px;
}
.personal__favorites-item--info{
    width: 100%;
    height: 130px;
    border: solid 1px #f2f5f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.personal__favorites-item--info-wrap{
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.personal__favorites-item .form__agree-confirmation{
    margin-bottom: 0;
}
.personal__favorites-item--img{
    width: 70px;
    height: 70px;
    margin: 0 20px;
    flex-shrink: 0;
}
.personal__favorites-item--name-wrap{
    max-width: 295px;
    margin-right: 20px;
}
.personal__favorites-item--art{
    font-size: 12px;
    font-weight: 300;
}
.personal__favorites-item--art span{
    font-weight: 500;
}
.personal__favorites-item--name{
    margin-top: 10px;

}
.personal__favorites-item--name a{
    font-size: 12px;
    line-height: 1.5;
}
.personal__favorites-item--name a:hover{
    color: #e83e38;
}
.personal__favorites-item .buy-block__form-inner{
    margin-left: auto;
}
.personal__favorites-item .buy-block__wrap{
    display: flex;
    align-items: center;
}
.personal__favorites-item .buy-block__items{
    width: 70px;
    height: 28px;
    margin-right: 5px;
}
.personal__favorites-item .buy-block__items input{
    font-size: 12px;
}

.personal__favorites-item .buy-block__item-avail{
    width: 70px;
}
.personal__favorites-item .buy-block__item-avail--note{
    margin-top: 0;
    margin-bottom: 8px;
}
.personal__favorites-item .sale-item__price{
    margin-top: 0;
    width: 100px;
    text-align: right;
    margin-left: 20px;
}
.personal__favorites-item .sale-item__price-old{
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 5px;
    text-align: right;
    white-space: nowrap;
}
.personal__favorites-item .sale-item__price-cur{
    font-size: 14px;
    font-weight: 500;
    color: #3c3c3c;
    margin-top: 0;
    white-space: nowrap;
    text-align: right;
}
.personal__favorites-item--control{
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 60px;
    background-color: #f4f3f3;
    padding:0 27px 0 20px ;
}
.personal__favorites-item--date-wrap{
    font-size: 12px;
    font-weight: 500;
    color: #868e94;
}
.personal__favorites-item--date-wrap span{
    font-size: 12px;
    font-weight: normal;
    color: #5e5e5e;
}
.personal__favorites-item--control .personal__control-buttons .icon-ic.active,
.personal__favorites-item--control .personal__control-buttons .icon-ic.icon-ic_refresh.active_el{
    color: #e83e38;
}
.personal__block-favorites--wrap .catalog__pagination-wrap{
    margin-top: 60px;
}
.personal__block-favorites--wrap .catalog__pagination--top{
    width: auto;
    margin-top: 0;
}
.personal__block-favorites--wrap .catalog__pagination{
    justify-content: flex-start;
}
.personal__block-favorites--wrap .catalog__pagination-list{
    margin-left: -20px;
}

/*     Сравнение       */
.personal__card--comparison{
    border: solid 1px #f2f5f8;
    background-color: #ffffff;
    margin-top: 60px;
    padding-bottom: 60px;

}
.personal__card--comparison h2{
    margin-top: 40px;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    padding-left: 30px;
}
.personal__card-wrap{
    margin-top: 30px;
}
.personal__menu{
    width: 264px;
    box-shadow: 2px 10px 20px 0 rgba(174, 178, 182, 0.14);
    border: solid 1px #f2f5f8;
    /*background-color: #ffffff;*/
    flex-shrink: 0;
}
.personal__menu-select{
    height: 55px;
    line-height: 55px;
    background-color: #3c3c3c;
    color: #ffffff;
    font-size: 16px;
    padding-left: 20px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-transform: uppercase;
    position: relative;
    display: none;
}
.personal__menu-select:hover{
    cursor: pointer;
}
.personal__menu-select .icon-ic{
    font-size: 7px;
    color: #ffffff;
    position: absolute;
    right: 14px;
    top: 25px;
}
.personal__menu-filter{
    position: relative;
    height: 341px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.personal__menu-filter-form{
    padding-top: 30px;
    padding-left: 30px;
}
.personal__menu-filter-form .personal__control-category--wrap{
    width: 220px;
}
.personal__menu-filter-form .personal__category{
    border: solid 1px #eef0f3;
    margin-top: 10px;
}
.personal__menu-filter-form .personal__category::after{
    bottom: -1px;
}
.personal__menu-filter-form .personal__category input{
    border: none;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    background-color: #ffffff;
}
.personal__menu-filter-form .personal__category-list{
    top: 54px;
}
.personal__menu-filter-form .personal__category-list li{
    margin-bottom: 0;
}
.personal__menu-filter-form .personal__category-list a{
    text-transform: none;
    font-weight: normal;
}
.personal__menu-filter-form .personal__category-list li:hover a,
.personal__menu-filter-form .personal__category-list li.active a{
    background-color: #ffffff;
}
.personal__menu-filter-form .reg-form__type-payer{
    display: block;
    margin-top: 22px;
}
.personal__menu-filter-form .reg-form__type-payer label{
    font-size: 12px;
    margin-bottom: 10px;
}
.personal__menu-filter-form .reg-form__type-payer input:checked ~ label:before{
    border-color: #e83e38;
}
.personal__menu-filter-title{
    min-height: 57px;
    background-color: #e0e0e0;
    margin-top: auto;
    line-height: 57px;
    padding-left: 37px;
    font-weight: 500;
}
.personal__menu-params-row{
    padding: 5px 15px 5px 30px;
    border-bottom: 1px solid #f4f3f3;
    line-height: 1.23;
    display: flex;
    align-items: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.personal__menu-params-row.personal__menu-params--name{
    min-height: 43px;
    /*line-height: 43px;*/
}
/*.personal__menu-params-row:hover{
    background-color: #fbfbfb;
    cursor: default;
}*/
.personal__block-comparison{
    /*display: flex;*/
    width: calc(100% - 264px);
    overflow-x: auto;
    padding: 0;
}
.comparison__row{
    display: flex;
}
.comparison__row:hover{
    background-color: #fbfbfb;
    cursor: default;
}
.comparison__row > div{
    border-right: solid 1px #f2f5f8;
    width: 220px;
    flex-shrink: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.comparison__item-header{
    /*height: 341px;*/
    min-height: 341px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    border-bottom: 1px solid #f4f3f3;
    border-top: 1px solid #f4f3f3;
}
.comparison__item-header--del{
    text-align: right;
}
.comparison__item-header--del a{
    font-size: 12px;
    color: #868e94;
}
.comparison__item-header--del a span{
    font-size: 8px;
    margin-left: 10px;
    color: #c7d7e3;
    transition: all 0.2s;
}
.comparison__item-header--del a:hover span{
    color: #868e94;
}
.comparison__item-header--img{
    padding: 15px 28px;
    height: 154px;
}
.comparison__item-header--img img{
    max-width: 154px;
    max-height: 154px;
    width: auto;
    height: auto;
    margin-left: 0;
}
.comparison__item-header--art{
    font-size: 12px;
}
.comparison__item-header--name{
    min-height: 49px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 6px 0 14px 0;
    display: flex;
    align-items: center;
}
.comparison__item-header--name a{
    font-size: 12px;
    font-weight: 500;
}
.comparison__item-header--action{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}
.comparison__item-header--action .sale-item__price{
    margin: 0;
}
.comparison__item-header--action .sale-item__price-old{
    font-size: 12px;
    text-align: left;
}
.comparison__item-header--action .sale-item__price-cur{
    font-size: 14px;
    font-weight: bold;
    margin-top: 0;
    text-align: left;
    color: #3c3c3c;
}
.comparison__item-header--action .sale-item__price-cur span{
    font-weight: normal;
}
.comparison__item .personal__control-buttons .icon-ic.active{
    color: #e83e38;
}
.comparison__row .button--red{
    width: 70px;
    height: 24px;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    margin-top: 14px;
}
.comparison__item-params-row{
    padding: 5px 15px 5px 30px;
    border-bottom: 1px solid #f4f3f3;
    line-height: 1.23;
}
.comparison__item-params-row.comparison__item-params--name{
    min-height: 43px;
    display: flex;
    align-items: center;
}
/*.comparison__item-params-row:hover{
    background-color: #fbfbfb;
    cursor: default;
}*/
.personal__menu-params-row.different,
.comparison__row.different .comparison__item-params-row{
    background-color: rgba(199, 215, 227, 0.49);
}
.personal__card--comparison-clear{
    padding-top: 20px;
    padding-left: 30px;
}
.personal__card--comparison-clear a{
    font-size: 12px;
    font-weight: normal;
    text-decoration: underline;
}









/*   Мои заказы   */
.personal__block-orders .personal__favorites-control .form__agree-confirmation{
    margin-left: 0;
}
.personal__orders-types{
    height: 55px;
    background-color: #f4f3f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
    margin-top: 20px;
}
.personal__orders-types a{
    font-size: 12px;
}
.personal__orders-filter{
    margin-top: 30px;
}
.personal__orders-filter-title{
    font-size: 16px;
    font-weight: 500;
}
.personal__orders-filter-wrap{
    margin-top: 20px;
    background-color: #f4f3f3;
    /*padding: 40px 20px 30px 20px;*/
    padding: 0 0 30px 0;
}
.personal__orders-filter-wrap .product-tabs__title-wrap{
    background-color: #ffffff;
}

.personal__orders-filter-items{
    padding: 10px;
}
.personal__orders-filter-item-wrap{
    padding: 10px;
}
.personal__orders-filter-item-wrap:first-child{
    display: flex;
}
.personal__orders-filter-item{
    width: 220px;
    text-align: left;
}
.personal__orders-filter-item:not(:first-of-type){
    margin-left: 20px;
}
.personal__orders-filter-item label{
    display: block;
    margin-bottom: 10px;
}
.personal__orders-filter-item input{
    height: 30px;
    box-shadow: 0 2px 8px 0 rgba(53, 54, 83, 0.18);
    background-color: #ffffff;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    font-size: 12px;
    padding: 0 10px;
}
.personal__orders-filter-item .personal__category{
    padding-left: 0;
}
.personal__orders-filter-item .personal__category-list li{
    display: block;
}
.personal__orders-filter-item .personal__category-list li a{
    padding-left: 10px;
}
.orders-filter__item-date{
    display: flex;
    margin-top: 10px;
    align-items: center;
    background-color: #ffffff;
    width: 100%;
    height: 30px;
    box-shadow: 0 2px 8px 0 rgba(53, 54, 83, 0.18);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 5px;
    justify-content: space-between;
}
.orders-filter__item-date input{
    padding: 0;
    box-shadow: none;
    text-align: center;
    margin-left: 5px;
}
.orders-filter__item-date label.icon-ic{
    margin: 0 5px;
    transition: all 0.2s;
}
.orders-filter__item-date label.icon-ic:hover{
    color: #bf9450;
    cursor: pointer;
}
.personal__orders-filter .button{
    width: 220px;
    height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 15px 0 0 20px;
    line-height: 32px;
    font-size: 10px;
}
.personal__block-orders .catalog__pagination--top{
    width: auto;
}
.personal__block-orders .sort__qty-result{
    background-color: transparent;
}
.personal__block-orders .personal__favorites-control .form__agree-confirmation p{
    margin-left: 25px;
    height: 15px;
    line-height: 16px;
}
.personal__order-wrap{
    padding-bottom: 40px;
}
.personal__order-control{
    height: 37px;
    background-color: rgba(211, 219, 225, 0.78);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.personal__order-control .form__agree-confirmation{
    margin-left: 0;
}
.personal__order-prop{
    margin-left: 15px;
    margin-right: 25px;
    font-size: 12px;
    font-weight: 500;
    color: #868e94;
}
.personal__order-prop span{
    font-size: 12px;
    font-weight: normal;
    color: #5e5e5e;
    margin-left: 10px;
}
.personal__order-list .personal__favorites-item--info{
    border: solid 1px #f2f5f8;
    margin-top: -1px;
}
.personal__order-list img{
    margin: 0;
}
.personal__order-list .personal__favorites-item--name-wrap{
    margin-left: 15px;
    max-width: 252px;
}
.personal__order-list .buy-block__wrap{
    display: flex;
    align-items: center;
}
.personal__order-list .buy-block__wrap .buy-block__items{
    width: 70px;
    height: 28px;
    border: solid 1px #e0e0e0;
}
.personal__order-list .buy-block__wrap .buy-block__items input{
    font-size: 12px;
}
.personal__order-list .buy-block__wrap span{
    margin-left: 5px;
}
.personal__order-list .buy-block__item-avail{
    text-align: left;
    margin-top: 3px;
}
.personal__favorites-item--qty{
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #3c3c3c;
    white-space: nowrap;
}
.personal__order-list .sale-item__price{
    margin: 0 20px;
}
.personal__order-list .sale-item__price .sale-item__price-old{
    text-align: left;
    margin-bottom: 5px;
    white-space: nowrap;
}
.personal__order-list .sale-item__price .sale-item__price-cur{
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #3c3c3c;
    margin-top: 0;
    white-space: nowrap;
}
.personal__order-item-action a{
    display: block;
    white-space: nowrap;
}
.personal__order-item-action a:hover{
    color: #bf9450;
}
.personal__order-item-action a:first-child{
    font-size: 12px;
    margin-bottom: 10px;
}
.personal__order-item-action a.icon-ic_dwnld-pdf1{
    font-size: 14px;
}
.personal__order-footer{
    height: 60px;
    background-color: #f4f3f3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
}
.personal__order-footer--date{
    font-size: 12px;
    font-weight: 500;
    color: #868e94;
}
.personal__order-footer--date span{
    font-weight: normal;
    color: #5e5e5e;
    margin-left: 15px;
}
.personal__order-footer-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.personal__order-footer-summ-wrap .personal__order-footer--discount{
    margin-bottom: 5px;
}
.personal__order-footer-summ-wrap p{
    width: 90px;
    text-align: right;
    display: inline-block;
}
.personal__order-footer-summ-wrap span{
    text-align: left;
    display: inline-block;
    margin-left: 10px;
}
.personal__order-footer-summ-wrap .personal__order-footer--discount span{
    color: #e83e38;
}
.personal__order-footer-summ-wrap .personal__order-footer--summ span{
    color: #0053a3;
}
.personal__order-footer-more{
    font-size: 12px;
    color: #96a9b8;
    text-decoration: underline;
    margin-left: 20px;
    transition: all 0.2s;
}
.personal__order-footer-more:hover{
    color: #0053a3;
    cursor: pointer;
}
.personal__order-more{
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.2s;
    display: none;
}
.personal__order-more.active{
    margin-top: 40px;
    opacity: 1;
    visibility: visible;
    height: auto;
    display: block;
}
.personal__order-more-labels{
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid #96a9b8;
}
.personal__order-more-label{
    width: 96px;
    height: 40px;
    border: solid 1px #f2f5f8;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 500;
    color: #868e94;
    text-align: center;
    line-height: 40px;
    transition: all 0.2s;
}
.personal__order-more-label:hover,
.personal__order-more-label.active{
    border: solid 1px #abb5bc;
    background-color: #abb5bc;
    color: #ffffff;
    cursor: pointer;
}
.personal__order-more-table{
    opacity: 0;
    visibility: hidden;
    height: 0;
}
.personal__order-more-table.active{
    opacity: 1;
    visibility: visible;
    height: auto;
}
.personal__order-more-table-wrap{
    border: solid 1px #f2f5f8;
    padding: 20px;
    margin-top: 20px;
}
.personal__order-more-cols{
    display: flex;
}
.personal__order-more-cols > div:first-child{
    margin-right: 72px;
}
.personal__order-more-row {
    display: flex;
    margin-bottom: 20px;
}
.personal__order-more-row:last-child{
    margin-bottom: 0;
}
.personal__order-more-row p:first-child{
    width: 162px;
    margin-right: 32px;
}
.personal__order-more-cols div:first-child .personal__order-more-row:first-child p:first-child{
    font-weight: 500;
}
.personal__order-more-cols div:first-child .personal__order-more-row:first-child p:first-child span{
    color: #e83e38;
}
.personal__order-more-title{
    font-weight: 500;
    margin-bottom: 20px;
}
.personal__order-more-header{
    margin-top: 20px;
    height: 37px;
    background-color: #f4f3f3;
    line-height: 37px;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.personal__order-more-tbody{
    display: flex;
}
.personal__order-more-tcol{
    width: 25%;
}
.personal__order-more-tcol > div{
    padding-left: 20px;
    height: 29px;
    line-height: 29px;
    border-bottom: 1px solid #f2f5f8;
}
.personal__order-more-th{
    font-size: 12px;
    font-weight: 500;
    color: #868e94;
}
.personal__order-more-trow{
    padding: 7px 20px 27px 20px;
    border-bottom: 1px solid #f2f5f8;
    font-size: 12px;
}
.personal__order-more-trow{
    margin-top: 20px;
}
.personal__order-more-trow span{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    display: block;
}
.personal__order-more-table-wrap .button{
    width: 96px;
    height: 33px;
    font-size: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
}


/************КОРЗИНА*******************/

.cart .personal__block{
    background-color: #f0f0f0;
    padding: 0;
    width: 100%;
}
.personal__block-cart{
    background-color: #ffffff;
    padding: 20px;
    margin-top: 10px;
    border: solid 1px #f2f5f8;
    display: flex;
}
.cart__body-wrap{
    flex-grow: 1;
    flex-basis: 100%;
}
.cart__goods,
.cart__user-info,
.cart__delivery,
.cart__payment{
    box-shadow: 0px 6px 20px 0px rgba(151, 151, 151, 0.32);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}
.cart__body-header{
    height: 55px;
    border: solid 1px rgba(224, 224, 224, 0.5);
    background-color: #f4f3f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s;
}
.cart__body-header-title{
    font-size: 16px;
    font-weight: 500;
}
.cart__body-header-button{
    width: 130px;
    height: 30px;
    border: solid 1px #e0e0e0;
    font-size: 12px;
    font-weight: normal;
    text-transform: none;
    padding: 0;
    transition: all 0.2s;
}
.cart__body-header-button:hover{
    background-color: #696969;
    border: solid 1px #e0e0e0;
    color: #ffffff;
    cursor: pointer;
}
.cart__body-header-button span:first-child,
.cart__body-header.active .cart__body-header-button span:last-child{
    display: inline;
}
.cart__body-header-button span:last-child,
.cart__body-header.active .cart__body-header-button span:first-child{
    display: none;
}
.basket-items-search-field .has-feedback{
    display: flex;
    width: 190px;
    justify-content: space-between;
    align-items: center;
}
.basket-items-search-field .form-control{
    padding: 0 5px;
    max-width: 160px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.basket-items-search-field .form-control::placeholder {font-size: 12px; color: #bdbdbd;}
.basket-items-search-field .form-control::placeholder          {font-size: 12px; color: #bdbdbd;}
.basket-items-search-field .form-control::placeholder     {font-size: 12px; color: #bdbdbd;}
.basket-items-search-field .form-control::placeholder      {font-size: 12px; color: #bdbdbd;}
.basket-items-search-field .form-control::placeholder {font-size: 12px; color: #bdbdbd;}

.basket-items-search-field .basket-clear {
    cursor: pointer;
    pointer-events: auto;
    display: block;
    width: 12px;
    height: 12px;
    position: relative;
}
.basket-items-search-field .basket-clear:before {
    transform: rotate(-45deg);
}
.basket-items-search-field .basket-clear:after {
    transform: rotate(45deg);
}
.cart__goods-wrap,
.cart__delivery-wrap,
.cart__payment-wrap,
.cart__user-info-wrap{
    visibility: hidden;
    opacity: 0;
    height: 0;
    /*display: none;*/
    /*transition: all 0.2s;*/
}

.cart__goods-wrap.active,
.cart__delivery-wrap.active,
.cart__payment-wrap.active,
.cart__user-info-wrap.active{
    visibility: visible;
    opacity: 1;
    height: auto;
    /*display: ;*/
}
.cart__goods-wrap:not(.active) .cart__goods-item *{
    float: none;
}
.cart__goods-header{
    height: 37px;
    background-color: #dce3e8;
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #868e94;
}
.cart__goods-header .form__agree-confirmation{
    margin: 0;
    width: 125px;
    display: none;
}
.cart__goods-header > div,
.cart__goods-item > *{
    margin-right: 20px;
}
.cart__goods-header > div:last-child,
.cart__goods-item > div:last-child{
    margin-right: 0;
}
.cart__goods-header .form__agree-confirmation p{
    height: 12px;
    line-height: 14px;
    font-weight: normal;
}
.cart__goods-header--qty{
    width: calc(100% - 465px);
    font-size: 14px;
    font-weight: normal;
    margin-left: 90px;
}
.cart__goods-header--qty span{
    color: #e83e38;
    margin-right: 5px;
}
.cart__goods-header--price{
    width: 140px;
}
.cart__goods-header--summ{
    width: 120px;
}
.cart__goods-header--action{
    width: 80px;
}
.cart__goods .basket-items-list-header-filter{
    display: none;
}
.cart__goods .basket-checkout-container{
    display: none;
}
.cart__goods-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px #f2f5f8;
}
.cart__goods-item--img{
    width: auto;
    height: auto;
    max-width: 70px;
    max-height: 70px;
}
.cart__goods-item--name-wrap{
    width: calc(100% - 465px);
}
.cart__goods-item--name-wrap .personal__favorites-item--art{
    font-weight: 300;
    font-size: 16px;
}
.cart__goods-item--name-wrap .personal__favorites-item--art span{
    font-weight: 500;
}
.cart__goods-item--name-wrap .personal__favorites-item--name a{
    font-size: 16px;
}
.cart__goods-buy-form{
    width: 140px;
}
.cart__goods-item .sale-item__price{
    margin-top: 0;
}
.cart__goods-item .sale-item__price-old{
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 3px;
    text-align: left;
}
.cart__goods-item .sale-item__price-cur{
    font-size: 16px;
    font-weight: 500;
    margin-top: 0;
    color: #3c3c3c;
    text-align: left;
}
.cart__goods-item .buy-block__item-avail{
    /*text-align: left;*/
    margin-top: 3px;
    width: 70px;
    text-align: center;
}
.cart__goods-buy-form .buy-block__wrap{
    margin-top: 10px;
    display: flex;
    align-items: center;
}
.cart__goods-buy-form .buy-block__items{
    width: 70px;
    height: 28px;
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    margin-right: 5px;
}
.cart__goods-buy-form .buy-block__items > *{
    font-size: 12px;
}
.cart__goods-buy-form .buy-block__items input{
    width: 50%;
}
.cart__goods-buy-form .buy-block__items button{
    width: 25%;
}
.cart__goods-price{
    width: 120px;
}
.cart__goods-actions{
    width: 80px;
}
.cart__goods-actions > a{
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    transition: all 0.2s;
}
.cart__goods-actions > a:hover{
    color: #e83e38;
}
.cart__user-info--reg{
    padding: 20px 20px 0 20px;
}
.cart__user-info-wrap .cart__user-info--reg .label-fix.left-fix{
    float: none;
}
.cart__user-info-wrap.active .cart__user-info--reg .label-fix.left-fix{
    float: left;
    margin-right: 10px;
}
.cart__user-info--reg .label-fix input{
    display: none;
}
.cart__user-info--reg .label-fix label{
    display: block;
    position: relative;
    color: #797979;
    padding-left: 19px;
}
.cart__user-info--reg .label-fix label:hover{
    cursor: pointer;
}
.cart__user-info--reg .label-fix label:before {
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px rgba(151, 151, 151, 0.35);
    border-radius: 50%;
    left: 0;
}
.cart__user-info--reg .label-fix label:after {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e83e38;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    left: 3px;
    top: 3px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}
.cart__user-info--reg .label-fix input:checked ~ label:before {
    border: solid 1px #e83e38;
}
.cart__user-info--reg .label-fix input:checked ~ label:after {
    opacity: 1;
    visibility: visible;
}
.auth-form__cart{
    padding: 20px 20px 30px 20px;
    max-width: 465px;
    box-sizing: border-box;
}
.auth-form__cart input{
    border: solid 1px #e0e0e0;
    padding: 0 10px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
}
.auth-form__cart input.text-input-field{
    margin-bottom: 20px;
}
#order_form_div .auth-form__cart textarea{
    border: solid 1px #e0e0e0;
    box-shadow: none;
    resize: none;
    margin-bottom: 20px;
    font-size: 12px;
}
#order_form_div .location-block-wrapper{
    margin-bottom: 20px;
}
#order_form_div .dropdown-block{
    border: solid 1px #e0e0e0;
    height: 35px;
    line-height: 35px;
}
#order_form_div .bx-sls .bx-ui-sls-pane{
    max-height: 150px;
}
.bx_ordercart{
    display: none;
}
.auth-form__cart label.error{
    margin-top: -60px;
}
.cart__delivery-wrap,
.cart__payment-wrap{
    padding: 0 20px;
    /*transition: all 0.2s;*/
}
.cart__delivery-methods{
    display: flex;
    justify-content: flex-start;
    padding: 20px 0;
}
.cart__payment-wrap.cart__delivery-methods{
    padding: 0 20px;
}
.cart__payment-wrap.cart__delivery-methods.active{
    padding-top: 20px;
    padding-bottom: 20px;
}
.cart__delivery-method{
    width: 177px;
    height: 93px;
    border: solid 1px #f2f5f8;
    background-color: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: all 0.2s;
    padding: 5px;
}
.cart__delivery-method:hover,
.cart__delivery-method.active{
    border: solid 1px #96a9b8;
    background-color: #f4f4f4;
    cursor: pointer;
}
.cart__delivery-method label{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cart__delivery-method label:hover{
    cursor: pointer;
}
.cart__delivery-method .cart__delivery-method-name{
    font-size: 12px;
    margin-bottom: 7px;
    text-align: center;
    /*max-width: 142px;*/
    align-self: stretch;
}
.cart__delivery-method .cart__delivery-method-icon img{
    height: 25px;
    width: auto;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE 6-9 */
    transition: all 0.2s;
}
.cart__payment-wrap .cart__delivery-method-icon img{
    height: 18px;
}
.cart__delivery-method .cart__delivery-method-icon .icon-ic{
    font-size: 17px;
    color: #ed1638;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE 6-9 */
    transition: all 0.2s;
}
.cart__delivery-method:hover .cart__delivery-method-icon img,
.cart__delivery-method:hover .cart__delivery-method-icon .icon-ic,
.cart__delivery-method.active .cart__delivery-method-icon img,
.cart__delivery-method.active .cart__delivery-method-icon .icon-ic{
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
    filter: none; /* IE 6-9 */
}
.cart__payment-wrap .cart__delivery-method .cart__delivery-method-name{
    max-width: 102px;
    align-self: auto;
}
.cart__delivery-details{
    padding-top: 10px;
    padding-bottom: 20px;
}
.cart__delivery-method-detail{
    visibility: hidden;
    opacity: 0;
    height: 0;
    position: relative;
    z-index: 0;
    display: none;
}
.cart__delivery-method-detail.active{
    visibility: visible;
    opacity: 1;
    height: auto;
    z-index: 1;
    display: block;
}
.cart__delivery-wrap:not(.active) .cart__delivery-method-detail.active{
    visibility: hidden;
    opacity: 0;
    height: 0;
    position: relative;
    z-index: 0;
}
.cart__delivery-detail-info,
.cart__delivery-detail-info a{
    font-size: 10px;
    color: #607b91;
}
.cart__delivery-detail-info a:hover{
    text-decoration: underline;
}
.cart__delivery-points-wrap{
    margin-top: 20px;
    width: 100%;
}
.cart__delivery-points-head{
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}
.cart__delivery-point{
    width: 140px;
    height: 40px;
    background-color: #f4f3f3;
    margin-right: 17px;
    text-align: center;
    line-height: 40px;
}
.cart__delivery-point:hover,
.cart__delivery-point.active{
    cursor: pointer;
    background-color: #3c3c3c;
    color: #ffffff;
}
.cart__delivery-points-body{
    width: calc(100% + 37px);
    height: 463px;
    margin-top: 20px;
    margin-left: -17px;
    position: relative;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.cart__delivery-points-address{
    position: absolute;
    z-index: -5;
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    max-width: 311px;
    transition: all 0.2s;
}
.cart__delivery-points-address.active{
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
}
.cart__delivery-addr-head{
    height: 37px;
    background-color: #dce3e8;
    line-height: 37px;
    font-weight: 500;
    padding-left: 40px;
}
.cart__delivery-addr-list{
    height: calc(100% - 37px);
    overflow-y: auto;
}
.cart__delivery-addr-item{
    border: solid 1px #f2f5f8;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 30px 20px 53px;
    position: relative;
    font-size: 12px;
    transition: all 0.2s;
}
.cart__delivery-addr-item:hover,
.cart__delivery-addr-item.active{
    background-color: #fbfbfb;
}
.cart__delivery-addr-item .form__agree-confirmation{
    position: absolute;
    top: 72px;
    left: 20px;
}
.cart__delivery-addr > div{
    margin-bottom: 8px;
}
.cart__delivery-addr > div:last-child{
    margin-bottom: 0;
}
.cart__delivery-addr--title{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.cart__delivery-method-detail .address__field{
    border: solid 1px #f2f5f8;
    background-color: #ffffff;
    margin-top: 30px;
    margin-bottom: 0;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 20px 40px;
}
.cart__delivery-method-detail .address__field .icon-ic_avatar{
    color: #ed1638;
}
.cart__delivery-address-wrap{
    padding: 11px 40px 0 40px;
    border-bottom: solid 1px #f2f5f8;
    position: relative;
    z-index: 1;
    width: calc(100% + 40px);
    margin-left: -20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.cart__delivery-address-wrap a{
    font-size: 12px;
    font-weight: 500;
    color: #868e94;
    margin-right: 40px;
    line-height: 15px;
    display: inline-block;
    height: 15px;
    transition: all 0.2s;
    margin-bottom: 11px;
}
.cart__delivery-address-wrap a:hover{
    color: #3c3c3c;
}
.cart__delivery-address-wrap a span{
    color: #bf9450;
    font-size: 15px;
    margin-right: 10px;
    vertical-align: middle;
}


.cart__delivery-map{
    /*width: 494px;*/
    max-width: calc(100% - 311px);
    height: 463px;
    position: relative;
    right: 0;
    top: 0;
    flex-grow: 1;
}








.cart__bill--wrap{
    width: 268px;
    height: 353px;
    box-shadow: 0 2px 34px 0 rgba(151, 151, 151, 0.32);
    border: solid 1px #f2f5f8;
    background-color: #ffffff;
    margin-left: 20px;
    flex-shrink: 0;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: sticky;
    top: 65px;
    margin-bottom: 30px;
}
.cart__bill-title{
    font-size: 18px;
    font-weight: 500;
}
.cart__bill-content{
    padding: 30px 0 36px 0;
    border-bottom: 1px solid #e0e0e0;
}
.cart__bill-content-row{
    display: flex;
    margin-bottom: 20px;
}
.cart__bill-content-row--discount{
    color: #e83e38;
}
.cart__bill-content-row:last-child{
    margin-bottom: 0;
}
.cart__bill-total{
    font-size: 18px;
    font-weight: 500;
    display: flex;
    margin: 20px 0;
}
.cart__bill-content-row p,
.cart__bill-total p{
    width: 97px;
    margin-right: 10px;
}
.cart__bill-content-row span{
    font-weight: 500;
}
.cart__bill--wrap .button{
    width: 228px;
    height: 30px;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    color: #ffffff;
}
.cart__bill--wrap .button--grey{
    margin-top: 11px;
}
#modal-kp-form{
    width: 294px;
    padding: 0;
    height: 250px;
}
#modal-kp-form .auth-form__content{
    padding: 30px 20px 0 20px;
}
.kp-form__row{
    margin: 20px 0;
    display: flex;
    color: #797979;
    font-size: 14px;
    position: relative;
    align-items: center;
    /*padding: 0 14px 0 20px;*/
    justify-content: space-between;
}
.kp-form__row span{
    margin-left: 10px;
    font-weight: 500;
}
.kp-form__row--total span{
    color: #3c3c3c;
}
.kp-form__row .form__agree-confirmation{
    margin: 0;
}
.kp-form__row .form__agree-confirmation p{
    font-size: 14px;
}
.comm-form .kp-form__row .kp-form__discount-field{
    width: 69px;
    height: 28px;
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    font-size: 12px;
    color: #e83e38;
    margin-left: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 11px;
}
.comm-form .kp-form__row .kp-form__discount-button{
    width: 0;
    height: 0;
    position: absolute;
    right: 21px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 0.7;
    background-color: transparent;
    transition: all 0.2s;
    z-index: 1;
}
.comm-form .kp-form__row .kp-form__discount-button.disable{
    opacity: 0.1;
}
.comm-form .kp-form__row .kp-form__discount-button--up{
    border-bottom: 5px solid #3c3c3c;
    top: 6px;
}
.comm-form .kp-form__row .kp-form__discount-button--down{
    border-top: 5px solid #3c3c3c;
    bottom: 6px;
}
.comm-form .kp-form__row .kp-form__discount-button:hover{
    opacity: 1;
}
.comm-form .kp-form__row .kp-form__discount-button.disable:hover{
    cursor: default;
    opacity: 0.1;
}
#modal-kp-form .personal__menu-filter-form{
    padding: 0;
}
#modal-kp-form .personal__menu-filter-form .personal__control-category--wrap,
#modal-kp-form .personal__control-category--wrap .personal__category,
#modal-kp-form .personal__control-category--wrap .personal__category::after{
    width: 100px;
}
#modal-kp-form .personal__menu-filter-form .personal__category{
    margin-top: 0;
}
#modal-kp-form .personal__control-category--wrap .personal__category-list{
    top: 30px;
    overflow: hidden;
}
#modal-kp-form .personal__control-category--wrap.active .personal__category-list{
    max-height: 90px;
    overflow-y: auto;
}
#modal-kp-form .button--red{
    margin-top: 60px;
    height: 28px;
    line-height: 28px;
    font-size: 10px;
    font-weight: 500;
}
#modal-kp-form .auth-form__footer{
    display: none;
}
#modal-cart-success-form{
    background-color: #ffffff;
    padding: 0;
}
#modal-cart-success-form .auth-form__title-button{
    font-size: 16px;
}
.cart-success-form__row{
    font-size: 14px;
    color: #607b91;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}
.cart-success-form__row:first-of-type{
    border-bottom: none;
}
#modal-cart-success-form .button{
    width: 135px;
    text-transform: uppercase;
    margin: 30px auto 0 auto;
    height: 28px;
    line-height: 28px;
    font-size: 10px;
    font-weight: normal;
    color: #ffffff;
    margin-top: 20px;
}
#modal-cart-success-form  .auth-form__footer{
    text-align: center;
}

/* Разводные ИНФОРМАЦИЯ и ПОДДЕРЖКА  */
 ul.left-menu.category-block{
     margin-left: -16px;
     padding-top: 50px;
     padding-bottom: 70px;
}
ul.left-menu.category-block li{
    display: block;
    width: calc(25% - 32px);
    flex-grow: 1;
    flex-shrink: 1;
    height: 200px;
    margin: 0 16px 30px 16px;
    position: relative;
    box-sizing: border-box;
    max-width: calc(50% - 32px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.2s;
}
ul.left-menu.category-block li:before{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(224, 224, 224, 0.24);
}
ul.left-menu.category-block li a{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 88px;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: rgba(60, 60, 60, 0.74);
    font-size: 18px;
    color: #ffffff;
    font-weight: normal;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}
ul.left-menu.category-block li:hover a{
    height: 100%;
}

/*yandex shared*/
ul.ya-share2__list {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding-left: 0;
}
.ya-share2__title{
    display:none;
}
li.ya-share2__item{
    display:block;
    margin: 0 0 0 10px;
}
li.ya-share2__item:first-child{
    margin-left: 0;
}
.ya-share2__item_service_facebook{
    margin-left: 5px;
}
.ya-share2__link {
    font-size: 27px;
    color: #BDBDBD;
    display: block;
    font-family: 'lednikoff' !important;
    text-decoration: none !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    transition: all 0.2s;
    -webkit-font-smoothing: antialiased;
}
.ya-share2__link:hover{
    color: #bf9450;
    cursor: pointer;
}
.ya-share2__item_service_viber .ya-share2__link{
    font-size: 25px;
}
.ya-share2__item_service_telegram .ya-share2__link{
    font-size: 23px;
}
.ya-share2__item_service_facebook .ya-share2__link:before {
    content: "\e918";
}
.ya-share2__item_service_vkontakte .ya-share2__link:before {
    content: "\e910";
}
.ya-share2__item_service_twitter .ya-share2__link:before {
    content: "\ea96";
}
.ya-share2__item_service_viber .ya-share2__link:before {
    content: "\e936";
}
.ya-share2__item_service_telegram .ya-share2__link:before {
    content: "\e935";
}

.nav-link--prev.no-next-link::before {
    display: none;
}


/*swal*/
.swal2-popup{
    width: 294px !important;
    height: 221px;
    border-radius: 0 !important;
}
.swal2-x-mark,
.swal2-icon.swal2-success > *{
    display: none !important;
}
.swal2-icon{
    width: 22px !important;
    height: 22px !important;
    border-width: 6px !important;
}
.swal2-icon.swal2-error{
    background-color: #f27474;
    background-image: url("../img/ic_cross-white1.svg");
    background-size: cover;
    background-repeat: no-repeat;
}
.swal2-icon.swal2-success{
    background-color: #336699;
    background-image: url("../img/ic_ok-white.svg");
    background-size: cover;
    background-repeat: no-repeat;
    border-color: #336699 !important;
}
.swal2-content,
.swal2-title{
    font-family: Roboto !important;
    font-size: 16px !important;
    font-weight: normal !important;
    color: #000000 !important;
}
.swal2-styled.swal2-confirm{
    height: 28px !important;
    width: 100% !important;
    line-height: 28px !important;
    text-align: center !important;
    background-color: #5e5e5e !important;
    font-family: Roboto !important;
    font-size: 10px !important;
    font-weight: normal !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 0 !important;
}
.swal2-styled.swal2-confirm:active,
.swal2-styled.swal2-confirm:focus{
    outline: none !important;
    box-shadow: none !important;
    background-image: none !important;
}
.catalog__pagination-list>li.disabled a{
    cursor: default;
}
.seo_text{
    margin-bottom: 100px;
}
.seo_text p{
    margin: 20px 0;
    line-height: 1.4;
}
.seo_text ul,
.seo_text ol{
    padding-left: 20px;
}
.seo_text li{
    margin: 10px 0;
}
.seo_text h2 {
    font-size: 36px;
    font-weight: normal;
    margin-top: 60px;
}
.seo_text h3{
    font-size: 28px;
    font-weight: normal;
    text-align: left;
    text-transform: none;
    color: #3c3c3c;
}

/*Корзина - битриксовые элементы*/
.basket-items-list-item-container.basket-items-list-item-container-expend{
    display: block;
    width: 100%;
    padding: 0;
}
.basket-items-list-item-container-expend .basket-items-list-item-removed-container{
    background-color: #dce3e8;
}
.basket-items-list-item-clear-btn:after,
.basket-items-list-item-clear-btn:before{
    background-color: #e83e38;
}
.bx-sbb-empty-cart-image{
    width: 52px;
    height: 58px;
}
.bx-sbb-empty-cart-text{
    color: #3c3c3c;
    font-size: 14px;
}
.bx-sbb-empty-cart-desc .button.button--dark-grey{
    width: 135px;
    height: 45px;
    text-transform: uppercase;
    margin: 30px auto 0 auto;
}
.hide_mini_cart{
    opacity: 0 !important;
    pointer-events: none;
}
.archive_full_width_button{
    width: 100% !important;
}


.fancybox-can-swipe .fancybox-content{
    cursor: default;
}
.yandexkassa_payment_button{
    background-color: #e83e38;
}

.bx-authform{
    margin: 50px auto;
}
.bx-authform h3{
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: normal;
    text-align: left;
    text-transform: none;
}
.bx-authform input[type=text],
.bx-authform input[type=password]{
    width: 100%;
    line-height: 40px;
    box-sizing: border-box;
    height: 40px;
    border: solid 1px rgba(151, 151, 151, 0.35);
    background-color: #ffffff;
    font-size: 12px;
    margin-bottom: 25px;
    padding: 0 10px;
}
.bx-authform input[type=submit]{
    border: none;
    display: flex;
    justify-content: center;
    background-color: #e83e38;
    font-size: 20px;
    letter-spacing: 0.4px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
}
.stock-block-wrap > [id^=bx_incl_area]{
    display: flex;
    flex-grow: 1;
    max-width: 560px;
}
.cookie {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 20;
    padding: 0 80px 0 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid #bfbfbf;
    -moz-opacity: 1;
    opacity: 1;
}
.cookie.active {
    display: block;
}
.cookie__block {
    max-width: 1520px;
    margin: 0 auto;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
}
.cookie__block p {
    margin: 15px 0;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.3px;
}
.cookie__block-button {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

}
.cookie__block-button-accept {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 30px;
    height: 30px;
    border: 1px solid #3c3c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}
.cookie__button{
    background-color: transparent;
    opacity: 0.5;
}
.cookie__block-button-accept:hover,
.cookie__block-button-accept:hover .cookie__button{
    opacity: 0.8;
    cursor: pointer;
}
