html{
    overflow-x: visible;
}

/*header*/
.menu-item {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.menu-item span {
    color: #fff;
    font-size: 1.4em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'din', sans-serif;
}
.header {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.header__burger {
    width: 22px;
    height: 15px;
    position: relative;
    display: none;
}

.header__burger span {
    background-color: #fff;
    width: 100%;
    height: 2px;
    display: block;
    margin-top: 3px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.header__burger.active span {
    position: absolute;
    margin-top: 0px;
    width: 20px;
}

.header__burger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    display: none;
}

.header__burger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header.index {
    position: fixed;
    width: 100%;
    z-index: 9;
    top: 0;
}

.header.index.scrolled {
    background-color: #fff;
    border: 1px solid #e5e8eb;
    z-index: 9;
}

.header.index.scrolled a {
    color: #6f1c46;
}

.header.index.scrolled .header__nav {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
}

.header.index.scrolled .header__nav svg path {
    fill: #6f1c46;
}

.header.index.scrolled .header__burger span {
    background-color: #6f1c46;
}

.header.noIndex {
    background-color: #fff;
    border: 1px solid #e5e8eb;
        position: fixed;
        top: 0px;
    width: 100%;
    z-index: 9;
}

.header.noIndex .header__burger span {
    background-color: #dd5570;
}

.header.noIndex .header__wrapper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header.noIndex.scrolled {
    position: fixed;
    width: 100%;
    z-index: 9;
    top: -100%;
}

.header.noIndex.show {
    top: 0;
}

.header.noIndex .header__nav a, .header.noIndex .header__nav span {
    color: #6f1c46;
}

.header.noIndex .header__nav svg path {
    fill: #6f1c46;
}

.header__order {
    width: 200px;
}

.header__order a,
a.constructor_link{
    width: 100%;
    display: block;
    border: 2px solid #dd5570;
    background-color: #dd5570;
    text-align: center;
    font-family: 'din', sans-serif;
    font-size: 2em;
    color: #fff;
    text-decoration: none;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__order a:hover,
a.constructor_link{
    background-color: #fff;
    color: #dd5570;
}

.header__wrapper {
    padding: 10px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
}

.header__nav {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 700px;
    -ms-flex: 0 0 700px;
    flex: 0 0 700px;
    margin-left: 10px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    z-index: 9;
    margin-right: 20px;
}

.header__nav ul {
    list-style-type: none;
    margin: 0 0;
    padding: 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__nav li.sub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.header__nav li.sub:hover svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header__nav li.sub:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.header__nav li.sub .submenu {
    position: absolute;
    left: 0%;
    top: 57px;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    width: auto;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #e5e8eb;
    z-index: 9;
    width: 300px;
}

.header__nav li.sub .submenu li:not(:first-child) {
    margin-top: 10px;
}

.header__nav li.sub .submenu a {
    color: #6f1c46;
}

.header__nav li.sub svg {
    margin-left: 10px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.header__nav a {
    color: #fff;
    font-size: 1.4em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'din', sans-serif;
}

.header__nav a:hover:after,
.header__nav a.active:after {
    width: 100%;
}

.header__nav a:after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #74757c;
    display: block;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
/*/header*/
/*lesenka*/


.line_contact {
    font-size: 1.2em;
    padding: 5px 0;
    border-bottom: 1px solid #e5e8eb;
    margin-top: 93px;
    background: #fff;
}
.line_contact .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.line_contact .container > * {
    margin: 0 10px;
}
.line_contact .phone {
    color: #333;
    font-weight: bold;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.line_contact .phone img {
    margin-right: 5px;
    max-height: 15px;
}
.line_contact .email {
    color: #333;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.line_contact .email img {
    margin-right: 5px;
    max-height: 15px;
    max-width: 15px;
}
header.index + .line_contact {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}
@media (max-width: 991px) {
    .line_contact .addr {
        text-align: center;
        flex-basis: 100%;
        margin-bottom: 3px;
    }
}
@media (max-width: 767px) {
    .line_contact .addr,
    .line_contact .email,
    .line_contact .phone-d {
        display: none;
    }
}

.bread {
    padding: 25px 0px;
    background-color: #f3fcff;
}

.bread ul {
    list-style-type: none;
    padding: 0 0;
    margin: 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.bread ul li {
    font-size: 1.6em;
    color: #dd5570;
    position: relative;
}

.bread ul li a {
    color: #b28aa0;
}

.bread ul li:not(:first-child) {
    margin-left: 10px;
}

.bread ul li:not(:first-child):before {
    content: '/';
    font-size: 1em;
    color: #b28aa0;
    margin-right: 10px;
}

/*/lesenka*/
/****/
section h2, .page-news h1 {
    margin-top: 80px;
    text-align: center;
    color: #6f1c46;
    font-size: 3.5em;
    font-family: 'dinTin', sans-serif;
    font-weight: 400;
}
/****/
/*footer*/

.footer {
    background-color: #f16e86;
    padding: 54px 0px;
    position: relative;
}

.footer:after {
    content: '';
    width: auto;
    height: 1260px;
    display: block;
    background: url("../img/box.png") no-repeat;
    position: absolute;
    left: 58%;
    right: 0;
    top: -1080px;
    pointer-events: none;
}

.footer__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__infoWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 30px;
    z-index: 1;
}

.footer__top {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 527px;
    -ms-flex: 0 0 527px;
    flex: 0 0 527px;
}
.footer__bottom a{
    font-size: 1.2em;
    color: #fff;
        font-family: 'din', sans-serif;
    letter-spacing: 0.24px;
    margin-left: 10px;
}

.footer__bottom {
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__bottom span {
    font-size: 1.2em;
    color: #fff;
    font-family: 'din', sans-serif;
    letter-spacing: 0.24px;
}

.footer__nav {
    font-size: 1.4em;
    font-weight: 300;
}

.footer__nav ul {
    list-style-type: none;
    margin: 0 0;
    padding: 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__nav a {
    color: #fff;
    text-transform: uppercase;
}

/*/footer*/
/*pages*/

.aboutCompany__wrapper {
    padding-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.aboutCompany__left {
    width: 100%;
    max-width: 830px;
}

.aboutCompany__left h1 {
    font-family: 'dinTin', sans-serif;
    font-size: 3.5em;
    color: #6f1c46;
}

.aboutCompany__left span {
    margin-top: 20px;
    width: 100%;
    display: block;
    font-family: 'din', sans-serif;
    font-size: 1.6em;
    color: #b28aa0;
}

.aboutCompany__left span.children {
    font-weight: bold;
    color: #6f1c46;
    font-size: 20px;
}

.aboutCompany__left a.download {
    display: block;
    text-decoration: underline;
    font-family: 'din', sans-serif;
    font-size: 2em;
    color: #dd5570;
}

.aboutCompany__left p {
    margin-top: 40px;
    color: #6f1c46;
    font-family: 'din', sans-serif;
    font-size: 2em;
    letter-spacing: -0.4px;
    text-align: justify;
    line-height: 25px;
}

.aboutCompany__left p a {
    color: #6f1c46;
    text-decoration: underline;
}

/*/pages*/
.clearfix:after, .clearfix:before{
    display: table;
    content: '';
}
.clearer, .clearfix:after, .clearfix:before{
    clear: both;
    overflow: hidden;
    zoom: 1;/* ie */
    height: 0; 
}

div.metrika_code {
    display: none;
}
.up_button_container {
    position: relative;
    margin: 0 auto;
    width: 980px;
    display: none;
}
@media only screen and (min-width: 1140px) {
    .up_button_container {
        display: block;
    }
}
.up_button_control {
    position: fixed;
    bottom: 15px;
}
.up_button {
    cursor: pointer;
    position: fixed;
    background-image: url(../img/up_top.png);
    height: 29px;
    width: 45px;
    margin-left: 1015px;
    bottom: 15px;
    display: none;
}
.up_button:hover {
    background-position:  45px 0;
}
.up_button_absolute {
    position: absolute;
}


/*content*/
.constructor-page{
    padding: 18px 0 0;
}

.constructor-warningwr{
    font-size: 22px;
    line-height: 28px;
    margin: 0 auto 55px;
    padding: 112px 15px 0 45%;
    background: url(../img/constructor/ded_bg.png) no-repeat center top;
    height:320px;
    font-family: 'din', sans-serif;
}
.constructor-warningwrpop.popup_block{
    background: url(../img/constructor/ded_modal.jpg) no-repeat left bottom #f1fcff;
    max-width: 890px;
    width: 100%;
    padding: 0;
}
.constructor-warningwrpop .modal_close{
    display: none;
}
.popup_block .constructor-warningwr{
    background: none;
    padding: 56px 15px 40px 0;
    width: 510px;
    margin: 0;
    margin-left: auto;
    height: auto;
}
.constructor-warning-title{
    margin-bottom: 20px;
    color: #6f1c46;
}
.constructor-warning-text{
    color: #fd5471;
    font-weight: bold;
    margin-bottom: 32px;
}
.constructor-warning-text strong{
    font-size: 32px;
    line-height: 36px;
    display: block;
}
.constructor-warning-btn{
    padding: 6px 0;
    border: 2px solid #dd5570;
    background-color: #dd5570;
    color: #fff;
    cursor: pointer;
    width: 240px;
    text-align: center;
    border-radius: 3px;
    margin: 0 auto 0;
    
    display: block;
    font-family: 'din', sans-serif;
    font-size: 20px;
}
.constructor-warning-btn:hover{
    background-color: transparent;
    color: #dd5570;
}

.constructor-spoilerwr{
    padding: 0 15px;
    background-color: #f3fcff;
    border: 1px solid #eef2f3;
    margin-bottom: 64px;
}
.constructor-spoiler-title{
    /*max-width: 970px;*/
    margin: 0 -15px 0;
    padding: 22px 30px;
    cursor: pointer;
}
.constructor-spoiler-title:after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 11px;
    height: 8px;
    margin-left: 12px;
    background: url(../img/constructor/spoiler_open.png) no-repeat center;
}
.constructor-spoiler-title span{
    border-bottom: 1px dotted;
}
.constructor-spoiler-title:hover{
    background-color: #d0f4fb;
}
.open .constructor-spoiler-title span, .constructor-spoiler-title:hover span{
    border-bottom-color: transparent;
}
.open .constructor-spoiler-title{
    border-bottom: 1px solid #eef2f3;
    margin-bottom: 28px;
}
.open .constructor-spoiler-title:after{
    background-image: url(../img/constructor/spoiler_close.png);
}
.constructor-spoiler-content{
    max-width: 970px;
    margin: 0 auto 32px;
    display: none;
}
.open .constructor-spoiler-content{
    display: block;
}
.constructor-spoiler-close{
    cursor: pointer;
    text-align: center;
    background-color: #ecf6f9;
    font-size: 14px;
    color: #a6b8bd;
    text-transform: uppercase;
    height: 56px;
    line-height: 55px;
    border-top: 1px solid #eef2f3;
    display: none;
    margin: 0 -15px;
}
.constructor-spoiler-close:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 11px;
    height: 11px;
    background: url(../img/constructor/close.png);
    margin-right: 10px;
    
}
.constructor-spoiler-close:hover{
    color: #ff5374;
    background-color: #d0f4fb;
}
.constructor-spoiler-close:hover:before{
    background-image: url(../img/constructor/close_h.png);;
}
.open .constructor-spoiler-close{
    display: block;
}

.constructor-hint-text{
    font-size: 16px;
    color: #b28aa0;
    margin-bottom: 32px;
}


.constructor-hintwr{}
.constructor-hint-stepwr{
    text-align: center;
}
.constructor-hint-step-item{
    background-color: #fff;
    padding: 30px 15px 15px;
    min-height: 368px;
    height: 100%;
}
.constructor-hint-step-n{
    max-width: 160px;
    font-weight: 800;
    color: #6f1c46;
    font-size: 22px;
    line-height: 30px;
    height: 40px;
    border: 3px solid #ff5374;
    border-left: 0 none;
    border-right: 0 none;
    margin: 0 auto;
    font-family: 'din', sans-serif;
}
.constructor-hint-step-img{
    height: 132px;
    padding-top: 22px;
}
.constructor-hint-step-title{
    font-size: 16px;
    color: #6f1c46;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.constructor-hint-step-text{
    font-size: 13px;
    line-height: 22px;
    color: #6f1c46;
}

.constructor-hint-needwr-title{
    margin: 56px 0 58px;
}
.constructor-hint-needwr{}
.constructor-hint-need-item{
    padding: 0px 15px 0 75px;
    background: no-repeat 15px 4px;
    margin-bottom: 24px;
    
}
.constructor-hint-need-title{
    font-size: 24px;
    line-height: 28px;
    color: #ff5374;
    font-family: 'neumann';
    margin-bottom: 12px;
}
.constructor-hint-need-text{
    font-size: 14px;
    line-height: 22px;
    color: #6f1c46;
    font-family: 'din', sans-serif;
}
.constructor-hint-need-item1{
    background-image: url(../img/constructor/need1.png);
}
.constructor-hint-need-item2{
    background-image: url(../img/constructor/need2.png);
}
.constructor-hint-need-item3{
    background-image: url(../img/constructor/need3.png);
}
.constructor-hint-need-item4{
    background-image: url(../img/constructor/need4.png);
}
.constructor-hint-need-item5{
    background-image: url(../img/constructor/need5.png);
}
.constructor-hint-need-item6{
    background-image: url(../img/constructor/need6.png);
}

.constructor-stepwr{
    margin-bottom: 320px;
}
.constructor-step-nav{
    background: #f0fcff;
    border-radius: 2px;
    padding: 30px 15px 0;
    text-align: center;
    margin-bottom: 70px;
}
.constructor-step-nav-hint{
    font-size: 16px;
    font-family: 'dinTin', sans-serif;
    color: #6f1c46;
    margin-bottom: 32px;
}
.constructor-step-linkwr{
    display: inline-block;
    vertical-align: top;
    margin-bottom: -23px;
    
}
.constructor-step-nav-link{
    width: 170px;
    float: left;
    margin: 0 15px;
    height: 56px;
    border: 1px solid #c4e2e9;
    border-radius: 3px;
    font-size: 24px;
    color: #ff5374;
    font-family: 'din', sans-serif;
    line-height: 54px;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(196,226,233, 0.64);
}
.constructor-step-nav-link.active{
    cursor: default;
}
.constructor-step-nav-link.active, .constructor-step-nav-link:hover{
    background-color: #ff5374;
    color: #fff;
    border-color: #ff5374;
    box-shadow: none;
    text-decoration: none;
}
.constructor-step-nav-link.disabled{
    background-color: #e9f6f9;
    color: #8fbbc5;
    border: 1px solid #c4e2e9;
    cursor: default;
    box-shadow: 0 8px 24px rgba(196,226,233, 0.64);
}
.constructor-step-content{
    display: none;
}
.constructor-step-content.active{
    display: block;
}

.constructor-step-content-title{
    font-family: 'din', sans-serif;
    font-weight: normal;
    margin-top: 0;
}

.constructor-step-filter-wrap{
    position: relative;
    margin-bottom: 30px;
}
.constructor-step-filterwr{
    background-color: #f3fcff;
    border-top: 1px solid #e5e8eb;
    /*border-left: 1px solid #e5e8eb;*/
    border-radius: 2px;
}
.constructor-step-filter-item{
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    color: #6f1c46;
    font-size: 0;
    
    margin-top: -1px;
    border-top: 1px solid transparent;
    border-left: 1px solid #e5e8eb;
    border-right: 1px solid #e5e8eb;
    border-bottom: 1px solid #ebf1f4;
    border-radius: 2px;
    
    position: relative;
    cursor: pointer;
}
.constructor-step-filter-item:last-child{
    margin-bottom: -1px;
    border-bottom-color: #e5e8eb;
}
.constructor-step-filter-item:first-child{
    border-top-color: #e5e8eb;
}
.constructor-step-filter-item:hover{
    border-color: #6f1c46;
    text-decoration: none;
    color: #6f1c46;
    background-color: #fff;
}

.constructor-step-filter-item.active{
    background-color: #ff5374;
    color: #fff;
    border-color: transparent;
}
.constructor-step-filter-item.active img{
    
    -o-filter: brightness(0) invert(100%);
    -ms-filter: brightness(0) invert(100%);
    -moz-filter: brightness(0) invert(100%);
    -webkit-filter: brightness(0) invert(100%);
    filter: brightness(0) invert(100%);
}
.constructor-step-filter-item.active:after{
    content: '';
    display: block;
    position: absolute;
    left: 100%;
    top: 50%;
    width: 13px;
    height: 18px;
    margin-top: -9px;
    background: url(../img/constructor/active-right.png);
}

.constructor-step-filter-imgwr{
    display: inline-block;
    vertical-align: middle;
    min-height: 40px;
    width: 70px;
}
.constructor-step-filter-imgwr img{
    max-width: 40px;
    height: auto;
}
.constructor-step-filter-caption{
    font-size: 16px;
    line-height: 22px;
    background: no-repeat 30px center;
    font-family: 'din', sans-serif;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 70px);
    font-weight: 600;
}
.constructor-step-list{
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.constructor-step-pack-item{
    border: 1px solid #e5e8eb;
    border-radius: 3px;
    padding: 30px 30px 70px;
    position: relative;
    height: 368px;
    margin-bottom: 30px;
    cursor: pointer;
}
.constructor-step-pack-item.sold{
    cursor: default;
}
.constructor-step-pack-item:hover:before, .constructor-step-pack-item.selected:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url(../img/constructor/next-stepbg.png) no-repeat center 112px rgba(255,83,116,0.88);
    
}
.constructor-step-pack-item.sold:before {
    content: '';
    background: url('../img/constructor/soldout.png') no-repeat;
        background-size: auto;
    background-size: contain;
    display: block;
    width: 200px;
    height: 170px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.constructor-step-pack-item:hover:after, .constructor-step-pack-item.selected:after{
    content: 'Далее';
    display: block;
    position: absolute;
    z-index: 1;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-family: 'din', sans-serif;
    text-align: center;
    width: 130px;
    height: 40px;
    line-height: 38px;
    top: 215px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 1px;
}
.constructor-step-pack-item.sold:after{
    display: none;
}
.constructor-step-pack-imgwr{
    text-align: center;
    margin: auto;
    height: 200px;
    margin-bottom: 8px;
}

.constructor-step-pack-imgwr img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.constructor-step-pack-title{
    font-family: 'din', sans-serif;
    font-size: 16px;
    color: #6f1c46;
    max-width: 120px;
    line-height: 16px;
    margin-top: 20px;
    margin-bottom: 24px;
}
.constructor-step-pack-wrline{
    position: absolute;
    bottom: 30px;
    left: 30px;
    height: 24px;
    font-size: 0;
    font-family: 'din', sans-serif;
}
.constructor-step-pack-wrline > div{
    display: inline-block;
    vertical-align: top;
    color: #fff;
    background: #b28aa0;
    border-radius: 3px;
    height: 24px;
    line-height: 24px;
    margin-right: 8px;
    font-size: 16px;
    padding: 0 12px;
}
.constructor-step-pack-weight{}
.constructor-step-pack-category{}


.constructor-paginationwr{
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}
.constructor-pagination-morebtn{
    display: inline-block;
    border: 2px solid #dd5570;
    border-radius: 2px;
    padding: 0 50px;
    height: 48px;
    line-height: 44px;
    color: #fe5572;
    font-size: 18px;
    font-family: 'din', sans-serif;
    cursor: pointer;
}
.constructor-pagination-morebtn:hover{
    background-color: #dd5570;
    color: #fff;
    text-decoration: none;
}
.constructor-pagination-morebtn:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background: url(../img/constructor/more-load.png);
    margin-right: 12px;
}
.constructor-pagination-morebtn:hover:before{
    background-image: url(../img/constructor/more-load-h.png);
}
.constructor-pagination-morebtn.block{
    color: #888;
    border-color: #888;
    background-color: transparent;
    cursor: default;
}
.constructor-pagination-morebtn.block:before{
     background: url(../img/constructor/more-load-b.png);
}

.constructor-step-content-wr{
    text-align: justify;
    padding-top: 24px;
    margin-bottom: 15px;
    position: relative;
}
.constructor-step-content-wr:after{
    content: '';
    height: 0;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.constructor-step-minipack, .constructor-step-content-wr .constructor-step-content-topwr, .reset_candy_btnwr{
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}
.constructor-step-minipack{
    width: 330px;
    height: auto;
    cursor: default;
    padding: 16px 20px 24px;
    margin: 0;
    
}
.constructor-step-pack-item.constructor-step-minipack:before, .constructor-step-pack-item.constructor-step-minipack:after{
    display: none;
}
.constructor-step-minipack .constructor-step-pack-imgwr{
    width: 100px;
    height: 110px;
    float: left;
    margin-bottom: 0;
}
.constructor-step-minipack .constructor-step-pack-content{
    margin-left: 125px;
    overflow: hidden;
}
.constructor-step-minipack .constructor-step-pack-label{
    color: #acc2c7;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'din', sans-serif;
}
.constructor-step-minipack .constructor-step-pack-wrline{
    position: static;
    height: auto;
}
.constructor-step-minipack .constructor-step-pack-title{
    line-height: 24px;
    margin: 6px 0 10px;
}

.constructor-step-content-hint{
    font-size: 16px;
    color: #b28aa0;
    line-height: 24px;
    font-family: 'din', sans-serif;
    max-width: 500px;
}
.reset_candy_btnwr{
    
}
.reset_candy_btn{
    display: inline-block;
    background: transparent;
    border: 2px solid #dd5570;
    border-radius: 2px;
    padding: 0 50px;
    height: 48px;
    line-height: 44px;
    color: #fe5572;
    font-size: 18px;
    font-family: 'din', sans-serif;
    cursor: pointer;
}
.reset_candy_btn:hover {
    background-color: #dd5570;
    color: #fff;
    text-decoration: none;
}
.constructor-step-content-topwr{
    padding-top: 32px;
}
.constructor-step-content-wr .constructor-step-content-topwr, .constructor-step-minipack + .constructor-step-content-topwr{
    padding-top: 0px;
}
.text-left{
    text-align: left;
}

.constructor-step-content-topwr + .row{
    clear: both;
}
.constructor-step-candy-item{
    border: 1px solid #e5e8eb;
    padding: 7px;
    padding-right: 167px;
    position: relative;
    margin-bottom: 8px;
}
.constructor-step-candy-item:hover{
    border-color: #b28aa0;
}
.constructor-step-candy-content{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
/*    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    width: 100%;
}
.constructor-step-candy-imgwr{
    height: 48px;
    width: 110px;
    text-align: center;
    margin-right: 30px;
    flex-shrink: 0;
}
.constructor-step-candy-imgwr img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.constructor-step-candy-titlewr{
    line-height: 24px;
    margin-right: 30px;
    flex-grow: 1;
}
.constructor-step-candy-title{
    display: block;
    font-size: 16px;
    color: #6f1c46;
    font-family: 'din', sans-serif;
}
.constructor-step-candy-brand{
    display: block;
    font-size: 13px;
    color: #9d8290;
    font-family: 'dinTin', sans-serif;
}
.constructor-step-candy-weight{
    font-size: 16px;
    font-family: 'dinTin', sans-serif;
    color: #6f1c46;
    width: 130px;
    margin-right: 30px;
    flex-shrink: 0;
    align-self: center;
}

.constructor-step-candy-countwr{
    background-color: #e9f4f6;
    padding: 8px 0;
    width: 160px;
    position: absolute;
    right: 7px;
    top: 7px;
    bottom: 7px;
    overflow: hidden;
}
.constructor-step-candy-count{
   width: 64px;
   border: 1px solid #c4e2e9;
   text-align: center;
   color: #675d62;
   font-size: 16px; 
   height: 32px;
   float: left;
}
.constructor-step-candy-count-btn{
    border: 0 none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 0;
    background: no-repeat center;
    cursor: pointer;
    float: left;
    margin: 0 8px;
    
}
.constructor-step-candy-count-btn:focus, .constructor-step-candy-count-btn:hover, .constructor-step-candy-count-btn:active{
    outline: 0;
}
.constructor-step-candy-count-btn-minus{
    background-image: url(../img/constructor/btn_minus.png);
}
.constructor-step-candy-count-btn-plus{
    background-image: url(../img/constructor/btn_plus.png);
}
.constructor-step-candy-item + .constructor-paginationwr{
    padding-top: 30px;
}

.hidden{
    display: none;
}
.hidden.visible{
    display: block;
}
.constructor-step-bottom-line{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 80px;
    padding: 16px 15px;
    background-color: #f0fcff;
    box-shadow: 0 0 48px rgba(196,226,233,0.48);
    font-size: 16px;
    line-height: 26px;
    font-family: 'din', sans-serif;
}
.constructor-step-bottomwr{
    margin: auto;
    max-width: 850px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}
.constructor-step-cweightwr{
    background: #ddf3e9;
    padding: 10px 32px;
    color: #6f1c46;
}
.constructor-step-cweight{}
.constructor-step-eweight{
    display: none;
    background-color: #dd5570;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 140px;
    padding: 10px 0;
    position: relative;
    margin-left: 35px;
    float: right;
}
.constructor-step-eweight:after{
    content: '';
    position: absolute;
    border: 8px solid transparent;
    border-right-color: #dd5570;
    display: block;
    left: -15px;
    top: 50%;
    margin-top: -8px;
}
.constructor-step-addinfo{
    white-space: nowrap;
}
.constructor-step-aweight, .constructor-step-curcost{
    padding: 10px 20px;
    display: inline-block;
    vertical-align: top;
}
.constructor-step-aweight{
    margin-right: 8px;
}
.constructor-step-curcost{
    background-color: #fff;
    color: #6f1c46;
}
.constructor-step-curcost span{
    font-weight: bold;
}
.constructor-btn-next{
    padding: 6px 0;
    border: 2px solid #dd5570;
    background-color: #dd5570;
    color: #fff;
    cursor: pointer;
    width: 140px;
    text-align: center;
    border-radius: 3px;
    font-weight: bold;
}
.constructor-btn-next:hover{
    background-color: transparent;
    color: #dd5570;
}
.error .constructor-step-cweightwr{
    background-color: #f2e1e9;
    padding: 0;
    padding-left: 30px;
}
.error .constructor-step-cweight{
    float: left;
    padding: 10px 0;
}
.error .constructor-step-eweight{
    display: block;
}
.error .constructor-btn-next{
    display: none;
}
.constructor-step-candy-bigpic{
    position: absolute;
    border: 1px solid #e5e8eb;
    padding: 15px;
    box-shadow: 0 0 10px rgba(196,226,233,0.48);
    top: 100%;
    background-color: #fff;
    z-index: 3;
    width: 430px;
}
.constructor-step-candy-bigpic .constructor-step-candy-imgwr{
    height: auto;
    margin: 0 0 24px;
    width: 100%;
}
.constructor-step-candy-bigpic .constructor-step-candy-imgwr img{
    height: auto;
    width: 100%;
    object-fit: none;
}
.constructor-step-candy-bigpic .constructor-step-candy-text{
    font-family: 'din', sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #6f1c46;
}

.constructor-step-order-imgwr{
    position: relative;
    border: 1px solid #e5e8eb;
    border-radius: 2px;
    margin-bottom: 32px;
}
.constructor-step-order-imgwr:before{
    content: '';
    display: block;
    padding-top: 100%;
}
.constructor-step-order-imgwr div{
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 30px;
    right: 30px;
}
.constructor-step-order-imgwr img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.constructor-step-order-printwr{
    background-color: #f3fcff;
    font-size: 18px;
    line-height: 24px;
    font-family: 'din', sans-serif;
    
    padding: 15px 30px;
}
.constructor-step-order-printbtn{
    background: url(../img/constructor/print.png) no-repeat left center;
    padding-left: 40px;
    color: #6f1c46;
    display: inline-block;
    cursor: pointer;
}
.constructor-step-order-printbtn span{
    border-bottom: 1px dotted;
}
.constructor-step-order-printbtn:hover{
    text-decoration: none;
    color: #6f1c46;
}
.constructor-step-order-printbtn:hover span{
    border-color: transparent;
}
.constructor-step-order-info{
    margin-left: 0;
    margin-right: 0;
    font-family: 'din', sans-serif;
    color: #6f1c46;
    margin-bottom: 24px;
}
.constructor-step-order-info-hint{
    background-color: #f3fcff;
    padding: 20px 30px 10px;
    font-size: 16px;
    
}
.constructor-step-order-info-p{
    line-height: 24px;
    margin-bottom: 16px;
}
.constructor-step-order-info-em{
    font-size: 14px;
    font-style: italic;
    color: #798d94;
    line-height: 20px;
    font-family: 'dinTin', sans-serif;
    margin-top: -13px;
    margin-bottom: 18px;
}
.constructor-step-order-info-costwr{
    background-color: #e8f9ff;
    padding: 20px 30px 10px;
}
.constructor-step-order-info-cost-p{
    font-size: 16px;
}
.constructor-step-order-info-cost{
    font-size: 20px;
    color: #ff5374;
    font-weight: bold;
    margin-bottom: 8px;
    white-space: nowrap;
}
.constructor-step-order-info-salecost{
    color: #4ca15a;
}
.constructor-step-order-info-costa{
    font-size: 14px;
    color: #6f1c46;
}
.constructor-step-order-info-cost-em{
    font-size: 14px;
    font-style: italic;
    font-family: 'dinTin', sans-serif;
}
.constructor-step-order-h{
    font-family: 'din', sans-serif;
    font-size: 35px;
    color: #6f1c46;
    font-weight: normal;
    margin-bottom: 0px;
}
.constructor-step-order-listwr{
    margin: 0 -8px;
}
.constructor-step-order-list{
    width: 100%;
    border-spacing: 8px;
    border-collapse: separate;
    font-family: 'din', sans-serif;
    margin-bottom: 12px;
}
.constructor-step-order-list th, .constructor-step-order-list td{
    
}
.constructor-step-order-list th{
    font-size: 13px;
    text-transform: uppercase;
    color: #acc2c7;
    font-weight: normal;
}
.constructor-step-order-list td{
    border: 1px solid #e5e8eb;
    padding: 6px 0;
}
.constructor-step-order-list .constructor-step-order-list-count{
    font-size: 16px;
    font-weight: bold;
    color: #675d62;
    text-align: center;
    width: 90px;
}
.constructor-step-order-backbtn{
    font-size: 18px;
    color: #6f1c46;
    font-family: 'din', sans-serif;
    display: inline-block;
    padding-left: 20px;
    background: url(../img/constructor/quote.png) no-repeat left center;
    cursor: pointer;
    margin-bottom: 24px;
}
.constructor-step-order-backbtn span{
    border-bottom: 1px dotted;
}
.constructor-step-order-backbtn:hover span{
    border-color: transparent;
}
.constructor-step-order-btnwr{
    background-color: #f3fcff;
    padding: 32px;
    overflow: hidden;
    font-family: 'din', sans-serif;
}
.constructor-step-order-sendbtn, .constructor-step-findpresent{
    
    text-align: center;
    font-size: 18px;
    height: 56px;
    border-radius: 2px;
}
.constructor-step-order-sendbtn{
    float: right;
    width: 235px;
    color: #fff;
    line-height: 52px;
    background-color: #ff5374;
    border: 2px solid #ff5374;
    font-weight: bold;
    cursor: pointer;
}
.constructor-step-order-sendbtn:hover{
    background-color: transparent;
    color: #ff5374;
}
.constructor-step-findpresent{
    color: #ff5374;
    background-color: #fff;
    width: 300px;
    float: left;
    line-height: 56px;
}
.constructor-step-findpresent:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 56px;
    background: url(../img/constructor/gift.png) no-repeat center;
    margin-right: 10px;
}
.constructor-step-findpresent:hover{
    background-color: #ff5374;
    color: #fff;
    text-decoration: none;
}
.constructor-step-findpresent:hover:before{
    background-image: url(../img/constructor/gift_h.png);
}

.order_popup_block.popup_block{
    background: url(../img/constructor/form_bg.png) center center #f0fcff;
    padding: 42px 30px 50px;
    color: #6f1c46;
    font-family: 'din', sans-serif;
    border-radius: 4px;
    position: relative;
    width: 570px;
    max-width: 90%;
}
.order_popupwr{
    width: 100%;
    max-width: 370px;
    margin: auto;
}
.order_popup_block .modal_close{
    float: none;
    margin: 0;
    right: 10px;
    top: 10px;
    position: absolute;
}
.order_popup_block.popup_block h2{
    font-size: 48px;
    line-height: 40px;
    text-transform: none;
    text-align: left;
    color: #6f1c46;
    margin-bottom: 10px;
    font-weight: normal;
    font-family: 'dinTin', sans-serif;
}
.order_pack_title{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 32px;
}
.order_formwr{
    
}
.order_fieldwr{
    margin-bottom: 12px;
}
.order_field_caption{
    font-size: 16px;
    color: #9fafb4;
    
}
.order_field{}
.popup_block .order_field .standard_inputtext{
    font-size: 16px;
    color: #6f1c46;
    width: 100%;
    border: 1px solid #d2eaef;
    background-color: #fff;
    padding: 0 14px;
    height: 56px;
    border-radius: 2px;
    font-weight: bold;
}

.popup_block .order_field .standard_inputtext::-webkit-input-placeholder {
    font-weight: normal;
}

.popup_block .order_field .standard_inputtext::-moz-placeholder {
    font-weight: normal;
}

.popup_block .order_field .standard_inputtext:-ms-input-placeholder {
    font-weight: normal;
}

.popup_block .order_field .standard_inputtext::-ms-input-placeholder {
    font-weight: normal;
}

.popup_block .order_field .standard_inputtext::placeholder {
    font-weight: normal;
}


.popup_block .order_field .standard_inputtext.notnull{
    background-image: url(../img/constructor/asterix.png);
    background-repeat: no-repeat;
    background-position: right center;
}
.order_form_hint{
    font-size: 14px;
    line-height: 24px;
    padding-top: 12px;
    margin-bottom: 24px;
    margin-right: -15px;
}
.order_fieldwr_file{
    margin-bottom: 24px;
}
.order_fieldwr_file .order_field{
    background: url(../img/constructor/note.png) no-repeat left center;
    margin-bottom: 6px;
}
.order_fieldwr_file label{
    margin-left: 32px;
    font-size: 18px;
    border-bottom: 1px dotted;
    margin-bottom: 0;
    line-height: 24px;
    cursor: pointer;
    font-weight: bold;
}
.order_fieldwr_file label:hover{
    border-color: transparent;
}
.order_fieldwr_file input{
    display: none;
}
.order_file_resultwr{}
.order_file_result_item{
    font-size: 14px;
    line-height: 24px;
    color: #5b696d;
}
.order_submitdwr{}
.order_submitdwr .standard_button{
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    height: 56px;
    border-radius: 2px;
    width: 100%;
    max-width: 235px;
    background: #ff5374;
    border: 2px solid #ff5374;
    font-family: 'din', sans-serif;
    text-transform: none;
    line-height: normal;
}
.order_submitdwr .standard_button:hover{
    background-color: transparent;
    color: #ff5374;
}

.constructor-step-filter-title{
    font-size: 20px;
    font-family: 'din', sans-serif;
    color: #b28aa0;
    margin-bottom: 12px;
}
.constructor-step-filter-weightlist{}
.constructor-step-filter-weight-item{
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    font-family: 'din', sans-serif;
    font-weight: 600;
    cursor: pointer;
    padding: 15px 30px;
    color: #6f1c46;
    border-bottom: 1px solid #ebf1f4;
    border-left: 1px solid #e5e8eb;
    border-right: 1px solid #e5e8eb;
    margin-bottom: 0;
}
.constructor-step-filter-weight-item:hover{
    background-color: #fff;
    border-color: #6f1c46;
    border-top: 1px solid #6f1c46;
    margin-top: -1px;
}

.constructor-step-filter-weight-item input{
    display: none;
}
.constructor-step-filter-weight-item span{
    display: block;
    padding-left: 30px;
    background: url(../img/checkbox.png) no-repeat left center;
}
.constructor-step-filter-weight-item input:checked + span{
    background-image: url(../img/checkbox-check.png);
}

/*/content*/
@media print {
    .container{
        max-width: none;
        width: 100%;
    }
    .constructor-stepwr{
        margin: 0;
    }
}



@font-face {
    font-family: 'Muller';
    src: url('../fonts/Muller/mullerregular.eot');
    src: local('mullerregular'),
        url('../fonts/Muller/mullerregular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muller/mullerregular.woff') format('woff'),
        url('../fonts/Muller/mullerregular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    src: url('../fonts/Muller/mullerbold.eot');
    src: local('MullerBold'),
        url('../fonts/Muller/mullerbold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muller/mullerbold.woff') format('woff'),
        url('../fonts/Muller/mullerbold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    src: url('../fonts/Muller/mullerextrabold.eot');
    src: local('MullerExtraBold'),
        url('../fonts/Muller/mullerextrabold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muller/mullerextrabold.woff') format('woff'),
        url('../fonts/Muller/mullerextrabold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    src: url('../fonts/Muller/mullerlight.eot');
    src: local('MullerLight'),
        url('../fonts/Muller/mullerlight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Muller/mullerlight.woff') format('woff'),
        url('../fonts/Muller/mullerlight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Circe Extra';
    src: local('Circe Extra Bold'), local('Circe-ExtraBold'),
        url('../fonts/circe-extrabold.woff2') format('woff2'),
        url('../fonts/circe-extrabold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: local('Circe Bold'), local('Circe-Bold'),
        url('../fonts/circe-bold.woff2') format('woff2'),
        url('../fonts/circe-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.modal21vek {
    display: none;
    font-family: 'Circe';
    width: 1000px;
    height: 480px;
    background: url(/assets/images/construct/construct21vek_bnbg_d.jpg) no-repeat center;
    background-size: cover;
    padding: 65px 310px 30px 40px;
    max-width: 99% !important;
}
.modal21vek .modal_close {
    display: none;

}
.modal21vek__title {
    font-size: 32px; color: #801345;
    letter-spacing: -0.03em;
    line-height: 1.3;
}
.modal21vek__title .t-c {
    color: #fa2867;
    font-size: 26px;
    text-transform: uppercase;
    font-family: 'Circe Extra';
}
.modal21vek__title img {
    margin-left: 5px;

}
.modal21vek__text {
    margin: 20px 0 0 205px;
    max-width: 440px;
    font-size: 24px; color: #fa2867;
    line-height: 1.4;
    letter-spacing: -0.025em;
}
.modal21vek__btn {
    margin: 5px 0 0 280px;
    width: 299px; height: 108px;
    background: url(/assets/images/construct/btn-21vek-text.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
    color: #fff; font-size: 34px;
    text-transform: uppercase;
    font-family: 'Circe';
    border: none;
    transition: all 0.3s ease;
    outline: none;
}
.modal21vek__btn:hover {
    transform: scale(1.05);

}
.modal21vek__btn span {
    transform: rotate(10deg);

}

@media (max-width: 979.98px) {

    .modal21vek {
        font-family: 'Circe';
        width: 720px;
        height: 865px;
        background-image: url(/assets/images/construct/construct21vek_bnbg_tablet.jpg);
        padding: 95px 30px 30px 40px;
    }
    .modal21vek__title {
        font-size: 36px;
        letter-spacing: -0.035em;
    }
    .modal21vek__title br {
        display: none;

    }
    .modal21vek__title .t-c {
        font-size: 31px;
    }
    .modal21vek__title img {
        width: 225px;
    }
    .modal21vek__text {
        margin: 150px 0 0 0px;
        max-width: 390px;
        font-size: 25px; color: #801345;
        line-height: 1.5;
        letter-spacing: 0.01em;
    }
    .modal21vek__text .t-r {
        display: block;
        text-align: right;
    }
    .modal21vek__btn {
        margin: 50px 0 0 240px;
        width: 336px; height: 131px;
    }

}
@media (max-width: 767.98px) {

    .modal21vek {
        width: 375px;
        height: 446px;
        padding: 45px 5px 20px 20px;
    }
    .modal21vek__title {
        font-size: 18px;
    }
    .modal21vek__title .t-c {
        font-size: 16px;
    }
    .modal21vek__title img {
        width: 118px;
    }
    .modal21vek__text {
        margin: 82px 0 0 0px;
        max-width: 200px;
        font-size: 13px;
    }
    .modal21vek__btn {
        margin: 25px 0 0 125px;
        width: 191px; height: 68px;
    }

}
@media (max-width: 359.98px) {

    .modal21vek {
        width: 310px;
        height: 369px;
        padding: 40px 5px 15px 15px;
    }
    .modal21vek__title {
        font-size: 16px;
    }
    .modal21vek__title .t-c {
        font-size: 13px;
    }
    .modal21vek__title img {
        width: 100px;
    }
    .modal21vek__text {
        margin: 65px 0 0 0px;
        max-width: 170px;
        font-size: 11px;
    }
    .modal21vek__btn {
        margin: 20px 0 0 100px;
        width: 158px; height: 56px;
    }

}

.construct__modal {
    font-family: 'Muller';
    max-width: 890px !important;
    width: 90%;
    padding: 35px 25px 35px 190px;
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    background: url("/assets/images/construct/top.png") no-repeat top center,
    url("/assets/images/construct/bottom.png") no-repeat bottom center;
    background-color: #b40031;
    overflow: hidden;
    display: none;
}
.construct__modal .modal_close {
    display: none;
}
.construct_m__grid {
    display: grid;
    grid-template-columns: auto minmax(auto, 380px);
    grid-gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.construct_m__photo {
    text-align: center;
    width: 200px;
}
.construct_m__photo img {
    max-width: 100%;
}
.construct_m__info {
    text-align: center;
}
.construct_m__box {
    padding: 7px 10px;
    border: 3px solid #34000e;
    background: #65001b;
    font-weight: bold;
    font-size: 20px; color: #fff;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.construct_m__box-t {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 18px; color: #ffd200;
}
.construct_m__box-ot {
    font-size: 30px; color: #ffd200;
    text-transform: initial;
}
.construct_m__btn {
    font-weight: bold;
    font-size: 30px; color: #34000e;
    max-width: 340px;width: 100%;
    height: 53px;
    list-style: 49px;
    display: inline-block;
    border-radius: 10px;
    border: 2px solid #34000e;
    background: #ffd200;
    cursor: pointer;
    margin-top: 15px;
    transition:  all 0.3s ease-in-out;
}
.construct_m__btn:hover {
    background: #34000e;
    color: #ffd200;
}
.construct_m__sale {
    width: 272px; height: 182px;
    position: absolute;
    top: 50%;
    left: -5px;
    background: url(../img/construct_m__sale.png) no-repeat;
    transform: translateY(-50%);
    padding: 20px 30px 20px 0px;
    font-weight: bold;
    font-size: 14px; color: #fff;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-align: center;
}
.construct_m__sale-t {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 23px; color: #ffd200;
}


@media (max-width: 960px) {
    .construct__modal {
        padding-left: 220px;
    }
    .construct_m__grid {
        grid-template-columns: auto minmax(auto, 340px);
    }
    .construct_m__photo {
        width: 180px;
    }
    .construct_m__box {
        font-size: 14px; 
    }
    .construct_m__box-t {
        font-size: 15px;
    }
    .construct_m__box-ot {
        font-size: 20px;
    }
    .construct_m__btn {
        font-size: 20px;
        max-width: 300px;width: 90%;
    }
}
@media (max-width: 767px) {
    .construct__modal {
        padding: 10px 0;
        max-width: 320px !important;
        background: url(/assets/images/construct/left.png) no-repeat center left,
                url(/assets/images/construct/right.png) no-repeat center right;
        background-color: #b40031;  
        background-size: 55px;  
    }
    .construct_m__grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 0px;
    }
    .construct_m__photo {
        width: 100%;
    }
    .construct_m__photo img {
        max-width: 200px
    }
    .construct_m__box {
        border: none;
        border-top: 2px solid #34000e;
        line-height: 1.25;
        padding: 10px 5px 15px;
    }
    .construct_m__sale {
        position: relative;
        margin: -30px 0 0;
        top: auto; left: auto;
        background: #65001b;
        padding: 5px 5px 10px;
        width: 100%;
        height: auto;
        transform: translateY(0%);
    }
    .construct_m__sale-t {
        font-size: 17px;
        margin: 0;
        display: inline-block;
    }
    .construct_m__btn {
        font-size: 20px;
        max-width: 280px;width: 90%;
        height: 40px; line-height: 36px;
        margin-top: 7px;
    }
}

/*про промокод*/

.promocode_hidden {
    display: none;
}

.promocode_block {
    border: 1px solid #e5e8eb;
    padding: 15px 25px 15px 30px;
    margin-bottom: 25px;
}

.promocode_block_caption {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    font-family: 'din', sans-serif;
    color: #6f1c46;
    line-height: 30px;
    float: left;
}

.promocode_block_field {
    margin-left: 80px;
    margin-right: 100px;
}

.promocode_block_field_input {
    height: 30px;
    line-height: 28px;
    padding: 0 15px;
    border: 1px solid #e5e8eb;
    width: 100%;
    text-transform: uppercase;
    background-color: #ffffff;
    font-size: 13px;
}

.promocode_block_button {
    float: right;
    display: inline-block;
    line-height: 30px;
    font-size: 12px;
    color: #ffffff;
    background-color: #ff5374;
    padding: 0 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.promocode_block_button:hover {
    background-color: #ee4263;
}

.promocode_block_perc {
    float: right;
    font-size: 16px;
    font-weight: bold;
    color: #4ca15a;
    line-height: 30px;
}


.nowrap {
    white-space: nowrap;
}


.modalNewYear {
    display: none;
    font-family: 'Circe';
    width: 90%;
    min-height: 340px;
    background: url(/assets/images/construct/construct_new_year_bg.jpg) no-repeat left;
    background-size: cover;
    background-color: #fffbfb;
    padding: 40px 100px;
    max-width: 1170px !important;
    font-family: "din",sans-serif;
    color: #821546;
    line-height: 1.2;
}
.modalNewYear .modal_close {
    display: none;

}
.modalNewYear__title {
    font-size: 33px;
}
.modalNewYear__text {
    font-size: 33px;
    max-width: 470px;
    margin-top: 25px
}
.modalNewYear__text p + p{

}
.modalNewYear__btn {
    margin-top: 40px;
    height: 70px;
    min-width: 230px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fe5472;
    border: none;
    border-radius: 5px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
}
.modalNewYear__btn:hover {
    background-color: #fa889f;
}


@media (max-width: 991px) {
    .modalNewYear {
        padding: 30px 60px;
        max-width: 420px;
    }
    .modalNewYear__title,
    .modalNewYear__text {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .modalNewYear {
        max-width: 360px !important;
        background-image: url(/assets/images/construct/construct_new_year_bg-m.jpg);
        background-size: initial;
        background-position: bottom center;
        padding: 25px 30px 280px;
    }
    .modalNewYear__info {
        max-width: 220px;
        margin: 0 auto;
    }
    .modalNewYear__title {
        font-size: 40px;
        line-height: 1.1;
    }
    .modalNewYear__text {
        font-size: 24px;
        margin-top: 20px;
    }
    .modalNewYear__btn {
        width: 100%; min-width: 200px;
        height: 65px;
        margin-top: 30px
    }
}