/*TypoGraphica Font*/
@font-face {
    font-family: 'TypoGraphica';
    src: url('../fonts/typographica/TypoGraphicademo.eot');
    src: url('../fonts/typographica/TypoGraphicademo.eot?#iefix') format('embedded-opentype'), url('../fonts/typographica/TypoGraphicademo.woff2') format('woff2'), url('../fonts/typographica/TypoGraphicademo.woff') format('woff'), url('../fonts/typographica/TypoGraphicademo.ttf') format('truetype'), url('../fonts/typographica/TypoGraphicademo.svg#TypoGraphica') format('svg');
    font-weight: normal;
}
/*Nexa Font*/
@font-face {
    font-family: 'Nexa';
    src: url('../fonts/nexa/Nexa-ExtraLight.eot');
    src: url('../fonts/nexa/Nexa-ExtraLight.eot?#iefix') format('embedded-opentype'), url('../fonts/nexa/Nexa-ExtraLight.woff2') format('woff2'), url('../fonts/nexa/Nexa-ExtraLight.woff') format('woff'), url('../fonts/nexa/Nexa-ExtraLight.ttf') format('truetype'), url('../fonts/nexa/Nexa-ExtraLight.svg#Nexa') format('svg');
    font-weight: 600 !important;
}

:root {
    --font-poppin-fm: 'Poppins', sans-serif;
    --font-typographica: 'TypoGraphica', sans-serif;
    --font-nexa: 'Nexa', sans-serif;
    --font-nexa-light: 'Nexa', sans-serif;
    --primary-color: #115E67; /*Pantone 5473 color*/
    --secondary-color: #d24e4e; /*Pantone 6048C color*/
    --primary-rgb-color: 17, 94, 103;
    --secondary-rgb-color: 210, 79, 78;
    --info-rgb-color: 208, 211, 212;
    --warning-rgb-color: 158, 0, 126;
    --section-bg-gradient2: #55cee7;
    --section-bg-gradient4: #e1f7fc;
    --primary-color-hover: #1f95ab;
    --nav-menu-hover-color: #e1f7fc;
    --display-font-size-1: 62px;
    --font-size-base: 16px;
    --font-size-xs: 18px;
    --font-size-lg: 20px;
    --font-size-small: 14px;
    --font-size-xs-small: 12px;
    --box-shadow-color: 31, 149, 171;
    --text-color-primary: #115E67;
    --text-color-hover-primary: #1f95ab;
    --bs-link-color: var(--primary-color);
    --bs-link-hover-color: var(--primary-color-hover);
    --bs-border-color: #D0D3D4;
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-active-bg: var(--primary-color-hover);
    --bs-btn-active-border-color: var(--primary-color-hover);
    --footer-bg: #b4eaf6;
    --footer-font-size: 14px;
    --nav-menu-text-color: #000;
    --success-bg: #eeffe5;
    --timeslot-card-active-border-color: #d9ecf9;
    --doctor-raing-color: #ffb914;
    /**forms invalid and vaild***/
    --form-invalid-bg: #f8d7da;
    --form-invalid-border-color: #f1aeb5;
    --form-valid-bg: #ddffdd; /*#d1e7dd*/
    --form-valid-border-color: #91c1ab; /*#a3cfbb*/
    --form-border-color: #dee2e6;
    --placeholder-color: rgba(108, 117, 125, 0.75);
    --table-thead-light-bg: #ededed;
    --table-border-color: #d0d3d4;
    /***********Calendar**************/
    --calendar-bg: #f5f7f9;
    --calendar-border-color: #ededed;
    --calendar-font-color: #606b86;
    --calendar-today-bg: #f9fbfd;
    /*--calendar-today-gradient-bg1: #ffa610;
    --calendar-today-gradient-bg2: #ffd955;*/
    --calendar-today-gradient-bg1: #D24F4E;
    --calendar-today-gradient-bg2: #dd6265;
    --alert-color: #d24e4e;
    --alert-hover-color: #a13a37;
    --tab-icon-bg: #d0dae4;
    --doctor-name: #9E007E;
    --practice-name: #115E67;
    --light-blue-bg: #e1f7fc;
    --available-date-bg: 225, 247, 252;
}

body {
    font-family: var(--font-nexa) !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em;
    height: 100vh;
}

.page-bg {
    background: var(--page-bg);
}

.color-primary {
    color: var(--primary-color) !important;
}

.color-primary1 {
    color: var(--primary-color1);
}

.make-an-appointment-bg {
    background: var(--primary-color);
}

.equal-spacer {
    flex: 1 1 auto;
}
/*Top menu navigation css code*/
.top-nav-menu :is(li, .nav-item) {
    position: relative;
    margin-right: 0.75rem;
}

    .top-nav-menu :is(li, .nav-item):last-child {
        margin-right: 0px;
    }

.top-nav-menu :is(a, .nav-link) {
    display: block;
}

.top-nav-menu :is(li, .nav-item):before,
.top-nav-menu :is(li, .nav-item):after {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    transition: all 0.2s linear;
    /* background: var(--primary-color-hover); */
    background: #FFF;
    transition-delay: 0s;
}

.top-nav-menu :is(a, .nav-link):before,
.top-nav-menu :is(a, .nav-link):after {
    content: "";
    width: 1px;
    height: 0;
    position: absolute;
    transition: all 0.2s linear;
    /* background: var(--primary-color-hover); */
    background: #FFF;
    transition-delay: 0.2s;
}

.top-nav-menu :is(li, .nav-item):hover::before,
.top-nav-menu :is(li, .nav-item):hover::after {
    width: 100%;
}

.top-nav-menu :is(li, .nav-item):hover :is(a, .nav-link)::before,
.top-nav-menu :is(li, .nav-item):hover :is(a, .nav-link)::after {
    height: 100%;
}

.top-nav-menu :is(li, .nav-item):hover :is(a, .nav-link),
.top-nav-menu :is(li, .nav-item):hover :is(a, .nav-link) .bi {
    color: #FFF !important;
}

.top-nav-menu :is(li, .nav-item):before {
    right: 0;
    top: 0;
}

.top-nav-menu :is(li, .nav-item):after {
    left: 0;
    bottom: 0;
}

.top-nav-menu :is(li, .nav-item) :is(a, .nav-link)::before {
    left: 0;
    top: 0;
}

.top-nav-menu :is(li, .nav-item) :is(a, .nav-link)::after {
    right: 0;
    bottom: 0;
}

.top-nav-menu :is(li, .nav-item):hover::before,
.top-nav-menu :is(li, .nav-item):hover::after {
    transition-delay: 0.2s;
}

.top-nav-menu :is(li, .nav-item):hover :is(a, .nav-link)::before,
.top-nav-menu :is(li, .nav-item):hover :is(a, .nav-link)::after {
    transition-delay: 0s;
}

.top-nav-menu .active,
.top-nav-menu .active .bi {
    color: #FFF !important;
}

.top-nav-menu .active {
    border: 1px solid #FFF;
}

.patient-registration-text {
    position: relative;
    font-size: 46px;
}

    .patient-registration-text:before {
        content: "";
        position: absolute;
        left: -30px;
        top: 28%;
        height: 60px;
        width: 6px;
        border-radius: 3px;
        background: var(--primary-color);
    }

    .patient-registration-text.blue:before {
        background: var(--primary-color1);
    }

.alert-success {
    background: var(--success-bg);
}

.header-border-bottom {
    border-bottom: 2px solid var(--secondary-color);
}

.header-nav-bg {
    background: var(--header-nav-bg);
}

.icon-bar {
    background: #FFF;
    width: 22px;
    height: 2px;
    display: block;
    margin-bottom: 5px;
    transition: all 0.2s;
}

    .icon-bar:first-child {
        margin-top: 2px;
    }

.top-bar {
    transform: rotate(45deg);
    transform-origin: 25% 10%;
}

.middle-bar {
    display: none;
}

.bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 25% 90%;
}

.main-nav .navbar-toggler[aria-expanded="false"] .top-bar,
.main-nav .navbar-toggler[aria-expanded="false"] .bottom-bar {
    transform: rotate(0);
}

.main-nav .navbar-toggler[aria-expanded="false"] .middle-bar {
    display: block;
}

.main-logo-img img {
    width: 21.875rem;
}

.section-bg {
    position: relative;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #FFF !important;
}

.section-bg1 {
    position: relative;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--section-bg-gradient2) 30%, var(--secondary-color) 100%);
    margin-top: -38px;
    z-index: 1;
}

:is(.Private-practices-img, .find-your-doc-img, .join-us-img, .registration-img) {
    width: 100%;
    height: 100%;
}

.find-your-doc-img {
    background: url(../images/findyourdoc.svg) no-repeat bottom right;
    height: 400px;
    position: absolute;
    bottom: 0;
    /*z-index: 1;*/
}

.find-your-doc-img-1 {
    background: url(../images/findyourdoc-1.svg) no-repeat bottom right;
}

.private-practices-img {
    background: url(../images/private-practices-img.svg) no-repeat left;
}

.registration-img {
    background: url(../images/registration.svg) no-repeat center;
    height: 250px;
}

.health-stethoscope-img {
    background: url(../images/health-stethoscope.svg) no-repeat right;
    height: 180px;
    position: relative;
    margin-top: -20px;
}

.join-us-img {
    background: url(../images/joinus.svg) no-repeat right;
    height: 400px;
    margin-top: -89px;
}

:is(.main-nav, .main-nav1, .nav-menu) .navbar-nav :is(.nav-link, a:not(.dropdown-item)) {
    font-size: 18px;
    color: #FFF !important;
}

.main-nav .dropdown-menu .dropdown-item {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-base);
}

.main-nav .navbar-toggler {
    border: none !important;
    color: #FFF;
    cursor: pointer;
}

    .main-nav .navbar-toggler:hover,
    .main-nav .navbar-toggler:active,
    .main-nav .navbar-toggler:focus {
        box-shadow: 0 0 0 .2rem rgba(var(--box-shadow-color), .5);
    }

.dropdown-menu {
    z-index: 9999;
}

:is(.main-nav, .main-nav1, .nav-menu) .navbar-nav .nav-link :is(.bi) {
    font-size: 20px;
    margin-right: 8px;
    /*vertical-align: bottom;*/
}

:is(.main-nav, .main-nav1, .nav-menu) .navbar-nav :is(.nav-link:hover, a:hover),
:is(.main-nav, .main-nav1, .nav-menu) .navbar-nav :is(.nav-link:focus, a:focus),
:is(.main-nav, .main-nav1, .nav-menu) .navbar-nav a:hover .text-nowrap,
:is(.main-nav, .main-nav1, .nav-menu) .navbar-nav .nav-link:hover :is(.bi),
:is(.main-nav, .main-nav1, .nav-menu) .navbar-nav .nav-link:focus :is(.bi) {
    color: var(--nav-menu-hover-color) !important;
}

:is(.main-nav, .main-nav1, .nav-menu) .navbar-nav .dropdown-menu {
    position: absolute;
}

:is(.main-nav1, .nav-menu) .navbar-nav .nav-link :is(.bi) {
    color: var(--primary-color);
}

.main-nav .navbar-nav .dropdown-menu a:hover,
.main-nav .navbar-nav .dropdown-menu a:hover [class^="fa-"],
.main-nav .navbar-nav .dropdown-menu a:hover [class^="bi"] {
    color: var(--nav-menu-hover-color) !important;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
}

.dropdown-menu a:focus, .dropdown-menu a:active, .dropdown-menu a.active {
    background-color: var(--primary-color) !important;
    color: var(--nav-menu-hover-color) !important;
}

    .dropdown-menu a:focus :is(.bi, .color-primary), .dropdown-menu a:active :is(.bi, .color-primary), .dropdown-menu a.active :is(.bi, .color-primary) {
        color: #FFF !important;
    }

.nav-menu {
    margin-top: -36px;
}

.display-heading-1 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 180px;
    font-size: var(--display-font-size-1);
    color: var(--text-color-primary);
    /*z-index: 2;*/
}

.display-heading-2 {
    padding-top: 140px;
    padding-bottom: 140px;
    font-size: var(--display-font-size-1);
}

.text-no-wrap {
    white-space: nowrap;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-danger {
    color: var(--alert-color) !important;
}

a.text-danger:hover {
    color: var(--alert-hover-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-switch {
    cursor: pointer;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
}

    .btn-link:hover {
        color: var(--primary-color-hover);
    }

    .btn-link:active, .btn-link:first-child:active {
        color: var(--primary-color);
        background: transparent !important;
    }

    .btn-link:hover,
    .btn-link:focus {
        box-shadow: 0 0 0 .2rem rgba(var(--box-shadow-color), .5);
    }

/*.card-header-bg-blue .btn-link {
    color: rgba(0, 0, 0, 0.7);
}

.card-header-bg-blue :is(.btn-link:hover, .btn-link:active, .btn-link:first-child:active) {
    color: rgba(0, 0, 0, 1) !important;
}*/

.btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color);
}

    .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 .2rem rgba(var(--box-shadow-color), .5);
        color: #FFF;
    }

.btn-outline-secondary {
    border-color: var(--secondary-color) !important;
    color: var(--secondary-color);
}

    .btn-outline-secondary:hover,
    .btn-outline-secondary:focus,
    .btn-outline-secondary:active {
        background: var(--secondary-color) !important;
        border-color: var(--secondary-color) !important;
        box-shadow: 0 0 0 .2rem rgba(210, 78, 78, .5);
        color: #FFF;
    }

.card-header .btn-outline-primary {
    border: 2px solid #FFF !important;
    color: #FFF;
    padding: 0.25rem 0.5rem !important;
    transition: all 0.2s ease-out;
}

    .card-header .btn-outline-primary.rounded {
        border-radius: 50% !important;
        transition: all 0.2s ease-out;
    }

    .card-header .btn-outline-primary:hover,
    .card-header .btn-outline-primary:focus,
    .card-header .btn-outline-primary:active {
        background: transparent !important;
        border-color: #FFF !important;
        box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .5);
        border-radius: 0.375rem !important;
    }

.btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--box-shadow-color), .5);
    }

    .btn-primary.blue {
        background: var(--primary-color1);
        border-color: var(--primary-color1);
    }

    .btn-primary:hover.blue {
        background: var(--primary-color1-hover);
        border-color: var(--primary-color1-hover);
    }

.btn-danger {
    --bs-btn-bg: var(--alert-color) !important;
    --bs-btn-border-color: var(--alert-color) !important;
    --bs-btn-hover-bg: var(--alert-hover-color) !important;
    --bs-btn-hover-border-color: var(--alert-hover-color) !important;
    --bs-btn-active-bg: var(--alert-hover-color) !important;
    --bs-btn-active-border-color: var(--alert-hover-color) !important;
}

    .btn-danger:hover,
    .btn-danger:focus {
        box-shadow: 0 0 0 .2rem rgba(210, 78, 78, .5);
    }

.link-text {
    color: var(--text-color-primary) !important;
    text-decoration: none;
    cursor: pointer;
}

    .link-text:hover, .link-text:focus, .link-text:active {
        color: var(--text-color-hover-primary) !important;
    }

    .link-text.remove-email {
        color: var(--alert-color) !important;
    }

        .link-text.remove-email:hover, .link-text.remove-email:focus, .link-text.remove-email:active {
            color: var(--alert-hover-color) !important;
        }

.find-your-insur-form {
    /*margin-top: -90px;*/
    position: relative;
    /*z-index: 1;*/
}

.appointment-form-pos {
    margin-top: -90px;
}
/*.find-your-insur-form.sub-container {
        margin-top: -34px;
    }*/
.sr-line {
    background: url(../images/sr-line.png) no-repeat;
    background-position: center 30px;
}

.top-serached-icons-container {
    display: inline-block;
    width: 120px;
    height: 120px;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 3px 4px 15px #00000026;
    border-radius: 50%;
    padding: 30px;
    line-height: 50px;
    text-align: center;
    font-size: 50px;
}

.shadow {
    box-shadow: 3px 4px 15px #00000026;
}

.searched-icon {
    font-size: 50px;
    color: var(--primary-color1);
}

.v-align-sub {
    vertical-align: sub;
}

.v-align-text-top {
    vertical-align: text-top;
}

.font-size-lg {
    font-size: var(--font-size-lg);
}

.font-sm {
    font-size: var(--font-size-small);
}

.footer {
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-top: 2px solid var(--secondary-color);
    font-size: var(--footer-font-size);
    color: #FFF;
}

    .footer a {
        color: #FFF;
        text-decoration: underline;
    }

        .footer a:hover {
            color: var(--nav-menu-hover-color);
            text-decoration: none;
        }

.footer-1 {
    background: var(--header-nav-bg);
    border-top: 0px;
}

:is(:not(.toggle-icon).dropdown-toggle[aria-expanded="false"], :not(.toggle-icon).dropdown-toggle[aria-expanded="true"]):after, :is(.toggle-icon.dropdown-toggle[aria-expanded="false"] span, .toggle-icon.dropdown-toggle[aria-expanded="true"] span):after {
    font-family: bootstrap-icons !important;
    vertical-align: middle;
    border: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: auto;
    height: auto;
}

:not(.toggle-icon).dropdown-toggle[aria-expanded="false"]:after, :not(.toggle-icon).dropdown-toggle[aria-expanded="true"]:after, .toggle-icon.dropdown-toggle[aria-expanded="false"] span:after, .toggle-icon.dropdown-toggle[aria-expanded="true"] span:after {
    content: "\F282";
}

:not(.toggle-icon).dropdown-toggle[aria-expanded="true"]:after {
    /* content: "\F286"; */
    transform: rotate(180deg);
}

.toggle-icon.dropdown-toggle[aria-expanded="false"] span:after, .toggle-icon.dropdown-toggle[aria-expanded="true"] span:after {
    margin-left: 5px;
}

.toggle-icon.dropdown-toggle[aria-expanded="true"] span:after {
    content: "\F286";
}

.toggle-icon + .dropdown-menu li {
    margin-right: 0px;
}

.toggle-icon + .dropdown-menu {
    position: absolute !important;
    z-index: 999 !important;
}

    .toggle-icon + .dropdown-menu :is(li, a):before, .toggle-icon + .dropdown-menu :is(li, a):after {
        display: none;
    }

.toggle-icon.dropdown-toggle:after {
    border: 0px;
}

.dropdown:hover .toggle-icon + .dropdown-menu :is(a, .dropdown-item), .toggle-icon + .dropdown-menu :is(a, .dropdown-item):hover {
    color: var(--nav-menu-text-color) !important;
}

.dropdown:hover .toggle-icon + .dropdown-menu :is(.color-primary) {
    color: var(--primary-color) !important;
}

.dropdown-menu :is(a, .dropdown-item):active, .dropdown-menu :is(a, .dropdown-item):active :is(.bi, .color-primary) {
    color: #FFF !important;
}

.card.rounded-4 > .card-header {
    border-top-left-radius: var(--bs-border-radius-xl);
    border-top-right-radius: var(--bs-border-radius-xl);
}

:is(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-nexa) !important;
    font-weight: 600 !important;
}

.card .card-header :is(h1, h2, h3, h4, h5, h6),
.card-header-bg-blue :is(h1, h2, h3, h4, h5, h6),
.appointments-details :is(h1, h2, h3, h4, h5, h6),
.modal-header :is(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-nexa) !important;
    color: #FFF !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    align-self: center;
}

.timeslot-card :is(h1, h2, h3, h4, h5, h6),
.timeslot-card :is(h1, h2, h3, h4, h5, h6) :is(.timeslot-week, .timeslot-day) {
    font-family: var(--font-nexa) !important;
    font-size: 1.25rem;
}

.timeslot-card .card-body {
    white-space: normal;
}

.appointments-details :is(h1, h2, h3, h4, h5, h6) {
    color: var(--primary-color) !important;
    border-bottom: 1px solid var(--bs-border-color);
    font-size: 1.25rem;
}

.appointments-details:not(:first-child) :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 10px;
}

.modal-header,
.card-header-bg-blue,
.card-header,
.tippytooltip-header {
    position: relative;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    align-items: center;
}

.tippytooltip-header {
    color: #FFF;
    font-weight: 600;
    padding: 8px 5px;
    margin-bottom: 10px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.tippy-content .tippytooltip-header {
    margin: -10px -10px 10px -10px;
}

.card .card-header-bg-blue :is(h1, h2, h3, h4, h5, h6) {
    color: #FFF !important;
    font-weight: 600;
}

.card .card-header-bg-blue .btn-link,
.card :is(.card-header, .card-header-bg-blue) .btn-link {
    color: #FFF !important;
}

    .card :is(.card-header, .card-header-bg-blue) .btn-link:hover,
    .card :is(.card-header, .card-header-bg-blue) .btn-link:focus,
    .card :is(.card-header, .card-header-bg-blue) .btn-link:active {
        color: var(--nav-menu-hover-color) !important;
    }

.card-header.gx-2 {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.card-header.gx-3 {
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.sub-header-icon {
    font-size: 50px;
    color: var(--primary-color);
    padding-right: 40px;
    opacity: 0.35;
}

.choose-insurance-plan {
    position: relative;
}

#insurance-plan-dropdown {
    position: absolute;
}

.navbar-menu {
    position: relative;
    z-index: 2;
}

.main-nav1 .navbar-nav {
    flex-direction: row !important;
}

select {
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-wrap {
    flex-wrap: nowrap;
}

    .no-wrap .col-auto {
        flex: auto;
        margin-top: 0;
    }

.doctor-pic :is(.bi) {
    font-size: 96px;
    color: var(--primary-color);
}

.doctor-details {
    font-size: 14px;
}

.doctor-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--doctor-name);
}

.practice-name {
    font-weight: 600;
    color: var(--practice-name);
}

.info-window {
    font-family: var(--font-nexa);
    font-weight: 600;
    padding: 10px !important;
}

.divider-line,
.divider-line-horiz {
    width: 100%;
    height: 1px;
    background: var(--bs-border-color);
    margin: 10px 0;
}

.v-divider-line {
    width: 1px;
    height: 100%;
    background: var(--bs-border-color);
    margin: 10px 0;
}

.fs-small {
    font-size: 0.875rem;
}

.modal-content-date-wrapper {
    padding-bottom: 10px;
}

.col-sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    align-self: flex-start;
    height: 100%;
}

.divider-line.gx-4 {
    width: 103%;
    margin-left: -1rem;
}

.timeslot-card {
    font-size: 0.75rem;
    text-decoration: none;
}

    .timeslot-card .card {
        border-radius: 10px;
    }

    .timeslot-card .card-header {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .timeslot-card .card-body {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .timeslot-card.active .card {
        border-color: var(--timeslot-card-active-border-color);
        box-shadow: rgba(132, 203, 255, 0.15) 0px 3px 3px 0px;
    }

    .timeslot-card.active:hover .card {
        box-shadow: rgba(132, 203, 255, 0.5) 0px 3px 3px 0px;
    }

    .timeslot-card.active .card-header {
        background: var(--section-bg-gradient4);
        border-color: var(--timeslot-card-active-border-color);
        /* color: #FFF; */
    }

    .timeslot-card :is(.card-header, .card-body) {
        padding: 0.25rem;
    }

    .timeslot-card .card-body {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .timeslot-card.selected .card {
        border-color: var(--primary-color);
        box-shadow: rgba(47, 49, 233, 0.05) 0px 3px 3px 0px;
        /* box-shadow: rgba(47, 49, 223, 0.1) 0px 0px 16px; */
    }

    .timeslot-card.selected .card-header {
        background: var(--primary-color);
        color: #FFF;
    }

    .timeslot-card.disabled {
        cursor: not-allowed;
    }

        .timeslot-card.disabled .card {
            color: #d0d0d0 !important;
            border-color: #e4eaf1;
            box-shadow: rgba(130, 130, 130, 0.15) 0px 3px 3px 0px;
        }

        .timeslot-card.disabled .card-header {
            background: #ecf1f6;
            border-color: #e4eaf1;
        }

        .timeslot-card.disabled .card-body {
            background: rgba(208, 208, 208, 0.08);
        }

.timeslot-day {
    font-size: 0.75rem;
}

.available-date-card {
    background: rgba(var(--available-date-bg), 0.15);
    border: 1px solid rgb(var(--available-date-bg));
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: row;
    row-gap: 5px;
    column-gap: 40px;
    margin-bottom: 10px;
}

    .available-date-card .month-date-wrapper {
        position: relative;
        flex: 1 0 calc(100% / 8);
    }

        .available-date-card .month-date-wrapper:after {
            content: "";
            position: absolute;
            right: -20px;
            width: 1px;
            height: 100%;
            background: var(--bs-border-color);
            top: 0;
        }

    .available-date-card .month {
        color: var(--primary-color);
        font-size: 0.875rem;
        font-weight: 600;
    }

    .available-date-card .date {
        color: var(--secondary-color) !important;
        font-size: 1.75rem;
        font-weight: 600;
    }

.timeslot-wrapper {
    display: flex;
    flex-direction: row;
    row-gap: 5px;
    column-gap: 5px;
    flex-wrap: wrap;
    width: 100%;
}

    .timeslot-wrapper .timeslot-btn {
        flex: 0 0 calc(100% / 6);
        max-width: calc(100% / 6);
    }

        .timeslot-wrapper .timeslot-btn label {
            margin-top: 0px;
            width: 100%;
        }

.timeslot-btn {
    position: relative;
    padding-left: 0;
    margin-right: 0px;
    margin-bottom: 0px;
}

    .timeslot-btn label span {
        vertical-align: middle;
        position: relative;
        z-index: 9;
    }
/* customized radio button button type code */
.custom-form-check-button, .custom-check-weeks {
    display: flex;
    flex-direction: row;
}

    .custom-form-check-button .form-check {
        flex: auto;
        padding-left: 0;
        text-align: center;
    }

:is(.custom-form-check-button, .timeslot-btn, .custom-check-weeks) input {
    position: absolute !important;
    opacity: 0 !important;
    margin-left: 0px;
}

.custom-form-check-button .form-check label {
    border: 2px solid var(--bs-border-color);
    padding: 8px;
    width: 100%;
}

    .custom-form-check-button .form-check label > span {
        position: relative;
        z-index: 9;
    }

:is(.custom-form-check-button, .timeslot-btn) :is(.form-check, .form-check-label) {
    cursor: pointer;
}

:is(.custom-form-check-button, .timeslot-btn) input:disabled + label:hover {
    cursor: not-allowed;
}

:is(.custom-form-check-button, .timeslot-btn) input:not(:disabled) + label:hover {
    background-color: var(--section-bg-gradient4);
    border-color: var(--section-bg-gradient2);
}

:is(.custom-form-check-button, .timeslot-btn) label {
    position: relative;
}

:is(.custom-form-check-button, .timeslot-btn) input:checked + label:before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

:is(.custom-form-check-button, .timeslot-btn) input:checked + label span {
    color: #FFF;
}

    :is(.custom-form-check-button, .timeslot-btn) input:checked + label span:before {
        /* content: "\F272"; */
        content: "\F633";
        position: absolute;
        font-family: bootstrap-icons !important;
        color: #FFF;
        left: -16px;
        font-size: 12px;
        top: -8px;
    }

:is(.custom-form-check-button, .timeslot-btn) input:checked + label, :is(.custom-form-check-button, .timeslot-btn) input:checked + label:hover {
    border-color: var(--primary-color-hover);
}

.custom-form-check-button .form-check-inline {
    margin-right: 0px;
}

.custom-form-check-button .form-check:first-child label {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

:is(.custom-form-check-button, .timeslot-btn) .form-check:first-child input:checked + label:before {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.custom-form-check-button .form-check:last-child label:not(:hover), .custom-form-check-button .form-check:not(:first-child) label {
    border-left: 0px;
}

.custom-form-check-button .form-check:last-child label {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

:is(.custom-form-check-button, .timeslot-btn) .form-check:last-child input:checked + label:before {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}
/******custom checkboxes week*********/
.custom-check-weeks .form-check {
    display: flex;
    align-items: center;
    padding-left: 0px !important;
}

.custom-check-weeks input {
    left: 35px;
    z-index: -1;
}

.custom-check-weeks .form-check:not(:last-child) {
    margin-right: 10px;
}

.custom-check-weeks .form-check label {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--form-border-color);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    cursor: pointer !important;
}

    .custom-check-weeks .form-check label:hover {
        border-color: var(--primary-color);
    }

.custom-check-weeks .form-check input:checked + label {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFF;
}

.timeslot-btn input + label {
    padding: 5px;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 0.375rem;
    text-align: center;
    font-size: 14px;
}

.timeslot-btn input:checked + label:before {
    border-radius: 0.285rem;
}
/* customized radio button code */
.custom-form-check {
    position: relative;
    margin-bottom: 8px;
}

    .custom-form-check :is(input[type="radio"], input[type="checkbox"]) {
        opacity: 0;
    }

    .custom-form-check input + label {
        padding-left: 10px;
    }

        .custom-form-check input + label:hover {
            cursor: pointer;
        }

    .custom-form-check input:is(:disabled, .disabled, [disabled]) + label {
        cursor: not-allowed !important;
    }

    .custom-form-check input + label:before, .custom-form-check input + label:after {
        content: "";
        position: absolute;
    }

    .custom-form-check input[type="checkbox"] + label:before {
        background: #f4f9fc;
        border: 1px solid var(--section-bg-gradient2);
        width: 24px;
        height: 24px;
        left: 0;
        top: 0;
        border-radius: 4px;
    }

    .custom-form-check input[type="radio"] + label:before {
        background: #f4f9fc;
        border: 1px solid var(--section-bg-gradient2);
        width: 24px;
        height: 24px;
        left: 0;
        top: 0;
        border-radius: 24px;
    }

    .custom-form-check input:checked + label:before {
        background: var(--section-bg-gradient1);
        border-color: var(--primary-color);
    }

    .custom-form-check input:checked + label:after {
        font-family: bootstrap-icons !important;
        position: absolute;
        font-weight: 600;
        content: "\F26E";
        color: #FFF;
        font-size: 22px;
        left: 1px;
        top: -4px;
    }

.custom-form-radio {
    padding-left: 0px;
}

    .custom-form-radio input {
        display: none;
    }

    .custom-form-radio label {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer !important;
    }

        .custom-form-radio label:before {
            content: "";
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-color);
            border-radius: 22px;
            transition: all .2s;
            margin-right: 10px;
            border-radius: 50%;
        }

    .custom-form-radio input:checked + label:before {
        border-color: var(--primary-color);
    }
/*.custom-form-radio label:hover:before {
        transform: scale(1.2);
    }*/
@keyframes checked-radio-ani {
    0% {
        left: -15px;
        transform: scale(0);
    }

    100% {
        left: 5px;
        transform: scale(1);
    }
}

.custom-form-radio input:checked + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 10px;
    left: 5px;
    animation-name: checked-radio-ani;
    position: absolute;
    animation-duration: .2s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-fill-mode: both;
}

.website-entry {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .website-entry input {
        flex: 1;
        margin-right: 10px;
    }

.website-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .website-item input {
        flex: 1;
    }
/*.custom-form-radio input:checked + label:after {
    content: '\F633';
    font-family: bootstrap-icons !important;
    color: #FFF;
    font-size: 14px;
    left: 2px;
    width: auto;
    height: auto;
    background: transparent;
    animation-name: checked-radio-ani;
}*/
/* End customized radio buttons code */
.alert ul {
    margin-bottom: 0px;
}

.hide {
    display: none !important;
    padding: 0px !important;
    margin: 0px !important;
}

    .hide .d-block {
        display: none !important;
    }

.message-wrapper span:empty {
    display: none;
}

.h-divider {
    margin: 30px auto 20px;
    width: 85%;
    position: relative;
}

    .h-divider .divider-shadow {
        overflow: hidden;
        height: 20px;
    }

        .h-divider .divider-shadow:after {
            content: '';
            display: block;
            margin: -25px auto 0;
            width: 100%;
            height: 25px;
            border-radius: 125px/12px;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
        }
/* Page loader css code */
.pageloader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.5);
}

.pageloader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    position: relative;
    margin: 0 auto;
    top: 50%;
}

    .pageloader:before, .pageloader:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: inherit;
        height: inherit;
        border-radius: 50%;
        transform: rotateX(70deg);
        animation: 1s spin linear infinite;
    }

    .pageloader:after {
        color: var(--secondary-color);
        transform: rotateY(70deg);
        animation-delay: .4s;
    }

.modal-header {
    display: flex;
    justify-content: flex-start;
    border-top-left-radius: var(--bs-border-radius-lg);
    border-top-right-radius: var(--bs-border-radius-lg);
}

.modal-content {
    border-top-left-radius: var(--bs-border-radius-lg);
    border-top-right-radius: var(--bs-border-radius-lg);
}

.modal-body {
    background-color: white;
}

.card {
    margin-top: 30px;
}

.autocomplete-suggestions {
    max-height: 250px; /* Set a maximum height for the suggestions */
    overflow-y: auto; /* Enable vertical scrolling */
}

.autocomplete-suggestion {
    padding: 5px;
    cursor: pointer;
}

    .autocomplete-suggestion:hover {
        background: #f0f0f0; /* Highlight on hover */
    }

.extra-sm {
    font-size: 12px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.2rem !important;
}

    .form-label.extra-sm {
        margin-bottom: 0.25rem;
    }

.form-check-sm .form-check label {
    padding: 6px 4px;
    font-size: 12px;
}

:is(.form-check-sm) input:checked + label span:before {
    left: -12px;
    font-size: 10px;
    top: 2px;
}

.round-zoom {
    width: 108px; /* Size of the container */
    height: 108px; /* Size of the container */
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    background-position: center;
    background-size: cover;
}

    .round-zoom img {
        width: 120%; /* Zoom factor */
        height: auto;
        margin-left: 0%; /* Adjust to center the zoom */
    }

.dataTables_wrapper {
    overflow-x: hidden;
}

    .dataTables_wrapper.no-footer .dataTables_scrollBody {
        border-bottom: none;
    }

.dataTables_scroll .dataTables_scrollHead .dataTables_scrollHeadInner {
    width: 100% !important;
    padding-right: 0px !important;
}

.table-responsive .row:nth-child(2) .col-sm-12 {
    overflow-x: auto;
}

.results-per-page {
    display: flex;
    align-items: center;
}

    .results-per-page .form-label {
        margin-bottom: 0;
    }

    .results-per-page .form-select {
        width: auto;
        margin: 0 0.5rem;
    }

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-menu-item .ui-menu-item-wrapper {
    position: relative;
}

    .ui-menu-item .ui-menu-item-wrapper input[type="checkbox"] {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

#checkboxContainer {
    display: none;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
}
/*#specialityDropdown {
    display: none;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
}*/
.google-button {
    width: 100%; /* Adjust the size accordingly */
    height: 40px; /* Adjust the size accordingly */
    border: none;
    cursor: pointer;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

    .google-button img {
        height: 40px; /* Adjust the image height as needed */
        vertical-align: middle; /* Vertically centers the image */
    }

.slotetimeplaceholder {
    position: absolute;
    right: 40px; /* Adjust according to padding of input field */
    top: 10px;
    bottom: -20px;
    margin: auto; /* Centers vertically */
    height: fit-content; /* Adjust height to content */
    color: #6c757d; /* Placeholder text color, adjust as needed */
    pointer-events: none; /* Ensures clicks on 'minutes' don't affect input interaction */
    background-color: transparent; /* Ensures any background of the container doesn't overlap input */
}

5

.text-muted {
    font-family: var(--font-nexa);
    font-size: var(--font-size-small);
}

.fc-header-toolbar {
    padding: 0px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doctor-name.btn-link {
    font-size: 16px;
    color: var(--doctor-name);
}

    .doctor-name.btn-link:active {
        color: var(--doctor-name);
    }

.dataTables_wrapper .dataTables_filter {
    text-align: right;
}

.dataTables_filter {
    float: left; /* Ensures the filter box aligns left */
}

.dataTables_length {
    float: right; /* Ensures the length dropdown aligns right */
}

table.dataTable > thead .sorting:before,
table.dataTable > thead .sorting:after {
    top: 25%;
}

table.dataTable > thead .no-sorting:before,
table.dataTable > thead .no-sorting:after {
    display: none;
}

.thead-light tr :is(th, td) {
    background: var(--table-thead-light-bg);
    border-bottom-color: var(--table-border-color) !important;
}

#insuranceCarrierTable_filter input[type="search"] {
    width: 50vh !important; /* Important to override default DataTables styles */
}

#insuranceCarrierTable_filter {
    float: left;
    align-items: center; /* This might not have any effect unless the container is a flexbox */
}

#insuranceCarrierTable tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Lighter color for odd rows */
}

#insuranceCarrierTable tbody tr:nth-child(even) {
    background-color: #e9e9e9; /* Darker color for even rows */
}

.flex-grow {
    flex-grow: 1;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.checkbox-group {
    padding: 10px;
}

    .checkbox-group label {
        display: block;
    }

.practice-container {
    display: flex;
    justify-content: space-between;
    max-width: 780px;
    margin: 0 auto;
}

.practice-profile-overview {
    flex: 0 1 60%;
}

.side-section {
    flex: 0 1 40%;
    margin-left: 20px;
}

.btn-remove, .btn-save {
    margin-top: 10px;
}

.practice-logo {
    display: block;
    margin: 10px 0;
    max-width: 100%;
    height: auto;
}

#navbar {
    gap: 10px;
    justify-content: center;
}

.flag-icon {
    margin-right: 8px;
    width: 20px;
    height: 15px;
}

.practiceOverviewHeader {
    color: #666666;
    font-size: 19px;
    margin-bottom: 10px;
}

.box {
    padding-top: 13px;
    padding-bottom: 15px;
    margin-bottom: 3px;
    margin-top: 3px;
}

.form-group-border {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.content-container {
    display: flex; /* Establishes a flexbox layout context */
    align-items: start; /* Aligns children at the start of the container vertically */
    gap: 20px; /* Optional: Adds space between the card and the list */
}

.insurancecard {
    flex: 1; /* Takes up the majority of the space */
    max-width: 80%; /* Limits card width, adjust as necessary */
}

.selected-carriers {
    flex: 1; /* Allows the selected carriers list to take up the remaining space */
    max-width: 20%; /* Limits list width, adjust as necessary */
}

    .selected-carriers ul {
        margin-top: 20px; /* Aligns the top of the list with the card if desired */
        height: 100%; /* Optional: Matches height with the card */
        overflow-y: auto; /* Adds scroll to the list if it's too long */
    }

@media (max-width: 768px) {
    .content-container {
        flex-direction: column; /* Stacks the card and list vertically on smaller screens */
    }

    .insurancecard, .selected-carriers {
        max-width: 100%; /* Allows each section to take full width */
    }

    .patient-registration-text {
        text-align: center;
    }

        .patient-registration-text:before {
            display: none;
        }

    #calendar {
        pointer-events: all;
    }
}
/*.without_ampm::-webkit-datetime-edit-ampm-field {
    display: none;
}
*/
@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%, 100% {
        box-shadow: .4em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .4em .4em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .4em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.4em .4em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.4em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.4em -.4em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.4em 0 0 currentcolor;
    }

    87% {
        box-shadow: .4em -.4em 0 0 currentcolor;
    }
}
/* Dropdown menu slideup animation code */
.btn-group .dropdown-menu {
    animation: 0.5s slideup1;
}

.dropdown-menu {
    animation: 0.5s slideup;
}

@keyframes slideup {
    from {
        transform: translateY(20%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideup1 {
    from {
        transform: translateY(80px);
    }

    to {
        transform: translateY(41px);
    }
}

.modal-header {
    align-items: center !important;
}

.spacer {
    flex: 1 1 auto;
}
/*browser files input css*/
.uploader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/*.uploader-container h3 {
        margin-top: 25px;
    }
*/
.uploader-file label {
    padding: 8px 12px;
    border-radius: 100%;
    margin-bottom: 10px;
    cursor: pointer;
    background: #FFF;
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

    .uploader-file label:hover {
        /*box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);*/
        box-shadow: 0 0 0 .2rem rgba(var(--box-shadow-color), .5);
    }

.uploader-file-name {
    display: block;
    position: relative;
    margin-bottom: 10px;
}

    .uploader-file-name:before {
        content: "\F36D";
        font-family: bootstrap-icons !important;
        margin-right: 5px;
        vertical-align: text-bottom;
        color: var(--primary-color);
        white-space: normal;
        word-break: break-word;
    }

.uploader-img-wrapper {
    background: #fafafa;
    padding: 2px;
    border: 4px solid var(--primary-color);
    border-radius: 100%;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    position: relative;
}

    .uploader-img-wrapper img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

    .uploader-img-wrapper .uploaderIcon {
        font-size: 130px;
        line-height: 1;
        color: var(--primary-color);
    }

.location-address:not(:last-child) {
    margin-bottom: 1rem;
}
/***********custom breadcrumb css************/
.nav-breadcrumb {
    margin: 5px 0;
    overflow: hidden;
}

    .nav-breadcrumb a, .nav-breadcrumb a:after {
        background: #FFF;
        transition: all 0.5s;
    }

    .nav-breadcrumb a {
        position: relative;
        padding-left: 30px;
        padding-right: 20px;
        line-height: 36px;
        font-size: 14px;
        margin-bottom: 5px;
    }

        .nav-breadcrumb a:hover, .nav-breadcrumb a.active, .nav-breadcrumb a:hover:after, .nav-breadcrumb a.active:after {
            background: var(--primary-color-hover);
            color: #fff;
        }

        .nav-breadcrumb a:first-child {
            border-radius: 5px 0 0 5px;
        }

        .nav-breadcrumb a:last-child {
            border-radius: 0 5px 5px 0;
        }

        .nav-breadcrumb a:not(:last-child):after {
            content: '';
            position: absolute;
            top: 0;
            right: -15px;
            width: 36px;
            height: 36px;
            transform: scale(0.707) rotate(45deg);
            z-index: 1;
            box-shadow: 3px -3px 0 2px var(--page-bg), 3px -3px 0 2px var(--page-bg);
            border-radius: 0 10px 0 57px;
        }
/**********End breadcrumb css***************/
/***************Custom select dropdown css******************/
.custom-select-wrapper {
    position: relative;
}

    .custom-select-wrapper select {
        position: absolute;
        clip: rect(0, 0, 0, 0);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

.selectedList {
    position: relative;
    display: block;
    /*width: 98%;*/
    padding-right: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    box-sizing: border-box;
}

.dropdown-search-wrapper, .custom-form-select {
    position: relative;
}

.custom-form-select {
    padding: 0px !important;
}

.form-static-select {
    min-height: 38px;
}

    .form-static-select:focus, .form-static-select:active, .form-static-select.opend, .custom-form-select:focus, .custom-form-select.opend, .form-select.focus + .custom-form-select {
        box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
    }

.custom-select-trigger {
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
}
/*.custom-select-trigger[data-placeholder="true"] {
        color: #9B9B9B !important;
    }*/
.static-dropdown-card, .custom-options {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    min-width: 100%;
    z-index: -1;
    border: var(--bs-border-width) solid var(--bs-border-color);
    box-sizing: border-box;
    border-radius: var(--bs-border-radius);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    background: #fff;
    transition: all 0.6s ease-in-out;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.select2-dropdown {
    min-width: 100%;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    box-sizing: border-box;
    border-radius: var(--bs-border-radius) !important;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07) !important;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07) !important;
    background: #fff !important;
    transition: all 0.4s ease-in-out;
}

.static-dropdown-card .scroller-container, .custom-options {
    max-height: 320px;
    overflow-y: auto;
}

.static-dropdown-card .form-control {
    margin-bottom: 0px !important;
    border: none;
    border-bottom: var(--bs-border-width) solid var(--bs-border-color);
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

    .static-dropdown-card .form-control:focus, .static-dropdown-card .form-control:hover, .static-dropdown-card .form-control:active {
        outline: none !important;
        box-shadow: none !important;
    }

.static-dropdown-card .scroller-container {
    padding: 0.5rem;
    margin-left: 0.5rem;
}

.static-dropdown-card.opend {
    display: block;
}

.static-dropdown-card.opend, .custom-form-select.opened .custom-options {
    opacity: 1;
    filter: opacity(1);
    z-index: 999;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    display: block;
}

    .static-dropdown-card.opend.top {
        transform: translateY(-112%);
    }

.custom-option {
    padding: .375rem .375rem .375rem .75rem;
    display: block;
    cursor: pointer;
}

    .custom-option:first-child {
        border-top-left-radius: var(--bs-border-radius);
        border-top-right-radius: var(--bs-border-radius);
    }

    .custom-option:last-child {
        border-bottom-left-radius: var(--bs-border-radius);
        border-bottom-right-radius: var(--bs-border-radius);
    }

    .custom-option:not([selected="selected"]):hover {
        background: var(--section-bg-gradient2);
        color: var(--bs-body-color);
    }

    .custom-option.selection, .custom-option[selected] {
        color: #FFF;
        font-weight: 600;
        background: var(--primary-color);
    }

        .custom-option.selection:before, .custom-option[selected]:before {
            content: "\F272"; /* this is your text. You can also use UTF-8 character codes as I do here*/
            font-family: bootstrap-icons !important;
            float: right;
        }

.custom-form-select.disabled .custom-select-trigger, .custom-form-select.disabled .custom-select-trigger:hover, .custom-form-select.disabled .custom-select-trigger:active, .custom-form-select.disabled .custom-select-trigger:focus {
    outline: 0;
    box-shadow: none;
    background-color: #E8E8E8 !important;
    border-color: #BEBEBE !important;
    color: #999 !important;
}

.txt-chips {
    background: var(--section-bg-gradient4);
    color: #000;
    font-size: 14px;
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap;
    line-height: 30px;
    cursor: pointer;
}

#importProvider .txt-chips {
    border-radius: 8px;
}

.txt-chips:hover {
    background: var(--section-bg-gradient2);
}

.txt-chips:not(:last-child) {
    margin-right: 10px;
}

.clearChips {
    margin-left: 6px;
    cursor: pointer;
    vertical-align: middle;
}

    .txt-chips:hover .clearChips, .txt-chips:hover .clearProviderChips, .clearProviderChips:hover, .clearChips:hover {
        color: #d63384;
    }

.providers.txt-chips {
    white-space: normal;
    line-height: normal;
}

.providers .clearProviderChips {
    margin-left: 20px;
}

.list-group input:checked + label {
    color: var(--primary-color) !important;
}

.static-placeholder {
    color: var(--placeholder-color);
}
/***************end custom select dropdown css**************/
/************custom select2 css**************/
.custom-multi-select .select2-selection {
    width: 100%;
    padding: .375rem 2rem .375rem .75rem !important;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    cursor: pointer;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    border-radius: .25rem !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    max-height: 320px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

    .custom-multi-select .select2-selection:after {
        content: '\F282';
        font-family: bootstrap-icons !important;
        position: absolute;
        right: 10px;
        top: 20%;
    }

.custom-multi-select .select2-selection--clearable.select2-selection:after {
    top: 50%;
}

.custom-multi-select .select2-selection:focus, .custom-multi-select .select2-selection:active {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5);
}

.custom-multi-select ul li {
    font-family: var(--font-nexa) !important;
    background: var(--section-bg-gradient4) !important;
    color: #000 !important;
    font-size: 14px !important;
    border-radius: 20px !important;
    padding: 4px 10px !important;
    white-space: nowrap;
    cursor: pointer;
    border: none !important;
    margin-left: 0px !important;
    margin-top: 0px !important;
    margin-bottom: 4px !important;
}

    .custom-multi-select ul li:hover {
        background: var(--section-bg-gradient2) !important;
    }

    .custom-multi-select ul li:not(:last-child) {
        margin-right: 10px;
    }

    .custom-multi-select ul li button {
        border-right: none !important;
        position: relative !important;
        float: right !important;
        color: #000 !important;
        background: transparent !important;
        line-height: normal !important;
    }

.custom-multi-select .select2-selection__clear {
    margin-top: -2px !important;
    margin-right: 10px !important;
    padding: 0px;
}

    .custom-multi-select .select2-selection__clear:after, .custom-multi-select ul li button:after {
        content: '\F623'; /*close icon*/
        font-family: bootstrap-icons !important;
        vertical-align: middle;
    }

.custom-multi-select ul li button + .select2-selection__choice__display {
    vertical-align: middle;
}

.custom-multi-select ul li button span, .custom-multi-select .select2-selection__clear span {
    display: none
}

.custom-multi-select .select2-selection__clear:hover, .custom-multi-select ul li:hover button {
    color: #d63384 !important;
}

.select2-dropdown li {
    margin-bottom: 1px !important;
}

.select2-dropdown ul {
    max-height: 220px !important;
}

.select2-dropdown ul, .select2-dropdown li:first-child {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important;
}

.select2-dropdown ul, .select2-dropdown li:last-child {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
}

.select2-dropdown .select2-results__option--highlighted {
    background: var(--section-bg-gradient4) !important;
    color: #000 !important;
}

.select2-dropdown .select2-results__option--selected {
    background: var(--primary-color) !important;
    color: #FFF !important;
}

.empty-space {
    min-height: 200px !important;
}

.mb-9 {
    margin-bottom: 5rem !important;
}

.empty-space-100 {
    min-height: 100px !important;
}
/************ End custom select2 css**********/
.provider-item {
    position: relative;
    font-size: 14px !important;
    border-bottom: 1px solid #dee2e6;
    cursor: pointer;
}

    .provider-item:hover, .provider-item:is(.selected, .selected-provider) {
        background: var(--light-blue-bg);
    }

    .provider-item.selected-provider:after, .provider-item.selected:after {
        content: '\F633'; /*check icon*/
        font-family: bootstrap-icons !important;
        color: var(--primary-color);
        position: absolute;
        right: 5px;
        top: -6px;
        font-size: 16px;
    }

.calendar-provider-item {
    position: relative;
    font-size: 14px !important;
    border-bottom: 1px solid #dee2e6;
    cursor: pointer;
    padding: 0.5rem 1.45rem 0.5rem 0.5rem;
    cursor: pointer;
}

    .calendar-provider-item .form-check-label {
        white-space: normal;
        word-break: break-word;
    }

    .calendar-provider-item:hover, .calendar-provider-item:is(.selected, .selected-provider) {
        background: var(--light-blue-bg);
    }

    .calendar-provider-item.selected-provider:after, .calendar-provider-item.selected:after {
        /*content: '\F633';*/ /*check icon*/
        font-family: bootstrap-icons !important;
        color: var(--primary-color);
        position: absolute;
        right: 5px;
        top: -6px;
        font-size: 16px;
    }

    .calendar-provider-item.selected:after {
        top: 35%;
    }

.calendar-providerlist {
    padding: 6px;
}

    .calendar-providerlist .provider-item,
    .calendar-providerlist .calendar-provider-item {
        border: 2px solid #dee2e6;
        margin-bottom: 5px;
        border-radius: 5px;
        box-shadow: 0 0 0 .2rem transparent;
    }

        .calendar-providerlist .calendar-provider-item:is(.selected, .selected-provider),
        .provider-item:is(.selected, .selected-provider),
        .calendar-providerlist .provider-item:hover,
        .calendar-providerlist .calendar-provider-item:hover,
        .calendar-providerlist .provider-item:focus,
        .calendar-providerlist .calendar-provider-item:focus,
        .calendar-providerlist .provider-item:active,
        .calendar-providerlist .calendar-provider-item:active {
            box-shadow: 0 0 0 .1rem rgba(var(--box-shadow-color), .5);
            border-color: var(--light-blue-bg);
        }

        .calendar-providerlist .provider-item .badge,
        .calendar-providerlist .calendar-provider-item .badge {
            background: var(--section-bg-gradient2);
            color: #000;
            padding: 2px 5px;
            border-radius: 5px;
            line-height: inherit;
        }

.provider-item .form-check label {
    cursor: pointer;
}

.calendar-provider-item .form-check label {
    cursor: pointer;
}

.badge {
    font-family: var(--font-nexa);
    font-weight: 600;
    display: inline-flex;
    column-gap: 5px;
    align-items: center;
}

.badge-success,
.badge-alert {
    color: #FFF;
}

.badge-success {
    background: var(--primary-color);
}

.badge-alert {
    background: var(--secondary-color);
}
/************Datatable css*************/
table.dataTable > thead .sorting_asc:before, table.dataTable > thead .sorting_desc:after {
    color: var(--primary-color) !important;
}

table.dataTable thead :is(.sorting, .sorting_asc, .sorting_desc, .sorting_asc_disabled, .sorting_desc_disabled) {
    background-image: none !important;
}
/*.table > :not(caption) > * > * {
    border-bottom: none !important;
}*/
.table tbody tr td {
    border-bottom-color: var(--table-border-color);
}

table.dataTable {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

    table.dataTable.no-footer {
        border-bottom: none;
    }

    table.dataTable thead th, table.dataTable thead td {
        padding-left: 10px !important;
    }

.tbl-responsive tbody tr td .img-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 40px;
}

.tbl-responsive tbody tr td {
    vertical-align: middle;
}

.tbl-bottom-radius tbody tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 1rem !important;
}

.tbl-bottom-radius tbody tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 1rem !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0px !important;
    margin-left: 0px;
    border: none !important;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover, .dataTables_wrapper .dataTables_paginate .paginate_button:not(.disabled):hover, .dataTables_wrapper .dataTables_paginate .paginate_button:not(.disabled):focus {
        background: var(--primary-color) !important;
        color: #FFF !important;
        border-color: var(--primary-color-hover) !important;
    }

.dataTables_paginate :not(.disabled).paginate_button:hover a, .dataTables_paginate a:hover, .dataTables_paginate a:focus, .dataTables_paginate a:active {
    color: var(--primary-color) !important;
}

.dataTables_paginate .active a, .dataTables_paginate .paginate_button.active:hover a, .dataTables_paginate .active a:hover, .dataTables_paginate .active a:focus, .dataTables_paginate .active a:active {
    background: var(--primary-color-hover) !important;
    border-color: var(--primary-color-hover) !important;
    color: #FFF !important;
}

.dataTables_paginate .paginate_button a {
    padding: 0.25rem 0.75rem !important;
}

.dataTables_wrapper .dataTables_filter input {
    border-color: var(--form-border-color) !important;
}

.dataTables_wrapper .dataTables_length label, .dataTables_filter label {
    padding-top: 5px;
    font-weight: 600 !important;
}

.dataTables_length .form-select {
    padding: 0.375rem 2rem 0.375rem 0.75rem !important;
    -moz-padding-start: calc(0.75rem - 3px) !important;
}

.dataTables_filter label {
    position: relative;
    padding-right: 4px;
}

.dataTables_filter .form-control {
    padding-right: 20px !important;
}

.dataTables_filter span.close-icon {
    position: absolute;
    top: 9px;
    right: 8px;
    font-size: 22px;
    display: inline-block;
    color: var(--primary-color);
    cursor: pointer;
    opacity: 0.45;
}

    .dataTables_filter span.close-icon:hover {
        color: var(--primary-color);
        opacity: 1;
    }

:is(.accordion-body.p-0, .card-body.p-0, .modal-body.px-0, .modal-body.p-0) .dataTables_wrapper {
    padding: 1rem 0;
}

:is(.accordion-body.p-0, .card-body.p-0, .modal-body.px-0, .modal-body.p-0) .dataTables_length,
:is(.accordion-body.p-0, .card-body.p-0, .modal-body.px-0, .modal-body.p-0) .dataTables_info {
    padding-left: 1rem;
    font-weight: 600;
}

:is(.accordion-body.p-0, .card-body.p-0, .modal-body.px-0, .modal-body.p-0) .dataTables_filter {
    padding-right: 1rem !important;
    font-weight: 600;
}

:is(.accordion-body.p-0, .card-body.p-0, .modal-body.px-0, .modal-body.p-0) .dataTables_paginate {
    padding-right: 1rem;
}

.table tbody tr td a:not(.delete-icon) {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    cursor: pointer;
}

.table tbody tr td a:not(:last-child) {
    margin-right: 10px;
}

.table tbody tr td a:not(.delete-icon):hover, .table tbody tr td a:not(.delete-icon):focus, .table tbody tr td a:not(.delete-icon):active, .table tbody tr td a:hover .color-primary, .table tbody tr td a:focus .color-primary, .table tbody tr td a:active .color-primary {
    color: var(--primary-color-hover) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-bg-type: rgba(0, 0, 0, 0.02) !important;
}

.scroller-container {
    max-height: 200px;
    overflow-y: auto;
}

#reviewsContent.scroller-container {
    max-height: 400px;
}

.dataTables_wrapper.no-footer .row:last-child {
    align-items: center;
}
/************End datatable css*************/
/**************Calendar select dropdown custom css styles*******/
.custom-select option {
    cursor: pointer !important;
}

    .custom-select option:hover {
        background: var(--section-bg-gradient2) !important;
    }
/**************End calendar select dropdown custom css styles*******/
/********Tooltip background and arrow color css********/
.tooltip-inner {
    background-color: var(--primary-color) !important;
}

.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    border-top-color: var(--primary-color) !important;
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    border-right-color: var(--primary-color) !important;
}

.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    border-bottom-color: var(--primary-color) !important;
}

.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    border-left-color: var(--primary-color) !important;
}

.customtooltip.show {
    opacity: 1 !important;
}

.customtooltip .tooltip-inner {
    background: var(--section-bg-gradient4) !important;
    border: 2px solid var(--section-bg-gradient2);
    padding: 0px;
}

    .customtooltip .tooltip-inner .list-group {
        border: none !important;
    }

        .customtooltip .tooltip-inner .list-group .list-group-item {
            background: transparent;
            padding: 5px 10px;
        }

            .customtooltip .tooltip-inner .list-group .list-group-item:not(:last-child) {
                border-bottom: 1px solid var(--section-bg-gradient2) !important;
            }
/********End tooltip background and arrow color css********/
/*************Accordion Icons*********/
.accordionBtn {
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .accordionBtn:after {
        font-family: bootstrap-icons !important;
        margin-left: auto;
    }

    .accordionBtn[aria-expanded="true"]:after {
        content: '\F286';
    }

    .accordionBtn[aria-expanded="false"]:after {
        content: '\F282';
    }
/*************End Accordion Icons*********/
.form-check .form-check-label {
    margin-top: 2px;
}
/******Form fields vaild and invalid error styles****/
.parent-row {
    cursor: pointer;
}

    .parent-row.expanded {
        color: var(--primary-color);
    }

.input-group .input-group-text {
    background: var(--primary-color);
    color: #FFF;
}

.form-control, .form-select {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

    .form-select option {
        font-weight: 600;
    }

.form-control, .btn {
    font-weight: 600;
}

:is(.form-control, .form-select).valid, :is(.form-control, .form-select).valid-border, input:is(:-webkit-autofill, :autofill) {
    background: var(--form-valid-bg) !important;
    border-color: var(--form-valid-border-color) !important;
}

    :is(.form-control, .form-select).valid:focus, :is(.form-control, .form-select).valid-border:focus, :is(.form-control, .form-select).valid-border:active, :is(.form-control, .form-select).valid:active {
        box-shadow: 0 0 0 .2rem rgba(145, 193, 171, .35);
    }

:is(.form-control, .form-select).input-validation-error, :is(.form-control, .form-select).invalid-border {
    background: var(--form-invalid-bg) !important;
    border-color: var(--form-invalid-border-color) !important;
}

    :is(.form-control, .form-select).input-validation-error:focus, :is(.form-control, .form-select).invalid-border:focus, :is(.form-control, .form-select).invalid-border:active, :is(.form-control, .form-select).input-validation-error:active {
        box-shadow: 0 0 0 .2rem rgba(241, 174, 183, .25);
    }
/******End form fields vaild and invalid error styles****/
/*******************Login form UI styles*****************/
.login-form-tabs {
    border-bottom: none !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
}

    .login-form-tabs .nav-item {
        background: #FFF;
        margin-bottom: 0px !important;
        border: 0px !important;
    }

        .login-form-tabs .nav-item:not(:last-child) {
            margin-right: 10px;
        }

    .login-form-tabs .nav-link {
        position: relative;
        white-space: nowrap !important;
        color: #000;
        cursor: pointer;
        border: 0px !important;
        font-weight: 600;
        border-radius: 0px !important;
        border-bottom: 4px solid rgba(0, 0, 0, 0.125) !important;
        padding: 0.5rem !important;
    }

        .login-form-tabs .nav-link:hover {
            color: var(--primary-color);
        }

        .login-form-tabs .nav-link:before {
            position: absolute;
            content: '';
            left: 0;
            bottom: -4px;
            height: 4px;
            width: 0px;
            background: var(--primary-color);
            transition: all 0.3s ease;
        }

        .login-form-tabs .nav-link:hover:before {
            width: 100%;
        }

        .login-form-tabs .nav-link.active {
            border-bottom-color: var(--primary-color) !important;
            color: var(--primary-color) !important;
        }
/******************End login form UI styles**************/
.pos-fixed {
    position: fixed !important;
}

    .pos-fixed.dropdown-width {
        min-width: calc(100% - 30px);
        width: calc(100% - 30px);
    }

    .pos-fixed > .scroller-container {
        max-height: 180px !important;
    }

.default-icon {
    background: #e3e3e3;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
}
/********************Calendar css styles*************/
.fc-view-harness {
    background: var(--calendar-bg);
    font-family: var(--font-nexa) !important;
    font-size: var(--font-size-base) !important;
    border-radius: 20px;
    /*height: auto !important;
    flex-grow: inherit !important;*/
}

.fc-header-toolbar {
    padding-top: 4px !important;
    margin-bottom: 0.5rem !important;
}
/*.fc .fc-view-harness-active > .fc-view,
.fc-view-harness .fc-scroller {
    position: relative !important;
}*/
.fc-view-harness .fc-listWeek-view .fc-scroller {
    border-radius: 20px;
}

.fc-view-harness :is(table, .fc-scrollgrid), .fc-theme-standard .fc-scrollgrid {
    border-color: transparent !important;
}

.fc-view-harness .fc-listWeek-view, .fc-view-harness table thead th, .fc-view-harness table tbody td {
    border: none !important;
}

.fc-view-harness .fc-col-header thead th {
    color: var(--calendar-font-color);
    padding: 4px 0;
    border-bottom: 2px solid var(--calendar-border-color) !important;
    font-weight: 600 !important;
    /*width: 14.285% !important;*/
}

.fc-view-harness .fc-listWeek-view table a, .fc-view-harness table thead th a, .fc-view-harness .fc-scrollgrid-sync-table tbody tr td a:not(.fc-more-link) {
    text-decoration: none;
    color: var(--calendar-font-color) !important;
    font-weight: 600;
}

.fc-view-harness .fc-scrollgrid-sync-table tbody tr td a {
    margin-left: 0px;
    margin-right: 0px;
}

.fc-view-harness .fc-scrollgrid-sync-table tbody tr td {
    padding: 4px;
    color: var(--calendar-font-color);
    /*width: 14.285% !important;*/
}

    .fc-view-harness .fc-scrollgrid-sync-table tbody tr td a .fc-daygrid-event-dot, .fc-list-event-graphic {
        display: none;
    }
/*.fc-view-harness .fc-scrollgrid table {
    width: 100% !important;
    height: auto !important;
}*/
.fc-list-event-title {
    vertical-align: middle;
}

    .fc-list-event-title .event-container .right-pane {
        cursor: pointer;
    }
/*.fc-list-event-title .event-container {
    display: inline-flex;
}*/
.fc-timegrid-event {
    border-color: var(--primary-color) !important;
}


.fc-list-event-title .event-container:hover, .fc-list-event-title .event-container:focus, .fc-list-event-title .event-container:active, .fc-daygrid-day-bottom .fc-more-link:hover, .fc-daygrid-day-bottom .fc-more-link:focus, .fc-daygrid-day-bottom .fc-more-link:active, .fc-popover-body a:hover, .fc-popover-body a:focus, .fc-popover-body a:active, .fc-daygrid-day-events a:hover, .fc-daygrid-day-events a:focus, .fc-daygrid-day-events a:active {
    background: var(--primary-color-hover) !important;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.fc-popover-body a .fc-event-title, .fc-daygrid-day-events a .fc-event-title {
    color: #FFF !important;
    font-size: 12px;
    text-align: center;
}

.fc-view-harness .fc-scrollgrid-sync-table {
    table-layout: initial !important;
}

    .fc-view-harness .fc-scrollgrid-sync-table tbody tr td:not(:last-child) {
        border-right: 2px solid var(--calendar-border-color) !important;
    }

    .fc-view-harness .fc-scrollgrid-sync-table tbody tr:not(:last-child) td {
        border-bottom: 2px solid var(--calendar-border-color) !important;
    }

.fc .fc-daygrid-day.fc-day-today {
    background: var(--calendar-today-bg);
}

.fc-view-harness .fc-scrollgrid-sync-table tbody tr td.fc-day-today .fc-daygrid-day-top a, .fc-day-today .fc-daygrid-day-top a {
    /*background: #ffa610;*/
    background-color: var(--calendar-today-gradient-bg1);
    background-image: -moz-linear-gradient(to bottom,var(--calendar-today-gradient-bg1), var(--calendar-today-gradient-bg2));
    background-image: -ms-linear-gradient(to bottom,var(--calendar-today-gradient-bg1),var(--calendar-today-gradient-bg2));
    background-image: -webkit-gradient(linear,0 0,0 100%,from(var(--calendar-today-gradient-bg1)),to(var(--calendar-today-gradient-bg2)));
    background-image: -webkit-linear-gradient(to bottom,var(--calendar-today-gradient-bg1),var(--calendar-today-gradient-bg2));
    background-image: -o-linear-gradient(to bottom,var(--calendar-today-gradient-bg1),var(--calendar-today-gradient-bg2));
    background-image: linear-gradient(to bottom,var(--calendar-today-gradient-bg1),var(--calendar-today-gradient-bg2));
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--calendar-today-gradient-bg1)', endColorstr='var(--calendar-today-gradient-bg2)', GradientType=0);
    border-radius: 50%;
    padding: 4px 6px;
    color: #FFF !important;
    margin-bottom: 3px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.fc-daygrid-event-harness:not(:last-child) {
    margin-bottom: 5px;
}

.calendar-wrapper table tbody tr {
    padding-bottom: 10px !important;
}

.calendar-wrapper table {
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
}

.calendar-wrapper .datepicker-inline {
    width: 100%;
}

.calendar-wrapper table tr td.today, .calendar-wrapper table tr td.today:hover, .calendar-wrapper table tr td.today:focus, .calendar-wrapper table tr td.today:active {
    background: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #FFF;
}

.calendar-wrapper table tr th:hover, .calendar-wrapper table tr td:hover {
    background: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.fc-button-group {
    column-gap: 8px;
}

.fc .fc-button-primary, .fc .fc-button-primary:disabled {
    background: #FFF !important;
    border-radius: 6px !important;
    color: var(--calendar-font-color) !important;
    border: 1px solid var(--calendar-border-color) !important;
}

    .fc .fc-button-primary:not(:disabled):hover, .fc .fc-button-primary:not(:disabled):focus, .fc .fc-button-primary:not(:disabled):active {
        background: var(--primary-color-hover) !important;
        border: 1px solid var(--section-bg-gradient2) !important;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
        color: #FFF !important;
    }

.fc-doctor-name-row {
    padding: 4px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .fc-doctor-name-row :is(h1, h2, h3, h4, h5, h6) {
        font-family: var(--font-nexa) !important;
        margin-bottom: 0px;
        font-weight: 600;
        display: flex;
    }

        .fc-doctor-name-row, .fc-doctor-name-row :is(h1, h2, h3, h4, h5, h6) > span {
            position: relative;
        }

            .fc-doctor-name-row:after {
                content: '';
                position: absolute;
                width: 100%;
                height: 4px;
                background: var(--primary-color);
                top: 47%;
            }

            .fc-doctor-name-row :is(h1, h2, h3, h4, h5, h6) > span {
                background: #FFF;
                z-index: 99;
                padding-right: 38px;
            }

                .fc-doctor-name-row :is(h1, h2, h3, h4, h5, h6) > span:before, .fc-doctor-name-row :is(h1, h2, h3, h4, h5, h6) > span:after {
                    content: '';
                    position: absolute;
                    top: 35%;
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                }

                .fc-doctor-name-row :is(h1, h2, h3, h4, h5, h6) > span:before {
                    background: var(--primary-color);
                    right: 5px;
                }

                .fc-doctor-name-row :is(h1, h2, h3, h4, h5, h6) > span:after {
                    background: var(--calendar-today-gradient-bg1);
                    right: 20px;
                }

.event-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
}

    .event-container .left-pane {
        margin-right: 5px;
    }

    .event-container .right-pane {
        color: #FFF !important;
        cursor: pointer;
    }

.fc-timegrid-event .delete-icon {
    color: #000 !important;
}

.fc-daygrid-body {
    width: 100% !important;
}
/*.fc-daygrid-event-harness,
.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
    position: relative !important;
}*/
.edited:after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--success-bg);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
/********************End calendar css styles*************/
/********Cropper image css*******************/
.img-container img {
    display: block;
    max-width: 100%;
}

.img-container {
    width: 100%;
    display: flex;
    justify-content: center;
}
/********End cropper image css*******************/
/********************End calendar css styles/********************Calendar css styles*************/
.fc-view-harness {
    background: var(--calendar-bg);
    font-family: var(--font-nexa) !important;
    font-size: var(--font-size-base) !important;
    border-radius: 20px;
    /*height: auto !important;
    flex-grow: inherit !important;*/
}

.fc-header-toolbar {
    padding-top: 4px !important;
    margin-bottom: 0.5rem !important;
}
/*.fc .fc-view-harness-active > .fc-view,
.fc-view-harness .fc-scroller {
    position: relative !important;
}*/
.fc-view-harness .fc-listWeek-view .fc-scroller {
    border-radius: 20px;
}

.fc-view-harness :is(table, .fc-scrollgrid), .fc-theme-standard .fc-scrollgrid {
    border-color: transparent !important;
}

.fc-view-harness .fc-listWeek-view, .fc-view-harness table thead th, .fc-view-harness table tbody td {
    border-bottom: 1px solid var(--calendar-border-color) !important;
}

.fc-view-harness .fc-col-header thead th {
    color: var(--calendar-font-color);
    padding: 4px 0;
    border-bottom: 2px solid var(--calendar-border-color) !important;
    font-weight: 600 !important;
    /*width: 14.285% !important;*/
}

.fc-view-harness .fc-listWeek-view table a, .fc-view-harness table thead th a, .fc-view-harness .fc-scrollgrid-sync-table tbody tr td a:not(.fc-more-link) {
    text-decoration: none;
    color: var(--calendar-font-color) !important;
    font-weight: 600;
}

.fc-view-harness .fc-scrollgrid-sync-table tbody tr td a {
    margin-left: 0px;
    margin-right: 0px;
}

.fc-view-harness .fc-scrollgrid-sync-table tbody tr td {
    padding: 4px 12px 4px 4px;
    color: var(--calendar-font-color);
    /*width: 14.285% !important;*/
}

    .fc-view-harness .fc-scrollgrid-sync-table tbody tr td a .fc-daygrid-event-dot, .fc-list-event-graphic {
        display: none;
    }
/*.fc-view-harness .fc-scrollgrid table {
    width: 100% !important;
    height: auto !important;
}*/
.fc-list-event-title {
    vertical-align: middle;
}

    .fc-list-event-title .event-container .right-pane {
        cursor: pointer;
    }
/*.fc-list-event-title .event-container {
    display: inline-flex;
}*/
.fc-timegrid-event {
    border-color: var(--primary-color) !important;
}

.fc-list-event-title .event-container, .fc-daygrid-day-bottom .fc-more-link, .fc-popover-body a, .fc-daygrid-day-events a {
    background: var(--primary-color) !important;
    border-radius: 5px;
    white-space: normal;
    padding: 5px;
    font-size: 12px;
    color: #FFF !important;
    text-decoration: none;
}

    .fc-list-event-title .event-container:hover, .fc-list-event-title .event-container:focus, .fc-list-event-title .event-container:active, .fc-daygrid-day-bottom .fc-more-link:hover, .fc-daygrid-day-bottom .fc-more-link:focus, .fc-daygrid-day-bottom .fc-more-link:active, .fc-popover-body a:hover, .fc-popover-body a:focus, .fc-popover-body a:active, .fc-daygrid-day-events a:hover, .fc-daygrid-day-events a:focus, .fc-daygrid-day-events a:active {
        background: var(--primary-color-hover) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--box-shadow-color), .25);
    }

    .fc-popover-body a .fc-event-title, .fc-daygrid-day-events a .fc-event-title {
        color: #FFF !important;
        font-size: 12px;
        text-align: center;
    }

:is(.fc-timeGridWeek-view, .fc-timeGridDay-view) .event-container {
    font-size: 12px !important;
    padding: 0 4px;
}

    :is(.fc-timeGridWeek-view, .fc-timeGridDay-view) .event-container .delete-icon {
        font-size: 28px !important;
    }

.fc-timeGridWeek-view .fc-timegrid-event-harness {
    width: 100%;
}

.fc-event-with-max-width {
    width: 100%;
    max-width: calc(100% - var(--dynamic-left)) !important;
}

.text-ellipsis .right-pane {
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-timegrid-event {
    box-shadow: none !important;
}

.fc-timegrid-col-events {
    margin-right: 3px !important;
}

.currentcolumn {
    position: relative;
    z-index: 2;
}

.currenttd + td,
.prevstd {
    position: relative;
    z-index: 1;
}

.fc-timeGridWeek-view .fc-timegrid-event-harness:hover {
    z-index: 999 !important;
}

.fc-view-harness .fc-scrollgrid-sync-table tbody tr td:not(:last-child) {
    border-right: 2px solid var(--calendar-border-color) !important;
}

.fc-view-harness .fc-scrollgrid-sync-table tbody tr:not(:last-child) td {
    border-bottom: 2px solid var(--calendar-border-color) !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background: var(--calendar-today-bg);
}

.fc-view-harness .fc-scrollgrid-sync-table tbody tr td.fc-day-today .fc-daygrid-day-top a, .fc-day-today .fc-daygrid-day-top a {
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    padding: 4px 6px;
    color: #FFF !important;
    margin-bottom: 3px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.fc-daygrid-event-harness:not(:last-child) {
    margin-bottom: 5px;
}

.fc-popover {
    border-radius: 6px;
}

.fc-popover-header {
    background: var(--primary-color) !important;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: #FFF !important;
    font-weight: 600;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.calendar-wrapper table tbody tr {
    padding-bottom: 10px !important;
}

.calendar-wrapper table {
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
}

.calendar-wrapper .datepicker-inline {
    width: 100%;
}

.calendar-wrapper table tr td.today, .calendar-wrapper table tr td.today:hover,
.calendar-wrapper table tr td.today:focus, .calendar-wrapper table tr td.today:active {
    background: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #FFF !important;
}

.calendar-wrapper table tr td:not(.today).day:hover {
    color: #000 !important;
}

.calendar-wrapper table tr th:hover, .calendar-wrapper table tr td:hover {
    background: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #FFF;
}

.calendar-wrapper table tr td.active {
    background: var(--secondary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.fc-button-group {
    column-gap: 8px;
}

.fc .fc-button-primary, .fc .fc-button-primary:disabled {
    background: #FFF !important;
    border-radius: 6px !important;
    color: var(--calendar-font-color) !important;
    border: 1px solid var(--calendar-border-color) !important;
}

    .fc .fc-button-primary:not(:disabled):hover, .fc .fc-button-primary:not(:disabled):focus, .fc .fc-button-primary:not(:disabled):active {
        background: var(--primary-color-hover) !important;
        border: 1px solid var(--section-bg-gradient2) !important;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
        color: #FFF !important;
    }

.fc-doctor-name-row {
    padding: 4px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--doctor-name);
}

.dr-name-text {
    color: var(--doctor-name);
}

.event-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between !important;
    width: 100%;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
}

    .event-container .left-pane[order="1"] {
        order: 1;
        margin-left: 5px;
        margin-right: 2px;
    }

    .event-container .right-pane {
        color: #FFF !important;
        cursor: pointer;
    }
/*.table tbody tr td a.delete-icon,*/
.delete-icon {
    color: var(--alert-color) !important;
    cursor: pointer;
}
    /*.table tbody tr td a.delete-icon:hover,*/
    .delete-icon:hover {
        color: var(--alert-hover-color) !important;
    }

.fc-timegrid-event .delete-icon {
    color: #000 !important;
}

.event-container .delete-icon {
    color: #f5d0d6 !important;
}

    .event-container .delete-icon:hover {
        color: #faecef !important
    }
/*.fc-daygrid-body {
    width: 100% !important;
}*/
/*.fc-daygrid-event-harness,
.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
    position: relative !important;
}*/
.edited:after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--success-bg);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
/********************End calendar css styles*************/
.modal-backdrop {
    --bs-backdrop-opacity: 0.75 !important;
}

    .modal-backdrop.show {
        display: block !important;
    }
/************Custom Accordions css****************/
.custom-accordion .accordion-button {
    background: #FFF;
    color: var(--primary-color);
}

    .custom-accordion .accordion-button:not(.collapsed) {
        background: var(--primary-color);
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        align-items: center;
        color: #FFF !important;
    }

        .custom-accordion .accordion-button:not(.collapsed):after {
            filter: brightness(0) invert(1);
        }

.custom-accordion .accordion-button {
    font-weight: 600;
    padding: 0.75rem 1rem;
}

    .custom-accordion .accordion-button:focus {
        box-shadow: 0 0 0 .2rem rgba(var(--box-shadow-color), .5);
    }

.accordion-item :is(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-nexa) !important;
}

.custom-accordion .accordion-header {
    cursor: pointer;
}

.custom-accordion .accordion-item:last-child .provider-item:last-of-type {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.custom-accordion .accordion-item:last-child .calendar-provider-item:last-of-type {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

/**************End Custom Accordions css***********/
.insu-carrier-name {
    position: relative;
}

    .insu-carrier-name:not(:last-child):after {
        content: ",";
        margin-right: 5px;
    }

.lessdetails.hide, .moredetails.hide {
    opacity: 0;
    transition: all 2s linear;
}

.lessdetails, .moredetails {
    opacity: 1;
    transition: all 2s linear;
}

.moredetails {
    max-height: 200px;
    overflow-y: auto;
}
/*****************Review details card*************/
.review-card, .review-date-time {
    position: relative;
}

.review-date-time {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    color: #FFF;
    column-gap: 10px;
    column-gap: 10px;
}

.review-star {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 6px;
}

.review-card {
    margin-bottom: 20px;
}

.review-comment-card {
    padding: 1rem;
    background: rgba(var(--primary-rgb-color), 0.25);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.quote-bg {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .quote-bg[data-pos="left"] {
        top: -5px;
    }

    .quote-bg[data-pos="right"] {
        top: 5px;
    }

.review-comment-card.bg-white {
    background: #FFF;
}

.mt-60 {
    margin-top: 60px;
}

.review-user-img img,
.review-user-img .default-icon {
    margin-top: -66px;
    margin-bottom: 22px;
    width: 100px;
    height: 100px;
    box-shadow: rgba(var(--primary-rgb-color), 0.75) 1.95px 1.95px 2.6px;
}

.review-user-img .default-icon {
    font-size: 5rem;
}

.comment {
    margin-bottom: 10px;
}

.review-comment-card-header {
    border-top: 1px solid rgba(var(--primary-rgb-color), 0.25);
    padding-top: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--secondary-color);
}

.known-languages span:not(:last-child):after {
    content: ',';
    padding-right: 6px;
}

.about-card {
    background: rgba(var(--primary-rgb-color), 0.05);
    border-radius: 6px;
    padding: 0.75rem;
}

.about-card-title,
.about-card-title :is(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-nexa);
    font-weight: 600;
    font-size: 18px;
}

.custom-nav-tab .tab-content {
    background: #FFF;
    border: 1px solid var(--bs-border-color-translucent);
    padding: 1rem;
    border-radius: 6px;
    max-height: 550px;
    overflow-y: auto;
}

.custom-nav-tab .nav-tabs {
    border-bottom: none;
    overflow: hidden;
    white-space: nowrap;
    overflow-x: auto;
    flex-wrap: nowrap;
}

    .custom-nav-tab .nav-tabs .nav-link {
        margin-bottom: 10px;
        border: none;
        border-radius: 24px;
        padding: 0px;
        padding-right: 1rem;
        color: #FFF;
        background: var(--primary-color);
        font-weight: 600;
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

        .custom-nav-tab .nav-tabs .nav-link:not(:last-child) {
            margin-right: 8px;
        }

        .custom-nav-tab .nav-tabs .nav-link .tab-icon {
            background: rgba(255, 255, 255, 0.15);
            margin-right: 0.5rem;
            text-align: center;
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #FFF;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        .custom-nav-tab .nav-tabs .nav-link.active {
            color: #FFF;
        }

            .custom-nav-tab .nav-tabs .nav-link.active:after {
                content: '\F229'; /* Unicode for the down arrow */
                font-family: bootstrap-icons !important;
                position: absolute;
                bottom: -15px;
                color: var(--primary-color);
                left: 45%;
            }

            .custom-nav-tab .nav-tabs .nav-link:hover .tab-icon, .custom-nav-tab .nav-tabs .nav-link.active .tab-icon {
                background: var(--secondary-color);
                color: #FFF;
            }

        .custom-nav-tab .nav-tabs .nav-link:hover {
            color: #FFF;
        }

        .custom-nav-tab .nav-tabs .nav-link.active .tab-icon > .tab-number {
            display: none;
        }

        .custom-nav-tab .nav-tabs .nav-link.active .tab-icon:after {
            content: "\F633"; /* Unicode for the checkmark */
            font-family: bootstrap-icons !important;
            color: #FFF;
            vertical-align: middle;
        }

.person-verified {
    position: relative;
    margin-left: 5px;
    font-weight: 600;
    font-size: 12px;
}

    .person-verified:before {
        content: '\F309'; /* Unicode for the Dot */
        font-family: bootstrap-icons !important;
        vertical-align: middle;
    }
/****************End review details card**********/
.main-search-container {
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 0.375rem;
    background: #FFF;
    padding: 10px !important;
}

    .main-search-container:hover, .main-search-container:focus {
        border-color: rgb(var(--box-shadow-color));
    }

    .main-search-container .form-control {
        border: none !important;
        background: transparent !important;
        padding-left: 1.8rem;
        text-overflow: ellipsis;
    }

        .main-search-container .form-control:focus, .main-search-container .form-control:hover, .main-search-container .form-control:active {
            box-shadow: none !important;
        }

    .main-search-container [class^="col"] {
        position: relative;
        margin-top: 0px !important;
    }

        .main-search-container [class^="col"]:not(:last-child):after {
            content: '';
            background: rgba(0, 0, 0, 0.7);
            position: absolute;
            left: 100%;
            top: 10%;
            width: 1px;
            height: 80%;
        }

    .main-search-container:hover [class^="col"]:not(:last-child):after, .main-search-container:focus [class^="col"]:not(:last-child):after {
        background: rgb(var(--box-shadow-color));
    }

    .main-search-container .form-control + .icon-suffix {
        position: absolute;
        left: 0.5rem;
        top: 0.375rem;
    }

        .main-search-container .form-control + .icon-suffix [class^="bi"] {
            vertical-align: middle;
        }

.volodoc-search-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 1.2rem;
}
/*Landing page autocomplete related css*/
.ui-menu {
    font-family: var(--font-nexa) !important;
    font-size: var(--font-size-base);
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    color: var(--primary-color) !important;
}

    .ui-menu li:hover {
        transform: none !important;
    }

    .ui-menu .ui-menu-item-wrapper {
        padding: 0px !important;
    }

    .ui-menu .ui-state-active {
        background: transparent !important;
        border: none !important;
        color: var(--primary-color) !important;
        font-weight: 600 !important;
        margin: 0px !important;
    }

    .ui-menu .ui-autocomplete-category {
        padding: 0px;
    }

        .ui-menu .ui-autocomplete-category .category-header, .ui-menu .ui-autocomplete-category .category-header.ui-state-active {
            background: var(--primary-color) !important;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
            color: #FFF !important;
            padding: 12px !important;
            width: 100%;
            border-radius: 0px;
            font-family: var(--font-typographica) !important;
            font-weight: normal !important;
        }

    .ui-menu .ui-menu-item .placeholder-icon {
        background: var(--primary-color) !important;
    }

.pac-container {
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

    .pac-container:after {
        margin-right: 12px !important;
    }

    .pac-container .pac-item {
        font-family: var(--font-nexa) !important;
        font-size: var(--font-size-base) !important;
        color: var(--primary-color) !important;
        padding: 5px !important;
        cursor: pointer;
    }

        .pac-container .pac-item:hover {
            background: #f1f1f1 !important;
        }

        .pac-container .pac-item .pac-item-query {
            font-size: var(--font-size-base) !important;
            color: var(--primary-color) !important;
            padding-right: 6px;
        }

            .pac-container .pac-item .pac-item-query + span {
                font-size: 12px !important;
                color: #000 !important;
            }

        .pac-container .pac-item .pac-icon {
            position: relative;
            background: transparent;
            margin-top: 0;
        }

            .pac-container .pac-item .pac-icon:after {
                content: "\F3E7"; /* Unicode for the map location icon */
                font-family: bootstrap-icons !important;
            }
/*End landing page autocomplete related css*/

.sub-level-1 td:first-of-type {
    padding-left: 2rem;
}

.expand-collapse-map {
    position: absolute;
    margin-left: 10px;
    margin-top: 55px;
    z-index: 9999;
}

    .expand-collapse-map[aria-expanded="false"] .icon:before, .expand-collapse-map[aria-expanded="true"] .icon:before {
        font-family: bootstrap-icons !important;
        vertical-align: bottom;
        margin-right: 5px;
    }

    .expand-collapse-map[aria-expanded="false"] .icon:before {
        content: "\F284"; /* Unicode for the arrow left icon */
    }

    .expand-collapse-map[aria-expanded="true"] .icon:before {
        content: "\F285"; /* Unicode for the arrow right icon */
    }

    .expand-collapse-map[aria-expanded="false"] .label-text:before {
        content: 'Expand map';
    }

    .expand-collapse-map[aria-expanded="true"] .label-text:before {
        content: 'Show list';
    }

main {
    height: 100%;
}

.modal-body .modal-footer {
    padding-left: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
}

[aria-atomic="false"] {
    display: none !important;
}

[aria-atomic="ture"] {
    display: flex !important;
}

.select2-container .select2-search--inline .select2-search__field {
    font-family: var(--font-nexa) !important;
    margin-top: 0px !important;
    margin-left: 0px !important;
    height: 23px !important;
    font-weight: 600;
}

.sm-show {
    display: none;
}

.btn-xxl-row-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

    .btn-xxl-row-wrapper button {
        width: 100%;
    }

.custom-card-bg-light {
    background: rgba(var(--primary-rgb-color), 0.03);
    border: 2px solid rgba(var(--primary-rgb-color), 0.035);
}
    .rounded-6{
        border-radius: 6px;
    }
    .btn-img-upload {
        padding: 3px 6px;
        border-radius: 4px;
        box-shadow: none;
        border: none;
        cursor: pointer;
    }
button.btn-img-upload{
    background: transparent;
}

.btn-img-plus {
    color: var(--primary-color);
    background: rgba(var(--primary-rgb-color), 0.15);
}

    .btn-img-plus:hover {
        background: rgba(var(--primary-rgb-color), 0.25);
    }

.btn-img-delete {
    color: var(--secondary-color);
    background: rgba(var(--secondary-rgb-color), 0.15) !important;
}

    .btn-img-delete:hover {
        background: rgba(var(--secondary-rgb-color), 0.25) !important;
    }

@media (min-width: 1360px) {
    .left-side {
        width: 62% !important;
    }

    .right-side {
        width: 38% !important;
    }

    .btn-xxl-row-wrapper {
        flex-direction: row;
        justify-content: space-between;
        column-gap: 10px;
    }
}

@media (min-width: 991.98px) and (max-width: 1329.98px) {
    #providerSlotDetails .timeslot-nowrap .col-md-1-7 {
        flex: 0 0 calc(100% / 4) !important;
        max-width: calc(100% / 4) !important;
    }

    .timeslot-nowrap {
        flex-wrap: nowrap;
        white-space: nowrap;
        width: 100%;
        overflow-x: auto;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (min-width: 575.98px) and (max-width: 767.98px) {
    .find-your-doc-img {
        opacity: 0.5;
    }

    .sr-line {
        background: none;
    }

    .private-practices-img {
        height: 300px !important;
        background-position: center;
    }

    .rounded-sm-4 {
        border-radius: var(--bs-border-radius-xl) !important;
    }

    .find-your-insur-form .py-5 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .find-your-insur-form1 .no-wrap,
    .find-your-insur-form .no-wrap {
        flex-wrap: wrap;
    }

    .find-your-insur-form1 .btn,
    .no-wrap .btn {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    body {
        height: 100dvh !important;
    }

    .navbar-nav .dropdown .dropdown-menu-end {
        left: 0;
        right: auto;
    }

    .display-heading-1 {
        padding-top: 10px;
    }

    .top-nav-menu :is(a, .nav-link),
    .top-nav-menu + .d-flex .navbar-nav :is(a, .nav-link) {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .main-search-container [class^="col"] {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }

        .main-search-container [class^="col"]:after {
            display: none;
        }

    .main-search-container .form-control {
        border: 1px solid var(--bs-border-color) !important;
        border-left-color: #FFF !important;
        border-top-color: #FFF !important;
        border-right-color: #FFF !important;
        border-radius: 0;
    }

        .main-search-container .form-control:focus,
        .main-search-container .form-control:active {
            /*border-color: rgb(var(--box-shadow-color)) !important;*/
            box-shadow: 0 0 0 .2rem rgba(var(--box-shadow-color), .5) !important;
            border-radius: 4px !important;
        }

    .main-nav .navbar-toggler {
        margin-left: auto;
    }

        .main-nav .navbar-toggler[aria-expanded="true"] {
            padding-right: 5px;
        }

    .main-nav .navbar-collapse {
        margin: 0.5rem 0;
        margin-left: initial !important;
    }

    .logindetails {
        padding-left: 0.5rem !important;
        width: 100%;
    }

        .logindetails .d-flex {
            flex-direction: column;
        }

    .main-search-container .btn-wrapper {
        display: flex;
        justify-content: space-between;
        column-gap: 10px;
        padding-top: 1rem;
    }

        .main-search-container .btn-wrapper > button,
        .main-search-container .btn-wrapper > a {
            width: 100%;
        }

    [data-label-text]:after {
        content: attr(data-label-text);
        padding-left: 5px;
    }

    .top-nav-menu :is(li, .nav-item) {
        margin-bottom: 5px;
    }

    .map-container .left-side {
        width: 100%;
    }

    .map-container .right-side {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        left: 0;
        transform: translateX(100%);
    }

    .map-container.expand .right-side {
        transform: translateX(0%);
    }

    .expand-collapse-map {
        left: -58px;
        top: -40px;
        position: fixed;
        z-index: 99999;
        margin-left: 0;
    }

    .map-container.expand .expand-collapse-map {
        left: initial;
        top: 5px;
        right: 16px;
    }

    .map-container:not(.expand) .expand-collapse-map .icon:before {
        margin-right: 0 !important;
    }

    .map-container:not(.expand) .expand-collapse-map .label-text {
        display: none;
    }

    .timeslot-nowrap {
        flex-wrap: nowrap;
        white-space: nowrap;
        width: 100%;
        overflow-x: auto;
    }

        .timeslot-nowrap:not(.accordion-body) {
            padding: 10px 0 !important;
        }

    .timeslot-wrapper .timeslot-btn {
        flex: 0 0 calc(100% / 4);
        max-width: calc(100% / 4);
    }

        .timeslot-wrapper .timeslot-btn input:checked + label span:before {
            top: -10px;
            font-size: 0.75rem;
            left: -9px;
        }

    #navbarMenu {
        position: fixed;
        background: var(--primary-color);
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        left: 0;
        width: 100vw;
        overflow-y: auto;
        transition: all 0.3s ease;
        z-index: 999999;
        transform: translateX(-100%);
    }

    .main-nav:not(.logo-text) #navbarMenu {
        top: 47px;
        height: calc(100dvh - 47px);
        max-height: calc(100dvh - 47px);
        padding: 0 0.5rem;
    }

    .main-nav.logo-text #navbarMenu {
        top: 42px;
        height: calc(100dvh - 42px);
        max-height: calc(100dvh - 42px);
        padding: 0 0.5rem;
    }

    #navbarMenu.show {
        transform: translateX(0%);
    }

    .lockedScroll {
        overflow: hidden !important;
    }

    .left-side.scrollable-div {
        max-height: calc(100dvh - 120px) !important;
    }

    :is(.custom-form-check-button, .timeslot-btn) input:checked + label span:before {
        top: -7px;
    }

    .patient-registration-text:before {
        top: 10px;
    }

    .patient-registration-text {
        font-size: 1.875rem;
    }

    .registration-img {
        height: 9.375rem;
    }

    .tbl-responsive {
        display: block;
    }

        .tbl-responsive thead {
            display: none;
        }

        .tbl-responsive tbody {
            padding: 5px;
            display: block;
        }

            .tbl-responsive tbody tr {
                display: block;
                background: #FFF;
                padding: 4px;
                border-radius: 6px;
                box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
                margin-bottom: 10px;
            }

                .tbl-responsive tbody tr td:before {
                    content: attr(data-tbl-label);
                    font-weight: 600;
                    align-self: center;
                    color: var(--primary-color) !important;
                }

                .tbl-responsive tbody tr td {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: end;
                    column-gap: 20px;
                    border-bottom: none;
                    border-top: none;
                    font-size: 14px;
                }

    .patient-registration-text {
        font-size: 1.75rem;
    }

    .sm-show {
        display: block;
    }

    .available-date-card .month-date-wrapper {
        flex: 1 0 calc(100% / 4);
    }

    .timeslot-wrapper .timeslot-btn {
        flex: 0 0 calc(100% / 3);
        max-width: calc(100% / 3);
    }

    :is(.accordion-body.p-0, .card-body.p-0, .modal-body.px-0, .modal-body.p-0) .dataTables_filter {
        padding-left: 1rem !important;
    }

    #insuranceTable_wrapper .dataTables_scrollBody {
        height: auto !important;
        max-height: initial !important;
    }

    .sub-level-1 td {
        padding-left: 2rem !important;
    }

    .sub-level-1.show {
        position: relative;
    }

        .sub-level-1.show:after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-color);
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
        }

    .parent-row .toggle-icon {
        margin-left: auto;
    }

    .col-custom-md-12 {
        width: 100%;
    }
}

@media (max-width: 639.98px) {
    :is(.accordion-body.p-0, .card-body.p-0) .dataTables_filter {
        padding-left: 1.25rem !important;
    }
}

@media (min-width: 575.98px) and (max-width: 682.98px) {
    .card-header-bg-blue:not(.card-header) .d-flex.justify-content-center {
        justify-content: end !important;
    }
}

@media (max-width: 767.98px) {
    [order="1"] {
        order: -1 !important;
    }

    .modal-dialog-centered {
        justify-content: center;
    }

    .col-sticky-top {
        position: initial;
    }

    .btn-wrapper {
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        column-gap: 10px;
        width: 100%;
    }

        .btn-wrapper > button,
        .btn-wrapper > a {
            width: 100%;
            margin: 0;
        }

        .btn-wrapper .spacer {
            display: none;
        }

    table.dataTable.no-footer {
        border-bottom: none !important;
    }

    .dataTables_filter label {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .dataTables_filter .form-control {
        width: 100% !important;
    }

    .pos-fixed.dropdown-width {
        left: 16px;
    }

    .registration-img {
        display: none;
    }

    .timeslot-wrapper .timeslot-btn {
        flex: 0 0 calc(100% / 3);
        max-width: calc(100% / 3);
    }
}

@media (max-width: 575.98px) {
    .login-modal {
        max-width: 380px; /* Override the max-width to your preferred value */
        /*margin: 1.75rem auto;*/ /* You can keep or modify the margin */
    }

    .custom-modal {
        max-width: 400px;
    }

    .custom-moda-dialog {
        max-width: 400px;
    }

    .private-practices-img {
        height: 300px !important;
        background-position: center;
    }

    .sr-line {
        background: none;
    }

    .find-your-doc-img {
        opacity: 0.5;
    }

    .rounded-sm-4 {
        border-radius: var(--bs-border-radius-xl) !important;
    }

    .find-your-insur-form .py-5 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .find-your-insur-form1 .no-wrap,
    .find-your-insur-form .no-wrap {
        flex-wrap: wrap;
    }

    .find-your-insur-form1 .col-auto,
    .no-wrap .col-auto {
        width: 100%;
        /* flex: 100%; */
        margin-bottom: 0.5rem !important;
    }

    .find-your-insur-form1 .btn,
    .no-wrap .btn {
        width: 100%;
    }

    .main-nav .dropdown-menu-end {
        left: 0;
    }

    .col-xs-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .ms-xs-0 {
        margin-left: 0 !important;
    }

    .justify-content-xs-center {
        justify-content: center !important;
    }

    .timeslot-week {
        font-size: 0.75rem;
    }

    .col-md-1-7 {
        flex: 0 0 calc(100% / 4) !important;
        max-width: calc(100% / 4) !important;
    }

    .timeslot-wrapper .timeslot-btn {
        flex: 0 0 calc(100% / 2);
        max-width: calc(100% / 2);
    }

    .card-header-bg-blue:not(.card-header) .col-auto.col-xs-12 {
        text-align: center;
    }

        .card-header-bg-blue:not(.card-header) .col-auto.col-xs-12 .d-flex.align-items-center {
            justify-content: center;
        }

    .modal {
        --bs-modal-margin: 1rem !important;
    }

    .d-xs-none {
        display: none !important;
    }

    :is(.custom-form-check-button, .timeslot-btn) input:checked + label span:before {
        top: -10px;
        font-size: 0.75rem;
        left: -9px;
    }

    .btn-wrapper {
        flex-direction: column !important;
        row-gap: 10px;
    }

        .btn-wrapper div,
        .btn-wrapper button,
        .btn-wrapper a {
            width: 100%;
        }

    [data-short-label] .long-text {
        display: none;
    }

    [data-short-label]:after {
        content: attr(data-short-label);
    }

    .timeslot-btn input + label {
        padding: 7px;
    }

    .card-header .btn-link {
        white-space: nowrap;
    }

    .flex-xs-auto {
        flex: 1 0 auto;
    }

    .flex-xs-fill {
        flex: 1 1 auto;
    }

    .d-xs-block {
        display: block;
    }

    .mb-xs-2 {
        margin-bottom: 0.75rem;
    }
}
/* Uniform button styles */
.uniform-btn {
    width: 80%; /* Set width to 70% for all buttons */
    max-width: 300px; /* Optional max width to prevent oversized buttons */
    display: block; /* Ensure buttons are displayed as block for full-width */
    margin: 0 auto; /* Center all buttons */
    padding: 10px; /* Consistent padding for all buttons */
    height: 42px; /* Ensuring all buttons have the same height */
    line-height: 1.5; /* Text alignment and vertical centering */
}
/* Input field adjustments */
/*.custom-input {
    border: 2px solid #28a745;*/ /* Optional for consistency */
/*border-radius: 5px;
    padding: 12px;
    font-size: 14px;
}*/
/* Custom tab styles */
.custom-tabs .nav-link {
    width: 100%;
    color: #666; /* Light gray for inactive tabs */
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    position: relative;
    transition: color 0.3s ease;
    background: transparent; /* No background for inactive tabs */
}

    .custom-tabs .nav-link.active {
        color: #007bff; /* Blue color for active tab */
        font-weight: 600;
        position: relative;
        background: transparent;
    }

        .custom-tabs .nav-link.active::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: #007bff; /* Blue underline for active tab */
            bottom: -5px;
            left: 0;
        }

    .custom-tabs .nav-link:hover {
        color: #007bff; /* Hover effect: turns the text blue */
    }

.custom-tabs .nav-item {
    width: 50%; /* Set each tab to take 50% of the width */
    margin-right: 0; /* Remove margin between tabs to keep them aligned */
    text-align: center; /* Center the text in each tab */
}
/* Optional: Style adjustments to input fields */
.custom-input {
    border: 2px solid #007bff; /* Blue border for consistency */
    border-radius: 5px;
    padding: 12px;
    font-size: 14px;
}
/* Blue border for valid email */
/*.valid-border {
    border: 2px solid #007bff !important;*/ /* Blue border */
/*}*/
/* Red border for invalid email */
/*.invalid-border {
    border: 2px solid red !important;*/ /* Red border */
/*}*/
/* Tick mark style (valid) */
.valid-icon {
    position: absolute;
    right: 10px;
    top: 35px; /* Adjust based on input height */
    font-size: 20px;
    color: #007bff; /* Blue tick */
}
/* Cross mark style (invalid) */
.invalid-icon {
    position: absolute;
    right: 10px;
    top: 35px; /* Adjust based on input height */
    font-size: 20px;
    color: red; /* Red cross */
}

.col-md-1-7 {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
}

.phone-img {
    background: url(../images/phone.svg) no-repeat bottom center;
    height: 100px;
    font-size: 100px;
    /*z-index: 1;*/
}
/* Additional styling to ensure intl-tel-input is consistent */
.iti {
    width: 100%;
}

.iti__flag-container {
    height: 100%;
}

.iti input {
    width: 100%;
    height: 100%; /* Ensures full height of input */
}

.google-btn {
    width: 210px;
}
/*
#multiSelectInputContainer {
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 60px;
}*/
/* Highlight style */
.highlight {
    /*background-color: black;*/
    font-weight: 600;
}

.strong {
    font-weight: 600;
}
/* Custom style for selected items to display a gray background */
.select2-selection__choice {
    /*background-color: #d3d3d3 !important;*/ /* Gray background */
    color: #000; /* Black text */
    border: none; /* Remove border */
    padding-right: 25px; /* Space for the checkmark */
    padding-left: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 2px;
    border-radius: 15px; /* Rounded corners */
    font-size: 14px; /* Adjust font size */
}
/* Adjust the spacing for the overall container */
.select2-container .select2-selection--multiple {
    min-height: 48px; /* Adjust height */
    padding: 4px; /* Padding inside the container */
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Align items to the top */
}
/* Style for the search input to be on a new line */
.select2-container--default .select2-selection--multiple .select2-search--inline {
    width: 100% !important; /* Force the input to take full width */
    padding-left: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.select2-search--inline .select2-search__field {
    width: 100% !important; /* Make the search box full width */
    padding: 4px; /* Add some padding */
}
/* Custom style for the tick mark in the search results */
.select2-results__option--selected::after {
    content: "\F633"; /* Unicode for the checkmark */
    font-family: bootstrap-icons !important;
    color: #FFF;
    font-weight: 600;
    position: absolute;
    right: 10px; /* Adjust the space from the right */
    top: 50%;
    transform: translateY(-50%);
}
/* Ensure the dropdown items are relatively positioned */
.select2-results__option {
    position: relative;
    padding-right: 25px; /* Add space for the checkmark */
}
/* Toast Container Styling */
#toastContainer {
    border-radius: 14px;
    position: fixed;
    top: 80px; /* Position the container 20px above the bottom */
    right: 20px;
    z-index: 1060; /* Higher than modals */
    width: 350px; /* Adjust width as needed */
    display: flex;
    flex-direction: column; /* Ensure newer toasts stack upwards */
}
/* General Toast Styling */
.toast {
    font-family: var(--font-nexa);
    font-weight: 600;
    color: #FFF !important;
    border: none !important;
    border-radius: 16px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
    margin-bottom: 15px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    /*animation: slideIn 0.4s ease forwards, fadeOut 0.5s ease 4.5s forwards;*/
    animation: slideIn 0.4s ease forwards;
}

    .toast.fade:not(.show) {
        opacity: 1;
        animation: fadeOut 0.4s forwards;
    }

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: -14px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-body {
    flex-grow: 1;
    padding-left: 15px;
}

    .toast-body :is(h1, h2, h3, h4, h5, h6) {
        font-family: var(--font-nexa);
        font-weight: 600;
        font-size: 20px;
    }

.toast .btn-close {
    position: absolute;
    top: 10px; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
    opacity: 1; /* Ensure the button is fully visible */
    z-index: 1; /* Place it above other elements */
    --bs-btn-close-color: #FFF !important;
    filter: invert(1);
    cursor: pointer;
}

    .toast .btn-close:hover {
        filter: invert(0.5);
    }

    .toast .btn-close:hover {
        color: #ffcccb; /* Optional: Change color on hover for better visibility */
    }

.toast.toast-success {
    background: var(--primary-color);
    box-shadow: rgba(var(--primary-rgb-color), 0.2) 0px 5px, rgba(var(--primary-rgb-color), 0.1) 0px 10px;
}

.toast-error {
    background: var(--secondary-color);
    box-shadow: rgba(var(--secondary-rgb-color), 0.2) 0px 5px, rgba(var(--secondary-rgb-color), 0.1) 0px 10px;
}

.toast-warning {
    background: rgba(var(--warning-rgb-color), 1);
    box-shadow: rgba(var(--warning-rgb-color), 0.2) 0px 5px, rgba(var(--warning-rgb-color), 0.1) 0px 10px;
}

.toast-info {
    background: rgba(var(--info-rgb-color), 1);
    color: var(--primary-color) !important;
    box-shadow: rgba(var(--info-rgb-color), 0.2) 0px 5px, rgba(var(--info-rgb-color), 0.1) 0px 10px;
}

.toast-success .toast-icon {
    background: #04434a
}

.toast-error .toast-icon {
    background: #a92525;
}

.toast-warning .toast-icon {
    background: #7e0065;
}

.toast-info .toast-icon {
    background: #a5a6a7;
}

.icon-flip-horizontal:before {
    transform: scaleX(-1);
}

.icon-18 {
    font-size: 18px;
}

.icon-w-30 {
    width: 30px;
    height: 30px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}
/*
    Calendar Css
*/
.calendar-container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}
/*
.ui-datepicker {
    font-size: 0.8em;
}*/

.fc {
    font-size: 0.8em;
}

.fc-event-time {
    display: none; /* This will hide the event time */
}

.fc-header-toolbar {
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 0em;
}

.calendar_main {
    /*background: #fff;*/
    border-top: 4px solid #fac863;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
    flex-grow: 1;
    margin-top: 6px;
    position: relative;
    padding-top: 20px;
}

#calendar::-webkit-scrollbar {
    display: none;
}

#calendar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

#calendar {
    height: 100%; /* Let JS handle the actual height */
}

#doctorName {
    border-bottom: solid 4px;
    border-bottom-color: cornflowerblue;
}

.container-fluid, .row {
    height: 100%; /* Ensure that the container and rows occupy full height */
}

/*.ui-datepicker {
    font-size: 0.8em;
}
*/
.fc {
    font-size: 0.8em;
}

.fc-event-time {
    display: none; /* This will hide the event time */
}

.fc-toolbar-title {
    font-size: 1.5em;
}
/* Additional styling for better dropdown look */
.fc-toolbar-chunk select {
    margin-left: 10px;
}
/* Make the dropdown button fit well with Bootstrap */
.custom-select {
    width: auto;
    display: inline-block;
}

.gm-style-iw-c,
.gm-style-iw-tc:after {
    background: rgb(var(--available-date-bg)) !important;
}

.gm-style-iw-c {
    padding: 0px !important;
}

.gm-style-iw-d {
    overflow: auto !important;
}

.gm-style-iw-chr {
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #FFF !important;
    font-family: var(--font-nexa);
    font-weight: 600;
    font-size: 1rem;
}

.gm-style-iw-ch {
    padding-left: 14px;
    padding-top: 14px;
}

    .gm-style-iw-ch:before {
        content: "Doctor details";
        color: #fff;
        font-family: var(--font-nexa);
        font-weight: 600;
    }

.tippy-box[data-theme="custom"] .tippy-content {
    /*background: var(--section-bg-gradient4);
    border: 1px solid var(--section-bg-gradient2);*/
    background: rgb(var(--available-date-bg));
    border: 1px solid rgb(var(--available-date-bg));
    border-radius: 10px;
    padding: 10px;
    color: var(--primary-color);
    /*color: rgb(33, 37, 41);*/
}

.tippy-box > .tippy-arrow:before, .tippy-box > .tippy-arrow:after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before, .tippy-box[data-placement^=top] > .tippy-arrow:after {
    border-width: .5rem .5rem 0;
}

.tippytooltip-row {
    display: flex;
    flex-direction: row;
    row-gap: 10px;
    align-items: stretch;
    justify-content: start;
    margin-bottom: 2px;
    background: rgba(17, 94, 103, 0.125);
    border-radius: 4px;
    column-gap: 10px;
}

.tippytooltip-icon {
    color: var(--secondary-color) !important;
    border-right: 2px solid rgb(var(--available-date-bg));
    display: flex;
    align-items: center;
}

    .tippytooltip-icon,
    .tippytooltip-icon + div {
        padding: 5px 8px;
    }

.tippy-box[data-placement^=top] > .tippy-arrow:after {
    bottom: -6px;
    /*border-top-color: var(--section-bg-gradient4);*/
    border-top-color: rgb(var(--available-date-bg));
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
    /*border-top-color: var(--section-bg-gradient2);*/
    border-top-color: rgb(var(--available-date-bg));
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before, .tippy-box[data-placement^=bottom] > .tippy-arrow:after {
    border-width: 0 .5rem .5rem .5rem;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:after {
    top: -7px;
    /*border-bottom-color: var(--section-bg-gradient4);*/
    border-bottom-color: var(--secondary-color);
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
    /*border-bottom-color: var(--section-bg-gradient2);*/
    border-bottom-color: var(--secondary-color);
}

.tippy-box[data-placement^=right] > .tippy-arrow:before, .tippy-box[data-placement^=right] > .tippy-arrow:after {
    border-width: .5rem .5rem .5rem 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:after {
    left: -6px;
    /*border-right-color: var(--section-bg-gradient4);*/
    border-right-color: rgb(var(--available-date-bg));
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
    /*border-right-color: var(--section-bg-gradient2);*/
    border-right-color: rgb(var(--available-date-bg));
}

.tippy-box[data-placement^=left] > .tippy-arrow:before, .tippy-box[data-placement^=left] > .tippy-arrow:after {
    border-width: .5rem 0 .5rem .5rem;
}

.tippy-box[data-placement^=left] > .tippy-arrow:after {
    right: -6px;
    /*border-left-color: var(--section-bg-gradient4);*/
    border-left-color: rgb(var(--available-date-bg));
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
    /*border-left-color: var(--section-bg-gradient2);*/
    border-left-color: rgb(var(--available-date-bg));
}

.tippy-box {
    background: transparent;
}

.tippy-arrow {
    z-index: 1;
}

.tippy-content p {
    margin-bottom: 5px;
}

.fa-star,
.star-rating > .fa-star:hover ~ .fa-star {
    color: rgba(var(--info-rgb-color), 0.25);
}

.star-rating .fa-star {
    font-size: 2rem;
    cursor: pointer;
}

.fa-star.checked {
    color: var(--doctor-raing-color); /* Gold color */
}

.dr-rating-color {
    color: var(--doctor-raing-color) !important;
}

.star-rating {
    display: inline-flex;
}

    .star-rating:hover .fa-star {
        color: var(--doctor-raing-color);
    }

.rating-display {
    font-size: 14px; /* Adjust font size for the container */
}

    .rating-display .small-star {
        font-size: 12px; /* Small star size */
        /*color: gold;  Star-like gold color */
        color: var(--doctor-raing-color);
        margin-right: 5px;
    }

    .rating-display .average-rating {
        font-size: 12px; /* Match container font size */
        font-weight: 600;
        color: #FFF; /* Darker text for readability */
    }

    .rating-display .total-reviews {
        font-size: 12px; /* Smaller font for review count */
        color: #FFF !important; /* Muted color */
    }
/* Custom hover effect for buttons */
.custom-hover {
    color: #007bff !important; /* Ensure the text color matches the primary color */
    transition: background-color 0.3s, color 0.3s;
}

    .custom-hover:hover {
        background-color: #007bff !important; /* Primary color for background */
        color: #fff !important; /* White text on hover */
        border-color: #007bff !important; /* Match the border color */
    }
    /* For warning buttons */
    .custom-hover.btn-outline-warning {
        color: #ffc107 !important; /* Warning text color */
    }

        .custom-hover.btn-outline-warning:hover {
            background-color: #ffc107 !important; /* Warning background on hover */
            color: #000 !important; /* Black text on hover for contrast */
            border-color: #ffc107 !important;
        }
/* Tooltip container for holidays */
.tooltip-inner {
    max-width: 400px; /* Adjust tooltip width */
    /*white-space: normal;*/ /* Allow text to wrap within tooltip */
    /*padding: 10px;
    border: 1px solid #ccc;*/ /* Optional border for clarity */
    /*border-radius: 5px;*/ /* Rounded edges */
}
/* Holiday list styling */
.list-group {
    margin: 0;
    padding: 0;
    list-style: none;
}
/* List item styling */
.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0; /* Reduce padding for compactness */
    border: none; /* Remove borders for cleaner look */
}
/* Description styling */
.holiday-description {
    margin-left: 10px; /* Add spacing between date and description */
    flex-grow: 1; /* Allow description to take up remaining space */
    white-space: nowrap; /* Keep description on one line */
    overflow: hidden; /* Prevent overflowing text */
    text-overflow: ellipsis; /* Add ellipsis for long text */
    color: #000; /* Standard text color */
}
/* Optional: Styling for no holidays message */
.no-holidays-message {
    padding: 5px;
    color: #000;
}
/* Overall dropdown styling */
.ui-autocomplete {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1050;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 0;
}
/* Header category styling */
.ui-autocomplete-category .category-header {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 18px;
    margin: 0;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    text-transform: uppercase;
    border-radius: 12px 12px 0 0;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}
/* Popular Options Icon */
.ui-autocomplete-category .bi-star-fill {
    color: #ffc107;
    font-size: 18px;
}
/* All Carriers Icon */
.ui-autocomplete-category .bi-list {
    color: #FFF;
    font-size: 18px;
}
/* Individual item styling */
.ui-autocomplete li {
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

    .ui-autocomplete li:hover {
        background-color: #f1f1f1;
        transform: scale(1.02);
        transition: 0.2s;
    }
/* Carrier icon styling */
.carrier-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Placeholder icon styling */
.placeholder-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
/* Text styling */
.autocomplete-item span {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}
/* Modal styling */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* Search container */
.search-container {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Fixed search box */
#insuranceSearch {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}
/* Scrollable list */
.insurance-list {
    max-height: 300px; /* Height of the scrollable container */
    overflow-y: auto;
    padding: 0;
    margin: 0;
}
/* Category header */
.category-header {
    font-size: 0.9rem;
    padding: 10px;
    margin: 0;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
    display: flex;
    align-items: center;
}
/* List group item */
.list-group-item {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    background: #fff;
}

    .list-group-item:hover {
        background-color: #f0f0f0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
/* Placeholder icon */
.placeholder-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-transform: uppercase;
}
/* Carrier icon */
.carrier-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}
/* Scrollbar styling */
.insurance-list::-webkit-scrollbar {
    width: 8px;
}

.insurance-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

    .insurance-list::-webkit-scrollbar-thumb:hover {
        background-color: #aaa;
    }

.insurance-item.hidden {
    display: none !important; /* Ensure hidden state */
}

.insurance-item {
    display: block; /* Ensure items are shown by default */
}
/* Ensure the search box container spans full width */
.dataTables_filter {
    width: 100% !important; /* Make sure the filter container spans the entire row */
    text-align: center; /* Center the content */
    padding: 0 !important; /* Remove extra padding */
    margin-bottom: 1rem; /* Add spacing below */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}
    /* Make the label full-width and the input properly visible */
    .dataTables_filter label {
        display: flex; /* Use flexbox for proper alignment */
        justify-content: end; /* end align the input */
        align-items: center; /* Vertically center align the input */
        width: 100%; /* Full width for the label */
        margin: 0; /* Remove extra margins */
        font-weight: 600 !important;
    }
    /* Ensure the input is fully visible and spans the width */
    .dataTables_filter input {
        width: 50%; /* Adjust width as needed */
        max-width: 800px; /* Optional: set a max-width for better control */
        display: block; /* Ensure it behaves as a block element */
        border-radius: 5px; /* Rounded corners */
        padding: 10px; /* Add padding for better appearance */
        font-size: 1rem; /* Adjust font size for readability */
        box-sizing: border-box; /* Ensure padding doesn't affect the width */
    }

.ui-autocomplete {
    z-index: 1050; /* Ensure dropdown is above other elements */
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
}

.collapse {
    transition: height 0.3s ease;
}

.text-decoration-none {
    text-decoration: none;
}

.highlight {
    font-weight: bold;
    color: #ff6600; /* Change to desired highlight color */
}

.form-error,
.form-error:hover,
.form-error:focus {
    background: rgba(210, 78, 78, 0.15);
    box-shadow: 0 0 0 .2rem rgba(210, 78, 78, 0.25);
    color: var(--secondary-color);
}


/*#officeLocationDropdown {
    max-height: 200px;*/ /* Adjust height as needed */
/*overflow-y: auto;*/ /* Enables scrolling if needed */
/*white-space: normal;*/ /* Allows text wrapping */
/*}*/


/* Make dropdown options support multi-line */
/*#officeLocationDropdown option {
        max-height: 200px;
        white-space: normal;*/ /* Enable text wrapping */
/*overflow-wrap: break-word;*/ /* Ensures long words break */
/*padding: 5px;*/ /* Adds spacing for readability */
/*}*/

/* Ensure dropdown list does not exceed select width */
/*#officeLocationDropdown::-webkit-scrollbar {
        width: 8px;*/ /* Smaller scrollbar for better UI */
/*}

    #officeLocationDropdown option:checked {
        font-weight: bold;*/ /* Highlight selected option */
/*}*/
.big-quote {
    font-size: 14px;
}

/* For WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 6px; /* Set the scrollbar width */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light gray background */
    border-radius: 10px; /* Rounded corners for the track */
}

::-webkit-scrollbar-thumb {
    background: #a1a1a1; /* Darker gray scrollbar */
    border-radius: 10px; /* Rounded corners */
}

    ::-webkit-scrollbar-thumb:hover {
        background: #888; /* Slightly darker color on hover */
    }

.providers-container::-webkit-scrollbar {
    width: 6px;
}

.providers-container::-webkit-scrollbar-thumb {
    background: #a1a1a1;
    border-radius: 10px;
}
/* Thin scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #a1a1a1 #f1f1f1;
}

#insuranceCarrierModal {
    z-index: 1060 !important; /* Default Bootstrap modal z-index is 1055 */
}

#providerServiceTypeCashRatesModal {
    z-index: 1060 !important; /* Default Bootstrap modal z-index is 1055 */
}

#patientReviewsModal {
    z-index: 1060 !important; /* Default Bootstrap modal z-index is 1055 */
}

#distanceFilter {
    max-width: 200px;
}

.dropdown-search-wrapper.disabled {
    pointer-events: none; /* blocks all clicks/hover etc. */
    opacity: 0.6; /* optional: faded look */
    cursor: not-allowed; /* optional: visual feedback */
}

.large-checkbox {
    transform: scale(1.5);
    width: 16px;
    height: 16px;
}

.custom-row {
    display: flex; /* Ensure flexbox layout is applied */
    align-items: center; /* Vertically align content */
    justify-content: space-between; /* Space items evenly */
}


.calendar-row {
    display: flex; /* Use flexbox for the row */
}

.left-column {
    flex: 0 0 22%; /* Initial width (adjust as needed) */
    max-width: 22%;
    position: relative;
    border-right: 2px solid #ddd;
}

    .left-column::after {
        content: "";
        position: absolute;
        top: 0;
        right: -3px;
        width: 6px;
        height: 100%;
        cursor: ew-resize;
    }

.right-column {
    flex: 1; /* Take up remaining space */
}

#cropperContainer {
    margin: 0 auto;
    overflow: auto;
    /* Remove max-width and max-height here, they will be set by JavaScript */
}

#cropImage {
    display: block;
    margin: auto;
    max-width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.all-caps-text {
    background-color: #f8f9fa;
    border-left: 5px solid #007bff;
    padding: 15px;
    margin: 15px 0;
    font-weight: bold;
    border-radius: 5px;
}