@charset "UTF-8";

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #fff;
}

* {
	box-sizing: border-box;
}

.input-date, .input-time {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.web-con {
	padding: 0 15px;
}
label.dt {
    color: #2f2a2a;
}
img.logo-con {
	width: 165px;
	height: auto;
}

.top-bar {
	background: #000;
	color: #fff;
	padding: 2px 10px;
}

.top-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.top-section p {
	font-size: 17px;
}
/*Header*/
.banner-outer {
	margin: 0;
	width: 100%;
	display: inline-block;
}

.heading-con p {
	text-align: center;
	font-size: 36px;
	line-height: 30px;
}

.heading-con h1 {
	font-size: 65px;
	line-height: 60px;
	text-align: center;
}

p.later-con {
	font-size: 40px;
	line-height: 20px;
}
/*banner-outer*/
/*navigation*/
ul.nav-con {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

ul.nav-con li a {
	text-decoration: none;
	text-transform: uppercase;
	color: #000;
	font-size: 17px;
	font-weight: bold;
}

ul.sub-menu ul.nav-con li ::after {
	content: "";
	width: 5px;
	height: 5px;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	position: absolute;
	rotate: -45deg;
	right: -8px;
	top: 5px;
}

#header .main_nav a {
	color: #024186;
	display: block;
	padding: 0.2em 0.7em 0.7em 0.7em;
}

.menu-item-has-children a {
	padding-right: 1em !important;
}

ul.nav-con li {
	position: relative;
}

ul.sub-menu {
	position: absolute;
	background: #e92130;
	width: 150px;
	padding: 5px;
	border-top: 1px solid #fff;
	display: none;
}

ul.nav-con li:hover ul.sub-menu {
	display: block;
}

ul.sub-menu li {
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 5px 0 !important;
	display: inline-block;
}
/*logo Section*/
.logo-con {
	display: inline-block;
	padding-top: 10px;
}

img.logo-box {
	width: 45px;
	padding-left: 5px;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.booking-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
}

.booking-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
}

#form-group {
	position: relative;
	margin-bottom: 7px;
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding-right: 5px;
	padding-left: 10px;
	background: #d7d5d5;
	height: 50px;
}

#form-group input {
	flex: 1;
	padding: 12px;
	font-size: 16px;
	border: none;
	outline: none;
	border-radius: 5px;
	background: #d7d5d5;
}

#form-group button {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: grey;
}

#form-group i {
	color: #FFF;
	font-size: 16px;
	margin-right: 8px;
}

#toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
}

.toast {
	background-color: #333;
	color: #fff;
	padding: 12px 20px;
	margin-bottom: 10px;
	border-radius: 5px;
	font-family: sans-serif;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateY(-20px);
	animation: slideIn 0.4s forwards;
}

@keyframes slideIn {
	to { 
	opacity:1;
	transform: translateY(0);
}

}
.suggestions-list {
	font-size: 14px;
	top: 100%;
	left: 0;
	width: 90%;
	position: absolute;
	z-index: 1000;
	background: white;
	border: 1px solid #ccc;
	border-radius: 5px;
	max-height: 200px;
	overflow-y: auto;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	list-style: none;
	display: none;
}

.suggestions-list li {
	padding: 9px 9px;
	cursor: pointer;
	font-size: 14px;
}

.suggestions-list li:last-child {
	border-bottom: none;
}

.suggestions-list li:hover {
	background: #f4f4f4;
}

.next-btn {
	width: 100%;
	padding: 0;
	background: #df0024;
	color: white;
	border: none;
	border-radius: 25px;
	font-size: 22px;
	cursor: pointer;
	height: 50px;
	font-weight: 800;
}

.plus {
	padding: 0;
	background-color: #df0024;
	border-radius: 50%;
	display: flex;
	color: white !important;
	width: 24px;
	height: 25px;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}

.btn {
	flex: 1;
	padding: 15px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
}

.btn-primary {
	display: inline-block;
	background: #dadada;
	color: #000;
	padding: 20px 33px;
	border-radius: 40px;
	text-decoration: none;
	font-size: 22px;
	font-weight: bold;
}

.btn-secondary {
	display: inline-block;
	background: #df0024;
	color: #fff;
	padding: 20px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
}

.call-btn {
	display: inline-block;
	background: #df0024;
	color: #fff;
	padding: 24px;
	border-radius: 50%;
	border: 0;
}

input#appt {
	width: 190px;
	border: 1px solid #d5d5d5;
	border-radius: 4px;
	background: #fff;
	font-size: 17px;
}

.loader {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: block;
	margin: 15px auto;
	position: relative;
	color: #808080;
	left: -100px;
	box-sizing: border-box;
	animation: shadowRolling 2s linear infinite;
}

.btn-con {
	padding-top: inherit;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
}

a.btn-now {
	display: inline-block;
	background: #df0024;
	color: #fff;
	padding: 15px 45px;
	border-radius: 40px;
	text-decoration: none;
	font-size: 22px;
	font-weight: bold;
}

a.btn-schedule {
	display: inline-block;
	background: #dadada;
	color: #000;
	padding: 15px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 20px;
}

a.btn-call {
	background: #df0024;
	color: #fff;
	border-radius: 50%;
	height: 53px;
	width: 53px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.width-con {
	width: 100%;
}

input#timeInput {
	width: 100%;
	background: #d7d5d5;
	border-radius: 10px;
	border: 0;
	padding: 15px;
}

.main-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	gap: 0;
	max-width: 460px;
	padding: 20px;
	margin: 0 auto;
}

.date-time-con {
	display: flex;
	margin: 0 0 10px 0;
	width: 100%;
	gap: 10px;
	height: 70px;
	justify-content: space-between;
}

input#calendarInput {
	width: 100%;
	border: 1px solid #d5d5d5;
	border-radius: 10px;
	font-size: 17px;
	background: #d7d5d5;
	padding: 15px;
	border: 0;
}

input#appt {
	width: 190px;
	border: 1px solid #d5d5d5;
	border-radius: 4px;
	background: #fff;
	font-size: 17px;
}

.loader {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: block;
	margin: 15px auto;
	position: relative;
	color: #808080;
	left: -100px;
	box-sizing: border-box;
	animation: shadowRolling 2s linear infinite;
}

.btn-con {
	padding-top: inherit;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0;
}

a.btn-now {
	display: inline-block;
	background: #dadada;
	color: #000;
	padding: 15px 45px;
	border-radius: 40px;
	text-decoration: none;
	font-size: 20px;
	font-weight: normal;
}

a.btn-schedule {
	display: inline-block;
	background: #df0024;
	color: #fff;
	font-weight: bold;
	padding: 15px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 20px;
}

a.btn-call {
	background: #df0024;
	color: #fff;
	border-radius: 50%;
	height: 53px;
	width: 53px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.width-con {
	width: 100%;
}

.main-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	gap: 0;
	max-width: 460px;
	padding: 20px;
	margin: 0 auto;
}

input#appt {
	width: 190px;
	border: 1px solid #d5d5d5;
	border-radius: 4px;
	background: #fff;
	font-size: 17px;
}

.fa-chevron-down:before {
	content: "\f078";
	position: relative;
	right: -35px;
	top: 7px;
}

.cart-con {
	width: 100%;
	display: inline-block;
	margin-top: 100px;
}
.image-con {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
}
.image-con p {
	font-size: 20px;
}

.booking-con p {
	font-size: 17px;
	color: #656363;
	padding-top: 20px;
	text-align: center;
	align-items: center;
}

.box-con {
	text-align: center;
}

a.return-pickup-con {
	text-align: center;
	padding: 20px 20px;
	background: #4d4d4d;
	display: inline-block;
	border-radius: 10px;
	font-size: 17px;
	color: #fff;
	text-decoration: none;
}

a.view-cart {
	text-decoration: none;
	color: #fff;
	background: #000;
	padding: 15px 20px;
	border-radius: 25px;
	font-size: 17px;
}

.view-cart-con {
	text-align: center;
	margin-top: 40px;
}

/* footer-con*/
footer {
	display: inline-block;
	width: 100%;
	margin-top: 100px;
	background: #f3f3f7;
	padding: 30px 15px;
}

.footer-con {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 30px;
}

.footer-logo p {
	color: #656363;
	font-size: 14px;
}

.quick-link ul, .important-link ul {
	list-style: none;
	padding-top: 10px;
	margin: 0;
	padding-left: 0;
}

.quick-link ul li a, .important-link ul li a {
	text-decoration: none;
	color: #656363;
	font-size: 14px;
}

.testimonials-con p, .testimonials-con span {
	width: 100%;
	color: #656363;
	font-size: 14px;
}

.important-link, .quick-link {
	width: 100%;
}

.footer-logo {
	width: 100%;
}

p.managing {
	display: inline-block;
	font-size: 13px;
	color: #656363;
}

.testimonials-con strong {
	font-size: 12px;
}

.copy-right-con {
	display: inline-block;
	width: 100%;
	margin: 0;
	background: #3a3a3a;
	color: #fff;
	padding: 0 15px;
}

.copyright-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.copyright-inner p {
	font-size: 17px;
}

.footer-logo img {
	width: 170px;
	height: auto;
}

.footer-con h3 {
	margin: 0;
}

.icon {
	display: none !important;
	position: absolute;
	right: 0px;
	top: 15px;
	width: 40px;
	height: 40px;
	padding: 0 !important;
}

.icon i {
	width: 100%;
	height: 3px;
	background: #000;
	display: block;
	margin-top: 19px;
}

.icon::after {
	content: "";
	width: 100%;
	display: block;
	height: 3px;
	position: absolute;
	background: #000;
	top: 7px;
}

.icon::before {
	content: "";
	width: 100%;
	display: block;
	height: 3px;
	position: absolute;
	background: #000;
	bottom: 6px;
}

a.icon:focus {
	background: none !important;
}
.date-time-con label 
{
	display:none;
}
.date-time-con .select-date 
{
    width: 100%;
}
p#status {
    position: absolute;
    top: 109px;
    margin: 0;
    font-size: 13px;
    right: 27px;
}
.main-container
 {
    position: relative;
}
.width-con 
{
    margin-top: 15px;
}
.container
{
	max-width:1100px;
	width:100%;
	margin:0 auto;
}
@media screen and (max-width: 767px) {
	.btn-con {
		gap: 0;
	}
	a.btn-now {
		padding: 12px 35px;
	}
	a.btn-schedule {
		padding: 13px 17px;
		font-size: 17px;
	}
	a.btn-call {
		height: 48px;
		width: 48px;
	}
	.fa-chevron-down:before {
		left: 28px;
	}
	.date-time-con label 
	{
	display:block;
    width: 100%;
    color: #000;
    font-size: 12px;
    padding-left:10px;
	}
}

@media screen and (max-width: 354px) {
	.btn-con {
		gap: 10px;
		flex-flow: row;
	}
	a.btn-now {
		padding: 15px 40px;
		font-size: 13px;
	}
	a.btn-schedule {
		padding: 16px 17px;
		font-size: 13px;
	}
	a.btn-call {
		height: 45px;
		width: 45px;
	}
	.fa-chevron-down:before {
		left: 45px;
	}
	#form-group {
		height: 45px;
	}
}

@media screen and (max-width: 376px) {
	.btn-con {
		gap: 6px;
		flex-flow: row;
	}
	a.btn-schedule {
		padding: 13px 10px;
		font-size: 17px;
	}
	a.btn-call {
		height: 45px;
		width: 45px;
	}
}

@media screen and (max-width: 1024px) {
	.footer-con, .copy-right-con {
		gap: 10px;
		padding: 0 15px;
	}
}

@media screen and (max-width: 820px) {
	.icon {
		display: block !important;
	}
	#header, #header .main_nav {
		position: relative;
	}
	div#navigation {
		display: none;
	}
	div#navigation {
		background: #f9f9f9;
		position: absolute;
		width: 100%;
		top: 80px;
		left: 0;
		z-index: 999;
	}
	ul.sub-menu {
		position: relative;
		width: 100%;
		border-top: 0;
		display: block;
	}
	ul.sub-menu li {
		border-bottom: 0 !important;
		border-top: 1px solid #fff;
	}
	.menu-item-has-children::after {
		top: 15px;
	}
	header {
		position: relative;
	}
	    ul.nav-con {
        flex-flow: column;
        align-items: start;
        padding: 0 20px;
        border-bottom-width: 1px;
    }
	ul.nav-con li {
		position: relative;
		width: 100%;
	}
	ul.nav-con li a {
		        color: rgb(0, 0, 0);
	}
}

@media screen and (max-width: 767px) {
	.heading-con h1 {
		font-size: 50px;
		line-height: 50px;
	}
	p.later-con {
		font-size: 35px;
		line-height: 10px;
	}
	form, input {
		width: 100%;
	}
	.button-con {
		flex-flow: row;
		gap: 7px;
	}
	a.btn-con {
		padding: 10px 24px;
		font-size: 19px;
	}
	a.button {
		padding: 10px 24px;
		font-size: 19px;
	}
	.image-con {
		flex-flow: column;
	}
	.footer-con {
		flex-flow: column;
		gap: 20px;
		text-align: center;
		width: 100%;
	}
	.footer-con, .copy-right-con {
		gap: 10px;
		padding: 0 15px;
		box-sizing: border-box;
	}
	.main-container {
		padding: 0;
	}
	.copyright-inner {
		flex-flow: column;
		text-align: center;
		padding: 15px 0;
	}
}

@media ( max-width : 768px) {
	input#calendarInput {
		font-size: 16px;
	}
	input#timeInput {
		font-size: 16px;
	}
}