@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    font-size: clamp(14px, 13.296px + 0.1408vw, 16px);
}

html {
    scrollbar-color: var(--black) var(--gray);
}

html {
    --scrollbarBG: var(--black);
    --thumbBG: var(--gray);
}

body::-webkit-scrollbar {
    width: 11px;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

*,
ul,
li::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* root */
:root {
    --theme: #945E57;
    --lightTheme: #EBB7A6;
    --bgGradient: #7f9d9d;
    --black: #000;
    --dark: #2b2b2b;
    --white: #fff;
    --transparent: #00000000;
    --lightgray: #F2F2F2;
    --gray: #f5f5f5;
    --yellow: #f0f2dd;
    --darkGreen: #057b49;
    --red: #ee6b60;
    --green: #02c86e;
    --lightBlue: #559bfb;
    --fontFamily: "Poppins", sans-serif;
    --leftSpace: 14.5rem;
}

/* \ root */

body {
    font-family: var(--fontFamily);
    font-weight: 400;
    color: var(--black);
}

.para {
    font-size: 14px;
    line-height: 20px;
}

/* login page style */
.login_page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--theme) url('../images/loginbg.png') no-repeat center / cover;
    position: relative;
    z-index: 0;
}

.login_page::before {
    content: '';
    background-color: var(--white);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.yellow_bg {
    background: var(--yellow);
}

.log_logo {
    width: 80%;
    margin: 0 auto 2.25rem;
    display: block;
}

.login_card_body {
    border-radius: 10px;
    background-color: var(--white);
    padding: 1.875rem 1.5625rem;
}

.login_card_body h4 {
    font-size: 1.5625rem;
    font-weight: 500;
    margin-bottom: .825rem;
    text-align: center;
}

.login_card_body label {
    font-size: 1.125rem;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.login_card_body input {
    height: 3.125rem;
    width: 100%;
    border-radius: 100px;
    padding: 0 20px;
    font-size: 1rem;
    color: #000;
    background-color: var(--lightgray);
    border: 1px solid var(--lightgray);
    margin-bottom: .75rem;
}

.login_card_body input:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--theme);
}

.login_card_body input::placeholder {
    color: var(--gray);
}

.theme_btn {
    text-decoration: none;
    border: none;
    background: var(--bgGradient);
    color: var(--white);
    font-size: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 100px;
    transition: all 0.1s ease;
}

.theme_btn:hover {
    transform: translateY(-2px);
}

.white_border_btn {
    text-decoration: none;
    border: 2px solid var(--white);
    background: var(--transparent);
    color: var(--white);
    font-size: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 100px;
    transition: all 0.1s ease;
}

.white_border_btn:hover {
    transform: translateY(-2px);
}

/* \ login page style */

/* navbar */
.navbar {
    background-color: var(--white);
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .625rem;
    padding: .625rem 2.375rem .625rem 0;
    position: sticky;
    top: 0;
    left: 0;
    min-height: 78px;
    z-index: 99;
}

.navbar-brand {
    display: block;
    max-width: var(--leftSpace);
    width: 100%;
    text-align: center;
}

.navbar-brand img {
    max-width: 64px;
    /* width: 100%; */
}

.menu_btn {
    background-color: var(--white);
    color: var(--black);
    font-size: 1.675rem;
    border: none;
    max-width: 3.125rem;
    width: 100%;
    height: 3.125rem;
    position: relative;
}

.menu_btn i {
    display: block;
    transition: all 0.3s linear;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu_btn .x_cio,
.close_menu .menu_btn .menu_ico {
    opacity: 0;
}

.close_menu .menu_btn .x_cio {
    opacity: 1;
}

.navbar_drop {
    margin-left: auto;
}

.navbar_drop .nav-link {
    display: flex;
    justify-content: end;
    align-items: center;
    color: var(--black);
    font-size: 16px;
    gap: 5px;
}

.navbar_drop .nav-link img {
    max-width: 1.875rem;
    width: 100%;
    width: 1.875rem;
    object-fit: cover;
    border: 2px solid var(--white);
    border-radius: 50%;
}

.navbar_drop .dropdown-menu {
    left: auto;
    right: 0;
    border: none;
    border-radius: 0.638rem;
    box-shadow: 0px 0px 10px #ffffff70;
}


.navbar_drop .dropdown-item {
    font-size: .875rem;
    font-weight: 500;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.navbar_drop .dropdown-item:focus,
.navbar_drop .dropdown-item:active {
    background-color: var(--transparent);
}

.navbar_drop .dropdown-item i {
    font-size: 1.25rem;
}

/* \ navbar */


/* logout_modal */
.modal_icon {
    width: 100%;
    max-width: 4.25rem;
    height: 4.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c71919;
    color: var(--white);
    font-size: 2.125rem;
    margin: 0 auto .625rem;
    border-radius: 50%;
}

.logout_modal h4 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .0275rem;
    line-height: 2.375rem;
    margin-bottom: 10px;
    text-align: center;
}

.logout_modal p {
    font-size: .9375rem;
    letter-spacing: .0187rem;
    line-height: 1.25rem;
    color: #333333;
    opacity: 0.5;
    margin-bottom: 15px;
    text-align: center;
}

.modal_btn_group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .625rem;
}

.modal_btn_group a,
.modal_btn_group button {
    width: calc(100% / 2 - .625rem);
    height: 3.25rem;
    border-radius: .75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: #c71919;
    text-decoration: none;
    border: none;
}

/* \ logout_modal */

/* main tag */
main#main {
    background: var(--gray);
    padding-left: var(--leftSpace);
    transition: padding 0.1s ease;
    min-height: calc(100vh - 78px);
}

.close_menu main#main {
    padding-left: 0;
}

/* \ main tag */

/* sidebar */

.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar {
    position: fixed;
    z-index: 1000;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: var(--white);
    width: 100vw;
    max-width: var(--leftSpace);
    height: calc(100vh - 78px);
    transition: all 0.3s ease;
}

.close_menu .sidebar {
    left: -100%;
}


.side_link {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 1rem .9375rem;
    color: var(--black);
    gap: .475rem;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.1s linear;
    letter-spacing: .6px;
}

.side_link i {
    color: inherit;
    font-size: 0.925rem;
    display: flex;
}

.side_link img {
    max-width: 1.2rem;
    width: 100%;
    height: 1.225rem;
    object-fit: contain;
    object-position: left;
    filter: brightness(0) invert(1);
    transition: all 0.1s linear;
    filter: brightness(1) invert(1);
}

.side_link:hover {
    background: var(--lightgray);
    color: var(--black);
}

.side_link.active {
    background: var(--bgGradient);
    color: var(--white);
}

.side_link:hover img {
    filter: brightness(1) invert(1) !important;
}

.side_link.active img {
    filter: brightness(0) invert(1) !important;
}

/* \ sidebar ******************************************************************************/

/* right contant */
.right_contant {
    padding: 1.275rem 2.375rem 0;
    display: flex;
    justify-content: start;
    align-items: stretch;
    flex-direction: column;
}

.page_head {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .625rem;
    padding-bottom: 1.275rem;
}

.page_title {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}

.card_height {
    min-height: calc(100vh - 13rem);
}

.dark_card {
    background: var(--white);
    padding: 2.875rem;
    border-radius: 1.625rem;
}

.dash_card {
    box-shadow: 0px 3px 6px #00000029;
    /* border: 1px solid var(--ds_color); */
    border-radius: 1.25rem;
    background-color: var(--ds_bgcolor);
    padding: .95rem;
    display: flex;
    justify-content: start;
    align-items: center;
    min-height: 6.375rem;
    text-decoration: none;
    color: var(--black);
}

.dash_card img {
    width: 37%;
    height: 3.075rem;
    object-fit: contain;
}

.dash_card_body {
    width: 60%;
    text-align: center;
}

.dash_card_body p {
    font-size: 1.0375rem;
    font-weight: 600;
    margin-bottom: .625rem;
}

.dash_card_body h4 {
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: .625rem;
}

footer {
    font-size: 14px;
    color: var(--black);
    margin: auto 0;
    padding: 16px 2.375rem;
}

/* table header style */
.table_header {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .9375rem;
}

.table_search {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .925rem;
    margin-right: auto;
}

.table_search label {
    font-size: 1rem;
    letter-spacing: -0.0031rem;
    color: var(--black);
}

.table_search input {
    display: block;
    width: 15.125rem;
    height: 2.6875rem;
    padding: .625rem;
    border-radius: .625rem;
    border: 2px solid var(--black);
}

.table_search input:focus {
    border-color: var(--lightTheme);
    outline: none;
}

.file_save_icos {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .75rem;
}

.file_save_icos a {
    display: block;
}

.file_save_icos a img {
    width: 36px;
}

.add_link {
    text-decoration: none;
    color: var(--bgGradient);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    background: var(--transparent);
    display: flex;
    justify-content: end;
    align-items: center;
    gap: .625rem;
}

.add_link i {
    font-size: 1.4rem;
}

.table_az {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .5375rem;
    background-color: var(--transparent);
    color: var(--black);
    border: none;
    font-size: .9375rem;
    font-weight: 600;
}

.table_az i {
    font-size: 1.375rem;
}

/* \ table header style */

/* data theme table */

.table_responsive {
    overflow: auto;
    width: 100%;
    height: calc(100vh - 381px);
    min-height: 400px;
}

.data_table {
    width: 100%;
    color: var(--black);
}

.data_table thead {
    position: sticky;
    top: 0;
    z-index: 33;
    background-color: var(--white);
}

.data_table th {
    font-weight: 600;
}

.data_table td {
    letter-spacing: -0.06px;
    font-weight: 400;
}

.data_table td:first-child,
.data_table th:first-child {
    text-align: center;
    width: 50px;
}

.data_table th,
.data_table td {
    padding: .8125rem 0;
    padding-right: .625rem;
    font-size: 1.125rem;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    max-width: 250px;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
}

.action_btns {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .9125rem;
}

.action_btns .acti_btn {
    font-size: 1.125rem;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1.35rem;
    width: 100%;
    height: 1.35rem;
    text-decoration: none;
    background-color: var(--transparent);
    border: none;
}

/* \ data theme table */

.back_btn {
    background-color: var(--transparent);
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    margin-right: 1.25rem;
}

.shadow_box {
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 26px;
    padding: 2.5rem;
}

.shadow_box .dark_card {
    border: 1px solid var(--white);
}

/* upload_porfile */
.up_img {
    max-width: 8.55rem;
    width: 100%;
    height: 8.55rem;
    position: relative;
}

.up_img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: white;
    object-fit: cover;
    border: 1px solid var(--white);
}

.ico_up::after {
    position: absolute;
    content: "";
    border-width: 7px;
    border-style: solid;
    border-color: #8a8a8a transparent transparent transparent;
    right: 14px;
    bottom: 12px;
}

.up_img label {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--red);
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
}

/* \ upload_porfile */

.form_label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: .3125rem;
}

.inputgroup {
    position: relative;
    margin-bottom: 30px;
}

.inputcontrol {
    border-radius: 12px;
    padding: 0 .9375rem;
    font-size: .875rem;
    width: 100%;
    background-color: var(--gray);
    height: 3.61rem;
    border: 1px solid var(--white);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.inputcontrol::placeholder {
    color: var(--dark);
}

.inputcontrol:focus {
    border-color: var(--lightTheme);
    outline: none;
}

.form-area .form-inner {
    width: 100%;
}

.form-group {
    border-radius: 3.125rem;
}

.form-control {
    border: 1px solid #CECECE;
    border-radius: 5px;
    font-size: .875rem;
    color: #333;
    padding: 0 .9375rem;
    height: 2.81rem;
    width: 100%;
}

.form-control:focus {
    color: #475F7B;
    background-color: var(--white);
    border-color: #5A8DEE;
    outline: 0;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}

.intl-tel-input,
.iti {
    width: 100%;
}

.iti__selected-flag {
    border-radius: 7px 0 0 7px;
    background-color: white !important;
    border-right: 1px solid #DFE3E7;
}

/* input dropdown */
.int_drop_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .9375rem;
    height: 50px;
    box-shadow: 0px 3px 6px #00000017;
    border: 0.5px solid var(--white);
    border-radius: 6px;
    padding: 0 1.5625rem;
    width: 100%;
    background: #ee6b60;
    color: #fff;
}

.int_drop_btn span {
    font-size: .875rem;
    font-weight: 500;
}

.int_drop_btn i {
    font-size: 1.1rem;
}

.input_dropdown {
    margin-bottom: 1rem;
}

.input_dropdown .dropdown-menu {
    width: 60%;
    padding: 0.6rem !important;
    max-height: 32.5rem;
    overflow-y: auto;
    right: 0 !important;
    left: auto !important;
}

/* \ input dropdown */


/* user name card style */
.u_name_card {
    box-shadow: 0px 0px 3px #00000029;
    border-radius: .625rem;
    padding: 30px 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .9375rem;
    margin-bottom: .75rem;
    background-color: var(--white);
}


.u_card_img img {
    width: 6.6875rem;
    height: 4.625rem;
    min-width: 5rem;
    border-radius: 10px;
    object-fit: cover;
}

.u_card_body h4 {
    font-size: .8125rem;
    font-weight: 600;
    margin-bottom: 0;
}

.ucard_foot {
    margin-left: auto;
}

.check_round {
    width: 1.3125rem;
    min-width: 1.3125rem;
    height: 1.3125rem;
    border-radius: 50%;
    background-color: var(--gray);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #0000;
    cursor: pointer;
    transition: all 0.2s linear;
}

.check_round:hover {
    transform: scale(1.1);
}

input:checked+.check_round {
    background-color: var(--black);
    color: var(--white);
}

/* \ user name card style */

/* map page */
.map_header {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .9375rem;
    flex-wrap: wrap;
}

.map_header h4 {
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: -0.005rem;
    margin-bottom: 0;
    color: var(--white);
}

.mapDorp {
    max-width: 9.9375rem;
    width: 100%;
    min-width: fit-content;
}

.mapDBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .625rem;
    border: 1px solid var(--white);
    background-color: var(--white);
    width: 100%;
    height: 2.875rem;
    border-radius: .3125rem;
    padding: 0 .75rem;
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: -0.05px;
}

.mapDorp .dropdown-menu {
    border-radius: .75rem;
    border: none;
    box-shadow: 0rem 1.25rem 2.5rem #0000005B;
}

.mapDorp .dropdown-menu .dropdown-item {
    font-size: .75rem;
    letter-spacing: -0.0025rem;
    font-weight: 500;
}

.map_int_grop {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 12px;
    height: 2.875rem;
    background-color: var(--white);
    border-radius: .3125rem;
    width: 100%;
    max-width: 23.5rem;
    margin-right: auto;
}

.map_int_grop input {
    width: 50%;
    border: none;
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: -0.05px;
    padding: 0 .625rem;
}

.map_int_grop input:focus {
    outline: none;
    border: none;
}

.map_int_grop input::placeholder {
    color: var(--black);
    opacity: 1;
}

.map_int_grop select {
    width: 50%;
    background-color: var(--white);
    border: none;
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: -0.05px;
    padding: 0 .725rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.map_int_grop select option {
    font-size: .75rem;
    font-weight: 500;
}

.map_radio {
    max-width: fit-content;
    width: 100%;
    display: flex;
    justify-content: start;
    padding: 12px;
    height: 2.875rem;
    background-color: var(--white);
    border-radius: .3125rem;
    gap: .8125rem;
}

.map_radio label {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .625rem;
    cursor: pointer;
}

.map_radio label i {
    font-size: 20px;
    color: var(--gray);
    transition: all 0.2s;
}

.map_radio label span {
    font-size: .9375rem;
    font-weight: 500;
}

.map_radio input:checked+label i {
    color: var(--black);
}

/* \ map page */

/* patient_detail_card */
.patient_detail_card {
    box-shadow: 0px 0px 5px #00000029;
    border-radius: 1.25rem;
    background-color: var(--white);
    text-align: center;
    padding: 3rem;
}

.patient_detail_card img {
    width: 100%;
    object-fit: cover;
}

.patient_detail_card h3 {
    font-size: 1.4375rem;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: .9375rem;
}

.vr_border {
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 25%, rgba(229, 229, 229, 1) 75%, rgba(255, 255, 255, 1) 100%);
    width: 2px;
}

.bot_line {
    height: 1px;
    width: 100%;
    background: rgb(226, 226, 226);
    background: linear-gradient(90deg, rgba(226, 226, 226, 1) 0%, rgba(242, 242, 242, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.patient_detail_card label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .5rem;
    display: block;
    text-align: left;
}

.patient_detail_card span {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .5rem;
    color: var(--gray);
    font-size: .875rem;
    display: block;
    text-align: left;
}

/* \ patient_detail_card */

.theme_bg_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3.5rem;
    font-size: .875rem;
    box-shadow: 0px 3px 6px #00000017;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    color: var(--black);
    border: none;
    background: var(--bgGradient);
    transition: all 0.2s;
}

.theme_bg_link:hover {
    transform: translateY(-1px);
}


.head2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--white);
    text-decoration: none;
    display: block;
}


.head3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--white);
    text-decoration: none;
    display: block;
}

/* filter dropdown */
.filter_drop_btn {
    background-color: var(--transparent);
    border: none;
    font-size: 20px;
    color: var(--white);
}

.filter_dropdown .dropdown-menu {
    box-shadow: 0px 0px 4px #00000017;
    border-radius: .6875rem;
    padding: .8125rem;
    width: 80vw;
    max-width: 31.25rem;
    border: none;
    left: auto !important;
    right: 0 !important;
}

.filter_radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--lightgray);
}

.filter_radio span {
    font-size: .8125rem;
    font-weight: 500;
}

.inputcontrol.show {
    background-color: #d4d4d4;
    color: #8B8B8B;
}

/* \ filter dropdown */

/* medical records */
.md_record_card {
    background-color: var(--gray);
    box-shadow: 0px 0px 5px #00000017;
    border-radius: 10px;
    padding: .625rem .9375rem;
    margin-bottom: .75rem;
    display: block;
    text-decoration: none;
    color: var(--white);
}

.md_record_card h6 {
    font-size: .875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: .5rem;
}

.md_record_card small {
    font-size: .625rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: .625rem;
    opacity: 0.5;
}

.md_record_card p {
    font-size: .75rem;
    font-weight: 400;
    color: var(--white);
    display: block;
    margin-bottom: .625rem;
    line-height: .9375rem;
}

.upload_ctg {
    background-color: #F5F5F5;
    display: inline-block;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .7375rem;
    width: fit-content;
    border-radius: 5px;
}

.upload_ctg i {
    font-size: 1.988rem;
}

.upload_ctg span {
    font-size: .6875rem;
}

.mdv_Detail h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .3125rem;
}

.mdv_Detail span {
    font-size: .9375rem;
    font-weight: 500;
    display: block;
    margin-bottom: .625rem;
    opacity: 0.5;
    color: var(--white);
}

.mdv_Detail p {
    font-size: .875rem;
    font-weight: 500;
    display: block;
    margin-bottom: .25rem;
    color: var(--white);
}

.mdv_Detail img {
    max-width: 11.9375rem;
    width: 100%;
    height: 8.125rem;
    border: 0.5px solid var(--white);
    border-radius: 8px;
    object-fit: cover;
}

.ico_modal i {
    color: red;
    font-size: 2.25rem;
}

.ico_modal h6 {
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: .375rem;
}

.ico_modal p {
    font-size: .875rem;
    margin-bottom: .925rem;
}

/* \ medical records */

/* insurance card */
.insurance_card {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: .625rem;
    background: var(--bgGradient);
    color: var(--black);
    border-radius: .625rem;
    text-decoration: none;
}

.insurance_card img {
    width: 100%;
    max-width: 6.875rem;
    border-radius: 7px;
    object-fit: cover;
}

.insurance_card span {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0 auto;
}

/* \ insurance card */

/* Legal  */
.theme_acc {
    background: var(--transparent);
    border: none;
    margin-bottom: .9375rem;
}

.theme_acc .accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .9375rem;
    height: 50px;
    box-shadow: 0px 3px 6px #00000017;
    border: 0.5px solid var(--white);
    border-radius: 6px;
    padding: 0 1.5625rem;
    width: 100%;
    background: var(--bgGradient);
    color: var(--black);
}


.theme_acc .accordion-button::after {
    display: none;
}

.theme_acc .accordion-body {
    padding: .625rem 0;
}

.theme_acc .accordion-body p {
    font-size: .875rem;
    color: var(--white);
}

.theme_acc .accordion-body img {
    max-width: 5.625rem;
    width: 100%;
    height: 7.4375rem;
    object-fit: cover;
}

/* \ Legal  */

/* note_card */
.note_card {
    box-shadow: 0px 0px 5px #00000017;
    border-radius: .625rem;
    background-color: var(--gray);
    padding: 1.2rem;
    color: var(--white);
    display: flex;
    justify-content: start;
    align-items: center;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.note_card h6 {
    margin-bottom: 3px;
    font-size: .875rem;
    font-weight: 500;
}

.note_card small {
    margin-bottom: 3px;
    font-size: .625rem;
    font-weight: 500;
}

.note_card p {
    font-size: .625rem;
    margin-bottom: 0;
}

.note_delete_btn {
    max-width: 2rem;
    width: 100%;
    height: 2rem;
    border: none;
    background-color: var(--white);
    border-radius: .3125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f00;
    font-size: 1.25rem;
}

/* \ note_card */

/* remind_card */
.remind_card {
    border: 1px solid #DFDFDF;
    border-radius: .9375rem;
    padding: 1.25rem;
    color: var(--white);
    text-decoration: none;
    background-color: var(--gray);
    position: relative;
}

.remind_card span {
    font-size: .875rem;
    display: block;
    margin-bottom: .625rem;
}

.remind_card p {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.edit_deletet_btns {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;

}

.edit_deletet_btns .edit_btn,
.edit_deletet_btns .del_btn {
    width: 1.875rem;
    height: 1.875rem;
    border: none;
    background-color: var(--transparent);
    color: var(--white);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* \ remind_card */

/* notification */
.notify_radio {
    border-radius: .875rem;
    padding: .875rem;
    background-color: var(--white);
    width: 100%;
    max-width: fit-content;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .875rem;
}

.notify_radio label {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .3125rem;
    font-size: .9375rem;
    font-weight: 500;
    cursor: pointer;
}

.notify_radio label i {
    font-size: 1.25rem;
    color: var(--gray);
}

.notify_radio input:checked+label i {
    color: var(--black);
}

.notificat_box {
    background-color: var(--gray);
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 1.375rem;
    padding: 1.375rem;
}

.notificat_box h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
}

.notificat_box p {
    font-size: .875rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0;
}

/* \ notification */

.surg_rad_lab {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .9375rem;
    height: 50px;
    box-shadow: 0px 3px 6px #00000017;
    border: 0.5px solid var(--white);
    border-radius: 6px;
    padding: 0 1.5625rem;
    width: 100%;
    background: var(--bgGradient);
    opacity: 0.7;
    cursor: pointer;
}

input:checked+.surg_rad_lab {
    opacity: 1;
}

/* calendar style */
.cal_year {
    background-color: var(--white);
    border-radius: .625rem;
    padding: .625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .9375rem;
}

.cal_year button {
    background-color: var(--transparent);
    color: #333;
    border: none;
    font-size: 1.1875rem;
}

.cal_year span {
    font-size: 14px;
    font-weight: 500;
}

.month_select {
    position: relative;
}

.month_select i {
    position: absolute;
    z-index: 2;
    color: var(--white);
    font-size: 1rem;
    top: 0.95rem;
    right: .625rem;
}

.month_select select {
    width: 100%;
    border: none;
    height: 3rem;
    border-radius: .625rem;
    color: var(--white);
    background-color: var(--black);
    padding: 0 .9375rem;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.calendar_box {
    box-shadow: 0rem 0rem .625rem #00000014;
    border-radius: 1.0625rem;
    background-color: var(--white);
    overflow: auto;
}

.calendar_box table {
    width: 100%;
}

.calendar_box table th,
.calendar_box table td {
    font-size: .9375rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border: 1px solid #e2e2e2;
    width: calc(100% / 7);
}

.calendar_box table td .cal_td_box {
    height: 120px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: .625rem;
}

.calendar_box table td span {
    font-size: 1.5625rem;
    font-weight: 400;
    margin-bottom: auto;
}


.bg_yellow {
    background-color: var(--yellow);
}

.bg_darkGreen {
    background-color: var(--darkGreen);
}

.bg_red {
    background-color: var(--red);
}

.bg_green {
    background-color: var(--green);
}

.bg_lightBlue {
    background-color: var(--lightBlue);
}


.ap_label {
    padding: 3px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: .625rem;
    color: var(--white);
    font-weight: 400;
}

.apo_bot_btn {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .625rem;
}

.apo_bot_btn .circle {
    width: 1.25rem;
    max-width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
}

.apo_bot_btn span {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
}

.data_table td img {
    width: 60px;
    height: 60px;
    border-radius: 13px;
}

/* \ calendar style */

/* \ right contant ************************************************************************************************************************************************** */

/* max width media */
@media (max-width:1199.98px) {
    .sidebar {
        left: -100%;
    }

    .close_menu .sidebar {
        left: 0;
    }

    main#main {
        padding-left: 0;
    }
}

@media (max-width:767.98px) {
    .dark_card {
        padding: 1.175rem;
        border-radius: 0.925rem;
    }

    .right_contant {
        padding: 0.675rem 0.575rem;
    }

    .page_title {
        font-size: 1.275rem;
    }

    .back_btn {
        font-size: 1.1rem;
        margin-right: 0;
    }

    footer {
        font-size: 12px;
    }

    .table_header {
        flex-wrap: wrap;
    }

    .table_search input {
        width: 14.125rem;
    }

    .patient_detail_card {
        padding: 1rem;
    }

    .dash_card img {
        width: 25%;
        height: 3.375rem;
    }

    .dash_card_body p {
        font-size: 1.038rem;
    }

    .dash_card_body h4 {
        font-size: 2.25rem;
    }

    .dash_card {
        min-height: 8.375rem;
    }

    .navbar {
        padding: .625rem 2.375rem .625rem 0.6rem;
    }

    .shadow_box {
        padding: 0;
    }
}

.btn_verfly {
    text-decoration: none;
    border: none;
    background: green;
    color: var(--white);
    font-size: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32%;
    height: 19px;
    border-radius: 94px;
    transition: all 0.1s ease;
}

.btn_verfly_error {
    text-decoration: none;
    border: none;
    background: red;
    color: var(--white);
    font-size: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56%;
    height: 22px;
    border-radius: 94px;
    transition: all 0.1s ease;
}



/* .table-responsive {
    max-height: 400px;
    overflow-y: scroll;
} */
/* \ max width media */