:root {
	--primary-color: #0590E3;
	/* Define a variable named primary-color with the value #007bff (blue) */
	--secondary-color: #6c757d;
	/* Define a variable named secondary-color with the value #6c757d (gray) */
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}



* {
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}


.fixed-container {
	font-family: 'Roboto', sans-serif;
	background-color: #fff;
	color: #4c4c4c;
	max-width: 420px;
	height: 100%;
	margin: 0 auto;
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	/* border-bottom: 1px solid #ddd; */
	padding-bottom: 10px;
	min-height: 100vh;
	overflow: auto;
	overflow-x: hidden;
}

p, html, body {
	margin: 0 !important;
	padding: 0;
}

html, body {
	/*height: 100%;*/
	/* border-left: 1px solid #ddd;
    border-right: 1px solid #ddd; */
	/*border-bottom: 1px solid #ddd;*/
}


/* Header */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background: var(--primary-color);
	/* border-bottom: 1px solid #ddd; */
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}
.global_number{
    font-size: 0.8rem;
}
.hamburger {
	display: none;
	/* don't show the hamburger icon on wider screens */
}

/* Navigation menu for wider screens */
.site-navigation {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.site-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
}

.site-navigation-main nav a {
	display: block;
	/* padding: 30px 20px; */
	color: inherit;
	/* font-weight: bold; */
	text-decoration: none;
	text-align: center;
	transition: background-color 0.2s;
	color: white !important;
}

.site-navigation-main nav a:hover,
.site-navigation-main nav a:focus {
	/* color: #f0f0f0 !important; */
}

/* login-signu_up large screen */

.login-signu_up {
	margin-left: 15px;
}


/* Media query adjustments for narrower screens -
	 I made the breakpoint wider than usual for demo purposes */
/* @media (max-width: 899px) { */
header {
	position: relative;
	/* for anchoring .site-navigation */
	padding: 0 0 0 10px;
	z-index: 111;
}

/* Hamburger icon */
.hamburger {
	display: block;
	flex: 0 0 64px;
	margin-left: auto;
	width: 64px;
	height: 50px;
	border-radius: 0;
	border: 0;
	padding: 0;
	background: none;
	cursor: pointer;
	transition: all 0.2s;
}

.hamburger rect {
	fill: white;
	/* SVGs use "fill", not "background-color" */
	transform-origin: center center;
	/* for line transforms later */
	transition: all 0.2s;
}

.is-active #line1 {
	transform: rotate(-135deg) translate(-1px, 5px);
	fill: #fff;
}

.is-active #line2 {
	transform: rotate(-135deg) translate(-1px, -3px);
	fill: #fff;
}

.is-active #line3 {
	transform: rotate(135deg) translate(1px, -11px);
	fill: #fff;
}

/* Navigation menu */
.site-navigation {
	display: none;
	/* hide until .is-open */
	position: absolute;
	top: 100%;
	/* with absolute position, anchor to bottom of header */
	left: 0;
	right: 0;
	z-index: 11;
	background-color: white;
	border-top: 1px solid #ddd;
	/* border-bottom: 1px solid #ddd;
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.site-navigation.is-open {
	display: block;
}

.site-navigation ul {
	display: block;
	/* undo flexbox */
	margin-top: 15px;
}

.site-navigation-main nav a {
	padding: 20px;
	border-bottom: 1px solid #ddd;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border-width: initial;
	font-size: 22px;
	width: 90%;
	margin: 0 auto;
	color: black !important;
}

.site-navigation-main nav a:hover,
.site-navigation-main nav a:focus {
	border-bottom: 1px solid black;
}

.login-signu_up {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px;
	gap: 10px;
}

.login-signu_up a {
	/* color: white !important; */
	padding: 6px 35px !important;
}

.login-signu_up .register-btn {
	/* color: #0d6efd !important; */
	padding: 6px 27px !important;
}

/* } */

/* Other unrelated stuff */


.site-name {
	padding-left: 1em;
}

h1 {
	font-size: 1.4em;
	line-height: 1.2;
}

h2 {
	margin: 1.5em 0 0;
	font-size: 1.1em;
	color: #eb4;
}

p {
	padding-left: 1em;
}

main {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

footer {
	padding: 20px;
	background: black;
	color: white;
	text-align: center;
	font-size: 12px;
}

.home_main_wrapper {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.home_container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/bg2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* filter: blur(1px); */
	z-index: -1;
}


.home_container {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	/* height: 100vh; */
	/* background-color: rgba(0, 0, 0, 0.4); */
	overflow: hidden;
}

.content_wrapper {
	/* position: absolute; */
	z-index: 1;
	text-align: center;
	width: -webkit-fill-available;
	/* top: 48%;
	transform: translateY(-50%); */
}


* {
	box-sizing: border-box;
}

.datetimepicker {
	display: inline-flex;
	align-items: center;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.59);
	border-radius: 4px;
	width: 100%;
	border: 1px solid #fff;
}

.datetimepicker:focus-within {
	border-color: teal;
}

.datetimepicker input {
	/* font: inherit; */
	font-weight: 500;
	color: #000;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 0;
	background-color: transparent;
}

.datetimepicker input[type=date] {
	width: 8.5rem;
	padding: 10px 0 10px 10px;
	border-right-width: 0;
	font-size: 14px;
}

.datetimepicker input[type=time] {
	width: 8.5rem;
	padding: 0.25rem 0.5rem 0.25rem 0;
	border-left-width: 0;
	font-size: 14px;
}

.datetimepicker .show_vertical_line {
	height: 1rem;
	margin-right: 0.25rem;
	margin-left: 0.25rem;
	border-right: 1px solid #3a3a3a;
}

.info {
	padding-top: 0.5rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

.date_time_picker {
	background-color: var(--primary-color);
	padding: 15px 15px 0 15px;
	margin: 35px auto 0;
	width: 90%;
	border-radius: 10px;
	text-align: left;
}

.location-input {
	background-color: rgba(255, 255, 255, 0.4);
	border: 0;
	border-radius: 4px;
	padding: 0;
	margin: 0;
	width: 100%;
	padding: 5px;
}

.submint_date {
	display: flex;
	align-items: center;
	justify-content: center;
}

.global-container {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	flex-direction: column;
}

form {
	/* padding-top: 10px; */
	font-size: 14px;
	/* margin-top: 30px; */
}

.card-title {
	font-weight: 300;
}




.login-form {
	width: 330px;
	margin: 20px;
}

.sign-up {
	text-align: center;
	padding: 20px 0 0;
}

.alert {
	margin-bottom: -30px;
	font-size: 13px;
	margin-top: 20px;
}

.container-register h2 {
	padding-top: 1.5rem;
}

.container-register a {
	color: #333;
}

.container-register a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.container-register .card {
	border: 0.40rem solid #f8f9fa;
	top: 10%;
}

.container-register .form-control {
	background-color: #f8f9fa;
	padding: 20px;
	padding: 10px 15px;
}

.container-register .form-group {
	margin-bottom: 1rem;
}

.container-register .form-control:focus {
	color: #000000;
	background-color: #ffffff;
	border: 3px solid var(--primary-color);
	outline: 0;
	box-shadow: none;
}

.container-register .register_btn {
	padding: 0.6rem 1.2rem;
	background: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.container-register .btn-primary:hover {
	background-color: #6fb1d8;
	border-color: #6fb1d8;
	transition: .3s;
}

.sign-in a {
	color: var(--primary-color);
}

.sign-in a:hover {
	text-decoration: underline;
}


/* parking detail page` */

.parking_detail_conatainer {
	padding: 0 20px;
	/* height: 100vh; */
}

.parking_image {
	padding: 20px 0;
}

.parking_image img {
	padding: 0;
	border-radius: 7px;
}

.parking_detail_title_area p.title {
	font-size: 20px;
	padding: 0;
	font-weight: 600;
}

.parking_detail_title_area p.location {
	font-size: 16px;
	color: #6b6b6b;
	padding: 0;
}

.parking_detail_title_area p.location span {
	color: #000;
}

.ratting_price {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ratting_price p {
	padding: 0;
}

.ratting_price .price {
	color: #6b6b6b;
}

.ratting_price .price span {
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 500;
}

.icon_info {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 15px;
}

h6.discription_title, .reviews_title {
	font-weight: 500;
	font-size: 16px;
	color: #000;
}

.discription_content, .reviews_content {
	color: #6F6F6F;
	text-align: justify;
	line-height: 20px;
}


button.book_now {
	padding: 5px 10px;
	color: white;
	background: #0590E3;
	position: relative;
	border-radius: 8px;
	border: none;
}



/* basic info form */
.user_info_form_container {
	 height: 100vh; 
	padding: 50px 8px 0;
	/*position: absolute;*/
	/*width: 100%;*/
	/*top: 40%;*/
	/*transform: translateY(-50%);*/
}

.user_info_form .form-box {
	max-width: 500px;
	/* margin: auto; */
	background: #ffffff;

}

.payment_form_parent {
	position: relative;
	padding: 0 5px;
	left: 0;
	right: 0;
	/*top: 50%;*/
	/*transform: translateY(-50%);*/
}

.user_info_form input, .user_info_form textarea {
	width: 100%;
	border-radius: 8px;
}

p.user_info_title, .summery_title, .payment_form_title {
	font-weight: 500;
	font-size: 18px;
	padding: 5px 0;
	color: #000;
}

.continue_process, .proceed_to_pay {
	width: 121px !important;
	margin: auto;
	left: 50%;
	position: relative;
	transform: translateX(-50%);
	font-size: 17px;
}

.proceed_to_pay {
	width: 60% !important;
}

.user_basic_info, .summery-box, .payment_form {
	/*box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);*/
	/*padding: 10px;*/
}


p.check_in_date_title, .check_out_date_title, .check_in_time_title, .check_out_time_title {
	font-size: 14px;
	color: #7b7b7b;
	padding: 0;
}

.check_in_out_date, .check_in_out_time {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

p.check_in_date, .check_out_date, .check_in_time, .check_out_time {
	padding: 0;
	font-size: 16px;
	font-weight: 700;
}


.amount_container, .duration, .total_amount {
	display: flex;
	justify-content: space-between;
	text-align: left;
	/* padding: 0; */
}

.amount_container p, .duration p, .total_amount p {
	padding: 8px 0 0 0;
	text-align: left;
}


p.amount, .time_duration, .amount_total {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 16px;
}



.qr_scanner {
	background-image: url("../images/qr_bg.jpg");
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.select_type_section {
    background-image: url(../images/qr_bg.jpg);
    top: 50px;
    /* height: 100%; */
    background-size: cover;
    /* background-position: top center; */
    background-repeat: no-repeat;
    min-height: 688px;
    /* overflow: hidden;
}

.payment_form {
	/* margin-top: 10px; */
}

/* payment form */

.payment_form #amount {
	font-size: 14px;
}

.payment_form #amount strong {
	font-size: 14px;
}

.payment_form #card-back {
	top: 40px;
	right: 0;
	z-index: -2;
}

.payment_form #card-btn {
	background-color: #006ff5;
	color: #fff;
	border-radius: 8px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	outline: none;
	border: none;
	cursor: pointer;
	padding: 8px 16px;
	margin: 15px auto;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.payment_form #card-btn:hover {
	background-color: black;
}

.payment_form #card-cvc {
	width: 60px;
	margin-bottom: 0;
}

.payment_form #card-front,
.payment_form #card-back {
	/* position: absolute; */
	background-color: var(--primary-color);
	/* width: 390px;
	height: 250px; */
	border-radius: 6px;
	padding: 20px 30px 0;
	box-sizing: border-box;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 300;
	color: white;
}

.payment_form #card-image {
	float: right;
	height: 100%;
}

.payment_form #card-image i {
	font-size: 40px;
}

.payment_form #card-month {
	/* width: 48% !important; */
}

.payment_form #card-number,
.payment_form #card-holder {
	width: 100%;
}

.payment_form #card-stripe {
	width: 100%;
	height: 55px;
	background-color: #3d5266;
	position: absolute;
	right: 0;
}

.payment_form #card-success {
	color: #00b349;
}

.payment_form #card-token {
	display: none;
}

.payment_form #card-year {
	/* width: 48%; */
	margin-left: 3px;
	float: right;
}

.payment_form #cardholder-container {
	width: 100%;
	display: inline-block;
}



.payment_form #cvc-container label {
	width: 100%;
}

.payment_form #cvc-container p {
	font-size: 10px;
	text-transform: uppercase;
	opacity: 0.6;
	letter-spacing: .5px;
}

.payment_form #form-container {
	margin: auto;
	/* width: 500px; */
	/* height: 290px; */
	position: relative;
}

.payment_form #form-errors {
	color: #eb0000;
}

.payment_form #form-errors,
.payment_form #card-success {
	background-color: white;
	/* width: 500px; */
	margin: 0 auto 10px;
	height: 50px;
	border-radius: 8px;
	padding: 0 20px;
	font-weight: 400;
	box-sizing: border-box;
	line-height: 46px;
	letter-spacing: .5px;
	text-transform: none;
}

.payment_form #form-errors p,
.payment_form #card-success p {
	margin: 0 5px;
	display: inline-block;
}

.payment_form #exp-container {
	/* margin-left: 10px; */
	/* width: 40%; */
	/* display: inline-block; */
	/* float: right; */
	display: flex;
	flex-direction: column;
}

/* 
#cvc-container {
	float: right;
	text-align: end;
} */
.payment_bottom_info {
	display: flex;
	flex-wrap: wrap;
}

.payment_form .hidden {
	display: none;
}

.payment_form #image-container {
	width: 100%;
	position: relative;
	height: 55px;
	margin-bottom: 5px;
	line-height: 55px;
}

.payment_form #image-container img {
	position: absolute;
	right: 0;
	top: 0;
}

.payment_form input {
	border: none;
	outline: none;
	background-color: #5a9def;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	margin: 0 0 25px;
	color: white;
	font-size: 14px;
	box-sizing: border-box;
	border-radius: 4px;
	/* font-family: lato, 'helvetica-light', 'sans-serif'; */
	letter-spacing: .7px;
}

.payment_form input::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
	/* font-family: lato, 'helvetica-light', 'sans-serif'; */
	letter-spacing: 1px;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 10px;
}

.payment_form input:-moz-placeholder {
	color: #fff;
	opacity: 1;
	/* font-family: lato, 'helvetica-light', 'sans-serif'; */
	letter-spacing: 1px;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 10px;
}

.payment_form input::-moz-placeholder {
	color: #fff;
	opacity: 1;
	/* font-family: lato, 'helvetica-light', 'sans-serif'; */
	letter-spacing: 1px;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 10px;
}

.payment_form input:-ms-input-placeholder {
	color: #fff;
	opacity: 1;
	/* font-family: lato, 'helvetica-light', 'sans-serif'; */
	letter-spacing: 1px;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 10px;
}

.payment_form input.invalid {
	border: solid 2px #eb0000;
	height: 34px;
}

.payment_form .payment_form label {
	display: block;
	margin: 0 auto 7px;
}


/* select type styles */

.select_type_section .dropdown label {
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	color: #fff;
	margin: 0 5px;
}

.select_type_section .dropdown {
	min-width: 20em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.select_type_section .select {
	background: #fff;
	color: #2a2f3b;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 2px #2a2f3b solid;
	border-radius: 0.5em;
	padding-left: 1em;
	cursor: pointer;
	transition: 0.3s;
	/* padding: 1rem; */
}

.select_type_section .select-clicked {
	border: 2px #26489a solid;
	box-shadow: 0 0 0.8em #26489a;
}

.select_type_section .select:hover {
	background: #eae9e9;
}

.caret-parent {
	background: #ddd;
	padding: 1.5em;
	display: flex;
	border-radius: 0 0.5em 0.5em 0;
}

.select_type_section .caret {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 10px solid #0590E3;
	transition: 0.3s;
}

.select_type_section .caret-rotate {
	transform: rotate(180deg);
}

.select_type_section .menu {
	list-style: none;
	padding: 0.2em 0.5em;
	background: #fff;
	border: 1px #363a43 solid;
	box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
	border-radius: 0.5em;
	position: absolute;
	top: 6em;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	opacity: 0;
	display: none;
	transition: 0.2s;
	z-index: 1;
}

.select_type_section .menu a, .select_type_section .menu li {
	padding: 0.7em 0.5em;
	margin: 0.3em 0;
	border-radius: 0.5em;
	cursor: pointer;
	color: #3e4044;
	display: flex;
	text-decoration: none;
}

.select_type_section .menu a:hover, .select_type_section .menu li:hover {
	background: var(--primary-color);
	text-decoration: none;
}

.select_type_section .menu-open {
	display: block;
	opacity: 1;
}

.ui-timepicker-container {
	position: absolute;
	overflow: hidden;
	box-sizing: border-box
}

.ui-timepicker,
.ui-timepicker-viewport {
	box-sizing: content-box;
	height: 205px;
	display: block;
	margin: 0
}

.ui-timepicker {
	list-style: none;
	padding: 0 1px;
	text-align: center
}

.ui-timepicker-viewport {
	padding: 0;
	overflow: auto;
	overflow-x: hidden
}

.ui-timepicker-standard {
	font-size: 12px;
	font-family: sans-serif;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border-radius: 0 0 3px 3px;
	box-shadow: 0 0 0 .75px #bbb, 2px 1.5px 3px rgba(0, 0, 0, .16);
	margin: 0;
	padding: 0;
}

.ui-timepicker-standard a {
	display: block;
	background: transparent;
	filter: none;
	border: none;
	width: 100%;
	text-align: left;
	border-radius: 0;
	font-size: 11.5px;
	padding: 5px 10px;
	line-height: 18px;
	white-space: nowrap;
	text-decoration: none;
	color: inherit;
}

/*Note: do not delete - breaks arrow keys (wut wut) */
.ui-timepicker-standard .ui-state-hover {
	box-shadow: none;
	border: none;
	text-decoration: none;
	background-color: #555;
	color: #fff;
}

.ui-timepicker-standard .ui-menu-item {
	margin: 0;
	padding: 0
}

.ui-timepicker-hidden {
	display: none
}

.ui-timepicker-no-scrollbar .ui-timepicker {
	border: none
}


/* hote guest css */

.shuttle_form_container {
	height: 100vh;
	padding: 30px 20px;
}

p.shuttle_title, .customer_info {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	text-align: left;
	margin-bottom: 5px;
	padding: 0;
}

.shuttle_form label {
	color: #8A8A8A;
	font-weight: 500;
	font-size: 14px;
	margin: 3px 0;
}

.reservation_number label, .license_plate_no label {
	font-size: 18px;
}

.continue_shuttle, .request_shuttle {
	display: flex;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 55px !important;
}

.input-container {
	/* position: relative; */
	display: flex;
	align-items: center;
	width: 50%;
}

.input-container .material-symbols-outlined {
	font-size: 22px !important;
	padding: 0 5px;
}

.input-container input {
	height: 35px;
	font-size: 14px;
	width: 100px;
}


span.optional {
	font-size: 12px;
	color: #aaa;
}


/* extra forms styles */

.form-group {
	padding: 0 0;
}



input.payment_total_card_head {
	width: 30%;
	line-height: unset !important;
	background: none;
	margin: 0;
	padding: 0;
	color: #000;
	border: none !important;
}


.payment-success-title {
	font-size: 18px;
	text-align: center;
	font-weight: 500;
	color: var(--primary-color);
	;
}


#ui-datepicker-div {
	/* width: 100%; */
	max-width: 73%;
}