#modal-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 99999;
}
#modal-loading span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 60px;
}
#modal-loading span::after {
    content: "Please wait...";
    display: block;
    font-size: 20px;
    margin-top: 10px;
    color: #000;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
    z-index: 3 !important;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    color: black !important;
}

.navbar-landing .nav-custom .nav-link:hover,
.navbar-landing .nav-custom .nav-link.active {
    background: none !important;
}

.navbar-landing .nav-custom li:first-child > a {
    padding-left: 2px !important;
}

.search-box.search-box-sm {
    width: 100%;
}

#scheduleTab .nav-item {
    margin-right: 5px;
}
#scheduleTab .nav-item a.nav-link {
    background: #eff2f6;
    color: #525b75;
}
#scheduleTab .nav-item a.nav-link.active {
    border: 1px solid var(--phoenix-primary);
    background: none;
    color: var(--phoenix-primary);
}
.to-lowercase {
    text-transform: lowercase;
}

.super-admin-only {
    --phoenix-border-opacity: 1;
    border-color: rgba(var(--phoenix-danger-rgb), var(--phoenix-border-opacity)) !important;
}
.super-admin-only::before {
    width: 100%;
    content: "Super Admin Only";
    position: relative;
    top: 0;
    left: 0;
    background: red;
    color: white;
    padding: 4px 5px;
    font-size: 12px;
    border-radius: 5px 5px 0 0;
}

.admin-only {
    --phoenix-border-opacity: 1;
    border-color: rgb(229, 120, 11);
}
.admin-only::before {
    width: 100%;
    content: "Admin Only";
    position: relative;
    top: 0;
    left: 0;
    background: rgb(229, 120, 11);
    color: white;
    padding: 4px 5px;
    font-size: 12px;
    border-radius: 5px 5px 0 0;
}

.text-admin-only {
    color: rgb(229, 120, 11) !important;
    border-color: rgb(229, 120, 11);
    cursor: pointer;
    position: relative;
}
.text-admin-only::after {
    width: max-content;
    content: "Admin Only";
    position: absolute;
    bottom: -30px;
    left: 0;
    display: none;
    padding: 6px 8px;
    border-radius: 5px;
    font-size: 10px;
    color: white;
    background: rgb(229, 120, 11);
    z-index: 100;
}
.text-admin-only:hover::after {
    display: block;
}
.company-logo {
    text-align: center;
}
.company-logo img.img-logo {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 10px;
    background: #f8f9fc;
    padding: 5px;
    border: 1px solid #cbd0dd;
}
.company-logo a.remove {
    font-size: 10px;
    color: red;
}
.company-logo.has-image form {
    display: none;
}
.custom-dropzone {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 2rem;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
    text-align: center;
}

.custom-dropzone:hover {
    border-color: #6c757d;
    background-color: #e9ecef;
}

.dz-message {
    color: #6c757d;
    font-size: 1rem;
}

.footer-signup {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1030;
}
.footer-signup .book-a-appointment-wrap {
    display: inline-block;
}
.footer-signup .book-a-appointment-wrap button {
    font-size: 13px;
    padding: 5px 10px;
}

.navbar-footer-signup.withFooter {
    bottom: 120px;
}

.select2-container {
    z-index: 9999;
}

.table-privacy tr td {
    padding: 8px !important;
}


@media (max-width: 575.98px) {
    .content {
        padding: calc(var(--phoenix-navbar-top-height) + 2rem) 0.5rem calc(var(--phoenix-navbar-top-height) + 4rem);
        box-sizing: border-box;
        overflow: hidden;
    }
    .nav-custom {
        width: 100%;
    }
    .nav-custom li.nav-item a.nav-link{
        width: 100%;
        padding: 6px 16px !important;
        border: 1px solid #cbd0dd;
        background: #fff !important;
    }
    .navbar-landing .nav-custom .nav-link:hover, 
    .navbar-landing .nav-custom .nav-link.active {
        background: #fff !important;
    }
    ::-webkit-scrollbar {
        width: 12px;
    }
    ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(4, 0, 255, 0.3); 
        border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 15px rgb(0, 166, 255); 
    }
}

.navbar-landing .nav-link {
    font-size: 15px;
}