.choise .case {
    padding-top: 80px;
    padding-bottom: 108px;
}
.choise__title {
    margin-bottom: 24px;
}
.choise__text {
    margin-bottom: 23px;
}
.choise__text a {
	color: var(--primary-color);
	border-color: var(--primary-color);
}
.choise__text a:hover {
	color: var(--primary-color-active);
	border-color: transparent;
}
.choise__text u {
    font-weight: 500;
}
.choise__nav {
    font-size: 20px;
    margin-bottom: 30px;
}
.choise__nav-item {
    font-size: 20px;
    color: var(--primary-color);
    border-color: var(--primary-color);
    margin-right: 35px;
}
.choise__nav-item:last-of-type {
    margin-right: 0;
}
.choise__nav-item:hover {
    color: var(--primary-color-active);
    border-color: transparent;
}
.choise__nav-item.--current {
    color: #000;
    border-color: transparent;
}
.choise__tabs {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
}
.choise__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__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__item svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transition: var(--transition-duration);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}
.choise__item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.choise__item:hover:before {
    border-color: #fff;
}
.choise__item.--current {
    cursor: default;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.choise__item.--current:before {
    border-color: #fff;
}
.choise__item.--current svg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.choise__windows {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 184px;
    width: 298px;
    min-height: 514px;
}
.choise__window {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.choise__window.--current {
    opacity: 1;
}
.choise__handles {
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 20px;
    width: 332px;
    height: 178px;
}
.choise__handle {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.choise__handle.--current {
    opacity: 1;
}
@media screen and (max-width: 1220px) {
    .choise__list {
        margin-left: -5px;
        margin-right: -5px;
        margin-bottom: -10px;
    }
    .choise__item {
        width: 50px;
        height: 50px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
    }
    .choise__item:before {
        border-width: 3px;
    }
}
@media screen and (max-width: 992px) {
    .choise .case {
        padding-top: 40px;
        padding-bottom: calc(45px + 20px);
    }
    .choise__title {
        margin-bottom: 20px;
    }
    .choise__text {
        margin-bottom: 20px;
    }
    .choise__nav {
        margin-bottom: 25px;
    }
	.choise__text, 
	.choise__nav-item {
		font-size: 17px;
		line-height: 24px;
	}
    .choise__nav-item {
        margin-right: 15px;
    }
    .choise__nav-item:last-of-type {
        margin-right: 0;
    }
    .choise__windows {
        min-height: 1px;
        right: -4px;
    }
    .choise__handles {
        width: 220px;
        height: 118px;
        margin-top: 16px;
    }
}
@media screen and (max-width: 767px) {
    .choise {
        text-align: center;
    }
    .choise .case {
        padding-top: 40px;
        padding-bottom: calc(40px + 5px);
    }
    .choise__text {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .choise__imgs,
    .choise__nav,
    .choise__tabs {
        display: none;
    }
	.bg.choise__bg {
		overflow: hidden;
	}
	.bg.choise__bg img {
		top: -20px;
		width: calc(100% + (20px * 2));
		height: calc(100% + (20px * 2));
		filter: blur(10px);
		z-index: 0;
	}
	.bg.choise__bg:before {
		content: "";
		display: block;
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		background: #fff;
		opacity: 0.5;
		z-index: 10;
	}
}