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 {
    --header-height: 78px;
    --footer-height: 53px;
    --min-page-height: calc(100vh - var(--header-height) - var(--footer-height));
    --actions-header-height: 64px;
    --dt-scroll-y: calc(100vh - var(--header-height) - var(--footer-height) - var(--actions-header-height, 64px) - 42px - 60px);

    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
    background: #222;
}

body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

a {
    color: var(--lightTheme);
}

*,
ul,
li::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* root */
:root {
    --theme: #945E57;
    --lightTheme: #EBB7A6;
    --bgGradient: linear-gradient(270deg, var(--theme) 0%, var(--lightTheme) 50%, var(--theme) 100%);
    --bgGradient-disabled: linear-gradient(270deg, var(--gray) 0%, var(--lightgray), 50%, var(--gray) 100%);
    --black: #000;
    --dark: #2b2b2b;
    --white: #fff;
    --transparent: #00000000;
    --lightgray: #F2F2F2;
    --gray: #8C8B8B;
    --yellow: #fdaa3c;
    --darkGreen: #057b49;
    --red: #cf3347;
    --green: #02c86e;
    --lightBlue: #559bfb;
    --fontFamily: "Poppins", "verdana", sans-serif;
    --leftSpace: 14.5rem;
    --bs-breadcrumb-divider-color: var(--gray) !important;
}

/* \ root */

body {
    font-family: var(--fontFamily);
    font-weight: 400;
    color: var(--black);
}

.para {
    font-size: 14px;
    line-height: 20px;
}

.eye_show {
    position: absolute;
    right: 15px;
    bottom: 24px;
    font-size: 22px;
}

.delete_icos {
    top: 10px;
    right: 10px;
    z-index: 3;
    color: red;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    cursor: pointer;
}

/* loader css */

.loader_back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #343434;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 1.625rem;
}

.loader_spin {
    width: 48px;
    height: 48px;
    border: 3px dotted #FFF;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotationSpin 2s linear infinite;
}

.loader_spin::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted var(--theme);
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBackSpin 1s linear infinite;
    transform-origin: center center;
}




/* \ loader css */

/* 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;
}

.error {
    color: red
}


.login_page::before {
    content: '';
    background-color: var(--black);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.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);
}
/* password requiremnets colors  */
.default-color-passwd {
    color:var(--bs-black);
}
.green-color-passwd {
    color: var(--bs-green);
}
.red-color-passwd {
    color: var(--bs-red);
}

/* temp password module  */
.toggle-text-vis {
    display: none;
}

.theme_btn {
    text-decoration: none;
    border: none;
    background: var(--bgGradient);
    color: var(--black);
    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.disabled,
.theme_btn:disabled,
fieldset:disabled .theme_btn {
    color: var(--bs-btn-disabled-color) !important;
    pointer-events: none !important;
    background: var(--bgGradient-disabled) !important;
    opacity: 0.75 !important;
}
.theme_btn_small {
    text-decoration: none;
    border: none;
    background: var(--bgGradient) !important;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: var(--bs-black);
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-disabled-opacity: 0.45;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    transition: all 0.1s ease;
}
.theme_btn_light {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: var(--black);
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: var(--bs-gray-700);
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.45;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    text-decoration: none;
    border: none;
    background: var(--bs-gray-200) !important;
    color: var(--black);
    font-size: 1.125rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    transition: all 0.1s ease;
}
.btn_rose {
    background: var(--bgGradient);
    --bs-btn-color: var(--black);
    --bs-btn-bg: var(--bgGradient);;
    --bs-btn-border-color: var(--bgGradient);;
    --bs-btn-hover-color: var(--black);
    --bs-btn-hover-bg: var(--lightTheme);
    --bs-btn-hover-border-color: var(--theme);
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: var(--black);
    --bs-btn-active-bg: var(--theme);
    --bs-btn-active-border-color: none;
    --bs-btn-disabled-color: var(--black);
    --bs-btn-disabled-bg: var(--bgGradient-disabled);;
    --bs-btn-disabled-border-color: var(--bgGradient-disabled);
}
.theme_btn:hover,
.theme_btn_small:hover,
.theme_btn_light:hover,
.btn_rose:hover {
    transform: translateY(-2px);
}
.theme_btn_light:hover {
    color: var(--bs-gray-700) !important;
}

.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);
}

.gray_border_btn {
    text-decoration: none;
    border: 2px solid var(--gray);
    background: var(--gray);
    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;
}

gray_border_btn:hover {
    transform: translateY(-2px);
}

/* \ login page style */

/* navbar */
.navbar {
    background-color: var(--black);
    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;
    font-family: 'poppins', "verdana", sans-serif;
}

.navbar-brand {
    display: block;
    max-width: var(--leftSpace);
    width: 100%;
    text-align: center;
}

.navbar-brand img {
    max-width: 175px;
    width: 100%;
}

.menu_btn {
    background-color: var(--black);
    color: var(--white);
    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(--white);
    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%;
    height: 1.875rem;
}

.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);
}

a.dropdown-item-sort:hover {
    background-color: var(--bs-dark-bg-subtle) !important;
}
.dropdown-sort-menu {
    display: flex !important;
}
.navbar_drop .dropdown-item i {
    font-size: 1.25rem;
}

/* \ navbar */
.actions-header {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    height: 64px;
    position: sticky;
    top: 78px;
    z-index: 1;
    white-space: nowrap !important;
}

.actions-header nav,
.actions-head[aria-label="breadcrumb"] {
    margin-left: 5px;
}

/* 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(--black);
    width: 100vw;
    max-width: var(--leftSpace);
    height: calc(100vh - 78px);
    transition: all 0.3s ease;
    top: 78px;
    font-family: 'poppins', "verdana", sans-serif;
    white-space: initial;
}

.close_menu .sidebar {
    left: -100%;
}


.side_link {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 1.25rem .9375rem;
    color: var(--white);
    gap: .475rem;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.1s linear;
}

.side_link i,
.side_acc_btn i {
    color: inherit;
    font-size: 0.925rem;
    display: flex
}

.side_link .badge.rounded-pill,
.side_acc_btn .badge.rounded-pill {
    position: absolute;
    right: 1.5rem;
    top: 0.5rem;
}

.side_link .badge.rounded-pill:empty,
.side_acc_btn .badge.rounded-pill:empty {
    display: none;
}

.side_link .badge.rounded-pill {
    right: 0.5rem;
}

.side_link img {
    max-width: 1.125rem;
    width: 100%;
    height: 1.125rem;
    object-fit: contain;
    object-position: left;
    filter: brightness(0) invert(1);
    transition: all 0.1s linear;
}

.side_link:hover {
    background: var(--lightgray);
    color: var(--black);
}

.side_link.active {
    background: var(--bgGradient);
    color: var(--black);
}

.side_link:hover img,
.side_link.active img {
    filter: brightness(1) invert(1);
}


.side_acc_item {
    background-color: transparent !important;
    border: none !important;
}

.side_acc_btn {
    position: relative;
    background-color: transparent !important;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 1.25rem .9375rem;
    color: var(--white) !important;
    gap: .475rem;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none !important;
    transition: all 0.1s linear;
    width: 100%;
}



.side_acc_btn img {
    max-width: 1.125rem;
    width: 100%;
    height: 1.125rem;
    object-fit: contain;
    object-position: left;
    filter: brightness(0) invert(1);
    transition: all 0.1s linear;
}

.side_acc_btn:hover img,
.side_acc_btn.active img {
    filter: brightness(1) invert(1);
}

.side_acc_btn:hover {
    background-color: #fff !important;
    color: #000 !important;
}

.side_acc_btn:not(.collapsed) {
    background: var(--bgGradient);
    color: var(--black) !important;
}

.side_acc_btn:not(.collapsed) img {
    filter: brightness(1) invert(1);
}

.side_acc_btn:not(.collapsed) .acc_down {
    transform: rotate(-90deg);
}

.acc_down {
    margin-left: auto;
    font-size: 18px;
}

.side_acc_item .accordion-body {
    padding: 3px 20px;
}

.side_acc_link {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 18px;
    display: block;

}

.side_acc_link:hover,
.side_acc_link.active {
    color: var(--theme);
}

/* \ 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(--white);
    margin-bottom: 0;
}

.card_height {
    min-height: calc(100vh - 13rem);
}
.disabled-user {
    opacity: .5;
    position: relative;
}
.on-top {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1;
}
.dark_card {
    background: var(--dark);
    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: 1.25rem;
    display: flex;
    justify-content: start;
    align-items: center;
    min-height: 13.375rem;
    text-decoration: none;
    color: var(--black);
}

.dash_card img {
    width: 40%;
    height: 4.375rem;
    object-fit: contain;
}

.dash_card_body {
    width: 60%;
    text-align: center;
}

.dash_card_body p {
    font-size: 1.4375rem;
    font-weight: 600;
    margin-bottom: .625rem;
}

.dash_card_body h4 {
    font-size: 3.25rem;
    font-weight: 500;
    margin-bottom: .625rem;
}

footer {
    font-size: 14px;
    color: var(--white);
    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(--white);
}

.table_search input {
    display: block;
    width: 15.125rem;
    height: 2.6875rem;
    padding: .625rem;
    border-radius: .625rem;
    border: 2px solid var(--white);
}

.table_search input:focus {
    border-color: var(--lightTheme);
    outline: none;
}

.table {
    border-color: var(--bs-table-border-color);
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg: var(--bs-table-striped-bg)
}

.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(--white);
    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(--white);
    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(--white);
}

.data_table thead {
    position: sticky;
    top: 0;
    z-index: 33;
    background-color: var(--dark);
}

.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(--white);
    white-space: nowrap;
    overflow: hidden;
    max-width: 250px;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    border-color: var(--bs-table-border-color);
}

.action_btns {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .9125rem;
}

.action_btns .acti_btn {
    font-size: 1.125rem;
    color: var(--white);
    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(--white);
    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: contain;
    border: 1px solid var(--white);
}

.up_img label {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bgGradient);
    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(--black);
    border: 1px solid var(--black);
}

/* \ upload_porfile */

.form_label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: .3125rem;
}

.inputgroup {
    position: relative;
    margin-bottom: 15px;
}

.inputcontrol {
    border-radius: 5px;
    padding: 0 .9375rem;
    font-size: .875rem;
    width: 100%;
    background-color: var(--white);
    height: 2.81rem;
    border: 1px solid var(--white);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.select_arrow {
    position: absolute;
    top: 17px;
    right: 15px;
    z-index: 3;
}

.inputcontrol::placeholder {
    color: var(--gray);
}

.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;
}

.form-check-input:checked {
    background-color: #d5a69c;
    border-color: #d5a69c;
}

.form-check-input:focus {
    box-shadow: none !important;
}

/* 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%;
    text-align: left;
    color: #000;

    background: var(--bgGradient);
}

.int_drop_btn span {
    font-size: .875rem;
    text-align: left;
    font-weight: 500;
    color: #000;
}

.int_drop_btn i {
    font-size: 1.1rem;
}

.input_dropdown {
    margin-bottom: 1rem;
}

.input_dropdown .dropdown-menu {
    width: 100%;
    padding: 0.6rem !important;
    max-height: 206px;
    overflow-y: auto;
}

.input_close {
    /* position: absolute;
    top: 10px;
    right: 10px;
    color: red;
    z-index: 3;
    font-size: 25px; */
    cursor: pointer;
}

/* \ input dropdown */


/* user name card style */
.u_name_card {
    box-shadow: 0px 0px 3px #00000029;
    border-radius: .625rem;
    padding: 0.438rem;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .9375rem;
    margin-bottom: .75rem;
    background-color: var(--white);
}


.u_card_img img {
    width: 5.688rem;
    height: 3.625rem;
    min-width: 5rem;
    border-radius: 10px;
    object-fit: contain;
}

.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: 1.5rem;
}

.patient_detail_card img {
    width: 100%;
    object-fit: contain;
    max-height: 275px;
    min-height: 140px;
    display: block;
    border-radius: 20px;
    border: 1px solid #ddd;
}

.patient_detail_card h3 {
    font-size: 1.4375rem;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: .9375rem;
    text-transform: capitalize;
}

.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;
    position: relative;
}

.upload_ctg i {
    font-size: 1.988rem;
}

.upload_ctg span {
    font-size: .6875rem;
}

.upload_ctg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    position: absolute;
    z-index: 3;
    background: #fff;
    padding: 4px;
}

.upload_ctg img[src=""] {
    display: none;
}

.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;
}

.sub-card {
    background: var(--bgGradient);
    color: var(--bs-card-color);
    font-weight: 700;
}
.sub-card input[type="text"],
.sub-card textarea.dark-text-ro {
    background: var(--black) !important;
    color: var(--white) !important;
}
/* \ 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_del_ico {
    position: absolute;
    color: #b10000;
    top: 10px;
    right: 10px;
    font-size: 25px;
    background-color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 34px;
    border-radius: 50%;
}

.insurance_card img {
    width: 100%;
    max-width: 6.875rem;
    border-radius: 7px;
    object-fit: contain;
    height: 6.875rem;
}

.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 h5 {
    margin-bottom: 3px;
    font-size: 1.2rem;
    font-weight: 500;
}

.note_card h6 {
    margin-bottom: 3px;
    font-size: .975rem;
    font-weight: 500;
}


.note_card small {
    margin-bottom: 3px;
    font-size: .725rem;
    font-weight: 500;
}

.note_card p {
    font-size: 0.825rem;
    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(--white);
}

.notificat_box p {
    font-size: .875rem;
    font-weight: 400;
    color: var(--white);
    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;
    color: var(--black);
    text-decoration: none;
    border: 0.5px solid var(--white);
    border-radius: 6px;
    padding: 0 1.5625rem;
    width: 100%;
    background: var(--bgGradient);
    opacity: 0.7;
    cursor: pointer;
}

a.surg_rad_lab {
    opacity: 1;
}

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 .cal_td_boxdisabled {
    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;
}

/* \ calendar style */

/* \ right contant ************************************************************************************************************************************************** */


.dt-search label {
    color: #fff;
    gap: 10px;
}

.dt-search input {
    display: block;
    width: 15.125rem;
    height: 2.6875rem;
    padding: .625rem;
    border-radius: .625rem !important;
    background: var(--white) !important;
    border: 2px solid var(--white);
    color: var(--black) !important;
}

.dt-buttons {
    background-color: var(--white) !important;
    color: #000 !important;
    border-radius: 7px !important;
}

.dt-info {
    color: var(--white) !important;
    /* display: inline-block; */
}

/* 
.dt-paging {
    float: right;
} */

.page div.dt-scroll-body {
    border: none;
}

a.paginate_button {
    color: var(--white) !important;
}

span a.paginate_button {
    background: var(--white) !important;
    border-radius: 8px !important;
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td,
table.dataTable {
    border: none !important;
    border-color: var(--bs-table-border-color);
}

table.dataTable tr {
    border-color: var(--bs-table-border-color) !important;
}

.table-wrapper .dt-container {
    overflow: hidden;
}

.dt-container .row.mt-2 {
    --bs-gutter-y: 0;
    --bs-gutter-x: 0;
    margin-top: 0 !important;
}

div.dt-scroll-body {
    border-bottom-color: var(--bs-table-border-color);
}

.table.dataTable th,
.table.dataTable td {
    padding: .8125rem .625rem;
    font-size: 1.125rem;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    max-width: 250px;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    border-color: var(--bs-table-border-color);
}


/* phone select input */

.phone_code {
    display: flex;
    justify-content: start;
    align-items: center;
}

.phone_code input {
    border-radius: 0 5px 5px 0;
    padding: 0 .9375rem;
    font-size: .875rem;
    width: 100%;
    background-color: var(--white);
    height: 2.81rem;
    border: 1px solid var(--white);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.phone_code select {
    border-radius: 5px 0 0 5px;
    padding: 0 0.138rem;
    font-size: .975rem;
    width: 100%;
    max-width: 60px;
    background-color: var(--white);
    height: 2.81rem;
    border: 1px solid var(--white);
    text-align: center;
}

.interror {
    position: relative;
}

.interror:has(label.error) {
    margin-bottom: 30px;
}

.interror label.error {
    position: absolute;
    bottom: -22px;
    left: 0;
}

/* \ phone select input */


/* map new style */
.gm-style .gm-style-iw-c {
    border-radius: 10px;
    box-shadow: none;
    overflow: visible;
    padding: 8px !important;
}

.gm-style-iw-ch {
    display: none;
}

.gm-style-iw-d>div {
    display: flex;
    justify-content: start;
    align-items: stretch;
}

.pop_img {
    width: 100%;
    max-width: 70px;
    height: 100px;
}

.pop_img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.pop_body {
    width: 100%;
    padding: 8px;
}

.pop_body h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.pop_body p {
    font-size: 14px;
    margin-bottom: 0px;
    color: #888;
}

.gm-ui-hover-effect {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    background-color: #ff0000 !important;
    color: #fff !important;
    position: absolute !important;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
}

.gm-ui-hover-effect>span {
    background-color: #fff !important;
    margin: 3px !important;
}

.gm-style-iw-d {
    overflow: auto !important;
}

/* \ map new style */

/* bootstrap input focus override */
#patient_details .form-control:focus {
    border: 1px solid #CECECE !important;
    border-radius: 5px !important;
}
/* datepicker */
.datepicker-dropdown {
    /* transform: translateY(calc(100% + 50px)); */
    padding: 8px;
    z-index: 1000 !important;
}

.table-condensed {
    width: 280px;
}

/* \ datepicker */
/* theme text color  */
.theme-colored-text {
    color: var(--theme);
}
/* tabs style  */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--theme);
}

.nav-pills .nav-link {
    color: #fff;
}

/* \ tabs style  */


/* Improved Select2 styling */
.select2-container--default .select2-selection__arrow,
.select2-container--default .select2-selection__clear {
    height: 100% !important;
    margin-top: 0;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
}

.select2-container--default textarea {
    min-height: 40px;
    line-height: 40px;
}

.select2-container--default .select2-selection--multiple button.select2-selection__choice__remove {
    position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 4px 0 !important;
    margin-left: 0 !important;
}

.select2-container--default .select2-selection--multiple button.select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #f1f1f133
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    min-height: 40px;
    padding: 0.2rem;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0d6efd;
    border-color: #0a58ca;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #0d6efd;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.select2-container--open .select2-dropdown {
    border-color: #86b7fe;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.page {
    min-height: calc(100vh - var(--header-height, 78px) - var(--footer-height, 53px));
}

/* Card styles */
.google-font {
    font-family: "Oswald", serif;
}

.breadcrumb {
    font-family: 'poppins', "verdana", sans-serif;
    background-color: transparent;
    margin-bottom: 0;
    padding: 0;
}

.chat-placeholder {
    background: var(--bgGradient);
    color: transparent;
    background-clip: text;
}

.list-group .list-group-item-action.d-flex {
    gap: var(--bs-list-group-item-padding-x) var(--bs-list-group-item-padding-y);
}

.chat-placeholder .material-icons {
    font-size: 16rem;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: gold;
}

.breadcrumb-item.active {
    color: var(--lightTheme);
}

.clickable-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: black;
    background: var(--bgGradient);
    cursor: pointer;
}

.clickable-card:hover {
    color: white;
    /* Theme color for text */
    transform: scale(1.02);
    /* Slight scaling */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Add shadow effect */
}

.clickable-card::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.clickable-card:hover::before {
    opacity: 1;
}

.add_link {
    color: var(--lightTheme);
    text-decoration: none;
    font-weight: bold;
}

.add_link:hover {
    color: #d8924d;
}

.pagination-controls .btn {
    margin: 0;
}

.input-group-text {
    background-color: #fff;
    border: none;
    color: #444;
}

#searchPatients {
    border: 1px solid #ddd;
}

/* Table Wrapper */
.table-wrapper {
    overflow: auto;
    max-height: calc(var(--min-page-height) - var(--actions-header-height, 64px));
}

.table-wrapper table {
    margin: unset;
}

/* max width media */


@media (max-width:1399.98px) {
    .dash_card img {
        width: 20%;
    }

    .dash_card_body p {
        font-size: 1.138rem;
    }

    .dash_card_body h4 {
        font-size: 2.05rem;
    }

    .dash_card_body {
        width: 80%;
    }

    .dash_card {
        padding: 0.75rem;
        min-height: 9rem;
    }
}

@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;
    }
}

/* \ max width media */

@view-transition {
    navigation: auto;
}
