*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
}
ul, li {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.partition-dress__wrap-outer {
    position: relative; 
    /*height: 795px;*/
    min-height: 100%;
}

.partition-dress__select-type-wrap {
	position: relative;
    width: 100%;
	height: 30px;
    margin-right: 15px;
}

.partition-dress__select-type {
	width: 100%;
	height: 100%;
	background: #fff;
	border: none;
	outline: none;
	color: #000;
	padding-left: 5px;
	-moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.partition-dress__select-type option {
    margin-top: 15px;
    border: none;
    outline: none;
    -moz-appearance: none;
	-webkit-appearance: none;
	display: block;
	padding-left: 25px;
}
.partition-dress__select-type-wrap:before {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #e0e0e0;
	position: absolute;
	top: 0;
	right: 28px;
}
.partition-dress__select-type-wrap:after {
	content: "";
	display: block;
	background-image: url(images/new_svg/arrow-select.svg);
        background-repeat: no-repeat;
        background-size: cover;
	top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;
	width: 8px;
	height: 4px;
	right: 11px;
	position: absolute;
	pointer-events: none;
}
.partition-dress__select-type-wrap.rotate:after {
    transform: translateY(-50%) rotate(180deg);
}

.view-block__select.rotate:after {
    transform: translateY(-50%) rotate(180deg);
}



.partition-dress__img-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.partition-dress__img-bg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
}


@keyframes showBg {
    from {
        opacity: .5;
        background-size: 0%;
    }
    to {
        opacity: 1;
        background-size: 100%;
    }
}
@keyframes showImg {
    from {
        opacity: .5;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animateBg {
    animation-name: showBg;
    animation-duration: 1s;
}
.animateImg {
    animation-name: showImg;
    animation-duration: 1s;
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: .5;
        transform: scale(0);
    }
}
.hideImg {
    animation-name: slideOut;
    animation-duration: 1s;
}

.partition-dress__img-wrap:before {
 	content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #000000d4, #00000050);
    z-index: 1;
}

/* partition  calc */

 
.view-block__picture {
/*    max-height: 700px;
    overflow: hidden;*/
    height: 100%;
}
.view-block__thumbnail-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    user-select: none;
    flex-direction: column;
    max-width: 211px;
    height: 100%;
    overflow: hidden;
}
.view-block__thumbnail-item {
    width: 140px;
    height: 115px;
    cursor: pointer;
}
.view-block__thumbnail-img {
    width: 100%;
    display: block;
}
.view-block__img-wrap {
    width: 260px;
    display: flex;
    align-items: center;
    
}
.view-block__img {
    width: 100%;
    cursor: pointer;
}

/* range */
input[type=range] {
    -webkit-appearance: none;
    outline: none;
    background-color: transparent;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    cursor: pointer;
    background: #ecf0f1;
    border: 1px solid #999;
}
input[type=range]::-webkit-slider-thumb {
    border: 2px solid #999;
    height: 18px;
    width: 18px;
    border-radius: 2px;
    background-color: #ecf0f1;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
    border-radius: 50%;
}

input[type=range]::-moz-range-track {
    height: 2px;
    cursor: pointer;
    background: #ecf0f1;
    -moz-appearance: none;
}
input[type=range]::-moz-range-thumb {
    border: 2px solid #EB5757;
    height: 18px;
    width: 18px;
    border-radius: 2px;
    background-color: #343C48;
    cursor: pointer;
    -moz-appearance: none;
    margin-top: -8px;
    border-radius: 50%;
    overflow: hidden;
}
input[type=range]::-ms-track {
    height: 2px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
    margin-top: 10px;
    margin-bottom: 10px;
}
input[type=range]::-ms-fill-lower {
    background-color: #ecf0f1;
}
input[type=range]::-ms-fill-upper {
    background-color: #ecf0f1;
}
input[type=range]::-ms-thumb {
    border: 2px solid #999;
    height: 18px;
    width: 18px;
    border-radius: 2px;
    background-color: #ecf0f1;
    cursor: pointer;
    border-radius: 50%;
    margin-top: 0px;
}



input[type="range"]::-moz-range-progress {
    background-color: #EB5757; 
}
input[type="range"]::-moz-range-track {  
    background-color: #fff;
}
input[type="range"]::-ms-fill-lower {
    background-color: #EB5757; 
}
input[type="range"]::-ms-fill-upper {  
    background-color: #fff;
}
input[type="range"]::-ms-tooltip {
    color: #fff;
}



/* ---------------------------- */

.partition-range__width-wrap,
.partition-range__height-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .partition-range__width-wrap,
    .partition-range__height-wrap {
    /*justify-content: space-between;*/
    }
}
.partition-range__width-title,
.partition-range__height-title {
    color: #fff;
    font-size: 10px;
}
.partition-range__input {
    width: 90px;
    max-width: 150px;
    min-height: 25px;
    background: #FFFFFF;
    border-radius: 12.5px;
    border: none;
    outline: none;
    padding: 5px 14px;
    font-size: 14px;
    line-height: 16px;
}
.partition-range__range {
    width: 50%;
    /*margin-left: auto;*/
    margin-right: 10px;
}





/*  */
.select-type-glass,
.select-thin-glass {
    margin-top: 15px;
}

.select-type-glass__wrap,
.select-thin-glass__wrap {
	position: relative;
	height: 30px;
    min-width: 120px;
}
.select-type-glass__title,
.select-thin-glass__title {
    font-size: 10px;
    color: #fff;
    font-weight: 200;
    margin-bottom: 7px;
}
.select-type-glass__select,
.select-thin-glass__select {
	width: 100%;
	height: 100%;
	background: #fff;
	border: none;
	outline: none;
	color: #000;
	padding-left: 5px;
	-moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-type-glass__wrap:before,
.select-thin-glass__wrap:before {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #e0e0e0;
	position: absolute;
	top: 0;
	right: 28px;
}
.select-type-glass__wrap:after,
.select-thin-glass__wrap:after {
	content: "";
	display: block;
	background-image: url(images/new_svg/arrow-select.svg);
	background-repeat: no-repeat;
	top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;
	width: 8px;
	height: 4px;
	right: 11px;
	position: absolute;
	pointer-events: none;
}
.select-type-glass__wrap.rotate:after,
.select-thin-glass__wrap.rotate:after {
    transform: translateY(-50%) rotate(180deg);
}


/* ======================================================================================================================================== */
/* new style */

.partition-dress__calc {
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    z-index: 5;
    min-height: 100%;
    margin-left: auto;
    max-width: 440px;
}

.partition-dress__main {
    padding: 20px;
    /*padding-top: 68px;*/
    width: 440px;
}
.partition-dress__aside {
	padding: 44px 0px;
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	right: 440px;
	top: 0px;
        height: 100%;
        opacity: 0;
        transition: 0.5s;
        /*width: 0;*/
        pointer-events: none;
        overflow: hidden;
        border-right: 2px solid #777;
}

.partition-dress__wrap-inner {
    display: flex;
    justify-content: space-between;
}
.partition-dress__header {
    z-index: 5;
    width: 650px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    /*justify-content: flex-end;*/
}
.partition-dress__header-title {
    font-weight: 300;
    font-size: 36px;
    line-height: 150%;
    color: #FFFFFF;

}
.partition-dress__header-desc {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 21px;

}
.view-block__thumbnail-item {
    width: 210px;
    height: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
form .slick-carousel .view-block__thumbnail-item {
    width: 210px;
    height: 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 25px;
}
.view-block__thumbnail-item:hover {
    background-color: rgba(43, 79, 145, 0.44);
}

.view-block__thumbnail-img {
    max-width: 146px;
    max-height: 135px;
}
.partition-dress__main-title {
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;

}
.partition-dress__setting-wrap {
    display: flex;
    flex-wrap: nowrap;
    /*padding-top: 36px;*/
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
}
.partition-dress__setting {
    width: 129px;
    height: 92px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    margin-right: 15px;
}
.partition-dress__setting-img {
    display: block;
    width: 38px;
    height: 38px;
}
.partition-dress__setting-title {
    font-weight: 200;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #333333;
    user-select: none;
}
.partition-dress__select-appoint-wrap {
	position: relative;
        width: 100%;
	height: 30px;
        margin-right: 15px;
}

.partition-dress__select-appoint {
	width: 100%;
	height: 100%;
	background: #fff;
	border: none;
	outline: none;
	color: #000;
	padding-left: 5px;
	-moz-appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
}

.partition-dress__select-appoint-wrap:before {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background-color: #e0e0e0;
	position: absolute;
	top: 0;
	right: 28px;
}
.partition-dress__select-appoint-wrap:after {
	content: "";
	display: block;
	background-image: url(images/new_svg/arrow-select.svg);
        background-repeat: no-repeat;
        background-size: cover;
	top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;
	width: 8px;
	height: 4px;
	right: 11px;
	position: absolute;
	pointer-events: none;
}
.partition-dress__select-appoint-wrap.rotate:after {
    transform: translateY(-50%) rotate(180deg);
}

.partition-dress__type-wrap-title,
.partition-dress__appoint-wrap-title {
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-bottom: 7px;
}


.partition-dress__select-type-wrap {
    margin-bottom: 13px;
}
.view-block__thumbnail-title {
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
}
.partition-dress__select-type-glass,
.partition-dress__select-thin-glass {
    width: 40%;
}
.select-type-glass__wrap,
.select-thin-glass__wrap {
    width: 100%;
}
.partition-dress__glass-wrap {
    display: flex;
    justify-content: space-between;
}
.partition-dress__furniture {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 32px;
    padding-bottom: 31px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.partition-dress__furniture__title {
    width: 100%;
    text-align: left;
    font-weight: 200;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 15px;
    
}
.partition-dress__furniture-economy,
.partition-dress__furniture-premium {
    width: 40%;
}

.partition-dress__furniture input,
.partition-dress__furniture input {
    display: none;
}
.partition-dress__furniture-economy,
.partition-dress__furniture-premium {
    padding-left: 34px;
    font-weight: 200;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    position: relative;
}
.partition-dress__furniture-economy:before,
.partition-dress__furniture-premium:before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.partition-dress__furniture-economy:after,
.partition-dress__furniture-premium:after {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.partition-dress__furniture input:checked + .partition-dress__furniture-economy:after,
.partition-dress__furniture input:checked + .partition-dress__furniture-premium:after {
    background-color: #2b4f91;
}


.partition-dress__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.partition-dress__contacts label:not(:last-child) {
    width: 30%;
    display: flex;
    flex-direction: column;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;

}
.partition-dress__contacts label:last-child {
    width: 60%;
    margin-top: 23px;
    padding-left: 29px;
    position: relative;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
}
.partition-dress__contacts label:last-child a {
    color: #2F80ED;
}
.partition-dress__contacts label:last-child:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 16px;
    border-radius: 2px;
    background-color: #F2F2F2;
}
.partition-dress__contacts input {
    width: 118px;
    height: 30px;
    background-color: #FFFFFF;
    border: none;
    padding-left: 10px;
    margin-top: 8px;
}
.partition-dress__contacts > input {
    display: none;
}

.partition-dress__contacts > input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 10px;
    background-image: url(images/new_svg/check_blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.partition-dress__wrap-outer .container {
    height: 100%;
}
.partition-dress__wrap-inner {
    min-height: 100%;
    position: relative;
}

.partition-dress__total {
    display: flex;
    margin-top: 26px;
    align-items: center;
    justify-content: space-between;
}
.partition-dress__total-price {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;

}
.partition-dress__total button {
    background-color: #2b4f91;
    padding: 12px 30px;
    font-weight: normal;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    border: none;
}

.btn-slick {
	border: none;
	background-color: unset;
	outline: none;
	-moz-appearance: none;
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
}
.btn-slick img{
    display: block;
    width: 100%;
    height: 100%;
}
.btn-slick--prev {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.btn-slick--next {
    left: 50%;
    transform: translateX(-50%);
}
@keyframes rotateGear {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.partition-dress__setting-img {
    animation-name: rotateGear;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    user-select: none;
}
.showAside {
    width: auto;
    /*max-width: 440px;*/
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 1024px) {
    .partition-dress__header {
        display: none;
    }
}
@media (max-width: 768px) {
    .partition-dress__header {
        display: block;
        padding-top: 0;
        width: 100%;
    }
    .partition-dress__header-title {
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 400;
    }
    .partition-dress__header-desc {
        font-size: 14px;
        font-weight: 400;
    }
    .partition-dress__img-wrap {
        height: 470px;
    }
    .partition-dress__img-wrap::before
    {
            background: linear-gradient(to top, #00000097, #00000050);
    }
    .partition-dress__wrap-inner {
        flex-direction: column;
    }
    .partition-dress__calc {
        margin-top: 59px;
        max-width: 100%;
        margin-left: 0;
        background-color: #2B4F91;
    }
    .partition-dress__main {
        margin: 0 auto;
        width: 100%;
    }
    .partition-dress__setting-wrap {
        width: 100%;
    }
    .partition-dress__range {
        width: 100%;
    }
    .partition-dress__glass-wrap {
        width: 100%;
    }
    .partition-dress__furniture {
        width: 100%;
    }
    .partition-dress__contacts label:not(:last-child) {
        /* max-width: 30%; */
        width: 30%;
        margin: 5px;
    }
    .partition-dress__contacts input {
        width: auto;;
    }
    .partition-dress__total {
        width: 100%;
    }
    .partition-dress__aside {
        position: relative;
        overflow: unset;
        top: unset;
        right: unset;
        background-color: #2B4F91;
    }
    .partition-dress__view-wrap {
        width: 100%;
    }
    .btn-slick--next,
    .btn-slick--prev {
        left: 50%;
    }
    .partition-dress__main {
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .partition-dress__furniture-economy,
    .partition-dress__furniture-premium  {
        display: flex;
        align-items: center;
    }
    .partition-dress__wrap-inner {
        width: inherit;
        position: static;
    }
    .partition-dress__total {
        justify-content: space-around;
    }
}
@media (max-width: 768px) {
.hero__desc {
    margin-top: 40px;
}
.partition-dress__wrap-outer {
    height: 460px;
    
}
    .partition-dress__calc {
        position: relative;
    }
    .partition-dress__furniture {
        margin-bottom: 200px;
    }
    .partition-dress__aside {
        top: 450px;
        right: unset;
        opacity: 1;
        padding: 0px 50px;
        background-color: unset;
        position: absolute;
        height: auto;
        display: block;
        overflow: unset;
        border-right: none;
        min-width: 100%;
        max-width: 100%;
    }
    .view-block__thumbnail-list {
        flex-wrap: nowrap;
        user-select: none;
        flex-direction: row;
        max-width: 100%;
        height: auto;
        align-items: unset;
    }
    .view-block__picture {
        overflow: unset;
    }
    .partition-dress__glass-wrap {
        flex-direction: column;
    }
    .partition-dress__select-type-glass,
    .partition-dress__select-thin-glass {
        width: 100%;
    }
    .btn-slick--prev {
        top: 30%;
        left: unset;
        transform: rotate(90deg);
        right: 0;
        width: 50px;
    }
    .btn-slick--next {
        top: 30%;
        left: 0;
        transform: rotate(90deg);
        width: 50px;
    }
    .partition-dress__contacts {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    form .slick-carousel .view-block__thumbnail-item {
        height: 185px;
    }
    .partition-range__width-title, .partition-range__height-title {
        order: -1;
/*        margin-right: 15px;
        min-width: 80px;*/
    }
    .partition-range__range {
        /*flex-grow: 1;*/
    }
    .partition-range__input {
        order: -1;
        /*margin-right: 15px;*/
            margin-right: 10%;
    margin-left: auto;
    }
    .partition-dress__setting {
        display: none;
    }
}
.view-block__thumbnail-item a{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    outline: none;
    text-decoration: none;
}
.fixedTotalPrice {
    font-weight: 200;
    font-size: 18px;
    color:#000;
    background-color: #fff;
    position: fixed;
    top: 50%;
    right: 0;
    padding: 5px 15px;
    border-radius: 30px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    min-width: 160px;
    text-align: center;
}
@media (max-width: 576px) {
    .partition-dress__aside {
        top: 520px;
    }
    
}
@media (max-width: 389px) {
    .partition-dress__aside {
        top: 550px;
    }
}