/*** Spinner Start ***/
/*** Spinner ***/



@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('../fonts/ProximaNova-Bold.eot');
    src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Bold.woff2') format('woff2'),
        url('../fonts/ProximaNova-Bold.woff') format('woff'),
        url('../fonts/ProximaNova-Bold.ttf') format('truetype'),
        url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('../fonts/ProximaNova-Regular.eot');
    src: url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ProximaNova-Regular.woff2') format('woff2'),
        url('../fonts/ProximaNova-Regular.woff') format('woff'),
        url('../fonts/ProximaNova-Regular.ttf') format('truetype'),
        url('../fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body{    font-family: 'Proxima Nova Rg'!important;   font-weight: normal!important; color:#000}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1{ font-family: 'Proxima Nova Rg'!important;  font-weight: bold!important; color:#333333}

#spinner {
	opacity: 0;
	visibility: hidden;
 transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}
#spinner.show {
 transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	transition: 0.5s;
	z-index: 99;
}
/*** Button Start ***/
.btn {
	font-weight:500;
 transition: .5s;
}
.btn-square {
	width: 32px;
	height: 32px;
}
.btn-sm-square {
	width: 34px;
	height: 34px;
}
.btn-md-square {
	width: 44px;
	height: 44px;
}
.btn-lg-square {
	width: 56px;
	height: 56px;
}
.btn-xl-square {
	width: 66px;
	height: 66px;
}
.btn-square, .btn-sm-square, .btn-md-square, .btn-lg-square, .btn-xl-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}
.btn.btn-primary {
	color: var(--bs-white);
	border: none;
}
.btn.btn-primary:hover {
	background: var(--bs-dark);
}
.btn.btn-light {
	color: var(--bs-primary);
	border: none;
}
.btn.btn-light:hover {
	/* color: var(--bs-white); */
  color: var(--bs-primary);
	background: var(--bs-primary);
}
.btn.btn-dark {
	color: var(--bs-white);
	border: none;
}
.btn.btn-dark:hover {
	color: var(--bs-primary);
	background: var(--bs-light);
}
/*** Navbar Start ***/
.nav-bar {
	background: var(--bs-white);
}
.sticky-top {
	transition: 1s;
}
.navbar-light .navbar-nav .nav-link {
	position: relative;
	margin-right: 13px;
	padding: 35px 0;
	letter-spacing: 1px;
	color: var(--bs-dark);
	font-size: 19px;
	font-weight: 500;
	outline: none;
 transition: .5s;
}
.sticky-top .navbar-light .navbar-nav .nav-link {
	padding: 20px 0;
	color: var(--bs-dark);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
	color: var(--bs-primary);
}
.navbar-light .navbar-brand img {
 transition: .5s;
}
.sticky-top .navbar-light .navbar-brand img {
}
 .navbar .dropdown-toggle::after {
 border: none;
 content: "\f107";
 font-family: "Font Awesome 5 Free";
 font-weight: 600;
 vertical-align: middle;
 margin-left: 8px;
}
.dropdown .dropdown-menu a:hover {
	background: var(--bs-primary);
	color: var(--bs-white);
}
.navbar .nav-item:hover .dropdown-menu {
	transform: rotateX(0deg);
	visibility: visible;
	margin-top: 8px !important;
	background: var(--bs-light);
 transition: .5s;
	opacity: 1;
}
 @media (min-width: 992px) {
 .navbar .nav-item .dropdown-menu {
 display: block;
 visibility: hidden;
 top: 100%;
 transform: rotateX(-75deg);
 transform-origin: 0% 0%;
 border: 0;
 border-radius: 10px;
 margin-top: 8px !important;
 transition: .5s;
 opacity: 0;
}
}
 @media (max-width: 991px) {
 .navbar.navbar-expand-lg .navbar-toggler {
 padding: 8px 15px;
 border: 1px solid var(--bs-primary);
 color: var(--bs-primary);
}
 .sticky-top .navbar-light .navbar-nav .nav-link {
 padding: 12px 0;
}
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
	object-fit: cover;
}
 @media (min-width: 1200px) {
 .header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
 height: 700px;
}
}
 @media (max-width: 1199px) {
 .header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
 height: 1200px;
}
}
.header-carousel .owl-nav .owl-prev {
	display: none;
}
.header-carousel .owl-nav .owl-next {
	position: absolute;
	width: 60px;
	height: 60px;
	bottom: -60px;
	right: 50%;
	transform: translateY(-50%);
	margin-right: -60px;
	border-radius: 60px;
	background: var(--bs-primary);
	color: var(--bs-white);
	font-size: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
	box-shadow: inset 0 0 100px 0 var(--bs-light);
	color: var(--bs-primary);
}
.header-carousel .owl-nav .owl-next i {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation-name: carousel-next-btn;
	animation-duration: 4s;
	animation-delay: 1s;
	animation-iteration-count: infinite;
	transition: 1s;
}
 @keyframes carousel-next-btn {
 0% {
margin-top: 35%;
}
 50% {
margin-bottom: 70%;
}
 100% {
margin-top: 35%;
}
}
.header-carousel .header-carousel-item .carousel-caption {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	display: flex;
	align-items: center;
}
.carousel-caption .ticket-form {
	background: rgba(255, 255, 255, 1);
	border-radius: 10px;
}
.header-carousel .header-carousel-item img {
	animation-name: image-zoom;
	animation-duration: 10s;
	animation-delay: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	transition: 1s;
}
 @keyframes image-zoom {
 0% {
width: 100%;
height: 100%;
}
 25% {
width: 115%;
height: 115%;
}
 50% {
width: 130%;
height: 130%;
}
 75% {
width: 120%;
height: 120%;
}
 100% {
width: 100%;
height: 100%;
}
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 60px 0 60px 0;
	transition: 0.5s;
}
.bg-breadcrumb .breadcrumb {
	position: relative;
}
.bg-breadcrumb .breadcrumb .breadcrumb-item a {
	color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
	position: relative;
	border-radius: 10px;
	background: var(--bs-light);
}
.feature-item .feature-content {
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	margin-top: 0;
	margin-right: 0;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 10px;
	z-index: 2;
}
.feature-item .feature-content .feature-content-inner {
	position: relative;
	z-index: 5;
}
/*** Feature End ***/


/ /*** Attractions Start ***/
.attractions {
 position: relative;
 overflow: hidden;
}
 @keyframes attraction-image-zoom {
 0% {
width: 100%;
}
 25% {
width: 115%;
}
 50% {
width: 130%;
}
 75% {
width: 120%;
}
 100% {
width: 100%;
}
}
.attractions .attractions-section {
	position: relative;
	z-index: 3;
}
.attractions .attractions-item {
	position: relative;
	border-radius: 10px;
	transition: 0.5s;
	z-index: 1;
}
 .attractions .attractions-item::after {
 content: "";
 position: absolute;
 width: 100%;
 height: 0;
 top: 0;
 left: 0;
 border-radius: 10px;
 background: rgba(0, 0, 0, .7);
 transition: 0.5s;
 z-index: 2;
}
.attractions .attractions-item:hover:after {
	height: 100%;
}
.attractions .attractions-item .attractions-name {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
	color: var(--bs-white);
	font-size: 24px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	z-index: 3;
	opacity: 0;
}
.attractions .attractions-item:hover .attractions-name {
	opacity: 1;
}
.attractions-carousel .owl-stage-outer {
	margin-top: 58px;
}
.attractions .owl-nav .owl-prev {
}
.attractions .owl-nav .owl-prev {
	position: absolute;
	top: -58px;
	/* left: 0; */
    background: var(--bs-primary);
	color: var(--bs-white);
	/* padding: 35px 35px; */
    border-radius: 30px;
	transition: 0.5s;
	width: 63px;
	height: 63px;
	text-align: center;
	line-height: 68px;
	font-size: 29px;
	float: right;
	position: absolute;
	right: -30px;
}
.attractions .owl-nav .owl-prev:hover {
	background: var(--bs-white);
	color: var(--bs-primary);
}
.attractions .owl-nav .owl-next {
	position: absolute;
	top: -58px;
	left: -30px;
	background: var(--bs-primary);
	color: var(--bs-white);
	width: 63px;
	height: 63px;
	text-align: center;
	line-height: 68px;
	font-size: 29px;
	float: right;
	position: absolute;
	right: -30px;
	border-radius: 30px;
	transition: 0.5s;
}
.attractions .owl-nav .owl-next:hover {
	background: var(--bs-white);
	color: var(--bs-primary);
}
/*** Attractions End ***/




/*** Footer Start ***/
.footer {
	background: #414042;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}
.footer-logo {
	margin-bottom:30px;
}
.footer .text-primary {
	color: #D6D6D6 !important;
}
.footer .text-white {
	color: #D6D6D6 !important;
}
.footer h4.text-white {
	color: #fff !important;
	font-size:17px;
}
.footer .footer-item {
	display: flex;
	flex-direction: column;
}
.footer .footer-item a {
	line-height: 35px;
	color: var(--bs-body);
	transition: 0.5s;
}
.footer .footer-item p {
	line-height: 35px;
}
.footer .footer-item a:hover {
	color: var(--bs-primary);
}
.footer .footer-item .footer-btn a, .footer .footer-item .footer-btn a i {
	transition: 0.5s;
}
.footer .footer-item .footer-btn a:hover {
	background: var(--bs-white);
}
.footer .footer-item .footer-btn a:hover i {
	color: var(--bs-primary);
}
.footer .footer-item .opening-date {
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer .footer-item .opening-date .opening-clock {
	display: flex;
	align-items: center;
	line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--bs-dark);
}
/*** copyright end ***/














.outerbox {
	background:#fff;
}
.search-box .text-primary {
	color: #fff !important;
	font-size: 48px !important;
	font-weight: 700 !important;
	text-align: left;
}
.images-box {
	margin: 0px;
	padding: 0px;
	margin-bottom: 39px;
}
.images-box ul {
	margin:0px;
	padding:0px;
}
.images-box ul li {
	list-style: none;
    display: inline-block;
    margin: 0px 6px 0px 0px;
    width: 34%;
}
.images-box ul li img {
	width:100%;
	height:auto;
}
.slider-outer .images-banner {
	width:100%;
}


.capsion {
	position:absolute;
	left:0px;
	top:0px;
	max-width:1100px;
	margin:0 auto;
	left:0px;
	right:0px;
	top:21%;
}
.capsion p {
	color:#fff;
}
.formbox {
	background: #fff;
	padding: 21px;
	border-radius: 9px;
}
.section-subheading {
	font-size:18px;
	color:#414042
}
.section-heading {
	font-size:31px;
	color:#414042
}
.search-box {
	max-width: 400px;
	border-radius: 15px;
	padding: 30px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.search-box .form-control {
	border-radius: 8px;
	padding: 30px 5px 9px 44px;
	font-size: 13px;
	color: #1C1C1C;
}
.search-box .form-label {
	font-size: 0.85rem;
	color: #888;
}
.search-box .form-check-label {
	font-size: 0.85rem;
}
.search-box .btn {
	border-radius: 8px;
	padding: 12px;
	font-weight: bold;
}
.search-box .section-heading {
	font-size: 27px;
	font-weight: 700;
	margin-bottom: 1rem;
}
.search-box .section-subheading {
	font-size: 18px;
	color: #666;
}
.search-box .form-label {
	color:#333333!important;
	position: absolute;/* left: 0px; *//* top: 0px; */
	margin: 9px 0px 0px 11px;
}
.form-control {
	border: 1px solid #333333!important;
}
.brand-section {
	background-color: #3a383a;
	padding: 30px 20px;
	text-align: center;
}
.brand-section h5 {
	color: #ffffff;
	margin-bottom: 20px;
	font-weight: 400 !important;
}
.brand-badge {
	align-items: center;
	background-color: #fff;
	border-radius: 50px;
	padding: 8px 16px;
	margin: 5px;
	font-size: 0.95rem;
	font-weight: 500;
	color: #000;
	margin-top:20px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.brand-badge img {
	width: 28px;
    margin-right: 4px;
    height: 26px;
}
.findmd .car-card{ padding:0px;}
.brand-badge:hover {
	background-color: #FF2027;
	color: #fff;
}
.car-card {
	border: none;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	padding: 16px;
	text-align: left;
	transition: transform 0.2s ease-in-out;
	padding-bottom:20px;
}
/* .car-card:hover {
	transform: translateY(-5px);
} */
.car-title {
	font-weight: 600;
	font-size: 1rem;
	margin-top: 0.5rem;
}
.car-specs {
	font-size: 0.875rem;
	color: #4B5563;
	margin-top:12px;
}
.price {
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: 1rem;
}
.price small {
	font-size: 0.8rem;
	color: #4B5563;
}
.rating {
	font-size: 0.9rem;
	color: #333;
}
.rating i {
	color: green;
}
.distance {
	font-size: 0.8rem;
	color: #888;
}
.browse-btn {
	margin-top: 70px;
}
.dist {
	overflow:hidden;
}
.dist .price {
	float:left; color:#000;
}
.dist .distance {
	float:right;
	color: #4B5563;margin-top: 21px;
}
.owl-carousel .owl-item img {
	width: auto!important
}
.slider-outer img {
	width:100%;
}
.banner-img {
	height: 200px;
}
.btn-primary1 {
	margin-right:20px;
	font-weight:500;
}
.flag-icon {
	width: 24px;
	height: 16px;
	object-fit: cover;
}
 .dropdown-toggle::after {
 margin-left: 0.5rem;
 vertical-align: middle;
}
.dropdown-menu img {
	width: 24px;
	height: 16px;
	object-fit: cover;
	margin-right: 8px;
}
.form-label .dvoid {
	position: absolute;
	left: 33px;
	top: 0px;
	display: block;
	width: 140px;
}
.dropdown-sess {
	margin-left:10px;
}
.dropdown-sess .button {
	background:none
}
.search-box .form-label i {
	font-size: 24px;
}
.blosoe {
	background:#FFEAD9
}

.blosoe h2{font-weight: 700;
    font-size: 45px;
    color: #333;
    text-align: center; margin-bottom:50px;}
.category-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	min-height:249px;
	margin-bottom:15px;
	cursor: pointer;
	transition: transform 0.2s ease;
}
.category-card:hover {
	transform: scale(1.03);
}
.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	font-size: 23px;
	height:100%;
	font-weight: 500;
	text-align: center;
}
h2 {
	color:#333333;
}
.section-title {
	font-size:45px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2rem;
	color: #2e2e2e;
}
.owl-nav {
	position: absolute;
	width: 100%;
	top: 220px;
}
.why-section {
	padding: 60px 0;
	background-color: #ffffff;
}
.why-title {
	font-weight: 700;
	font-size: 45px;
	color: #333;
	text-align:center
}
.why-description {
	color: #6c757d;
	max-width: 790px;
	margin: 0 auto 40px auto;
	text-align: center;
}
.feature-icon {
	width: 50px;
	height: 50px;
	background-color: #f44336;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-right: 16px;
}
.feature-text h5 {
	font-weight: 500;
	margin: 0;color: #000000;
    font-size: 30px;
}
.feature-text p {
	margin: 0;
	color: #636363;
}
.rounded-img {
	border-radius: 10px;
}
.faq-section {
	padding: 3rem 1rem;
}
.faq-question {
	font-weight: 600;
	cursor: pointer;
}
 .accordion-button::after {
 display: none;
}
.faq-toggle-icon {
	color: red;
	font-weight: bold;
}
.accordion .me-auto {
	margin-right: auto !important;
	color: #000000;font-size: 20px;
}
.faq-image {
	max-width: 100%;
	border: 2px solid #a78bfa;
	border-radius: 8px;
}
 .accordion-button::after {
display:none
}
 @media (min-width: 1200px) {
 h2, .h2 {
 font-size: 45px;
}
}
.rental-banner {
	background: url('https://via.placeholder.com/1440x350?text=Car+Banner') center center/cover no-repeat;
	    position: relative;
    height: 270px;
    color: white;
    padding-top: 110px;
}
 .rental-banner::before {
 content: '';
 position: absolute;
 top: 0;
left: 0;
width: 100%;
height: 100%;
 background: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
 z-index: 1;
}
.rental-content {
	position: relative;
	z-index: 2;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}
.rental-content h2 {
	font-weight: 700;
}
.rental-amount {
	font-size: 3rem;
	font-weight: 800;
}
.rental-content h2 {
	color:#fff
}
.rental-banner {
	background: url(../img/bow.jpg) center center/cover no-repeat;
	position: relative;
	height: 270px;
	color: white;padding-top: 110px;
}
 .rental-banner::before {
 content: '';
 position: absolute;
 top: 0;
left: 0;
width: 100%;
height: 100%;
 background: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
 z-index: 1;
}
.rental-content {
	position: relative;
	z-index: 2;
	text-align: center;
	top: 30%;
	transform: translateY(-50%);
}
.rental-content h2 {
	font-weight: 600;
}
.rental-amount {
	font-size: 3rem;
	font-weight: 600;
}
.download-section {
	padding: 80px 0px 0px 0px;
}
.download-badge {
	background-color: #f1f4ff;
	color: #e63946;
	font-weight: 600;
	font-size: 0.85rem;
	padding: 6px 16px;
	border-radius: 10px;
	display: inline-block;
	margin-bottom: 15px;
}
.download-title {
	font-weight: 700;
}
.download-title span {
	color: #e63946;
}
.store-btns img {
	height: 50px;
	margin-right: 10px;
}
.app-image {
	max-width: 100%;
	height: auto;
}
.download-section {
}
.download-badge {
	background-color: #f1f4ff;
	color: #e63946;
	font-weight: 600;
	font-size: 0.85rem;
	padding: 6px 16px;
	border-radius: 10px;
	display: inline-block;
	margin-bottom: 15px;
}
.download-title {
	font-weight: 700;
}
.download-title span {
	color: #e63946;
}
.store-btns img {
	height: 50px;
	margin-right: 10px;
}
.app-image {
	max-width: 100%;
	height: auto;
}
.social-icons a {
	color: #ffffff;
	padding: 8px 12px;
	border-radius: 10px;
	margin: 0 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s, color 0.3s;
}
.social-icons a:hover {
	background-color: #FF2027;
	color: #fff;
}
.social-icons i {
	font-size: 18px;
}








.filter-sidebar {
  background-color: #fff;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #dee2e6;
    font-size: 15px;
    border-top: 0px;
    border-left: 0px;
    border-bottom: 0px;
  }

  .filter-sidebar h6 {
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

   
  .form-check-label {
   
    display: flex;
    justify-content: space-between;
  }
  
  
  .form-section .form-check-label{ width: 100%;}
 .form-check-label-new{ display: inline-block}
  .form-check-input {
    margin-top: 0.2rem;
    margin-right: 0.75rem;
  }

  .clear-filters {
    font-size: 14px;
    float: right;
    color: #000;
    cursor: pointer;
    text-decoration: underline;
  }

  .filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }









.form-check {
    

    min-height: 1.5rem;
   
}












   .location-box {
      border: 1px solid #ec3e6c;
      border-radius: 12px;
      padding: 15px 20px;
      display: flex;
      position: relative;
      align-items: center;
      color: #000000;
      /* justify-content: space-between; */
      gap: 41px;
    }

    .location-box-new  .edit-btn{ position:static}
    .edit-btn {
      background-color: #22C55E;
      color: white;
      border: none;
      padding: 8px 20px;
      border-radius: 6px;
    }

    .car-type-icons i {
      font-size: 24px;
      display: block;
      margin-bottom: 5px;
    }

    .car-type-icons .active {
      /* color: #ec3e6c; */
      color:#3098be;
      font-weight: 600;
    }

    .car-type-icons div {
      text-align: center;
      cursor: pointer;
      color: #333; font-size:15px;
    }

    .car-type-icons div:hover {
      color: #ec3e6c;
    }
	
	
	
	
	
	
	
	
	
	 .car-card {
      border-radius: 12px;
      background-color: #fff;
      padding: 20px;
      /* display: flex; */
      gap: 20px; overflow:hidden;
      align-items: center;
    }

    .car-img {
     
      height: auto;    width: 31%;
      border-radius: 10px;
      position: relative;
    }

    .car-img img {
         width: 98%;
    }

    .only-image img {
  
}

   .important-link {
   position: relative;
    z-index: 999;
}
    .heart-icon {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 20px;
      color: #dc3545;
      
      border-radius: 50%;
      padding: 5px;
    }

    .features i {
      margin-right: 5px;
    }

    .price-section {
      text-align: right;width: 25%;
    }

    .price-euro {
        font-size: 40px;
    font-weight: bold;
    color: #000;
    font-style: italic;
    }

    .btn-deal {
     background-color: #dc3545;
    color: white;
    border: none;
    padding: 7px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    margin-top: 5px;
    }

    .btn-quote {
      color: #dc3545;
      text-decoration: none;
      font-size: 14px;
    }

    /* .brand-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 15px;
      margin-left: 339px;
    
      gap:8px;
    } */

    .brand-rating {
      display: flex;
      align-items: center;
     
    
      margin-left: 0px;
      gap: 8px;
      float: right;
      width: 66%;
      margin-right:10px;
  }
   
     .blogw-main{display:flex;gap: 33px;}
    .rating-box {
      background-color: #28a745;
      color: white;
      padding: 3px 8px;
      border-radius: 5px;
    
      font-size: 14px;
    }
	.price-euro{ line-height:30px}
	.features { font-size:14px;}
	.free, .text-muted{ font-size:14px;} 
	.free{ margin-right:16px;}
	.brand-rating a{ color:#414042}
	
	.edit-btn{position: absolute;
    right: 31px;}
	
	
	.border-bottom-wwsw{ border-bottom:1px solid #dee2e6; padding-bottom:20px;}
	
	.textcenter{ text-align:center; margin:50px 0px 50px 0px}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	 .card-custom {
      border-radius: 12px;
      padding: 20px;
      background-color: #fff;
      border: 1px solid #e6e6e6;
    }

    .edit-btn {
      background-color: #00b26f;
      color: white;
      border: none;
      border-radius: 6px;
      padding: 8px 20px;
    }

    .discount-badge {
   background-color: #f8d7da;
    color: #dc3545;
    padding: 0px 19px;
    border-radius: 66px;
    font-size: 12px;
    font-weight: normal;
    line-height: 32px;
    }
  .discount-label {
      font-size: 10px;
      color: #fff !important;           
      background-color: #dc3545; 
      padding: 2px 6px;    
      border-radius: 4px;  
      font-weight: 500;      
      display: inline-block;   
  }
    .info-badge {
      font-size: 14px;
    }

    .checklist-icon {
      color: #00b26f;
    }

    .section-title {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .summary-price {
      font-size: 18px;
      font-weight: bold;
    }

    .btn-book {
      background-color: #FF2027;
      color: white;
      border-radius: 6px;
      padding: 12px;
      font-weight: 500;
      border: none;
    }

    .addon-qty {
      width: 50px;
      text-align: center;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .addon-controls {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .bg-green-light {
      background-color: #e6f5ec;
      padding: 15px;
      
      border-radius: 5px;
    }
	
	
	h6.section-title{ font-size:18px; text-align:left}
	
	
	.border-new{border: 1px solid #e6e6e6;
    position: relative;
    width: 100%;
    padding: 12px;
    border-radius: 11px; display:flex; gap:93px;}
	
	.blod-ext{ font-weight:bold; color:#000000}
	
	.bi-arrow-right{margin-top: 11px;}
	
	
	
.alert-success {
    color: #0f5132;
    background-color: #F0FDF4;
    border-color: #badbcc;
    font-size: 14px;
    display: flex
;
}
	
	.alert-success a{ text-decoration:underline; color:#1572D3}
	
	
	
	
	
	.section-title {
  font-size: 18px;
  font-weight: 600;
}

.discount-badge {
  font-size: 12px;
}

.summary-price {
  font-size: 18px;
  font-weight: 600;
}

.card-custom p, .card-custom span, .addon-controls input {
  font-size: 14px;
}
.flex-wrap{ font-size:13px;}
.btn-book {
  font-size: 16px;
}
.matj{font-size: 13px;
    line-height: 27px;}

.alert-success img{    margin-right: 10px;
    margin-top: 9px;}
.Series{ display:flex;gap: 171px; margin-bottom:20px;}

.gaoe{overflow: hidden;
    width: 100%;
    display: flex
;
    gap: 61px;}
	
	.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    border-radius: 5px !important;
}
.addon-qty{ border:0px;}
.addriver strong{ font-size:15px; display:block; color:#000000}	
.addriver span{ font-size:15px; display:block; font-weight:400}	
.addriver small{ font-size:15px; display:block;font-weight:400}	
.text-danger{ margin-bottom:30px!important;}
.card-custom strong{ font-size:15px; color:#000; font-weight:500;}
.bg-green-light{ font-size:15px;color:#000000}
.bg-green-light span{ font-size:15px;margin-bottom:20px; display:block; color:#000000}
/* .text-danger{ color:#4B5563!important} */
.text-success a{ color:#006CE4}
.text-danger a{ color:#006CE4}
.text-danger .bi-circle-fill{color: #FF0408;}

.card-custom{ color:#000000}

.footer .footer-item a{ color:#D6D6D6!important}
.copyright .text-body{ color:#D6D6D6!important} 
.textimagea{ font-size:14px;}
.checkout span{ margin-bottom:20px; display:block; font-size:17px;}
.checkout h3{ font-size:20px; margin-bottom:20px;}
.Series span{ font-size:13px;}
.boxsea{ display:block}
.boxsea h5{ margin-bottom:0px;}




.form-section label {
    font-size: 13px;
    font-weight: 400;
  }
  .form-section {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
  }
  .form-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  .form-control, .form-select {
    font-size: 14px;
    padding: 10px;
  }
  .form-section .text-muted {
    font-size: 13px;
  }
  
  .form-section .form-control {border-radius: 4px;
    border: 1px solid #E5E7EB !important;
}

  .form-section select{border-radius: 5px;}
    .form-section label span{ color:red}
	
	.payment-option img{ width:90%}
	
	
	
	.form-check-new{display: flex
}
	.form-check-input[type=radio] {
       border-radius: 50%;
    margin-left: 9px;
    margin-bottom: 12px;
}

.form-check-inline{display: inline-block;
    margin-right: 0px;
    padding: 0px;}
	
ul.listing{ margin:0px 0px 30px 0px; padding:0px;}	
ul.listing li{ list-style:none; margin:0px; padding:0px 0px 10px 0px; font-size:15px;}

.pl-2{padding-left: 60px;}



.how-it-works .icon-circle {
  width: 80px;
  height: 80px;
  background-color: #e30613;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}


.how-it-works h3{ font-size:33px; text-align:center; color:000000; font-size:500;}

.how-it-works h2{font-weight: 700;
    font-size: 45px;
    color: #333;
    text-align: center; margin-bottom:40px; margin-top:60px;} 
	
.carefeatured{ background:#FFEAD9}	



.carefeatured .btn {width: 98%;
    border-radius: 5px !important;
    border: 0p;
    margin: 0 auto;
    margin: 15px 0px 0px 1px;
    box-shadow: 0px 0px 0px;}
	
	
	
	
	.why-choose-us .icon-circle {
  width: 80px;
  height: 80px;
  background-color: #e30613;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-us .icon-img {
  width: 30px;
  height: 30px;
}

.why-choose-us h2 {
  font-size: 45px;
  font-weight: 700;
}

.why-choose-us h6 {
  font-size: 27px; font-weight:400!important;
  margin-bottom: 0.25rem;
}






.bg-image {
 
  height: 300px;
  position: relative;
}

.overlay {
    background-color: rgba(227, 6, 19, 0.85);
    padding: 2rem;
    color: white;
    min-height: 300px;
    border-radius: 4px; padding-top:0px;
    position: relative;
}

.rent-help-section h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.rent-help-section p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.rent-help-section{ background:url(../img/car-big.jpg) left top no-repeat; width:100%; background-size: cover;
  background-position: center;}
  
  
  .rent-help-section h3{ color:#fff; font-size:30px; font-weight:500!important;}
    .rent-help-section  .btn-dark{position: absolute;
    bottom: 30px;
    width: 43%;
    margin: 0 auto;
    border-radius: 4px; font-weight:400;}
	
	
	
	
	.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    background: no-repeat;
    border: 0px;
    box-shadow: 0px 0px 0px;
}


.lead{ font-size:27px; font-weight:bold; color:#000}
.about-us .fw-bold{ font-size:27px; font-weight:bold; color:#000}
.about-us p{ font-size:16px;  color:#7C7C7C}
.about-us h2.fw-bold{ font-size:45px;}

h4.text-primary{ font-size:60px; color:#fff!important; margin-bottom:0px!important}



.contact-section .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background-color: transparent;
}

.contact-section .form-control:focus {
  border-color: #dc3545;
  box-shadow: none;
}



.contact-section .form-control{    border: 0px !important;
    border-bottom: 1px solid #CACACA !important;}
	
	.contact-section  i{ color:#FF2027!important}
	.contact-section strong{ font-weight:500!important; color:#000}
	.contact-section  .btn-danger i{ color:#fff!important}
	
	.navbar .btn-light{ background:none!important; border:0px!important;}
	
	
	.result-page .form-control, .form-select{padding: 10px 40px 10px 20px;}
	
	
	
	
	
	
	
	
	
	
	
	 .menu-item {
      padding: 16px 20px;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      justify-content: space-between;
      color:#000;
      align-items: center;
      font-size: 16px;
      font-weight: 400;
    }

    .menu-item.active {
      color: #e60050;
    }

    .menu-item.active::after {
      content: ">";
      color: #e60050;
    }

    .menu-item:not(.active)::after {
      content: ">";
      color: #000;
    }

  
  
  
  
	
	
	
	
	
	
	
	
	
	ul.nav-pills li button{color: #000;}
	
	  .nav-pills .nav-link.active {
     background: #ff2027;
   
      border: 1px solid #dee2e6;  color: #fff;
    }
    .tab-content .booking-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      padding: 20px;
      margin-bottom: 20px;
    }
    .tab-content .car-img {
      
      border-radius: 10px;
      object-fit: cover;
    }
    .tab-content .price-tag {
      font-size: 24px;
      font-weight: bold;
      color: #00b050;
    }
    .tab-content .cancelled-badge {
      background-color: #e60050;
      color: #fff;
      padding: 4px 12px;
      border-radius: 8px;
      font-size: 13px;
    }
    .tab-content .paid-label {
      color: #e60050;
      font-weight: bold;
    }
    .tab-content .icon-text {
      font-size: 14px;
    }
    .tab-content .info-label {
      font-weight: 500;
      font-size: 13px;
      color: #666;
    }
	
	.infor{ color:#1C1C1C; font-size:15px;}
	
	.paid{ font-size:14px; color:#E31837; margin-bottom:6px;}
	.totole-euro{ font-size:16px; color:#414042; font-weight:500;}
	.free{ font-size:14px; color:#000000; margin-right:0px; margin-top:8px;}
	.total-price{font-size: 40px;
    color: #16A34A;
    font-weight: bold;
    font-style: italic;
    line-height: 42px;}
	
	.tab-content .price-section{ width:auto;}
	
	.car-img img {
    border-radius: 10px;
}




 .form-group {
      position: relative;
     /* margin-bottom: 1.5rem;*/
    }

    .form-group i {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 10px;
      color: #e60050;
    }

    .form-control {
      border: none;
      border-bottom: 2px solid #ccc;
      border-radius: 0;
      box-shadow: none;
      padding-left: 35px;
      transition: border-color 0.3s;
    }

    .form-control:focus {
      border-color: #e60050;
      box-shadow: none;
    }

    .form-control::placeholder {
      color: #aaa;
    }

    label {
      font-weight: 500;
    }

    .upload-box {
      border: 2px dashed #eee;
      border-radius: 10px;
      padding: 30px 0;
      text-align: center;
      color: #e60050;
      font-size: 18px;
      background-color: #fff;
      cursor: pointer;
    }

    .upload-box:hover {
      background-color: #fdf0f3;
    }

    .upload-box i {
      font-size: 24px;
      display: block;
      margin-bottom: 8px;
    }

    .btn-submit {
      background-color: #e60000;
      color: #fff;
      font-weight: bold;
      border-radius: 30px;
      padding: 12px 30px;
      width: 100%;
    }
	
	
	
	
	
	
	
	
	
	
	.profile .form-control{border: 1px solid #E5E7EB !important;
    border-radius: 5px;}
	.profile .form-label{ color:#000}
	.profile .form-label span{ color:#FF0000!important}
	.profile .btn-submit{ 
    background-color: #FF0000; margin-bottom:50px;}
	
	
	
	.profile input[type="file"]{background: no-repeat;
    font-size: 0px;
    border: 0px !important;
    background: none;
    padding: 0px;}
	
	.profile .fa-upload {
    color: #4B5563 !important;
    margin-bottom: 0px !important;
}




.profile input[type="tel"]::placeholder {
  color: #ccc;
}

.profile .input-group-text img {
  display: inline-block;
  vertical-align: middle;
}



.flag-img {
    width: 30px;
    height: 20px;
    object-fit: cover;
  }
  .dropdown-toggle::after {
    margin-left: 0.5rem;
  }
  
  
  
  
  
  
  
  
  
  
  
  
    .change-password .form-label {
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: red;
      text-underline-offset: 4px;
    }
    .required::after {
      content: "*";
      color: red;
      margin-left: 4px;
    }
    .btn-custom {
      border: 1px solid #ccc;
      background: transparent;
    }
    .badge-custom {
      padding: 3px 8px;
      border-radius: 12px;
      font-size: 0.75rem;
    }
    .badge-active {
      background-color: #d1e7dd;
      color: #0f5132;
      border: 1px solid #0f5132;
    }
    .badge-default {
      background-color: #e0e0ff;
      color: #4a4aff;
      border: 1px solid #4a4aff;
    }
    .badge-inactive {
      background-color: #f8d7da;
      color: #842029;
      border: 1px solid #842029;
    }
    .icon-btn {
      border: 1px solid #ccc;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
      border-radius: 6px;
    }
    .security-label {
      font-weight: bold;
    }
    .section-divider {
      border-top: 1px solid #ddd;
      margin: 1.5rem 0;
    }
    .text-error {
      color: red;
      font-size: 1rem;
      margin-left: 6px;
    }
	
	.change-password .form-label{font-weight: 500;color:#000000;}
	.change-password .form-control{border: 1px solid #E5E7EB !important;
    border-radius: 5px;}
	
	.change-password  button{float: right;
    margin-top: 0px !important;border: 1px solid #E5E7EB !important;}
	
	 .change-password{border: 1px solid #E5E7EB;  border-radius: 6px; padding:20px;}
	 .profile{    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 20px;
    margin: 0px 0px 0px 0px;}
	
	
	
	
	
	
	
	
	
	
	.card-info {
      background-color: #f9f9f9;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      border: 1px solid #ddd;
    }
    .card-logo {
      width: 50px;
    }
    .form-inline input {
      width: 100%;
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 0.5rem;
    }
    .form-inline .form-control:disabled {
      background-color: #f9f9f9;
      opacity: 1;
    }
    .shipping-card {
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1rem;
    }
    .text-muted-sm {
      font-size: 0.875rem;
      color: #888;
    }
	
	.saved-payment .fw-bold{ color:#000}
	.saved-payment .form-control{ border:1px solid #EEEEEE!important}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	 .payment-history .avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: bold;
      font-size: 14px;
    }

    .payment-history .bg-f {
      background-color: #000;
    }
    .payment-history .bg-k {
      background-color: #444;
    }
    .payment-history .bg-7 {
      background-color: #1abc9c;
    }
    .payment-history .bg-p {
      background-color: #3498db;
    }

    .payment-history .status-badge {
      font-weight: 500;
    }

    .payment-history .status-pending {
      color: red;
    }

    .payment-history .status-completed {
      color: green;
    }

   .payment-history .status-cancelled {
      color: rgb(199, 0, 0);
    }

    .payment-history .ellipsis-btn {
      border: none;
      background: transparent;
    }

    .payment-history .amount-pos {
      color: green;
      font-weight: 600;
    }

    .payment-history .amount-neg {
      color: red;
      font-weight: 600;
    }

    .payment-history .table td, .table th {
      vertical-align: middle;
    }
	
	
	.payment-history .table-bordered{ font-size:13px;}
	
	
	
	 .payment-history .date-input {
      background-color: #f3f3f3;
      border-radius: 0.375rem;
      border: 1px solid #e0e0e0;
      padding: 0.5rem 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      width: fit-content;
    }
    .payment-history input[type="date"] {
      border: none;
      background: transparent;
     font-size: 19px;
      color: #555;
      outline: none;
    }
	
	
	
	.opto{ font-size:16px; font-weight:normal}
	
	
	.profile select{border: 1px solid #E5E7EB !important;
    border-radius: 5px;font-size: 14px;
    padding: 10px; width:100%; padding-right:20px;}
	
	ul.listimg-box{ margin:0px; padding:0px;}
	ul.listimg-box li{ padding:0px; margin:0px; list-style:none; margin-bottom:10px; font-size:13px; color:#000000}
	
	ul.listimg-box li input[type="checkbox"]{margin-top: 3px;
    float: left;
    margin-right: 10px;
    width: 17px;
    height: 17px;}
	
	
	
	
	
	
	
	
	
	
	
	
	.referral .copy-btn {
      background-color: #ff2d2d;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 0.5rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
    }
    .referral .copy-btn:hover {
      background-color: #e32222;
    }
    .referral .referral-input {
      border-radius: 8px;
      border: 1px solid #ccc;
      padding: 0.5rem 1rem;
      width:50%;
    }
    .referral .highlight {
      color: #ff2d2d;
      font-weight: 600;
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	 .saved-loaction .location-box-new {
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 1.5rem;
      background-color: #fff;
    }
    .saved-loaction .tag-btn {
      padding: 0.4rem 1rem;
      border-radius: 20px;
      border: none;
      font-size: 0.875rem;
      color: #fff;
      margin-right: 0.5rem;
    }
    .saved-loaction .tag-home { background-color: #f83245; }
    .saved-loaction .tag-office { background-color: #fd4d4d; }
    .saved-loaction .tag-other {
      border: 1px solid #ccc;
      color: #000;
      background-color: transparent;
    }
    .saved-loaction .submit-btn {
      background-color: #000;
      color: #fff;
      padding: 0.6rem;
      width: 100%;
      border: none;
      border-radius: 5px;
      margin-top: 1rem;
    }
   .saved-loaction  .map {
      width: 100%;
      height: 300px;
      border-radius: 10px;
    }
	
	.seactor{ overflow:hidden; border:1px solid #E5E7EB; padding:5px 10px;border-radius: 5px; margin-top:10px;} 
	.seactor span{ font-size:13px; float:left; margin-top:6px;}
	.seactor button{ float:right; background:none!important; border:0px;}
	.seactor button:hover{ color:#000}
	.location-box-new textarea{border:1px solid #E5E7EB!important; padding:10px 10px;border-radius: 5px;}
	.location-box-new .fw-semibold{ color:#000; font-weight:normal!important}
	.location-box-new .fw-bold{ color:#000; font-weight:normal!important}
	
	
	
	
	
	
	
	
	
	
	 .reviews .star {
      color: #fbc02d;
    }
    .review-card {
      border-bottom: 1px solid #eee;
      padding: 20px 0;
    }
    .reviews .reviewer-img {
      width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 0px;
    float: left;
    }
    .reviews .rating-breakdown li {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
	
	
	.reviews  h2, .h2 {
        font-size: 32px;
   
}
.catdssmd{gap: 14px;}
.reviews p{ font-size:10px; color:#000000}
.reviews strong{font-size: 13px;
    font-weight: normal;}
.reviews .text-muted{font-size: 10px;}	
.reviews .wilson{    width: 113%;
    line-height: 14px;}


.reviews .text-warning {
    color: #ffc107 !important;
    font-size: 15px;
}
















 .reviews .rating-row {
        display: flex
;
    align-items: center;
    margin-bottom: 0px;
    font-size: 12px;
    width: 71%;
    }

    .reviews .rating-row span {
      width: 20px;
      display: inline-block;
    }

    .reviews .progress {
      flex: 1;
      margin: 0 10px;
      height: 8px;
      border-radius: 5px;
    }

    .reviews .progress-bar {
      height: 8px;
    }

    .rating-count {
       width: 27px;
    text-align: right;
    font-size: 12px;
    }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	 .subscribe-box {
      max-width: 600px;
      padding: 40px 20px;
      text-align: center; text-align:left; border:1px solid #EEEEEE!important;
    }
    .form-control::placeholder {
      color: #999;
    }
	.form-control{ border:1px  solid #E5E7EB;}
    .btn-submit {
      background-color: #f44336;
      color: white;
      border: none;
    }
    .btn-submit:hover {
      background-color: #d32f2f;
    }
    .social-links {
      font-weight: bold;
    }
    .social-links a {
      color: #e53935;
      text-decoration: none;
    }
    .social-links a:hover {
      text-decoration: underline;
    }
	
	.subscribe-box .form-control{ border:1px solid #EEEEEE!important; margin-right:0px;}
	.subscribe-box button{border-radius: 0px;
    border: 0px; width:auto; font-weight:normal}
	
	
	
	
	
	
	
	
	.notification { margin-bottom:120px;}
	.notification .section {
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .notification .section-title {
      font-weight: 600; text-align:left;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    .notification .form-check-label {
      font-size: 1rem;
    }
    .notification .btn-save {
      background-color: #f44336;
      color: white;
      font-weight: 500;
    }
	.notification h5{ font-weight:normal}
	
	.notification button{border-radius:4px;}
	
	
	
	
	
	
	
	
	
	
	
	
	 .language-card {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      border: 1px solid #eee;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .language-card:hover {
      background-color: #f9f9f9;
      border-color: #ddd;
    }
    .language-flag {
      width: 24px;
      height: 16px;
      object-fit: cover;
    }
    .btn-cancel {
      background-color: white;
      border: 1px solid #ccc;
      color: #000;
    }
    .btn-continue {
      background-color: #f44336;
      color: #fff;
      border: none;
    }
    .btn-continue:hover {
      background-color: #d32f2f;
    }
    .see-more {
      color: #f44336;
      font-weight: 500;
      cursor: pointer;
    }
	
	
	
	
	
	.search-box input[type="datetime-local"]{width: 73%;
    position: absolute;
    left: 0px;
    top: 6px;
    border: 0px;
    /* font-size: 0px; */
    height: 29px;
    opacity: 0 !important;
    box-shadow: 0px 0px 0px;}
	.mutes{ display:flex}
	.mutes-green{ background: #E1FFEA;
    padding: 5px;
    color: #16A34A;
    font-size: 16px;
    border-radius: 6px;
    margin-left: 5px;}
	.mutes-green span{ font-size:13px;}
	.mutes p{    margin-top:5px;}
	.btn-quote .bi-envelope{ color:#dc3545!important}
	a.btn-quote { margin-top:9px;}
	
	.code-maina{display: flex
;
    gap: 61px;
    margin-left: 20px;}
	
	
	
	
	
	
	
	
	
	.paid span{color: #1572D3;
    font-size: 12px;
    margin-right: -4px;
    position: absolute;
    left: -48px;
    background: #414042;
    color: #fff;
    padding: 3px 12px 2px 12px;
    border-radius: 45px;
  }
	
	
	.price-section{ position:relative}
	
	ul.list-unstyled li{ margin-bottom:6px;}

	.payment-card-section{ font-size:15px; line-height:24px}
	 .payment-card-section .card-logo {
     
      margin-right: 8px;
    }

    .payment-card-section .list-icon {
      margin-right: 0.5rem;
    }
	
	.payment-card-section .text-danger {
    color: #dc3545 !important;margin-bottom: 6px !important;
}

.login-card {
     max-width: 400px;
    margin: 50px auto;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin-top: -81px;
    position: relative;
    }
    .login-card .form-control::placeholder {
      color: #999;
    }
	.login-card  .form-control{ border:1px solid #666666!important;border-radius:8px;}
    .login-card .form-group i {
     position: absolute;
    left: 15px;
    top: 71%;
    font-size: 21px;
    transform: translateY(-50%);
    color: #E31837;
    }
	.login-card .form-label {
    margin-bottom: .5rem;
    color: #414042;
    font-size: 19px;
}
    .login-card .form-group input {
      padding-left: 2.5rem;
    }
	.form-check-label-new{font-size: 12px;
    font-weight: normal;
    line-height: 21px;}
	
	.form-check-input-sin{ margin-top:6px;}
    .login-card .btn-google { border:0px; background:none; margin:20px 10px 0px 10px
    
    }
    .login-card .btn  {background: #FF4147;
    border-radius: 7px !important;
    padding: 10px 0px;
    
    }
	.login-card img {
    width: 70%;
}
	
	.text-muted {
    color: #6D6D6D !important;
}
  .login-card .continue{margin-top: 30px;}
  
  
  
  
   .otp-box input {
      width: 50px;
      height: 50px;
      font-size: 24px;
      text-align: center;
      border: 2px solid #ddd;
      border-radius: 8px;
      margin: 0 5px;
      padding-left: 0px !important;
      padding-right: 0px;
      color: #000;
    }
    .otp-box .card-custom {
      max-width: 400px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .otp-box .btn-red {
      background-color: #e53935;
      color: white;
      font-weight: 500;
    }
    .otp-box .btn-red:hover {
      background-color: #d32f2f;
    }
	
	.otp-box .small{ font-size:12px}
	
	
	.Become-host{ background: #FF4147;
    color: #fff;
    font-size: 16px;
    padding: 10px 0px 10px 19px;
    border-radius: 4px;
    color: #ffff;
    width: 59%;
    margin: 60px 0px 60px 0px;}
	
	.Become-host a{ color:#fff}
	.brand-rating{ color:#FF2027}
	
	 .search-box .form-control {
    background-color: #ffffff; /* white */
  
  }
  
  

	
	
	/* By default (on desktop), the toggle button is hidden */
.filter-toggle-button {
  display: none;
}


	@media screen and (max-width: 767px) {
	
	
	
	
	img{ max-width:100%; height:auto} 
	.location-box{gap: 11px;}
	.car-type-icons div{font-size: 9px;}
	.car-img {
    height: auto;
    border-radius: 10px; width:100%!important;
    position: relative;
    margin-bottom: 20px;
}
.price-section{ width:100%}
.brand-rating{gap: 2px;margin-left: 0px!important;
    margin-top: 0px!important; display:block!important}
	.rating-box{background-color: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 14px;
    width: 36%;
    float: left;}
	.car-card{ position:relative}
	.brand-rating{    position: absolute;
        bottom: 30px;
        right: 0px;
        width: 40%;}
		
		.capsion p {
    color: #fff;
    font-size: 13px !important;
    margin: -6px 0px -6px 0px !important;
    padding: 0px;
}
	.code-maina{  display:block!important; margin-left:0px;
    overflow: hidden;
    width: 100%;
    margin-top: 10px;
    line-height: 22px;}
	.profile{ padding:0px}
	.slider-outer .capsion{margin-top:-68px;}
	.filter-sidebar{        border: 0px !important;
        padding: 0px !important;
        margin-top: 19px;}
	.seaction-seacrh{font-size: 12px!important;}
	.rental-amount{font-size: 27px!important;}
	.Become-host{margin: 20px 0px 0px 0px;}
	.mbile-box{ display:block!important}
	.price-section{        text-align: left;
        margin-top: 22px;}
		.border-new{gap: 23px;}
		.rounded {
    border-radius: 10px !important;
    margin-bottom: 20px;
}
.login-card{margin-top: -11px; margin-bottom:0px;}
	.tab-content .car-img {
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
}
.Series{ display:block}
.edit-btn{ position:static}
.paid span{ position: static!important;margin-right: 0px;}
.car-img img {
    border-radius: 10px;
    width: 100%;
}

	.search-box {
    max-width: 330px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 13px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.navbar-toggler{border-radius: 4px;}
.offset-1{ margin:0px;}
.capsion p br{ display:none}
	h4.text-primary{font-size: 48px;}
	.capsion{ position:static;margin-top: -130px; padding-bottom:30px;}
	.nrme{ margin-bottom:10px;}
	.slider-outer{ background:#F93827;}
	.sticky-top{ padding:0px!important;}
	.sticky-top .navbar-light .navbar-brand img {
    width: 58%;
}


h2{ font-size:24px!important;}
    .blosoe h2{ font-size:25px!important}
.attractions .owl-nav .owl-next{top: -28px;
    left: -16px;width: 60px;
    height: 60px;}
	
.attractions .owl-nav .owl-prev{top: -28px;
    right: -16px;width: 60px;
    height: 60px;}
	.brand-badge{padding: 8px 9px;
    font-size: 10px !important;
    margin: 5px;font-weight: 500;
    display: inline-block;}	
.nonebad img{width: 20%;}
.owl-carousel .owl-item img{width: 100% !important;}
.social-icons a{margin: 0 4px!important;}
.copyright .text-body {
    color: #D6D6D6 !important;
    font-size: 13px;
}
.footer .footer-item p {
    line-height: 24px;
}
.attractions-section{ padding-top:0px!important;}
.attractions .attractions-section{padding-top:0px!important;}
.faq-section .faq-section{padding-top: 1px !important;}
.faq-section{ padding-top:0px!important;}
.appimages img{ width:60%!important}
.homepage .capsion{margin-top: -150px!important;}
.rental-content{width: 76%;}
.download-section{ overflow:hidden;}
.faq-section{ overflow:hidden}
.faq-section .why-title{margin-bottom: 40px;padding-top: 0px !important;}

.feature-icon {
    /* width: 60px; */
    height: 52px;
    background-color: #f44336;
    color: white;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 16px;
    padding: 11px;
}

.feature-icon i{ font-size:31px;}
    .home-page.slider-outer .capsion {
        margin-top: -130px;
    }

.home-page.slider-outer .images-box {
    margin: 0px;
    padding: 0px;
    margin-bottom: 39px;
    margin-top: 33px;
}

.images-box{margin-bottom: 39px;
    margin-top: 30px;}
    .slider-outer h4.text-primary {
        font-size: 25px;
    }
  .blogw-main{display: flex;gap: 33px;display: block;}
   .car-type-icons {
    /* 1. Ensure it remains a flex container */
    display: flex; 

    /* 2. The most important part: enable horizontal scrolling */
    overflow-x: auto; 
    
    /* 3. Prevent the items from wrapping to the next line */
    flex-wrap: nowrap;

    /* 4. Align items to the start instead of spreading them out */
    justify-content: flex-start;
    
    /* 5. (Optional but recommended for UX) Hide the scrollbar visually */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    
    /* Add some padding at the end so the last item doesn't touch the edge */
    padding-right: 16px;
    padding-left: 16px;
  }

  /* 5b. (Optional) Hide scrollbar for Chrome, Safari, and Opera */
  .car-type-icons::-webkit-scrollbar {
    display: none;
  }

  /* 6. Give the items some space between them */
  .car-type-icons > div {
    /* Use margin for spacing instead of letting justify-content do it */
    margin-right: 24px; 
    /* Prevent items from shrinking */
    flex-shrink: 0;
  }
  
  /* Remove the margin from the very last item */
  .car-type-icons > div:last-child {
    margin-right: 0;
  }

	
	/* Style the "Open filter" button */
  .filter-toggle-button {
    display: block; /* Make it visible on mobile */
    background-color: #ff2027;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  /* Initially, the content wrapper is collapsed */
  .filter-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
  
  /* When the parent .mobile-collapsible has the 'is-open' class... */
  .mobile-collapsible.is-open .filter-content-wrapper {
    /* ...expand the wrapper to reveal the content */
    max-height: 5000px; /* A large value that content won't exceed */
  }

  /* Some minor style adjustments for the title on mobile */
  .filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .filter-title #clearFiltersBtn {
    margin-top: 0; /* Remove top margin from the button */
  }

  .mobile-none{ margin-top:20px!important;}
  .car-type-icons a.filter-link {
    color: #000;
    font-size: 14px;
}

.card-img-top{width:97%!important;margin-top: 7px!important;}
  .daterangepicker .drp-selected {
    display: inline-block;
    font-size: 11px;
    padding-right: 8px;
    width: 100%;
    margin-bottom: 9px;
    text-align: center;
}
.location-box{ display:block!important}
.seaction-seacrh{ width:100%!important}
.edit-btn{ width:100%!important; margin:0px!important; margin-top:10px!important;}
#arrow{transform: rotate(89deg);
    width: 18px;
    margin: 0 auto;}
	.rating-box{margin-right:9px;}
	body .code-maina{margin-top:0px!important;}
	.brand-logo-img {
    width: 27%!important;
    border-radius: 4px!important;
}
	 }
	 
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.car-type-icons a.filter-link{ color:#000}
	.car-type-icons a.active{ color: #FF2027 !important;}
	
	
	@media (min-device-width: 768px) and (max-device-width: 1180px) {
 

.capsion{max-width:100%!important;top: 10%!important;}
h4.text-primary{        font-size: 43px;
        margin-top: 50px;}
.capsion img{ width:72%;
        margin-top: -36px;}
		
.homepage .capsion{ position: static!important}
.capsion{left: 60px;}
.homepage{ padding:20px 0px;
    background: red;background:#ff0000 url(../img/banner.jpg)  left top no-repeat!important;}
.search-box {
	
	padding:9px;
	
}
.capsion .offset-1{margin-left:0px;}
.brand-badge{padding: 8px 9px !important;
        margin: 2px !important;
        margin-top: 7px !important;
        overflow: hidden;
        display: inline-block;;}
.offset-1{ margin:0px!important;}		
.filter-sidebar{padding: 20px 12px 0px 0px!important;font-size: 11px!important;}		
img{ max-width:100%; height:auto}
.brand-rating{margin-left:0px!important;}
.feature-icon{padding: 18px 23px;width:auto!important; height:auto!important}
.price-section{width: 58%;}
.mobile-topmar{margin-top: 30px;
        margin-bottom: 50px;}
		
		 .navbar-light .navbar-nav .nav-link{margin-right: 15px;}
		 
		 .brand-rating{display: flex!important;
;
    align-items: center!important;
    margin-top: -41px!important;
    margin-left: 0px!important;
    gap: 8px!important;
    float: right;
    width: 55%!important;
    margin-right: -6px!important;}
	.car-img img{ width:100%!important; height:auto!important}
	.btn-outline-secondary{font-size: 12px;}
}



.mbile-box h5 a{color: #021016 !important;}
.seaction-seacrh{ width:37%}
.findmd .card-body{width: 90%;
    padding-bottom: 17px !important;}


#searchModal .search-box{box-shadow:0px 0px 0px!important; padding:0px!important}
#searchModal .modal-dialog{}
#searchModal .search-box{ max-width:100%}
#editModal .search-box{box-shadow:0px 0px 0px!important; padding:0px!important}
.findmd .car-card a img{
    width:100%;}
	
.moddile-images img{height: 260px;}	
.moddile-images1 img{height: 260px;}	
.findmd .car-title a{ color:#000}
.findmd .car-title span{ color:#000!important;text-decoration: none !important;}
.findmd .rating i{margin-right: 6px;}


.findmd .car-card a{ width:100%;}


#editModal .modal-header{    padding: 5px 0px;
    margin-bottom: 10px;}
#editModal .modal-body{ padding:0px;}
#editModal form{padding-bottom: 0px;
    margin-bottom: 3px;}
#editModal .modal-content{padding-top: 10px !important;}	
#editModal .form-check{margin-left: 5px;}
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td{min-width: 26px;
    width: 24px;
    height: 24px;
    line-height: 16px;
    font-size: 10px;height: 19px;
    border-radius: 4px;
    border: 1px solid transparent;}
	.daterangepicker td.active, .daterangepicker td.active:hover{ background:#FF2027!important}
	
	.appimages img{ width:100%}
	#use-current-location{position: absolute;
    right: 20px;
    border: 0px;margin-top: 6px;}
	#use-current-location:hover{ background:none}
	#use-current-location:focus{ outline:none; border:0px;box-shadow:0px 0px 0px!important}
	#use-current-location:active{ outline:none;box-shadow:0px 0px 0px!important}
	.btn-outline-secondary{ margin-bottom:20px;}
	#use-current-location img{width: 19px;
   }
   
   
   #searchModal .modal-header{margin: 0px 14px;padding: 0px 0px;font-size: 14px;}
   
   
   
   
   @media (min-device-width: 1200px) and (max-device-width: 1400px) {
   
   
   .homepage .capsion{top: 11%;}
    .homepage .search-box{margin-top: 60px;}
   .navbar-light .navbar-nav .nav-link{margin-right: 15px;}
   
   
   }
   
  .homepage-images{ width:100%}
  .show-more{color: #000!important;}
  
  .btn-check:focus+.btn-primary, .btn-primary:focus{ background:#FF2027!important;box-shadow:1px 1px 1px #FF2027!important}
  
  
  
  .card-img-top {
    cursor: pointer;
    width: 268px;
    height: 168px !important;background-size: cover;
    background-position: center;
    background-size: inherit !important;
    background-repeat: no-repeat;
}

.modal-content-font-color {color: black !important;}	

.brand-logo-img {
    width: 27px;
    border-radius: 4px;
}


button#filterApplyBtn{margin-top: 20px;}


.filter-box-scroll{height: 130px;
    overflow-y: scroll;}

