

/* 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 */
/* /local/components/caraudio/service.centers/templates/.default/style.css?17767779545366 */
