.choise-peregorodki .case {
    padding-top: 70px;
    padding-bottom: 93px;
}
.choise-peregorodki__title {
    margin-bottom: 20px;
}
.choise-peregorodki__text {
    margin-bottom: calc(20px + 8px);
}
.choise-peregorodki__text a {
	color: var(--primary-color);
	border-color: var(--primary-color);
}
.choise-peregorodki__text a:hover {
	color: var(--primary-color-active);
	border-color: transparent;
}
.choise-peregorodki__text u {
    font-weight: 500;
}
.choise-peregorodki__nav {
	display: none !important;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
    font-size: 20px;
    margin-bottom: 30px;
}
.choise-peregorodki__nav-item {
	display: inline-block;
	vertical-align: top;
    font-size: 20px;
    margin-right: 35px;
}
.choise-peregorodki__nav-item:last-of-type {
    margin-right: 0;
}
.choise-peregorodki__nav-item > div {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
}
.choise-peregorodki__nav-item > div > span {
	display: inline-block;
	vertical-align: top;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	font-weight: 500;
	white-space: nowrap;
}
.choise-peregorodki__tabs {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
}
.choise-peregorodki__item {
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: var(--transition-duration);
}
.choise-peregorodki__item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    border: 5px solid transparent;
    transition: var(--transition-duration);
}
.choise-peregorodki__item svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: var(--transition-duration);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}
.choise-peregorodki__item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.choise-peregorodki__item:hover:before {
    border-color: #fff;
}
.choise-peregorodki__item.--current {
    cursor: default;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.choise-peregorodki__item.--current:before {
    border-color: #fff;
}
.choise-peregorodki__item.--current svg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.choise-peregorodki__item-all {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    background: #fff;
	color: #000;
	text-align: center;
}
.choise-peregorodki__item-all > div {
	display: block;
	margin: 0px 0px 0px 0px; 
	padding: 0px 0px 0px 0px;
	position: relative;
	width: 100%;
}
.choise-peregorodki__item-all > div > span:nth-child(1) {
	display: block;
	margin: 0px 0px 0px 0px; 
	padding: 0px 0px 0px 0px;
	position: relative;
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
}
.choise-peregorodki__item-all > div > span:nth-child(2) {
	display: block;
	margin: 2px 0px 0px 0px; 
	padding: 0px 0px 0px 0px;
	position: relative;
	font-size: 24px;
	line-height: 24px;
	font-weight: 500;
}
.choise-peregorodki__item-all > div > span:nth-child(3) {
	display: block;
	margin: 0px 0px 0px 0px; 
	padding: 0px 0px 0px 0px;
	position: relative;
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
}
.choise-peregorodki__windows {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 184px;
    width: 315px;
    min-height: 435px;
}
.choise-peregorodki__window {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.choise-peregorodki__window.--current {
    opacity: 1;
}
@media screen and (max-width: 1575px) {
    .choise-peregorodki__windows {
        right: 50px;
    }
}
@media screen and (max-width: 1220px) {
    .choise-peregorodki__item {
        width: 74px;
        height: 74px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
    }
    .choise-peregorodki__item:before {
        border-width: 4px;
    }
	.choise-peregorodki__item-all {
        width: 74px;
        height: 74px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
	}
    .choise-peregorodki__windows {
        right: 0px;
    }
}
@media screen and (max-width: 992px) {
    .choise-peregorodki .case {
        padding-top: 40px;
        padding-bottom: calc(45px + 20px);
    }
    .choise-peregorodki__title {
        margin-bottom: 15px;
    }
    .choise-peregorodki__text {
        margin-bottom: calc(15px + 8px);
    }
    .choise-peregorodki__nav {
        margin-bottom: 25px;
    }
	.choise-peregorodki__text, 
	.choise-peregorodki__nav-item {
		font-size: 17px;
		line-height: 24px;
	}
    .choise-peregorodki__nav-item {
        margin-right: 25px;
    }
    .choise-peregorodki__item {
        width: 60px;
        height: 60px;
    }
    .choise-peregorodki__item:before {
        border-width: 3px;
    }
	.choise-peregorodki__item-all {
		display: none;
        width: 60px;
        height: 60px;
	}
   .choise-peregorodki__windows {
        min-height: 1px;
		width: 220px;
        right: -4px;
    }
}
@media screen and (max-width: 767px) {
    .choise-peregorodki {
        text-align: center;
    }
    .choise-peregorodki .case {
        padding-top: 40px;
        padding-bottom: calc(40px + 5px);
    }
    .choise-peregorodki__text {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .choise-peregorodki__imgs,
    .choise-peregorodki__nav,
    .choise-peregorodki__tabs {
        display: none;
    }
	.bg.choise-peregorodki__bg {
		overflow: hidden;
	}
	.bg.choise-peregorodki__bg img {
		top: -20px;
		width: calc(100% + (20px * 2));
		height: calc(100% + (20px * 2));
		filter: blur(10px);
		z-index: 0;
	}
	.bg.choise-peregorodki__bg:before {
		content: "";
		display: block;
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		background: #fff;
		opacity: 0.5;
		z-index: 10;
	}
}