@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&family=Poppins:wght@200..700&display=swap');

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background: white;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    min-height: 500px;
    margin-top: 135px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    transition: 0.4s;
}

#toolbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toolbar_root #vhca_logo img {
    height: 120px;
    padding: 0 10px;
}

.toolbar_title {
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    padding: 12px;
    color: var(--colorAccent2);
}

.toolbar_title b {
    color: var(--colorAccent);
}

.menu_item {
    display: flex;
    align-items: center;
    background: transparent;
    cursor: pointer;
    margin: 4px;
    padding: 4px 12px;
    transition: 0.4s ease;
    border-radius: 4px;
    border: 2px solid transparent;
    color: var(--colorAccent);
    font-size: 14px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.menu_item:hover, .menu_item.highlight {
    border: 2px solid var(--colorAccent) !important;
    background: var(--colorAccent) !important;
    color: white !important;
}

.menu_item.bordered {
    border: 2px solid var(--colorAccent);
}

.menu_item.dark_bordered {
    border: 2px solid #212121;
    color: #212121;
}

.highlight_menu {
    font-weight: bold !important;
    color: var(--colorAccent2) !important;
}

.toolbar_dropdown_container {
    position: relative;
    cursor: pointer;
}

.toolbar_dropdown_content {
    position: absolute;
    display: none;
    background: white;
    padding: 4px 0;
    width: 100%;
    min-width: 250px;
    left: 0;
    top: 100%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.toolbar_dropdown_container:hover .toolbar_dropdown_content {
    display: flex;
}

.toolbar_dropdown_content a {
    padding: 8px 12px;
    border-bottom: 1px solid var(--divider);
    transition: 0.4s ease;
    background: white;
}

.toolbar_dropdown_content a:hover {
    background: var(--colorAccent2);
}

.toolbar_menu_icon {
    visibility: hidden;
    color: var(--colorAccent);
    padding: 20px;
    cursor: pointer;
}

.toolbar_menu_icon:hover {
    color: var(--colorAccent);
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 6px 6px 6px 30px;
    font-size: 15px;
    transition: 0.4s;
    font-family: 'Poppins', sans-serif;
}

.drawer_item.other_link {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
}

.drawer_item:hover {
    background-color: #f6f6f6;
}

.drawer_item.other_link:hover {
    color: var(--colorAccent);
    background-color: transparent;
}

.drawer_item.offer .upper_tag {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: right;
    margin: -5px 8px 0 -8px;
    padding: 0;
    color: #ed1c24 !important;
}

.main_content {
    width: 100%;
    padding: 0 10px;
    max-width: var(--content-width);
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-sideNav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    right: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    z-index: 1;
    width: 70%;
    height: 100%;
    overflow-y: scroll;
}

.side_navigation::-webkit-scrollbar {
    display: none;
}

.side_navigation .divider {
    width: 100%;
    height: 1px;
    background: var(--divider);
    margin: 8px 0;
}

.drawer_heading {
    font-weight: bold;
    color: var(--colorAccent);
    font-size: 14px;
    padding: 8px 20px;
}

.side_navigation_content {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1 1 100%;
}

.side_navigation_content .heading {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    border-bottom: 1px solid var(--divider);
    padding: 8px 4px;
    margin: 0 16px;
    color: var(--colorAccent);
}

.section_wrapper {
    padding: 40px 0;
}

.page_heading {
    color: var(--colorAccent);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    max-width: calc(100% - 80px);
    margin: 0 40px 24px;
    padding-bottom: 12px;
    font-family: Poppins, sans-serif;
    position: relative;
}

.page_heading:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 50%;
    max-width: 350px;
    height: 3px;
    border-radius: 2px;
    background: var(--colorAccent);
}

.page_sub_heading {
    color: var(--colorPrimary);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0 0;
    text-align: center;
    margin: 0;
    font-family: "Poppins", sans-serif;
}


.footer_logo {
    height: 120px;
    object-fit: contain;
    object-position: left;
    margin: 0 0 16px;
    transition: 0.4s;
}

.footer_about {
    color: #212121;
    font-size: 14px;
    line-height: 1.4;
}

footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer_wrapper {
    width: 100%;
    min-height: 100px;
    padding: 50px 20px 20px;
    position: relative;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer_wrapper .text_content {
    font-size: 12px;
    text-transform: uppercase;
}

.footer_heading {
    color: var(--colorAccent);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.footer_link {
    color: #212121;
    font-weight: 500;
    font-size: 15px;
    padding: 6px 0;
}

.footer_link span {
    color: #212121;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    align-self: center;
}

.footer_link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 16px;
}

.footer_link:hover {
    color: var(--colorAccent);
}

.footer_link i {
    color: var(--colorAccent);
}

.footer_container {
    width: calc((100% / 3) - 3px);
    padding: 20px;
}

.footer_social_link {
    background-color: white;
    font-weight: 500;
    font-size: 16px;
    padding-top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #575757;
    margin: 8px 4px;
    border-radius: 50%;
    border: 2px solid #575757;
    transition: 0.4s ease;
}

.footer_social_link:hover {
    background-color: #212121;
    color: white;
    border: 2px solid #212121;
}

.footer_wrapper input {
    padding: 6px;
    background-color: #fefefe;
    border: 1px solid var(--divider);
    font-size: 11px;
    width: 100px;
    outline: none;
}

.footer_wrapper button {
    color: white;
    font-size: 12px;
    border: none;
    outline: none;
    padding: 8px 12px;
}

.accent_button {
    background: var(--colorAccent);
    color: white;
    font-weight: 500;
    padding: 10px 16px;
    border: none;
    text-decoration: none;
    outline: none;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.accent_button.white {
    background-color: white;
    color: var(--colorAccent);
}

.accent_button.accent2 {
    background-color: var(--colorAccent2);
    color: var(--colorAccent);
    font-weight: bold;
}

.accent_button.small {
    padding: 6px 12px;
    font-size: 12px;
}

#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: none;
}

.dialog-container {
    position: fixed;
    top: 50%;
    display: none;
    left: 50%;
    background: white;
    border-radius: 8px;
    max-width: 500px;
    max-height: 90%;
    transform: translate(-50%, -50%);
    width: calc(100% - 12px);
    z-index: 999999;
}

.dialog-container .close-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 10px;
    margin: 16px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--dark_blue_grey);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.footer-icon {
    border-radius: 50%;
    border: 2px solid var(--colorAccent);
    padding: 8px 3px 4px;
    margin-right: 12px;
    width: 36px;
    font-size: 18px;
    color: var(--colorAccent);
    height: 36px;
    text-align: center;
    transition: 0.4s all;
}

.footer-icon:hover {
    background: var(--colorAccent);
    color: white;
    border: 2px solid var(--colorAccent);
}


.fab_whats_app {
    position: fixed;
    background: var(--whatsapp_color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9990;
}

.fab_whats_app i {
    color: white;
    font-size: 28px;
}


.step_tab_wrapper {
    margin: 8px;
    width: calc(25% - 16px);
    border-radius: 8px;
    padding: 16px;
    background: #f4f4f4;
}

.step_tab_wrapper span {
    text-align: center;
    font-size: 14px;
}

.step_tab_wrapper span b {
    font-weight: 500;
    font-size: 18px;
}

.step_tab_wrapper.done {
    background: #beccf3;
}

.step_tab_wrapper.active {
    background: var(--colorAccent);
}

.step_tab_wrapper.active span {
    color: white;
}

.main_section_wrapper {
    max-width: 1000px;
    align-self: center;
    padding: 16px;
    width: 99%;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.input_field {
    width: 100%;
    margin: 16px 0;
    border: none;
    outline: none;
    padding: 8px 16px;
    font-size: 16px;
    border-bottom: 2px solid var(--divider);
    transition: 0.4s ease;
}

.input_field:focus {
    border-color: var(--colorAccent);
}

.label {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorAccent);
    margin: 8px 16px 0;
}

.radio_group.column_alignment .radio_button_wrapper {
    width: calc(100% - 24px);
}

.radio_button_wrapper {
    width: calc(50% - 24px);
    margin: 12px;
    position: relative;
    cursor: pointer;
}

.radio_button_wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
}

.radio_button_wrapper .radio_button_content {
    padding: 16px;
    border-radius: 8px;
    margin: 12px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    background: #f3f3f3;
    transition: 0.4s ease;
}

.radio_button_wrapper input:checked ~ .radio_button_content {
    background: var(--colorAccent);
    color: white;
}

.radio_button_content:hover {
    background: rgba(31, 76, 139, 0.3);
}

.step_content_wrapper {
    display: none;
}

.step_content_wrapper.active {
    display: flex;
}

#error_container {
    padding: 6px 12px;
    line-height: 1;
    font-weight: 500;
    background: var(--colorWarn);
    color: white;
    font-size: 14px;
    border-radius: 4px;
    margin: 16px;
    align-self: center;
}

.symptom_radio_item {
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;
}

.symptom_radio_item img {
    max-height: 80px;
    align-self: center;
    width: auto;
    max-width: 120px;
    flex: 0 0 auto;
    object-fit: contain;
    border-radius: 4px;
}

.symptom_radio_item span {
    flex: 1 1 auto;
    text-align: start;
    font-weight: 500;
    align-self: center;
    word-wrap: normal;
    margin-right: 8px;
}

.image_upload_item_wrapper {
    position: relative;
    padding: 8px;
    margin: 8px;
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.image_upload_item_wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    overflow: hidden;
}

.image_upload_item_wrapper img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.image_upload_item_wrapper span {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin-top: 8px;
}

.progress_bar_wrapper {
    width: calc(100% - 16px);
    margin: 8px;
    max-width: 1000px;
    align-self: center;
}

.progress_bar_wrapper span {
    text-align: end;
    font-weight: 500;
    font-size: 14px;
    padding: 8px;
}

.progress_bar {
    height: 5px;
    border-radius: 3px;
    background: var(--divider);
    overflow: hidden;
}

.progress_bar span {
    width: 0;
    height: 5px;
    border-radius: 3px;
    background: var(--colorAccent);
    transition: 0.4s ease;
}

.result_detail_section {
    margin: 24px 0 0;
    padding: 24px;
}

.result_detail_section .title {
    font-weight: 500;
    font-size: 24px;
    color: var(--colorAccent);
}

.result_detail_section .symptom_text {
    font-size: 18px;
    margin: 24px 0;
}

.result_detail_section .result_duration {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    align-self: flex-start;
    background: linear-gradient(to right, rgba(31, 76, 139, 0.5), transparent);
}

.product_item_wrapper {
    border-radius: 12px;
    padding: 16px;
    margin: 8px 0;
    border: 1px solid var(--divider);
}

.product_item_wrapper img {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    border-radius: 8px;
    margin-right: 16px;
    object-fit: cover;
    background-color: var(--divider);
}

.product_item_wrapper .product_name {
    font-weight: 500;
    font-size: 16px;
}

.product_item_wrapper .price {
    font-size: 12px;
    margin-bottom: 4px;
}

.product_item_wrapper .description {
    font-size: 14px;
    color: #676767;
}

.package_item_wrapper {
    padding: 24px 16px;
    min-width: 200px;
    margin: 8px;
    border-radius: 8px;
    color: #212121;
    border: 2px solid var(--divider);
    cursor: pointer;
    transition: 0.4s ease;
}

.package_item_wrapper span {
    font-size: 14px;
    text-align: center;
}

.package_item_wrapper span b {
    font-size: 32px;
    text-transform: uppercase;
}

.package_item_wrapper:hover {
    border: 2px solid var(--colorAccent);
    color: var(--colorAccent);
}

.package_item_wrapper.active {
    background: var(--colorAccent);
    color: white;
    border: 2px solid var(--colorAccent);
}

.package_amount {
    font-weight: 600;
    font-size: 26px;
    color: var(--colorAccent);
}

@media only screen and (max-width: 800px) {

    .base_margin {
        margin-top: 72px;
    }

    .toolbar_root img {
        height: 58px !important;
        transition: 0.4s;
    }

    .toolbar_menu_icon {
        visibility: visible;
    }

    .footer_wrapper {
        padding: 20px;
    }

    .footer_container {
        width: calc(100% - 16px);
    }

    .section_wrapper {
        padding: 20px 0;
    }

    .page_heading {
        font-size: 24px;
    }

    .radio_group.column_alignment .radio_button_wrapper, .radio_button_wrapper {
        width: calc(100%);
        margin: 0;
    }

    .radio_button_wrapper .radio_button_content {
        margin: 6px 0;
    }

    .step_tab_wrapper {
        margin: 4px;
        width: calc(25% - 8px);
        padding: 8px;
    }

    .step_tab_wrapper span {
        font-size: 10px;
        word-break: break-word;
    }

    .step_tab_wrapper span b {
        font-size: 14px;
    }
}