:root {
	line-height: 1.5;
	font-weight: 400;

	color-scheme: light dark;
	background-color: var(--floating-action-bar-bg);

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	--text-white: #ffffff;
	--text-black: #000000;
	--text-gray: #8b8b8b;

	--main-bg: #ffffff;
	--accent-bg: #f5f5f5;
	--overlay-bg: #000000e6;
	--divider-line: #e7e7e7;
	--progress-divider-line: #9d9d9d;
	--input-divider-line: #d9d9d9;
	--input-label: #8c8c8c;
	--copyright-gray: #cccccc;
	--floating-action-bar-desktop-bg: #ececec;
	--floating-action-bar-bg: #222222;
	--floating-action-bar-circle: #ebebeb;
	--gray-button-bg: #ededed;
	--accent-red-1: #ff6b6b;
	--services-questions-feedback-bg: #f9f9f9;
	--feedback-name-bg: #d8d8d8;
	--vehicle-card-circle-bg: #f2f2f2;
    --payments-borders: #d7d7d7;
	--split-section-bg: #fafafa;

	--button-hover-speed: 150ms;
	--animation-speed: 150ms;
}
@media (max-width: 1023px) {
	:root {
		--floating-action-bar-height: 4rem;
		--navbar-height: 5rem;
	}
}
@media (min-width: 1024px) {
	:root {
		--floating-action-bar-height: 5rem;
		--navbar-height: 8rem;
	}
}
.Font10 {
	font-size: 10px;
}
.Font12, .VariableFont12 {
	font-size: 12px;
}
.Font14, .VariableFont14 {
	font-size: 14px;
}
.Font16, .VariableFont16 {
	font-size: 16px;
}
.Font18, .VariableFont18 {
	font-size: 18px;
}
.Font24, .VariableFont24 {
	font-size: 24px;
}
.Font30, .VariableFont30 {
	font-size: 30px;
}
.Font35, .VariableFont35 {
	font-size: 35px;
}
.Weight400 {
	font-weight: 400;
}
.Weight500 {
	font-weight: 500;
}
.Weight700 {
	font-weight: 700;
}
/* For headers and elements that must shrink on mobile */
@media (max-width: 767px) {
	.VariableFont35 {
		font-size: 24px;
	}
	.VariableFont30{
		font-size: 24px;
	}
	.VariableFont24 {
		font-size: 20px;
	}
	.VariableFont16 {
		font-size: 14px;
	}
	.VariableFont18 {
		font-size: 16px;
	}
	.VariableFont14 {
		font-size: 10px;
	}
    .VariableFont12 {
        font-size: 10px;
    }
}
@media (max-width: 900px) {
	.Hidden900 {
		display: none;
	}
}
html {
    height: 100%;
}
body {
    height: 100%;
	place-items: center;
	min-width: 320px;
	min-height: -webkit-fill-available;
	padding-bottom: var(--floating-action-bar-height);
	background-color: var(--text-black);
	overflow-x: hidden;
	font-family: 'Poppins', sans-serif;
	color: var(--text-white);
}
#app {
	margin: 0 auto;
	padding: 2rem;
	text-align: center;
}
.SiteWidth { /*5% from each side*/
	padding-left: 5%;
	padding-right: 5%;
	width: 100%;
}
.SiteWidth1200 { /*5% from each side unless screen is wider than 1200px*/
	max-width: 1200px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.HiddenOnLoad {
	visibility: hidden;
}
.NoScroll {
    overflow: hidden;
}
/* For opening and closing overlays */
[aria-hidden="true"] {
	display: none;
}
[aria-hidden="false"] {
	display: flex;
}

/* #region Navbar, Buttons, links, dropdowns */
.Navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--text-white);
	height: var(--navbar-height);
}
.Logo img {
	width: 6rem;
}
.NavbarButtonContainer {
	display: flex;
	flex-direction: row;
	height: 100%;
	justify-content: center;
}
.NavButtonRow1 {
	display: flex;
	flex: 10 1 0%;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
}
.NavButtonRow1 .NavLink {
	display: none;
}
.NavButtonRow2 {
	display: none;
	justify-content: flex-end;
	align-items: center;
	flex: 6 1 0%;
	gap: 1rem;
}
.NavMobileMenu {
	display: flex;
	margin-left: 1.5rem;
}
@media (min-width: 768px) {
	.Logo img {
		width: 8rem;
	}
}
@media (min-width: 1024px) {
	.NavbarButtonContainer {
		flex-direction: column;
	}
	.NavButtonRow1 {
		flex: 4 1 0%;
	}
	.NavButtonRow1 .NavLink {
		display: flex;
	}
	.NavButtonRow2 {
		display: flex;
	}
	.NavMobileMenu {
		display: none;
	}
}
@media (min-width: 1200px) {
	.Logo img {
		width: 10.5rem;
	}
}
.NavLink {
	height: 3rem;
	color: var(--text-black);
	cursor: pointer;
	text-decoration: none;
	align-items: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.NavLink:hover:not(.Dropdown),
.NavLink.Dropdown:hover > button > p {
	text-decoration: underline;
	text-underline-offset: .5rem;
	text-decoration-thickness: .075rem;
}
.NavLink > img, .LangButton > img {
	height: 1rem;
	margin-right: .35rem;
}
.Button, .NavLink, .LangButton {
	font-weight: 500;
}
.Button {
	height: 3rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	border-radius: .5rem;
	cursor: pointer;
	transition: ease var(--button-hover-speed);
}
.LangButton {
	background-color: var(--gray-button-bg);
	height: 2rem;
	padding-left: .75rem;
	padding-right: .75rem;
	border-radius: .5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	color: var(--text-black);
	transition: ease var(--button-hover-speed);
}
.LangButton:hover {
	color: var(--text-white);
	background-color: var(--text-black);
}
.ButtonWhite {
	background-color: var(--text-white);
	color: var(--text-black);
}
.ButtonWhite:hover {
	background-color: var(--text-black);
	color: var(--text-white);
}
.ButtonWhiteBordered {
	color: var(--text-black);
	border: 1px solid var(--text-black);
	transition: ease var(--button-hover-speed);
}
.ButtonWhiteBordered:hover {
	background-color: var(--text-black);
	color: var(--text-white);
}
.ButtonRed {
	background-color: var(--accent-red-1);
    color: var(--text-white);
}
.ButtonRed:hover {
	background-color: var(--text-black);
    color: var(--text-white);
}
.ButtonGray {
	background-color: var(--gray-button-bg);
}
.ButtonGray:hover {
	background-color: var(--text-black);
    color: var(--text-white);
}
.ButtonBlack {
	background-color: var(--text-black);
	color: var(--text-white);
}
.ButtonBlack:hover {
	background-color: var(--accent-red-1);
}
.NavLink.Active {
	color: var(--accent-red-1);
}
.NavLink.Active > ul {
	color: var(--text-black);
}
.Dropdown {
	position: relative;
	display: flex;
	color: var(--text-black);
	justify-content: center;
}
.DropdownMenu {
	position: absolute;
	top: calc(100% + .25rem);
	background-color: var(--text-white);
	display: none;
	flex-direction: column;
	justify-content: center;
	padding: 1.25rem;
	padding-top: .75rem;
	padding-bottom: .75rem;
	border: 2px solid var(--divider-line);
	border-radius: 1.25rem;
	z-index: 10;
}
.NavLink .DropdownToggle {
	height: 3rem;
}
.DropdownMenu > li {
	height: 2rem;
	display: flex;
	align-items: center;
	white-space: nowrap
}
.DropdownCheckbox .DropdownMenu > li {
	display: flex;
	align-items: center;
	justify-content: start;
	cursor: pointer;
	user-select: none;
	position: relative;
	border-radius: 0.5rem;
	transition: background-color 0.2s ease;
}
.DropdownCheckbox .DropdownMenu > li::before {
	content: "";
	width: 1rem;
	height: 1rem;
	border: 1px solid var(--text-black);
	border-radius: 0.25rem;
	margin-right: 0.5rem;
	flex-shrink: 0;
}
.DropdownCheckbox .DropdownMenu > li.Checked::before {
	background-color: var(--accent-red-1);
	box-shadow: inset 0 0 0 .125rem white;
}
.DropdownMenu > li:hover {
	text-decoration: underline;
	text-underline-offset: .35rem;
	text-decoration-thickness: .075rem;
}
.Dropdown.Open .DropdownMenu {
	display: flex;
}
.DropdownToggle {
	min-width: 8rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	width: 100%;
}
.DropdownToggle > div {
	display: flex;
	flex-direction: column;
	align-items: start;
}
.DropdownToggle span {
	margin-left: .25rem;
	display: inline-block;
	width: 1rem;
	transform: rotate(90deg);
}
/* #endregion */

/* #region Navigation */
.NavButtonRow2 {
	border-top: 1px solid var(--divider-line);
}
.NavMobileMenu {
	justify-content: center;
	align-items: center;
}
#NavMobileMenuButton {
	z-index: 30;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: .5rem;
	cursor: pointer;
	height: 2rem;
}
#NavMobileMenuButton > span {
	background-color: var(--text-black);
	width: 2rem;
	height: .25rem;
	border-radius: .125rem;
	transition: ease var(--animation-speed);
}
#NavMobileMenuButton.Active > span {
	background-color: var(--text-white);
	width: 2rem;
	height: .25rem;
	border-radius: .125rem;
}
#NavMobileMenuButton.Active > span:nth-child(1) {
	transform: translateY(0.75rem) rotate(45deg);
}
#NavMobileMenuButton.Active > span:nth-child(2) {
	opacity: 0;
}
#NavMobileMenuButton.Active > span:nth-child(3) {
	transform: translateY(-0.75rem) rotate(-45deg);
}
.NavMobileOverlay {
	position: fixed;
	z-index: 20;
	inset: 0;
	background-color: var(--overlay-bg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
    overflow-y: scroll;
	transition: opacity var(--animation-speed) ease;
}
.NavMobileOverlay.Active {
	opacity: 1;
  	pointer-events: auto;
}
.NavMobileOverlay > .NavLink {
	color: var(--text-white);
	height: 4rem;
}
/* #endregion */

/* #region Floating action bar */
.StaticContainer {
	position: fixed;
	display: flex;
	width: 100%;
	bottom: 0;
	height: var(--floating-action-bar-height);
	bottom: 0;
	background-color: var(--floating-action-bar-bg);
	z-index: 10;
}
.FloatingActionBar {
	display: flex;
	justify-content: space-around;
	align-items: center;
	gap: 3rem;
}
.FloatingActionBar > a {
	display: flex;
	flex: 1;
	align-items: center;
	flex-direction: column;
	transition: ease var(--button-hover-speed);
}
.FloatingActionBar > a > .ImgDiv {
	width: 2rem;
	height: 2rem;
	background-color: var(--floating-action-bar-circle);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}
.FloatingActionBar > a > .ImgDiv > img {
	width: 1rem;
}
.FloatingActionBar > a > p {
	margin-top: .25rem;
}
@media (min-width: 1024px) {
	.StaticContainer {
		background-color: var(--floating-action-bar-desktop-bg);
	}
	.FloatingActionBar {
		color: var(--text-black);
	}
	.FloatingActionBar > a {
		flex-direction: row;
		background-color: var(--text-white);
		padding: .5rem;
		border-radius: 1rem;
		justify-content: space-between;
	}
	.FloatingActionBar > a > .Dummy {
		width: 2rem;
		height: 2rem;
	}
	.FloatingActionBar > a:hover {
		background-color: var(--text-black);
		color: var(--text-white);
	}
}
/* #endregion */

/* #region Footer */
footer {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: var(--text-black);
	color: var(--text-white);
	padding-bottom: var(--floating-action-bar-height);
}
.FooterContainer {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	gap: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.FooterCol {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
@media (max-width: 480px) {
	.FooterContainer {
		text-align: center;
	}
	.Copyright {
		text-align: center;
	}
	.FooterCol {
		gap: .25rem;
	}
}

.FooterCol h3 {
	margin-bottom: 0.5rem;
}
.FooterCol ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.FooterCol li {
    margin-bottom: 0.5rem;
}
.FooterCol li a:hover {
	text-decoration: underline;
	text-underline-offset: .35rem;
	text-decoration-thickness: .075rem;
}
.FooterCol li.LiHeader {
	color: var(--text-gray);
}
.Copyright {
	grid-column: 1 / -1;
	width: 100%;
	padding-top: 4rem;
    padding-bottom: 2rem;
	color: var(--copyright-gray);
}
/* #endregion */



/* by a4u */
.cookieInfo { padding: 10px; background: #000; color: #fff; position: fixed; z-index: 100; bottom: 0px; width: 100vw; }
.cookieInfoContainer { width: 100vw; height: 100vh; background: #00000099; position: fixed; z-index: 9999; }
.cookieInfo div { max-width: 1120px; margin: auto; }
.cookieInfo input { float: right; color: #fff; background: #333; margin-top: 30px; border: 2px solid #999; border-radius: 2px; padding: 5px; margin-right: 0px; max-width: 200px; height: 50px; }
.cookieInfo input:hover { background: #000; color: #fff; }
.cookieInfo input[type=checkbox] { height: 20px; width: 20px; float: left; margin-right: 10px; margin-top: 0px; }
.cookieOptionLine { margin-top: 10px !important }

pre { color: #000 }
.error { background: #f66; text-align: center; padding: 20px; }
.textBlock { background: #fff; color: #000; padding: 20px; }
.alert.alert-danger { background: #f66; color: #000; padding: 5px }
.SparesContactForm .formAnswer { margin-top: -16px; }
.SparesContact .formAnswer { margin-top: -16px; }
.ui-timepicker-container { z-index: 100 }

.VehicleOverlay { opacity: 1 !important;  }
section.text { background: #eee; color: #000; padding-top: 20px }
section.text > div { width: 90%; margin: auto; }
/* eof by a4u */