:root {
	/*--v-body-color: #293034;*/
	--v-body-color: #1e2225;
	--v-body-element-color: #14181b;
	--v-text-color: #FFF;
	--v-primary: #cc0000;
	--v-gray-50: #D9D9D9;
	--v-gray-70: #5c6266;
	--v-gray-30: #c6cacc;
	--v-green: #47B370;
	--v-yellow: #E5AC00;
	--v-danger: #D94616;
}

body .layout {overflow: unset;}

.bx-basket {
	margin-bottom: 2rem;
}
.bx-basket .gap-3 {gap: 1rem !important;}
.bx-basket .flex-fill {flex: 1 1 auto !important;}
.bx-basket .small {font-size: 80%;}
.bx-basket .d-flex {display: flex;}
.bx-basket .align-items-center {align-items: center;}
.bx-basket .close-link {cursor: pointer;}
.bx-basket .text-secondary {color: var(--v-gray-50)}
.bx-basket .d-none {display: none !important;}




.product-cart {
	--v-product-cart-title-before-padding-x: 1rem;
	--v-product-cart-title-before-padding-y: 0.6667rem;
	--v-product-cart-title-gap: 1rem;
	--v-product-cart-container-gap: 1rem;
}

.product-cart__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: var(--v-product-cart-title-gap);
	margin-bottom: 1rem;
	padding: 20px;
	background: var(--v-body-element-color);
}

.product-cart__step {
	padding: var(--v-product-cart-title-before-padding-y) var(--v-product-cart-title-before-padding-x) var(--v-product-cart-title-before-padding-y) var(--v-product-cart-title-before-padding-x);
	background-color: var(--v-danger);
	line-height: 1;
	font-size: 1.3333rem;
	border-radius: 10px;
}

.product-cart__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: var(--v-product-cart-container-gap);
}

.cart-card {
	--v-cart-card-content-padding-left: 2rem;
	--v-cart-card-content-padding: 1.3333rem;
	--v-cart-card-group-gap: 4.6667rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	background: var(--v-body-element-color);
}

.cart-card__img {
	height: 170px;
	aspect-ratio: 1;
}
.cart-card__img a {
	display: block;
	/*padding: .5rem;*/
}
.cart-card__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.cart-card__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: var(--v-cart-card-content-padding) var(--v-cart-card-content-padding) var(--v-cart-card-content-padding) var(--v-cart-card-content-padding-left);
	width: 100%;
}

.cart-card__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}

.cart-card__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 10px;
}

.cart-card__bottom-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: var(--v-cart-card-group-gap);
}

.cart-card__price {
	white-space: nowrap;
	line-height: 1;
	text-align: right;
}

.cart-card__price--final {
	color: var(--v-primary);
}

.cart-card__price .current {
	font-weight: 500;
	font-size: 30px;
	color: var(--v-primary);
	margin-bottom: 5px;
}

.cart-card__price .old {
	font-weight: 500;
	font-size: 20px;
	text-decoration: line-through;
	color: var(--v-gray-50);
}

.cart-card__title {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	color: var(--v-text-color);
}

.deleted-product {
	--v-deleted-product-padding-x: 1.6667rem;
	--v-deleted-product-padding-left: 2rem;
	--v-deleted-product-padding-right: 1.3333rem;
	background-color: var(--v-gray-700);
	padding: var(--v-deleted-product-padding-x) var(--v-deleted-product-padding-right) var(--v-deleted-product-padding-x) var(--v-deleted-product-padding-left);
}

.deleted-product__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 1.3333rem;
}

.deleted-product__title {
	color: var(--v-gray-500);
}

.deleted-product__name {
	color: var(--v-white);
}

.cart-total {
	--v-cart-totla-padding: 2rem;
	padding: var(--v-cart-totla-padding);
	background-color: var(--v-black);
}

.cart-total__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 1.3333rem;
}

.cart-total__price {
	color: var(--v-primary);
	line-height: 0.75;
}

.cart-page-wrapper {
	/*align-items: flex-start;*/
	display: flex;
}

.cart-page-wrapper .basket__box {
	padding: 30px;
	background: var(--v-body-color);
	margin-bottom: 50px;
}

.cart-page-wrapper .basket__box:last-child {
	margin-bottom: 0;
}

.basket__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1rem;
	background: var(--v-body-element-color);
	padding: 20px 10px;
	margin-bottom: 1rem;
}

.basket__head .catalog__aside-text {
	color: #fff;
}

.basket__head .catalog__aside-label {
	margin: 0;
}

.basket__head-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.basket__head-group-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 13px;
	color: var(--gray-70-b2b2b2);
	background: none;
	border: none;
}

.basket__head-group-item:first-child {
	text-transform: uppercase;
}

.basket__head-group-item svg {
	position: relative;
	top: 1px;
}

.basket__aside {
	width: 340px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
}

.basket-total-block {
	position: sticky;
	top: 2rem;
	background: var(--v-body-color);
	padding: 20px;
}

.basket__aside-info {
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	letter-spacing: -0.05em;
	color: var(--gray-70-b2b2b2);
	margin: 20px 0 0 0;
}

.basket__aside-btn {
	border: 2px solid var(--v-primary);
	border-radius: 25px;
	padding: 11px 25px;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--v-text-color);
	background: var(--v-primary);
	display: inline-flex !important;
}

.basket__aside-btn:hover {
	background: transparent;
	border-color: var(--v-primary);
}

.basket__aside-icon {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.basket__aside-calc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #bfbfbf;
}

.basket__aside-calc .gray {
	display: block;
	color: #808080;
	font-size: 12px;
	line-height: 110%;
}

.basket__aside-calc:not(:last-child) {
	margin: 0 0 16px 0;
}

.basket__aside-calc span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.basket__aside-calc span.block {
	display: block;
}

.basket__aside-calc span:first-child {
	font-weight: 400;
	/*font-size: 13px;*/
	line-height: 110%;
	color: var(--gray-70-b2b2b2);
	font-size: .85em;
}

.basket__aside-calc span:last-child {
	font-weight: 700;
	/*font-size: 13px;*/
	line-height: 110%;
	text-align: right;
	color: var(--v-primary);
	font-size: .85em;
}

.basket__aside-calc span.lime {
	color: var(--lime);
}

.basket__aside-calc-total {
	font-size: 20px !important;
	line-height: 100%;
}

.basket__aside-calc.big {
	padding: 4px 7px;
	border: 1px solid var(--lime);
	border-radius: 4px;
}

.basket__aside-calc.big span:first-child {
	color: var(--lime);
}

.basket__aside-calc.big span:last-child {
	font-weight: 700;
}

.basket__aside-calc.total .lsp {
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	color: var(--v-text-color);
}

.basket__aside-calc.total .right {
	font-weight: 500;
	font-size: 30px;
	color: var(--v-primary);
}

.basket__aside-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
	line-height: 100%;
}

.basket__aside-head-value {
	font-weight: 600;
	font-size: 14px;
	line-height: 100%;
	text-align: right;
	color: var(--v-primary);
}

.basket__aside-head-name {
	font-weight: 500;
	font-size: 25px;
	line-height: 100%;
	color: var(--v-text-color);
}

.basket__aside-promo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}

.basket__aside-promo input {
	display: block;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 0 12px;
	width: 100%;
	height: 41px;
	color: #bfbfbf;
	background: transparent;
	font-size: 15px;
	border: 1px solid #333333;
}

.basket__aside-promo input input::-webkit-input-placeholder {
	color: #bfbfbf;
}

.basket__aside-promo input input::-moz-placeholder {
	color: #bfbfbf;
}

.basket__aside-promo input input:-ms-input-placeholder {
	color: #bfbfbf;
}

.basket__aside-promo input input::-ms-input-placeholder {
	color: #bfbfbf;
}

.basket__aside-promo input input::placeholder {
	color: #bfbfbf;
}

.basket__aside-promo input .btn {
	padding: 12px 20px;
}

.basket__aside-item:not(:last-child) {
	margin: 0 0 20px 0;
	padding: 0 0 20px 0;
	border-bottom: 2px solid #1a1a1a;
}

.basket__aside-item-coupon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
}

.basket__aside-item-coupon input {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	border: 1px solid var(--v-gray-70);
	/*border-radius: 4px;*/
	width: 100%;
	height: 40px;
	padding: 0 12px;
	outline: none;
	background: none;
	font-weight: 400;
	font-size: 13px;
	color: var(--v-gray-50);
}

.basket__aside-item-coupon .btn {
	border: 2px solid var(--v-primary);
	/*border-radius: 20px;*/
	padding: 0 20px;
	width: 134px;
	height: 40px;
	text-align: center;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--v-text-color);
	line-height: 36px;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
	background: none;
}

.basket__aside-item-coupon .btn:hover {
	background: var(--v-primary);
	color: #FFF;
}

.basket__remove {
	padding: 20px;
	background: var(--v-gray-70);
	font-size: 15px;
	line-height: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: first baseline;
	-ms-flex-align: first baseline;
	align-items: first baseline;
}

.basket__remove-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 13px;
	color: var(--gray-70-b2b2b2);
	background: none;
	border: none;
	text-transform: uppercase;
}

.basket__remove-btn svg {
	position: relative;
	bottom: 1px;
}

.basket__remove-group {
	font-weight: 500;
	font-size: 15px;
	line-height: 133%;
	/*color: var(--gray-70-b2b2b2);*/
	width: 100%;
}

.basket__remove-group span {
	color: #ffffff;
}

.checkbox-label {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.checkbox-label span {
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	color: var(--v-text-color);
}

.checkbox-label input {
	position: absolute;
	opacity: 0;
}

.checkbox-label i {
	width: 25px;
	height: 25px;
	position: relative;
	-webkit-box-shadow: inset 0 0 0 1px var(--v-gray-50);
	box-shadow: inset 0 0 0 1px var(--v-gray-50);
	border-radius: 4px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	overflow: hidden;
}

.checkbox-label i:before {
	border-radius: 4px;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	background: var(--v-primary) url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6793 0.289386C13.5867 0.197689 13.4765 0.124907 13.3551 0.0752394C13.2337 0.0255714 13.1035 0 12.972 0C12.8405 0 12.7103 0.0255714 12.5889 0.0752394C12.4675 0.124907 12.3574 0.197689 12.2647 0.289386L4.84329 7.58766L1.72529 4.51573C1.62913 4.42451 1.51563 4.35279 1.39125 4.30465C1.26688 4.25652 1.13406 4.23291 1.0004 4.23518C0.86673 4.23745 0.734828 4.26555 0.612221 4.31789C0.489614 4.37022 0.378704 4.44576 0.285823 4.54019C0.192942 4.63462 0.119909 4.74609 0.0708932 4.86824C0.0218778 4.99039 -0.00216024 5.12082 0.000152332 5.25209C0.0024649 5.38336 0.0310826 5.5129 0.0843711 5.63331C0.13766 5.75372 0.214575 5.86265 0.310727 5.95386L4.13601 9.71062C4.22862 9.80231 4.3388 9.87509 4.46019 9.92476C4.58158 9.97443 4.71179 10 4.84329 10C4.9748 10 5.105 9.97443 5.22639 9.92476C5.34779 9.87509 5.45796 9.80231 5.55057 9.71062L13.6793 1.72752C13.7804 1.63591 13.8611 1.52472 13.9163 1.40096C13.9715 1.2772 14 1.14356 14 1.00845C14 0.873344 13.9715 0.7397 13.9163 0.615943C13.8611 0.492186 13.7804 0.380998 13.6793 0.289386Z' fill='white' /%3E%3C/svg%3E") 50% no-repeat;
}

.checkbox-label input:checked + i {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.checkbox-label input:checked + i:before {
	opacity: 1;
}

.delete-card {
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	color: var(--v-text-color);
}

.cart-card__img {
	position: relative;
}

.cart-card__img .checkbox-label {
	position: absolute;
	top: 10px;
	left: 10px;
}

.service-section {
	position: relative;
	padding: 30px 20px;
	background: var(--gray-15-262626);
	border-radius: 4px;
	margin-bottom: 20px;
}

.service-section:last-child {
	margin-bottom: 0;
}

.service-section .section-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.service-section .accordion-body {
	padding-top: 20px;
}

.service-section .section-header-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.service-section .section-icon {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 20px;
}

.service-section .icon-orange {
	background: #ff9500;
	color: #ffffff;
}

.service-section .icon-red {
	background: #ff3b30;
	color: #ffffff;
}

.service-section .section-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 100%;
	color: var(--v-text-color);
}

.service-section .section-subtitle {
	font-weight: 500;
	font-size: 13px;
	line-height: 110%;
	color: var(--gray-70-b2b2b2);
}

.service-section .service-item {
	background: var(--v-gray-30);
	border-radius: 4px;
	padding: 17px;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
}

.service-section .service-item:last-child {
	margin-bottom: 0;
}

.service-section .service-item:hover {
	background: #525252;
}

.service-section .service-item-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.service-section .service-checkbox {
	width: 22px;
	height: 22px;
	cursor: pointer;
	accent-color: #ff9500;
}

.service-section .service-name {
	font-weight: 600;
	font-size: 17px;
	line-height: 110%;
	color: var(--gray-90-e5e5e5);
}

.service-section .service-price {
	font-weight: 600;
	font-size: 17px;
	line-height: 100%;
	color: var(--gray-90-e5e5e5);
	white-space: nowrap;
	margin-left: 10px;
}

.service-section .form-check-input:checked {
	background-color: #ff9500;
	border-color: #ff9500;
}

.form-switch {
	padding-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
}

.form-switch .form-check-input {
	width: 45px;
	height: 25px;
	cursor: pointer;
	border-radius: 90px;
	border: 1px solid var(--v-gray-30);
	background-color: transparent;
	margin: 0;
	--v-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23D94616'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
	border: 1px solid var(--gray-90-e5e5e5);
	--v-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23C7D900'/%3e%3c/svg%3e");
	background-color: transparent;
}

.form-switch .form-check-input:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form-switch .catalog__aside-text {
	font-weight: 700;
	font-size: 17px;
	line-height: 110%;
	color: var(--v-text-color);
	display: block;
	padding-left: 10px;
}

.order__item {
	background: var(--v-body-color);
	border-radius: 4px;
	padding: 24px 24px 30px;
	position: relative;
}

.order__item-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 10px;
}

.order__item-head {
	font-weight: 700;
	font-size: 30px;
	line-height: 100%;
	color: var(--v-text-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.order__item-head span {
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin-right: 15px;
	background: var(--red);
	font-weight: 700;
	font-size: 20px;
	line-height: 38px;
	color: var(--v-text-color);
	text-align: center;
}

.order__item-step {
	opacity: 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--gray-90-e5e5e5);
	white-space: nowrap;
}

.order__item-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	margin-bottom: 18px;
}

.order__item-group-radio {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 2rem;
}

.order__item-label-radio {
	position: relative;
	padding-left: 35px;
	min-height: 25px;
}

.order__item-label-radio input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.order__item-label-radio i {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	border-radius: 13px;
	border: 1px solid var(--v-gray-50);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.order__item-label-radio i:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 9px;
	height: 9px;
	background: #fff;
	border-radius: 50%;
	margin: auto;
	opacity: 0;
}

.order__item-label-radio input:checked + i {
	background: var(--v-primary);
	border-color: var(--v-primary);
}

.order__item-label-radio input:checked + i:before {
	opacity: 1;
}

.order__item-label-radio span {
	font-weight: 700;
	font-size: 17px;
	color: var(--v-text-color);
	text-transform: none;
}

.order__item-label {
	display: block;
	cursor: pointer;
}

.order__item-label input[type=radio],
.order__item-label input[type=checkbox] {
	display: none;
}

.order__item-label.block {
	background: var(--gray-15-262626);
	border-radius: 4px;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.order__item-label-body {
	display: none;
	padding-bottom: 18px;
}

.order__item-label.block.active > .order__item-radio .order__item-label-radio i {
	background: var(--v-primary);
	border-color: var(--v-primary);
}

.order__item-label.block.active > .order__item-radio .order__item-label-radio i:before {
	opacity: 1;
}

.order__item-label.block.active .order__item-label-body {
	display: block;
}

.order__item-label-inner {
	padding: 15px 33px 15px 48px;
	margin-bottom: 10px;
}

.order__item-label-inner:last-child {
	margin-bottom: 0;
}

.order__item-label-logo {
	margin-bottom: 20px;
	position: relative;
}

.order__item-label-logo img {
	height: 22px;
}

.order__item-label-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
}

.order__item-label-wrapper .order__item-label {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(33.33% - 7px);
	flex: 0 0 calc(33.33% - 7px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.order__item-label-wrapper .order__item-label.hidden {
	display: none;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio {
	padding: 10px;
	border-radius: 4px;
	background: var(--v-body-color);
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio .top-radio {
	position: relative;
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 25px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio .name {
	padding-left: 35px;
	display: block;
	font-weight: 400;
	font-size: 12px;
	line-height: 110%;
	color: var(--v-gray-50);
}

.order__item-label-wrapper .order__item-label .order__item-label-radio .order__item-radio-wrap {
	display: block;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio .order__item-radio-wrap .order__item-radio-group.end {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio .order__item-radio-wrap .order__item-radio-group.end .order__item-radio-right span {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	color: var(--v-gray-50);
	white-space: nowrap;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio .order__item-radio-wrap .order__item-radio-group.end .order__item-radio-days {
	font-weight: 400;
	font-size: 15px;
	line-height: 100%;
	color: var(--v-gray-50);
	white-space: nowrap;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio .order__item-radio-wrap .order__item-radio-group.end .war-icon {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14px;
	flex: 0 0 14px;
	margin-left: auto;
	font-size: 0;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio.chosen .top-radio i {
	background: var(--v-primary);
	border-color: var(--v-primary);
}

.order__item-label-wrapper .order__item-label .order__item-label-radio.chosen .top-radio i:before {
	opacity: 1;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio.chosen .top-radio .name {
	color: var(--v-text-color);
}

.order__item-label-wrapper .order__item-label .order__item-label-radio.chosen .top-radio + .order__item-radio .order__item-radio-wrap .order__item-radio-group.end .order__item-radio-right span {
	color: #fff;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio.chosen .top-radio + .order__item-radio .order__item-radio-wrap .order__item-radio-group.end .order__item-radio-days {
	color: #fff;
}

.order__item-label-wrapper .order__item-label .order__item-label-radio.chosen .top-radio + .order__item-radio .order__item-radio-wrap .order__item-radio-group.end .war-icon svg path {
	fill: var(--red);
}

.order__item-radio {
	background: var(--gray-15-262626);
	border-radius: 4px;
	padding: 18px;
}

.order__item-radio .right {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.order__item-radio .right > span {
	display: block;
}

.order__item-radio.delivery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	/*background-color: transparent;*/
	padding: 18px;
}

.order__item-radio.delivery.black {
	border-radius: 0;
	padding: 0;
	display: block;
	margin-top: auto;
}

.order__item-radio.payment {
	background: none !important;
	padding: 15px 35px;
	position: relative;
	display: block;
}

.order__item-radio.payment i {
	position: absolute;
	top: 15px;
	left: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	border-radius: 13px;
	border: 1px solid var(--v-gray-50);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.order__item-radio.payment i:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 9px;
	height: 9px;
	background: #fff;
	border-radius: 50%;
	margin: auto;
	opacity: 0;
}

.order__item-radio.payment span {
	display: block;
	font-weight: 700;
	font-size: 17px;
	line-height: 110%;
	color: var(--v-text-color);
	margin-bottom: 7px;
}

.order__item-radio.payment .order__item-radio-descr {
	font-weight: 400;
	font-size: 15px;
	line-height: 110%;
	color: var(--v-gray-50);
	margin-bottom: 7px;
}

.order__item-radio-descr {
	font-size: 12px;
	color: #777;
	line-height: 1.5;
	font-weight: 400;
}

.order__item-radio-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 10px;
}

.order__item-radio-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

.order__item-radio-group > span:first-child {
	font-size: 11px;
	color: #888;
	line-height: 1.4;
}

.order__item-radio-group.end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	text-align: right;
}

.order__item-radio-icon {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.order__item-radio-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 4px;
}

.order__item-radio-price {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
}

.order__item-radio-rub {
	font-size: 11px;
	font-weight: 400;
	color: #888;
}

.order__item-radio-days {
	font-size: 11px;
	color: #888;
}

.order__item .order__item-label input[type=radio]:checked + .order__item-radio {
	background-color: #ffc107;
	border-color: #ffc107;
	color: #000000;
	font-weight: 500;
}

.order__item .order__item-label input[type=radio]:checked + .order__item-radio.delivery {
	border-color: #ffc107;
	background-color: rgba(255, 193, 7, 0.03);
	color: #ffffff;
}

.order__item .order__item-label input[type=radio]:checked + .order__item-radio.delivery.black {
	border-color: #ffc107;
	background-color: rgba(255, 193, 7, 0.05);
	color: #ffffff;
}

.order__item-fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

.order__item-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.order__item-row > span:not(.soa-property-checkbox, .soa-property-checkbox-title) {
	font-weight: 500;
	font-size: 15px;
	color: var(--v-text-color);
}

.order__item-row .soa-property-checkbox-title {
	font-weight: 500;
	font-size: 15px;
	color: var(--v-text-color);
}

.order__item-field {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.order__item-field input {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.order__item-field button {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.order__item-labels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.order__item-map {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	line-height: 110%;
	color: var(--red);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.order__item-labels-payment {
	padding: 15px 0 0;
}

.order__item .order__item-labels-payment .order__item-label.active .order__item-radio i {
	background: var(--v-primary);
	border-color: var(--v-primary);
}

.order__item .order__item-labels-payment .order__item-label.active .order__item-radio i:before {
	opacity: 1;
}

.order__item-labels-last-step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	padding-top: 30px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.order__item-labels-last-step .form-switch {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
}

.order__item-labels-last-step .form-switch .catalog__aside-subtext {
	font-weight: 400;
	font-size: 15px;
	line-height: 110%;
	color: var(--v-gray-50);
	display: block;
	padding-top: 7px;
}

.catalog__aside-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.catalog__aside-label:last-child {
	border-bottom: none;
}

.catalog__aside-label input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.catalog__aside-label i {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25px;
	flex: 0 0 25px;
	height: 25px;
	border-radius: 4px;
	background: none;
	border: 1px solid var(--v-gray-50);
	position: relative;
}

.catalog__aside-label i:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6793 0.289386C13.5867 0.197689 13.4765 0.124907 13.3551 0.0752394C13.2337 0.0255714 13.1035 0 12.972 0C12.8405 0 12.7103 0.0255714 12.5889 0.0752394C12.4675 0.124907 12.3574 0.197689 12.2647 0.289386L4.84329 7.58766L1.72529 4.51573C1.62913 4.42451 1.51563 4.35279 1.39125 4.30465C1.26688 4.25652 1.13406 4.23291 1.0004 4.23518C0.86673 4.23745 0.734828 4.26555 0.612221 4.31789C0.489614 4.37022 0.378704 4.44576 0.285823 4.54019C0.192942 4.63462 0.119909 4.74609 0.0708932 4.86824C0.0218778 4.99039 -0.00216024 5.12082 0.000152332 5.25209C0.0024649 5.38336 0.0310826 5.5129 0.0843711 5.63331C0.13766 5.75372 0.214575 5.86265 0.310727 5.95386L4.13601 9.71062C4.22862 9.80231 4.3388 9.87509 4.46019 9.92476C4.58158 9.97443 4.71179 10 4.84329 10C4.9748 10 5.105 9.97443 5.22639 9.92476C5.34779 9.87509 5.45796 9.80231 5.55057 9.71062L13.6793 1.72752C13.7804 1.63591 13.8611 1.52472 13.9163 1.40096C13.9715 1.2772 14 1.14356 14 1.00845C14 0.873344 13.9715 0.7397 13.9163 0.615943C13.8611 0.492186 13.7804 0.380998 13.6793 0.289386Z' fill='white' /%3E%3C/svg%3E") 50% no-repeat;
	opacity: 0;
}

.catalog__aside-label .catalog__aside-text {
	font-weight: 700;
	font-size: 15px;
	line-height: 110%;
	color: var(--v-text-color);
}

.catalog__aside-label input:checked + i {
	background: var(--v-primary);
	border-color: transparent;
}

.catalog__aside-label input:checked + i:before {
	opacity: 1;
}

.catalog__aside-label.need-call {
	border: none;
	padding: 0;
}

.complect__details-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}

.complect__details-img {
	width: 50px;
	height: 50px;
	background-color: #ffc107;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.complect__details-img img {
	width: 24px;
	height: 24px;
}

.complect__details-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.complect__details-main {
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
}

.complect__details-bottom {
	font-size: 12px;
	color: #777;
}

#bx-soa-order {
	-webkit-transition: 500ms opacity ease;
	transition: 500ms opacity ease;
	counter-reset: heading;
}

.bx-soa-section .bx-soa-section-title-count:after {
	counter-increment: heading;
	content: counter(heading);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.bx-soa-location-input-container {
	margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
	.order__item-group-radio {
		margin-top: 2rem;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		gap: 42px;
	}

	.order__item-row > span:not(.soa-property-checkbox, .soa-property-checkbox-title) {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 194px;
		flex: 0 0 194px;
	}

	.bx-soa-location-input-container {
		margin-top: 2rem;
	}
}

@media all and (max-width: 1100px) {
	.cart-card__top {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.cart-card__top .cart-card__title {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		width: 100%;
	}

	.cart-card__price {
		text-align: left;
	}

	.cart-page-wrapper .basket__box {
		/*padding: 16px;*/
		margin-bottom: 20px;
	}

	.basket__head {
		padding: 16px 10px;
	}
}

@media all and (max-width: 1024px) {

	.cart-page-wrapper {
		display: block !important;
	}

	.cart-page-wrapper .flex-fill {
		margin-bottom: 20px;
	}

	.cart-page-wrapper .basket__box {
		/*margin-bottom: 20px;*/
	}

	.basket__aside {
		width: 100%;
	}

	.basket__remove {
		padding: 10px;
	}

	.service-section {
		padding: 16px;
	}
}

@media all and (max-width: 767px) {
	.service-section .section-icon {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 30px;
		flex: 0 0 30px;
		width: 30px;
		height: 30px;
	}

	.service-section .section-title {
		font-size: 16px;
	}

	.service-section .section-subtitle {
		font-size: 12px;
	}

	.service-section .service-item {
		padding: 10px;
		margin-bottom: 10px;
	}

	.service-section .service-name {
		font-size: 14px;
	}

	.service-section .service-price {
		font-size: 14px;
	}

	.order__item {
		padding: 16px;
		margin-bottom: 16px;
	}

	.order__item-head {
		font-size: 16px;
	}

	.order__item-head span {
		width: 28px;
		height: 28px;
		margin-right: 8px;
		font-size: 14px;
		line-height: 28px;
		border-radius: 6px;
	}

	.order__item-label-inner {
		padding: 10px 18px;
	}

	.order__item-label-wrapper .order__item-label {
		width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
	}

	.order__item-label-wrapper .order__item-label .order__item-label-radio {
		width: 100%;
	}

	.order__item-fields {
		gap: 10px;
	}

	.order__item-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
	}

	.order__item-row > span {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
		width: 100%;
	}

	.order__item-row-check {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.order__item-row-check > span {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
	}
}

@media all and (max-width: 700px) {
	.cart-card .cart-card__bottom-group {
		display: block;
	}

	.cart-card .cart-card__bottom-group .text-secondary:first-child {
		margin-bottom: 10px;
	}

	.basket__remove {
		display: block;
	}

	.basket__remove .basket__remove-group {
		margin-bottom: 16px;
	}
}

@media all and (max-width: 650px) {
	.basket__head {
		display: block;
	}

	.basket__head .basket__head-group {
		margin-top: 16px;
	}
}

@media all and (max-width: 550px) {
	.cart-card {
		display: block;
	}

	.cart-card .cart-card__img {
		width: 100%;
		height: 100%;
	}

	.cart-card .cart-card__content {
		padding: 16px;
	}
}

.cart-card__action {
	line-height: 1;
}
.card-action__btn {
	color: var(--v-text-color);
}

.card-action__btn.active {
	color: var(--v-primary);
}

.bx-basket .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
}

.bx-basket .quantity__btn {
	background: none;
	border: none;
	color: var(--v-white);
	font-size: 1.3333rem;
}
.bx-basket .quantity__btn i {
	font-style: normal;
}

.bx-basket .quantity__btn:hover {
	color: var(--v-danger);
}

.bx-basket .quantity__input {
	--v-border-width: 1px;
	--v-border-color: var(--v-secondary);
	--focus-ring-width: 0;
	width: 60px !important;
	height: 40px;
	text-align: center;
	padding: 0;
	color: var(--v-secondary);
	border: 1px solid var(--v-gray-70);
	background: transparent;
}

.bx-basket .quantity__input:focus {
	/*border: 1px solid var(--v-white);*/
	-webkit-box-shadow: none;
	box-shadow: none;
}

.basket-coupon-alert {
	display: inline-flex;
	width: auto;
}

.basket-coupon-alert-inner {
	margin-top: 1rem;
}

.basket-coupon-alert {
	margin-right: .5rem;
}
.basket-coupon-alert .close-link {
	position: absolute;
	right: .5rem;
	top: 0;
	bottom: 0;
	line-height: 1;
	height: 20px;
	margin: auto;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}


.instock {
	--v-instock-bg-icon: var(--v-gray-50);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0.8667rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0.4667rem;
}

.instock__scale {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0.1333rem;
}

.instock__scale * {
	display: block;
	width: 3px;
	height: 13px;
	background-color: var(--v-instock-bg-icon);
	border-radius: var(--v-border-radius-sm);
}

.instock--few .instock__scale *:not(:last-child) {
	--v-instock-bg-icon: var(--v-yellow);
}

.instock--vfew .instock__scale *:first-child {
	--v-instock-bg-icon: var(--v-danger);
}

.instock--available .instock__scale * {
	--v-instock-bg-icon: var(--v-green);
}