@font-face {
    font-family: "BRCandor";
    src: url("webfonts/BRCandor-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

:root {
    --tooltip-font-size: 0.875rem;
    --tooltip-max-width: 200px;
    --tooltip-color: #ffffffcc;
    --tooltip-bg: #334454;
    --tooltip-border-radius: 12px;
    --tooltip-opacity: 0.9;
    --tooltip-padding-y: 0.125rem;
    --tooltip-padding-x: 0.25rem;
    --tooltip-margin: 0;

    --tooltip-arrow-width: 0.8rem;
    --tooltip-arrow-height: 0.4rem;
    --tooltip-arrow-color: black;
}


body,
html {
    height: 100%;
    margin: 0;
    font-family: "BRCandor", sans-serif;
}


/* Main Wrapper */
.main-wrapper {
    width: 100%;
    margin: auto;

    .header-wrapper {
        width: 100%;
        box-shadow: 0px 0px 4px 0px #00000014 !important;
        border-bottom: 1px solid #00000014;
    }

    .header {
        width: 90%;
        margin: auto;

        .logo-text {
            font-weight: 500;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
            color: #26AF51;
        }

        .title {
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0%;
            text-align: center;
            color: #444444CC;
        }

        .shopping-cart {
            position: relative;
            border: 1px solid #EBEBEB;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;

            .cart-value {
                position: absolute;
                top: -6px;
                right: -6px;
                width: 18px;
                height: 18px;
                border-radius: 50%;
                background-color: #26AF51;
                color: #fff;
                font-weight: 500;
                font-size: 12px;
                line-height: 12px;
                letter-spacing: 0%;
                text-align: center;

            }
        }
    }
}


/* Cart panel start*/
.cart-panel {
    width: 436px !important;
    padding: 24px !important;
    border-radius: 16px !important;
}

.cart-info {
    .cart-title {
        font-weight: 600;
        font-size: 20px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #303233;
    }

    .cart-value {
        width: 31px;
        height: 22px;
        border-radius: 50px;
        background: #F3F3F3;
        font-weight: 600;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-btn {
        width: 32px;
        height: 32px;
        border-radius: 40px;
        padding: 10px;
        background-color: #F0F3F6;
    }

    .product-wrapper {
        border-radius: 12px;
        padding: 12px 16px;
        background-color: #F0F3F6;
    }


    .cart-product-img {
        width: 48px;
        height: 48px;
        border-radius: 4px;
        overflow: hidden;

    }

    .product-title {
        color: #303233;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0%;
    }

    .quantity {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0px;
        color: #00171D;
        background-color: white;
        border: 1px solid #EBEBEB;
        border-radius: 4px;
    }

    .price {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0%;
        text-align: right;
        color: #303233;
    }

    .hourly-price {
        font-weight: 500;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #6E88A2;
    }

    .product-close {
        border: none;
        outline: none;
        background-color: transparent;
    }

    .cart-products-container {
        height: 450px;
        overflow: scroll;
    }

    .footer-text {
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0px;
        vertical-align: middle;
        color: #444444CC;
    }


    .chekout-btn {
        padding-top: 8px;
        padding-right: 16px;
        padding-bottom: 7px;
        padding-left: 16px;
        border-radius: 8px;
        border: none;
        outline: none;
        width: 100%;
        transition: all 0.3s ease-in-out;
        background-color: #26AF51;
        color: white;

        &:hover {
            opacity: 0.7;
        }
    }
}

/* Cart panel end */
/* main content */
.content {
    width: 90%;
    margin: auto;

    .section-title {
        font-weight: 600;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #231F20;
    }

    .sub-title {
        font-weight: 400;
        font-size: 16px;
        line-height: 25px;
        letter-spacing: 0%;
        color: #231F20CC;
    }

    .btn-theme-primary,
    .btn-theme-secondary {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        text-align: center;

    }

    .btn-theme-primary,
    .btn-theme-secondary {
        padding-top: 8px;
        padding-right: 16px;
        padding-bottom: 7px;
        padding-left: 16px;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;

        &:hover {
            opacity: 0.7;
        }
    }

    .btn-theme-primary {
        background-color: #26AF51;
        color: white;
    }

    .btn-theme-secondary {
        border: 1px solid #F0F3F6;
        color: #26AF51;
    }
}

/* Global styling start */

.dropdown {
    box-shadow: none !important;

    .btn {
        border: 1px solid #dadada;
        background: none;
        /* border-radius: 50px; */
        /* color: #003264CC; */
        color: #303233;
        padding: 9px 20px 7px 20px;
        border-radius: 12px;

        &:hover {
            background-color: #e8ecf3;
        }

        img {
            margin-top: -2px;
        }

        &.v1 {
            background: #F0F3F6;
            border-color: #F0F3F6;
        }

        &.v2 {
            background-color: #ffffff;
            border-color: #ffffff;
        }
    }

    .dropdown-menu {
        padding: 12px;
        border-radius: 12px;
        border: none;
        background-color: white;
        overflow: hidden;
        box-shadow: 0 1px 8px #0000001a;
        width: 200px;

        .dropdown-item {
            padding: 8px;
            color: #003264cc;
            display: flex;
            align-items: center;
            gap: 8px;

            &:focus {
                background-color: rgba(255, 255, 255, 0.076);
                color: #00326487;
            }
        }

        .v1 {
            padding-right: 0px;
        }


        .menu-items {
            max-height: 200px;
            overflow-x: hidden;
            overflow-y: scroll;
            padding-right: 2px;

            &::-webkit-scrollbar {
                width: 8px;
                /* Width of the scrollbar */
                height: 8px;
                /* Height of the scrollbar for horizontal scrollbars */
            }

            &::-webkit-scrollbar-track {
                background: #f6f6f6;
                /* Track background color for dark theme */
                border-radius: 4px;
                /* Track border-radius */
            }

            &::-webkit-scrollbar-thumb {
                background-color: #565656;
                /* Thumb color for dark theme */
                border-radius: 4px;
                /* Thumb border-radius */
                border: 2px solid #e3e3e3;
                /* Padding around thumb */
            }

            &::-webkit-scrollbar-thumb:hover {
                background-color: #c0c0c0;
                /* Thumb color on hover for dark theme */
            }
        }
    }

    .dropdown-item {
        font-size: 14px;
        color: #2c3e50;
    }

    .dropdown-item:hover {
        background-color: #e8f0fe;
    }

    .form-control {
        font-size: 14px;
    }

    .dropdown-header {
        position: sticky;
        top: 0;
        background: white;
        z-index: 1;
        padding: 0px;
        padding-right: 12px;
        padding-bottom: 8px;

        .search-box {
            border-radius: 8px;
            background-color: white;
            color: #003264cc;
        }

        input {
            margin-top: 2px;
            /* border: 1px solid #DADADA; */
            /* background-color: white; */
            /* margin-bottom: 0px; */
            /* height: 32px; */
        }
    }

    .dropdown-toggle {
        width: 100%;
        padding: 10px;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 12px;
        text-align: left;
        cursor: pointer;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-options {
        display: none;
        position: absolute;
        width: 100%;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 150px;
        overflow-y: auto;

        &.show {
            display: block;
        }
    }

    .dropdown-option {
        padding: 10px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .dropdown-option:hover {
        background-color: #f1f7ee;
    }

    .dropdown-options {
        display: none;
        position: absolute;
        width: 100%;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 150px;
        overflow-y: auto;
    }
}

.status {
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    width: max-content;

    &.success {
        color: #26AF51;
        background: #26AF5114;
    }

    &.danger {
        color: #E0211F;
        background-color: #E0211F0F;
    }

}

.input-group {
    position: relative;
    height: 40px;
}

.input-group span {
    z-index: 100;
}

.input-group .form-control {
    border-radius: 12px !important;
    padding-left: 50px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin: 0 !important;

    &::placeholder {
        color: #00326466;
    }
}

.input-group .input-icon {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: #00326466;
}

.form-control:focus {
    box-shadow: none;
}

.check {
    padding: 13px 23px 11px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    border-radius: 12px;
    border: 1px solid #ebebeb;
    cursor: pointer;
    color: #303233;

    &.checked {
        font-weight: 500;
        background-color: #26AF511A;
        border: 1px solid #26AF5199
    }
}

textarea {
    background-color: #F6F7F9;
    resize: none;

    &:focus {
        background-color: #f6f7f9 !important;
    }
}

.form-group {
    input {
        border-radius: 12px;
        padding: 13px 12px 11px;

        &:focus {
            background-color: #f6f7f9;
        }
    }

    label {
        font-size: 16px;
        font-weight: 600;
        line-height: 20.8px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }

    small {
        font-size: 12px;
        font-weight: 400;
        color: #00326499;
    }
}


.form-control {
    border-radius: 10px;
    border: none;
    padding: 12px;
    padding-top: 16px;
    margin-bottom: 10px;
    background-color: #F6F7F9;

    &::placeholder {
        color: #30323366;
    }

    &:focus {
        border-color: #003264;
        /* background-color: #F9F9F9; */
        outline: 0;
        box-shadow: none;
    }
}

.form-select {
    border: none;
    background-color: #f6f7f9;
    border-radius: 12px;
    padding: 13px 12px 11px;
}

.help-box {
    display: flex;
    align-items: center;
    background-color: #f7c33329;
    border-radius: 12px;
    padding: 20px;
    max-width: 100%;
}

.help-box-mob {
    display: flex;
    align-items: center;
    background-color: #f7c33329;
    border-radius: 12px;
    padding: 20px;
    padding-bottom: 28px;
    max-width: 100%;
    line-height: 1px;
}

.help-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fdeccf;
    color: #f1a60e;
    font-size: 32px;
    font-weight: 100;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.help-text p {
    font-size: 16px;
    color: #003264cc;
    line-height: 20.8px;
}

.help-link {
    font-size: 14px;
    color: #00274d;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    cursor: pointer;

    &:hover {
        opacity: 0.7;
    }
}

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


.right-canvas {
    width: 35% !important;
    padding: 32px;
    z-index: 9999;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;

}

.form-control-category {
    border-radius: 10px;
    background-color: #f9f9f9;

    &::placeholder {
        color: #30323366;
    }

    &:focus {
        border-color: #003264;
        outline: 0;
        box-shadow: none;
    }

    .form-control-category-input {
        background: #f9f9f9;
        width: 100%;

        &:focus {
            outline: none;
            border: none;
        }
    }
}

.add-btn {
    font-weight: 600;
    background-color: transparent;
    border-radius: 50px;
    padding: 8px 16px 7px 12px;
    border: #26AF51 solid;
    color: #26AF51;
    transition: all 0.3s ease-in-out;


    &:hover {
        opacity: 0.7;
    }
}




/* Global styling end */




/* Stepper form */
.stepper {
    .checkpoint-active {
        width: 40px;
        height: 40px;
        border: 2.5px solid #26AF51;
        border-radius: 50%;
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #26AF51;
        font-size: 20px;
        font-weight: 600;
        flex-shrink: 0;

    }

    .checkpoint-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #6E88A2;
        color: white;
        font-size: 20px;
        font-weight: 600;
        flex-shrink: 0;

    }

    .checkpoint-completed {
        width: 40px;
        height: 40px;
        border: 2.5px solid #26AF51;
        background-color: #26AF51;
        border-radius: 50%;
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #26AF51;
        font-size: 20px;
        font-weight: 600;
        flex-shrink: 0;
    }

    .stepper-divider {
        border: 3px solid #6E88A229;
        height: 0;
        width: 100%;
    }

    .checkpoint-label {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        color: #6E88A28A;
        white-space: nowrap;

        &.active {
            color: #303233;
        }
    }
}

.section-divider {
    border-bottom: 1px solid #6E88A229;
    width: 100%;
}


.stepper-card {
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 24px;
    border-radius: 16px;
    background-color: #FFFFFF;
    width: 70%;

    .stepper-form-label {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233;
    }
}

.increment-btn-wrapper {
    background-color: #F0F3F6;
    border-radius: 12px;
    padding: 12px 24px;

    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #303233;

    .text-subscript {
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233;
    }
}

.increment-btn {
    border: 1px solid #DBDEE0;
    background-color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;

    &:hover {
        opacity: 0.7;
    }

}

.label-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #6E88A2;
}

.form-check-input {
    background-color: #6e88a27a;
}

.form-check-input:checked {
    background-color: #26AF51;
    border: transparent;
}


.selectable-card {
    background: #6E88A214;
    /* border: 1.5px solid #26AF51; */
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;

    &:hover {
        opacity: 0.7;
    }

    &.active {
        border: 1.5px solid #26AF51;
    }

    .title {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #303233;
    }

    .subtitle {
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233CC;
        ;
    }
}


.product-card {
    box-shadow: 0px 1px 4px 0px #0000001A;
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 16px;
    padding-left: 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    .card-img {
        border-radius: 8px;
        overflow: hidden;
    }

    .product-title {
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #444444;

    }

    .product-stock {
        color: #444444;
        font-weight: 500;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0%;

    }

    .product-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #00326480;
    }

    .product-description-list {
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0%;
        color: #444444CC;
    }

    .card-btn {
        background-color: transparent;
        border: none;
        outline: none;
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0px;
        text-align: center;
        vertical-align: middle;
        color: #26AF51;
        padding: 0;
        margin: 0;
        transition: all 0.3s ease-in-out;

        &:hover {
            opacity: 0.7;
        }
    }

    .product-price {
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233;
    }

    .card-subscript {
        font-weight: 500;
        font-size: 12px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #444444;
    }


    .product-booking-btn {
        background-color: #26AF51;
        color: white;
        border: none;
        outline: none;
        width: 100%;
        padding-top: 8px;
        padding-right: 16px;
        padding-bottom: 8px;
        padding-left: 16px;
        border-radius: 12px;
        transition: all 0.3s ease-in-out;

        &:hover {
            opacity: 0.7;
        }

        &.v1 {
            border: 1px solid #26AF51;
            color: #26AF51;
            background-color: white;
        }

        &:disabled {
            background-color: #B0BFCD;
        }

    }

    .product-date {
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233;
    }

    .product-available-time {
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #6E88A2;
    }

    .product-time-slot {
        background-color: #F3F5F8;
        cursor: pointer;
        border-radius: 50px;
        padding-top: 8px;
        padding-right: 12px;
        padding-bottom: 8px;
        padding-left: 12px;

        &.selected {
            background-color: #26AF51;
            color: white;
        }

    }


    &:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

}



/* ===================== All Rentals Start =============== */
.filters {
    button {
        border: none;
        outline: none;
        background-color: transparent;
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 6%;
        color: #444444CC;
    }

}

.filters-bar {
    .title {
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233;
    }

    .title-2 {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0%;

    }

    .subtitle {
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233;
        margin: 5px 0;
    }

    .description {
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233CC;
    }

    .filter-card {
        border-radius: 12px;
        border-width: 1px;
        padding: 16px;
        border: 1px solid #6E88A229
    }
}

.view-toggle-buttons button {
    border: none;
    background: none;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #303233CC;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 6%;
    transition: all 0.3s ease-in-out;

    &:hover {
        opacity: 0.7;
    }
}

.search-view-heading {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 6%;
    color: #444444CC;
}

.text-success {
    color: #26AF51 !important;
}

/* ===================== All Rentals End =============== */


/* ===================== Product Page Start =============== */

/* .row>div {
    border: 1px solid;
} */

.product-page {
    .product-image {
        border-radius: 16px;
    }

    .breadcrum {
        background: #6E88A229;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #003264;
        border-radius: 50px;
        padding: 4px 10px;
        width: max-content;
        padding: 4px 10px;


        button {
            border: none;
            background-color: transparent;
            padding: 0;
            color: #003264;
            transition: all 0.3s ease-in-out;

            &:hover {
                opacity: 0.7;
            }

        }

    }

    .product-title {
        font-weight: 600;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .product-price {
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #303233;
    }

    .hourly-price {
        font-weight: 500;
        font-size: 12px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #444444CC;
    }

    .product-description {
        font-weight: 400;
        line-height: 22px;
        font-size: 16px;
        letter-spacing: 0%;
        color: #444444CC;
    }

    .availaibility {
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #444444;
    }

    .calender-card {
        box-shadow: 0px 1px 4px 0px #0000001A;
        border-radius: 12px;
        padding: 24px 16px;
        max-width: 350px;


        .calender-heading {
            color: #303233;
            font-weight: 600;
            font-size: 14px;
            line-height: 100%;
            letter-spacing: 0%;
        }

        #current-month-display {
            font-weight: 600;
            font-size: 14px;
            line-height: 100%;
            letter-spacing: 0%;
            color: #303233;
        }

        .month-nav {
            cursor: pointer;
        }

        .days {
            font-weight: 500;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
            color: #6E88A2;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
        }

        .calender-wraper {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            /* 7 columns */
            gap: 5px;
        }

        .calender-legends {

            font-weight: 500;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 0%;

            .legend {
                border-radius: 50%;
                width: 6px;
                height: 6px;
                background-color: #26AF51;

                &.available {
                    background-color: #26AF5129;
                }

                &.unavailable {
                    background-color: #D9D9D9;
                }
            }
        }

        .calender-box {
            cursor: pointer;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6E88A2;
            background-color: #F3F5F8;
            font-weight: 500;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;


            &.available {
                background-color: #26AF511A;
                color: #26AF51;
            }

            &.selected {
                background-color: #26AF51;
                color: white;
            }
        }

        .time-slots-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .calender-time-slot {
            background-color: #F3F5F8;
            cursor: pointer;
            border-radius: 50px;
            padding-top: 8px;
            padding-right: 12px;
            padding-bottom: 8px;
            padding-left: 12px;

            &.selected {
                background-color: #26AF51;
                color: white;
            }

        }

        button {
            border-radius: 12px;
        }
    }
}

/* ===================== Product Page End =============== */

/* ===================== Cart page Start =============== */

.label {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #6E88A2;
}

.label-value {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #003264;
}


.total {
    color: #003264;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
}

.cart-page {
    .cart-card {
        box-shadow: 0px 1px 4px 0px #0000001A;
        border-radius: 16px;
        padding: 32px;

    }

    .heading {
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0px;
        color: #231F20CC;
    }

    .cart-heading {
        font-weight: 600;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0px;
        vertical-align: middle;
        color: #003264;
    }

    .apply-btn {
        max-width: 332px;
        height: 40px;
        border: 1px solid #26AF51;
        border-radius: 8px;
        padding: 8px 16px;
        background-color: #26AF5114;

        input {
            border: none;
            outline: none;
            background-color: transparent;
            width: 100%;

        }

        button {
            border: none;
            color: white;
            border: none;
            position: absolute;
            right: 2px;
            top: 2px;
            background-color: #26AF51;
            border-radius: 8px;
            padding: 9px 16px;
            transition: all 0.3s ease-in-out;


            &:hover {
                opacity: 0.7;
            }
        }

    }

    .btn-theme-secondary {
        padding: 10px 24px;
        border-radius: 12px;
        border: 1px solid #26AF51
    }

    .btn-theme-primary {
        padding: 10px 50px;
        border-radius: 12px;
        border: 1px solid #26AF51
    }

    .coupon {
        border-radius: 8px;
        border: 1px solid #26AF51;
        padding: 16px;
        width: 260px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        background: #26AF5114;

    }



    .item-1 {
        flex: 5;
        /* flex-grow: 5, flex-shrink: 1, flex-basis: 0 */
        min-width: 0;
        /* Allows item to shrink below default minimum size */
    }

    .item-2 {
        flex: 2;
        /* flex-grow: 1, flex-shrink: 1, flex-basis: 0 */
        min-width: 0;
        /* Allows item to shrink below default minimum size */
        overflow-wrap: break-word;
        /* Ensures content wraps instead of expanding */
    }

    .cart-image {
        width: 64px;
        height: 64px;
    }

    .cart-increment-btn {
        width: 32px !important;
        height: 32px !important;
        border: 1px solid #EBEBEB !important;
        background-color: #F0F3F6 !important;
    }

    .quantity {
        width: 32px !important;
        height: 32px !important;
    }
}

/* ===================== Cart page End =============== */

/* ===================== Checkout page Start =============== */

.checkout-card {
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 1px 4px 0px #0000001A;

    .heading {
        font-weight: 600;
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #6E88A2;
    }
}

.cart-summary {
    .cart-summary-title {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0%;
        color: #303233;
    }
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #6e88a23d;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 12px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.payment-option-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: left;
}

.payment-option-details {
    font-size: 13px;
    font-weight: 400;
    line-height: 16.9px;
    text-align: left;
    color: #00326480;
}

.payment-option:hover {
    border-color: #26AF51;
    background-color: #26AF5114;
}

.payment-option img {
    width: 30px;
    margin-right: 1rem;
}

.payment-btn-active {
    background: #26AF5114;

}


.participant-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #003264;
    text-decoration: none;
    transition: all 0.3s ease-in-out;

    &:hover {
        opacity: 0.7;
    }
}

.participant-email {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6E88A2;
}


.add-participant-canvas {
    .participat-form-header {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #303233;

        label {
            font-weight: 400;
        }
    }

    .add-participant-form {
        border: 1px solid #EBEBEB;
        padding: 1rem;
        border-radius: 12px;
    }

    .customer-info {
        padding: 1.5rem;
        background-color: #F6F7F9;
        border-radius: 16px;

        .customer-email,
        .customer-phone {
            padding: 4px 0;
            font-size: 16px;
            font-weight: 400;
            line-height: 22px;
            text-align: left;
            text-underline-position: from-font;
            text-decoration-skip-ink: none;
            color: #303233CC;

        }
    }
}

/* ===================== Checkout page End =============== */

/* ===================== Booking Confirmed page Start =============== */

.confirmed-booking-card {
    border-radius: 16px;
    border: 1px solid #E5EAEF;
    padding: 32px 24px;
    margin: auto;

    max-width: 546px;

    .btn-theme-primary,
    .btn-theme-secondary {
        border-radius: 12px;
    }

    .btn-theme-secondary {
        border: 1px solid #26AF51;
    }

    .form-check label {
        color: #303233;
        font-weight: 400;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .form-check input:checked {
        background-color: #1C1C1A;
    }
}

.booking-inner-card {
    background-color: #FAFAFA;
    border-radius: 12px;
    padding: 24px;
}

.booking-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #6E88A2;
    padding: 0 20px;
}

.booking-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #6E88A2;
}

.bookig-value {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #545964;
}

.booking-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #303233;
}

.booking-subheading {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;

    color: #303233CC;
}

/* ===================== Booking Confirmed page End =============== */


/* Media Query  Start*/
@media screen and (max-width: 768px) {
    .content {
        width: 100%;
        padding: 16px;
    }

    .stepper-card {
        width: 100%;


        .stepper-form-row {
            gap: 5px !important;
        }

        .increment-btn-wrapper {
            margin: 10px 0;
        }

    }

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

    .stepper-wrapper {
        width: 75% !important;
    }

    .cart-panel {
        width: 100% !important;
        padding: 16px !important;
    }

    .cart-info {
        .cart-products-container {
            height: auto;
        }
    }

    .breadcrum {
        margin-top: 16px;
    }

    .calender-card {
        width: 100%;
    }

    .payment-option {
        flex-direction: column;
        align-items: start;
        gap: 10px;

        .payment-option-title {
            font-size: 14px;
        }
    }

    .checkout-row {
        gap: 20px;
    }

    .checkout-payment-form {
        margin-top: 20px;
    }

    #offcanvasCart {
        height: auto !important;
    }

    .cart-card {
        overflow: scroll;
    }

    .item-1,
    .item-2 {
        min-width: 0;
        /* Critical for small screens */
    }

    .item-1 {
        flex: auto !important;
    }

    .item-2 {
        flex: auto;
    }

    .coupon,
    .apply-btn {
        max-width: 207px !important;
        font-size: 12px !important;
    }

    .checkout-payment-form {
        gap: 16px !important;
    }

    .right-canvas {
        padding: 16px;
    }

    #offcanvasCart {
        padding: 0px !important;
    }
}


.canvas-cross-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 992px) {
    .right-canvas {
        width: 100% !important;
        height: 90vh !important;
    }
}


@media screen and (max-width: 480px) {
    .product-card-image-list {
        width: 72px;
        height: 72px;
    }
}

/* Media Query  End*/



/* Date Range Picker */
.daterange {
    background: #f8f9fa;
    border: none;
    border-radius: 16px;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    overflow: hidden;
    outline: none;
    width: 100%;
    text-align: left;
}

.date-picker-wrapper {
    position: relative;
    height: 48px;
    width: 100%;

    button {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 12px;
        padding: 0;
        margin: 0;
    }
}

.daterangepicker::before,
.daterangepicker::after {
    content: none !important;
    /* Remove the pseudo-elements */
}


.daterangepicker {
    border-radius: 12px !important;
    box-shadow: 0px 1px 4px 0px #0000001A !important;
    border: none;

    thead tr:nth-child(2)>th {
        color: #26AF51 !important;
    }
}

.daterangepicker .drp-calendar {
    padding: 15px;
}

.daterangepicker .drp-calendar .month {
    font-size: 18px;
    font-weight: bold;
    color: #303233;
}

.daterangepicker .drp-calendar th {
    font-weight: bold;
    color: #1d3557;
}

.daterangepicker td.in-range {
    background-color: #1d3557 !important;
    color: #ffffff !important;
}

.daterangepicker td.in-range:first-child {
    border-radius: 25px 0px 0px 25px;
}

.daterangepicker td.in-range:last-child {
    border-radius: 0px 25px 25px 0px;
}

.daterangepicker td.in-range:nth-last-child(1) {
    border-radius: 0px 25px 25px 0px;
}

.daterangepicker td.off {
    color: #c0c0c0 !important;
}

.daterangepicker .drp-calendar.right {
    display: none !important;
}

.daterangepicker td.active {
    background-color: #26AF51 !important;
    color: #ffffff !important;
    border-radius: 25px 0px 0px 25px;
}

.daterangepicker td.end-date {
    background-color: #26AF51 !important;
    color: #ffffff !important;
    border-radius: 0px 25px 25px 0px;
}

.daterangepicker .drp-calendar .prev,
.daterangepicker .drp-calendar .next {
    color: #ffffff;
    border-radius: 50%;
    padding: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* For booking rental */
#datPickerParent {
    width: 100%;
    position: relative;

    .daterangepicker {
        top: 100% !important;
        left: 80% !important;
    }

    /* Adjust for smaller screens (e.g., 1080p or smaller) */
    @media (max-width: 1920px) {
        .daterangepicker {
            left: 80% !important;
            /* Adjust left position for smaller screens */
        }
    }

    /* Adjust for very small screens (e.g., 720p or smaller) */
    @media (max-width: 1280px) {
        .daterangepicker {
            left: 60% !important;
            /* Adjust further for even smaller screens */
        }
    }

    /* Adjust for mobile devices (e.g., 480px and below) */
    @media (max-width: 768px) {
        .daterangepicker {
            left: 30% !important;
            /* Center the date picker for mobile screens */
        }
    }

    @media (max-width: 480px) {
        .daterangepicker {
            left: 0% !important;
            /* Center the date picker for mobile screens */
        }
    }
}