

/* Start:/local/components/caraudio/service.centers/templates/.default/style.css?17767779545366*/
.custom-select-wrapper {
	position: relative;
	width: 100%;
}

.custom-select {
	position: relative;
	width: 100%;
}

.custom-select-trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	background: var(--black_bg_black);
	border: 1px solid var(--stroke_black);
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	transition: all 0.3s ease;
	user-select: none;
	color: var(--white_text_black);
}

.custom-select-trigger:hover {
	border-color: var(--theme-base-color);
}

.custom-select.open .custom-select-trigger {
	border-color: var(--theme-base-color);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.custom-select-trigger .arrow {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--secondary);
	transition: transform 0.3s ease;
}

.custom-select.open .custom-select-trigger .arrow {
	transform: rotate(180deg);
}

.custom-options {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--black_bg_black);
	border: 1px solid var(--theme-base-color);
	border-top: none;
	border-radius: 0 0 8px 8px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 100;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-select.open .custom-options {
	max-height: 400px;
	opacity: 1;
	overflow: visible;
}

.custom-options-list {
	max-height: 300px;
	overflow-y: auto;
	padding: 5px 0;
}

.custom-options-list::-webkit-scrollbar {
	width: 8px;
}

.custom-options-list::-webkit-scrollbar-track {
	background: var(--black_bg_black);
	border-radius: 4px;
}

.custom-options-list::-webkit-scrollbar-thumb {
	background: var(--stroke_black);
	border-radius: 4px;
}

.custom-options-list::-webkit-scrollbar-thumb:hover {
	background: var(--secondary);
}

.custom-option {
	padding: 10px 20px;
	cursor: pointer;
	transition: background 0.2s ease;
	font-size: 14px;
	color: var(--white_text_black);
	background: transparent;
}

.custom-option:hover {
	background: var(--card_bg_hover_black);
}

.custom-option.selected {
	background: var(--theme-base-color);
	color: #fff;
}

.download-wrapper {
	text-align: center;
}

.btn-wide {
	min-width: 300px;
}

.steps-overview-wrapper {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 12px;
	padding: 30px;
}

.steps-overview {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.step-overview-item {
	flex: 1;
	min-width: 200px;
	text-align: center;
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--theme-base-color, #ff6b35);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: bold;
	margin: 0 auto 15px;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-text {
	font-size: 14px;
	line-height: 1.4;
	color: var(--text_black, #333);
	font-weight: 500;
}

.step-text a {
	color: var(--theme-base-color, #ff6b35);
	text-decoration: none;
	font-weight: 600;
}

.step-arrow {
	font-size: 32px;
	color: var(--theme-base-color, #ff6b35);
	font-weight: bold;
}

.step-badge {
	display: inline-block;
	background: var(--theme-base-color, #ff6b35);
	color: #fff;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	margin-right: 8px;
}

.step-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.step-checklist li {
	padding: 8px 0 8px 30px;
	position: relative;
	line-height: 1.5;
}

.step-checklist li:before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 8px;
	width: 20px;
	height: 20px;
	background: var(--theme-base-color, #ff6b35);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 12px;
}

.shipping-methods-grid,
.payment-info-grid,
.repair-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.bg-theme-light-hover {
	background: var(--card_bg_black);
	transition: background 0.3s ease;
}

.shipping-method-item,
.payment-type-item {
	margin-bottom: 16px;
	padding: 15px;
}

.bg-theme-light-hover:hover {
	background: var(--card_bg_hover_black);
}

.bordered-left-theme {
	border-left: 3px solid var(--theme-base-color);
}

.info-notice-list,
.payment-list {
	margin: 0;
	padding-left: 20px;
}

.email-gradient-box {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	text-align: center;
}

.email-link {
	color: #fff;
	text-decoration: none;
}

.email-link:hover {
	text-decoration: underline;
	color: #fff;
}

.email-note {
	font-style: italic;
	text-align: center;
}

@media (max-width: 768px) {
	.steps-overview-wrapper {
		padding: 20px;
	}

	.steps-overview {
		flex-direction: column;
	}

	.step-arrow {
		transform: rotate(90deg);
		margin: 10px 0;
	}

	.step-overview-item {
		width: 100%;
	}

	.shipping-methods-grid,
	.payment-info-grid,
	.repair-info-grid {
		grid-template-columns: 1fr;
	}

	.btn-wide {
		min-width: auto;
		width: 100%;
	}
}


/* End */


/* Start:/bitrix/templates/aspro-premier/css/conditional/contacts.min.css?174853401311194*/
.contacts__map{overflow:hidden;position:relative;}.contacts-v1 .contact-property--image{position:relative;width:100%;height:100%;overflow:hidden;}@media (min-width:501px){.contacts-v1 .contact-property--image img{position:absolute;top:0;left:0;height:100%;width:100%;object-fit:cover}}.contacts-v2 .contact-property--image img{height:200px;}.contacts__map-wrapper + .contacts__desc{margin-top:48px;}.contacts__desc{margin:0;}.contacts__sticky-panel{overflow:hidden;padding:24px;background:var(--card_bg_black);}.contacts__sticky-panel__image{position:relative;margin:-24px -24px 0;overflow:hidden;}.contacts__sticky-panel__image .contact-property--image{overflow:hidden;}.contacts__sticky-panel .contacts__sticky-panel__image .contact-property--address{position:absolute;top:0;padding:24px;z-index:1;}.contacts__sticky-panel .contacts__sticky-panel__image .contact-property--address .contact-property__label{border-radius:var(--theme-sticker-border-radius);padding:4px 8px;background-color:color-mix(in oklab,#222228 40%,transparent);backdrop-filter:blur(4px);}.contacts__sticky-panel .contacts__sticky-panel__image .contact-property--address .contact-property__value{font-size:1.2em;line-height:calc(1em + 7px);color:#fff;}.contacts__sticky-panel__info{padding:24px 0 0 0;}.contacts__sticky-panel--without-image .contacts__sticky-panel__info{padding-top:0;}.contacts__sticky-panel__desc{margin:0 0 24px 0;}.contact-property__label{display:block;}.contacts-detail{position:relative;}.contacts-detail .contacts__row{display:flex;align-items:stretch;}.contacts-detail .contacts__col{position:relative;width:50%;}.contacts-detail .contacts__content-wrapper{margin:0 0 0 auto;padding-right:24px;padding-bottom:50px;}.contacts-detail .contacts__map-wrapper{padding-left:24px;}.contacts_map-sticky{overflow:hidden;}@media (min-width:992px){.hide_title_page .contacts-detail .contacts__content-wrapper{margin-top:71px}.hide_title_page .contacts-detail .contacts__map-wrapper{padding-top:71px}}.contacts-detail .contacts__map-wrapper{width:50%;}.contacts-detail .contacts-detail__property--top{margin:0 0 30px;padding:0;}.contacts-detail .contacts-detail__property--top .contact-property__label{margin-bottom:16px;}.contacts-detail .contacts-detail__info .contact-property__value{line-height:1.47em;}.contacts-detail .contacts-detail__info .contact-property__label{margin-bottom:2px;}.contacts-detail__item{min-height:142px;}.contacts-detail__image{max-width:100%;height:100%;min-width:0;}.contacts-detail__image{height:460px;}.contacts-detail__image:not(.contacts-detail__image--gallery){overflow:hidden;}.contacts-detail__image--gallery .gallery-big{height:100%;position:relative;}.contacts-detail__image--gallery .gallery-big .owl-carousel{position:absolute;top:0;left:0;bottom:0;right:0;}.contacts-detail__image--gallery .owl-stage-outer{border-radius:4px;}.contacts-detail__image--gallery .owl-item a div{display:block;padding-top:66.6%;background-size:cover;background-repeat:no-repeat;background-position:center top;}.contacts-detail__properties{display:flex;align-items:stretch;}.contacts-detail__property{padding:8px 0;}.contacts-detail__social{position:relative;margin-top:33px;}.contacts-detail__social .social__items{background-color:#fff;background:var(--black_bg_black);padding-right:40px;}.contacts-detail__social:before{content:" ";position:absolute;left:0;right:0;bottom:0;top:0;height:1px;width:100%;background-color:#ececec;background:var(--stroke_black);margin:auto;}.contacts-detail__description{margin-top:42px;}.contacts-detail__btn-wrapper{margin-top:32px;}@media (max-width:991px){.contacts-detail__image{height:325px}.contacts-detail .contacts-detail__property--top{margin-top:30px}.contacts-detail .contacts__col{width:100%}.contacts-detail .contacts__content-wrapper{padding-right:0;margin-top:0}.contacts-detail .contacts__map-wrapper{padding-left:0}.contacts-detail__image{max-width:100%;order:1}.contacts-detail .contacts__map-wrapper{position:relative;min-height:300px;width:100%;left:initial;right:initial;top:initial;bottom:initial!important;margin-bottom:24px}.contacts-v2 .contact-property--image img{height:auto}}@media (min-width:531px) and (max-width:991px){#main .contacts-detail .bx-yandex-view-map .bx-yandex-map,#main .contacts-detail .bx-google-map{height:325px!important}}@media (min-width:768px){.contacts-detail__properties>.contacts__col + .contacts__col{padding-left:16px}}@media (max-width:767px){.contacts-detail__properties{flex-direction:column}.contacts-detail__properties>div:last-child{padding-left:0}.contacts-detail .contacts__col{width:100%}.contacts-detail .contacts__content-wrapper{padding-right:0}.contacts-detail .contacts__map-wrapper{position:relative;min-height:300px;width:100%}}@media (max-width:550px){.contacts-detail .contacts__map-wrapper{position:relative;min-height:200px;width:100%}}@media (min-width:501px){.contacts-detail__image--gallery .gallery-big .swiper{position:absolute;top:0;left:0;bottom:0;right:0}}@media (max-width:500px){.contacts-detail__image{height:auto}.contacts-detail__image--gallery{height:275px}}@media (max-width:500px){.contacts-detail__image--gallery .gallery-big .swiper{height:100%}}.contacts-detail__image--gallery .swiper-slide a div{display:block;background-size:cover;background-repeat:no-repeat;background-position:center top;height:100%;}.contacts__row{display:flex;flex-direction:row;}.contacts__col{min-width:0;}.contacts__col--right{width:390px;padding-left:40px;}.contacts__sticky-panel--without-image .contacts__sticky-panel__info .contact-property--address{display:block;padding-top:0;}.contacts__panel-wrapper{display:flex;flex-direction:row;justify-content:space-between;}.contacts__tabs{margin:0 16px 0 0;flex-shrink:0;}.contacts__tabs .tabs{margin-bottom:32px;}.contacts__tabs .nav-tabs{margin:0 -3px;}.contacts__tabs .tabs .nav-tabs li{margin:0 3px;}.contacts__tabs .tabs .nav-tabs li a{padding:10px 21px 10px 22px;}.contacts__tab-content{position:relative;}.contacts__tab-content.contacts__tab-content--map>*:not(.contacts__map-wrapper):not(.alert),.contacts__tab-content:not(.contacts__tab-content--map)>.contacts__map-wrapper{position:absolute;top:-1000000px;width:100%;height:100%;}.contacts__tab-content.contacts__tab-content--map>.contacts__map-wrapper,.contacts__tab-content:not(.contacts__tab-content--map)>:not(.contacts__map-wrapper){margin-top:0;}.contacts__filter.line-block{max-width:672px;margin-bottom:16px;flex-grow:1;}.contacts__filter .line-block__item{flex:1;min-width:0;}.contacts__filter-select{margin-bottom:16px;}.contacts__filter-select .dropdown-select__title{padding:7px 41px 7px 13px;position:relative;height:39px;}.contacts__filter-select .dropdown-select__title span{display:block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;position:absolute;left:13px;right:41px;}.contacts__filter-select .dropdown-select__title .svg{margin:0;position:absolute;right:17px;top:18px;}.contacts__filter-select .dropdown-menu-wrapper{left:-1px;width:calc(100% + 2px);top:-1px;}.contacts__filter-select .dropdown-select__list-link{word-break:break-word;white-space:normal;}.contacts__filter-select .dropdown-menu-wrapper .dropdown-menu-inner{max-height:217px;overflow:auto;}@media (max-width:991px){.contacts__row{flex-direction:column-reverse}.contacts__col--right{padding:0 0 47px;width:100%}.contacts__sticky-panel{display:flex;flex-direction:row;padding:24px}.contacts__sticky-panel__image{margin:6px 0 0 0;max-width:352px;min-width:0;flex-basis:50%}.contacts__sticky-panel__info{flex:1;padding:0 0 0 24px;min-width:0}.contacts__sticky-panel--without-image .contacts__sticky-panel__info{padding-left:0}.contacts__sticky-panel .contacts__sticky-panel__image .contact-property--address,.contacts__sticky-panel .dark-block-after:after{display:none}.contacts__sticky-panel__btn-wraper .btn.btn-wide{width:auto}}@media (max-width:768px){.contacts__panel-wrapper{flex-direction:column}.contacts__tabs + .contacts__filter{margin-top:-16px}}@media (max-width:600px){.contacts__sticky-panel{flex-direction:column}.contacts__sticky-panel__image{margin:0 0 24px 0;max-width:inherit}.contacts__sticky-panel__info{padding:0}.contacts__panel-wrapper .line-block{flex-wrap:wrap}.contacts__panel-wrapper .line-block__item{flex-basis:100%}}.contacts-list__item{border-top:1px solid var(--stroke_black);}.contacts-list__wrapper:last-of-type .contacts-list__item{border-bottom:1px solid var(--stroke_black);}.contacts-list__item-image-wrapper .contacts-list__item-link,.contacts-list__item-image-wrapper>span{margin-right:28px;width:144px;height:96px;display:inline-block;position:relative;vertical-align:top;}.contacts-list__item-image{background-size:cover;background-position:center;background-repeat:no-repeat;display:block;position:absolute;top:0;bottom:0;left:0;right:0;}.contacts-list__item-col{flex:1;padding-right:15px;}.contacts-list__item-without-image .contacts-list__item-text-top-part>.contacts-list__item-col{flex-basis:calc(182px + (100% - 182px) / 2);}.contacts-list__item .contacts-list__item-metro .svg,.contacts-list__item .contacts-list__item-schedule .svg{margin-right:10px;}.contacts-list__item .contacts-list__item-schedule .svg{margin-top:-2px;}.contacts-list__item-emails,.contacts-list__item-phones{line-height:21px;}.contacts-list__item-coord{cursor:pointer;flex-shrink:0;}.contacts-list__item-coord .color-theme{color:var(--fill_dark_lite_white_hover);}.contacts-list__item-coord svg path{fill:var(--fill_dark_lite_white_hover);}.contacts-list__item-coord:hover .color-theme{color:var(--fill_dark_lite_ccc);}.contacts-list__item-coord:hover svg path{fill:var(--fill_dark_lite_ccc);}.contacts-list__item-coord .svg{margin:0 9px 0 0;}.contacts-list__item-pay__value{height:20px;line-height:20px;}.contacts-list__item-pay__value img{max-width:40px;}.contacts-list__wrapper .arrow-all{right:32px;top:35px;}.contacts-list__item-properties{margin:20px 0 0 0;}.contacts-list__item-properties-item-wraper{padding:0 0 0 15px;position:relative;}.contacts-list__item-properties-item-wraper:before{content:"";position:absolute;left:0;top:9px;width:4px;height:4px;border-radius:2px;background-color:#9e9e9e;background:var(--theme-base-color);}@media (min-width:1450px){.contacts-list__item-col--right{display:flex;flex:1;flex-direction:row;justify-content:space-between;padding-right:0}.contacts-list__item-coord{padding:0 0 0 15px}}@media (min-width:1300px) and (max-width:1449px){.contacts-list__item-coord{padding:11px 0 0 0}}@media (min-width:1300px){.contacts-list__item--hidden-f1300{display:none}}@media (max-width:1299px){.contacts-list__item--hidden-t1299{display:none}.contacts-list__item-info{margin:6px 0 0 0}.contacts-list__item-info>.line-block{flex-direction:column}}@media (max-width:600px){.contacts-list__item{flex-direction:column!important}.contacts-list__item-col{padding:0}.contacts-list__item-image-wrapper .contacts-list__item-link{width:100%;padding-bottom:56.6%}.contacts-list__item-image-wrapper .contacts-list__item-link,.contacts-list__item-image-wrapper>span{margin:0}.contacts-list__item-image-wrapper{margin:0 0 33px 0}}.contacts-list .grid-list--no-gap .contacts-list__wrapper.grid-list-border-outer{margin:0px -1px -1px 0;}
/* End */
/* /local/components/caraudio/service.centers/templates/.default/style.css?17767779545366 */
/* /bitrix/templates/aspro-premier/css/conditional/contacts.min.css?174853401311194 */
