* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

:root {
	--orange: #FFB068;
	--blue: #1976D2;
	--light-blue: #D8EDFE;
	--light-gray: #737373;
	--transition-duration: 500ms;
	--transition-easing: ease-out;
}

body {
	max-width: 450px;
	margin: 0 auto;
	background-color: #FFFFFF;
	color: #000000;
	font-size: 16px;
}

.content-wrapper {
	padding: 20px;
}

h2 {
	font-size: 24px;
	font-weight: 700;
}

hr {
	margin: 20px 0;
	background-image: unset;
	border: revert;
	height: unset;
}

.text-centered {
	text-align: center;
}


/* ============= Header ============= */

/* Header styles - updated to support both layouts */
.header {
	padding-bottom: 20px;
}

.header.centered {
	text-align: center;
	padding: 30px 0;
	justify-content: center;
}

/* Flexible header layout */
.header.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Original large centered logo */

.header.centered .logo-container {
	flex-direction: column;
}

.header.centered .logo-circle {
	width: 120px;
	height: 120px;
	margin: 0 auto 20px;
}

/* Smaller logo for flex header */
.header.flex .logo-circle {
	width: 40px;
	height: 40px;
	margin-right: 15px;
}

.logo-text {
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	/*text-transform: uppercase;*/
}

.header.centered .logo-text {
	text-align: center;
	line-height: normal;
}


/* ============= Parking Lot Info ============= */

/* Map and location styles */
.map-container {
	max-height: 150px;
	display: flex;
	background-color: #D9D9D9;
	position: relative;
	border-radius: 10px;
	margin: 0 auto;
	overflow: hidden;
}

.map-container img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.map-pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
}

.location-info {
	padding: 20px 0 0;
}

.garage-name {
	font-size: 28px;
	/*font-weight: bold;*/
	margin-bottom: 5px;
}

.garage-address {
	color: var(--light-gray);
	font-size: 18px;
	margin-bottom: 5px;
}

.garage-rate .price {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 5px;
}

.garage-rate .tax {
	font-size: 14px;
	color: var(--light-gray);
	padding-left: 5px;
}

.change-lot {
	text-align: right;
	color: var(--light-gray);
	text-decoration: none;
	font-size: 18px;
	display: block;
	margin-bottom: 20px;
}

/* ============= Time Duration ============= */

.time-selector {
	/*padding: 20px;*/
	text-align: center;
}

/* Time wheel styles */
.time-wheel-container {
	position: relative;
	height: 210px;
	margin: 0 auto;
	overflow: hidden;
}

.time-wheel-mask {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background: linear-gradient(
			to bottom,
			rgba(255, 255, 255, 0.9) 0%,
			rgba(255, 255, 255, 0) 25%,
			rgba(255, 255, 255, 0) 75%,
			rgba(255, 255, 255, 0.9) 100%
	);
	z-index: 2;
}

.time-wheel-highlight {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 60px;
	transform: translateY(-50%);
	background-color: rgba(238, 238, 238, 0.4);
	border-top: 1px solid #D9D9D9;
	border-bottom: 1px solid #D9D9D9;
	pointer-events: none;
	z-index: 1;
}

.time-wheel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-y: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
	transition: transform 0.3s ease;
	padding: 75px 0;
}

.time-wheel::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

.time-option {
	font-size: 36px;
	color: #D9D9D9;
	margin: 10px 0;
	line-height: 40px;
	height: 50px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.15s ease;
}

.time-option.small-font {font-size: 22px;}
.time-option.active {font-size: 52px;color: #000000;font-weight: 500;}
.time-option.small-font.active {font-size: 28px;}

/* Toggle Switch Styles */
.toggle-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.toggle-container.hidden{display: none;}

.toggle-option {
	font-size: 16px;
	color: var(--light-gray);
	margin: 0 10px;
}

.toggle-option.active {
	color: #000000;
	font-weight: 500;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 30px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--blue);
	transition: .4s;
	border-radius: 34px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .toggle-slider {
	background-color: var(--orange);
}

input:checked + .toggle-slider:before {
	transform: translateX(30px);
}

/* ============= Buttons + Links ============= */

a {
	text-decoration: none;
	font-size: 16px;
}

a:hover, a:focus {
	color: var(--blue);
}

/* Button styles */
.formBtn.primary-btn,
.primary-btn {
	background-color: var(--orange);
	color: #000000;
	border: 2px solid var(--orange);
	border-radius: 25px;
	padding: 12px 0;
	font-size: 20px;
	font-weight: 500;
	width: 100%;
	cursor: pointer;
	margin: 0;
	text-align: center;
	box-sizing: border-box;
}

.formBtn.primary-btn:hover,
.formBtn.primary-btn:focus,
.primary-btn:hover,
.primary-btn:focus {
	background-color: #F68D2E;
	color: revert;
}

.formBtn.secondaryBtn,
.formBtn.secondary-btn,
.secondaryBtn{
	background-color: transparent;
	color: #000000;
	border: 2px solid var(--orange);
	border-radius: 50px;
	padding: 12px 0;
	font-size: 18px;
	font-weight: 500;
	width: 100%;
	cursor: pointer;
	margin: 0;
	text-align: center;
}

.formBtn.secondaryBtn:hover,
.formBtn.secondaryBtn:focus,
.secondaryBtn:hover,
.secondaryBtn:focus {
	background-color: #EEEEEE;
	color: revert;
}

.back-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.back-arrow {
	font-size: 20px;
	font-weight: bold;
}

/* Action buttons container */
.action-buttons, .button-container {
	display: flex;
	flex-direction: column;
	margin-top: 10px;
	gap: 15px;
	/*padding: 0 20px;*/
}

/* ============= Verification ============= */

.verification-container {
	/*padding: 0 20px;*/
	margin-top: 30px;
}

.verification-title {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}

.verification-subtitle {
	color: var(--light-gray);
	font-size: 16px;
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.4;
}

.code-inputs {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.code-input {
	width: 50px;
	height: 60px;
	border: 1px solid #D9D9D9;
	border-radius: 12px;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	background-color: #FFFFFF;
	color: #000000;
}

.code-input:focus {
	border-color: #FFB068;
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 176, 104, 0.2);
}

.resend-link {
	color: var(--blue);
	display: inline-block;
	margin-top: 10px;
}

.resend-link:hover {
	text-decoration: underline;
}

/* ============= Payments ============= */

.switch-account-info {
	text-align: center;
	font-size: 0.9rem;
	color: #000000;
	margin-bottom: 20px;
}
.switch-account-info.hidden{display: none;}
.switch-account-info:hover{
	cursor: pointer;
	text-decoration: underline;
	color: var(--blue);
}

.disclaimer {
	font-size: 14px;
	color: var(--light-gray);
	text-align: left;
	margin-top: 10px;
}

.disclaimer.text-centered {
	text-align: center;
}

.disclaimer a {
	color: #333333;
	text-decoration: underline;
	font-size: revert;
}

.disclaimer a:hover {
	color: var(--blue);
	cursor: pointer;
}

/* ============= Steps in the Process ============= */

/* Step indicator styles */
.step-indicator {
	text-align: center;
	margin: 20px 0 40px;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.step-text {
	font-size: 24px;
	color: var(--light-gray);
	display: grid;
	width: fit-content;
	grid-template-columns: 6ch 1fr;
	gap: 10px;
}

.step-text span:nth-child(2n+1){justify-self: flex-end;}
.step-text span:nth-child(2n){justify-self: flex-start;}

.step-text span.previousStep {font-size: 16px;}
.step-text span.step-highlight.previousStep:after {
	content: '\f044';
	font-family: 'FontAwesome';
	padding-left: 5px;
	color: #aaaaaa;
}
.step-text span.step-highlight.previousStep:hover,
.step-text span.step-highlight.previousStep:hover:after {
	cursor: pointer;
	color: var(--blue);
}
.step-highlight {
	color: #000000;
	font-weight: 500;
}

/* ============= Icons ============= */

.menu-icon {
	width: auto;
	height: 30px;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.menu-icon:hover, .menu-icon:focus {
	color: var(--blue);
}

.menu-line {
	height: 5px;
	width: 100%;
	background-color: var(--light-gray);
	border-radius: 3px;
}

.location-icon {
	font-size: 40px;
	margin-top: 30px;
	color: var(--blue);
}

.vehicle-icon {
	display: block;
	width: 60px;
	height: 50px;
	margin: 20px auto;
	fill: var(--blue);
}

.camera-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	cursor: pointer;
}

/* ============= Forms ============= */

.form-container {
	/*padding: 0 20px;*/
	margin-top: 40px;
}

.form-title {
	font-size: 20px;
	margin-bottom: 30px;
	padding-left: 20px;
}

.input-container {
	margin-bottom: 20px;
	position: relative;
}
.input-container.hidden{display: none;}

/* Phone input styles */
.phone-input-container {
	position: relative;
}

.phone-prefix {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #000000;
	font-size: 18px;
	z-index: 1;
	pointer-events: none;
	display: none;
}
.phone-prefix.active {display: block;}

.phone-input {
	padding-left: 45px !important; /* Extra space for the +1 prefix */
}

section.block.long .longBlock.formInput input[type='text'].text-input,
section.block.long .longBlock.formInput input[type='password'].text-input,
.loginBox #email,
.loginBox #userPin,
.loginBox #password,
.text-input {
	width: 100%;
	padding: 15px 20px;
	font-size: 18px;
	border: 1px solid #dddddd;
	border-radius: 50px;
	outline: none;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
	background-color: #FFFFFF;
}

.loginBox #email_label,
.loginBox #userPin_label,
.loginBox #password_label
{display: none;}

/* Checkbox styles */
.checkbox-container {
	display: flex;
	align-items: center;
	margin: 30px 0 30px 20px;
}

.custom-checkbox {
	width: 25px;
	height: 25px;
	border: 1px solid #D9D9D9;
	border-radius: 5px;
	margin-right: 15px;
	cursor: pointer;
}

.checkbox-label {
	font-size: 18px;
	cursor: pointer;
}


/* ============= Plate Dropdown ============= */
#plateNumber-searchResult:popover-open { box-shadow: 1px 1px 4px #333; }
#plateNumber-searchResult > div { padding: 15px; }
#plateNumber-searchResult > div:hover:not(.noLink) { background-color: var(--light); }


/* ============= Popups ============= */

/* Save Vehicle Popup Modal CSS */
.popUpBox {
	display: none;
	position: fixed;
	top: 20px;
	width: 90%;
	max-width: 420px;
	margin-right: calc((100vw - min(420px, 90%))/2);
	margin-left: calc((100vw - min(420px, 90%))/2);
	padding: 30px 20px;
	min-height: auto;
	max-height: auto;
	background-color: #fff;
	z-index: 7;
	font-size: 16px;
	box-sizing: border-box;
	border: none;
	overflow-y: auto;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.popUpBox .header-wrapper {
	align-items: center;
}

.popUpBox.active {
	display: block;
}

.popUpBox .head:not(.formRow) {
	font-size: 24px;
	font-weight: bold;
	padding: 0;
	margin: 0 0 20px 0;
	height: auto;
	line-height: 1.3;
	display: block;
}

.popUpBox p {
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.5;
	color: #000;
}

/* Button styling */
.popUpBox .btn {
	display: block;
	width: 100%;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 25px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	text-align: center;
	border: 2px solid transparent;
}

.popUpBox .btn-primary {
	background-color: #FFB068;
	color: #000;
	border: none;
}

.popUpBox .btn-secondary {
	background-color: #fff;
	color: #000;
	border: 2px solid #ccc;
}

/* Remove close button and replace with button actions */
.popUpBoxCloseBtn {
	display: none;
}

/* Specific styles for vehicle save popup */
.vehicle-save-popup .head:not(.formRow) {
	margin-bottom: 10px;
}

.popUpBox#getModalAddPaymentMethod {
	max-width: 500px;
	margin-right: calc((100vw - min(500px, 90%)) / 2);
	margin-left: calc((100vw - min(500px, 90%)) / 2);
}


/* ============= Time Remaining ============= */

.time-remaining-title {text-align: center; font-size: 32px;font-weight: 600;margin: 40px 0 30px;}
.active-session-title,
.extend-session-title {
    display: flex; margin: 0 0 10px; justify-content: space-between; align-items: center; flex-direction: column; gap: 5px;
    h1{text-align: center; font-size: 28px; margin: 0;}
    span{font-size: 18px; margin: 0; color: var(--light-gray);}
}
.active-session-title span {color: #68c16e;}

.timer-display {
	text-align: center;
	margin: 40px 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
}

.timer-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.timer-digits {
	font-size: 100px;
	font-weight: 500;
	line-height: 1;
}

.timer-label {
	font-size: 24px;
	color: var(--light-gray);
}

.timer-separator {
	display: inline-block;
	margin: 0 10px;
	font-size: 80px;
	font-weight: bold;
	line-height: 1;
}

#ext-active-session .location-info {margin-top: 30px;}
#ext-active-session .location-info.extentSession {margin-top: 0;}


/* ============= Client Account ============= */

#ext-client-account .formBtn {
	background-color: var(--orange);
	color: #000000;
	border: 2px solid var(--orange);
	border-radius: 25px;
	padding: 8px 0;
	font-size: 16px;
	font-weight: 500;
	width: fit-content;
	min-width: 150px;
	cursor: pointer;
	margin: 20px 0 0 0;
	text-align: center;
	box-sizing: border-box;
}

#ext-client-account .searchInputWrapper {
	background-color: var(--superUltraLight);
	border: 1px solid var(--midtone);
	padding: 8px 12px;
	border-radius: 5px;
}

.searchResult[popover] { position: fixed; }

/* Vehicles List Styles */
.info-container {
	padding: 10px;
	margin: 10px 0 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px #cccccc;
}

.vehicles-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.vehicles-title {
	font-size: 24px;
	font-weight: bold;
}

.add-new-btn {
	color: var(--blue);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.add-icon {
	margin-right: 5px;
	font-size: 24px;
}

/* Vehicle Card Styles */
.info-card {
	background-color: var(--light-blue);
	border-radius: 10px;
	padding: 20px;
	position: relative;
	margin-bottom: 15px;
}

.data-info {display: grid;grid-template-columns: 80px 1fr;row-gap: 10px;align-items: center;}
.data-info.activity {display: grid; grid-template-columns: 180px 1fr;row-gap: 10px;align-items: center;}

.vehicle-info-label {
	color: var(--light-gray);
	font-size: 14px;
}

.vehicle-info-value {
	font-size: 16px;
	font-weight: 500;
}

.edit-btn {position: absolute; top: 20px; right: 20px; color: var(--light-gray); background: none; border: none; cursor: pointer; /*display: flex; align-items: center; justify-content: center;*/}
.edit-btn:hover { text-decoration: underline; }
.edit-btn.local {position: relative; display: inline-block; top: 0; right: 0; margin-left: 20px;}

.edit-btn.remove-btn{right: 70px;}

.edit-icon {
	width: 24px;
	height: 24px;
}

.payment-methods {
	margin: 10px 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	flex-direction: column;
	gap: 20px;
	justify-items: center;
}

.payment-card {
	display: flex;
	/*align-items: center;*/
	padding: 16px;
	border: 1px solid #E0E0E0;
	border-radius: 10px;
	cursor: pointer;
	position: relative;
	width: clamp(100px, 100%, 280px);
}

.payment-card.client {flex-direction: column; width: 100%; font-size: 20px; padding: 0; border: none;}
.payment-card.client:hover {cursor: unset;}

.payment-card.client > .payment-card {
	background-color: #FFFFFF;
}

.payment-card.selected {
	border: 2px solid #FFB068;
}

.card-logo {
	width: 40px;
	height: 28px;
	background-color: #D9D9D9;
	border-radius: 4px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.visa-logo {
	background-color: #1A1F71;
	color: white;
	font-weight: bold;
	font-style: italic;
	font-size: 14px;
}

.mastercard-logo {
	background: linear-gradient(90deg, #EB001B 0%, #EB001B 50%, #F79E1B 50%, #F79E1B 100%);
}

.amex-logo {
	background-color: #006FCF;
	color: white;
	font-size: 10px;
	font-weight: bold;
}

.bank-logo {
	background-color: #4CAF50;
	color: white;
	font-size: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-info {
	flex-grow: 1;
	text-align: left;
}

.card-number {
	font-size: 16px;
	font-weight: 500;
}

.card-expiry {
	font-size: 14px;
	color: var(--light-gray);
	margin-top: 3px;
}

.delete-button {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light-gray);
	cursor: pointer;
}

.delete-button:hover {
	color: #FF5252;
}

.add-new-card {
	display: flex;
	align-items: center;
	padding: 16px;
	border: 1px dashed #D9D9D9;
	border-radius: 10px;
	cursor: pointer;
	margin-top: 10px;
}

.add-card-icon {
	width: 24px;
	height: 24px;
	background-color: #F5F5F5;
	border-radius: 50%;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	color: var(--light-gray);
}

.add-card-text {
	font-size: 16px;
	color: var(--light-gray);
}

.loading{width: 100vw; top: 0; left: 0; margin: 0; padding: 0; height: 100vh;}