@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Karla:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Solway:wght@300;400;500;700;800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF0000;
    --black: #111214;
    --black90: #3D3D3D;
    --gray-text: #767676;
   --border-color: #F0F0F0;
    --white: #fff;
    --gray-text100: #6C7278;
}

::selection {
    background: #FF0000;
    color: white;
}

body {
    font-family: "Rubik", sans-serif;
}

/* Buttons */
.primary-btn {
    background: linear-gradient(to top, #AE1818, #FF0000);
    padding: 9px 16px;
    color: white;
    border: none;
    border-radius: 4px;
}

.primary-btn:hover {
    color: white;
}

.primaryOutline-btn {
    background: transparent;
    padding: 9px 14px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
}

button#verifybtn {
    background: transparent;
     padding: 9px 14px;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
}

button#verifybtn:hover {
    background: linear-gradient(to top, #AE1818, #FF0000);
    color: #ffffff;
}

div#navbarToggler {
    display: flex !important;
    flex-basis: auto;
}

.primaryOutline-btn:hover {
    color: var(--primary);
}

.primaryOutline-btn:hover {
    background: linear-gradient(to bottom, #AE1818, #FF0000);
    color: white;
}

.loginPage {
    background: url(../images/loginBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.322);
    padding: 12px 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    backdrop-filter: blur(10px);
    position: sticky !important;
    top: 0;
}

.header .nav-link.active {
    color: var(--primary) !important;
}

.header .navbar-nav .nav-item .nav-link.active::after {
    width: 22px;
}

.header .navbar-nav {
    gap: 50px;
}

.header .navbar-nav .nav-item .nav-link {
    color: var(--black90);
    padding: 0;
    position: relative;
}

.header .navbar-nav .nav-item:hover .nav-link {
    color: var(--primary);
}

.header .navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 0px;
    height: 3px;
    background: var(--primary);
    transition: all 0.2s;
    position: absolute;
    bottom: -6px;
    left: 0;
}

.header .navbar-nav .nav-item:hover .nav-link::after {
    width: 22px;
    transition: all 0.2s;
    position: absolute;
    bottom: -6px;
    left: 0;
}

.login-wrapper {
    padding: 2rem 0;
    height: calc(100vh - 92px);
}

.login-wrapper .inner-container {
    width: 100%;
    max-width: 1560px;
    margin: auto;
}

.textPrimary {
    color: var(--primary);
}

.login-wrapper .textSm {
    font-size: 45px;
    display: block;
}

.login-wrapper .loginLeft {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 4rem 0 0 2rem;
}

.loginLeft .content h1 {
    font-size: 60px;
    font-weight: 600;
}

.loginLeft .content p {
    font-size: 18px;
    color: black;
    line-height: 28px;
    max-width: 95%;
}

.loginRight {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loginRight .formSection {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px #0000001c;
    padding: 3rem;
    width: 100%;
    max-width: 670px;
}

.loginRight .formSection h2 {
    font-weight: 600;
}

.loginRight .formSection p {
    font-size: 18px;
}

.text-gray {
    color: var(--gray-text);
}

.form-control:focus {
    border: 1px solid var(--primary);
    box-shadow: none;
}

.formSection .form-control {
    padding: 13px 12px;
    border-radius: 10px;
    font-size: 15px;
}

.formSection .inputIcon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.formSection .inputIcon:hover svg path {
    fill: var(--primary);
}

.formSection .form-check-input {
    width: 18px;
    height: 18px;
  margin-top: 0;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(255, 0, 0, 0.164);
}

.formSection form .forgotLink {
    text-decoration: none;
    color: var(--gray-text);
}

.formSection a {
    text-decoration: none;
}

.formSection a:hover {
    color: var(--primary) !important;
}

.loginBtn {
    padding: 14px;
    border-radius: 10px;
    margin-top: 30px;
}

.formSection .form-info h5 {
     color: var(--black);
    font-size: 16px;
    margin-bottom: 10px;
}

/* ======Home Page CSS Start========= */
.bodyBg {
    background: #FAFAFB;
}

.main-wrapper {
    margin-top: 92px;
}

.pu-container {
    width: 100%;
    max-width: 1460px;
    margin: auto;
}

#bannerCarousel .carousel-inner {
    position: relative;
}

#bannerCarousel .carousel-item {
    max-height: 820px;
}

#bannerCarousel .carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffffeb, #ffffff94, #11121457, #00000030);
    display: block;
    position: absolute;
    top: 0;
    z-index: 1;
}

#bannerCarousel .carousel-control-next,
#bannerCarousel .carousel-control-prev {
    background: #fff !important;
    width: 2.5rem;
    height: 2.5rem;
    color: #000;
    border-radius: 100%;
    box-shadow: 0 2px 5px #00000026;
    top: 50%;
    opacity: 0.5;
}

#bannerCarousel .carousel-control-next:hover,
#bannerCarousel .carousel-control-prev:hover {
    color: var(--primary);
    opacity: 1;
}

#bannerCarousel .carousel-control-next {
    right: 50px;
}

#bannerCarousel .carousel-control-prev {
    left: 50px;
}

#bannerCarousel .carousel-indicators {
    bottom: -45px;
}

#bannerCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #767676;
    border-top: none;
    border-bottom: none;
}

#bannerCarousel .carousel-indicators .active {
    background: var(--primary) !important;
}

#bannerCarousel .carousel-inner .bannerContent {
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 32%;
    left: 230px;
    transform: translateY(-50%);
    top: 50%;
}

#bannerCarousel .carousel-inner .bannerContent h1.bannerHeading {
    font-size: 54px;
    line-height: 75px;
    font-weight: 600;
    color: black;
    margin-bottom: 30px;
}

#bannerCarousel .carousel-inner .bannerContent p {
    color: black;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

#bannerCarousel .followMedia a,
footer .followMedia a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

#bannerCarousel .followMedia a.fbBtn,
footer .followMedia a.fbBtn {
    background: linear-gradient(150deg, #729CFA, #1853DA);
}
#bannerCarousel .followMedia a.twitterBtn,
footer .followMedia a.twitterBtn {
    background: linear-gradient(150deg, #50CFFF, #0E97CB);
}

#bannerCarousel .followMedia a.linkdInBtn,
footer .followMedia a.linkdInBtn {
    background: linear-gradient(150deg, #4CC0FD, #0077B5);
}

section.services-section {
    padding: 3rem 0;
    background: white;
    margin-top: 5rem;
}

/* Service Section CSS start */
.service-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.services-section .pu-card {
    background: white;
    border: 1px solid #E2E2E2;
    padding: 2.6rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px #00000014;
}

.service-card .cardIcon {
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 10px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .cardIcon.hrs24 {
    border: 1px solid rgba(255, 0, 0, 0.10);
    background: #FFF2F9;
}

.service-card .cardIcon.qfDoctor {
    border: 1px solid rgba(13, 117, 197, 0.10);
    background: #E8FBF9;
}

.service-card .cardIcon.emergency {
    border: 1px solid rgba(254, 191, 1, 0.20);
    background: #FFF9E6;
}

.service-card .cardIcon img {
    max-width: 40px;
    transform: rotate(-45deg);
}

.service-card .card-content h4 {
    color: var(--black);
    margin-bottom: 14px;
}

.service-card .card-content p {
    font-weight: 300;
}

/* Why Choose Section CSS Start */
.whyChoose-section {
    padding: 4rem 0;
    position: relative;
}

.whyChoose-section .whyChoose-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 4rem;
}

.page-badge {
    background: #FAEBEC;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--primary);
    width: fit-content;
}

.section-heading {
    font-size: 2.3rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
}
.whyChoose-left .whyChoose-content p {
    font-weight: 300;
    color: var(--gray-text);
}

.whyChoose-left .primary-btn {
    max-width: fit-content;
}

.whyChoose-right .whyChoose-tile .cardIcon {
    width: 100%;
    max-width: 70px;
    height: 70px;
    padding: 15px;
    border-radius: 100%;
}

.whyChoose-right .whyChoose-tile .cardIcon img {
    max-width: 40px;
}

.whyChoose-right .whyChoose-tile .cardIcon.neurology {
    background: #FAEBEC;
}

.whyChoose-right .whyChoose-tile .cardIcon.eyeOphta {
    background: #E6EAF2;
}

.whyChoose-right .whyChoose-tile .cardIcon.dental {
    background: #EAF7F8;
}

.whyChoose-right .whyChoose-tile .cardIcon.cardio {
    background: #FFEEEA;
}

.whyChoose-right .pu-card.whyChoose-tile {
    background: white;
    border: 1px solid #E2E2E2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px #00000014;
    /* max-width: 39%; */
    position: relative;
}

.whyChoose-right .whyChoose_cards {
    display: flex;
    gap: 30px;
    justify-content: end;
}

.whyChoose-right .card-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 39%;
}

.whyChoose-right .card-column.cardClm-p {
    padding-top: 5rem;
}

.whyChoose-right .pu-card.whyChoose-tile:hover {
    border: 1px solid rgb(255, 0, 0, 50%);
    transition: all 0.2s;
}

.whyChoose-right .pu-card.whyChoose-tile h4 {
    font-size: 20px;
    color: var(--black);
}

.whyChoose-right .pu-card.whyChoose-tile p {
    color: gray;
    font-weight: 300;
    margin: 12px 0 0 0;
}

.whyChoose-right .pu-card.whyChoose-tile .starShape {
    position: absolute;
    top: 16px;
    right: 16px;
}

.whyChoose-section img.hexagonBg {
    position: absolute;
    max-width: 70%;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Specialists Section CSS Start */
.specialists-section {
    padding: 4rem;
    position: relative;
}

.specialist-content {
    margin-top: 30px;
    text-align: center;
}

.specialist-content p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    max-width: 66%;
    margin: auto;
    color: var(--black90);
}

.specialists-section .specialistBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -2;
}

.specialist-slider {
    margin-top: 3rem;
}

#specialistCarousel .speacialist-card {
    background: white;
    border: 1px solid gainsboro;
    transition: all 0.3s;
    overflow: hidden;
}


#specialistCarousel .profilePhoto .contactLinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #ff00003d;
    position: absolute;
    top: 0;
    height: 100%;
    width: 20%;
    gap: 20px;
    left: -100%;
    transition: all 0.3s;
}

#specialistCarousel .speacialist-card:hover {
    border: 1px solid rgb(255, 0, 0, 50%);
    transition: all 0.3s;
}

#specialistCarousel .speacialist-card:hover .contactLinks {
    left: 0;
}

#specialistCarousel .profilePhoto .contactLinks a {
    background: white;
    width: 100%;
    max-width: 32px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border-radius: 100%;
}

#specialistCarousel .profilePhoto .contactLinks a:hover svg path {
    fill: var(--primary)
}

#specialistCarousel .carousel-control-prev,
#specialistCarousel .carousel-control-next {
    background: #fff !important;
    width: 2.5rem;
    height: 2.5rem;
    color: #000;
    border-radius: 100%;
    box-shadow: 0 2px 5px #00000026;
    top: 50%;
    transform: translateY(-50%);
}

#specialistCarousel .carousel-control-prev {
    left: -50px;
}

#specialistCarousel .carousel-control-next {
    right: -50px;
}

/* TotalCounter CSS Start */
.totalCounter-section {
    padding: 50px 0;
}

.totalCounter-section .innerCounter {
    background: linear-gradient(45deg, rgb(255 0 0 / 14%), rgba(255, 219, 219, 0.22));
    border-radius: 10px;
    padding: 40px;
}

.totalCounter-section .innerCounter .counter-data {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    border-right: 1px dashed #ebc4c4;
}

.totalCounter-section .col-xxl-3:last-child .counter-data {
    border: none;
}

.totalCounter-section .counter-data .data_icon {
    width: 100%;
    max-width: 76px;
    height: 76px;
    background: #e208081c;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.totalCounter-section .counter-data h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--black);
}

.totalCounter-section .counter-data p {
    color: var(--gray-text);
    font-size: 18px;
}

/* Map Section CSS Start */
section.map-section {
    padding: 2rem 0;
    position: relative;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.map-section .ellipsePattern {
    position: absolute;
    bottom: 200px;
    max-width: 410px;
    left: 0;
    z-index: -1;
}

/* Footer CSS Start */
footer {
    position: relative;
    background: url(/assets/images/Footer\ Background.png), white;
    border-top: 1px solid #E8E8E8;
    padding: 3rem 2rem 1rem 3rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-column .logo-brand img {
    max-width: 200px;
}

footer .footerList {
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

footer .footerList li {
    margin-bottom: 18px
}

footer .footerList li a {
    text-decoration: none;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

footer .footerList li a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: #f2d2d2;
    border-radius: 2px;
}

footer .footerList li a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

footer .footer-column h4 {
    font-size: 22px;
    color: var(--black);
}

footer .newsletter-footer {
    margin-top: 20px;
}

footer .newsletter-footer input[type=email] {
    padding: 12px;
    background: #ff00000f;
    border: transparent;
}

footer .newsletter-footer .inputIcon-btn {
    border: none;
    background: none;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

footer .bottomBar {
    border-top: 1px solid #E6E6E6;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

footer .bottomBar .contactInfo {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

footer .bottomBar .contactInfo .info-content p {
    margin-bottom: 0;
    color: var(--black90);
}

footer .bottomBar .contactInfo .iconBox {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #f2d2d2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Insurance Page CSS Start */
.insurance-body {
    padding: 20px 50px 50px;
}

.insurance-body .pageHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.insurance-body .pageHead .searchBtn {
    border: none;
    background: none;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

.insurance-body .titleBox {
    background: #FFECED;
    border-radius: 10px;
    padding: 14px;
    color: var(--black);
    margin: 20px 0;
}

.clinic-data .clinic-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    min-height: 100%;
    transition: all 0.3s;
}

.clinic-data .clinic-card:hover {
    border: 1px solid rgb(255, 0, 0, 50%);
    box-shadow: 0px 6px 5px rgb(0 0 0 / 6%);
}

.clinic-data .clinic-card .clinic-img {
    overflow: hidden;
}

.clinic-data .clinic-card img {
    width: 100%;
    transition: all 0.3s;
}

.clinic-data .clinic-card:hover img {
    transform: scale(1.1);
}

.clinic-data .clinic-card .clinic-content {
    padding: 14px;
}

.clinic-data .clinic-card h5 {
    font-size: 18px;
    color: var(--black);
}

.clinic-data .clinic-card p {
    margin-bottom: 0;
    color: var(--gray-text);
    font-size: 14px;
}

.clinic-data .clinic-card .chips {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin: 12px 0 20px 0;
}

.clinic-data .clinic-card .chips .badge {
    background: #f2d2d2;
    font-size: 12px;
    font-weight: 400;
    border-radius: 20px;
    color: var(--black);
}

/* Dashboard CSS Start */
.main {
    overflow: hidden;
}

.left-sidebar {
    width: 266px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 0px 0px 20px 5px rgba(5, 23, 34, 0.05);
    transition: all 0.5s;
    position: fixed;
    z-index: 99;
}

.left-sidebar ul {
    padding-left: 0px;
}

.left-sidebar ul li {
    padding: 13px;
    margin: 10px 0px 0px 0px;
    color: var(--white);
    font-size: 14px;
    position: relative;
}

.menuactive::before {
    position: absolute;
    width: 7px;
    height: 100%;
    content: '';
    background-color: var(--primary);
    top: 0px;
    right: 0px;
}

.left-sidebar ul li a {
    text-decoration: none;
    color: var(--gray-text100);
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 35px;
    transition: all 0.5s;
    width: 180px;
}

.list-unstyle .menuactive {
    background-color: #FFF3F5;
}

.list-unstyle .menuactive a {
    color: var(--primary);
}

.list-unstyle .menuactive a svg path {
    color: var(--primary);
}

.toggle-icon {
    position: absolute;
    right: -15px;
    top: 30px;
    transition: all 0.2s;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}

.toggle-icon span {
    font-size: 18px;
    color: var(--gray-text100);
    margin-left: 5px;
}

.content-section {
    width: calc(100% - 268px);
    margin-left: 268px;
    transition: all 0.5s;
    position: relative;
}

.dashheader {
    box-shadow: 0px 0px 40px 5px rgba(5, 23, 34, 0.05);
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
}

.dashheader-right {
    gap: 15px;
}

.header-input {
    position: relative;
    width: 100%;
    max-width: 440px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-searchbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger-icon {
    display: none;
}

.header-input input {
    padding: 12px 45px;
    border-radius: 10px;
    background-color: #ffffff;
    border: none;
    width: 100%;
}

.header-input input:focus-visible {
    outline: 1px solid var(--primary);
}

.header-input span {
    position: absolute;
    top: 8px;
    left: 10px;
    width: 34px;
    height: 34px;
    color: #1A1C1E;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashheader .dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 2px solid #DCE4E8;
    padding-left: 20px;
}

.sidebar-logo a img {
    width: 100%;
}

.cstm-btn {
    border: none;
    background: transparent;
    padding: 5px 10px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
}

.cstm-btn span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.cstm-btn span:nth-child(2) {
    font-size: 12px;
    font-weight: 400;
    color: #A9A9A9;
}

.dropdown-toggle::after {
    position: absolute;
    right: 2px;
    top: 16px;
    font-size: 26px;
    color: var(--primary);
}

.left-width {
    width: 120px;
    transition: all 0.5s;
}

.main-outer .content-section {
    width: calc(100% - 120px);
    margin-left: 120px;
    transition: all 0.5s;
}

.left-width .list-unstyle li a span {
    visibility: collapse;
}

.left-width ul li:first-child a {
    display: none;
}

.left-width .toggle-icon {
    transform: rotate(180deg);
}

.dashheader .form-check-input {
    width: 3.5em;
    height: 2em;
}

.content-inner {
    padding: 30px;
}

.claim-outer .claim-card {
    display: flex;
    align-items: start;
    justify-content: space-between;
    box-shadow: 0px 14.667px 24px 0px rgba(0, 0, 0, 0.04);
    padding: 20px;
    border-radius: 8px;
    background-color: var(--white);
}

.claim-outer .claim-card {
    height: 100%;
}

.claimcard1 {
    border-bottom: 3px solid #ff0000;
}

.claimcard2 {
    border-bottom: 3px solid #7EC2FF;
}

.claimcard3 {
    border-bottom: 3px solid #FFD66B;
}

.claimcard4 {
    border-bottom: 3px solid #7EC2FF;
}

.claimcard-inner h4 {
    font-size: 18px;
    color: var(--gray-text100);
    font-weight: 400;
    margin-bottom: 15px;
}

.claimcard-inner h3 {
    color: var(--black);
    font-size: 36px;
    margin-bottom: 15px;
}

.claimcard-inner h6 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-text100);
    font-weight: 400;
}

.claimcard-inner h6 span {
    color: #ff0000;
}

.clinicchart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.clinic-chart {
    box-shadow: 0px 0px 20px 0px rgba(5, 23, 34, 0.05);
    border-radius: 12px;
    height: 100%;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
}


.clinicchart-header h4 {
    font-size: 18px;
    color: var(--gray-text100);
    font-weight: 400;
}

.allclinic-table {
    margin-top: 40px;
    box-shadow: 0px 0px 20px 0px rgba(5, 23, 34, 0.05);
    border-radius: 12px;
    height: 100%;
    padding: 20px;
    background-color: #fff;
}

.allclinictable-head h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-text100);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.allclinictable-head h4 span {
    color: var(--primary);
    background-color: var(--white);
    padding: 5px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.allclinic-table table thead tr th {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: left !important;
    border-bottom: 1px solid #E3E3E3;
    white-space: nowrap;
}

.allclinic-table table thead tr th:hover {
    outline: none !important; 
}

.allclinic-table table tbody tr td {
    padding: 20px;
    text-align: left !important;
    color: var(--black);
    font-size: 17px;
    border-bottom: 1px solid #E3E3E3;
    white-space: nowrap;
}

.clinicname {
    display: flex;
    align-items: center;
    gap: 15px;
}

.typeclinic {
    background-color: #EDF1F3;
    padding: 10px 22px;
    border-radius: 6px;
    color: #1A1C1E;
}

.success-status {
    padding: 10px 22px;
    background-color: #ECF8F0;
    color: #1C8C6E;
    border-radius: 6px;
}

.pending-status {
    padding: 10px 22px;
    background-color: #FBF4E4;
    color: #DBAA00;
    border-radius: 6px;
}

.Progress-status {
    padding: 10px 22px;
    background-color: #DCF3FF;
    color: #3D81DB;
    border-radius: 6px;
}

.action-btn a span {
    padding: 8px;
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.action-btn a:nth-child(1) span {
    background-color: var(--primary);
}

.action-btn a:nth-child(2) span {
    background-color: #54A6FF;
}

.action-btn a:nth-child(3) span {
    background-color: #CE2C60;
}

.allclinic-table div.dt-container .dt-paging .dt-paging-button.current {
    background: var(--primary) !important;
    border: none;
    color: var(--white) !important;
    border-radius: 6px !important;
}

.allclinic-table div.dt-container .dt-search input {
    border: 1px solid #d8dcde;
    padding: 10px;
    width: 280px;
    border-radius: 8px;
}

.allclinic-table div.dt-container select.dt-input {
    padding: 6px;
    border-radius: 8px;
    margin-right: 6px;
}

#chart-area g.apexcharts-data-labels {
    display: none;
}

/* Form CSS Start 15 April */
.form-wrapper {
    width: 100%;
    max-width: calc(100% - 34%);
    margin: auto;
    background: white;
    border: 1px solid #E2E2E2;
    padding: 2.6rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px #00000014;
}

.form-wrapper h4.formTitle {
    background: #FFF3F5;
    padding: 10px;
    color: var(--black);
}

.form-wrapper form {
    margin-top: 2.5rem;
}

.form-wrapper .clinicInfo,
.form-wrapper .bankingInfo {
    border: 1px solid gainsboro;
    padding: 30px 20px 20px;
    position: relative;
    border-radius: 10px;
}

.form-wrapper .clinicInfo h5,
.form-wrapper .bankingInfo h5 {
    position: absolute;
    top: -14px;
    background: white;
    color: var(--gray-text);
}

.form-wrapper .form-control {
    padding: 13px 12px;
    border-radius: 10px;
    font-size: 15px;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.toggle-login-password {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.insuranec_modal .modal-dialog {
    max-width: 620px;
}

.insuranec_modal .tab_section .nav-pills {
    border-bottom: 1px solid gainsboro;
}


.insuranec_modal .nav-pills .nav-link {
    color: var(--black90);
    border-bottom: 3px solid transparent;
    background-color: none !important;
}

.insuranec_modal .nav-pills .nav-link.active {
    color: #dc3545;
    background-color: transparent !important;
    border-bottom: 3px solid #dc3545;
    border-radius: 0;
}

.insuranec_modal .uploadBlock {
    border: 1px dashed gainsboro;
    padding: 14px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.insuranec_modal .tab_section {
    min-height: 192px;
}

.insuranec_modal .uploadBlock .browswBtn {
    background: #dc35451c;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    margin: 0;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.insuranec_modal .tabBody {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.insuranec_modal .tabBody .material-symbols-outlined {
    font-size: 70px;
}

.scan-here-card {
    max-width: 150px;
    border: 2px dotted #9f9f9f;
    padding: 10px;
}

.scan-here-card img {
    width: 100%;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #6e7175 !important;
    color: white;
}

.manual-form-content .form-control:focus {
    box-shadow: none;
    border-color: #AE1818;
}

.insurance-varified-section {
    padding: 50px 0px;
}

.insurance-varified-conatiner {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
}

#myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
}

#myInput:focus {outline: 3px solid #ddd;}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

/*26/05/2025*/

.insuranceform-pdf .card-header {
    background-color: #FFECED;
    color: #0c0c0c;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
}

.primarytext-color {
    color: var(--primary);
}

.primarybg-color {
    background-color: var(--primary);
}

.btn.primaryoutline-color {
    border:1px solid  var(--primary);
    color: var(--primary);
}

.insuranceform-pdf li {
    font-size: 14px;
}

.file-upload-container {
    border: 2px dashed #ced4da;
    border-radius: 0.25rem;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-container.dragover {
    background-color: #f8f9fa;
    border-color: #80bdff;
}

.file-upload-overlay {
    pointer-events: none;
}

.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.preview-image {
    max-width: 50px;
    max-height: 50px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
img.preview-image {
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.9;
    height: 30px;
}

.preview-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    cursor: pointer;
}

.preview-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f9fa;
    padding: 5px;
    margin: 5px;
    transition: all 0.3s ease;
}


.preview-wrapper:hover {
    background-color: #f1f3f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.preview-image {
    min-width: 120px;
    max-width: 150px;
    min-height: 120px;
    max-height: 150px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.preview-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    min-height: 130px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 5px;
    padding: 5px;
    overflow: hidden;
}

.preview-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    cursor: pointer;
}

#image-preview .img-thumbnail {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
}

#image-preview .btn-danger {
    background-color: #dc3545;
    color: white;
}

.cstm-themeheader {
    color: #fff;
}

.insuranceform-pdf .card-header {
    background-color: #818181;
}

/*  */
.insurance-coverage-table {
    width: 100%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-row {
    background-color: #f6f6f6;
    padding: 10px;
    display: flex;
    align-items: center;
}

.header-icon {
    width: 15px;
    margin-right: 10px;
}

.header-title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.section-subtitle {
    color: #9e9e9e;
    font-size: 12px;
    font-weight: 500;
    margin: 0px 0px 7px 0px;
}

.section-detail {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0px 0px 7px 0px;
}

.section-detail-light {
    color: #8d8d8d;
    font-size: 14px;
    font-weight: 500;
}

.bordered-table {
    width: 100%;
    border-collapse: collapse;
}

.bordered-table th {
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 14px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    padding: 10px;
}

.bordered-row {
    border-top: 1px solid #d9d9d9;
}

.info-block {
    border: 1px solid #d9d9d9;
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
}

.list-unstyled {
    margin: 0px;
    padding-left: 20px;
}

.list-item {
    font-size: 12px;
    color: #8d8d8d;
    font-weight: 500;
    margin-bottom: 5px;
}

.cstmFormTable tr th {
    background-color: #a6a6a6;
    color: #fff;
}

.cstmFormTable>:not(:last-child)>:last-child>* {
    border-bottom: #c5c5c5;
}

/*
loader css
*/

.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 99999;
    background: #00000030;
}

.loader-container:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.loader-container .spinner-frame {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid #fff;
    padding: 10px;
}

.loader-container .spinner-frame .spinner-cover {
     background: #fff;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     position: relative;
     z-index: 2;
}


.loader-container .spinner-frame .spinner-bar {
    background: #29d;
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% 0 0 0;
    -webkit-animation: spinny 2s linear infinite;
    transform-origin: 100% 100%;
}

/* 7/5/2025 */
.insuranceform-outer label {
    font-size: 16px;
    font-weight: 500;
    color: #0c0c0c;
    margin-bottom: 5px;
}

.insuranceform-outer input {
    border: 1px solid #d9d9d9;
}

.insuranceform-outer .card-header {
    background-color: #FFECED;
    color: #0c0c0c;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
}

.insuranceform-outer .file-upload-overlay {
    text-align: center;
    border: 1px dashed #ff0000;
    border-radius: 6px;
    padding: 15px 10px;
    margin: 10px 0px;
    background-color: #f9f9f9;
}

.insuranceform-outer .file-upload-overlay .upload-icon i {
    font-size: 20px;
    color: #dc3545;
}

.insuranceform-outer .file-upload-overlay .upload-text {
    font-size: 16px;
    font-weight: 500;
}

input.form-control.is-invalid {
    border-color: #dc3545;
}

/* 05/28/2025 starts */
.file-upload-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.preview-wrapper {
    width: 100%;
    padding: 4px;
    border: 1px solid #e3e3e3;
    height: 40px;
    border-radius: 8px;
    position: relative;
}

.preview-image {
    width: 50px;
    height: 100%;
}

.remove-image {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 4px;
    background: #dc3545;
    color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.cstm-remove-image {
    width: 30px;
    height: 30px;
    background: none;
    border: 1px solid #dc3545;
    color: #dc3545;
    font-size: 18px;
}

.text-danger {
    color: #dc3545;
}

.is-invalid {
    border-color: #dc3545;
}

#insurancePreview img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
    background-color: #fff;
}

/* 05/28/2025 ends */

/* 6/4 */
.previewImageContainer {
    width: max-content;
    padding: 2px;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    width: max-content;
}

.cstmPreview-container .preview-wrapper .remove-image {
    position: static;
    width: 30px;
    height: 30px;
}

.cstmPreview-container .preview-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
}

.loader-container {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     text-align: center;
     z-index: 99999;
     background: #00000030;
}

.loader-container:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.loader-container .spinner-frame {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid #fff;
    padding: 10px;
}

.loader-container .spinner-frame .spinner-cover {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.loader-container .spinner-frame .spinner-bar {
    background: #29d;
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% 0 0 0;
    -webkit-animation: spinny 2s linear infinite;
    transform-origin: 100% 100%;
}

@-webkit-keyframes spinny {
    0% {
        transform: rotate(0deg);
        background: #455863;
    }

    50% {
        transform: rotate(180deg);
        background: #455863;
    }

    100% {
        transform: rotate(360deg);
        background: #455863;
    }
}

.uploading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.uploading::after {
    content: 'Uploading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
}

#submitBtn .spinner-border {
    margin-right: 8px; /* small space between spinner and text */
}

.servicecharge .modal-footer .modalsavebtn {
    border: 1px solid #e3e3e3;
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.servicecharge .modal-footer .modalsavebtn:hover {
    background-color: #cc0000;
}

.input-group-text {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.action-btn span {
    cursor: pointer;
}

.left-width.left-sidebar ul .navlink span {
    display: none;
}

.left-width.left-sidebar ul .navlink.has-menu + .menu {
    max-height: 30px;
}

.left-sidebar ul .navlink.has-menu + .menu::after {
    content: '';
    display: none;
    width: 8px;
    height: 8px;
    border: 2px solid #777777;
    border-radius: 50%;
    position: absolute;
    top: 50%;
}

.left-width.left-sidebar ul .navlink.has-menu + .menu::after {
    display: inline-block;    
}

.left-width:hover {
    width: 266px;
}

.left-width.left-sidebar:hover ul .navlink span {
    display: block;
    visibility: visible;
}

.left-width.left-sidebar:hover ul .navlink.has-menu + .menu {
    max-height: 0px;
}

.left-width.left-sidebar:hover ul .navlink.has-menu + .menu::after {
    display: none;    
}

.left-width.left-sidebar:hover ul .navlink.has-menu + .menu {
    max-height: 0px;
}

.left-width.left-sidebar:hover ul .navlink.has-menu.menuactive + .menu {
    max-height: 120px;
    transition: max-height 0.3s ease-in-out;
}

.left-width.left-sidebar:hover ul .navlink.has-menu.menuactive + .menu a {
    display: block;
}

/* Additional Styles */
.page-title {
    background: #FFF3F5;
    padding: 10px;
    color: var(--black);
}

.has-menu-link {
    gap: 20px;
}

.left-sidebar ul .navlink.has-menu .material-symbols-outlined {
    transform: rotate(0deg);
    transition: all 0.2s ease-in;
}

.left-sidebar ul .navlink.has-menu.menuactive .material-symbols-outlined {
    transform: rotate(180deg);
}

.left-sidebar ul .navlink.has-menu + .menu {
    margin-left: 55px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    list-style: none;
    gap: 8px;
}

.left-sidebar ul .navlink.has-menu.menuactive + .menu {
    max-height: 120px;
    transition: max-height 0.3s ease-in-out;
}

.left-sidebar ul .navlink.has-menu + .menu .menu-hasmenu {
   margin-left: -14px;
    padding: 18px 0px;
}

.left-sidebar ul .navlink.has-menu .material-symbols-outlined {
    transform: rotate(0deg);
    transition: all 0.2s ease-in;
  }

.left-sidebar ul .navlink.has-menu.menuactive + .menu .menu-hasmenu:first-child a {
    color: var(--primary);
}

.servicecharge .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.servicecharge .modal-header {
    background-color: #ffe8e8;
}

.servicecharge .modal-footer {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}

.servicecharge .modal-footer button {
    width: 100%;
    font-weight: 600;
    border: 1px solid #e3e3e3;
    color: var(--black90);
}

.servicecharge .modal-footer button:hover {
    background-color: #e3e3e3;
}


.left-sidebar ul .navlink {
     padding: 0px;
    margin: 10px 0px 0px 0px;
    position: relative;
    text-decoration: none;
    color: var(--gray-text100);
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 48px;
    transition: all 0.5s;
    cursor: pointer;
    width: 100%;
}

  .btn-primary {
        color: #fff;
        background-color: #FF0000;
        border-color: #FF0000;
    }