:root {
    --primary-blue: #3963ed;
    --secondary-blue: #3466ad;
    --blue-light: #c9e1fe;
    --blue-light-2: #6da7ef;
    --grey-light: #f3f3f3;
    --grey-dark: #e8ecf1;
    --yellow-dark: #f9cd15;
    --green-dark: #00bc15;
    --red: #ea0000;
	--new-green: #117372;
}


Body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

.fontmedium {
	font-weight: 400;
}

.font-semibold {
 	font-weight: 600;
}

/* Font Size */
.font-size-xs {
    font-size: 10px !important;
}

.font-size-sm {
    font-size: 12px !important;
}

.font-size-md {
    font-size: 14px !important;
}

.font-size-lg {
    font-size: 16px !important;
}

.font-size-xl {
    font-size: 20px !important;
}

.font-size-xxl {
    font-size: 24px !important;
}

.text-primary-blue {
    color: var(--primary-blue);
}
.text-primary-green {
    color: var(--green-dark);
}

.text-primary-red {
    color: var(--red);
}
/* Font size end */

.project_logo {
    width: 150px;
}

/* Background */
.bg-blue-primary {
    background-color: var(--primary-blue);
}

.bg-blue-secondary {
    background-color: var(--secondary-blue);
}
.bg-blue-light {
    background-color: var(--blue-light);
}
.bg-blue-light-2 {
    background-color: var(--blue-light-2);
}

.bg-grey-light {
    background-color: var(--grey-light);
}

.bg-blue-primary-outline {
    background-color: var(--secondary-blue);
    border: 1px solid var(--primary-blue);
    color: white;
}

.bg-grey-dark {
    background-color: var(--grey-dark) !important;
}

.bg-grey-darker {
    background-color: #797979;
}

.bg-yellow {
    background-color: var(--yellow-dark);
}
/* Background  end*/

/* Header */
.header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .active {
    border-bottom: 2px solid var(--primary-blue);
}

.button-4 {
    border-radius: 6px;
    color: #117372;
    background-color: #fdcf41;
    box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    list-style: none;
    padding: 6px 14px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.3, 0, 0.5, 1);
    vertical-align: middle;
    white-space: nowrap;
    word-wrap: break-word;
}

.button-4:hover {
    /* border: 2px solid rgba(253, 206, 65, 0.753); */
    outline: 2px solid rgba(253, 206, 65, 0.753);
    background-color: rgba(253, 206, 65, 0.281) ;
    color: #fff;
    text-decoration: none;
    transition-duration: 0.1s;
}

/* Flags IMG */
.img-flag{
    height:0.7rem;
    margin-bottom:4px;
}

/* Header end */

/* Footer */
.footer p,
.footer p a,
.footer p i {
    color: white !important;
}

.footer .footer-content,
.footer .footer-socials {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.social-flex {
    justify-content: flex-end;
}

/* Footer Icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #fdcf41;
    color: #fdcf41;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}
.social-icon:hover {
    background-color: #fdcf41;
    color: white;
}

/* Footer end */


/* Hero section */
.hero-section {
    background-color: var(--grey-dark);
    position: relative;
}
/* Hero section end */

/* Input Forms */

/* New Input styles */
.input-container {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #000;
    z-index: 10;
}

.input-field {
    width: 100%;
    padding: 10px 10px 10px 35px;
    /* left padding for icon */
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    box-sizing: border-box;
}

.input-field:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.6);
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.input-field:focus + .floating-label,
.input-field:not(:placeholder-shown) + .floating-label {
    top: 15px;
    left: 35px;
    font-size: 10px;
    color: #000;
    padding-bottom: 10px;
}

/* Input with no icons */

.input-container.no-icon .input-field {
    width: 100%;
    padding: 10px 10px 10px 10px;
    /* left padding for icon */
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    box-sizing: border-box;
}

.input-field:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.6);
}

.input-container.no-icon .floating-label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.input-container.no-icon .input-field:focus + .floating-label,
.input-container.no-icon
    .input-field:not(:placeholder-shown)
    + .floating-label {
    top: 15px;
    left: 10px;
    font-size: 10px;
    color: #000;
    padding-bottom: 10px;
}
/* Input with no icons end */

.floating-btn-right {
    width: 60px;
    height: 60px;
    border-radius: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 5rem;
    right: 2rem;
}

.filter-flex {
    display: flex;
    flex-direction: column;
}

.filter-flex.overflow-flex {
    height: 220px;
    border: 1px solid var(--grey-dark);
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 5px;
}

/* New Input styles end */

.input-focus-none:focus {
    outline: none !important;
    box-shadow: none !important;
}

.bg-focus-grey:focus {
    background-color: var(--grey-light);
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

.border-none {
    border: none;
}

.submit-btn:hover,
.btn.bg-blue-primary {
    background-color: var(--primary-blue);
    color: white;
}

/* Input Forms end */

.company-banner img {
    width: 100px;
}

.promotion_image {
    height: 200px;
    width: 100%;
}

.hero-promo-img {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100px;
}

.hero-car-img {
    /* width: 150px; */
    width: 180px;
}

.hero-company-img {
    /* width: 80px; */
    min-width: 60px;
    width: auto;
    max-width: 100px;
    height: 40px;
}

.hero-section .discount-span {
    /* For browsers that do not support gradients */
    background-color: var(--red);
    background-image: linear-gradient(var(--yellow-dark), var(--red));
}

.hero-section .car-offers {
    margin-top: 6rem;
}

.info-flex {
    width: 30%;
}
.info-flex .info-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--yellow-dark);
    position: relative;
}

.info-flex .info-img i {
    color: var(--primary-blue);
    position: absolute;
    left: -5px;
    top: -10px;
    font-size: 50px;
}

.subscribe-flex {
    width: 40%;
}

/* Result Card */
.result-card {
    border-top: 5px solid var(--primary-blue);
}

.resultcard {
    border-top: 5px solid #117372;;
}


/* input form style */
.input-style {
    border: none;
    border-bottom: 2px solid #ea0000;
    border-radius: 0px;
}
/* end of input form style */

/* font style  */
.font-style {
    color: #ea0000;
}
/* end of font style */
.btn-style {
    color: var(--green-dark);
    border: 1px solid var(--green-dark);
}

.btn-style:hover {
    color: white;
    background-color: var(--green-dark);
}

.container-admin {
    position: absolute;
    top: 4rem;
    left: 55vh;
    width: 55rem;
}

.hr {
    margin: 0.5rem 0;
    opacity: none;
    color: #000000;
}

.bg-color {
    background-color: #4d4d4d;
}

.ml-4 {
    margin-left: 4rem;
}

.p-center {
    margin-left: auto;
    margin-right: auto;
}

.svg-ml-6 {
    margin-left: 6rem;
}

table,
td,
th {
    border: 1px solid;
}

.vertical-hr {
    height: 100%;
    width: 2px;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

/* Booking Progress bar */
.booking-progress .progress-flex .progress-text {
    color: var(--grey-light);
}

.booking-progress .progress-flex.active .progress-text {
    color: var(--primary-blue);
}

.booking-progress .progress-flex .booking-bar {
    width: 100%;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

.booking-progress .progress-flex.active .booking-bar {
    border-bottom: 2px solid var(--primary-blue);
}

.border-radius-md {
    border-radius: 10px;
}

.car-detail-card img {
    width: 180px;
}

.border-left-d-md {
    border-left: 2px solid var(--primary-blue);
}

.promo-canvas {
    width: 80vw !important;
}

.car-type-list {
    border: 1px solid var(--grey-dark);
    padding: 10px 30px;
    background-color: var(--grey-light);
}

input[type="radio"] {
    border: 1px solid black !important;
}
input[type="radio"].pay-radio {
    width: 22px;
    height: 22px;
}
input[type="radio"]:checked {
    background-color: black !important;
}

.pay-card.active {
    border: 2px solid var(--primary-blue);
}

#loading {
    background: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 9999;
}

#loading img {
    width: clamp(
        120px,
        auto,
        180px
    ); /*clamp(min-width, preferred-value, max-width)*/
}

/* Button Round Styles */
.btn-round {
    border-radius: 20px;
}
/* Button Round Styles */

.search-section {
    position: relative;
    min-height: 50vh;
}

.search-section .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter-card {
    display: block;
    position: static;
}

/* privacy Banner */
.bg-green{
    background-color: var(--new-green);
}
.bg-green:hover{
    background-color: #0B4847;
}
.border-green{
    border: 1px solid var(--new-green);
    color:#117372;
}
.border-green:hover{
    background-color: var(--new-green);
    color: white;
}


@media only screen and (max-width: 600px) {
    .ml-4 {
        margin-left: 0rem !important;
    }

    .svg-ml-6 {
        margin-left: 9rem !important;
    }
}
/*end of  customer-admin css */

/* Mobile */
@media screen and (max-width: 992px) {
    .font-size-xs {
        font-size: 8px !important;
    }

    .font-size-sm {
        font-size: 10px !important;
    }

    .font-size-md {
        font-size: 12px !important;
    }

    .font-size-lg {
        font-size: 14px !important;
    }

    .font-size-xl {
        font-size: 18px !important;
    }

    .font-size-xxl {
        font-size: 20px !important;
    }

    .project_logo {
        width: 120px;
    }

    .social-flex {
        justify-content: flex-start;
    }

    .company-banner img {
        width: 80px;
    }

    .hero-promo-img {
        width: 50%;
    }

    .search-form {
        max-width: 100% !important;
    }

    .info-flex {
        width: 100%;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .subscribe-flex {
        width: 100%;
    }
    .border-left-d-md {
        border: none;
    }

    .promo-canvas {
        width: 100vw !important;
    }

    .floating-label {
        font-size: 10px;
    }

    .input-field:focus + .floating-label,
    .input-field:not(:placeholder-shown) + .floating-label {
        padding-bottom: 15px;
    }

    .filter-card {
        display: none;
        position: fixed;
        top: 15%;
        left: 5%;
        background: white;
        z-index: 999;
        width: 90%;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        width: 100vw;
        height: 100vh;
    }

    .filter-card.active,
    .overlay.active {
        display: block;
    }

    .filter-flex {
        display: flex;
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }

    .filter-flex.overflow-flex {
        height: 120px;
    }
}

@media screen and (max-width: 780px) {
    .footer .footer-content,
    .footer .footer-socials {
        flex-direction: column;
    }
}

/** datepicker and timepicker**/
.datepicker-days table,
td,
th {
    border: none !important;
}

.ui-timepicker-standard a {
    font-size: 14px;
}

.ui-timepicker-viewport > .ui-menu-item {
    width: auto !important;
    white-space: nowrap !important;
}
/** end datepicker and timepicker**/

@media screen and (min-width: 1400px) {
    .supplier-flex {
        gap: 0.5rem;
    }

    .supplier-flex .supplier-card {
        width: 150px;
    }
}

@media screen and (max-width: 1399px) {
    .supplier-flex {
        gap: 0.9rem;
    }

    .supplier-flex .supplier-card {
        width: 120px;
    }
}
.my-res-menu:hover ul.dropdown-menu {
    display: block;
}

.ckeditor-benifit-list ul {
	padding-left: 0;
    list-style: none;
}

.ckeditor-benifit-list li {
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.ckeditor-benifit-list li::before {
  content: "✔";
  color: green;
  position: absolute;
  left: 0;
  top: 0;
}