.services-items {
	position: relative;
}
body .services-buy .btn.btn-default.in_cart:hover {
	background-color: var(--secondary-black-dark-light-bg);
    border-color: var(--secondary-black-dark-light-bg);
	color: var(--button_color_text);
}
.services-item.services-item--selected .services-item__info-title {
    --text-opacity: 100%;
}
.services-item > .flexbox {
    min-height: 30px;
}

.services-item__on-off-switch {
	position: relative;
	font-size: 0;
	flex-shrink: 0;
}
.services-item__on-off-switch input[type="checkbox"] {
	display: none;
}
.services-item__on-off-switch input[type="checkbox"] + label {
	cursor: pointer;
	position: relative;
	cursor: pointer;
	outline: none;
	display: block;
	width: 35px;
	height: 26px;
	margin: 0;
}
.services-item__on-off-switch input[type="checkbox"] + label:before {
	content: "";
	position: absolute;
	display: block;
	top: 4px;
	bottom: 4px;
	border-radius: 10px;
	font-size: 0;
	left: 1px;
	right: 1px;
}
.services-item__on-off-switch input[type="checkbox"] + label:before {
	background: #e0e0e0;
	background: var(--light, #e0e0e0) var(--dark, #444);
}
.services-item__on-off-switch input[type="checkbox"]:checked + label:before {
	background: #5b7fff;
	background: var(--theme-base-color);
}
.services-item__on-off-switch input[type="checkbox"] + label:after {
	content: "";
	position: absolute;
	display: block;
	top: 4px;
	bottom: 0;
	border-radius: 100%;
	background: #fff;
	width: 14px;
	height: 14px;
	border: none;
	margin: 2px;
	left: 1px;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
	transition: left 0.1s ease-in;
	z-index: 11;
}
.services-item__on-off-switch input[type="checkbox"]:checked + label:after {
    left: 16px;
}

@media (max-width: 499px) {
	.services-items--table .services-item > .flexbox {
		flex-wrap: wrap;
	}
	.services-item__price {
		margin-left: 43px;
		white-space: nowrap;
		width: auto;
	}
	.services-item > .flexbox--align-center {
		align-items: flex-start;
	}
}

.basket-items-list .services-items--show-all .grid-list__item.hidden {
	display: block !important;
	visibility: visible !important;
}



.container-building-options {
	display: flex;
	flex-wrap: wrap;
	max-width: 870px;
	justify-content: space-between;
	position: relative;
}

.container-building-options .container-option {
	display: flex;
	align-items: center;
	max-width: 410px;
	width: 100%;
	justify-content: space-between;
	margin: 10px 0;
}

.container-building-options .container-option .services-buy__option {
	display: flex;
	align-items: center;
}

.container-building-options .container-option .services-buy__option .services-buy__btn {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.container-building-options .container-option .services-buy__option .services-buy__btn input {
	display: none;
}

.container-building-options .container-option .services-buy__option .services-buy__btn label {
	cursor: pointer;
	position: relative;
	display: block;
	width: 33px;
	height: 18px;
	background: #E0E0E0;
	border-radius: 10px;
	transition: background 0.2s;
}

.container-building-options .container-option .services-buy__option .services-buy__btn label:before {
	content: "";
	position: absolute;
	display: block;
	top: 4px;
	bottom: 4px;
	border-radius: 10px;
	font-size: 0;
	left: 1px;
	right: 1px;
}

.container-building-options .container-option .services-buy__option .services-buy__btn label:after {
	content: "";
	position: absolute;
	top: 2px;
	left: 3px;
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
	transition: 0.2s;
}

.container-building-options .container-option .services-buy__option .services-buy__btn input:checked + label {
	background: #6C9A6D;
}

.container-building-options .container-option .services-buy__option .services-buy__btn input:checked + label:after {
	left: 17px;
	background: #fff;
}

.container-building-options .container-option .services-buy__option .name {
	color: #ABABAE;
}

.container-building-options .add-option {
	color: #6C9A6D;
	position: absolute;
	bottom: -30px;
	cursor: pointer;
}

.container-building-options .border {
	background: #E8E8EA;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 50%;
}

@media (min-width: 1000px) {
	.container-building-options .container-option .services-buy__option .name {
		width: 220px;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: normal;
		cursor: pointer;
	}
	.container-building-options .container-option .services-buy__option .name:hover {
		-webkit-line-clamp: unset; /* Отображаем весь текст при наведении */
		overflow: visible;
	}
}

.container-building-options .border {
	background: #E8E8EA;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 50%;
}
.container-building-options .container-option {
	width: 50%;
	margin: 0;
}


.container-building-options .container-option .services-buy__option {
	width: 80%;
}
.container-building-options .container-option .services-buy__option .name {
	width: 67%;
}
.container-building-options .container-option .price {
	width: 20%;
}
.container-building-options .container-option .price .price {
	width: 100%;
}