#bx-soa-basket,
.bx-soa-editstep {
	display: none;
}
.blue-text {
	color: var(--blue);
}

/**/
.basket__holder .basket__checkbox-holder {
	margin-bottom: 40px;
}
.basket__holder .basket__checkbox {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-shrink: 0;
	margin-right: 15px;
	cursor: pointer;
}
.basket__holder .basket__checkbox input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	visibility: visible;
}
.basket__holder .basket__checkbox input:checked ~ .basket__checkbox-ico img {
	transform: scale(1);
}

.basket__holder .basket__checkbox-ico {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gray-light);
	width: 20px;
	height: 20px;
	min-width: 20px;
	transition: background-color 0.2s ease;
}
.basket__holder .basket__checkbox.error .basket__checkbox-ico {
	border-color: red;
}

.basket__holder .basket__checkbox-ico:hover {
	border-color: #000;
}
.basket__holder .basket__checkbox-ico img {
	transition: transform 0.2s ease;
	transform: scale(0);
}
.basket__holder .basket__checkbox-text {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	margin-left: 15px;
}
/**/
.basket__holder .basket__button-radio-holder {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.basket__holder .basket__button-radio {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-shrink: 0;
	margin-right: 15px;
	cursor: pointer;
}
.basket__holder .basket__button-radio input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	visibility: visible;
}
.basket__holder .basket__button-radio-text {
	width: 200px;
	border: 1px solid #b1b3b3;
	font-weight: 500;
	font-size: 14px;
	line-height: 170%;
	text-align: center;
	letter-spacing: -0.02em;
	color: #b1b3b3;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease;
}
.basket__holder .basket__button-radio input:checked ~ .basket__button-radio-text {
	color: black;
	border-color: #ff5a34;
	background-color: #ff5a34;
}
.basket__button-radio-holder--point-equipment .basket__button-radio {
	cursor: default;
}
@media (max-width: 500px) {
	.basket__holder .basket__button-radio-holder {
		display: block;
	}
	.basket__holder .basket__button-radio {
		margin: 0 0 15px 0;
	}
	.basket__holder .basket__button-radio-text {
		width: 100%;
	}
}
/**/

.basket__total {
	position: sticky;
	top: 20px;
	margin: 20px 0;
}
.basket__total--mobile {
	display: none;
}
.basket__total-wrapper {
	padding: 18px 10px;
	border: 1px solid var(--red);
}
.basket__total-price {
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	padding-bottom: 3px;
	margin-bottom: 16px;
	border-bottom: 1px solid #000;
}
.basket__total-price span {
	font-size: 20px;
	white-space: nowrap;
}
.basket__total-item {
	margin: 13px 0 18px 0;
}
.basket__total-item dl {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
	font-size: 10px;
	line-height: 170%;
	letter-spacing: -0.02em;
	color: #4b4f54;
}
.basket__total-item dl dd {
	font-size: 12px;
}
.basket__total-coupon-wrapper {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.basket__total-coupon-wrapper .btn {
	border: 0;
	width: auto;
	border-radius: 0;
	padding: 6px;
	height: auto;
	font-size: 12px;
	line-height: normal;
	text-transform: uppercase;
	margin-left: 4px;
	flex-shrink: 0;
	cursor: pointer;
}
.basket__total-coupon-wrapper .btn {
	background-color: #fff;
	color: #000;
}
.basket__total-coupon-wrapper .btn:hover {
	background-color: #000;
	color: #fff;
}
.basket__total-coupon {
	font-weight: 500;
	font-size: 12px;
	line-height: 170%;
	color: #4b4f54;
}
.basket__total-coupon-text {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 10px;
}
.basket__total-coupon-text span {
	letter-spacing: -0.08em;
	margin-right: auto;
}
.basket__total-coupon input {
	width: 100px;
	flex-grow: 1;
	padding: 0 4px;
	line-height: 26px;
	border: 1px solid #aaa;
}
.basket__total-button {
	margin-top: 22px;
}
.basket__total-button .btn {
	display: block;
	border: 0;
	outline: none;
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	padding: 13px 4px;
	height: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	#bx-soa-reg-properties .basket__total-button {
		display: none;
	}
}
/**/
.basket__done {
	margin-top: 40px;
	font-weight: bold;
	font-size: 18px;
	line-height: 145%;
	letter-spacing: -0.02em;
	color: #4b4f54;
}
.basket__done p {
	font-size: 16px;
}

/**/
.basket__text-field {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 20px;
}
.basket__text-field-block:not(:first-child) {
	padding-top: 13px;
	margin-top: 24px;
	border-top: 1px solid #b1b3b3;
}
.basket__text-label {
	flex-shrink: 0;
	width: 200px;
	margin-right: 50px;
	width: 160px;
	margin-right: 16px;
	font-weight: 500;
	font-size: 14px;
	line-height: 170%;
	letter-spacing: -0.02em;
	color: #000000;
}
.basket__text-label--short {
	width: 160px;
	margin-right: 16px;
}
.basket__text-label .req {
	color: red;
}

.basket__text-field > .soa-property-container,
.basket__text-field > .basket__text-input {
	flex-grow: 1;
	display: block;
}
.basket__text-input {
	-webkit-appearance: none;
	border-radius: 0;
	border: 1px solid #b1b3b3;
	resize: none;
	width: 100%;
	padding: 7px 12px;
}
.basket__text-input[readonly] {
	background-color: #eaeaea;
}
.basket__text-input.error {
	border-color: red;
}
.basket__text-input--short {
	/*margin-right: 225px;*/
}
/**/

/**/
.basket__holder .basket__column-holder {
	position: relative;
	margin-top: 60px;
	padding-top: 15px;
	border-top: 1px solid #000;
}
.basket__holder .basket__column-holder.error {
	border-color: red;
}
.basket__holder .basket__column-holder.error .basket__subtitle {
	color: red;
}
.basket__holder .basket__column-holder--first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}
.basket__holder .basket__column-block {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 40px;
}
.basket__holder .basket__column-block-img {
	width: 80px;
	flex-shrink: 0;
	margin-right: 24px;
}
.basket__holder .basket__column-block-title {
	font-weight: bold;
	font-size: 18px;
	line-height: 145%;
	letter-spacing: -0.02em;
	color: #4b4f54;
}
.basket__holder .basket__column-wrapper {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0 -25px;
}
.basket__holder .basket__column {
	width: 50%;
	padding: 0 25px;
}
.basket__holder .basket__column-header {
	display: grid;
	gap: 10px;
	margin-bottom: 25px;
}
.basket__holder .basket__title {
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 9px;
}
.basket__holder .basket__column-header .basket__title,
.basket__holder .basket__column-header .basket__subtitle {
	margin-bottom: 0;
}
.basket__holder .basket__column-button {
	text-align: right;
}
.basket__holder .basket__subtitle {
	font-weight: bold;
	font-size: 18px;
	line-height: 145%;
	letter-spacing: -0.02em;
	margin-bottom: 25px;
}
.basket__holder .basket__litletitle {
	font-weight: 600;
	font-size: 12px;
	line-height: 15px;
	color: #4b4f54;
	margin-bottom: 22px;
}
.basket__holder .basket__subtitle.error,
.basket__holder .basket__litletitle.error {
	color: red;
}
.basket__holder .basket__text {
	color: #000;
	font-family: Montserrat;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.basket__holder .basket__contrlos-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.basket__holder .basket__contrlos .basket__contrlos-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 10px 0 12px 0;
}
.basket__holder .basket__contrlos .basket__contrlos-item {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	line-height: 18px;
	color: var(--gray);
	border: 1px solid var(--blue);
	padding: 3px 6px;
	text-decoration: none;
}
.basket__holder .basket__contrlos .basket__contrlos-item svg,
.basket__holder .basket__contrlos .basket__contrlos-item img {
	vertical-align: middle;
	color: var(--blue);
}
.basket__holder .basket__contrlos .basket__contrlos-item span {
	display: inline-block;
	vertical-align: middle;
	margin-left: 12px;
}
.basket__holder .basket__contrlos .basket__contrlos-item:hover {
	background-color: var(--light-blue);
	border-color: var(--light-blue);
	color: #fff;
}
.basket__holder .basket__contrlos .basket__contrlos-item:hover svg {
	color: #fff;
}

.basket__holder .basket__contrlos .basket__contrlos-item[data-popup-init="clear-cart"] {
	border-color: var(--red);
	color: #000;
}
.basket__holder .basket__contrlos .basket__contrlos-item[data-popup-init="clear-cart"] svg{
	color: var(--red);
}
.basket__holder .basket__contrlos .basket__contrlos-item[data-popup-init="clear-cart"]:hover {
	background-color: var(--red);
	border-color: var(--red);
	color: #fff;
}
.basket__holder .basket__contrlos .basket__contrlos-item[data-popup-init="clear-cart"]:hover svg {
	color: #fff;
}


.basket__holder .basket__contrlos-body {
	padding-bottom: 25px;
	border-bottom: 1px solid #b1b3b3;
}
.basket__holder .basket__contrlos-body .btn {
	display: block;
	width: 100%;
	height: auto;
	font-weight: bold;
	font-size: 10px;
	line-height: 12px;
	text-align: center;
	padding: 10px;
}
.basket__holder .basket__contrlos-body [data-dropdown-link] {
	max-width: 450px;
}
.basket__holder .basket__contrlos-body .button-group {
	display: flex;
	justify-content: space-between;
	width: 74%;
	margin-left: auto;
}
.basket__holder .basket__contrlos-body .button-group .btn {
	width: auto;
	font-size: 12px;
	line-height: 15px;
	text-transform: uppercase;
	font-weight: normal;
	padding: 5px 15px;
	min-width: 155px;
}
.basket__holder .basket__contrlos-body .label {
	margin: auto 0;
}
.basket__holder .basket__contrlos-body input {
	height: auto;
}
.basket__holder .basket__contrlos-body .active[data-dropdown-hidden-link] {
	display: none;
}
.basket__holder .form-group__edit,
.basket__holder .form-group__complete.visible {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.basket__holder .form-group__edit.hidden,
.basket__holder .form-group__complete {
	display: none;
}
.basket__holder .form-group__edit input {
	padding: 5px;
	line-height: 16px;
	width: 100%;
	max-width: 300px;
	text-align: center;
	box-sizing: border-box;
}
.basket__holder .form-group__edit .btn,
.basket__holder .form-group__complete .btn {
	display: inline-flex;
	flex-shrink: 0;
	width: auto;
	font-weight: normal;
	font-size: 15px;
	line-height: 18px;
	height: auto;
	padding: 5px 15px;
	text-transform: lowercase;
	white-space: nowrap;
}
.basket__holder .basket__order-name {
	display: flex;
	align-items: center;
}
.basket__holder .basket__order-name__edit {
	display: inline-flex;
	height: 14px;
	width: 14px;
	margin-left: 0.5em;
	padding: 0;
	flex-shrink: 0;
	color: #000;
	background: none;
	border: 0;
}
.basket__holder .basket__contrlos fieldset {
	margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
	.basket__holder .basket__contrlos-body .button-group {
		width: auto;
		justify-content: flex-start;
	}
	.basket__holder .basket__contrlos-body .button-group .btn {
		margin-right: 1em;
	}
}

.basket__error {
	border: 2px solid #ff5b34;
	padding: 16px;
	font-size: 14px;
	line-height: normal;
	text-align: center;
	margin: 24px 0;
}
@media (max-width: 600px) {
	.basket__error {
		font-size: 12px;
	}
}
@media (max-width: 400px) {
	.basket__holder .basket__pdf {
		display: block;
		margin-bottom: 1em;
	}
	.basket__holder .basket__pdf .basket__clear-cart {
		display: block;
		margin-top: 0.5em;
	}
	.basket__holder .basket__contrlos-body .button-group {
		display: flex;
		gap: 1em;
	}
	.basket__holder .basket__contrlos-body .button-group .btn {
		min-width: 0;
		margin: 0;
		flex-grow: 1;
	}
}

/*
basket__catalog
*/
.basket__holder .basket__catalog-list {
}
.basket__holder .basket__catalog-item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 13px;
	padding-top: 13px;
	border-top: 1px solid #b1b3b3;
}
.basket__holder .basket__catalog-item:first-child {
	border-top: 0;
}
/**/
.basket__holder .basket__catalog-remove {
	flex-shrink: 0;
	width: 20px;
	margin-right: 10px;
}
.basket__holder .basket__catalog-remove a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gray-light);
	width: 20px;
	height: 20px;
	transition: background-color 0.2s ease;
}
.basket__holder .basket__catalog-remove a:hover {
	border-color: #000;
}
.basket__holder .basket__catalog-img {
	flex-shrink: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border: 1px solid #4b4f54;
	overflow: hidden;
}
.basket__holder .basket__catalog-img img {
	max-width: 100%;
	max-height: 100%;
}
.basket__holder .basket__catalog-text {
	flex-grow: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	margin-left: 20px;
	width: calc(100% - 150px);
}
.basket__holder .basket__catalog-name {
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
}
.basket__holder .basket__catalog-name a {
	text-decoration: none;
	color: #000;
}
.basket__holder .basket__catalog-name a:hover {
	color: #ff5b34;
	text-decoration: underline;
}
.basket__holder .basket__catalog-info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-end;
	align-items: flex-end;
	justify-content: flex-end;
	margin-top: auto;
	text-align: right;
	padding-top: 12px;
}
.basket__holder .basket__catalog-price {
	position: relative;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	margin: 0 14px;
	margin-bottom: 3px;
	min-width: 71px;
	white-space: nowrap;
}
.basket__holder .basket__catalog-price img {
	position: absolute;
	top: -6px;
	right: -9px;
}
.basket__holder .basket__catalog-amount {
	width: 50px;
	/*margin-left: 21px;*/
}
.basket__holder .basket__catalog-amount input {
	-webkit-appearance: none;
	border-radius: 0;
	width: 50px;
	height: 28px;
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
	text-align: center;
	letter-spacing: -0.02em;
	color: var(--gray-light);
	border: 1px solid var(--gray-light);
	outline: none;
}
/*

basket right top part

*/
.basket__holder .basket__login {
	height: 54px;
}
.basket__holder .basket__login a:visited,
.basket__holder .basket__login a {
	font-weight: 500;
	font-size: 10px;
	line-height: 12px;
	white-space: nowrap;
	background-color: var(--blue);
	text-decoration: none;
	color: #222;
	height: 36px;
	line-height: 36px;
	text-align: center;
	text-decoration: none;
}
/*
basket__service
*/
.basket__holder .basket__service-list {
}
.basket__holder .basket__service-item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 30px;
}
/**/
.basket__holder .basket__service-text {
	flex-grow: 1;
}
.basket__holder .basket__service-top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.basket__holder .basket__service-name {
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
}
.basket__holder .basket__service-info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-end;
	align-items: flex-end;
	justify-content: flex-end;
	margin-top: auto;
	text-align: right;
}
.basket__holder .basket__service-amount {
	width: 50px;
	margin-left: 15px;
}
.basket__holder .basket__service-amount input {
	-webkit-appearance: none;
	border-radius: 0;
	width: 50px;
	height: 28px;
	font-size: 15px;
	line-height: 28px;
	font-weight: 500;
	font-size: 14px;
	line-height: 170%;
	text-align: center;
	letter-spacing: -0.02em;
	color: var(--gray-light);
	border: 1px solid var(--gray-light);
	outline: none;
}
.basket__holder .basket__service-price {
	position: relative;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	margin-left: 15px;
	min-width: 80px;
	white-space: nowrap;
}
.basket__holder .basket__service-description {
	font-weight: 500;
	font-size: 11px;
	line-height: 126.5%;
	letter-spacing: -0.02em;
}

/**/
.basket__holder .basket__dateTime-label {
	font-weight: bold;
	font-size: 14px;
	line-height: 145%;
	letter-spacing: -0.02em;
	color: #4b4f54;
	margin-bottom: 6px;
}
.basket__holder .basket__dateTime-block {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.basket__holder .basket__dateTime-block img {
	margin-right: 20px;
}
.basket__holder .basket__dateTime-block input {
	-webkit-appearance: none;
	border: 1px solid var(--gray-light);
	border-radius: 0;
	width: 160px;
	height: 20px;
	text-align: center;
}
.basket__holder .basket__dateTime-block input.error {
	border-color: var(--blue);
}

@media (max-width: 1100px) {
	.basket__holder .basket__column-wrapper {
		display: block;
		margin: 0;
	}
	.basket__holder .basket__column {
		width: 100%;
		padding: 0;
		margin-bottom: 25px;
	}
}
@media (max-width: 768px) {
	.basket__holder .basket__catalog-text {
		margin-left: 12px;
	}
	.basket__holder .basket__catalog-name {
		font-size: 12px;
		line-height: 145%;
		letter-spacing: -0.02em;
	}
	.basket__holder .basket__catalog-price {
		min-width: 0;
		margin: 0 12px;
	}
	.basket__holder .basket__catalog-amount {
		/*margin-left: 12px;*/
	}

	.basket__holder .basket__login a {
		white-space: normal;
		height: auto;
		line-height: 1.2;
		padding: 6px;
	}

	.basket__holder .basket__service-top {
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.basket__holder .basket__service-info {
		margin-top: 0;
		align-items: flex-start;
	}
	.basket__holder .basket__service-name {
		font-size: 12px;
		line-height: 145%;
		letter-spacing: -0.02em;
	}
	.basket__holder .basket__service-price {
		font-size: 12px;
		line-height: 145%;
		min-width: 0;
	}

	.basket__text-field {
		display: block;
	}
	.basket__text-label {
		margin-bottom: 12px;
		width: auto;
	}
	.basket__text-input {
		display: block;
		width: 100%;
	}
	.basket__text-input--short {
		margin-right: 0;
	}

	.basket__total {
		display: none;
	}
	.basket__total--mobile {
		display: block;
	}
}
@media (max-width: 400px) {
	.basket__holder .basket__catalog-price {
		font-size: 12px;
		line-height: 15px;
	}
	.basket__holder .basket__catalog-price:first-child {
		margin-left: 0;
	}
	.basket__holder .basket__catalog-text {
		margin-left: 8px;
	}
}

.bx-soa-section {
	position: relative;
}
.basket__user-need-to-cabinet {
	float: right;
	display: none;
	margin: 5px 0;
}
.basket__user-need-to-cabinet.visible {
	display: block;
}

.popup-components .components {
	text-align: center;
}
.order-button {
	display: flex;
	justify-content: center;
}
.order-button > * {
	width: 160px;
	margin: 0 10px;
	height: 50px;
	line-height: 50px;
}

.basket-drop-item {
	border-bottom: 1px solid #b1b3b3;
}
.basket-drop-item__link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 38px 12px 5px;
}
.basket-drop-item__arrow {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}
.basket-drop-item__arrow svg {
	transition: transform 0.2s ease;
}
.basket-drop-item__content {
	padding-top: 12px;
}
.basket-drop-item__link.active svg {
	transform: rotate(90deg);
}
