:root {
	--main-color: rgb(34, 34, 34);
	/*--alt-color: rgb(255, 163, 25);*/
	--alt-color: rgb(0, 150, 250);
	--light-gray-color: rgb(247, 247, 247);
	--sub-text-color: rgb(112, 112, 112);
}

body {
	--bs-body-font-family: Inter, system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	--bs-body-color: var(--main-color);
	--bs-heading-color: var(--main-color);
	--bs-breadcrumb-divider: '>';
	color: var(--main-color);
}

dl {
    margin: 0;
}

.w-33 {
    width: 33% !important;
}

.breadcrumb {
	--bs-breadcrumb-item-active-color: var(--main-color);
}

.cursor-pointer {
	cursor: pointer;
}

/*
.w-50 {
	width: 50%;
}
*/
.main-color {
	color: var(--main-color);
}
/*
.main-bg-color {
	background-color: var(--main-color);
}
*/

.shadow-sm-inverse {
    box-shadow: 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.alt-color {
	color: var(--alt-color);
}

.light-grey-color {
	color: lightgrey;
}

.alt-color-bg {
	background-color: var(--alt-color);
}

.text-xl {
	font-size: 56px;
}

.text-l {
	font-size: 40px;
}

.text-m {
    font-size: 24px;
}

.text-fs-12 {
	font-size: 12px;
}

.text-fs-14 {
	font-size: 14px;
}

.btn {
	border-radius: var(--bs-border-radius-xxl);
	border: 0;
}

.btn-primary {
	background-color: white;
	color: var(--main-color);
	border: 1px solid var(--main-color);
}

.btn-secondary {
	background-color: var(--main-color);
	color: white;
	border: 1px solid var(--main-color);
}

.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary.active {
	background-color: var(--main-color);
	color: white;
	border: 1px solid var(--main-color);
}

.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary.active {
	background-color: white;
	color: var(--main-color);
	border: 1px solid var(--main-color);
}

.card-bg {
	background-color: var(--light-gray-color);
}

/*

.badge {
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
	color: var(--main-color);
	background-color: white;
}
*/
.icon {
	width: 56px;
	height: 56px;
	background-color: rgba(0, 150, 250, .1);
}

.icon-md {
	width: 40px;
	height: 40px;
	background-color: var(--main-color);
	color: white;
}

.btn.icon-md:hover,
.btn.icon-md:active {
	background-color: var(--alt-color);
	color: var(--main-color);
}

.icon-sm {
	width: 24px;
	height: 24px;
	background-color: rgba(255, 255, 255, .1);
}

.list-item,
.btn-google/*,
.btn-apple*/ {
	background-color: white;
}
/*
.btn-facebook {
	background-color: #1877f2;
}*/

.btn-google/*,
.btn-apple,
.btn-facebook*/ {
	height: 48px;
	width: 48px;
}

.btn-google:hover,
/*.btn-apple:hover,
.btn-facebook:hover*/ {
	border: solid 2px var(--alt-color);
}

.list-item:hover {
	background-color: var(--light-gray-color);
}

.scale-down-sm:hover {
	transform: scale(0.98);
}
/*
.scale-sm:hover {
	transform: scale(1.02);
}*/

.lh-md {
	line-height: 24px;
}
/*
.lh-l {
	line-height: 32px;
}

.lh-xl {
	line-height: 48px;
}
*/
.lh-xxl {
	line-height: 64px;
}
/*
.main-gradient {
	background-image: linear-gradient(rgba(26, 13, 0, 0) 0%, rgba(204, 119, 0, 0.7) 50%, rgba(184, 110, 0, 0.9) 100%);
}

.main-gradient-reversed-50 {
	background-image: linear-gradient(rgba(184, 110, 0, 0.9) 0%, rgba(204, 119, 0, 0.7) 25%, rgba(26, 13, 0, 0) 50%);
}
*/
h1,
h2,
h3,
.letter-spacing-s {
	letter-spacing: -.02em;
}

.hero-content {
	line-height: 64px;
	height: 300px;
}

.hero-content-text {
	left: 35%;
}

.navbar-brand {
	letter-spacing: 1px;
	font-size: 26px;
}

.navbar .navbar-nav .nav-link > span::after,
.dropdown-item > span::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: var(--alt-color);
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .navbar-nav .nav-link > span,
.dropdown-item > span {
	position: relative;
	display: inline-block;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
	color: var(--main-color);
	background-color: transparent;
}

.navbar .navbar-nav .nav-link:hover > span::after,
.navbar .navbar-nav .nav-link:focus > span::after,
.navbar .navbar-nav .nav-link.active > span::after,
.dropdown-item:hover > span::after,
.dropdown-item:focus > span::after,
.dropdown-item.active > span::after {
	width: 100%;
}

.form-control:focus {
	box-shadow: none;
	border-color: var(--alt-color);
}

.form-control.disabled {
    background-color: var(--bs-secondary-bg);
    opacity: 1;
	cursor: default;
}

.form-control.disabled:focus {
	box-shadow: none;
	border-color: var(--bs-border-color);
}

.sub-text {
	color: var(--sub-text-color);
}
/*
.block-shadow {
	box-shadow: rgba(0, 0, 0, 0.08) 2px 4px 20px 0px;
}

.card-img-product {
	height: 200px;
}
*/

.card-img-l {
    max-height: 536px;
    object-fit: contain;
}

.card-img-m {
    height: 150px;
    object-fit: contain;
}
/*
.border.filter-badge:hover {
    border: solid 1px var(--alt-color);
}*/

.warning-border:hover,
.warning-border.active {
    border: var(--bs-border-width) var(--bs-border-style) rgb(var(--bs-warning-rgb)) !important;
}

.warning-border.active {
    background-color: rgb(var(--bs-warning-rgb)) !important;
}

.info-border:hover,
.info-border.active {
    border: var(--bs-border-width) var(--bs-border-style) rgb(var(--bs-info-rgb)) !important;
}

.info-border.active {
    background-color: rgb(var(--bs-info-rgb)) !important;
}

.multi-steps fieldset:not(:first-of-type) {
	display: none;
}

.progress-bar-icons .active {
	color: var(--alt-color);
}

.progress-bar-icons li:before {
	width: 50px;
	height: 50px;
	line-height: 45px;
	display: block;
	font-size: 20px;
	color: #ffffff;
	background: lightgrey;
	border-radius: 50%;
	margin: 0 auto 10px auto;
	padding: 2px;
}

.progress-bar-icons li:after {
	content: "";
	width: 100%;
	height: 2px;
	background: lightgrey;
	position: absolute;
	left: 0;
	top: 25px;
	z-index: -1;
}

.progress-bar-icons li.active:before,
.progress-bar-icons li.active:after {
	background: var(--alt-color);
}

.btn-secondary.light-grey-color-bg:not(:hover) {
    background-color: lightgrey;
    border-color: lightgrey;
}

.maps-direction-container {
	z-index:9999;
	margin-top: 60px;
}
.maps-direction-panel {
	max-width: 298px;
}
.maps-direction-icon {
	background: url("https://maps.gstatic.com/mapfiles/embed/images/entity11.png") 0 0 / 70px 210px no-repeat;
	width: 22px;
	height: 22px;
}

.bootstrap-select .dropdown-toggle {
	border-radius: 0;
}

.bootstrap-select .dropdown-toggle:focus {
	border: 0;
}

.bootstrap-select .btn.dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.btn.dropdown-toggle {
    outline: initial !important;
    outline-offset: initial !important;
}

.filter-option-inner-inner,
.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: var(--main-color) !important;
}

.hero-surface {
	background: radial-gradient(100% 50% at 20% 10%, rgba(0, 150, 250, .12), transparent 60%);
}

.glass-card {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, .75);
	border: 1px solid rgba(0, 0, 0, .06);
	min-width: 300px;
}

.icon-chip {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, .04);
}

.kpi {
	border: 1px solid rgba(0, 0, 0, .08);
}

.sticky-cta {
	position: sticky;
	bottom: 0;
	z-index: 1030;
	background: rgba(255, 255, 255, .85);
	backdrop-filter: blur(8px);
	border-top: 1px solid rgba(0, 0, 0, .08);
}

.hero-img {
	min-height: 500px;
	object-fit: cover;
}

.pref-center-root {
	position: fixed;
	right: 16px;
	bottom: 16px;
	left: 16px;
	z-index: 1200;
	pointer-events: none;
}

.pref-center-box {
	display: none;
	max-width: 720px;
	margin-left: auto;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	pointer-events: auto;
}

.pref-center-root.show-banner #prefCenterBanner {
	display: block;
}

.pref-center-root.show-panel #prefCenterPanel {
	display: block;
}