html.side-header-hamburguer-sidebar.side-header-hamburguer-sidebar-right #header.side-header.side-header-hide {
    left: auto;
}

html.side-header-hamburguer-sidebar.side-header-hamburguer-sidebar-right #header.side-header {
    left: 0;
    right: auto;
}

html.side-header-hamburguer-sidebar #header.side-header.side-header-hide {
    transform: translateX(-100%) !important;
}

html.side-header-hamburguer-sidebar .dropdown-item {
    cursor: pointer;
}

.content-body-div {
    min-height: 90vh;
    position: relative;
    padding-top: 110px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.hero-section img {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-section .container {
    z-index: 2;
    display: flex;
    align-items: center;
}

/* Basic dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background-color: var(--primary);
    color: white;
    padding: 5px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown-btn:hover {
    background-color: var(--primary);
    text-decoration: none;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    background-color: #fff;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

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

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: var(--primary);
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-btn::after {
    content: "\25BC";
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-btn::after {
    content: "\25B2";
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner CSS For Pages */
.hero-banner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    height: 200px;
    margin-bottom: 0;
}

.hero-banner img {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-banner .container {
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-banner .container h1 {
    font-size: 2.6em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner .container .sub-title {
    font-size: 18px;
    line-height: 1.6;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-banner .container .row {
    padding: 40px 0;
}

/* Contact Us Page */
.contact-us-main {
    background-color: #edeffa !important;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    background-color: #ffffff;
    width: 100%;
    padding: 16px;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    background-color: #ffffff;
    color: #333;
    outline: none;
    border-color: #0484cf;
    box-shadow: 0 2px 8px rgba(4, 132, 207, 0.2);
    transform: translateY(-1px);
}

.contact-us-map-section {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Sub Details CSS For Pages */
.sub_details {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding: 45px 0;
}

.sub_details .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub_details .container {
    z-index: 2;
}

.sub_details h2 {
    text-align: center;
    font-weight: 700;
}

.sub_details {
    padding-bottom: 60px;
}

.sub_details .card {
    padding: 10px;
    box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
    border-radius: 10px;
    text-align: center;
    height: 100%;
    background: #fff;
    border: 0;
}

.sub_details img {
    width: 50px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 15px;
}

.sub_details h3 {
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
    padding-top: 20px;
}

.sub_details .card p {
    color: var(--default);
    font-size: 14px;
    line-height: 25px;
    padding: 5px;
}

/* Medication Service Page */
.medication-service-div .banner_section {
    background-image: radial-gradient(circle at top right,
            rgba(255, 255, 255, 0) 24%,
            #0484cf 100%),
        url("../../frontend/images/bg.jpg") !important;
    padding-top: 45px;
    padding-right: 0px;
    padding-bottom: 45px;
    padding-left: 0px;
}

.medication-service-div .banner_section h1 {
    color: #fff;
}

.medication-service-div .banner_section p {
    color: #fff;
    font-size: 20px;
}

.medication-service-div .content {
    padding: 60px 0;
}

.medication-service-div .content h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

.medication-service-div .content p {
    margin: 0;
    font-size: 16px;
    padding-top: 10px;
    color: #222;
}

.medication-service-div .serviceimg {
    width: 100%;
    border-radius: 20px;
    border: 2px solid #0c88d1;
}

.medication-service-div .pq-service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.medication-service-div .pq-service-card-icon img {
    width: 69px;
}

.medication-service-div .pq-service-card-number {
    font-size: 80px;
    line-height: 1;
    color: white;
    text-shadow: -2px 0 1px #60acd8, 0 2px 1px #60acd8, 2px 0 1px #60acd8,
        0 -2px 1px #60acd8;
    letter-spacing: 2px;
}

.medication-service-div .content h3 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #60acd8;
    font-weight: 600;
}

.medication-service-div .details {
    padding-top: 30px;
}

.medication-service-div .details .row {
    will-change: transform;
    background: white;
    border-radius: 14px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
    transform-origin: center top;
    background-color: #fff;
    align-items: center;
}

.medication-service-div .details .sticky {
    top: 100px;
    position: sticky;
}

.medication-service-div .icn {
    border: #222;
    background: #008fe2;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    margin: 0 auto;
}

.medication-service-div .icn img {
    width: 43px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 15px;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.medication-service-div .i1_width {
    width: 30px !important;
}

.medication-service-div .card:hover {
    border: 1px solid #0484cf !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.medication-service-section {
    padding: 50px 0;
}

.medication-service-section .btn {
    color: var(--secondary-inverse);
    background-color: transparent;
    background-image: none;
    border-color: var(--secondary-inverse);
}

.medication-service-section .btn:hover,
.medication-service-section .btn.hover {
    color: var(--secondary-100);
    background-color: var(--secondary-inverse);
    border-color: var(--secondary-100);
}

/* Pharmacy Service Page */
.pharmacy-service-div .content {
    padding: 60px 0;
}

.pharmacy-service-div .content h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

.pharmacy-service-div .content p {
    margin: 0;
    font-size: 16px;
    padding-top: 10px;
    color: #222;
}

.pharmacy-service-div .serviceimg {
    width: 100%;
    border-radius: 20px;
    border: 2px solid #0c88d1;
}

.pharmacy-service-div .pq-service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pharmacy-service-div .pq-service-card-icon img {
    width: 69px;
}

.pharmacy-service-div .pq-service-card-number {
    font-size: 80px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #60acd8;
    stroke: #60acd8;
}

.pharmacy-service-div .content h3 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #60acd8;
    font-weight: 600;
}

.pharmacy-service-div .details {
    padding-top: 30px;
}

.pharmacy-service-div .card:hover {
    border: 1px solid #0484cf !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pharmacy-service-div .details .row {
    will-change: transform;
    background: white;
    border-radius: 14px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
    transform-origin: center top;
    background-color: #fff;
    align-items: center;
}

.pharmacy-service-div .details .sticky {
    top: 100px;
    position: sticky;
}

.pharmacy-service-div .icn {
    border: #222;
    background: #0484cf;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: 0 auto;
    border: 4px solid #fff;
}

/* .pharmacy-service-div .icn::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 2px dashed #0484cf;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    top: 5px;
} */

.nav-link.active {
    background-color: #056e60;
}

.icn-border {
    width: 106px;
    height: 106px;
    border-radius: 100px;
    margin: 0 auto;
    border: 3px dashed #2f9bdb;
}

.pharmacy-service-div .icn img {
    width: 55px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 15px;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.pharmacy-service-div .i1_width {
    width: 45px !important;
}

.custom-letter-spacing-1 {
    letter-spacing: -0.5px !important;
}

.custom-letter-spacing-2 {
    letter-spacing: 0.5px !important;
}

.no-resize {
    resize: none;
}

.owl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.owl-carousel {
    height: 650px;
}

/* For Privacy Policy & Terms and Conditions Page */
.custom-page-container {
    width: 80%;
    margin: auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-page-container h4 {
    margin-bottom: 5px;
}

.custom-page-container ul,
.custom-page-container ol {
    margin-left: 20px;
}

.custom-page-container li {
    margin-bottom: 10px;
}

.custom-page-container .custom-title {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.custom-page-container .title-blue {
    color: #0484cf;
    background-color: #f4f7fa;
    border-bottom: 4px solid #0484cf;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons li {
    display: inline-block;
    box-shadow: unset !important;
    list-style: none;
}

.social-icons li a {
    height: 2rem;
    width: 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
}

/* custom css */
.text-whites {
    color: #ffff;
}

.text-blue {
    color: var(--secondary);
}

#icon-hover-x:hover {
    background: #1aa9e1;
}

#icon-hover-facebook:hover {
    background: #3b5a9a;
}

#icon-hover-linkedin:hover {
    background: #0073b2;
}

.custom-col-1 {
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.custom-col-2 {
    margin-left: -3%;
}

.pq-service-icon-border {
    width: 71px;
    height: 71px;
    border-radius: 100px;
    border: 2px solid #2f9bdb;
}

/* Job openings styles */
.job-opening-page h5 {
    font-size: 1.2em;
    text-transform: unset;
}

/* .degree-section .card:nth-child(odd) { */
.degree-section .card {
    margin-bottom: 15px;
}

.degree-section .card {
    height: 182px;
    background-color: rgba(255, 255, 255, 0.154);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.degree-section .card-circle {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary);
    border-radius: 50%;
    position: absolute;
    right: -1.25rem;
    top: -1.75rem;
}

.degree-section .card-number {
    position: absolute;
    bottom: 1.75rem;
    left: 2rem;
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.degree-section .card-icon {
    fill: #a855f7;
    width: 3rem;
}

.degree-section .card-title {
    font-size: 1.75rem;
}

.degree-section .card-description {
    font-size: 1rem;
    color: #71717a;
    line-height: 1.5;
}

/* end */

/* responsive queries */
@media only screen and (max-width: 1199px) {
    .section-custom-medical .box-two {
        margin-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    .social-icons {
        justify-content: center;
    }

    .pharmacy-service-div .col-lg-4 {
        padding-top: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-details h4 {
        margin-top: 24px;
        margin-bottom: 16px !important;
    }

    .social-icons {
        justify-content: start;
    }

    .contact-us-main .contact-form .form-group {
        padding: 0 !important;
    }

    .refill-rx-main .contact-form .form-group,
    .delivery-rx-main .contact-form .form-group,
    .transfer-rx-main .contact-form .form-group {
        padding: 0 !important;
    }
}

@media only screen and (max-width: 576px) {
    .hero-banner {
        height: auto;
    }

    .medication-service-div .details .row {
        margin: 0 4px !important;
    }

    .contact-us-main .contact-us-map-section .col-lg-6 {
        padding: 24px !important;
    }

    .contact-us-main .container {
        width: calc(100vw - 36px);
    }

    .refill-rx-main .refill-rx-form-section .col-lg-6,
    .delivery-rx-main .delivery-rx-form-section .col-lg-6,
    .transfer-rx-main .transfer-rx-form-section .col-lg-6 {
        padding: 24px !important;
    }

    .refill-rx-main .container,
    .delivery-rx-main .container,
    .transfer-rx-main .container {
        width: calc(100vw - 36px);
    }

}

@media only screen and (max-width: 600px) {
    .job-openings-table-section tr {
        border-radius: 20px !important;
    }

    .job-openings-table-section tr td:first-child {
        float: left;
        width: 100%;
        border-radius: 10px;
        padding: 20px;
        border-radius: 20px 20px 0 0 !important;
    }
}

/* Custom Modal CSS */
.default-bg-modal {
    transform: translateZ(0);
    background-color: rgba(0, 0, 0, 0.5);
    will-change: transform;
}

.default-bg-modal .modal-dialog {
    /* overflow-y: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-bg-modal .modal-content {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    border: 8px solid #000000;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.7);
    /* overflow: hidden; */
    background-color: white;
    /* Fallback background color */
}

.default-bg-modal .custom-modal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.default-bg-modal .modal-body {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #000;
    padding: 20px;
    border-radius: 5px;
}

.default-bg-modal h2,
.default-bg-modal h4 {
    margin: 10px 0;
    color: #000;
}

.default-bg-modal h4 {
    font-size: 16px;
}

.default-bg-modal .btn-close {
    position: absolute;
    top: -17px;
    right: -17px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1);
    opacity: 1;
}

/* Transfer Rx Form */
.refill-rx-main,
.delivery-rx-main,
.transfer-rx-main {
    background-color: #edeffa !important;
}

.refill-rx-form input[type="text"],
.refill-rx-form input[type="tel"],
.refill-rx-form input[type="email"],
.refill-rx-form input[type="number"],
.refill-rx-form select,
.delivery-rx-form input[type="text"],
.delivery-rx-form input[type="tel"],
.delivery-rx-form input[type="email"],
.delivery-rx-form select,
.transfer-rx-form input[type="text"],
.transfer-rx-form input[type="tel"],
.transfer-rx-form input[type="date"],
.transfer-rx-form input[type="email"],
.transfer-rx-form textarea {
    width: 100%;
    padding: 16px;
    color: #333;
    font-size: 14px;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.refill-rx-form select,
.delivery-rx-form select {
    background: white;
}

.refill-rx-form .rx_list_item {
    display: flex;
}

.refill-rx-form .flex-div,
.delivery-rx-form .flex-div {
    display: flex;
    gap: 8px;
}

.refill-rx-form input[type="text"]:focus,
.refill-rx-form input[type="email"]:focus,
.refill-rx-form input[type="number"]:focus,
.delivery-rx-form input[type="text"]:focus,
.delivery-rx-form input[type="tel"]:focus,
.delivery-rx-form input[type="email"]:focus,
.transfer-rx-form input[type="text"]:focus,
.transfer-rx-form input[type="email"]:focus,
.transfer-rx-form textarea:focus {
    background-color: #ffffff;
    color: #333;
    outline: none;
    border-color: #0484cf;
    box-shadow: 0 2px 8px rgba(4, 132, 207, 0.2);
    transform: translateY(-1px);
}

.refill-rx-form-section,
.delivery-rx-form-section,
.transfer-rx-form-section {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.plus-cross-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}