﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
    font-family: "Inter", sans-serif !important;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #3D3D3D;
    padding-bottom: 30px;
    font-size: 12px
}

.create_an_account_popup_form {
    height: 63vh;
    overflow-y: scroll
}

.otptopsec {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.around-xsNew {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.create_an_account_popup_form input {
    width: 100%;
    padding: 13px 10px;
    margin-top: 0px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #000000;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

.bodySection {
    min-height: 100vh;
}

.user-list {
    height: 44vh;
    overflow-y: auto;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-option {
    display: flex;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.listofusers {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3px;
    text-align: left;
}

    .listofusers p {
        color: var(--primary-color);
        font-size: 12px;
        font-weight: 400;
    }

.userInsidebx {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
}

.user-option img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.continue-btn, .register-btn {
    margin-top: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.register-btn {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #ddd;
}

.hdnldebtnuse {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
}

.toast {
    background-color: #1ec727;
    color: white;
    padding: 15px 15px 15px 45px;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    /*transition: opacity 0.5s ease-in-out;*/
    min-width: 250px;
    /*transform: translateX(100%);*/
    transition: opacity 0.4s ease-in-out;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 12px center;
}

    .toast.error {
        background-color: #f44336;
    }

    .toast.info {
        background-color: #2196F3;
    }

    .toast.show {
        opacity: 1;
        transform: translateX(0);
    }

    /* Success */
    .toast.success {
        background-color: #4CAF50;
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3Cpath fill='%234CAF50' d='M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4z'/%3E%3C/svg%3E");
        border: 2px solid #fff
    }

    /* Error */
    .toast.error {
        background-color: #F44336;
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3Cpath fill='%23F44336' d='M11 15h2v2h-2zm0-8h2v6h-2z'/%3E%3C/svg%3E");
        border: 2px solid #fff
    }

    /* Info */
    .toast.info {
        background-color: #2196F3;
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3Cpath fill='%232196F3' d='M11 7h2v2h-2zm0 4h2v6h-2z'/%3E%3C/svg%3E");
        border: 2px solid #fff
    }

input,
select {
    background: #fff;
    padding: 6px 12px;
    border: 0;
    border-radius: 5px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='%23333'><path d='M143 352c-4.6 0-9.2-1.8-12.7-5.3l-128-128c-7-7-7-18.4 0-25.4s18.4-7 25.4 0L143 307.3 292.3 193.3c7-7 18.4-7 25.4 0s7 18.4 0 25.4l-128 128c-3.5 3.5-8.1 5.3-12.7 5.3z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

    select:focus {
        outline: 0;
    }

.container-fluid {
    width: 100%;
    margin: 0 auto;
}

.container {
    width: 95%;
    margin: 0 auto;
}

/* Root Variables for Dynamic Colors */
:root {
    --primary-color: transparent;
    --secondary-color: transparent;
    --tertiary-color: transparent;
    --button-fill-color: transparent;
    --button-stroke-color: transparent;
    --callback-fill-color: transparent;
    --request-callback-stroke: transparent;
    --address-fill-color: transparent;
}

button {
    cursor: pointer;
}

/* Header Section */
.headSection {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.headSectionBg {
    width: 100%;
    background-color: #fff;
    /*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);*/
    border-bottom: 1px solid #DFDFDF;
}

.headSectionSecBg {
    width: 100%;
    /*background-color: #f9f9f9;*/
    padding-top: 15px
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    min-height: 90px;
}

    header .logo img {
        height: 50%;
        width: 60%;
    }

/* Flexbox Styling for Header Buttons */
.header-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    white-space: nowrap;
}

#hamburger-menu {
    display: none;
}

.header-nav {
    display: flex;
    gap: 15px;
}

.nav-btn,
.login-btn {
    background-color: #fff;
    border: 1px solid #DFDFDF;
    padding: 9px 12px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #3D3D3D;
    min-height: 45px;
    font-weight: 500
}

    .nav-btn i,
    .login-btn i {
        margin-right: 8px;
    }

    .nav-btn:hover {
        background-color: var(--primary-color);
        /* Using primary color for hover */
        color: white;
    }

    .login-btn:hover {
        filter: brightness(80%);
        color: white;
    }

.submit-btn:hover {
    filter: brightness(80%);
    color: white;
}

#book-btn:hover {
    filter: brightness(80%);
    color: white;
}
/* Login button styling */
.login-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 9px 16px;
    text-transform: uppercase;
    font-size: 18px;
    border: none
}

/* Specialty Icons Section */
.specialty-icons {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}



.booking-section {
    display: grid;
    grid-template-columns: 30% 69%;
    background: var(--primary-color);
    border-radius: 8px;
    color: #fff;
    padding: 0px 17px;
    gap: 10px;
    margin-top: 0px;
    align-items: center;
    min-height: 74px;
}

.booking-section-title {
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
}

    .booking-section-title h3 {
        font-size: 18px;
        margin-bottom: 0px;
        font-weight: 600;
        text-transform: uppercase;
    }

.head-search-bar {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    justify-content: space-between;
}

.head-dropdowns {
    background: #fff;
    padding: 0px 5px;
    border-radius: 5px;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    width: 100%;
    align-content: center
}

.head-inputsec {
    display: flex;
    color: #414141;
    align-items: center;
    font-weight: normal;
    font-size: 14px;
    padding-left: 5px;
    width: 100%;
}

.head-inputsecbcknd {
    display: flex;
    color: #414141;
    align-items: center;
    font-weight: normal;
    font-size: 14px;
    padding-left: 0px;
    width: 100%;
    position: relative
}

    .head-inputsecbcknd i {
        position: absolute;
        left: 10px;
    }

    .head-inputsecbcknd input {
        background: #fff;
        width: 100% !important;
        padding: 17px 0 17px 30px !important;
        border-radius: 8px;
    }

.dropdown-btn-bknd {
    background: #fff !important;
    color: #222 !important;
    cursor: pointer;
    font-size: 12px;
    border-radius: 8px;
    height: 42px;
    border: 1px solid #CCCCCC;
}

.head-inputsec input {
    background: #fff;
    width: 100%;
    font-size: 12px;
    padding-left: 5px;
    min-height: 40px;
}

.head-sec-box {
    width: 64%;
    display: flex;
    gap: 6px;
    justify-content: end;
    align-items: center
}

.head-inputsec input:focus {
    outline: none;
}

.dropdown-btn {
    background: var(--secondary-color);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    border-radius: 8px;
    height: 29px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-btn-fac {
    width: 120px;
    padding-right: 17px;
    font-weight: normal;
    height: 35px
}

.dropdown-btn-cty {
    min-width: 95px
}

.searchfltr-bknd {
    color: #585858;
    font-size: 14px;
    font-weight: 600;
}

    .searchfltr-bknd i {
        top: 13px !important;
    }

.dropdown-btn-cty {
    width: 80px;
}

.dropdown-btn i {
    margin-right: 10px;
}

.dropdown-btn option {
    background: #fff;
    color: #000;
}

.callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .callback-modal .modal-content {
        background: white;
        padding: 20px;
        border-radius: 20px;
        width: 90%;
        max-width: 430px;
        position: relative;
    }

        .callback-modal .modal-content #callback-privacy a {
            font-weight: 500;
            color: #425BFF
        }

.requestInputSec .input-field {
    padding-left: 35px !important;
    width: 100% !important;
}


#submit-callback {
    background: var(--primary-color);
    color: white;
    padding: 12px 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

/* .close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
} */

.heasdlocation {
    justify-self: end;
    background: var(--address-fill-color);
    padding: 8px 15px;
    color: #2E383F;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    gap: 8px;
    min-height: 40px;
    align-items: center;
    font-weight: 400;
}

    .heasdlocation i {
        color: var(--primary-color);
    }

.specialty-section {
    background-color: #fff;
    padding: 13px 0px 10px 0px;
    min-width: 303px;
}

/* Header of the section */
.specialty-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    white-space: nowrap;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
}

    .specialty-header h2 {
        font-size: 18px;
        font-weight: 600;
        color: #3D3D3D;
        margin-bottom: 0;
        padding: 10px 0 10px 10px;
    }

    .specialty-header hr {
        background: #C0C0C0;
        height: 0px;
        width: 100%;
        border: 1px solid #C0C0C0;
    }

.view-all {
    color: var(--primary-color);
    /* Using primary color for "View All" links */
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .view-all i {
        font-size: 9px
    }

.maingridsection {
    height: 67vh;
    padding: 10px;
    overflow-y: scroll; /* enable scroll */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
    gap: 10px;
}

.speciality-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.specialty-item {
    background-color: #fff;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
    cursor: pointer;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #DFDFDF;
}

.description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

    .description.expanded {
        -webkit-line-clamp: unset;
        overflow: visible;
    }

.toggle-description {
    cursor: pointer;
    color: var(--primary-color);
    font-size: 12px;
    display: inline-block;
    margin-top: -6px;
    text-align: right
}

.specialty-item.active {
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color) !important;
}

.specialty-item {
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid #DFDFDF;
}

    .specialty-item:hover {
        transform: translateY(-5px);
        transform: scale(1.03);
        border: 1px solid var(--secondary-color);
        color: var(--secondary-color) !important;
    }

        .specialty-item:hover p {
            color: var(--secondary-color);
        }

/*.specialty-item:hover .icon {
    background-color: #fff !important;
    color: inherit !important
}*/

.icon {
    font-size: 20px;
    color: pink;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
}

.spnbalnceHnd {
    font-size: 14px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 3px
}

    .spnbalnceHnd h5 {
        font-size: 14px;
        font-weight: 600;
        color: var(--tertiary-color);
    }

.icon img {
    width: 80%;
    height: fit-content;
    /*;border-radius: 50%
    padding:5px*/
}

.specialty-item p {
    font-size: 16px;
    font-weight: normal;
    color: #585858;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    text-align: left
}

.our-experts {
    width: 100%;
    margin: 13px auto;
    padding: 0px;
}

/* h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
} */

.modal-content hr {
    height: 1px;
    border: none;
    background: #eee;
    margin: 15px 0;
    width: 100%
}


/* Expert Cards Container */
.expert-cards {
    /*display: grid;
    grid-template-columns: repeat(auto-fill, minmax(322px, 1fr));
    gap: 10px;
    padding-top: 12px;*/
    height: 55vh;
    overflow-y: scroll; /* enable scroll */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    align-items: flex-start;
}

    .expert-cards::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.viewBillASus {
    border-radius: 5px;
    background: var(--primary-color) !important;
}
/* Individual Expert Card */
.expert-card {
    background-color: #fff;
    padding: 15px 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    border: 1px solid #DFDFDF;
}

    .expert-card:hover .overlay {
        opacity: 1;
    }

.expert-cardbknd {
    padding: 8px 15px !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(188 188 188 / 80%);
    backdrop-filter: blur(1px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

    .overlay button {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        width: auto
    }


.expert-card hr {
    background: #eee;
    height: 1px;
    border: 0;
    margin: 10px 0;
}

.expert-card:hover {
    transform: translateY(-5px);
}

.expert-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.docUser {
    width: 65px;
    min-width: 65px;
    height: 65px;
    border-radius: 5px;
    /*box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);*/
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid #DFDFDF;
}

.expert-header .docUser img {
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    object-fit: cover;
}

.docUserSec {
    width: 100%;
}

.expert-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #3D3D3D;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 82%;
    width: 100%;
    margin-bottom: 4px;
}

.expert-header .docSpec {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #3D3D3D;
    color: #656565;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 81%;
    width: 100%;
}

.expert-header p {
    font-size: 12px;
    color: #656565;
    margin-bottom: 0px;
    line-height: 18px;
    font-weight: 400
}

.availability {
    display: flex;
    align-items: self-start;
    margin-top: 0;
    font-size: 13px;
    color: #196928;
    /*background: #45EF631C;*/
    padding: 5px 8px;
    border-radius: 5px;
    align-items: center;
    gap: 7px;
    align-self: end;
}

.availabilityHme {
    background: none;
    padding: 0px 0px;
    margin-top: 0px;
}

.availability p {
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    font-weight: 500;
    gap: 5px;
}

.availability strong {
    font-size: 12px;
    color: #656565;
    font-weight: 400;
}

/* Button Styling */
.btn {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.book-appointment {
    background-color: var(--button-fill-color) !important;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
}

    .book-appointment:hover {
        /*background-color: var(--primary-color);*/
        filter: brightness(80%);
        border: 1px solid var(--primary-color);
        color: #fff
    }

.request-callback {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    width: auto !important;
}

.request-callbackInr {
    width: auto !important;
    font-size: 18px;
    text-transform: uppercase;
}

.request-callback:hover {
    /*background-color: var(--primary-color);*/
    filter: brightness(80%);
    color: #fff
}

#menu_barbtn {
    display: none
}

footer {
    background-color: #DFDFDF;
    padding: 5px 0;
    margin-top: 30px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

    footer img {
        width: 26px;
        height: 11px;
        margin-right: 5px
    }

.footer {
    text-align: center;
    font-size: 12px;
    color: #6D6D6D;
    display: flex;
    justify-content: space-between;
}

    .footer .container {
        width: 95%;
        margin: 0 auto;
    }

    .footer p {
        margin: 5px 0;
    }

.company-name {
    font-weight: 600;
    color: #222222;
}

    .company-name a {
        font-weight: 600;
        color: #222222;
        text-decoration: none
    }

.footer p:last-child {
    font-size: 12px;
    color: #999;
}

.search-results {
    background: white;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
    position: absolute;
    width: 100%;
    z-index: 9999;
    top: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .search-results .result-item {
        display: flex;
        align-items: center;
        padding: 5px 10px;
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
    }

        .search-results .result-item img {
            height: 30px;
            width: 30px;
            margin-right: 10px;
            border-radius: 50%;
        }

        .search-results .result-item:hover {
            background-color: #f5f5f5;
        }

.skeleton-slot {
    height: 38px;
    width: 160px;
    border-radius: 8px;
    margin: 10px;
    display: inline-block;
    background: linear-gradient(90deg, #eeeeee 25%, #dddddd 50%, #eeeeee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s ease-in-out infinite;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.slot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.secHeadMainSec {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.appoitHeadSec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 12px;
}

.quickSeciton a {
    display: flex;
    font-size: 16px;
    gap: 8px;
    font-weight: 500;
    align-items: center;
    color: #AF1F56;
    text-decoration: none
}

.quickSeciton i {
    font-size: 13px;
    color: #3D3D3D
}

.bradcrumbBar {
    display: flex;
    gap: 6px;
    align-items: center;
    color: #3D3D3D;
    font-size: 12px;
    font-weight: 400;
}

    .bradcrumbBar a {
        text-decoration: none;
        color: var(--primary-color)
    }

    .bradcrumbBar span {
        color: #2E383F;
    }

    .bradcrumbBar i {
        font-size: 10px;
    }

.quichSearchSec {
    position: absolute;
    display: flex;
    align-items: center;
    min-width: 450px;
    top: 12px;
    right: 15px
}

.quichSearchSecmain {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
}

.quichSearchSec input {
    width: 100% !important;
    padding: 10px 20px 10px 30px !important;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 12px;
    min-height: 35px;
}

.quichSearchSecImg {
    position: absolute;
    z-index: 1;
    left: 10px;
}


.doctor-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #DFDFDF;
}

.doctor-infoBknd {
    border: 1px solid #E5E5E5;
    padding: 10px !important;
}

    .doctor-infoBknd .doctor-image img {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
    }

    .doctor-infoBknd .doctor-details {
        gap: 0px;
    }

        .doctor-infoBknd .doctor-details h3 {
            font-size: 16px !important;
        }

    .doctor-infoBknd .doctor-details_sec {
        font-size: 12px !important
    }

    .doctor-infoBknd .doctor-details h3 > span {
        font-size: 14px !important;
    }

.leftCalenderMainSecBknd {
    min-width: 344px !important
}



.doctor-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}

.doctor-header-first {
    display: flex;
    gap: 10px;
    align-items: center;
}

.doctor-image img,
.doctor-image i {
    width: 65px;
    height: 65px;
    border-radius: 11px;
    object-fit: cover;
    margin-right: 0px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    min-width: 65px;
    border: 1px solid #DFDFDF;
}


.doctor-details {
    flex-grow: 1;
    font-size: 13px;
    gap: 6px;
    display: flex;
    flex-direction: column;
}

    .doctor-details h3 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        color: #3D3D3D;
    }

        .doctor-details h3 > span {
            font-size: 14px;
            font-weight: 400;
            color: #3D3D3D !important;
            padding-left: 6px;
        }

.doctor-details_sec {
    color: #3D3D3D;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 400;
}

.sanityDetails {
    /*color: var(--primary-color);*/
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0
}

/*.dashboard-left {
    background:var(--primary-color) !important;
}*/
.left_sidebar {
    background: var(--primary-color) !important;
}
/*.left_sidebar, .popupHeader, .modal-block-new .popupHeader, .dashboard-left {
    background:var(--primary-color) !important;
}*/
.sanityDetails i {
    margin-left: 7px;
}

.available-text {
    font-weight: 400;
    font-size: 13px;
    color: #656565;
}

.availability-days {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500
}

    .availability-days span {
        color: #656565;
        padding-right: 4px;
        font-weight: 400 !important
    }

.calendar-section {
    width: 45%;
}

.time-slot-section {
    width: 50%;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



#calendar div {
    padding: 10px;
    background-color: var(--light-grey);
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 37px;
}

    #calendar div.disabled {
        /* background-color: #f0f0f0; */
        cursor: not-allowed;
        text-align: center;
        color: #ddd;
    }

.sethgtSlot {
    height: 40vh;
    overflow-y: auto;
    overflow-y: scroll; /* enable scroll */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
}

    .sethgtSlot::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.current-date-underline {
    position: relative;
    font-weight: bold;
}

    .current-date-underline::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 20%;
        width: 60%;
        height: 5px;
        background-color: #DFDFDF; /* You can use your brand color */
        border-radius: 2px;
    }

.day:hover {
    transform: scale(1.05);
    background: var(--primary-color);
    !important;
    color: #fff;
    border: 1px solid var(--primary-color);
    ;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    /*box-shadow: 0px 0px 10px 0px #0000001A;*/
    font-size: 14px;
}

#calendar .selected {
    background-color: var(--primary-color);
    /*background: #EBF7FF;*/
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    /*box-shadow: 0px 0px 10px 0px #0000001A;*/
}

.nxtPrvBtn {
    display: flex;
    gap: 35px;
    justify-content: space-between;
}

    .nxtPrvBtn button {
        border: none;
        background: none;
        cursor: pointer;
        font-size: 14px;
        color: #222;
    }

.clndrbttmSec {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    color: #2E383F;
    font-size: 12px;
    align-items: center;
    font-weight: 400;
}

.clndrbttmSecBttm {
    margin-top: auto;
}

.clndrbttmSec p {
    display: flex;
    gap: 6px;
    justify-content: flex-start;
    font-size: 12px;
    font-weight: 400;
}

    .clndrbttmSec p span {
        width: 17px;
        height: 17px;
        border-radius: 100%;
        background: #FFDDDD;
        align-items: center;
        margin-top: -2px;
    }

.secItemApt {
    background: #FCF3BA !important;
}

.forNotAvlBk {
    border-radius: 8px !important;
    background: var(--primary-color);
    align-items: center;
    border: 1px solid var(--primary-color);
    margin-top: -2px;
    color: #AF3E3E !important;
}

.forfullAvlBk {
    border-radius: 8px !important;
    background: #FCF3BA !important;
    align-items: center;
    margin-top: -2px;
    color: #878787 !important;
}

.time-slot-list {
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0px;
    /*grid-template-columns: repeat(7, 1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    color: #196928;
    padding-top: 15px;
    /*height: 31vh;*/
    overflow-y: auto;
    align-items: flex-start;
    overflow-y: scroll; /* enable scroll */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
}

.time-slot-listBknd {
    /*grid-template-columns: repeat(5, 1fr) !important;*/
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.selectedSlotBxBknd {
    gap: 0 !important;
}

    .selectedSlotBxBknd p {
        padding-bottom: 0 !important;
    }


.time-slot-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.time-slot {
    padding: 13px 8px;
    background-color: #f1f3f5;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    border: 1px solid #DFDFDF;
    white-space: nowrap;
}


    .time-slot.available {
        /* background-color: var(--success-color); */
        background: #fff;
    }

    .time-slot.not-available {
        /* background-color: var(--error-color); */
        background: #EAEAEA;
    }

    .time-slot.selected {
        background-color: var(--primary-color);
        /*background: #2C70A1;*/
        color: #fff;
    }



/* Basic styles for the calendar */
.calendar-container {
    display: flex;
    /*align-items: self-start;*/
    justify-content: space-between;
    gap: 20px;
}

.leftCalenderMainSec {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #DFDFDF;
    border-radius: 8px;
    padding: 20px;
    min-width: 406px;
}

.calendar-nav {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.calendarMainHead {
    font-size: 18px;
    font-weight: 600;
    color: #3D3D3D;
}


#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.calendarBknd {
    gap: 6px !important;
}


.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 22px;
    font-weight: 600;
    color: var(--primary-color)
}


.disabled {
    background-color: lightgray;
    color: gray;
    cursor: not-allowed;
}


#book-btn {
    background-color: green;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

    #book-btn:disabled {
        background-color: gray;
        cursor: not-allowed;
    }


.timeRgtSection {
    background: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 20px;
}

.avlTopHead {
    background: #fff;
    padding: 20px;
    margin: -20px -20px 0px -20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
}

    .avlTopHead h4 {
        font-size: 14px;
        font-weight: 500;
        color: #222;
    }

    .avlTopHead h2 {
        font-size: 18px;
        font-weight: 600;
        color: #3D3D3D;
    }

.secItemOne {
    background: #fff !important;
    border: 1px solid #EAEAEA;
}

.secItemTwo {
    background: #EAEAEA !important;
}

.secItemAThr {
    background: var(--primary-color) !important;
}

.timeSlotBtmSec {
    border-radius: 10px 10px;
    margin: 20px -20px -20px -20px;
    margin-top: auto;
    border-top: 1px solid #DFDFDF;
}

.timeSlotBtmSecBknd {
    padding: 10px 20px !important
}

.selectedSlotBx {
    font-size: 14px;
    font-weight: 500;
    color: #3D3D3D;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.slotSectSc {
    font-size: 12px;
    color: #3D3D3D;
    font-weight: 400;
}

#book-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    height: 45px;
}

    #book-btn:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

/* start css for login signup page */
/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999
}

.modal-header {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    margin: -20px -20px 0 -20px;
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 13px 20px;
    border-bottom: 1px solid #DFDFDF;
}

.pop-heading {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}


    .pop-heading h2 {
        color: #3D3D3D;
        font-size: 18px;
        font-weight: 500;
    }

    .pop-heading p {
        color: #3D3D3D;
        font-size: 12px;
        font-weight: 400;
    }

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 430px;
    border-radius: 20px;
    text-align: center;
    color: #000
}

.modal-content-reg {
    width: 70%;
    margin: 3% auto;
    height: 74vh;
}

.modalContentInrBdy {
    width: 100%;
    height: 85%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    overflow-y: scroll; /* enable scroll */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
}

    .modalContentInrBdy::-webkit-scrollbar {
        display: none;
    }

.regsGrdSec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.regsGrdSecSub {
    display: flex;
    width: 100%;
    gap: 15px;
    justify-content: space-between;
    margin-top: -15px;
}

    .regsGrdSecSub .left {
        width: calc(30% - 7.5px);
    }

.right {
    /*width: calc(70% - 7.5px);*/
    flex: 2.06 !important;
    min-width: 300px;
}

.input-sectionReg {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
}

    .input-sectionReg sup {
        color: red;
        font-size: 13px;
        position: relative;
        top: 0px;
    }

    .input-sectionReg label {
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
        color: #3D3D3D;
    }

    .input-sectionReg input,
    .input-sectionReg select {
        width: 100%;
        margin-top: 0px;
        display: inline-block;
        box-sizing: border-box;
        font-size: 14px;
        font-weight: 600;
        padding: 14px 10px;
        margin-top: 0px;
        border: 1px solid #ddd;
        border-radius: 5px;
        color: #D9D9D9;
    }

    .input-sectionReg input {
        color: #3D3D3D;
    }

    .input-sectionReg select option,
    .input-sectionReg select:valid {
        color: #3D3D3D;
    }

    .input-sectionReg input::placeholder,
    .input-sectionReg select::placeholder {
        color: #D9D9D9;
    }

.modal-content a {
    color: var(--tertiary-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
}

.calbackhead {
    font-size: 14px;
    font-weight: 400
}

    .calbackhead h2 {
        font-size: 18px;
        font-weight: 500;
        color: #3D3D3D;
        margin-bottom: 5px;
    }

.callbackhr {
    position: relative;
    margin: 21px 0
}

    .callbackhr span {
        position: absolute;
        top: -13px;
        background: #fff;
        padding: 5px 30px;
        margin: auto;
        left: 0;
        right: 0;
        width: fit-content;
        color: #3D3D3D;
        font-size: 16px;
        font-weight: 700;
    }

.callbackContact {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

    .callbackContact p i {
        background-color: var(--tertiary-color);
        padding: 7px;
        color: #fff;
        border-radius: 50px;
        font-size: 11px;
    }

.close-btn {
    color: var(--primary-color);
    float: right;
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 31px;
    border: 1px solid #DFDFDF;
    text-align: center;
}

#callback-privacy {
    color: #3D3D3D;
    padding: 7px 42px;
}

/* Hover and focus effect for the close button */
.close-btn:hover,
.close-btn:focus {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
}

.input-section {
    margin-top: 15px;
    /* display: none; */
}

/* Button Styling with Custom Class */
.button {
    padding: 13px 12px;
    background-color: var(--primary-color);
    color: #fff !important;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}


    .button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background-color: #ddd;
    }

    .button:not(:disabled):hover {
        /* background-color: var(--secondary-color);*/
        filter: brightness(80%)
    }

.toggle-section {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 20px;
}

    .toggle-section label {
        cursor: pointer;
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
        color: #3D3D3D;
    }


input[type="radio"] {
    margin-right: 5px;
    width: 18px;
    height: 18px;
}


    input[type="radio"]:checked {
        accent-color: var(--primary-color);
    }

.paswHead {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-field {
    width: 100% !important;
    padding: 13px 10px !important;
    margin-top: 0px;
    border: 1px solid #DFDFDF !important;
    border-radius: 5px;
    font-size: 14px !important;
    color: #3D3D3D;
    box-sizing: border-box;
    font-weight: 600
}

.input-field-bknd {
    width: 100% !important;
    padding: 13px 10px !important;
    margin-top: 0px;
    border: 1px solid #ddd !important;
    border-radius: 5px;
    font-size: 14px !important;
    color: #000000;
    box-sizing: border-box;
}

input[type="radio"]:checked + label {
    font-weight: bold;
    color: #000;
}

#mobile-section input {
    width: 100%;
    margin-top: 0px;
    display: inline-block;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
}

    #mobile-section input::placeholder {
        color: #D9D9D9;
    }

.input-field input::placeholder {
    color: #D9D9D9;
    font-size: 12px;
}

.mobBttmLogSec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.mobBttmLogSecTxt {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

    .mobBttmLogSecTxt a {
        color: #000;
    }

        .mobBttmLogSecTxt a:nth-child(2) {
            color: #0018EC;
        }


#otp-message {
    margin-top: 10px;
    display: none;
}

.loginCntryLst,
.requestInputSec {
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
}

    .loginCntryLst select,
    .requestInputSec select {
        position: absolute;
        z-index: 1;
        left: 1px;
        padding: 10px 0 10px 7px;
        cursor: pointer;
        background: none;
    }

    .loginCntryLst .country-code-input, .requestInputSec .country-code-input {
        position: absolute;
        z-index: 1;
        left: 1px;
        padding: 10px 0 10px 7px;
        cursor: pointer;
        background: none;
        padding-left: 9px !important;
        width: 35px !important;
    }

    .loginCntryLst select:focus {
        border: none;
    }

    .loginCntryLst input {
        padding-left: 40px !important;
    }

.uhudfrmSec {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .uhudfrmSec hr {
        flex-direction: column;
        border: none;
        background: #ddd;
        height: 1px;
        margin-top: 10px;
    }

    .uhudfrmSec .input-field {
        font-size: 13px;
        font-weight: 600;
    }

        .uhudfrmSec .input-field::placeholder {
            color: #D9D9D9;
        }

.regstrbtn {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 12px 20px;
    text-align: center;
    margin-top: 0px;
    font-size: 16px !important;
    width: 100%;
    box-sizing: border-box;
    color: #3D3D3D !important;
    display: block;
    cursor: pointer;
    background: #fff;
    font-weight: 500;
}

    .regstrbtn span {
        color: var(--primary-color);
    }

.uhidfHead {
    position: relative;
}

.uhidfrgt {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 12px;
    font-weight: 600;
    color: #0018EC;
}

.sectionRegClToAc {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.innerclToc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .innerclToc button {
        padding: 13px 30px;
    }

    .innerclToc .clear {
        background: #fff;
        color: #3D3D3D !important;
        border: 1px solid #3D3D3D;
        border-radius: 5px;
    }

    .innerclToc:hover .clear {
        color: #fff !important;
        background: var(--primary-color)
    }

.skeleton-box {
    background: #eee;
    border-radius: 8px;
    height: 60px;
    margin-bottom: 0px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #f0f0f0;
    }
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px
}

.skeleton-grid-exp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.modelHeader {
    display: flex;
    width: 100%;
    justify-content: space-between;
    text-align: left;
}

    .modelHeader p {
        font-size: 12px;
        color: #3D3D3D;
    }

.callbackMainSec {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calbackItem {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    gap: 6px;
    font-weight: 500;
}

    .calbackItem label {
        margin-bottom: 0 !important;
        font-size: 12px;
        font-weight: 500;
        color: #3D3D3D;
    }

.searchfltr {
    position: relative
}

    .searchfltr i {
        position: absolute;
        right: 10px;
        top: 12px;
        font-size: 10px
    }

.docNotAvlSlotCallBck {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    height: 90%;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

    .docNotAvlSlotCallBck .request-callback {
        width: 150px
    }

.headermidSection {
    display: flex;
    align-items: center;
    gap: 10px;
}

.headermidSectionItem {
    padding: 9px 12px;
    border-radius: 5px;
    background: #fff;
    color: #3D3D3D !important;
    white-space: nowrap;
    border: 1px solid #0008FF;
    font-size: 12px;
    font-weight: 400;
}

    .headermidSectionItem span:nth-child(1) {
        color: #0008FF;
    }

    .headermidSectionItem.red {
        border: 1px solid #FF0000 !important;
    }

        .headermidSectionItem.red span:nth-child(1) {
            color: #FF0000
        }


@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 3% auto;
    }

    .button {
        padding: 15px;
        font-size: 18px;
    }

    .input-field {
        padding: 12px;
        font-size: 18px;
    }

    .regsGrdSec {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sectionRegClToAc {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .updatedmainSection {
        flex-direction: column
    }
}

/* end css for login and signup page*/

@media screen and (min-width:769px) and (max-width: 1066px) {
    .booking-section {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .headermidSection {
        display: none;
    }

    .specialty-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .header-nav {
        gap: 2px;
    }

    .time-slot-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .avlTopHead {
        align-items: self-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .header-buttons {
        display: none;
    }

    .headermidSection {
        display: none;
    }

    .header-nav {
        flex-direction: column !important;
        gap: 15px !important;
    }

    #hamburger-menu {
        display: block;
        font-size: 22px;
        cursor: pointer;
        font-weight: 100;
    }

    #side-menu {
        display: block;
    }

    #side-menu {
        position: fixed;
        top: 0;
        left: -300px;
        width: 250px;
        height: 100%;
        background-color: #fff;
        box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        padding: 20px;
        display: flex;
        justify-content: flex-start;
        z-index: 999;
    }

        #side-menu.active {
            left: 0;
        }

    .specialty-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .booking-section {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .head-search-bar {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .heasdlocation {
        padding: 5px;
    }

    .our-experts {
        width: 100%;
        padding: 0px;
    }

    .expert-cards {
        grid-template-columns: 1fr;
    }

    .doctor-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .doctor-details h3 {
        font-size: 16px;
    }



    .doctor-details p {
        font-size: 14px;
    }

    .doctor-image img {
        width: 60px;
        height: 60px;
    }

    .calendar-container {
        flex-direction: column;
        gap: 10px;
    }

    .timeRgtSection {
        width: auto;
    }

    .time-slot-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .avlTopHead {
        align-items: self-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 690px) {
    .appoitHeadSec {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        align-items: flex-start;
    }

    .quichSearchSec {
        min-width: 100%;
    }

    .doctor-header {
        gap: 10px;
    }

    .doctor-details_sec {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

        .doctor-details_sec span {
            display: none;
        }

    .head-inputsec {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .head-dropdowns {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .head-sec-box {
        width: 100%;
        display: flex;
        gap: 6px;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 580px) {
    .regsGrdSec {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .regsGrdSecSub {
        flex-direction: column;
    }

        .regsGrdSecSub .left,
        .regsGrdSecSub .right {
            width: calc(100% - 7.5px);
        }

    .footer {
        text-align: start;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }
}


.changeBackgroundOnSelectedExistingPatient {
    background-color: #ededed !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.existing-patient-table table {
    font-size: 12px;
    width: 100%;
}

    .existing-patient-table table thead tr th, .existing-patient-table table tbody tr td {
        padding: 5px 5px;
        text-align: center;
    }

    .existing-patient-table table thead tr th {
        font-size: 14px;
        background: #eee;
        padding: 7px 5px;
        position: sticky;
        top: 0;
        z-index: 1;
    }

.apntspinnerMain {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55vh;
    background: #fff;
    position: absolute;
    z-index: 99999;
    width: 97%;
}

.apntspinner {
    border: 4px solid #f3f3f3; /* Light gray background */
    border-top: 4px solid #3498db; /* Blue spinner */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.terms-agree label {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 5px;
    cursor: pointer;
    width: fit-content;
}

    .terms-agree label a {
        color: var(--primary-color);
        font-size: 14px;
    }

    .terms-agree label input[type="checkbox"] {
        width: 15px;
        height: 15px;
        background-color: #eee;
        border: 2px solid #ccc;
        border-radius: 4px;
        transition: all 0.2s;
    }

.user-profile {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-color);
}

.user-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px;
    min-width: 150px;
    text-align: left;
}

    .user-menu .user-action {
        display: block;
        padding: 6px 12px;
        color: #333;
        text-decoration: none;
    }

        .user-menu .user-action:hover {
            background-color: #f2f2f2;
        }

.user-profile:hover .user-menu {
    display: block;
}

.span-left-block-newui {
    display: flex;
    align-items: end;
    font-size: 14px;
    gap: 5px;
    justify-content: flex-start;
    margin-top: 15px;
}

    .span-left-block-newui .firstblknewui {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

        .span-left-block-newui .firstblknewui input {
            min-width: 250px !important
        }

.uhid-area-popup fieldset {
    border: none;
}

.span-left-block-secuinew {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    gap: 6px;
    font-size: 14px;
}

.colheadgpasssecuinew {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.changepassotp {
    display: inline-flex;
    width: max-content;
    justify-content: center;
    margin-bottom: 20px
}

.change_passwordNwUi {
    padding: 10px 0;
}

.createnewpasschangesc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.createnewpasschangescinr {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rules-areaNwUi {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 10px;
}

    .rules-areaNwUi ul li {
        text-align: left;
        padding-left: 0px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 3px 0px;
    }


.updatedmainSection {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.doctorlistsection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(322px, 1fr));
    gap: 10px;
    padding-top: 10px;
}

/*#PatAge,
#age_desc,
label[for="PatAge"],
label[for="age_desc"] {
  display: none !important;
}*/

.nav-tabs-area {
    border-bottom: 1px solid #DFDFDF;
}

.specialty-headerBknd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-bottom: 0;
}

    .specialty-headerBknd h2 {
        color: #585858;
        font-size: 14px;
        padding: 0;
    }


/*.app-sidebar-nav li:hover, .app-sidebar-nav li.active{
    background:var(--primary-color)!important;
    cursor:pointer;
}
.more-actions ul.dashboard_main li:hover {
    background:var(--primary-color)!important;
}*/

.AppointmentTextIdsec {
    background: #FFF8F8;
    border: 1px solid #FF1616;
    border-radius: 4px;
    padding: 3px 10px;
    margin-top: 10px;
    font-size: 12px;
    color: #1E1E1E;
    font-weight: 500;
}



.apt-action-btn {
    display: inline-block;
    margin-right: 6px;
    padding: 5px 12px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: sans-serif;
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.apt-btn-pay {
    background-color: #6EB972;
}

.apt-btn-cancel {
    background-color: #E86666;
}

.apt-btn-reschedule {
    background-color: #DE9C37;
}

.apt-action-btn:hover {
    opacity: 0.85;
    cursor: pointer;
}

.wallet-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-family: "Inter", sans-serif;
}

.wallet-card,
.recharge-card {
    flex: 1;
    min-width: 300px;
    background: #f7faf5;
    border-radius: 10px;
    padding: 20px;
    min-height: 251px;
    display: flex;
    flex-direction: column;
}

.wallet-header,
.recharge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #DFDFDF;
    padding-bottom: 10px;
}

    .wallet-header .label {
        font-size: 14px;
        color: #656565;
        margin: 0;
        padding: 0;
        font-weight: 500
    }

    .wallet-header .card-number {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        color: #222;
    }

.icon {
    font-size: 22px;
}

.wallet-details {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

    .wallet-details div {
        text-align: left;
    }

    .wallet-details .small-label {
        font-size: 12px;
        color: #656565;
        margin: 0;
        font-weight: 500;
    }

    .wallet-details .value {
        font-weight: 600;
        margin: 2px 0 0;
        font-size: 16px;
        color: #222;
    }

.wallet-balance {
    margin-top: auto;
}

    .wallet-balance p {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        color: #656565;
    }

    .wallet-balance .balance-amount {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 18px;
    }

.recharge-card {
    background: #fff;
    border: 1px solid #eee;
}

.recharge-body {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-direction: column
}

.walletHeadsec {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #DFDFDF;
    margin-bottom: 15px;
}

.recharge-body input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.recharge-btn {
    background: #a0004d;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.recharge-headerHd {
    font-size: 18px;
    font-weight: 600;
    color: #000
}

.rechargeInr {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    width: 100% !important;
}

    .rechargeInr input, .rechargeInr span {
        width: 100% !important;
    }

    .rechargeInr input {
        height: 40px;
        padding: 0 10px !important;
        border-radius: 8px;
    }

.walletree_responsive {
    height: 80vh;
}

#lab_reports_tab .patientportal-lab-table {
    height: 58vh !important;
}

.proheadsection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #DFDFDF;
}

    .proheadsection .walletHeadsec {
        margin-bottom: 0px;
    }

.DivCallBackBtn.headermidSectionItem {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    cursor: pointer;
}

    .DivCallBackBtn.headermidSectionItem:hover {
        background: var(--primary-color);
        /*color:#ffffff !important;*/
    }

        .DivCallBackBtn.headermidSectionItem:hover button {
            color: #ffffff;
        }

    .DivCallBackBtn.headermidSectionItem button {
        background: transparent;
        border: none;
    }
