:root {
    --primary-color: #1E1E2D;
    --secondary-color: #eee;
    --second-color: #0dcaf0;
    --background-color: #f9f9f9;
    --text-color: #121212;
    --text-color-alt: white;
    --border-color: red;
    --border-color-alt: green;
    --text-color-grey: #7B8298;
    --sidebar-background: #1E1E2D;
    --hover-color: ;
    --navbar-height: 75px;
    /*--bs-btn-hover-bg: #8BC34A;*/
    /* Global Styles */
    /*--primary-color: #405189;*/
    /*--secondary-color: #0ab39c;*/
    /*--text-color: #495057;*/
    --body-bg: #f3f3f9;
    --card-bg: #fff;
}

* {
    box-sizing: border-box;
    /*transition: 0.3s;*/
}

.btn-success {
    background-color: #8BC34A;
    border-color: #8BC34A;
    transition: .3s all ease-in-out;
}

.btn-success:hover {
    background-color: #91b06c;
    border-color: #8BC34A;
}

a, .sidebar, .modal, .offcanvas {
    transition: 0.3s all ease-in;
}

.sidebar * {
    transition: none;
}

.btn-custom {
    border: 0;
}

.btn-custom:active {
    border: 0;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    min-height: 100vh;
    z-index: -2;
    background-color: var(--background-color);
}

a:focus-visible,
textarea:focus,
input:focus {
    outline: 0;
}

img {
    max-width: 100%;
}

.section {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 7.7982px 17.3293px rgba(0, 157, 181, 0.07);
    background-color: white;
}

i {
    font-weight: 900;
    font-size: 18px;
}

button:active {
    outline: 0;
    border: 0;
    background-color: transparent;
}

.nav-bar {
    height: var(--navbar-height);
    padding-left: 120px;
    position: relative;
    border-bottom: 1px solid rgba(207, 207, 207, 0.4784313725);
    width: calc(100% - 1px);
}

.nav-bar .header {
    height: var(--navbar-height);
    padding-top: 15px;
    padding-bottom: 15px;
}

.nav-bar .container-fluid .bg {
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0;
    display: flex;
    width: 100%;
    height: 130%;
}

.nav-bar .container-fluid .bg .main {
    animation: header-bg infinite 10s linear;
    -webkit-animation: header-bg infinite 10s linear;
    display: flex;
    gap: 50px;
}

.nav-bar .container-fluid .bg .main img {
    width: 150%;
}

.nav-bar .container-fluid::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 75px;
    background: url(../img/header-bg.svg);
    animation: wave 10s linear infinite;
    background-size: cover;
    transform: translate3d(0, 0, 0);
    left: 0;
    bottom: 0;
    z-index: -1;
    top: 0;
}

.nav-bar .container-fluid .sidebar-mobil-open {
    padding: 10px;
    border: 0;
    background-color: white;
    height: -moz-fit-content;
    height: fit-content;
}

.nav-bar .container-fluid .actions .btn-custom {
    padding: 0;
}

.nav-bar .container-fluid .actions div {
    display: inline-block;
}

.nav-bar .container-fluid .actions i {
    font-size: 20px;
}

.nav-bar .container-fluid .actions i.ring::before {
    animation: 1s ring infinite linear;
    -webkit-animation: 1s ring infinite linear;
    padding: 10px;
}

.nav-bar .container-fluid .actions .notfi {
    position: relative;
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
}

.nav-bar .container-fluid .actions .notfi::after {
    content: attr(data-notfi-num);
    background-color: #83bf6e;
    color: white;
    position: absolute;
    top: -4px;
    right: 5px;
    padding: 0 5px;
    font-size: 9px;
    display: flex;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-weight: 700;
}

.nav-bar .container-fluid .actions .notfi .notification-list {
    visibility: hidden;
    opacity: 0;
    border-radius: 6px;
    position: absolute;
    top: 100px;
    right: -40px;
    box-shadow: 0 0 20px 0 rgba(18, 18, 18, 0.1411764706);
    width: 300px;
    background-color: white;
    z-index: 100000000;
}

.nav-bar .container-fluid .actions .notfi .notification-list .head {
    margin: 0;
    padding: 20px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.4588235294);
}

.nav-bar .container-fluid .actions .notfi .notification-list .notifications {
    padding: 20px 20px 0;
}

.nav-bar .container-fluid .actions .notfi .notification-list .notifications .single-notification {
    display: flex;
}

.nav-bar .container-fluid .actions .notfi .notification-list .notifications .single-notification img {
    width: 50px;
    border-radius: 50%;
}

.nav-bar .container-fluid .actions .notfi .notification-list .notifications .single-notification .name {
    color: var(--text-color);
    margin-left: 10px;
    margin-bottom: 0;
}

.nav-bar .container-fluid .actions .notfi .notification-list .notifications .single-notification .time {
    color: var(--text-color-grey);
    margin-left: 10px;
    margin-bottom: 0;
    font-size: 14px;
}

.nav-bar .container-fluid .actions .notfi .notification-list .btn-custom {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0px auto 10px auto;
    color: var(--primary-color);
    font-weight: bold;
    display: block;
}

.nav-bar .container-fluid .actions .notfi:hover .notification-list {
    visibility: visible;
    opacity: 1;
    top: 45px;
}

.nav-bar .container-fluid .actions .user {
    padding: 10px;
    border-bottom: 1px solid rgba(219, 219, 219, 0.11);
    position: relative;
    cursor: pointer;
}

.nav-bar .container-fluid .actions .user .profile-pic {
    width: 40px;
    position: relative;
}

.nav-bar .container-fluid .actions .user .profile-pic.dot::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    background-color: #83BF6E;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.user.notfi .profile-pic::before {
    right: 8px !important;
}

.nav-bar .container-fluid .actions .user .info .name {
    color: var(--text-color);
    padding: 0;
    margin: 0 0 0 10px;
}

.nav-bar .container-fluid .actions .user .info .about {
    color: var(--text-color-grey);
    padding: 0;
    margin: 0 0 0 10px;
    font-size: 13px;
    font-weight: 500;
}

.nav-bar .container-fluid .actions .user .user-list {
    visibility: hidden;
    opacity: 0;
    border-radius: 6px;
    position: absolute;
    top: 100px;
    right: 3px;
    box-shadow: 0 0 20px 0 rgba(18, 18, 18, 0.1411764706);
    width: 150px;
    background-color: white;
    z-index: 100000;
}

.nav-bar .container-fluid .actions .user .user-list .page {
    margin: 10px 0;
    padding: 6px 12px;
    display: block;
}

.nav-bar .container-fluid .actions .user .user-list .page i {
    padding: 7px;
    background-color: #eee;
    border-radius: 6px;
    font-size: 14px;
    margin-right: 5px;
}

.nav-bar .container-fluid .actions .user .user-list .page:hover {
    background-color: rgba(0, 157, 181, 0.1);
    color: var(--primary-color);
}

.nav-bar .container-fluid .actions .user .user-list .page:hover i {
    background-color: white;
    color: var(--primary-color);
}

.nav-bar .container-fluid .actions .user:hover .user-list {
    visibility: visible;
    opacity: 1;
    top: 60px;
}

.nav-bar.click {
    padding-left: 260px;
}

.nav-bar .search {
    width: 0;
    height: 0;
    background-color: white;
    padding: 10px 140px;
    top: -10px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    left: 50%;
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.nav-bar .search input {
    width: 90%;
    height: 100%;
    border: 0;
    padding: 0 10px;
}

.nav-bar .search .close {
    position: absolute;
    right: 35px;
    top: 21px;
    border: 0 !important;
}

.nav-bar .search .close i {
    font-size: 20px;
}

.nav-bar .search .close:active {
    border: 0;
}

.nav-bar .search.open {
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    z-index: 10;
    opacity: 1;
}

.nav-bar .search.open.click {
    transform: translateX(10%);
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
}

.sidebar {
    position: fixed;
    width: 120px;
    height: 100%;
    left: 0;
    background-color: var(--sidebar-background);
    z-index: 50;
    overflow: hidden;
}

.sidebar .main {
    width: 100%;
}

.sidebar .main .logo {
    height: 75px;
    /*padding: 20px 40px;*/
    border-bottom: 1px solid rgba(219, 219, 219, 0.11);
}
.sidebar.click .main .logo img {
    /*width: 70%;*/
    margin: auto;
}

.sidebar .main .logo .logo-img {
    display: none;
}

.sidebar .main .logo .btn-custom i {
    color: var(--text-color-grey);
    font-size: 30px;
}

.sidebar .main .acount {
    padding: 20px 40px;
    height: 80px;
    overflow: hidden;
    border-bottom: 1px solid rgba(219, 219, 219, 0.11);
}

.sidebar .main .acount .profile-pic {
    min-width: 40px;
    max-width: 40px;
    position: relative;
    margin-right: 50px;
}

.sidebar .main .acount .profile-pic::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    background-color: #83BF6E;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid black;
}

.sidebar .main .acount .info .name {
    color: white;
    padding: 0;
    margin: 0 0 0 10px;
}

.sidebar .main .acount .info .about {
    color: var(--text-color-grey);
    padding: 0;
    margin: 0 0 0 10px;
    font-size: 13px;
    font-weight: 500;
}

.sidebar .main .acount .settings {
    padding: 5px 0;
}

.sidebar .main .acount .settings i {
    color: var(--text-color-grey);
    font-size: 26px;
}

.sidebar .main .pages .main-head-sidebar {
    position: absolute;
    opacity: 0;
    height: 0;
    background-color: rgba(249, 155, 13, 0.2);
    color: #F99B0D;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 6px;
    text-transform: uppercase;
    position: relative;
}

.sidebar .main .pages .main-head-sidebar::before {
    content: "";
    width: 6px;
    height: 1px;
    background-color: #F99B0D;
    position: absolute;
    display: block;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 6px;
}

.sidebar .main .pages .collapse-components i {
    font-size: 25px;
}

.sidebar .main .pages .collapse-components .collapse-component,
.sidebar .main .pages .collapse-components .single-component {
    display: flex;
    justify-content: center;
    color: var(--text-color-grey);
    text-transform: capitalize;
    padding: 7px 0;
    position: relative;
}

.sidebar .main .pages .collapse-components .collapse-component .title,
.sidebar .main .pages .collapse-components .single-component .title {
    display: block;
    text-align: center;
}

.sidebar .main .pages .collapse-components .collapse-component .title i,
.sidebar .main .pages .collapse-components .single-component .title i {
    display: inline-block;
    color: rgba(238, 238, 238, 0.7529411765);
}

.sidebar .main .pages .collapse-components .collapse-component .title span,
.sidebar .main .pages .collapse-components .single-component .title span {
    display: block;
    text-align: center;
    width: 100%;
    transition: 0.3s ease-in-out;
    opacity: 0;
}

.sidebar.click .main .pages .collapse-components .single-component .title span {
    opacity: 1;
    padding-left: 10px;
}

.sidebar .main .pages .collapse-components .collapse-component:hover,
.sidebar .main .pages .collapse-components .single-component:hover {
    color: var(--second-color);
}

.sidebar .main .pages .collapse-components .collapse-component:hover i,
.sidebar .main .pages .collapse-components .single-component:hover i {
    color: var(--second-color);
}


.sidebar .main .pages .collapse-components .collapse-component:hover span,
.sidebar .main .pages .collapse-components .single-component:hover span {
    opacity: 1;
}

.sidebar .main .pages .collapse-components .collapse-component:hover.active,
.sidebar .main .pages .collapse-components .single-component:hover.active {
    margin: 0;
}

.sidebar .main .pages .collapse-components .collapse-component {
    display: flex;
    justify-content: space-between;
}

.sidebar .main .pages .collapse-components .collapse-component .collapse-open {
    border: 2px solid rgba(0, 157, 181, 0.2);
    border-radius: 5px;
    width: 20px;
    height: 20px;
    position: relative;
}

.sidebar .main .pages .collapse-components .collapse-component .collapse-open i {
    color: var(--primary-color);
    font-size: 10px;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0s;
}

.single-component.active .title {
    color: var(--second-color) !important;
}

.sidebar .main .pages .collapse-components .collapse-component.collapsed .name {
    color: var(--text-color-grey);
}

.sidebar .main .pages .collapse-components .collapse-component.collapsed .name i {
    color: var(--text-color-grey);
}

.sidebar .main .pages .collapse-components .collapse-component.collapsed .collapse-open i {
    transform: rotate(-90deg) translate(50%, -40%);
}

.sidebar .main .pages .collapse-components .collapsing,
.sidebar .main .pages .collapse-components .collapse {
    position: relative;
}

.sidebar .main .pages .collapse-components .collapsing::before,
.sidebar .main .pages .collapse-components .collapse::before {
    content: "";
    position: absolute;
    height: 95%;
    width: 1px;
    background-color: var(--text-color-grey);
    left: 25px;
    top: -12px;
}

.sidebar .main .pages .collapse-components .collapsing .collapse-menu-component,
.sidebar .main .pages .collapse-components .collapse .collapse-menu-component {
    position: relative;
}

.sidebar .main .pages .collapse-components .collapsing .collapse-menu-component::before,
.sidebar .main .pages .collapse-components .collapse .collapse-menu-component::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1.5px solid;
    border-color: transparent transparent var(--text-color-grey) transparent;
    border-radius: 12px;
    left: -25px;
    top: 3px;
    transform: rotate(45deg);
}

.sidebar .main .pages .collapse-components .active .title {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sidebar .main .pages .collapse-components .active .title i {
    color: var(--primary-color);
}

.sidebar .main .pages .collapse-components .active .title span {
    bottom: -5px;
    opacity: 1;
}

.sidebar.click, .sidebar.hover {
    width: 260px;
}

.sidebar.click .logo img, .sidebar.hover .logo .logo-img {
    display: block;
}

.sidebar.click .acount .profile-pic, .sidebar.hover .acount .profile-pic {
    margin: 0;
}

.sidebar.click .pages, .sidebar.hover .pages {
    padding: 20px;
}

.sidebar.click .pages .main-head-sidebar, .sidebar.hover .pages .main-head-sidebar {
    opacity: 1;
    padding: 5px 10px 5px 20px;
    height: 100%;
}

.sidebar.click .pages .title, .sidebar.hover .pages .title {
    display: flex !important;
    align-items: center;
    margin-bottom: 5px !important;
}

.sidebar.click .pages .title i, .sidebar.hover .pages .title i {
    margin-right: 10px !important;
    margin-bottom: 0;
}

.sidebar.click .pages .single-component, .sidebar.hover .pages .single-component {
    justify-content: start !important;
    padding: 5px 15px !important;
    align-items: center;
}

.content {
    padding-top: 16px;
    padding-left: 120px;
    position: relative;
    height: 100%;
}

.content .btn-custom {
    padding: 10px 5px;
    background-color: #121212;
    color: white;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin: 10px;
}

.content.click {
    padding-left: 270px;
}

.content .nav-pills {
    padding: 0 20px;
    margin: 0 20px;
}

.content .nav-pills button {
    background-color: #eee;
    color: black;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin: 0 10px;
}

.content .nav-pills button.active {
    background-color: white;
    color: #009DB5;
    background-color: rgba(0, 157, 181, 0.11);
}

.content .add-btn {
    padding: 10px 15px;
    background-color: #8BC34A;
    color: white;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin: 10px;
    border: 0;
    position: relative;
}

.content .add-btn i {
    position: absolute;
    color: #8BC34A;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    opacity: 0;
}

.custom-sidebar {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    opacity: 1;
}

.custom-sidebar__panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: transparent;
    z-index: -1;
    width: 0;
    transition: width 0.3s ease;
}

.custom-sidebar__panel .header {
    height: 76px;
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
}

.custom-sidebar__panel .body {
    width: 100%;
    height: 100%;
    background-color: white;
}

.custom-sidebar__close-button {
    width: 35px;
    height: 35px;
    color: red;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.custom-sidebar__overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.32);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: width 0.4s ease;
    -webkit-transition: width 0.4s ease;
    -moz-transition: width 0.4s ease;
    -ms-transition: width 0.4s ease;
    -o-transition: width 0.4s ease;
    opacity: 0;
}

.custom-sidebar.open {
    opacity: 1;
    z-index: 100;
}

.custom-sidebar.open .custom-sidebar__panel {
    z-index: 1000;
}

.custom-sidebar.open .custom-sidebar__overlay {
    width: 100%;
    z-index: 101;
    opacity: 1;
}

.custom-modal {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.custom-modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.32);
}

.custom-modal__content {
    width: 75%;
    height: 75%;
    border-radius: 12px;
    background-color: white;
    padding: 20px;
    position: absolute;
    z-index: -1;
}

.custom-modal__close-button {
    width: 35px;
    height: 35px;
    color: red;
    border-radius: 50%;
    background-color: #eee;
    position: absolute;
    top: -40px;
    right: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.custom-modal.open {
    display: flex;
    z-index: 1111;
    opacity: 1;
}

.custom-modal.open .custom-modal__content {
    z-index: 1114;
}

.custom-modal.open .custom-modal__overlay {
    z-index: 1112;
}

.mobile-view .content {
    padding-left: 0;
}

.mobile-view .content .add-btn {
    position: absolute;
    right: 10px;
    bottom: 30%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #8BC34A;
}

.mobile-view .content .add-btn i {
    opacity: 1;
    color: white;
}

.mobile-view .custom-sidebar__panel {
    bottom: -100%;
    right: 0;
    width: 96% !important;
    height: 100%;
    margin: 0 2%;
    border-radius: 15px 15px 0 0;
    -webkit-border-radius: 15px 15px 0 0;
    -moz-border-radius: 15px 15px 0 0;
    -ms-border-radius: 15px 15px 0 0;
    -o-border-radius: 15px 15px 0 0;
}

.mobile-view .custom-sidebar.open {
    opacity: 1;
}

.mobile-view .custom-sidebar.open .custom-sidebar__panel {
    z-index: 1000;
    bottom: 0;
    top: unset;
    z-index: 100;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    z-index: 1000;
    -o-transition: 0.5s;
}

.mobile-view .custom-sidebar.open .custom-sidebar__overlay {
    width: 100%;
    z-index: 101;
    opacity: 1;
}

.mobile-view .sidebar {
    left: -100%;
}

.mobile-view .sidebar.mobile-open {
    left: 0;
}

.mobile-view .nav-bar {
    padding-left: 0;
}

.mobile-view .nav-bar .user-list {
    left: -90px !important;
}

.footer {
    width: 100%;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    border-top: 1px solid #cfcfcf;
}

@keyframes wave {
    0% {
        background-position-x: 90vw;
    }
    100% {
        background-position-x: 190vw;
    }
}

@keyframes ring {
    0% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        -o-transform: rotate(10deg);
    }
    25% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    50% {
        transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
    }
    75% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    100% {
        transform: rotate(10deg);
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        -o-transform: rotate(10deg);
    }
}

/*# sourceMappingURL=style.css.map */
/* define height vars alongside your width vars */
.offcanvas-25 {
    --bs-offcanvas-width: 25%;
    --bs-offcanvas-height: 25%;
}

.offcanvas-50 {
    --bs-offcanvas-width: 50%;
    --bs-offcanvas-height: 50%;
}

.offcanvas-75 {
    --bs-offcanvas-width: 75%;
    --bs-offcanvas-height: 75%;
}

.offcanvas-100 {
    --bs-offcanvas-width: 100%;
    --bs-offcanvas-height: 100%;
}
.offcanvas-90 {
    --bs-offcanvas-width: calc(100% - 120px);
    --bs-offcanvas-height: 100%;
}

/* on small screens, use height var instead of full width */
@media (max-width: 767.98px) {
    .offcanvas.offcanvas-end {
        width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
    }
}

/* smooth transition when we resize the page content */
.page-content {
    transition: width .3s ease;
    width: 100%; /* default full width */
}

.offcanvas {
    background-color: transparent;
}

.offcanvas-header {
    background-color: rgba(255, 255, 255, 0.9);
    height: var(--navbar-height);
    justify-content: space-between;
}

.offcanvas-header .btn-close {
    color: #fff !important;
    border: 1px solid #0a0a0a;
}

.offcanvas-header .btn-open {
    margin-top: -7px;
    padding-top: 3px;
}

.offcanvas-body {
    background-color: #fff;
}

.custom-modal-style {
    border-radius: 1rem; /* or however big you like */
    overflow: hidden; /* ensures rounded corners clip child elements */
}


.custom-modal-style .modal-content {
    border-radius: 25px;
}

/* if you want to remove *any* residual translate-based sliding, force the dialog to stay put */
.modal.fade .modal-dialog {
    transform: none !important;
    transition: opacity 0.3s ease-out !important;
}

.custom-modal-style .modal-dialog {
    margin-top: 10vh;
}

.min-height .modal-content {
    min-height: 400px;
    height: 500px;
    border: 0;

}

.btn:focus-visible {
    box-shadow: none;
}


.btn-custom-style {
    background-color: transparent;
    border: 0;
    outline: 0;
}


.main-table {
    border-collapse: collapse !important;
    width: 100%;
    overflow: auto;
}


.main-table thead {
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    /*border-top: 1px solid #e5e7eb;*/
    font-size: 13px;
    padding: 0.85rem 0;
}

.main-table thead .form-check .form-check-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.main-table tbody {
    background-color: #fff;
    color: #111827;
    font-size: 12px;
}

.main-table tbody tr {
    padding: 0.7rem 0;
    border-bottom: 1px solid #e5e7eb;
    /*cursor: pointer;*/
    transition: all 0.3s ease-in-out;
}

.main-table tbody tr:hover {
    background-color: #e8e8e8;
}

.main-table td {
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.main-table tbody .action {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    margin: auto;
    transition: all 0.3s ease;
}

.main-table tbody .action:hover {
    background-color: #E2E8F0;
}

.main-table tbody .action .dots-container {
    border-radius: 6px;
    border: 1px solid #E2E8F0;
}


/* fluid columns that can shrink below 120px */
.main-table th,
.main-table td {
    white-space: normal;
    word-wrap: break-word;
}


.main-table th:first-of-type,
.main-table td:first-of-type {
    width: 50px;
    text-align: center;
}

.main-table td:first-child {
    text-align: center !important;
}

.main-table .form-check {
    margin-inline-end: 0.4rem;
}

.main-table .form-check .form-check-input {
    width: 18px;
    height: 18px;
}

.main-table .form-check .form-check-label {
    font-size: 12px;
    color: #111827;
}

.action {
    cursor: pointer;
}

.action span {
    display: inline-flex;
    width: 3px;
    height: 2.8px;
    background-color: #111827;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 0.1rem;
}

.action span:first-of-type {
    transition-delay: 0.1s;
}

.action span:nth-child(2) {
    transition-delay: 0.2s;
}

.action span:last-of-type {
    transition-delay: 0.3s;
}

.action:hover span {
    transform: translateY(-1px) scale(1.3);
    background-color: #111827;
}

.table-action .dropdown-menu {
    line-height: 24px;
    color: #9ca3af;
}

.table-action .dropdown-menu a {
    color: #9ca3af;
}

.table-action .dropdown-menu li:not(:last-of-type) {
    border-bottom: 1px solid #E2E8F0;
}

.table-action .dropdown-menu li {
    transition: all 0.3s ease;
}

.table-action .dropdown-menu li:hover {
    background-color: #E2E8F0;
}

.pagination select {
    border-radius: 10px;
    border: 1px solid #edeff0;
    height: 32px;
    box-shadow: none !important;
    width: 80px;
    margin-inline-start: 0.75rem;
    padding: 0 0.5rem;
}

.pagination .num {
    width: 32px;
    height: 30px;
    border-radius: 10px;
}

.pagination .arrow,
.pagination .num {
    cursor: pointer;
}

.pagination .num.active {
    background-color: #111827;
    color: #fff;
    pointer-events: none;
}

.plus-icon {
    width: 14px;
}


.custom-cards .custom-card {
    position: relative;
    z-index: 10;
    background-color: white;
    padding: 10px;
    border: 1px solid #d4d4d4;
    display: flex;
    justify-content: space-between;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-cards .custom-card .img {
    background-color: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
}

.custom-cards .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 18px;
}

.custom-cards .custom-card .main .text .custom-card-position {
    font-size: 14px;
}

.custom-cards .custom-card .main .text .custom-card-desc {
    font-size: 14px;
}

.custom-cards .custom-card .main .text .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards .custom-card .actions img {
    width: 18px;
    height: 18px;
}

.custom-cards .custom-card .actions .bottom-icons {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 15;
}

.custom-cards-v2 .custom-card {
    background-color: white;
    padding: 10px;
    border: 1px solid #d4d4d4;
    display: flex;
    justify-content: space-between;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-cards-v2 .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
}

.custom-cards-v2 .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 24px;
}

.custom-cards-v2 .custom-card .main .text .custom-card-position {
    color: #707070;
}

.custom-cards-v2 .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v2 .custom-card .main .text .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v2 .custom-card .actions .arrow {
    background-color: #d7dff1;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 5px 7px;
    margin-right: 5px;
}

.custom-cards-v2 .custom-card .actions .arrow img {
    width: 24px;
    height: 24px;
}

.custom-cards-v3 {
    background-color: #eee;
    padding: 40px 10px;
}

.custom-cards-v3 .custom-card {
    background-color: white;
    padding: 10px;
    background-color: white;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-cards-v3 .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 55px;
    height: 55px;
}

.custom-cards-v3 .custom-card .img img {
    width: 100%;
    height: 100%;
}

.custom-cards-v3 .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 24px;
}

.custom-cards-v3 .custom-card .main .text .custom-card-position {
    color: #707070;
}

.custom-cards-v3 .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v3 .custom-card .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v3 .custom-card .actions {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 25px;
}

.custom-cards-v3 .custom-card .actions .arrow {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 107, 0);
    color: white;
    border: 15px solid white;
    bottom: -45px;
}

.custom-cards-v4 .custom-card {
    background-color: white;
    padding: 10px;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-cards-v4 .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
}

.custom-cards-v4 .custom-card .img img {
    width: 100%;
    height: 100%;
}

.custom-cards-v4 .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 24px;
}

.custom-cards-v4 .custom-card .main .text .custom-card-position {
    color: #707070;
}

.custom-cards-v4 .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v4 .custom-card .settings img {
    width: 32px;
    height: 32px;
}

.custom-cards-v4 .custom-card .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v4 .custom-card .actions {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 25px;
}

.custom-cards-v4 .custom-card .actions .arrow {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 107, 0);
    color: white;
    border: 15px solid white;
    bottom: -45px;
}

.custom-cards-v4 .custom-card .info {
    font-size: 14px;
}

.custom-cards-v4 .custom-card .btn-section {
    padding: 5px 30px;
    margin-top: 10px;
}

.custom-cards-v4 .custom-card .btn-section .custom-confirm-btn {
    color: white;
    background-color: #5b81f9;
    border: 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    width: 100%;
    padding: 10px 0;
}

.custom-cards-v5 .custom-card {
    padding: 10px;
    color: white;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    background-color: #2e3f8f;
}

.custom-cards-v5 .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
}

.custom-cards-v5 .custom-card .img img {
    width: 100%;
    height: 100%;
}

.custom-cards-v5 .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 24px;
}

.custom-cards-v5 .custom-card .main .text .custom-card-position {
    color: #707070;
}

.custom-cards-v5 .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v5 .custom-card .settings img {
    width: 32px;
    height: 32px;
}

.custom-cards-v5 .custom-card .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v5 .custom-card .actions {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 25px;
}

.custom-cards-v5 .custom-card .actions .arrow {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 107, 0);
    color: white;
    border: 15px solid white;
    bottom: -45px;
}

.custom-cards-v5 .custom-card .info {
    font-size: 14px;
}

.custom-cards-v5 .custom-card .btn-section {
    padding: 5px 30px;
    margin-top: 10px;
}

.custom-cards-v5 .custom-card .btn-section .custom-confirm-btn {
    color: white;
    background-color: #5b81f9;
    border: 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    width: 100%;
    padding: 10px 0;
}

.custom-cards-v6-modern {
    padding: 50px 0;
}

.custom-cards-v6-modern .custom-card {
    background-color: white;
    /* heavy shadow */
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1),0 4px 6px rgba(0, 0, 0, 0.08); */
    /* light shadow */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
    /* hover shadow */
    /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); */
    /* special 1 */
    /* box-shadow:   */
    /* 0 -2px 6px rgba(255, 255, 255, 0.3), */
    /* 0 6px 20px rgba(0, 0, 0, 0.2); */
    /* special 2 */
    /*box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;*/
    box-shadow: 0 3px 12px 3px #f7f7f7;
    padding: 10px;
    border: 1px solid #d4d4d4;
    display: flex;
    justify-content: space-between;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-cards-v6-modern .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
}

.custom-cards-v6-modern .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 700;
}

.custom-cards-v6-modern .custom-card .main .text .custom-card-position {
    color: #707070;
    font-size: 14px;
}

.custom-cards-v6-modern .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v6-modern .custom-card .main .text .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v6-modern .custom-card .actions img {
    width: 24px;
    height: 24px;
}


}

.search-box .main {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    background-color: white;
}

.search-box .main .col-style {
    padding: 0 10px;
}


.search-box .main .col-style label {
    margin-bottom: 5px;
    font-size: 14px;
}

.search-box .main .col-style .custom-search {
    background-color: purple;
    color: white;
    padding: 8px 10px;
    width: 100%;
    margin: 0;
    margin-top: 28px;
}


.custom-cards-v2 .custom-card {
    padding: 10px;
    border: 1px solid #d4d4d4;
    display: flex;
    justify-content: space-between;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-cards-v2 .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
}

.custom-cards-v2 .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 24px;
}

.custom-cards-v2 .custom-card .main .text .custom-card-position {
    color: #707070;
}

.custom-cards-v2 .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v2 .custom-card .main .text .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v2 .custom-card .actions .arrow {
    background-color: #d7dff1;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 5px 7px;
    margin-right: 5px;
}

.custom-cards-v2 .custom-card .actions .arrow img {
    width: 24px;
    height: 24px;
}

.custom-cards-v3 {
    background-color: #eee;
    padding: 40px 10px;
}

.custom-cards-v3 .custom-card {
    padding: 10px;
    background-color: white;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-cards-v3 .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 55px;
    height: 55px;
}

.custom-cards-v3 .custom-card .img img {
    width: 100%;
    height: 100%;
}

.custom-cards-v3 .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 24px;
}

.custom-cards-v3 .custom-card .main .text .custom-card-position {
    color: #707070;
}

.custom-cards-v3 .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v3 .custom-card .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v3 .custom-card .actions {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 25px;
}

.custom-cards-v3 .custom-card .actions .arrow {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 107, 0);
    color: white;
    border: 15px solid white;
    bottom: -45px;
}

.custom-cards-v4 .custom-card {
    padding: 10px;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.custom-cards-v4 .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
}

.custom-cards-v4 .custom-card .img img {
    width: 100%;
    height: 100%;
}

.custom-cards-v4 .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 24px;
}

.custom-cards-v4 .custom-card .main .text .custom-card-position {
    color: #707070;
}

.custom-cards-v4 .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v4 .custom-card .settings img {
    width: 32px;
    height: 32px;
}

.custom-cards-v4 .custom-card .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v4 .custom-card .actions {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 25px;
}

.custom-cards-v4 .custom-card .actions .arrow {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 107, 0);
    color: white;
    border: 15px solid white;
    bottom: -45px;
}

.custom-cards-v4 .custom-card .info {
    font-size: 14px;
}

.custom-cards-v4 .custom-card .btn-section {
    padding: 5px 30px;
    margin-top: 10px;
}

.custom-cards-v4 .custom-card .btn-section .custom-confirm-btn {
    color: white;
    background-color: #5b81f9;
    border: 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    width: 100%;
    padding: 10px 0;
}

.custom-cards-v5 .custom-card {
    padding: 10px;
    color: white;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    background-color: #2e3f8f;
}

.custom-cards-v5 .custom-card .img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
    width: 45px;
    height: 45px;
}

.custom-cards-v5 .custom-card .img img {
    width: 100%;
    height: 100%;
}

.custom-cards-v5 .custom-card .main .text .custom-card-name {
    margin-bottom: 2px;
    font-size: 24px;
}

.custom-cards-v5 .custom-card .main .text .custom-card-position {
    color: #707070;
}

.custom-cards-v5 .custom-card .main .text .custom-card-desc {
    color: #b3b3b3;
}

.custom-cards-v5 .custom-card .settings img {
    width: 32px;
    height: 32px;
}

.custom-cards-v5 .custom-card .custom-card-tag {
    color: #62946e;
    background-color: #e9fae7;
    padding: 7px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
}

.custom-cards-v5 .custom-card .actions {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 25px;
}

.custom-cards-v5 .custom-card .actions .arrow {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 107, 0);
    color: white;
    border: 15px solid white;
    bottom: -45px;
}

.custom-cards-v5 .custom-card .info {
    font-size: 14px;
}

.custom-cards-v5 .custom-card .btn-section {
    padding: 5px 30px;
    margin-top: 10px;
}

.custom-cards-v5 .custom-card .btn-section .custom-confirm-btn {
    color: white;
    background-color: #5b81f9;
    border: 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    width: 100%;
    padding: 10px 0;
}


.modern-input {
    border: 1px solid #e7e7e7;
    padding: 10px 15px;
    color: #111;
    font-size: 14px;
    width: 100%;
    display: block;
    border-radius: 4px;

}

.custom-card {
    cursor: pointer;
}

.card-actions {
    bottom: 5px;
    right: 5px;
    z-index: 1;
}

.pb-50px {
    padding-bottom: 50px !important;
}

.actions a i {
    font-size: 14px !important;
}

.img.icon {
    background: #8BC34A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.img.icon img {
    width: 60%;
}

.active {

}


.filter-search.card {

}

/* Global Styles */
/*:root {*/
/*    --primary-color: #405189;*/
/*    --secondary-color: #0ab39c;*/
/*    --text-color: #495057;*/
/*    --body-bg: #f3f3f9;*/
/*    --card-bg: #fff;*/
/*}*/

/*body {*/
/*    font-family: 'Inter', sans-serif;*/
/*    background-color: var(--body-bg);*/
/*    min-height: 100vh;*/
/*    position: relative;*/
/*}*/

/* Auth Page Wrapper */
.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--body-bg);
}

.auth-page-content {
    width: 100%;
    padding: 2rem 0;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    border-radius: 0.5rem;
    animation: fadeInUp 0.5s ease-out;
}

/* Form Styles */
.login-form .form-label,
.register-form .form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.login-form .form-control,
.register-form .form-control {
    padding: 0.6rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.login-form .form-control:focus,
.register-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15rem rgba(64, 81, 137, 0.1);
}

.login-form .auth-pass-inputgroup,
.register-form .auth-pass-inputgroup {
    position: relative;
}

.login-form .auth-pass-inputgroup .form-control,
.register-form .auth-pass-inputgroup .form-control {
    padding-right: 3rem;
}

/* Button Styles */
.login-form .btn-primary,
.register-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.login-form .btn-primary:hover,
.register-form .btn-primary:hover {
    background-color: #364574;
    border-color: #364574;
    transform: translateY(-1px);
}

/* Text Styles */
.login-form .text-primary,
.register-form .text-primary {
    color: var(--primary-color) !important;
}

.login-form .text-muted,
.register-form .text-muted {
    color: #878a99 !important;
}

/* Link Styles */
.login-form a,
.register-form a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.login-form a:hover,
.register-form a:hover {
    color: #364574 !important;
}

/* Checkbox Styles */
.login-form .form-check-input:checked,
.register-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.login-form .form-check-label,
.register-form .form-check-label {
    color: var(--text-color);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Elements Animation */
.login-form .form-control,
.register-form .form-control {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.login-form .form-control:nth-child(1),
.register-form .form-control:nth-child(1) {
    animation-delay: 0.1s;
}

.login-form .form-control:nth-child(2),
.register-form .form-control:nth-child(2) {
    animation-delay: 0.2s;
}

.register-form .form-control:nth-child(3) {
    animation-delay: 0.3s;
}

.register-form .form-control:nth-child(4) {
    animation-delay: 0.4s;
}

.register-form .form-control:nth-child(5) {
    animation-delay: 0.5s;
}

/* Registration Form Specific Styles */
.register-form .form-control {
    margin-bottom: 0.5rem;
}

.register-form .auth-pass-inputgroup {
    margin-bottom: 1rem;
}

.register-form .btn-primary {
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auth-page-content {
        padding: 1rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .register-form .form-control {
        font-size: 16px; /* Prevents zoom on mobile */
    }
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    filter: blur(60px);
    opacity: 0.1;
    animation: float 15s infinite;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -200px;
    animation-delay: -5s;
}

.shape3 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 50%;
    animation-delay: -10s;
}

/* Login Container Styles */
.login-container {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.login-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 350px;
    margin: 0 auto;
}

/* Logo Styles */
.logo-container {
    text-align: center;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.2);
    animation: pulse 2s infinite;
}

.logo-circle i {
    font-size: 1.5rem;
    color: white;
}

/* Form Elements Animation */
.custom-form-group {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
    position: relative;
}

.custom-form-group:nth-child(1) {
    animation-delay: 0.2s;
}

.custom-form-group:nth-child(2) {
    animation-delay: 0.4s;
}

/* Hover Effects */
.form-control:hover {
    border-color: #bac8f3;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}


.login-form a::after,
.register-form a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}


/* Custom Checkbox */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Decorative Side Styles */
.decorative-side {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    position: relative;
    overflow: hidden;
}

.decorative-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://source.unsplash.com/random/1920x1080/?business') center/cover;
    opacity: 0.1;
    animation: zoomIn 20s infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.login-form .content, .register-form .content {
    position: relative;
    z-index: 1;
    padding: 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.text-primary-color {
    color: var(--primary-color);
}

/* Hover Effects */
.form-control:hover {
    border-color: #bac8f3;
}

.login-form a, .register-form a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}


/* Custom Checkbox */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cursor-pointer {
    cursor: pointer;
}

.switch-grid-btn {
    color: var(--primary-color);
    transition: .4s all ease-in-out;
}

.switch-grid-btn:hover {
    color: var(--second-color);
}

.switch-grid-btn.active {
    color: var(--second-color);
}

table .actions {
    justify-content: right;
}

table tr th:last-child {
    text-align: right;
}

.actions-title {
    padding-right: 5%;
}

.custom-form-group > .form-control, .custom-form-group > .form-control-plaintext, .custom-form-group > .form-select {
    height: 45px;
    min-height: 45px;

}

.custom-form-group > .form-control, .custom-form-group > .form-control-plaintext, .custom-form-group > label {
    color: #a1a1a1;
    padding: .75rem;
}

.custom-form-group label {
    position: absolute;
}

.custom-form-group > .form-select {
    padding-top: 0;
    padding-bottom: 0;
    color: #a1a1a1;
}

.custom-form-group > .form-control {
    color: #545454;
}

.custom-form-group > .form-select option {
    color: #545454;
}

.custom-form-group > .form-control-plaintext ~ label::after, .custom-form-group > .form-control:focus ~ label::after, .custom-form-group > .form-control:not(:placeholder-shown) ~ label::after, .custom-form-group > .form-select ~ label::after {
    background: transparent;
}

.custom-page .card {
    border-color: transparent;
    background-color: transparent;
}

.card.table-card, .card.search-card {
    padding: 15px;
    background-color: #fff;
}

.card.table-card table {
    border: 0;
}

.search-btn {
    padding-left: 25px;
    padding-right: 25px;
}

.search_label {
    font-size: var(--bs-body-font-size);
}

.accordion-body {
    padding: 0;
    padding-bottom: 15px;
    padding-top: 15px;
}

table th {
    cursor: pointer;
}


.user-card {
    background-color: #fff; /* Light blue background */
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); !* Subtle shadow *!*/
}

.user-card.card {
    border: .5px solid #ddd;
}

.badge-purple {
    background-color: #d1c4e9; /* Light purple */
    color: white;
}

.btn-view-profile {
    background-color: white;
    color: black;
    border: 1px solid #ccc;
}

.btn-view-profile:hover {
    background-color: #f8f9fa; /* Light gray on hover */
}

.custom-card-position {
    font-size: 13px;
}

/* 1. Base reset for all browsers */
select {
    -webkit-appearance: none; /* Chrome, Safari, iOS */
    -moz-appearance: none; /* Firefox */
    appearance: none; /* standard */
    background-color: #2c2c2e; /* macOS Dark Mode background */
    color: #fff; /* light text */
    border: 1px solid #3a3a3c; /* subtle darker border */
    border-radius: 6px;
    padding: 8px 32px 8px 12px; /* room for arrow */
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    outline: none;
    transition: background-color .2s, border-color .2s;
}

/* 2. On focus hover states */
select:hover {
    border-color: #5e5e60;
}

select:focus {
    border-color: #0a84ff; /* macOS Blue highlight */
    box-shadow: 0 0 0 2px rgba(10, 132, 255, .3);
}

/* 3. Pseudo-arrow */
.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 12px;
    width: 0;
    height: 0;
    margin-top: -3px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #8e8e93; /* light gray arrow */
    transition: border-top-color .2s;
}

.select-wrapper:hover::after {
    border-top-color: #c7c7cc;
}

/* 4. Dark-mode media query (optional if your page already in dark mode) */
@media (prefers-color-scheme: dark) {
    select {
        background-color: #2c2c2e;
        color: #fff;
        border-color: #3a3a3c;
    }

    .select-wrapper::after {
        border-top-color: #8e8e93;
    }

    .select-wrapper:hover::after {
        border-top-color: #c7c7cc;
    }
}

.user-list.notify {
    width: 300px !important;
    right: -40px;
}

.custom-form-group>label{
    top: -13px;
    background:#fff;
    padding:0;
    height:auto;
    left: 8px;
    border-radius: 3px;
}
.custom-form-group>.form-control-plaintext~label, .custom-form-group>.form-control:focus~label, .custom-form-group>.form-control:not(:placeholder-shown)~label, .custom-form-group>.form-select~label{
    transform: none;
}
.custom-form-group > .form-control:focus,.custom-form-group > .form-select:focus{
    border-color: #5b81f9;
    box-shadow: none;
}
.custom-form-group>.form-control-plaintext:focus, .custom-form-group>.form-control-plaintext:not(:placeholder-shown), .custom-form-group>.form-control:focus, .custom-form-group>.form-control:not(:placeholder-shown){
    padding-top:10px;
}
.error-message-inline {
    position: absolute;
    top: 0;
    left: 30%;
    transform: translateY(-50%);
    color: #dc3545;
    font-size: 0.75rem;
    /*white-space: nowrap;*/
    pointer-events: none;
    background:#fff;
    width: 65%;
    white-space: normal;    /* allow normal wrapping */
    overflow-wrap: break-word; /* break long words at arbitrary points */
}
.left-bg .error-message-inline {
    background: #fbfbfb;
}

.form-control:disabled,.form-select:disabled,.form-control:focus,.form-select:focus{
    background-color: transparent;
}

.form-control,.form-select{
    background-color: transparent;
    font-size: 12px !important;
}
.custom-form-group{
    z-index: 0;
}
.left-bg{
    background: #fbfbfb;
}

.left-bg .custom-form-group>label {
    background: #fbfbfb;
}

.custom-horizontal-tabs{
    border: 0;
}



.nav-item {
    display: flex;
    justify-content: center;
    position: relative;
    /*margin-bottom: 0.2rem;*/
    margin-bottom: 0;
}
.nav-tabs .nav-link.active:after{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    width: 99%;
    background-color: #fff; /* Active tab underline color */
    z-index:1;
}

.vertical-tabs .nav-tabs .nav-link.active:after{
    content: '';
    position: absolute;
    bottom:0;
    left: -4px;
    right: 0;
    height: 100%;
    width: 5px;
    background-color: #fff; /* Active tab underline color */
    z-index:1;
}


/*.manage-horizontal .nav-tabs .nav-link {*/
/*    color: #6c757d;*/
/*    border: none;*/
/*    border-bottom: 2px solid transparent;*/
/*    padding: 0.5rem 1rem;*/
/*}*/
/*.manage-horizontal .nav-tabs .nav-link.active {*/
/*    color: #0d6efd;*/
/*    background-color: transparent;*/
/*    border-bottom: 2px solid #0d6efd;*/
/*}*/
.nav-tabs .nav-link{
    border-bottom: 1px solid #e9ecef;
    color: #6c757d;
}
.nav-tabs .nav-link.active{
    border-bottom: 1px solid #e9ecef;
    color: #0d6efd;
    border-bottom: 0;

}
/*.manage-horizontal .nav-tabs .nav-link:hover:not(.active) {*/
/*    border-bottom: 2px solid #e9ecef;*/
/*}*/
.manage-horizontal .tab-content {
    /*padding: 1.25rem 0.25rem 0.25rem;*/
    padding:0;
}
.manage-horizontal textarea,.vertical-manage .form-group textarea {
    min-height: 350px !important;

}

.vertical-manage{

}
/* Custom vertical tab styles */
.vertical-tabs .nav-tabs {
    border-bottom: 0;
}

.vertical-tabs .nav-tabs .nav-link {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 0.5rem;
    color: #6c757d;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    text-align: center;
    min-width: 90px;
    font-size: 15px;
    border-left: 0;
}

.vertical-tabs .nav-tabs .nav-link svg {
    margin-bottom: 0.5rem;
    margin-right: 0 !important;
}

.vertical-tabs .nav-tabs .nav-link:hover {
    color: #0d6efd;
}

.vertical-tabs .nav-tabs .nav-link.active {
    color: #0d6efd;
    border-left: 0;
    background-color: #fff;
    border-right: 1px solid #dee2e6;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.prescription-inputs {
    border: 1px solid #ddd;
    min-height: 350px;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 1rem;
}



.analysis-item {
    border: 1px solid #ddd;
    min-height: 350px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.vertical-tabs .custom-form-group > .form-control{
    border-top-right-radius: 0;
}
.vertical-tabs .select2-container--default .select2-search--inline .select2-search__field{
    width:100% !important;
    height:350px !important;
    border-top-right-radius: 0;
}
.vertical-tabs .select2-container--default .select2-selection--multiple{
    border-top-right-radius: 0;
}

.hidden-label {
    visibility: hidden;
}
.pointer-cursor {
    cursor: pointer;
}
.small-text {
    font-size: 12px;
}
.avatar-container {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-img-default {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.patient-name {
    font-size: 13px;
}
.icon-text {
    font-size: 12px;
}
.card-col-1 {
    width: 40%;
}
.card-col-2 {
    width: 25%;
}
.card-col-3 {
    width: 20%;
}
.card-col-4 {
    width: 15%;
}
.search-box{
    border-radius: 10px;
}
.fs-12{
    font-size: 12px;
}
.border-bottom-right-radius-0{
    border-bottom-right-radius: 0 !important;
}

.border-top-right-radius-0{
    border-top-right-radius:  0 !important;
}

.border-radius-y-0{
    border-top-right-radius:  0 !important;
    border-bottom-right-radius:  0 !important;
}
.border-radius-x-top-0{
    border-top-right-radius:  0 !important;
    border-top-left-radius:  0 !important;
}
.custom-horizontal-tabs{
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.sales-details {
    margin-bottom: 25px;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 10px;
    box-shadow: 0px 7.7982px 17.3293px rgba(0, 157, 181, 0.07);
}

.sales-bg
{
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
}


.card .card-header.card-no-border {
    border-bottom: none !important;
}

.title-line .card-header, .title-line .left-line {
    position: relative;
}
.sales-overview {
    position: relative;
    background-image: url(../img/bg-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.sales-overview .common-box {
    padding-left: calc(12px + 73 * (100vw - 1200px) / 720);
    padding-top: 50px;
    padding-bottom: 15px;
    position: relative;
}


.common-box {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.sales-overview .rounded-circle2.warning {
    box-shadow: 0 29.0120677948px 23.2096557617px 0 rgba(249, 155, 13, 0.12);
    border: 1px solid #F99B0D;
}

.sales-overview .rounded-circle2 {
    width: calc(20px + 30 * (100vw - 1200px) / 720);
    height: calc(20px + 30 * (100vw - 1200px) / 720);
    border-radius: 50%;
    box-shadow: inset 0 -5px 0 0 rgba(249, 155, 13, 0.12);
    position: absolute;
    left: 6%;
    bottom: 11%;
}
.sales-overview .rounded-circle2 .sales-icon {
    /*padding: calc(4px + 10 * (100vw - 1200px) / 720);*/
    border-radius: 50%;
    transition: all 0.3s ease;
    text-align: center;
}
.sales-overview .rounded-circle2 svg {
    width: 20px;
    height: 20px;
}
.sales-overview .rounded-circle2 {
    width: calc(20px + 30 * (100vw - 1200px) / 720);
    height: calc(20px + 30 * (100vw - 1200px) / 720);
    border-radius: 50%;
    box-shadow: inset 0px -5px 0px 0px rgba(249, 155, 13, 0.12);
    position: absolute;
    left: 6%;
    bottom: 11%;
}
.sales-overview .rounded-circle2.warning {
    box-shadow: 0px 29.0120677948px 23.2096557617px 0px rgba(249, 155, 13, 0.12);
    border: 1px solid #F99B0D;
}
.sales-overview .common-box {
    padding-left: calc(12px + 73 * (100vw - 1200px) / 720);
    padding-top: 50px;
    padding-bottom: 15px;
    position: relative;
}


.sales-overview .sale-content {
    display: flex
;
    justify-content: space-between;
    align-items: center;
}
.sales-overview h3{
    font-size:18px;
}
.sales-details h2{
    font-size:20px;
}
.f-12{
    font-size: 12px !important;
}


.sales-overview .rounded-circle2.success {
    box-shadow: 0px 29.0120677948px 23.2096557617px 0px rgba(131, 191, 110, 0.12);
    border: 1px solid #83BF6E;
}
.sales-overview .rounded-circle2.primary {
    box-shadow: 0px 29.0120677948px 23.2096557617px 0px rgba(0, 157, 181, 0.12);
    border: 1px solid #009DB5;
}
.sales-overview .rounded-circle2.secondary {
    box-shadow: 0px 29.0120677948px 23.2096557617px 0px rgba(249, 76, 142, 0.12);
    border: 1px solid #F94C8E;
}
/* CSS to center SVG icons in sales widgets */
.sales-overview .rounded-circle2 .sales-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Make sure SVGs fill the space appropriately */
.sales-overview .rounded-circle2 svg {
    width: 20px;
    height: 20px;
}

.notification ul {
    position: relative;
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}
.daily-task.notification ul li{
    gap: 14px;
}

.notification li {
    padding-bottom: 22px;
}

.notification li:before {
    position: absolute;
    content: "";
    border: 1px dashed #7B8298;
    opacity: .3;
    top: 0;
    left: 3px;
    height: 100%;
}
.activity-dot-primary {
    min-width: 8px;
    height: 8px;
    width: 8px;
    background-color: #009db5;
    border-radius: 100%;
    outline: 3px solid rgba(0, 157, 181, .25);
    position: relative;
    z-index: 0;
}

.daily-task .task-content {
    flex: 1;
    border: 1px dashed rgba(106, 113, 133, .4);
    border-radius: 10px;
    padding: 12px;
}

.daily-task h6 {
    margin-bottom: 10px;
}
.daily-task .task-content h6 {
    text-overflow: ellipsis;
    word-break: break-word;
    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
@media (min-width: 1615px) and (max-width: 1920px) {
    .daily-task .task-content h6 {
        max-width: 115px;
    }
}
.daily-task .task-content .f-light {
    display: flex
;
    align-items: center;
    gap: 5px;
}
.f-w-500 {
    font-weight: 500;
}
.f-12 {
    font-size: 12px !important;
}
.f-light {
    color: #7B8298;
}
.daily-task .task-content a {
    margin-left: auto;
}
.title-line .card-header:before, .title-line .left-line:before {
    width: 4px;
    height: 26px;
    top: 8px;
    background: #009DB5;
    position: absolute;
    content: "";
    left: 0;
}
.reminder h2{
    font-size:20px;
}
.activity-dot-success {
    min-width: 8px;
    height: 8px;
    width: 8px;
    background-color: #83bf6e;
    border-radius: 100%;
    outline: 3px solid rgba(131, 191, 110, .25);
    position: relative;
    z-index: 0;
}

.activity-dot-warning {
    min-width: 8px;
    height: 8px;
    width: 8px;
    background-color: #f99b0d;
    border-radius: 100%;
    outline: 3px solid rgba(249, 155, 13, .25);
    position: relative;
    z-index: 0;
}
.card .card-header{
    background-color: #fff;
}
.fs-13{
    font-size: 13px;
}
@media only screen and (max-width: 1366px) {
    .sales-overview .common-box{
        padding-left: 50px;
        padding-bottom: 30px;
        padding-top: 30px;
    }
    .sales-overview .rounded-circle2{
        bottom: 30%;
    }
    .common-box h3{
        margin-bottom:0;
    }
}
/* Notification Dropdown Styles */
.user.noti .user-list {
    width: 300px;
    left: -130px;
    transition: .3s all ease-in-out;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.user.noti .user-list .head {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.user.noti .notification-item {
    padding: 10px 15px;
}

.user.noti .badge-indicator {
    width: 8px;
    height: 8px;
    margin-right: 10px;
}

.user.noti .user-list {
    width: 300px !important;
    left: -130px !important;
}
.user.noti  .user-list .page{
    margin:0 !important;
}
.user.noti .notification-item .name {
    font-size: 13px;
    margin-bottom: 2px;
}

.user.noti .notification-item .time {
    font-size: 11px;
    color: #888;
}

.user.noti .view-all-container {
    padding: 10px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.user.noti .view-all-link {
    display: inline-block;
    font-size: 12px;
}

.section-header-title{
    font-size: 20px;
}
.custom-form-group-sm > .form-control, .custom-form-group-sm > .form-control-plaintext, .custom-form-group-sm > .form-select {
    height: 35px;
    min-height: 35px;
}
.hover-card .card-body{
    background-color: #f9f9f9;
}
.right-clinic-section{
    display: none;
}
.d-transition{
    transition: .3s all ease-in-out;
}


.hover-card .card-body {
    transition: .3s all ease-in-out;
}

.hover-card:hover .card-body {
    background-color: #eaeaea !important;
}

.sorting-border{
    border-color: #4267B2;
}
.hover-card {
    transition: background-color 0.4s ease-in-out;
}

.hover-card:hover {
    background-color: #eaeaea !important;
}

.transition-width {
    transition: width 0.3s ease-in-out;
}

/* Add display flex to the row container to ensure equal heights */
.row-clinic {
    display: flex;
    flex-wrap: wrap;
}
.row-clinic.h-100 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 100%;
}

/* Style for both left and right sections */
.clinic-left-section, .clinic-right-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Make sure the cards inside each sectFion take full height */
.clinic-left-section .card, .clinic-right-section .card {
    flex: 1;
    height: 100%;
}

/* Width transition animation */
.transition-width {
    transition: width 0.3s ease-in-out;
}

/* Helper styles */
.hover-card {
    transition: background-color 0.4s ease-in-out;
}

.hover-card:hover {
    background-color: #eaeaea !important;
}

.card-col-1 {
    flex: 2;
}

.card-col-phone {
    flex: 1;
}

.card-col-domain {
    flex: 2;
}

.card-col-4 {
    flex: 2;
}

.avatar-container {
    width: 40px;
    height: 40px;
}

.avatar-img-default {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.icon-text {
    font-size: 12px;
}


/* Notification Bar Slider Styles */
.notification-bar-container {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #3B5998;
    background: linear-gradient(to right, #3B5998, #4267B2);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

/* Notification count badge styling */
.notification-count {
    position: absolute;
    top: -8px;
    right: 2px;
    background-color: #ff5252;
    color: white;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.notification-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

/*.notification-slide {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*    transition: opacity 0.5s ease, transform 0.5s ease;*/
/*    padding: 0 20px;*/
/*}*/
.notification-slide {
    display: none; /* اخفي الكل */
}
.notification-slide.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 0 20px;
}
.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.notification-inline {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
}

.notification-inline strong {
    font-weight: 600;
    margin-right: 5px;
}

.notification-button {
    padding: 4px 12px;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
    margin-left: 15px;
    white-space: nowrap;
}

.notification-button:hover {
    opacity: 0.9;
    color: white;
}


/* //responsive styles */
@media (max-width: 768px) {


}
/* //responsive styles */
@media (max-width: 991px) {
 .user.noti .user-list{
     width: 250px !important;
 }
    .sales-overview .rounded-circle2 {
        width : 50px !important;
        height:50px !important;
        margin-bottom: -22px;

    }
    .sales-overview .common-box{
        padding-left : 75px;
        padding-top:50px;
        padding-bottom: 15px;
    }
    .rounded-circle2{

    }


}




/* Base styles for all devices */
.table-card {
    background: transparent;
    border: none;
}

.hover-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.avatar-container {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.avatar-img-default {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.icon-text {
    font-size: 12px;
    color: #6c757d;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

/* Mobile layout styles */
.mobile-card-container {
    flex-direction: column;
    width: 100%;
}

.mobile-first-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f3f4;
}

.mobile-second-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.info-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.info-item {
    min-width: fit-content;
}

.actions-container {
    display: flex;
    gap: 3px;
    align-items: center;
}

.action-btn {
    padding: 6px;
    border-radius: 6px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    text-decoration: none;
}

.action-btn:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.status-container .badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
}

.user-name {
    color: #2c3e50;
    font-weight: 600;
}

/* Desktop layout - hide mobile elements, show desktop layout */
@media (min-width: 768px) {
    .mobile-first-row,
    .mobile-second-row {
        display: none;
    }

    .desktop-layout {
        display: flex;
        width: 100%;
    }

    .mobile-card-container {
        flex-direction: row;
    }

    .card-col-1 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .card-col-phone {
        flex: 0 0 15%;
        max-width: 15%;
    }

    .card-col-2 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .card-col-3 {
        flex: 0 0 15%;
        max-width: 15%;
    }

    .card-col-4 {
        flex: 0 0 15%;
        max-width: 15%;
    }
}

/* Tablet layout (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Hide mobile layout on tablet */
    .mobile-first-row,
    .mobile-second-row {
        display: none;
    }

    /* Show desktop layout on tablet */
    .desktop-layout {
        display: flex;
        width: 100%;
    }

    .mobile-card-container {
        flex-direction: row;
    }

    .search-box .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 15px;
    }

    .search-box .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .card-col-1 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .card-col-phone {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .card-col-2 {
        flex: 0 0 35%;
        max-width: 35%;
    }

    .card-col-3 {
        flex: 0 0 15%;
        max-width: 15%;
    }

    .card-col-4 {
        flex: 0 0 auto;
        max-width: auto;
    }

    .hover-card .card-body {
        padding: 12px !important;
    }
}

/* Mobile layout (below 768px) */
@media (max-width: 767px) {
    /* Hide desktop layout on mobile */
    .desktop-layout {
        display: none;
    }

    /* Show mobile layout */
    .mobile-first-row,
    .mobile-second-row {
        display: flex;
    }

    /* Search section responsive */
    .search-box .row > div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .search-box .d-flex.gap-2 {
        justify-content: center;
    }

    .search-box .d-flex.align-items-center.justify-content-end {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Hide column headers on mobile */
    .card.border-0.shadow-none {
        display: none;
    }

    /* Mobile card styling */
    .hover-card {
        margin-bottom: 15px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .hover-card .card-body {
        padding: 16px !important;
    }

    /* Mobile user name styling */
    .user-name {
        font-size: 16px !important;
        color: #2c3e50;
    }

    /* Mobile icon text styling */
    .icon-text {
        font-size: 14px !important;
        color: #495057;
        font-weight: 500;
    }

    /* Mobile action buttons */
    .action-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* Mobile search and filter improvements */
    .form-group.custom-form-group input,
    .form-group.custom-form-group select {
        padding: 7px 16px;
        border-radius: 8px;
        border: 1px solid #e9ecef;
        font-size:12px !important;
    }

    .btn {
        padding: 2px 8px;
        border-radius: 8px;
        font-weight: 500;
    }

    /* Mobile pagination */
    .pagination {
        justify-content: center;
        margin-top: 20px;
    }

    /* Responsive info container for mobile */
    .info-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .actions-container {
        margin-top: 8px;
    }
}

/* Small mobile devices (below 576px) */
@media (max-width: 575px) {
    .search-box {
        padding: 16px 8px !important;
    }

    .container-fluid {
        padding: 0 8px;
    }

    .hover-card {
        margin: 0 8px 12px 8px;
    }

    .hover-card .card-body {
        padding: 12px !important;
    }

    .user-name {
        font-size: 15px !important;
    }

    .avatar-container,
    .avatar-img-default {
        width: 35px;
        height: 35px;
    }

    .actions-container {
        gap: 10px;
    }

    .action-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Smaller text on very small screens */
    .icon-text {
        font-size: 13px !important;
    }

    /* Stack info items vertically on very small screens */
    .mobile-second-row {
        /*flex-direction: column;*/
        align-items: flex-start;
        /*gap: 12px;*/
    }

    .actions-container {
        align-self: flex-end;
        margin-top: 8px;
    }
}

/* Landscape phone orientation */
@media (max-width: 767px) and (orientation: landscape) and (max-height: 500px) {
    .hover-card .card-body {
        padding: 10px !important;
    }

    .mobile-first-row {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .info-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .mobile-second-row {
        flex-direction: row;
        align-items: center;
    }
}


.offcanvas{
    height:100vh !important;
}
.actions-gap a{
    margin-right : 2px;
}
.pe-13px{
    padding-right:12px;
}

.pe-8px{
    padding-right:8px;
}

/*.complain-border-color{*/
/*    border-color: #f0a29d !important;*/
/*}*/
