.site-footer {
	color: #ccc;
	font-family: var(--font);
	background-color: #45484a;
}
.footer-main {
	padding: 48px 0 38px;
}
.footer-inner {
	max-width: 1688px;
	margin: 0 auto;
	padding: 0 22px;
	display: grid;
	grid-template-columns: 260px repeat(4, 1fr);
	gap: 32px;
}
@media (max-width: 1280px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
@media (max-width: 1280px) {
	.footer-brand {
		padding: 24px 0;
		border-bottom: 1px solid #fff;
	}
}
.footer-brand-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	margin-bottom: 12px;
}
.footer-apps {
	display: flex;
	gap: 8px;
}
.footer-app-btn img {
	max-width: 100%;
	height: 31px;
}
.footer-social {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}
.footer-social-link {
	width: 38px;
	height: 38px;
	background: hsla(0, 0%, 100%, 0.1);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	transition: background var(--trans);
}
.footer-social-link img {
	max-width: 36px;
	height: auto;
}
.footer-lang {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: #ccc;
	cursor: pointer;
}
.footer-lang:hover {
	color: #fff;
}
@media (max-width: 1280px) {
	.footer-col {
		border-bottom: 1px solid #fff;
	}
}
.footer-col-toggle {
	width: 100%;
	text-align: left;
	font-size: 13.5px;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--font);
}
@media (max-width: 1280px) {
	.footer-col-toggle {
		padding: 16px 0;
	}
}
@media (min-width: 1281px) {
	.footer-col-toggle {
		pointer-events: none;
		font-weight: 700;
	}
	.footer-col-toggle .footer-caret {
		display: none;
	}
}
@media (max-width: 1280px) {
	.footer-col.open .footer-col-toggle {
		font-weight: 700;
	}
}
.footer-caret {
	transition: transform 0.2s ease;
}
.footer-caret img {
	height: 12px;
}
.footer-col.open .footer-caret {
	transform: rotate(180deg);
}
.footer-col-links {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}
@media (max-width: 1280px) {
	.footer-col-links {
		display: none;
		margin-bottom: 0;
		padding-bottom: 16px;
	}
	.footer-col.open .footer-col-links {
		display: block;
	}
}
.footer-col-links li:not(:last-child) {
	margin-bottom: 20px;
}
.footer-col-links a {
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	transition: color var(--trans);
}
.footer-col-links a:hover {
	color: var(--blue);
}
.footer-bottom {
	padding: 30px 0;
	background: #000;
}
.footer-bottom-inner {
	max-width: 1688px;
	margin: 0 auto;
	padding: 0 22px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
@media (max-width: 1280px) {
	.footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}
.footer-bottom-left {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: #fff;
}
.footer-bottom-right {
	font-size: 12px;
	text-align: right;
	color: #fff;
}
.footer-bottom-right a {
	text-decoration: none;
	transition: color var(--trans);
}
.footer-bottom-right a:hover {
	color: #fff;
}
.footer-bottom-right span {
	margin: 0 6px;
}
@media (max-width: 1280px) {
	.footer-bottom-right {
		text-align: left;
	}
}
footer {
	position: relative;
}
.lang-toggle {
	cursor: pointer;
	color: #fff;
	padding: 10px 0px;
	margin-top: 20px;
	display: inline-flex;
	gap: 5px;
	align-items: center;
}
.lang-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
	z-index: 999;
}
.lang-popup-overlay.active {
	opacity: 1;
	visibility: visible;
}
.lang-popup-overlay.active .lang-popup {
	transform: scale(1);
	opacity: 1;
	min-height: 280px;
}
.scrollLock {
	overflow: hidden;
	padding-right: 15px;
}
.lang-popup {
	position: relative;
	background: #f4f4f4;
	z-index: 99;
	padding: 30px;
	width: 400px;
	border-bottom: 6px solid var(--yellow);
	border-top: 6px solid var(--yellow);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transform: scale(0);
	opacity: 0;
	transition: 0.25s;
}
.lang-popup .select-box {
	position: relative;
	margin-bottom: 20px;
}
.lang-popup .select-box label {
	position: absolute;
	top: 8px;
	left: 15px;
	font-size: 13px;
	color: #6f6f6f;
	z-index: 9;
}
.lang-popup .select-selected {
	background: #fff;
	border: 1px solid #cfcfcf;
	border-radius: 6px;
	padding: 28px 45px 8px 15px;
	cursor: pointer;
	position: relative;
	color: #000;
}
.lang-popup .select-selected .arrow {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: url("../../../img/icons/arrow-down.svg") center no-repeat;
}
.lang-popup .select-selected.active {
	border: 2px solid #2f7185;
}
.lang-popup .select-selected.active .arrow {
	transform: translateY(-50%) rotate(180deg);
}
.lang-popup .select-list {
	position: fixed;
	width: 350px;
	background: #fff;
	border-radius: 6px;
	border: 1px solid #ddd;
	margin-top: 5px;
	overflow-y: auto;
	list-style: none;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.25s;
	z-index: 10;
	max-height: calc(100vh - 200px);
}
.lang-popup .select-list.show {
	opacity: 1;
	visibility: visible;
}
.lang-popup .select-list li {
	padding: 8px 15px;
	font-size: 16px;
	cursor: pointer;
	color: #45484a;
}
.lang-popup .select-list li:hover {
	background: #f2f2f2;
}
.lang-popup .select-list li.selected {
	background: #e6e6e6;
}
.lang-popup .lang-country-list {
	transform: scale(0);
	bottom: 0;
}
.lang-popup .lang-country-list.show {
	transform: scale(1);
}
.lang-popup .submit-btn {
	background: #000;
	color: #fff;
	padding: 17px 24px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	float: right;
	transition: 0.25s;
}
.lang-popup .submit-btn:hover {
	background: #45484a;
}
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--yellow: #fc0;
	--purple: #6b2d8b;
	--black: #000;
	--black-rgb: 0, 0, 0;
	--gray: #767676;
	--light: #f5f5f5;
	--border: #e2e2e2;
	--blue: #205d70;
	--light-black: #45484a;
	--nav-h: 80px;
	--mob-nav-h: 52px;
	--drawer-w: 320px;
	--font: "Open Sans", sans-serif;
	--radius: 6px;
	--trans: 0.18s ease;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font);
	background: #fff;
	min-height: 110vh;
}
a {
	text-decoration: none;
	color: inherit;
}
button {
	font-family: var(--font);
	cursor: pointer;
	border: none;
	background: none;
}
ul {
	list-style: none;
}
header.hertz-header {
	box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px 0px;
	background: #fff;
}
header.hertz-header .main-nav {
	height: var(--nav-h);
	display: flex;
	align-items: center;
	padding: 0 0px;
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 105;
	max-width: 1640px;
	margin: auto;
}
@media (min-width: 1280px) and (max-width: 1680px) {
	header.hertz-header .main-nav {
		max-width: 100%;
		padding: 0 20px;
	}
}
header.hertz-header .logo {
	display: inline-flex;
	flex-direction: column;
	margin-right: 40px;
	flex-shrink: 0;
}
header.hertz-header .logo img {
	height: 34px;
}
@media (max-width: 1279px) {
	header.hertz-header .logo img {
		height: 28px;
	}
}
header.hertz-header .logo-word {
	font-size: 26px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: -0.5px;
	line-height: 1;
	color: var(--black);
}
header.hertz-header .logo-bar {
	height: 3px;
	width: 48px;
	background: var(--yellow);
	margin-top: 3px;
	border-radius: 2px;
}
header.hertz-header .nav-links {
	display: flex;
	align-items: center;
	flex: 1;
	height: 100%;
	margin-bottom: 0;
}
header.hertz-header .nav-item {
	position: static;
	height: 100%;
	display: flex;
	align-items: center;
	margin-right: 32px;
	cursor: pointer;
}
header.hertz-header .nav-item:hover a {
	letter-spacing: 0px;
}
header.hertz-header .nav-item > a {
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 0 0;
	height: 100%;
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
	white-space: nowrap;
	border-bottom: 3px solid rgba(0, 0, 0, 0);
	transition:
		border-color var(--trans),
		color var(--trans);
	letter-spacing: 0px;
	margin-top: 3px;
}
header.hertz-header .nav-item:hover > a,
header.hertz-header .nav-item.open > a {
	border-bottom-color: var(--black);
	font-weight: 700;
	letter-spacing: -0.3px;
}
header.hertz-header .nav-item > a .caret {
	font-size: 9px;
	transition: transform var(--trans);
	margin-top: 1px;
}
header.hertz-header .nav-right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 0px;
	flex-shrink: 0;
	height: 100%;
}
@media (max-width: 1280px) {
	header.hertz-header .nav-right .nav-item:not(:last-child) {
		display: none;
	}
}
header.hertz-header .btn-member {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 6px 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--black);
	border-radius: var(--radius);
	transition: background var(--trans);
}
header.hertz-header .btn-member:hover {
	background: var(--light);
}
header.hertz-header .btn-member .caret {
	font-size: 9px;
}
header.hertz-header .btn-login {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	transition:
		background var(--trans),
		color var(--trans);
	border-radius: 64px;
	padding: 8px 16px;
	background-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	box-sizing: border-box;
	border: 2px solid #000;
	color: #000;
	position: relative;
	line-height: 12px;
}
header.hertz-header .btn-login svg {
	width: 16px;
	height: auto;
	flex-shrink: 0;
	fill: #767676;
}
header.hertz-header .btn-login:hover {
	text-decoration: underline;
}
header.hertz-header .mega-drop {
	position: absolute;
	background: #fff;
	border-top: 1px solid #f5f5f5;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	box-shadow:
		rgba(0, 0, 0, 0.2) 0px 3px 3px -2px,
		rgba(0, 0, 0, 0.14) 0px 3px 4px 0px,
		rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
	transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 4px;
	z-index: 850;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
	left: 0;
	right: auto;
	width: 100%;
	max-width: 95vw;
	border-radius: 0 0 8px 8px;
}
header.hertz-header .mega-drop::before {
	content: "";
	position: fixed;
	top: -8px;
	left: 0;
	right: 0;
	height: 12px;
}
header.hertz-header .nav-item:hover .mega-drop,
header.hertz-header .nav-item.open .mega-drop {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
header.hertz-header .nav-item img.caret {
	width: 10px;
	margin-left: 2px;
	border: none;
	height: auto;
}
header.hertz-header .mega-grid {
	display: grid;
	gap: 0;
	width: 100%;
}
header.hertz-header .mega-grid.c2 {
	grid-template-columns: 1fr 1fr;
}
header.hertz-header .mega-grid.c3 {
	grid-template-columns: 1fr 1fr 1fr;
}
header.hertz-header .mega-grid.c4 {
	grid-template-columns: 3fr 2fr 2fr 3fr;
}
header.hertz-header .m-col {
	padding: 0 24px;
	border-right: 1px solid var(--border);
}
header.hertz-header .m-col:first-child {
	padding-left: 0;
}
header.hertz-header .m-col:last-child {
	border-right: none;
}
header.hertz-header .m-col-label {
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gray);
	margin-bottom: 12px;
	font-weight: 600;
}
header.hertz-header .m-link-icon {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	padding: 7px 6px;
	border-radius: var(--radius);
	transition:
		background var(--trans),
		padding-left var(--trans);
	margin-bottom: 2px;
}
header.hertz-header .m-link-icon:hover {
	background: var(--light);
	padding-left: 10px;
}
header.hertz-header .m-link-icon:hover .m-title {
	color: var(--blue);
}
header.hertz-header .m-icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	color: var(--purple);
	margin-top: 1px;
}
header.hertz-header .m-icon svg {
	width: 100%;
	height: 100%;
}
header.hertz-header .m-title {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 2px;
	transition: color var(--trans);
}
header.hertz-header .m-desc {
	display: block;
	font-size: 12px;
	color: var(--gray);
	line-height: 1.45;
}
header.hertz-header .m-list a {
	display: block;
	font-size: 13.5px;
	color: var(--black);
	padding: 5px 0;
	transition:
		color var(--trans),
		padding-left var(--trans);
}
header.hertz-header .m-list a:hover {
	color: var(--blue);
	padding-left: 5px;
}
header.hertz-header .m-list li {
	margin-bottom: 1px;
}
header.hertz-header .promo-card {
	display: flex;
	align-items: center;
	background: #fff;
	overflow: hidden;
	border-bottom: 4px solid var(--yellow);
	transition:
		box-shadow var(--trans),
		border-color var(--trans);
}
header.hertz-header .promo-card:not(:last-child) {
	margin-bottom: 28px;
}
header.hertz-header .promo-thumb {
	width: 182px;
	min-height: 102px;
	height: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
}
header.hertz-header .promo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
header.hertz-header .promo-body {
	padding: 8px 16px;
	align-self: stretch;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
header.hertz-header .promo-body .promo-ttl {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #45484a;
	margin-bottom: 6px;
}
header.hertz-header .promo-body .promo-cta {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	padding-bottom: 1px;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	color: #2f7185;
	margin-top: 16px;
}
header.hertz-header .promo-body .promo-cta:hover {
	text-decoration: underline;
}
header.hertz-header .nav-item--login {
	list-style: none;
	position: relative;
	margin-right: 0;
}
header.hertz-header .nav-item--login .btn-login.logged-in-user {
	border-color: rgba(0, 0, 0, 0);
}
@media (max-width: 1279px) {
	header.hertz-header .nav-item--login .btn-login.logged-in-user {
		text-decoration: underline;
	}
}
header.hertz-header .user-drop {
	min-width: 318px;
	right: 20px;
	left: auto !important;
	padding: 20px 24px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.75) 0px 0px 10px -5px;
}
header.hertz-header .user-drop:before {
	content: "";
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	height: 20px;
}
header.hertz-header .user-drop .user-drop-inner {
	line-height: 1.4;
	color: #000;
	font-weight: 700;
	font-size: 20px;
	position: relative;
}
header.hertz-header .user-drop .user-drop-inner::before {
	content: "";
	background-color: #fff;
	position: absolute;
	top: -28px;
	right: 5px;
	transform: rotate(45deg);
	z-index: 99999;
	width: 15px;
	height: 15px;
}
header.hertz-header .hamburger {
	display: none;
}
@media (max-width: 1279px) {
	header.hertz-header .nav-links {
		display: none;
	}
	header.hertz-header .nav-right .btn-member {
		display: none;
	}
	header.hertz-header .hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 0px;
		width: 24px;
		height: 24px;
		padding: 0px;
		border-radius: var(--radius);
		margin-right: 12px;
		transition: background var(--trans);
	}
	header.hertz-header .hamburger:hover {
		background: var(--light);
	}
	header.hertz-header .hamburger span {
		display: block;
		height: 2px;
		background: var(--black);
		border-radius: 2px;
		transition:
			transform 0.25s,
			opacity 0.2s,
			width 0.2s;
		width: 100%;
	}
	header.hertz-header .hamburger.active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	header.hertz-header .hamburger.active span:nth-child(2) {
		opacity: 0;
		width: 0;
	}
	header.hertz-header .hamburger.active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
	header.hertz-header .main-nav {
		height: auto;
		padding: 8px 20px 7px;
	}
	header.hertz-header .logo {
		margin-right: 0;
	}
	header.hertz-header .logo-word {
		font-size: 20px;
	}
	header.hertz-header .logo-bar {
		width: 36px;
		height: 2.5px;
	}
}
header.hertz-header .mega-inner--book {
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 0;
}
header.hertz-header .mega-grid.book-grid {
	grid-template-columns: 58% 42%;
}
header.hertz-header .book-left {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding: 40px;
	height: max-content;
}
header.hertz-header .book-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	border-radius: var(--radius);
	transition: background var(--trans);
	text-decoration: none;
}
header.hertz-header .book-card .drop-menu-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-top: 2px;
}
header.hertz-header .book-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	color: #4a9eb5;
	margin-top: 1px;
}
header.hertz-header .book-icon svg {
	width: 100%;
	height: 100%;
}
header.hertz-header .book-card-title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 3px;
	transition: color var(--trans);
}
header.hertz-header .book-card-title:hover {
	color: var(--blue);
	text-decoration: underline;
}
header.hertz-header .book-card-desc {
	display: block;
	font-size: 14px;
	color: var(--gray);
	line-height: 1.4;
}
header.hertz-header .book-right {
	background: var(--light);
	padding: 40px 80px 40px 55px;
	border-radius: 0 0 8px 0;
}
header.hertz-header .book-right .m-col-label {
	color: rgba(var(--black-rgb), 0.8);
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 24px;
}
header.hertz-header .book-right-desc {
	font-size: 14px;
	color: rgba(var(--black-rgb), 0.8);
	line-height: 1.5;
	margin: 8px 0 14px;
}
header.hertz-header .book-right-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 8px;
}
header.hertz-header .book-right-link {
	font-size: 16px;
	margin-bottom: 0px;
	font-weight: 600;
	color: var(--black);
	text-decoration: none;
	transition: color var(--trans);
}
header.hertz-header .book-right-link:hover {
	color: var(--blue);
	text-decoration: underline;
}
header.hertz-header .book-right .locations-grid,
header.hertz-header .book-right .help-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
header.hertz-header .book-right .locations-grid .location-link,
header.hertz-header .book-right .locations-grid .help-link,
header.hertz-header .book-right .help-grid .location-link,
header.hertz-header .book-right .help-grid .help-link {
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 600;
}
header.hertz-header .book-right .locations-grid .location-link:hover,
header.hertz-header .book-right .locations-grid .help-link:hover,
header.hertz-header .book-right .help-grid .location-link:hover,
header.hertz-header .book-right .help-grid .help-link:hover {
	color: var(--blue);
	text-decoration: underline;
}
header.hertz-header .book-right .help-grid {
	grid-template-columns: repeat(2, 1fr) !important;
}
header.hertz-header .book-right .br-bottom-section {
	margin-top: 44px;
}
header.hertz-header .member-book-left {
	display: grid;
	grid-template-columns: 2fr 1fr;
}
header.hertz-header .member-left-heading {
	font-size: 28px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 16px;
	line-height: 1.3;
}
header.hertz-header .member-features-wrap {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
header.hertz-header .member-feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
header.hertz-header .member-feature .book-card-title {
	font-size: 14px;
	font-weight: 600;
	cursor: default;
}
header.hertz-header .member-feature .book-card-title:hover {
	color: var(--black);
	text-decoration: none;
}
header.hertz-header .member-car {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	justify-content: center;
}
header.hertz-header .member-car img {
	width: 280px;
	object-fit: contain;
}
header.hertz-header .member-car-link {
	font-size: 16px;
	color: var(--blue);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: gap var(--trans);
}
header.hertz-header .member-car-link svg {
	fill: var(--blue);
}
header.hertz-header .member-car-link:hover {
	text-decoration: underline;
}
header.hertz-header .member-right-links {
	display: flex;
	flex-direction: column;
	margin-top: 14px;
}
header.hertz-header .member-right-link {
	font-size: 16px;
	font-weight: 600;
	color: var(--black);
	padding: 8px 0;
	text-decoration: none;
	transition: color var(--trans);
}
header.hertz-header .member-right-link:last-child {
	border-bottom: none;
}
header.hertz-header .member-right-link:hover {
	color: var(--blue);
	text-decoration: underline;
}
header.hertz-header .user-greeting,
nav.drawer-body .user-greeting {
	font-weight: 700;
	font-size: 20px;
	line-height: 1.4;
}
header.hertz-header .user-member,
nav.drawer-body .user-member {
	margin: 0px;
	font-weight: 400;
	line-height: 1.4;
	font-family: "Open Sans", sans-serif;
	color: #45484a;
	font-size: 16px;
}
header.hertz-header ul.user-links,
nav.drawer-body ul.user-links {
	list-style: none;
	padding: 16px 0 0;
	margin: 0;
}
header.hertz-header ul.user-links li,
nav.drawer-body ul.user-links li {
	padding: 4px 0;
}
header.hertz-header ul.user-links li a,
nav.drawer-body ul.user-links li a {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	position: relative;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	background-color: rgba(0, 0, 0, 0);
	outline: 0px;
	border: 0px;
	margin: 0px;
	border-radius: 0px;
	padding: 0px;
	cursor: pointer;
	user-select: none;
	vertical-align: middle;
	appearance: none;
	color: #2f7185;
	text-decoration: none !important;
}
header.hertz-header ul.user-links li a:hover,
nav.drawer-body ul.user-links li a:hover {
	text-decoration: underline !important;
}
header.hertz-header ul.user-links li.user-divider,
nav.drawer-body ul.user-links li.user-divider {
	background-color: #e5e5e5;
	margin: 4px 0;
	padding: 0px 0;
	height: 1px;
}
.mob-drawer,
.drawer-overlay {
	display: none !important;
}
@media (max-width: 1279px) {
	.mob-drawer,
	.drawer-overlay {
		display: flex !important;
	}
	.drawer-overlay {
		display: block !important;
	}
	.top-bar {
		display: none;
	}
	.drawer-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.48);
		z-index: 1050;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.28s ease;
	}
	.drawer-overlay.visible {
		opacity: 1;
		pointer-events: auto;
	}
	.mob-drawer {
		position: fixed;
		top: 0;
		left: 0;
		width: var(--drawer-w);
		width: 100%;
		max-width: 100vw;
		height: 100%;
		background: #fff;
		z-index: 1100;
		transform: translateX(-100%);
		transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.mob-drawer.open {
		transform: translateX(0);
	}
	.drawer-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 20px 16px;
		flex-shrink: 0;
		position: sticky;
		top: 0;
		background: #fff;
		z-index: 2;
		box-shadow: inset rgba(58, 57, 57, 0.08) 3px -6px 12px 7px;
	}
	.drawer-head .drawer-logo {
		display: inline-flex;
		flex-direction: column;
	}
	.drawer-head .drawer-logo img {
		height: 28px;
	}
	.drawer-logo .logo-word {
		font-size: 19px;
	}
	.drawer-logo .logo-bar {
		width: 34px;
		height: 2.5px;
	}
	.drawer-close {
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		font-size: 18px;
		color: var(--blue);
		transition:
			background var(--trans),
			color var(--trans);
		line-height: 1;
		font-weight: 600;
	}
	.drawer-close:hover {
		background: var(--light);
		color: var(--black);
	}
	.drawer-body {
		flex: 1;
		padding: 20px;
		z-index: 1;
		background: #fff;
	}
	.d-plain {
		display: block;
		padding: 19px 0px;
		font-size: 14px;
		font-weight: 600;
		color: var(--light-black);
		border-bottom: 1px solid var(--border);
		transition: background var(--trans);
	}
	.d-plain:hover {
		background: var(--light);
	}
	.d-item {
		border-bottom: 1px solid var(--border);
	}
	.d-trigger {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 19px 0px;
		font-size: 14px;
		font-weight: 600;
		color: var(--light-black);
		text-align: left;
		transition: background var(--trans);
		background-color: #fff;
	}
	.d-trigger img {
		height: 14px;
	}
	.d-item.open .d-trigger {
		font-weight: 700;
	}
	.d-trigger .d-caret {
		font-size: 10px;
		color: var(--gray);
		transition: transform 0.2s;
	}
	.d-item.open .d-trigger .d-caret,
	.d-item.open .d-trigger img {
		transform: rotate(180deg);
	}
	.d-panel {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.28s ease;
	}
	.d-item.open .d-panel {
		max-height: 800px;
	}
	.d-section {
		padding: 2px 0;
	}
	.d-section-label {
		display: block;
		line-height: 1.4;
		text-transform: uppercase;
		font-weight: 600;
		font-size: 12px;
		letter-spacing: 1.2px;
		color: var(--light-black);
		padding: 10px 16px 4px 0;
	}
	.d-sub-link {
		display: block;
		padding: 9px 16px;
		font-size: 14px;
		color: var(--light-black);
		transition:
			background var(--trans),
			color var(--trans);
	}
	.d-sub-link:first-child {
		padding-top: 0;
	}
	.d-sub-link:hover {
		color: var(--blue);
		border-left-color: var(--yellow);
	}
	.mega-drop {
		display: none !important;
	}
	.btn-login {
		padding: 12px 16px;
		font-size: 14px;
	}
}
.demo-body {
	max-width: 860px;
	margin: 40px auto;
	padding: 28px 24px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	text-align: center;
	color: var(--gray);
	font-size: 14px;
	line-height: 1.8;
}
.demo-body h2 {
	font-size: 17px;
	color: var(--black);
	margin-bottom: 8px;
}
.badge {
	display: inline-block;
	background: var(--yellow);
	color: var(--black);
	font-size: 11px;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 12px;
	margin: 4px 3px;
}
aside.mob-drawer.user-drawer {
	transform: translateX(100%);
	left: auto;
	right: 0;
	max-width: 318px;
}
aside.mob-drawer.user-drawer.open {
	transform: translateX(0);
}
aside.mob-drawer.user-drawer.open .drawer-close {
	background: var(--light);
	color: var(--black);
	width: 36px;
	height: 36px;
}
aside.mob-drawer.user-drawer .drawer-body {
	padding: 8px 16px;
}
aside.mob-drawer.user-drawer .drawer-head {
	justify-content: end;
	box-shadow: none;
	padding-bottom: 0;
	padding: 20px 24px 0;
}
aside.mob-drawer.user-drawer .d-section {
	padding-left: 0;
	padding-top: 10px;
}
aside.mob-drawer.user-drawer .d-section li {
	padding: 0 0;
}
aside.mob-drawer.user-drawer .d-section .d-sub-link {
	color: var(--blue);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	padding: 5px 16px 5px 0px;
}
aside.mob-drawer.user-drawer .d-section .d-sub-link:hover {
	background: rgba(0, 0, 0, 0);
	color: var(--blue);
	border-left-color: rgba(0, 0, 0, 0);
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	.booking-widget-ev-section.bw-home.mob-open {
		z-index: 999;
	}
}

.select-countryoutr .toggle-box {
	left: 0;
}

#dynamicLangSelector {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#dynamicLangSelector * {
	visibility: visible !important;
}

@media (max-width: 767px) {
	#dynamicLangSelector {
		display: block !important;
		width: 100% !important;
		margin-top: 20px !important;
	}

	.select-countryoutr {
		display: block !important;
		width: 100% !important;
		position: relative !important;
	}

	#selectedCountryInfo {
		display: flex !important;
		align-items: center !important;
	}

	#toggle_langauge {
		display: flex !important;
		align-items: center !important;
		gap: 2px !important;
	}

	#toggle_langauge span {
		display: inline-block !important;
		color: #fff !important;
		visibility: visible !important;
		opacity: 1 !important;
		font-size: 14px !important;
	}

	.toggle-box {
		position: relative !important;
		display: none;
		width: 100% !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 99999 !important;
	}
}

.toggle-box {
	display: none;
}

#toggle_langauge {
	display: flex;
	align-items: center;
	gap: 2px;
	color: #fff;
	text-decoration: none;
}

body.lang-popup-open::after {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);

	z-index: 9999998;

	pointer-events: none;
}

#dynamicLangSelector,
.select-countryoutr,
#selectedCountryInfo {
	position: relative;
}

.toggle-box.show-popup {
	display: block !important;
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;

	width: calc(100% - 32px);
	max-width: 420px;
	max-height: 80vh;
	overflow-y: auto;

	background: #f4f4f4;
	padding: 20px;

	border-radius: 12px;
	border-top: 6px solid var(--yellow);
	border-bottom: 6px solid var(--yellow);

	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);

	z-index: 9999999 !important;
}

.floating-select{
    position:relative;
    margin-bottom:18px;
}

.floating-select .field-label{
    position:absolute;
    top:-8px;
    left:14px;
    background:#fff;
    padding:0 6px;
    font-size:11px;
    font-weight:600;
    color:#666;
    z-index:2;
    text-transform:uppercase;
}

.floating-select select{
    width:100%;
    height:52px;
    padding:0 14px;
    border:1px solid #d6d6d6;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    color:#111;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

.floating-select::after{
    content:"▼";
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    font-size:11px;
    color:#666;
    pointer-events:none;
}

#selectedCountryInfo a,
#selectedCountryInfo a span{
    color:#fff;
}

#selectedCountryInfo .drop-arrow::before{
    content:"▼";
    color:#fff;
    display:inline-block;
}

#selectedCountryInfo {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left: 25px;

	position: relative;

	filter: brightness(0) invert(1);

	background-image: url(../../../img/icons/globe.webp);
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: left center;
}

.drop-arrow::before{
    content:"▼";
    color:#fff;
    display:block;
    line-height:1;
}

@media (max-width: 767px) {
	.toggle-box.show-popup {
		width: calc(100% - 24px) !important;

		max-width: none !important;

		left: 12px !important;
		right: 12px !important;

		transform: translateY(-50%) !important;

		margin: 0 auto;
	}
}

@media (max-width: 1024px) {
    .select-countryoutr {
        display: block !important;
    }
}

/*# sourceMappingURL=header-footer.css.map */
