@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --greencolor: #018a95;
    --blackcolor: #343434;
    --lightgreencolor: #018a951a;
    --bglight: #f8f9fa;
    --greengrediant: linear-gradient(
        340deg,
        var(--greencolor) 30%,
        #17abb7 100%
    );
}

body {
    font-family: "Poppins", sans-serif;
    color: #454545;
    font-size: 14px;
}
.bg-light {
    background-color: var(--bglight);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--blackcolor);
}
a {
    color: var(--blackcolor);
    text-decoration: none;
}
a:hover {
    color: var(--greencolor);
}
.grey-btn.disabled {
    opacity: 1 !important;
}
.btn {
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    padding: 15px 25px;
    opacity: 1;
    transition: all 0.3s 0s linear;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
}
.btn .material-symbols-outlined {
    font-size: 20px;
}
.btn:hover,
.btn:active {
    filter: contrast(1.5);
}
.btn.btn-lg {
    font-size: 16px;
}
.btn.btn-sm {
    padding: 10px 15px;
    font-size: 12px;
}
.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--greencolor);
    border-bottom: 1px solid var(--greencolor);
    font-size: 14px;
    border-radius: 0px;
    padding-bottom: 2px;
    font-weight: 500;
}
.link-btn .material-symbols-outlined {
    font-size: 20px;
}
.web-btn {
    color: white;
    background: var(--greengrediant);
}
.web-btn:hover,
.web-btn:active {
    color: white !important;
}
.web-btn2 {
    color: white;
    background: linear-gradient(340deg, var(--blackcolor) 30%, #545554 100%);
}
.web-btn2:hover,
.web-btn2:active {
    color: white !important;
}
.grey-btn {
    color: var(--blackcolor) !important;
    background: linear-gradient(340deg, #ddd 30%, #eee 100%);
}
.grey-btn:hover,
.grey-btn:active {
    color: var(--blackcolor);
    filter: contrast(1.1);
}

.section-padding {
    padding: 60px 0px;
}
.section-heading {
    font-size: 30px;
    margin-bottom: 30px;
}
.breadcrumb {
    padding: 10px 0px 0px;
    margin: 0px;
}
.breadcrumb li {
    font-weight: 600;
    font-size: 14px;
    color: grey;
}
.breadcrumb li a {
    color: var(--blackcolor);
    text-decoration: none;
}
form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}
.form-group {
    margin-bottom: 25px;
}
.form-control {
    border-radius: 50px;
    padding: 15px 25px;
    height: auto;
    border: 1px solid #bbb;
    box-shadow: none !important;
    outline: none !important;
    font-size: 14px;
}
.form-control:not(:placeholder-shown) {
    background-color: var(--bglight);
}
textarea.form-control {
    border-radius: 25px;
}
.form-control:focus {
    border-color: var(--blackcolor);
}
.form-select {
    background-position: right 25px center;
}
.modal .modal-header {
    padding: 20px 30px;
}
.modal .modal-header .modal-title {
    font-size: 18px;
    font-weight: 600;
}
.modal .modal-header .btn-close {
    padding: 0px;
    opacity: 1;
    margin: 0px;
}
.modal .modal-body {
    padding: 30px;
}
.modal .modal-footer {
    padding: 10px 30px;
}
.custom-checkbox label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    margin: 0px;
}
.custom-checkbox label:before {
    content: "\e876";
    font-family: "Material Symbols Outlined";
    font-weight: 600;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    color: var(--bglight);
    background-color: var(--bglight);
    border: 1px solid #bbb;
    border-radius: 5px;
}
.custom-checkbox input:checked ~ label:before {
    background-color: var(--greencolor);
    border-color: var(--greencolor);
    color: white;
}

.web-overflow {
    overflow: auto;
}
.web-overflow::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}
.web-overflow::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
}
.web-overflow::-webkit-scrollbar-thumb {
    background-color: var(--greencolor);
    border-radius: 50px;
}

.web-overflow.modal-body {
    max-height: 70vh;
}

.plr-half {
    padding: 0px 7.5px;
}
/* HEADER WORK START */
.header {
    position: relative;
    padding: 30px 0px 0px;
    z-index: 100;
    height: 184px;
}
.header .logo {
    display: flex;
    align-items: center;
}
.header .logo img {
    height: 60px;
    margin-right: 10px;
}
.header .logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    margin: 0px;
}
.header .contact-info {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: end;
}
.header .contact-info li {
    list-style: none;
    margin-left: 40px;
}
.header .contact-info li a {
    color: var(--blackcolor);
    text-decoration: none;
    display: flex;
}
.header .contact-info li .material-symbols-outlined {
    font-size: 30px;
    margin-right: 10px;
    color: var(--greencolor);
}
.header .contact-info p {
    margin: 0px;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
}
.header .contact-info small {
    font-weight: normal;
    font-size: 12px;
    color: grey;
}
.header-bottom {
    margin-top: 30px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 0px 0px 0px 25px;
    background-color: white;
}
.header-bottom.fixed {
    position: fixed;
    width: 1176px;
    left: 50%;
    top: 20px;
    margin: 0px;
    transform: translate(-50%, 0px);
}
.header-bottom .nav-link.active {
    color: var(--greencolor);
}
.header-bottom .nav-link {
    padding: 10px 20px !important;
    font-weight: 600;
    font-size: 15px;
}
.header-bottom .web-btn {
    display: flex;
    padding: 20px 40px 20px 37px;
    font-weight: 600;
}
/* HEADER WORK END */

/* SIDEBBAR WORK START */
#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 280px;
}

#sidebar-wrapper {
    position: fixed;
    top: 0;
    z-index: 1000;
    left: -280px;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--greencolor);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

#wrapper.toggled #sidebar-wrapper {
    left: 0px;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 280px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative;
    line-height: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}
.sidebar-nav li a .material-symbols-outlined {
    font-size: 20px;
}

.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    opacity: 1;
}

.sidebar-nav > .sidebar-brand {
    font-size: 20px;
    line-height: 44px;
    background-color: white;
    position: relative;
    margin-bottom: 15px;
}
.sidebar-nav > .sidebar-brand:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    background: url(../images/sidebar-wave.svg);
    background-size: 200%;
    bottom: -1px;
}

.sidebar-nav > .sidebar-brand a {
    padding: 20px 15px 50px;
    color: var(--blackcolor);
}
.sidebar-nav > .sidebar-brand .logo {
    display: flex;
    align-items: center;
}
.sidebar-nav > .sidebar-brand .logo img {
    height: 50px;
    margin-right: 10px;
}
.sidebar-nav > .sidebar-brand .logo .logo-text {
    font-size: 16px;
    font-weight: bold;
}

.sidebar-nav .dropdown-menu {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: #222;
    box-shadow: none;
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 999;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
    outline: none;
}
.hamburger.is-closed:before {
    content: "";
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-closed:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    position: absolute;
    left: 25%;
    height: 3px;
    width: 50%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
    background-color: var(--greencolor);
}
.hamburger.is-closed .hamb-top {
    top: 14px;
    -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
    top: 50%;
    margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
    bottom: 15px;
    -webkit-transition: all 0.35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
    top: 14px;
    -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
    bottom: 15px;
    -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    background-color: var(--greencolor);
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
    top: 50%;
    margin-top: -2px;
}
.hamburger.is-open .hamb-top {
    top: 24px !important;
    -webkit-transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}
.hamburger.is-open .hamb-middle {
    display: none;
}
.hamburger.is-open .hamb-bottom {
    -webkit-transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
}
.hamburger.is-open:before {
    content: "";
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
}
.hamburger.is-open:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
}
.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
}
/* SIDEBBAR WORK END */

/* BANNER WORK START */
.banner {
    background: url("../images/store.webp") center;
    background-size: cover;
    padding: 80px 0px 210px;
    margin-top: -30px;
    overflow: hidden;
    position: relative;
    color: white;
}
.banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(1 138 149 / 70%);
    left: 0;
    top: 0;
}
.banner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    background: url(../images/wave.svg);
    background-size: 100% 100%;
    bottom: 0px;
    left: 0;
}
.banner * {
    position: relative;
}
.banner h2,
.banner .title {
    font-size: 50px;
    margin-bottom: 30px;
    color: white;
}
.banner p {
    font-size: 16px;
    margin-bottom: 40px;
}
.banner .number {
    width: 70%;
    display: flex;
    margin: 0 auto;
    text-wrap: nowrap;
}
.banner .number input {
    margin-right: 10px;
}
.banner .number .btneffect .btn {
    position: relative;
    z-index: 2;
    padding: 15px 35px;
    height: 55.6px;
}
.banner .number .btneffect:before,
.banner .number .btneffect:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 55.6px;
    text-align: center;
    border-radius: 50px;
    background-color: white;
    will-change: transform, opacity;
    animation: badgefade 1.6s infinite;
    z-index: 0;
}
.banner .number .btneffect:after {
    animation-delay: 0.3s;
}
@keyframes badgefade {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}
/* BANNER WORK END */

/* SERVICES WORK START */
.services {
    padding-top: 30px;
    margin-top: -210px;
}
.services .row .col {
    flex: 1 0 20%;
}
.services .box {
    background: white;
    padding: 20px;
    border-radius: 20px;
    z-index: 1;
    position: relative;
    text-align: center;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    height: 100%;
    overflow: hidden;
    transition: all 0.3s 0s linear;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
.services .box:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--greengrediant);
    left: 0;
    bottom: -100%;
    transition: all 0.3s 0s linear;
}
.services .box * {
    position: relative;
}
.services .box:hover::before {
    bottom: 0%;
}
.services .box:hover {
    color: white;
}
.services .box:hover .material-symbols-outlined {
    color: white;
}
.services .box:hover h3 {
    color: white;
}
.services .box:hover p {
    color: white;
}
.services .box:hover .btn {
    background: white;
    color: var(--greencolor) !important;
}
.services .box .material-symbols-outlined {
    color: var(--greencolor);
    font-size: 40px;
    margin-bottom: 20px;
    transition: all 0.3s 0s linear;
}
.services .box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s 0s linear;
}
.services .box p {
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s 0s linear;
}
.services .box .btn {
    transition: all 0.3s 0s linear;
    display: inline;
}
/* SERVICES WORK END */

/* ABOUTUS WORK START */
.aboutus p {
    text-align: justify;
    font-size: 16px;
    color: grey;
    margin-bottom: 40px;
}
.aboutus .img-box {
    background-color: #ddd;
    background-position: center;
    background-size: cover;
    height: 350px;
    border-radius: 20px;
}
/* ABOUTUS WORK END */

/* GALLERY WORK START */
.ourgallery .ug-tiles-wrapper {
    border-radius: 20px;
    overflow: auto;
}
.ourgallery .ug-thumb-overlay {
    background-color: rgba(1, 138, 149, 0.7) !important;
}
/* GALLERY WORK END */

/* WHY CHOOSE US WORK START */
.why-choose-us .img-box {
    background-color: #eee;
    background-size: cover;
    background-position: top left;
    height: 500px;
    border-radius: 20px;
}
.why-choose-us .section-heading {
    padding-left: 60px;
}
.why-choose-us .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px 20px -70px;
}
.why-choose-us .box img {
    width: 100px;
    height: 100px;
    background-color: #eee;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
.why-choose-us .box .content {
    width: calc(100% - 130px);
}
.why-choose-us .box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.why-choose-us .box p {
    font-size: 18px;
    margin-bottom: 0px;
    color: grey;
}
/* WHY CHOOSE US WORK END */

/* CONTACT US WORK START */
.contactus h3 {
    font-size: 20px;
    margin-bottom: 40px;
}
.contactus form {
    padding-right: 15px;
}
.contactus .box {
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
}
.contactus .contact-info {
    margin: 0px;
    padding: 0px;
}
.contactus .contact-info li {
    list-style: none;
    margin-top: 30px;
}
.contactus .contact-info li a {
    color: var(--blackcolor);
    text-decoration: none;
    display: flex;
}
.contactus .contact-info li .material-symbols-outlined {
    width: 30px;
    font-size: 30px;
    margin-right: 15px;
    color: var(--greencolor);
    text-align: center;
}
.contactus .contact-info li .fa-brands {
    width: 30px;
    font-size: 28px;
    margin-right: 15px;
    color: var(--greencolor);
    text-align: center;
}
.contactus .contact-info p {
    margin: 0px;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.contactus .contact-info small {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: grey;
    display: block;
    margin-top: 5px;
}
/* CONTACT US WORK END */

/* FOOTER WORK START */
.footer {
    padding: 45px 0px 40px;
    background-color: var(--greencolor);
    color: white;
    text-align: center;
}
.footer p {
    margin: 0px;
}

.footer .social-media {
    margin: 0px 0px 30px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.footer .social-media li {
    list-style: none;
}
.footer .social-media li a {
    display: block;
    width: 48px;
    height: 48px;
    line-height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--greencolor);
    font-size: 22px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s 0s linear;
}
.footer .social-media li a:hover {
    background-color: var(--blackcolor);
    color: white;
}
/* FOOTER WORK END */

/* PAGE HEADER WORK START */
.page-header {
    padding: 20px 0px;
}
.page-header .logo {
    display: flex;
    align-items: center;
}
.page-header .logo img {
    height: 60px;
    margin-right: 10px;
}
.page-header .logo .logo-text {
    font-size: 24px;
    font-weight: bold;
    margin: 0px;
}
/* PAGE HEADER WORK END */

/* PAGE BANNER WORK START */
.page-banner {
    background: var(--greengrediant);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner:before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 40px solid rgba(0, 0, 0, 0.08);
    left: 10%;
    top: -150px;
}
.page-banner:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 0;
    border: 40px solid rgba(0, 0, 0, 0.08);
    right: 10%;
    bottom: -120px;
    transform: rotate(30deg);
}
.page-banner .section-heading {
    margin: 0px;
    color: white;
    position: relative;
}
/* PAGE BANNER WORK END */

/* Doctor Consultation Work Start */
.doctors {
    padding-top: 30px;
}
.doctor-box {
    background-color: white;
    color: grey;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    display: flex;
    font-size: 14px;
    gap: 25px;
    border: 1px solid #ddd;
    margin-top: 30px;
    height: calc(100% - 30px);
    position: relative;
    transition: all 0.3s 0s linear;
}
.doctor-box .live {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 50px;
    height: 16px;
    object-fit: contain;
}
.doctor-box:hover {
    border-color: var(--greencolor);
    box-shadow: none;
}
.doctor-box .img-box {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-color: #eee;
    background-position: center top;
    background-size: cover;
}
.doctor-box .content {
    width: calc(100% - 125px);
}
.doctor-box .content .doctor-name {
    font-size: 18px;
    line-height: 24px;
    display: flex;
    margin-bottom: 5px;
    color: var(--blackcolor);
}
.doctor-box .content .doctor-name span {
    margin-right: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.doctor-box .content .verified {
    width: 70px;
}
.doctor-box .content p {
    color: grey;
    margin-bottom: 5px;
}
.doctor-box .content ul {
    margin: 0px 0px 5px;
    padding: 0px;
    display: flex;
}
.doctor-box .content ul li {
    list-style: none;
    display: flex;
    margin-right: 15px;
}
.doctor-box .content ul li .material-symbols-outlined {
    margin-right: 5px;
    font-size: 20px;
    line-height: 24px;
}
.doctor-box .content .fees {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.doctor-box .content .fees p {
    color: var(--blackcolor);
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
}
/* Doctor Consultation Work End */

/* Doctor Booking Form Work Start */
.doctor-booking-form .doctor-box {
    display: block;
    height: auto;
    margin: 0px;
    position: sticky;
    top: 20px;
}
.doctor-box .img-box {
    margin-bottom: 15px;
}
.doctor-booking-form .doctor-box .content {
    width: 100%;
}
/* Doctor Booking Form Work End */

/* LAB PACKAGES WORK START */
.lab-packages .searchbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.lab-packages .searchbar .btn {
    height: 55.6px;
    padding: 15px 35px;
}
.lab-packages .searchbar .btn .material-symbols-outlined {
    margin-bottom: -2px;
}
.lab-package-box {
    background-color: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    font-size: 14px;
    border: 1px solid #ddd;
    margin-top: 30px;
    position: relative;
    transition: all 0.3s 0s linear;
}
.lab-package-box:hover {
    border-color: var(--greencolor);
    box-shadow: none;
}
.lab-package-box .test-name {
    font-size: 18px;
    line-height: 24px;
    color: var(--blackcolor);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}
.lab-package-box .test-name .provided {
    font-size: 14px;
    font-weight: 400;
}
.lab-package-box .test-name .provided b {
    font-weight: 600;
}
.lab-package-box .includes {
    background-color: var(--lightgreencolor);
    margin: 20px -30px;
    padding: 15px 30px;
    color: var(--blackcolor);
}
.lab-package-box p {
    margin-bottom: 10px;
}
.lab-package-box b {
    color: var(--blackcolor);
}
.lab-package-box ul {
    margin-bottom: 10px;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
}
.lab-package-box ul li {
    background-color: white;
    border: 1px solid #bbb;
    list-style: none;
    margin-right: 10px;
    margin-top: 10px;
    padding: 3px 15px;
    border-radius: 50px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.02);
}
.lab-package-box .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lab-package-box .price .offer {
    background-color: var(--greencolor);
    color: white;
    padding: 5px 30px 5px 0px;
    border-radius: 0px 50px 50px 0px;
    position: relative;
    margin-right: 15px;
}
.lab-package-box .price .offer:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--greencolor);
    left: -39px;
    top: 0;
}
.lab-package-box .price .offer:before {
    content: "";
    position: absolute;
    border-right: 9px solid #02666e;
    border-top: 10px solid transparent;
    left: -39px;
    top: -9px;
}
.lab-package-box .price .offer span {
    position: relative;
    z-index: 1;
}
.lab-package-box .price p {
    color: var(--blackcolor);
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
}
.lab-package-box .price p del {
    color: grey;
    font-size: 14px;
    font-weight: 400;
}
.lab-packages .right-side {
    position: sticky;
    top: 20px;
}
.lab-packages .right-side .section-heading {
    font-size: 20px;
    margin-bottom: 30px;
}
.popular-package-box {
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    color: grey;
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s 0s linear;
}
.popular-package-box:hover {
    border-color: var(--greencolor);
    color: grey;
    box-shadow: none;
}
.popular-package-box .img-box {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}
.popular-package-box .content .name {
    font-size: 16px;
    line-height: 22px;
    display: flex;
    margin-bottom: 2px;
    color: var(--blackcolor);
}
.popular-package-box .content p {
    margin-bottom: 2px;
}
.popular-package-box .content b {
    color: var(--blackcolor);
    font-weight: 600;
}
.popular-package-box .content .price {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.popular-package-box .content .alert {
    padding: 2px 5px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 5px;
    margin-bottom: 0px;
}
/* LAB PACKAGES WORK END */

/* HOME CARE WORK START */
.homecare-info {
    background: url("../images/nurse-helping-patient.webp") no-repeat 5% bottom;
    background-size: 40% auto;
}
.homecare-info p {
    text-align: justify;
    color: grey;
    font-size: 16px;
    margin-bottom: 40px;
}
.homecareform form {
    padding-right: 15px;
}
.homecareform .right-img {
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    height: 100%;
    border: 1px solid #ddd;
    background-size: cover;
    background-position: center;
}

.homecare-services .section-heading {
    margin-bottom: 10px;
}
.homecare-services p {
    color: grey;
    font-size: 16px;
}
.homecare-services .box {
    border: 1px solid #ddd;
    background-color: white;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border-radius: 20px;
    margin-top: 50px;
    height: calc(100% - 50px);
    color: var(--blackcolor);
    transition: all 0.3s 0s linear;
    display: flex;
    align-items: center;
}
.homecare-services .box:hover {
    box-shadow: none;
}
.homecare-services .box .box-img {
    background-color: #eee;
    border-radius: 20px 0px 0px 20px;
    width: 170px;
    height: 126px;
    position: relative;
}
.homecare-services .box.purple .box-img {
    background-color: #dbceea;
}
.homecare-services .box.green .box-img {
    background-color: #c5dbc5;
}
.homecare-services .box.orange .box-img {
    background-color: #f2dcc5;
}
.homecare-services .box.red .box-img {
    background-color: #f6cbcb;
}
.homecare-services .box.cyan .box-img {
    background-color: #c1f2ef;
}
.homecare-services .box.blue .box-img {
    background-color: #c7daf5;
}
.homecare-services .box .box-img img {
    height: 152px;
    max-width: 112%;
    object-fit: contain;
    object-position: bottom;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    position: absolute;
}
.homecare-services .box .box-body {
    padding: 15px;
}
.homecare-services .box .box-body h4 {
    font-size: 16px;
    margin-bottom: 0px;
}
.homecare-services .box .box-body p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 0px;
    color: grey;
}
/* HOME CARE WORK END */

/* LAB BOOKING FORM WORK START */

.lab-booking-form form {
    padding-right: 15px;
}
.address-box {
    border: 1px solid #bbb;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}
.address-box .address-box-header {
    background-color: var(--greencolor);
    color: white;
    font-size: 16px;
    padding: 15px 20px;
    margin: -20px -20px 20px;
}
.address-box .address-h {
    font-size: 16px;
    margin-bottom: 5px;
}
.address-box p {
    margin-bottom: 0px;
}
.address-box .btn {
    background-color: white;
    border: 1px solid #bbb;
    margin-top: 15px;
    margin-right: 2px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}
.address-box .btn:hover {
    background-color: var(--blackcolor);
    border-color: var(--blackcolor);
    color: white;
}

.address-box.add-address {
    padding: 0px;
    border-radius: 50px;
}
.address-box.add-address .btn {
    padding: 15.8px 20px;
    width: 100%;
    border: none;
    border-radius: 0px;
    background-color: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.address-box.add-address .btn:hover {
    color: var(--blackcolor);
}
.lab-booking-form .right-box {
    background-color: white;
    color: grey;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border: 1px solid #ddd;
    position: sticky;
    top: 30px;
}
.lab-booking-form .right-box h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.lab-booking-form .right-box .test {
    background-color: var(--lightgreencolor);
    border: 1px solid var(--greencolor);
    padding: 15px 20px;
    border-radius: 10px;
    position: relative;
}
.lab-booking-form .right-box .test .btn {
    padding: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: absolute;
    right: -5px;
    top: -15px;
    width: 28px;
    height: 28px;
}
.lab-booking-form .right-box .test .btn span {
    font-size: 18px;
}
.lab-booking-form .right-box .test .test-name {
    color: var(--blackcolor);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lab-booking-form .right-box .test p {
    margin: 0px;
}
.lab-booking-form .right-box .table {
    font-size: 14px;
    margin: 0px -20px 20px;
    width: calc(100% + 40px);
}
.lab-booking-form .right-box .table td,
.lab-booking-form .right-box .table th {
    padding: 5px 20px;
}
.lab-booking-form .right-box .table th {
    font-weight: 600;
}

.select-address-box.custom-checkbox {
    margin-bottom: 15px;
}
.select-address-box.custom-checkbox label {
    width: 100%;
    padding-left: 0px;
}
.select-address-box.custom-checkbox label:before {
    top: auto;
    left: auto;
    bottom: 3px;
    right: 15px;
    opacity: 0;
}

.select-address-box.custom-checkbox .add-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.select-address-box.custom-checkbox input:checked ~ label .address-box {
    border-color: var(--greencolor);
    background-color: var(--lightgreencolor) !important;
}
/* LAB BOOKING FORM WORK END */

/* LAB DETAIL PAGE WORK START */
.lab-detail {
    text-align: justify;
}
.lab-detail .lab-package-box {
    margin-top: 0px;
}
.lab-detail .lab-package-box .test-name {
    font-size: 20px;
    line-height: 26px;
}
.lab-detail .page-heading,
.lab-detail .content h1,
.lab-detail .content h2,
.lab-detail .content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 25px;
    text-align: left;
    font-weight: 600;
}
.lab-detail .page-sub-heading,
.lab-detail .content h4,
.lab-detail .content h5,
.lab-detail .content h6 {
    font-size: 16px;
    margin-bottom: 5px;
    margin-top: 20px;
    text-align: left;
}
.lab-detail .content big {
    font-size: 18px;
}
.lab-detail .content strong {
    font-weight: 600;
}
.lab-detail p {
    margin-bottom: 15px;
}
.lab-detail ul {
    padding-left: 15px;
    margin: 0px;
}
.lab-detail ul li {
    margin-top: 10px;
}

.lab-detail .accordion {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.lab-detail .accordion .accordion-item {
    width: calc(33.9% - 15px);
    align-self: flex-start;
    background-color: white;
    border-radius: 10px;
    border: 1px solid var(--greencolor);
    overflow: hidden;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
}
.lab-detail .accordion .accordion-button {
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
    background-color: var(--lightgreencolor);
}
.lab-detail .accordion .accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: cover;
}
.lab-detail .accordion .accordion-button:not(.collapsed) {
    background-color: var(--lightgreencolor);
    color: var(--blackcolor);
}
.lab-detail .accordion .accordion-body {
    padding: 10px 15px 15px;
}
.lab-detail .accordion .accordion-body ul {
    margin: 0px;
    padding-left: 20px;
}
.lab-detail .accordion .accordion-body ul li {
    margin-top: 5px;
    text-transform: capitalize;
}

.lab-detail .booking-procedure-box {
    background-color: var(--lightgreencolor);
    border: 1px solid var(--greencolor);
    margin-top: 25px;
    padding: 30px;
    border-radius: 20px;
}
.lab-detail .booking-procedure-box .page-heading {
    margin: 0px 0px 10px;
}
.lab-detail .booking-procedure-box .box {
    margin-top: 15px;
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: var(--blackcolor);
    height: calc(100% - 15px);
}
.lab-detail .booking-procedure-box .box img {
    width: 55px;
    height: 60px;
    object-fit: contain;
}
.lab-detail .booking-procedure-box .box p {
    margin: 0px;
    width: calc(100% - 70px);
}

.lab-detail .right-box {
    background-color: white;
    color: grey;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border: 1px solid #ddd;
    position: sticky;
    top: 30px;
}

.lab-detail .right-box .img-box {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 20px;
}
/* LAB DETAIL PAGE WORK END */

/* MYACCOUNT WORK START */
.myaccount-menu .nav-pills {
    width: 100%;
    height: calc(100% - 125px);
}
.myaccount-menu .nav-pills .nav-link.active {
    color: white;
    background: var(--greencolor);
}
.myaccount-menu .nav-pills .nav-link.active .material-symbols-outlined {
    color: white;
}
.myaccount-menu .nav-pills .nav-link {
    border-radius: 0px;
    padding: 15px 20px;
    text-align: left;
    color: var(--blackcolor);
    font-size: 16px;
    font-weight: 500;
    border-top: 1px solid #ddd;
    position: relative;
    transition: all 0.3s 0s linear;
    display: flex;
    gap: 10px;
    width: 100%;
}
.myaccount-menu .nav-pills .nav-link .material-symbols-outlined {
    font-size: 22px;
    color: grey;
}
.myaccount-menu .nav-pills .nav-link:hover,
.myaccount-menu .nav-pills .nav-link:hover .material-symbols-outlined {
    color: var(--greencolor);
}
.myaccount-menu #sidebar-wrapper {
    background-color: white;
    padding: 0px;
    justify-content: center;
    align-items: start;
}
.myaccount-menu .sidebar-h {
    margin: 50px 0px;
    font-size: 20px;
}
.myaccount .myaccount-sidebar {
    background-color: white;
    padding: 20px 20px 0px;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border: 1px solid #ddd;
    position: sticky;
    top: 30px;
}
.myaccount .myaccount-sidebar .name {
    display: flex;
    align-items: center;
    gap: 15px;
}
.myaccount .myaccount-sidebar .name .imgbox {
    width: 70px;
    height: 70px;
    background-color: #eee;
    background-size: cover;
    background-position: top center;
    border-radius: 50px;
}
.myaccount .myaccount-sidebar .name .name-info {
    width: calc(100% - 85px);
}
.myaccount .myaccount-sidebar .name .name-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.myaccount .myaccount-sidebar .name .name-info p {
    margin-bottom: 0px;
    word-break: break-word;
    line-height: 16px;
    margin-top: 7px;
}
.myaccount .myaccount-sidebar .progress {
    border-radius: 50px;
}
.myaccount .myaccount-sidebar .progress .progress-bar {
    background-color: var(--greencolor);
}
.myaccount .myaccount-sidebar .nav-pills {
    margin-top: 20px;
    margin-bottom: 5px;
}
.myaccount .myaccount-sidebar .nav-pills .nav-link.active,
.myaccount
    .myaccount-sidebar
    .nav-pills
    .nav-link.active
    .material-symbols-outlined {
    color: var(--greencolor);
    background: none;
}
.myaccount .myaccount-sidebar .nav-pills .nav-link.active:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--greencolor);
}
.myaccount .myaccount-sidebar .nav-pills .nav-link {
    border-radius: 0px;
    padding: 15px 0px;
    text-align: left;
    color: var(--blackcolor);
    font-size: 16px;
    border-top: 1px solid #ddd;
    position: relative;
    transition: all 0.3s 0s linear;
    display: flex;
    gap: 10px;
    width: 100%;
}
.myaccount .myaccount-sidebar .nav-pills .nav-link .material-symbols-outlined {
    font-size: 22px;
    color: grey;
}
.myaccount .myaccount-sidebar .nav-pills .nav-link:hover,
.myaccount
    .myaccount-sidebar
    .nav-pills
    .nav-link:hover
    .material-symbols-outlined {
    color: var(--greencolor);
}
.myaccount .progress {
    height: 5px;
    border-radius: 50px;
    margin-bottom: 30px;
}
.myaccount .address-box.add-address {
    margin-bottom: 15px;
}
/* MYACCOUNT WORK END */

/* PHARMACY WORK START */
.pharmacy .box {
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    position: sticky;
    top: 30px;
}
.pharmacy .box h3 {
    font-size: 18px;
    margin-bottom: 40px;
}
.pharmacy .box img {
    width: 100%;
}
.pharmacy .note-box {
    background-color: var(--lightgreencolor);
    border: 1px solid var(--greencolor);
    margin-top: 25px;
    padding: 30px;
    border-radius: 20px;
}
.pharmacy .note-box h3 {
    margin: 0px 0px 10px;
    font-size: 18px;
}
.pharmacy .note-box ul {
    margin: 0px;
    padding-left: 20px;
    color: var(--blackcolor);
}
.pharmacy .note-box ul li {
    margin-top: 5px;
}
/* PHARMACY WORK END */

/* My Account Doctor Consultation Work Start */
.myaccount-doctors .section-heading {
    margin-bottom: 15px;
}
.myaccount-doctor-box {
    background-color: white;
    color: grey;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    font-size: 14px;
    border: 1px solid #ddd;
    position: relative;
    margin-top: 15px;
    overflow: hidden;
    height: calc(100% - 15px);
    transition: all 0.3s 0s linear;
}
.myaccount-doctor-box:hover {
    border-color: var(--greencolor);
    box-shadow: none;
}
.myaccount-doctor-box .box-body {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 15px;
}
.myaccount-doctor-box .img-box {
    width: 70px;
    height: 70px;
    margin: 0px;
    border-radius: 20px;
    background-color: #eee;
    background-position: center top;
    background-size: cover;
}
.myaccount-doctor-box .content {
    width: calc(100% - 85px);
}
.myaccount-doctor-box .content .doctor-name {
    font-size: 16px;
    margin-bottom: 2px;
}
.myaccount-doctor-box .content p {
    margin: 0px;
}
.myaccount-doctor-box .content p b {
    color: var(--blackcolor);
    font-weight: 600;
}
.myaccount-doctor-box .box-footer {
    border-top: 1px solid #ddd;
    background: var(--bglight);
    padding: 10px 20px 15px;
}
.myaccount-doctor-box .box-footer ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.myaccount-doctor-box .box-footer ul li {
    list-style: none;
    line-height: 20px;
    flex: 1 1 33%;
}
.myaccount-doctor-box .box-footer ul li:last-child {
    text-align: right;
}
.myaccount-doctor-box .box-footer ul li b {
    color: var(--blackcolor);
    font-weight: 600;
}
/* My Account Doctor Consultation Work End */

/* My Account Lab work Start */
.myaccount-lab .section-heading {
    margin-bottom: 15px;
}
.myaccount-lab-box {
    background-color: white;
    color: grey;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    font-size: 14px;
    border: 1px solid #ddd;
    position: relative;
    margin-top: 15px;
    overflow: hidden;
    height: calc(100% - 15px);
    transition: all 0.3s 0s linear;
}
.myaccount-lab-box:hover {
    border-color: var(--greencolor);
    box-shadow: none;
}
.myaccount-lab-box .box-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 15px;
}
.myaccount-lab-box .img-box {
    width: 70px;
    height: 70px;
    margin: 0px;
    border-radius: 20px;
    background-color: #eee;
    background-position: center top;
    background-size: cover;
}
.myaccount-lab-box .content {
    width: calc(100% - 85px);
}
.myaccount-lab-box .content .lab-name {
    font-size: 16px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.myaccount-lab-box .content .price {
    font-size: 14px;
}
.myaccount-lab-box .content .lab-name .orderno {
    font-size: 14px;
    font-weight: 400;
    color: grey;
}
.myaccount-lab-box .content p {
    margin: 0px;
}
.myaccount-lab-box .content p b {
    color: var(--blackcolor);
    font-weight: 600;
}
.myaccount-lab-box .box-footer {
    border-top: 1px solid #ddd;
    background: var(--bglight);
    padding: 10px 20px 15px;
}
.myaccount-lab-box .box-footer ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.myaccount-lab-box .box-footer ul li:nth-child(1) {
    flex: 1 1 30%;
}
.myaccount-lab-box .box-footer ul li:nth-child(2) {
    flex: 1 1 30%;
}
.myaccount-lab-box .box-footer ul li {
    list-style: none;
    line-height: 20px;
    flex: 1 1 20%;
}
.myaccount-lab-box .box-footer ul li:last-child {
    text-align: right;
}
.myaccount-lab-box .box-footer ul li b {
    color: var(--blackcolor);
    font-weight: 600;
}
.myaccount-lab-box .box-footer ul li .line {
    color: #c3c3c3;
    font-weight: 400;
    margin: 0px 3px;
}
.myaccount-lab-modal p b {
    color: var(--blackcolor);
    font-weight: 600;
}
/* My Account Lab work End */

/* My Account Pharmacy Work Start */
.myaccount-pharmacy .section-heading {
    margin-bottom: 15px;
}
.myaccount-pharmacy-box {
    background-color: white;
    color: grey;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border: 1px solid #ddd;
    position: relative;
    margin-top: 15px;
    overflow: hidden;
    height: calc(100% - 15px);
    transition: all 0.3s 0s linear;
}
.myaccount-pharmacy-box:hover {
    border-color: var(--greencolor);
    box-shadow: none;
}
.myaccount-pharmacy-box .box-body {
    padding: 20px;
}
.myaccount-pharmacy-box .info {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.myaccount-pharmacy-box .info h2 {
    font-size: 16px;
    margin-bottom: 3px;
}
.myaccount-pharmacy-box .add {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.myaccount-pharmacy-box .orderno {
    font-size: 14px;
    font-weight: 400;
    color: grey;
}
.myaccount-pharmacy-box p {
    margin: 0px;
}
.myaccount-pharmacy-box p b {
    color: var(--blackcolor);
    font-weight: 600;
}
.myaccount-pharmacy-box .box-footer {
    border-top: 1px solid #ddd;
    background: var(--bglight);
    padding: 10px 20px 15px;
}
.myaccount-pharmacy-box .box-footer ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.myaccount-pharmacy-box .box-footer ul li {
    list-style: none;
    line-height: 20px;
    flex: 1 1 22%;
}
.myaccount-pharmacy-box .box-footer ul li:last-child {
    text-align: right;
    flex: 1 1 34%;
}
.myaccount-pharmacy-box .box-footer ul li b {
    color: var(--blackcolor);
    font-weight: 600;
}
.myaccount-pharmacy-modal p b {
    color: var(--blackcolor);
    font-weight: 600;
}
/* My Account Pharmacy Work End */

/* My Account Homecare Work Start */
.myaccount-homecare .section-heading {
    margin-bottom: 15px;
}
.myaccount-homecare-box {
    background-color: white;
    color: grey;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border: 1px solid #ddd;
    position: relative;
    margin-top: 15px;
    overflow: hidden;
    height: calc(100% - 15px);
    transition: all 0.3s 0s linear;
}
.myaccount-homecare-box:hover {
    border-color: var(--greencolor);
    box-shadow: none;
}
.myaccount-homecare-box .box-body {
    padding: 20px;
}
.myaccount-homecare-box .info {
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.myaccount-homecare-box .info h2 {
    font-size: 16px;
    margin-bottom: 3px;
}
.myaccount-homecare-box .concern {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.myaccount-homecare-box .orderno {
    font-size: 14px;
    font-weight: 400;
    color: grey;
}
.myaccount-homecare-box p {
    margin: 0px;
}
.myaccount-homecare-box p b {
    color: var(--blackcolor);
    font-weight: 600;
}
.myaccount-homecare-box .box-footer {
    border-top: 1px solid #ddd;
    background: var(--bglight);
    padding: 10px 20px 15px;
}
.myaccount-homecare-box .box-footer ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.myaccount-homecare-box .box-footer ul li {
    list-style: none;
    line-height: 20px;
    flex: 1 1 25%;
}
.myaccount-homecare-box .box-footer ul li:last-child {
    text-align: right;
}
.myaccount-homecare-box .box-footer ul li b {
    color: var(--blackcolor);
    font-weight: 600;
}
.myaccount-homecare-modal p b {
    color: var(--blackcolor);
    font-weight: 600;
}
/* My Account Homecare Work End */

/* Doctor Booking Confirmation Work Start */
.doctor-booking-confirmation .box {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
}
.doctor-booking-confirmation .box .box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
.doctor-booking-confirmation .box .img-box {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-color: #eee;
    background-position: center top;
    background-size: cover;
}
.doctor-booking-confirmation .box .name .doctor-name {
    font-size: 18px;
    line-height: 24px;
    display: flex;
    margin-bottom: 5px;
    color: var(--blackcolor);
}
.doctor-booking-confirmation .box .name p {
    margin-bottom: 3px;
    font-size: 16px;
}
.doctor-booking-confirmation .box .name p b {
    color: var(--blackcolor);
    font-weight: 600;
}
.doctor-booking-confirmation .box .prescription {
    margin-left: auto;
    text-align: right;
}
.doctor-booking-confirmation .box .prescription p {
    margin-bottom: 5px;
}
.doctor-booking-confirmation .box .box-body {
    background-color: var(--lightgreencolor);
    padding: 5px 20px 20px;
}
.doctor-booking-confirmation .box .info-item {
    margin-top: 15px;
}
.doctor-booking-confirmation .box .info-item p {
    margin-bottom: 2px;
}
.doctor-booking-confirmation .box .info-item b {
    color: var(--blackcolor);
    font-weight: 600;
    display: flex;
    gap: 5px;
}
.doctor-booking-confirmation .box .info-item .material-symbols-outlined {
    font-size: 20px;
}
.doctor-booking-confirmation .box .info-item .line {
    color: #c3c3c3;
    font-weight: 400;
    margin: 0px 3px;
}
.doctor-booking-confirmation .box .box-footer {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.doctor-booking-confirmation .box .box-footer .prescription {
    margin-left: 0px;
    text-align: left;
}
/* Doctor Booking Confirmation Work End */

/* INVOICE WORK START */
.invoice .box {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 3px 20px 0px
        rgba(45.000000000000014, 126.99999999999991, 218, 0.1);
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    padding: 30px;
}
.invoice .box .logo {
    height: 40px;
}
.invoice .box .basic-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.invoice .box .info-item {
    flex: 1 1 60%;
}
.invoice .box .info-item:nth-child(odd) {
    flex: 1 1 30%;
}
.invoice .box .info-item.email {
    line-break: anywhere;
}
.invoice .box .info-item p {
    margin-bottom: 2px;
}
.invoice .box .info-item b {
    color: var(--blackcolor);
    font-weight: 600;
    display: flex;
    gap: 5px;
}
.invoice .box .info-item .material-symbols-outlined {
    font-size: 20px;
}
.invoice .box .info-item .line {
    color: #c3c3c3;
    font-weight: 400;
    margin: 0px 3px;
}
.invoice .box .table-h {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.invoice .box .table-responsive {
    margin: 0px -30px 30px;
    width: calc(100% + 60px);
}
.invoice .box .table {
    margin: 0px;
}
.invoice .box .table td,
.invoice .box .table th {
    padding: 5px 30px;
}
.invoice .box .table th {
    font-weight: 600;
    font-size: 16px;
}
/* INVOICE WORK END */

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

/* Small Laptop */
@media (min-width: 991px) and (max-width: 1200px) {
    .header .contact-info {
        align-items: start;
    }
    .header .contact-info li {
        margin-left: 20px;
        min-width: 180px;
        line-break: anywhere;
    }
    .header-bottom .nav-link {
        padding: 10px 15px !important;
        font-size: 14px;
    }
    .header-bottom .web-btn {
        font-size: 14px;
    }
    .header-bottom.fixed {
        width: 936px;
    }
    .banner h2,
    .banner .title {
        font-size: 50px;
    }
    .banner p {
        font-size: 14px;
    }
    .contactus .contact-info small {
        line-break: anywhere;
    }
}

/* Mobile & Tablet Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 20px 0px;
    }
    .section-heading {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .header,
    .page-header {
        padding: 20px 0px;
        height: auto;
    }
    .header .logo img,
    .page-header .logo img {
        height: 50px;
        width: 100%;
        object-fit: contain;
        object-position: left;
    }
    .header .logo .logo-text,
    .page-header .logo .logo-text {
        font-size: 16px;
    }
    .banner {
        padding: 30px 0px 185px;
        margin-top: 0px;
    }
    .banner h2,
    .banner .title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .banner p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .banner .number {
        width: 100%;
    }
    .services {
        margin-top: -190px;
    }
    .services .row .col {
        flex: 1 0 30%;
    }
    .services .box {
        padding: 15px;
        border-radius: 10px;
    }
    .services .box .material-symbols-outlined {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .services .box h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .services .box p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .services .box .btn {
        font-size: 12px;
    }
    .aboutus .col-md-5 {
        order: 2;
    }
    .aboutus .col-md-7 {
        order: 1;
    }
    .aboutus p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .aboutus .img-box {
        height: 200px;
        margin-bottom: 20px;
    }
    .why-choose-us .img-box {
        height: 200px;
        margin-bottom: 20px;
    }
    .why-choose-us .section-heading {
        padding-left: 0px;
    }
    .why-choose-us .box {
        margin: 15px 0px 0px;
    }
    .why-choose-us .box img {
        width: 90px;
        height: 90px;
    }
    .why-choose-us .box .content {
        width: calc(100% - 110px);
    }
    .why-choose-us .box h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .why-choose-us .box p {
        font-size: 14px;
    }
    .contactus form {
        padding-right: 0px;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .contactus .box {
        margin-top: 30px;
        border-radius: 10px;
        padding: 0px;
        box-shadow: none;
    }
    .contactus h3 {
        margin-bottom: 20px;
    }
    .contactus .contact-info li {
        margin-top: 15px;
    }
    .footer .social-media {
        margin-bottom: 15px;
    }
    .footer .social-media li a {
        width: 38px;
        height: 38px;
        line-height: 40px;
        font-size: 20px;
    }
    .footer p {
        font-size: 14px;
    }
    .footer {
        padding: 30px 0px 27px;
    }
    .doctor-booking-form .doctor-box {
        margin-top: 20px;
    }
    .lab-packages .right-side {
        margin-top: 30px;
    }
    .homecare-services {
        padding-bottom: 15px;
    }
    .homecare-services .box {
        margin-top: 33px;
        margin-bottom: 15px !important;
        height: calc(100% - 48px) !important;
    }
    .homecareform form {
        padding-right: 0px;
    }
    .homecareform .right-img {
        display: none;
    }

    .lab-booking-form .right-box {
        margin-top: 15px;
    }

    .lab-booking-form form {
        padding-right: 0px;
    }

    .modal .modal-header {
        padding: 15px 30px;
    }
    .modal .modal-body {
        padding: 15px 30px;
    }
    .lab-detail .accordion .accordion-item {
        width: calc(51% - 15px);
    }
    .lab-detail .right-box .img-box {
        height: 340px;
    }

    .pharmacy .box {
        margin-top: 25px;
    }
    .pharmacy .box img {
        width: 50%;
        margin: 0 auto;
        display: block;
    }
    .myaccount .myaccount-sidebar {
        margin-bottom: 20px;
        padding: 20px;
    }
    .myaccount .progress {
        margin-bottom: 20px;
    }

    .myaccount-lab .section-heading {
        margin-bottom: 5px;
    }
    .myaccount-pharmacy .section-heading {
        margin-bottom: 5px;
    }

    .myaccount-homecare .section-heading {
        margin-bottom: 5px;
    }
}
@media (max-width: 768px) {
    .page-header .btn {
        padding: 0px;
        height: 46px;
        width: 46px;
        justify-content: center;
    }
    .page-header .btn .text {
        display: none;
    }
    .page-header .btn .material-symbols-outlined {
        margin: 0px;
    }
    .page-header .logo {
        justify-content: start;
    }
    .page-banner:before,
    .page-banner:after {
        display: none;
    }

    .doctors {
        padding-top: 15px;
    }
    .doctor-box {
        margin-top: 15px;
        height: auto;
    }

    .lab-package-box .price .offer {
        padding-right: 20px;
    }
    .lab-package-box .price {
        display: block;
    }
    .lab-package-box .price .btn {
        margin-top: 15px;
        width: 48.5%;
    }

    .homecare-services .box {
        margin-bottom: 15px !important;
        margin-top: 28px !important;
        border-radius: 10px;
        height: calc(100% - 43px) !important;
    }
    .homecare-services .box .box-img {
        height: 80px;
        border-radius: 10px 10px 0px 0px;
    }
    .homecare-services .box .box-img img {
        height: 110px !important;
    }
    .homecare-services .box .box-body {
        padding: 10px;
    }
    .homecare-services .box .box-body h4 {
        font-size: 14px;
    }

    .homecare-info {
        background: none;
    }
    .homecare-info p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .homecare-services p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .myaccount form .web-btn {
        width: 100%;
    }

    .myaccount-lab-box .box-footer ul {
        gap: 10px;
    }
    .myaccount-lab-box .box-footer ul li {
        flex: 1 1 48%;
    }
    .myaccount-lab-box .box-footer ul li:last-child {
        text-align: left;
    }

    .myaccount-pharmacy-box .add {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .myaccount-pharmacy-box .box-footer ul {
        gap: 10px;
    }
    .myaccount-pharmacy-box .box-footer ul li {
        flex: 1 1 48%;
    }
    .myaccount-pharmacy-box .box-footer ul li:last-child {
        flex: 1 1 48%;
        text-align: left;
    }

    .doctor-booking-confirmation .box .box-header {
        flex-wrap: wrap;
    }
    .doctor-booking-confirmation .box .prescription {
        text-align: left;
        margin-left: 0px;
        flex: 1 1 100%;
    }
    .doctor-booking-confirmation .box .box-footer .prescription {
        flex: 1 1 auto;
    }

    .invoice .box {
        padding: 20px;
    }
    .invoice .box .table-responsive {
        margin: 0px -20px 20px;
        width: calc(100% + 40px);
    }
    .invoice .box .table td,
    .invoice .box .table th {
        padding: 5px 20px;
    }
}
@media (max-width: 576px) {
    .btn-lg {
        font-size: 14px;
    }
    .doctor-box {
        padding: 20px;
        gap: 15px;
    }
    .doctor-box .img-box {
        width: 70px;
        height: 70px;
    }
    .doctor-box .content {
        width: calc(100% - 85px);
    }
    .doctor-box .content .doctor-name {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 2px;
        display: block;
        width: 75%;
    }
    .doctor-box .content .verified {
        margin: 3px 0px;
    }

    .doctor-box .content ul {
        margin-bottom: 2px;
    }
    .doctor-box .content p {
        margin-bottom: 2px;
    }

    .doctor-box .content ul li .material-symbols-outlined {
        font-size: 18px;
        line-height: 22px;
    }

    .doctor-box .content .fees {
        margin-top: 10px;
    }
    .doctor-box .content .fees p {
        font-size: 16px;
    }

    .lab-packages .searchbar {
        gap: 10px;
    }
    .lab-packages .searchbar .btn {
        width: 52.6px;
        height: 52.6px;
        padding: 0px 18px;
    }
    .lab-packages .searchbar .btn .text {
        display: none;
    }
    .lab-package-box {
        margin-top: 15px;
        padding: 15px;
    }
    .lab-package-box .test-name {
        display: block;
        font-size: 16px;
        line-height: 22px;
    }
    .lab-package-box .test-name span {
        display: block;
    }
    .lab-package-box .includes {
        margin: 15px -15px;
        padding: 15px;
    }
    .lab-package-box ul {
        margin-bottom: 7px;
    }
    .lab-package-box ul li {
        font-size: 12px;
        margin-right: 5px;
        margin-top: 7px;
    }

    .lab-package-box .price .offer:before,
    .lab-package-box .price .offer:after {
        left: -25px;
    }
    .lab-packages .right-side .section-heading {
        margin-bottom: 15px;
    }
    .homecare-services .box .box-img {
        width: 100%;
    }
    .homecare-services .box {
        display: block;
    }
    .homecare-services .row {
        padding: 0px 7.5px;
    }
    .homecare-services .row .col-6 {
        padding: 0px 7.5px;
    }

    .modal .modal-header {
        padding: 15px 15px;
    }
    .modal .modal-body {
        padding: 15px 15px;
    }
    .modal .modal-header .modal-title {
        font-size: 16px;
    }
    .modal .modal-footer {
        padding: 10px 15px;
    }

    .select-address-box.custom-checkbox {
        margin-bottom: 10px;
    }
    .select-address-box .address-box .btn {
        margin-top: 8px;
    }

    .lab-detail .page-heading,
    .lab-detail .content h1,
    .lab-detail .content h2,
    .lab-detail .content h3 {
        font-size: 16px;
        margin-bottom: 15px;
        margin-top: 20px;
    }
    .lab-detail .content big {
        font-size: 16px;
    }
    .lab-detail p {
        margin-bottom: 10px;
    }
    .lab-detail .accordion .accordion-item {
        width: 100%;
    }
    .lab-detail .page-sub-heading,
    .lab-detail .content h4,
    .lab-detail .content h5,
    .lab-detail .content h6 {
        font-size: 14px;
    }
    .lab-detail .right-box {
        padding: 15px;
        margin-top: 10px;
    }
    .lab-detail .right-box .img-box {
        height: 180px;
    }
    .lab-detail .right-box .img-box {
        margin-bottom: 15px;
    }
    .lab-detail .booking-procedure-box {
        padding: 20px;
    }
    .lab-detail .booking-procedure-box .box {
        padding: 15px;
        margin-left: -3px;
        width: calc(100% + 6px);
    }
    .lab-detail .booking-procedure-box .box img {
        width: 45px;
        height: 50px;
    }
    .lab-detail .booking-procedure-box .box p {
        width: calc(100% - 60px);
    }

    .pharmacy .web-btn {
        width: 100%;
    }
    .pharmacy .note-box {
        padding: 20px;
        margin-top: 20px;
    }
    .pharmacy .note-box h3 {
        font-size: 16px;
    }
    .pharmacy .box {
        padding: 20px;
        margin-top: 20px;
    }
    .pharmacy .box img {
        width: 100%;
    }

    .myaccount-doctors .section-heading {
        margin-bottom: 5px;
    }

    .myaccount-lab-box .content .lab-name {
        display: block;
    }
    .myaccount-lab-box .content .lab-name .orderno {
        display: block;
        margin-top: 5px;
    }

    .myaccount-lab-box .box-footer ul li:nth-child(1) {
        flex: 1 1 100%;
    }
    .myaccount-lab-box .box-footer ul li:nth-child(2) {
        flex: 1 1 100%;
    }
    .myaccount-lab-box .box-footer ul li {
        flex: 1 1 47%;
    }
    .myaccount-lab-box .box-footer ul li:last-child {
        text-align: right;
    }

    .myaccount-pharmacy-box .info {
        display: block;
    }
    .myaccount-pharmacy-box .box-footer ul li {
        flex: 1 1 47%;
    }
    .myaccount-pharmacy-box .box-footer ul li:nth-child(3) {
        flex: 1 1 10%;
    }
    .myaccount-pharmacy-box .box-footer ul li:last-child {
        text-align: right;
    }

    .myaccount-homecare-box .info {
        display: block;
    }
    .myaccount-homecare-box .box-footer ul {
        gap: 10px;
    }
    .myaccount-homecare-box .box-footer ul li {
        flex: 1 1 48%;
    }
    .myaccount-homecare-box .box-footer ul li:last-child {
        text-align: left;
    }

    .doctor-booking-confirmation .box .box-header {
        gap: 15px;
    }
    .doctor-booking-confirmation .box .img-box {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }
    .doctor-booking-confirmation .box .name .doctor-name {
        font-size: 16px;
        margin-bottom: 0px;
    }
    .doctor-booking-confirmation .box .name p {
        margin-bottom: 0px;
        font-size: 14px;
    }
    .doctor-booking-confirmation .box .prescription {
        text-align: center;
    }
    .doctor-booking-confirmation .box .info-item b {
        line-height: 20px;
    }
    .doctor-booking-confirmation .box .box-footer .prescription {
        text-align: center;
    }
    .doctor-booking-confirmation .box .box-footer {
        display: block;
    }
    .doctor-booking-confirmation .box .box-footer .web-btn {
        width: 100%;
        margin-top: 20px;
    }
    .invoice .box {
        padding: 15px;
    }
    .invoice .box .basic-info {
        margin-top: 10px;
        gap: 10px;
    }
    .invoice .box .info-item {
        flex: 1 1 100%;
    }
    .invoice .box .table-responsive {
        margin-bottom: 15px;
    }
    .invoice .box .table-h {
        font-size: 18px;
        margin-top: 15px;
    }
    .invoice .box .table th {
        font-size: 14px;
    }
    .invoice .box .table td,
    .invoice .box .table th {
        padding: 5px 15px;
    }
    .services .row .col {
        flex: 1 0 50%;
    }
}

/* .pagination svg.w-5.h-5{
  width: 50px !important;
} */

.pagination-all svg.w-5.h-5 {
    width: 40px !important;
}

.pagination-all div:first-child {
    display: none !important;
}

.pagination-all .rounded-md {
    background: transparent !important;
}

.pagination-all .rounded-md {
    background: var(--bglight) !important;
    border: none !important;
    box-shadow: none !important;
}

.pagination-all .rounded-md .duration-150 {
    width: 100px !important;
    border: none !important;
    border-radius: 20px !important;
    margin: 0 5px !important;
    height: 50px !important;
    background: #018a95 !important;
    color: white !important;
}

.pagination-all .rounded-md span:first-child {
    border: none !important;
    border-radius: 20px !important;
    background: #018a95 !important;
    color: white !important;
}

.pagination-all .rounded-md span:nth-child(2) span {
    margin: 0 5px !important;
}

.insurance-banner .box {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.whats-covered .table tr td:first-child,
.whats-covered .table tr th:first-child {
    text-align: left;
}

.whats-covered .table thead tr th {
    background: var(--greencolor);
    border: none;
    color: #fff;
    padding: 20px;
}

.whats-covered .table thead tr th:first-child {
    border-top-left-radius: 20px;
}

.whats-covered .table thead tr th:last-child {
    border-top-right-radius: 20px;
}

.whats-covered .table tr td,
.whats-covered .table tr th {
    text-align: center;
    padding: 10px 15px;
    white-space: nowrap;
}

.whats-covered .table tr td .fa-check {
    color: #00cc52;
}

.whats-covered .table tr td .fa-times {
    color: #ff0100;
}

.whats-not-covered .box {
    height: calc(100% - 20px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    background-color: white;
}

.whats-not-covered .box {
    border: 1px solid #eee;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
}

.great-about ul li,
.claim ul li {
    list-style: none;
    margin-top: 20px;
    position: relative;
    padding-left: 20px;
}

.great-about ul li:before,
.claim ul li:before {
    content: "\f00c";
    font-family: fontawesome;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 10px;
}

.buy-health-insurance h2,
.great-about h2,
.whats-covered h2,
.whats-not-covered h2,
.claim h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.web-clr {
    color: var(--greencolor);
}

.whats-not-covered .box h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6rem;
}

.whats-not-covered .box p {
    font-weight: 500;
    line-height: 1.5rem;
}

.insurance-advance #collapseOne .web-checkbox {
    border: 1px solid var(--greencolor);
    border-radius: 5px;
    margin: 5px 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.insurance-advance #collapseOne .web-checkbox label {
    margin-bottom: 0;
    padding: 7px 30px;
    font-size: 16px;
    cursor: pointer;
}

.web-checkbox input:checked ~ label {
    background: var(--greencolor);
    color: #fff;
}

.insurance-advance #collapseOne .coverage {
    width: 100%;
    padding: 5px;
}

.insurance-advance .coverage_amount {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
    border-radius: 20px;
}

.insurance-advance .coverage_amount:hover {
    opacity: 1;
}

.insurance-advance .coverage_amount::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: var(--greencolor);
    cursor: pointer;
}

.insurance-advance .coverage_amount::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--greencolor);
    cursor: pointer;
}

.insurance-advance .accordion-header .accordion-button {
    background-color: var(--lightgreencolor);
    font-size: 18px;
    font-weight: 600;
}

.insurance-advance .accordion-button.collapsed {
    background: rgb(234, 234, 234) !important;
    border: 1px solid rgb(234, 234, 234);
}

.insurance-advance .hplans {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}
.insurance-advance .hplans .web-checkbox {
    width: calc(33% - 5px);
}
.insurance-advance .hplans .web-checkbox label {
    display: block;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: var(--bglight);
    border-radius: 10px;
    line-height: 18px;
    min-height: 101px;
    cursor: pointer;
}
.insurance-advance .hplans .web-checkbox label h4 {
    margin: 5px 0px 0px;
}
.insurance-advance .hplans .web-checkbox input:checked ~ label {
    background-color: var(--greencolor);
}

.insurance-advance .hplans .web-checkbox input:checked ~ label h4 {
    color: white !important;
}

.lab-packages form {
    position: relative;
}

.search-filter-list {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    z-index: 10;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 60px;
    box-shadow: 5px 5px 20px rgb(216, 216, 216);
}

.search-filter-list li {
    height: 50px;
    line-height: 50px;
    list-style: none;
    padding: 0 10px;
    border-top: 0.5px solid gainsboro;
    border-bottom: 0.5px solid gainsboro;
}

.search-filter-list li:first-child {
    border-top: none;
}
.search-filter-list li:last-child {
    border-bottom: none;
}
.btn-cart {
    float: right;
}

/* Health Insurance Work Start */
.insurance-banner .form-img {
    background-color: #ddd;
    height: 100%;
    height: 390px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center bottom;
}

.health-insurance-intro .section-heading {
    margin-bottom: 10px;
}
.health-insurance-intro .box {
    border: 1px solid #9d9d9d;
    padding: 20px;
    border-radius: 20px;
    margin-top: 30px;
    text-align: center;
    height: calc(100% - 30px);
}
.health-insurance-intro .box img {
    width: 100%;
    height: 220px;
    background-color: #eee;
    border-radius: 20px;
    display: block;
    object-fit: contain;
    margin-bottom: 15px;
}
.health-insurance-intro .box h4 {
    margin: 0px;
    font-size: 16px;
    line-height: 24px;
    padding: 0px 40px;
}
.health-insurance-plan {
    border-radius: 60px;
}
.health-insurance-plan .section-heading {
    margin-bottom: 20px;
}
.health-insurance-plan .health-insurance-heading p img {
    filter: var(--greenfilter);
}
.health-insurance-plan .box {
    padding: 40px;
    border: 1px solid var(--greencolor);
    background-color: #e0e8e9;
    border-radius: 20px;
    margin-top: 30px;
}
.health-insurance-plan .box h4 {
    color: var(--greencolor);
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}
.health-insurance-plan .box ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.health-insurance-plan .box ul li {
    background-color: #fff6;
    border-radius: 10px;
    border-bottom: 1px solid var(--greencolor);
    margin-top: 15px;
    box-shadow: 0px 20px 24px 0px #0000000d;
    padding: 20px;
    display: flex;
    align-items: center;
}
.health-insurance-plan .box ul li img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
}
.health-insurance-plan .box ul li p {
    margin: 0px;
    width: calc(100% - 55px);
    color: var(--btn2color);
    font-weight: 500;
}
.health-insurance-plan .box.color2 {
    border: 1px solid #1769dc;
    background-color: #dfe4ed;
}
.health-insurance-plan .box.color2 h4 {
    color: #1769dc;
}
.health-insurance-plan .box ul li {
    border-color: #1769dc;
}

.health-insurance-counter .box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.health-insurance-counter .box:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 50px;
    border-radius: 50%;
    background-color: #d8d8d8;
    right: -18px;
    top: 50%;
    transform: translate(0, -50%);
}
.health-insurance-counter .box.no-border:after {
    display: none;
}
.health-insurance-counter .box h2 {
    font-size: 60px;
    margin-right: 20px;
    margin-bottom: 0px;
    font-family: none;
    font-weight: bold;
}
.health-insurance-counter .box p {
    margin: 0px;
    font-size: 16px;
    word-break: break-all;
}

.health-insurance-testimonials .box {
    padding: 60px 15px;
    border: 1px solid #9d9d9d;
    border-radius: 20px;
}
.health-insurance-testimonials .box .user-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #eee;
    object-fit: contain;
    margin-left: 80px;
    padding: 0px;
}
.health-insurance-testimonials .box p {
    font-size: 14px;
}
.health-insurance-testimonials .box h4 {
    color: var(--greencolor);
    font-weight: bold;
    font-size: 20px;
}
.health-insurance-testimonials .box .user-info {
    font-size: 12px;
    font-weight: 500;
    margin: 0px;
    color: grey;
}
.health-insurance-testimonials .owl-nav button span {
    margin-top: -8px;
}
.health-insurance-testimonials .owl-nav button:hover {
    background-color: var(--greencolor) !important;
    color: white !important;
}

.health-insurance-faq .accordion .accordion-item {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.health-insurance-faq .accordion .accordion-button {
    padding: 15px 15px;
    color: var(--blackcolor);
    font-weight: 600;
    background: #eee;
    position: relative;
    box-shadow: none;
}
@media (min-width: 991px) and (max-width: 1200px) {
    .health-insurance-counter .box h2 {
        font-size: 40px;
        margin-right: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .health-insurance-counter .box {
        margin-bottom: 15px;
    }
    .health-insurance-counter .box:after {
        display: none;
    }
}
@media (max-width: 768px) {
    .insurance-banner .box {
        padding: 20px;
        margin-bottom: 15px;
    }
    .health-insurance-intro .section-heading {
        margin-bottom: 0px;
    }
    .health-insurance-intro .box {
        margin-top: 15px;
        height: calc(100% - 15px);
        border-radius: 10px;
    }
    .health-insurance-intro .box img {
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .health-insurance-intro .box h4 {
        margin: 0px;
        font-size: 16px;
        line-height: 22px;
        padding: 0px 0px;
    }
    .health-insurance-plan {
        border-radius: 20px;
    }
    .health-insurance-plan .section-heading {
        margin-bottom: 15px;
    }
    .health-insurance-plan .btn {
        font-size: 14px;
    }
    .health-insurance-plan .box {
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    .health-insurance-plan .box h4 {
        font-size: 18px;
    }
    .health-insurance-plan .box ul li {
        padding: 15px;
    }
    .health-insurance-plan .box ul li p {
        font-size: 14px;
        line-height: 18px;
    }
    .health-insurance-counter .box {
        margin-bottom: 0px;
        display: block;
        text-align: center;
    }
    .health-insurance-counter .box:after {
        display: none;
    }
    .health-insurance-counter .box h2 {
        margin-right: 0px;
        font-size: 25px;
    }
    .health-insurance-counter .box p {
        font-size: 14px;
        line-height: 18px;
    }
    .health-insurance-testimonials .box {
        padding: 30px 20px;
        text-align: center;
    }
    .health-insurance-testimonials .box .section-heading {
        font-size: 18px;
    }
    .health-insurance-testimonials .box .user-img {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    .health-insurance-testimonials .box p {
        font-size: 14px;
    }
    .health-insurance-testimonials .box h4 {
        font-size: 16px;
    }

    .health-insurance-testimonials .owl-nav,
    .health-insurance-testimonials .owl-next {
        display: none;
    }

    .health-insurance-faqs .health-insurance-heading {
        margin-bottom: 0px;
    }
}

/* HEALTH INSURANCE WORK END */
