@media (max-width: 1199px) {
  .tab-container {
    position: relative;
    overflow: hidden;
  }
  
  .tabs {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    -webkit-overflow-scrolling: touch;
	white-space: nowrap;
  }
  .tabs::-webkit-scrollbar {
    height: 4px;
  }
  .tabs::-webkit-scrollbar-track {
    border-radius: 2px;
  }
  .tabs::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
  }
  .tabs::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
	#tab1:checked ~ .tabs .tab:nth-child(1),
	#tab2:checked ~ .tabs .tab:nth-child(2),
	#tab3:checked ~ .tabs .tab:nth-child(3),
	#tab4:checked ~ .tabs .tab:nth-child(4),
	#tab5:checked ~ .tabs .tab:nth-child(5),
	#tab6:checked ~ .tabs .tab:nth-child(6),
	#tab7:checked ~ .tabs .tab:nth-child(7){
		background-color: #fff;
	}
  
  .slider {
    display: none;
  }
}


ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.page {
    background-color: #E6F0FA;
    padding-top: 2.5rem;
}
.page .breadcrumbs__menu {
	font-size: 1.3rem;
    line-height: 2rem;
}
.page .breadcrumbs__link {
    color: #343434;
    border-bottom: none;
}
.page p {
	padding: 0;
	margin: 0;
}
.bc {
	margin: 0 0 60px 0;
	display: flex;
}
.page .bc li a {
	font-size: 15px;
	color: #282828;
}
.page .bc li:first-child a {
	color: #677586;
}

.page h1 {
	font-size: 28px;
    line-height: 32px;
	color: #343434;
	font-weight: 400;
	margin-top: 50px;
	margin-bottom: 40px;

}
@media (min-width: 768px) {
.page h1 {
	margin-top: 50px;
	font-size: 35px;
    line-height: 31px;
}
}
 
.header.header--v4 {
	margin: 0;
}

.calc_main {
	border-radius: 20px;
	background-color: #fff;
	padding: 40px;
	box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.calc_main--list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.select-wrapper {
	position: relative;
	display: inline-block;
	border-radius: 8px;
	border: 1px solid #D5D7DF;
	padding-right: 20px;
	padding-left: 10px;
}


.page .calc-label {
	font-size: 12px;
    line-height: 16px;
	font-weight: 500;
    color: #64748B;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.form--element--print {
	display: flex;
	flex-direction:column;

}
.form--element--print-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 18px;
	text-align: left;
	color: #0f172a;
}
.form--element--print-text {
	font-weight: 400;
	font-size: 10px;
	line-height: 15px;
	text-align: left;
	color: #94a3b8;
}

select {
	padding: 13px;
    position: relative;
    z-index: 2;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    border: none;
    width: 100%;
    border: 1px solid #D5D7DF;
    border-radius: 12px;
    background-color: #f8fafc;
}
select:hover {
	border-color: #9EBFE0;
	background: #F4F9FF;
	cursor:pointer;
}
.input-wrapper {
	position: relative;
	display: inline-block;
}
/* .input-wrapper label {
	position: absolute;
	left: 24px;
	top: 10px;
	font-weight: 400;
	pointer-events: none;
	color: #606981;
	z-index: 1;
	font-size: 12px;
	line-height: 17px;
	margin: 0;
} */
.calc_main__col input {
	padding: 13px 17px;
    position: relative;
    background: transparent;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    border: none;
    width: 100%;
    border: 1px solid #D5D7DF;
    border-radius: 12px;
    background-color: #f8fafc;
    color: #3482C5;
}
.calc_main__col input:hover {
	border-color: #9EBFE0;
	background: #F4F9FF;
}
.spinner-btn {
	position: absolute; 
	border: none; 
	background: none; 
	font-size: 18px; 
	cursor: pointer; 
	width: 30px; 
	height: 30px; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	color: #666; 
	z-index: 2;
}
.spinner-btn--minus {
	left: 10px; 
}
.spinner-btn--plus {
	right: 10px;
}
.mm-input {
    position: absolute;
    top: 20px;
	right: 14px;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;	
	color: #94a3b8;
}
.form--element {
	display: flex;
	flex-direction:column;
	width: 100%;
	gap: 8px;
}
.toggle-wrapper {
	flex-direction: row;
	align-items: center;
}
.form--element.form--element__rows {
    display: none;
}
.form--element--wr {
	display: flex;
	flex-direction:column;
	gap:30px;
	justify-content:space-between;
}
@media (min-width: 560px) {
	.form--element--wr {
		flex-direction:row;
	}
}
.form--element--tgwr {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.form--element--fwr {
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items:center;
}

.calc_main--wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
@media (min-width: 992px) {
	.calc_main--wrapper {
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	}
}
.calc_main__col {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.page .noUi-horizontal {
	height: 4px;
	border-bottom-right-radius:200px;
	border-bottom-left-radius:200px;
}
.page .noUi-connect {
	background:#2E86C1;
}
.page .noUi-background {
	background:#D5D7DF;
	border-bottom-right-radius:200px;
	border-bottom-left-radius:200px;
}
.noUi-handle:after, .noUi-handle:before {display: none;}

.page .noUi-horizontal .noUi-handle {
    width: 16px;
    height: 16px;
    box-shadow: none;
    background: #fff;
    border: 3px solid #2E86C1;
    border-radius: 100%;
    top: -6px;
    left: -7px;
    cursor: pointer;
}

.page .noUi-target {
	border: none;
}

.page .noUi-origin {
    right: -1px;
}

.calc-limit {
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 12px;
	line-height: 110%;
	font-weight: 400;
	color: #606981;
}
.page .custom-radio input + span {
	font-size: 17px;
	color: #606981;
    font-weight: 400;
}
.page .custom-radio input:checked + span {
    color: #282828;
    font-weight: 500;
}

.calculator--form__radio {
	display: flex;
	flex-direction: row;
	gap: 30px;
}
.calculator--form__radio input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
}
.calculator--form__radio label {
	display: inline-block;
    margin: 0;
    padding: 8px 20px;
    border-radius: 12px;
    background-color: transparent;
    color: #3482C2;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475569;
    border: 2px solid #f1f5f9;
}
.calculator--form__radio label:hover {
	border-color: #9EBFE0;
	background: #F4F9FF;
}
.calculator--form__radio .custom-radion:has(input:checked) {
	background-color: #f8fafc;
	border-color: #3482C2;
	color: #3482C2;
	font-weight: 500;
}
.page .custom-radio {
	margin: 0 !important;
	display: block;
    cursor: pointer;
}
.page .custom-radio input + span:before {
    top: 0px;
}
.page .custom-radio input + span:after {
    top: 0px;
}

.calc--total {
	border-radius: 20px;
	border: 1px solid #D5D7DF;
	padding: 25px 32px 32px 32px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	background: #f8fafc;
}

.calc--total img {
	align-self: center;
	margin-bottom: 20px;
}
.calc--subtotal {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.calc--subtotal .element--total__label {
	font-weight: 400;
font-size: 14px;
line-height: 20px;
text-align: left;
 
color: #64748b;
}
.calc--subtotal .element--total__text {
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	white-space: nowrap;
}
.element--total__span {
	padding: 5px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 22px;
	border-bottom: 1px solid #F1F5F9;
}

.element--total__total {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 40px;
	margin-bottom: 40px;
	height: 53px;
}
.element--total__total .element--total__label{
		font-size: 20px;
	line-height: 110%;
	font-weight: 600;
}
.element--total__total .element--total__text{
	font-size: 48px;
	line-height: 110%;
	font-weight: 500;
}

.tab-container {
	position: relative;
	border-top: 1px solid #D5D7DF;
	border-bottom: 1px solid #D5D7DF;
	margin-bottom: 30px;
	height: 52px;
}
.tabs {
  display: flex;
  position: relative;
}
.tab {
	padding: 12px 20px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.01em;;
	color: #606981;
	cursor: pointer;
	flex: 1;
	text-align: center;
	transition: color 0.3s ease;
	z-index: 2;
	margin: 0;
	 user-select: none;
}
.tab:hover {
	color: #2E86C1;
}

.slider {
	position: absolute;
	top: 0;
	height: 100%;
	/* border-radius: 5px; */
	border-radius: 38px;
	background-color: #fff;
	outline: 2px solid #2E86C1;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	width: calc(100% / 7 ); /* Изменили на 5 */
}

input[type="radio"] {
  display: none;
}
/* Обновляем позиции для 5 вкладок */
#tab1:checked ~ .slider { transform: translateX(0%); }
#tab2:checked ~ .slider { transform: translateX(100%); }
#tab3:checked ~ .slider { transform: translateX(200%); }
#tab4:checked ~ .slider { transform: translateX(300%); }
#tab5:checked ~ .slider { transform: translateX(400%); }
#tab6:checked ~ .slider { transform: translateX(500%); }
#tab7:checked ~ .slider { transform: translateX(600%); }
/* Обновляем активные состояния */
#tab1:checked ~ .tabs .tab:nth-child(1),
#tab2:checked ~ .tabs .tab:nth-child(2),
#tab3:checked ~ .tabs .tab:nth-child(3),
#tab4:checked ~ .tabs .tab:nth-child(4),
#tab5:checked ~ .tabs .tab:nth-child(5),
#tab6:checked ~ .tabs .tab:nth-child(6),
#tab7:checked ~ .tabs .tab:nth-child(7){
  color: #282828;
}

.cards-container {
	margin-bottom: 30px;
}

.card-content {
	display: none;
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cards-img {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 640px) {
	.cards-img {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}
@media (min-width: 1024px) {
	.cards-img {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
.cards-img img {
	width: 100%;
	border-radius: 20px;
}
#carouselVideo {overflow: hidden;}
#carouselReviews {overflow: hidden;}
#carouselMat {overflow: hidden;}
#carouselPopularCategories {overflow: hidden;padding: 10px 10px 14px;}

.popular-categories {
	margin-top: 60px;
	padding: 0;
	border-radius: 24px;
	/* background: #e9eef5; */
	/* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7); */
}
.popular-categories__header {
	margin-bottom: 18px;
}
.popular-categories__title {
	margin: 0;
	font-size: 34px;
	line-height: 38px;
	font-weight: 700;
	color: #343434;
}
.popular-categories__slider-wrap {
	position: relative;
}
.popular-categories__slider {
	padding: 2px;
}
.popular-categories__slider-wrap,
.popular-categories__slider,
.popular-categories__slider .swiper-wrapper,
.popular-categories__slider .swiper-slide {
  height: auto !important;
}
.popular-categories__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
	cursor: pointer;
	z-index: 3;
}
.popular-categories__nav--prev {
	left: -18px;
}
.popular-categories__nav--next {
	right: -18px;
}
.popular-categories__nav.swiper-button-disabled {
	opacity: 0.5;
	cursor: default;
}
.popular-card {
	display: block;
	background: #f7f8fa;
	/* border: 1px solid #d9dfea; */
	border-radius: 14px;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.popular-card:hover {
	/* transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12); */
	cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.popular-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	background: #d7dde6;
}
.popular-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.popular-card__content {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 14px 14px 16px;
}
.popular-card__name {
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
	color: #1f2937;
}
.popular-card__desc {
	font-size: 14px;
	line-height: 18px;
	color: #6b7280;
}

@media (max-width: 1023px) {
	.popular-categories {
		padding: 18px;
	}
	.popular-categories__title {
		font-size: 28px;
		line-height: 32px;
	}
	.popular-categories__nav--prev {
		left: -10px;
	}
	.popular-categories__nav--next {
		right: -10px;
	}
}

@media (max-width: 767px) {
	.popular-categories {
		margin-top: 32px;
		padding: 14px;
		border-radius: 18px;
	}
	.popular-categories__title {
		font-size: 24px;
		line-height: 28px;
	}
	.popular-categories__nav {
		width: 34px;
		height: 34px;
	}
	.popular-card__name {
		font-size: 16px;
		line-height: 20px;
	}
	.popular-card__desc {
		font-size: 13px;
	}
}
#warning_text {
	color: red;
	margin-bottom: 10px;
	font-size: 12px;
}
.calc_links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	list-style-type: none;
	margin: 0;padding: 0;
	margin-top: 50px;
	margin-bottom: 50px;
}
@media (min-width: 640px) {
	.calc_links {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
		list-style-type: none;
	}
}
@media (min-width: 1024px) {
	.calc_links {
		grid-template-columns: repeat(6, 1fr);
		margin-top: 60px;
		margin-bottom: 60px;
	}
}
.calc_links li {
	position: relative;
	padding: 14px;
	padding-bottom: 38px;
	background-color: #fff;
	border-radius: 20px;
	line-height: 100%;
	transition: all 0.3s ease;
}

.calc_links li a {
	display: flex;
	flex-direction: column;
	gap: 9px;
	color: #343434;
	font-size: 14px;
	font-weight: 500;
}
.calc_links li:hover {
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}
.calc_links li::before {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background: url("/image/calc_mat/calc_link.svg");
	background-size: 15px 15px;
	bottom: 14px;
	left: 14px;
}

.calc_links p {
	text-align: center;	
	padding: 0;
	margin: 0;
}
.calc_order {
	position: relative;
	border: 1px solid #D5D7DF;
	border-radius: 13px;
	padding: 16px;
	background-color: #f8fafc;
}
.calc_order-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
@media (min-width: 768px) {
	.calc_order-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 991px) {
	.calc_order-list {
		grid-template-columns: repeat(5, 1fr);
	}
}
.calc_order--title {
	font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.calc_order--title span {
	font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #64748B;
	text-transform: uppercase;
    letter-spacing: 0.6px;
}
.calc_order-list li {
	    display: flex;
    flex-direction: column;
    gap: 12px;
}
.calc_order-list .total {
	font-weight: 600;
	line-height: 110%;
	align-self: end;
}
.calc_order-list .total p {
	font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.6px;
	text-align: end;
}
.calc_order-list .total span {
	font-size: 16px;
	font-weight: 700;
line-height: 150%;
text-align: right;
color: #3482c2;
}
.calc_order--total {
	display: flex;
	flex-direction: column;
	justify-content: end;
}
.calc_order .calc_order--mat {
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #343434;
	margin-bottom: 2px;
}
.calc_order .calc_order--size {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #343434;
	padding-bottom: 5px;
	border-bottom: 1px solid #e6e8eb;
	margin-bottom: 20px;
}
.calc__callback {
	background-color: #ffa062;
    box-shadow: 0 4px 22px rgba(255, 160, 98, .5);
    border-radius: 41px;
    display: flex;
    flex-direction: column;
    gap: 44px;
    padding: 22px 35px;
    margin-bottom: 32px;
}
@media (min-width: 991px) {
    .calc__callback {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.calc__callback--text {
	font-size: 16px;
	line-height: 24px;
    letter-spacing: .01em;
	max-width: 600px;
}
.calculator--contact__form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
@media (min-width: 480px) {
    .calculator--contact__form {
        max-width: 800px;
    }
}
@media (min-width: 991px) {
    .calculator--contact__form {
        gap: 15px;
        justify-content: right;
    }
}
.calc__callback--wr {
	display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (min-width: 480px) {
    .calc__callback--wr {
        flex-direction: row;
    }
}
.calc_btn {
	border-radius: 16px;
    height: 44px;
    display: inline-block;
    letter-spacing: .01em;
    padding: 16px 24px;
    cursor: pointer;
	color: #fff;
	background: #2e86c1;
    border: none;
    min-width: 177px;
	display: flex;
    align-items: center;
    justify-content: center;
	/* box-shadow: 0px 4px 6px rgba(52, 130, 194, 0.3), 0px 10px 15px rgba(52, 130, 194, 0.3); */
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	width: 100%;
	box-shadow: 0px 4px 6px rgba(52, 130, 194, 0.3), 0px 10px 15px rgba(52, 130, 194, 0.3);
}
.calc_btn:hover {
	opacity: .8;
	transition: all 0.3s ease;
}
.calc_btn--white:hover {
	opacity: 1;
	transition: all 0.3s ease;
	box-shadow: 0px 4px 6px rgba(52, 130, 194, 0.3);
}
.calc_btn--white {
	background-color: #fff;
	color: #2E86C1;
	width: 100%;
	border: 1px solid #2E86C1;
	box-shadow:none;
	transition: all 0.3s ease;
}
.calc_btn--grey {
	background-color: #f8fafc;
	color: #343434;
	width: 100%;
	border: 1px solid #D5D7DF;
	box-shadow:none;
}
.calc_btn:disabled,
.calc_btn[disabled] {
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
	box-shadow: none;
}

.calc-agree {
    font-weight: 400;
    font-size: 12px;
    margin-left: 0;
    text-align: right;
	align-self: flex-start;
}
.calc-agree input {
	border-radius: 7px;
	vertical-align: top;
	position: relative;
	margin: 0;
	cursor: pointer;
	border: 1px solid #2E86C1;
	background: #fff;
	height: 17px;
	width: 17px;
}
.calc__callback--wr input {
	border-radius: 38px;
    max-height: 45px;
    border: 1px solid #fff;
    font-size: 14px;
    line-height: 31px;
    padding: 7px 22px;
    width: 100%;
    max-width: 177px;
}

.btn__slider {
	width: 40px;
	height: 37px;
	border: none;
	background-color: transparent;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}
.btn__slider:hover {
	transition: all 0.3s ease;
	opacity: .8;
}

.btn__slider.swiper-button-disabled  svg path {
	fill: #E0E6E9; 
}
/* .btn__slider.swiper-button-disabled:hover  svg path {
	fill: #E0E6E9; 
} */
.calc_sl--btn {
	display: flex;
	gap: 13px;
}
.card-content--title {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 30px;
	gap: 20px;
}
.card-content--title h3 {
	font-size: 18px;
	margin-bottom: 0;
}
@media (min-width: 768px) {
		.card-content--title {
		flex-direction: row;
	margin-bottom: 40px;
	}
	.card-content--title h3 {
		font-size: 20px;
	}
}

.calc--rev-el {
	box-sizing: border-box;
	border: 1px solid #E0E6E9;
	padding: 30px;
	border-radius: 20px;
}
.calc--mat {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.calc--mat img {
	margin-bottom: 10px;
}
.calc--rev-s span {
	color: gold;
	font-size: 18px;
}
.calc--rev-s {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 22px;
}
.calc--rev__t {
	font-size: 14px;
	line-height: 18px;
}
.calc__delete__btn {
	border: none;
	position: absolute;
	top: 16px;
	right: 16px;
	background-color: transparent;
	padding: 0;
	height: 17px;
	width: 17px;
	cursor: pointer;
}
.calc__delete__btn:hover svg path{
	stroke: #D5D7DF; 
	transition: all 0.1s ease;
}
.calc__mat-title {
	font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
	text-align: center;
}
.calc__mat-text {
	font-size: 14px;
    line-height: 18px;
}
.calc__adv {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
@media (min-width: 640px) {
	.calc__adv {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 1024px) {
	.calc__adv {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
.calc__adv--el {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border: 1px solid #E0E6E9;
    border-radius: 20px;
    padding: 30px;
}
.page .calc__adv--title {
	font-size: 18px;
	line-height: 22px;
	font-weight: 500;
	text-align: center;
}
.calc__adv--desc {
	text-align: center;
	line-height: 18px;
}

.calc__video-img {
    border-radius: 20px;
}
.page .calc__video-img {
	max-width: 100%;
}
.page .calc__video-link {
    display: block;
    max-width: 100%;
    max-height: inherit;
    width: 100%;
    text-align: center;
}
.calc_main--order {
	display:flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
}
@media (min-width: 480px) {
	.calc_main--order {
		flex-direction: row;
	}
}
.calc_main--order span {
	font-weight: 500;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748B;
}
.calc_main--order p {
	font-size: 26px;
	font-weight: 700;
	line-height: 110%;
}
p.calc--time {
	font-weight: 400;
font-size: 10px;
line-height: 15px;
letter-spacing: 1px;
text-align: center;
text-transform: uppercase;
margin-top: 16px;
color: #94a3b8;
}
/* новое окно отравки заявки: */
.request_input {
    border-radius: 38px;
    max-height: 45px;
    border: 1px solid #D5D7DF;
    font-size: 14px;
    line-height: 31px;
    padding: 7px 22px;
    width: 100%;
}
.request_head {
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	display: block;
	margin-bottom: 15px;
}
.request_form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.request_agree {
    font-weight: 400;
    font-size: 14px;
    margin-left: 0;
	align-self: flex-start;
}
.request_agree input {
	border-radius: 7px;
	vertical-align: top;
	position: relative;
	margin: 0;
	cursor: pointer;
	border: 1px solid #2E86C1;
	background: #fff;
	height: 17px;
	width: 17px;
}


/* Базовые стили для toggle */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
	position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .3s;
    border-radius: 40px;
}

.toggle-knob {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
	cursor: pointer;
}
.toggle-switch input:checked + .toggle-slider {
    background-color: #3482C2; /* Синий цвет */
}
.toggle-switch input:checked + .toggle-slider + .toggle-knob,
.toggle-switch input:checked ~ .toggle-knob {
    transform: translateX(20px);
}
.toggle-switch input:checked:hover + .toggle-slider {
    background-color: #3482C2; /* Темно-синий при hover */
}

.calc-layout-upload {
	margin-top: 8px;
}

.calc-layout-upload__title {
	margin: 0 0 10px;
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.6px;
	color: #9AA9BB;
	text-transform: uppercase;
}

.calc-layout-upload__dropzone {
	min-height: 118px;
	border: 1px dashed #C8D8E8;
	border-radius: 16px;
	background: #f8fafc;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	cursor: pointer;
	text-align: center;
	padding: 18px 20px;
	transition: border-color .2s ease, background-color .2s ease;
}

.calc-layout-upload__dropzone:hover {
	border-color: #9EBFE0;
	background: #F4F9FF;
}

.calc-layout-upload__dropzone.is-attached {
	border-color: #8FB6DA;
	background: #EEF6FF;
}

.calc-layout-upload__input {
	display: none !important;
}

.calc-layout-upload__icon {
	line-height: 0;
}

.calc-layout-upload__text {
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
	color: #1e293b;
}

.calc-layout-upload__hint {
	font-weight: 400;
	font-size: 10px;
	line-height: 15px;
	text-align: left;
	text-transform: uppercase;
	color: #94a3b8;
}

.calc-layout-upload__status {
	display: block;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
	color: #2E86C1;
}
.calc--total--text-wr {
	display: flex;
	gap: 10px;
	color: #64748B;
	font-size: 12px;
	line-height: 16px;
	margin-top: 20px;
}
.calc--total--text-wr::before {
	content: "i";
	font-size: 11px;
    line-height: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 15px;
	height: 15px;
	min-width: 15px;
	min-height: 15px;
	border-radius: 50%;
	background-color: #2E86C1;
}