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

* {
    font-family: "Poppins", sans-serif;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 9px;
}

*::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFF;
    background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#82dfff), to(#82dfff), color-stop(.6, #a7e0f3))
}

:root {
    /* Font Settings */
    --font-family: "Poppins", sans-serif;
    --line-height: 1.5;
    --font-weight: 400;

    /* Font Rendering Settings */
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Default Light Theme Color Variables */
    --primary-text-color: #fff;
    --background-color: #3cc1f1;
    --primary-color: #f05b8c;
    --yellow: #fe9520;
    --green: #09b22d;
    --dark-pink: #832766;
    --dark-secondary: #01627c;
    --border-clr: #82dfff;
    /* direction: rtl; */
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    font-weight: var(--font-weight);
    padding: 0;
    margin: 0;
    min-height: 100%;
    /* Apply the default light theme colors */
    color: var(--primary-text-color);
    /* background-color: var(--background-color); */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.nice-dates-popover {
    max-width: 525px !important;
}

/* login */
.login-img-blk {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-img-blk img {
    width: 50%;
    object-fit: contain;
}

.login-main-blk {
    width: 100%;
    height: 100vh;
    position: relative;
}

.login-logo {
    padding: 30px 0px 0px 40px;
}

.login-form-blk {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40%);
}

.login-form-blk h1 {
    font-size: 33px;
    font-weight: 600;
    color: var(--primary-color);
}

.login-form-blk p {
    font-size: 16px;
    font-weight: 500;
    color: var(--background-color);
    margin-bottom: 0px;
}

.login-form-blk form {
    margin-top: 40px;
}

.login-form-blk form .form-group:not(:last-child) {
    margin-bottom: 25px;
}

.login-form-blk form .form-group label {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0px;
}

.login-form-blk form .form-group input {
    padding: 14px 50px 14px 20px;
    background: transparent;
    border: 1px solid #d9d9d9;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}


.login-form-blk form .form-group input::placeholder {
    color: var(--primary-color);
}

span#eye {
    position: absolute;
    content: "";
    top: 60.4%;
    right: 22px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

span#eye i {
    font-size: 12px;
    color: #000;
}

.flex-blk {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.forgot-password {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.forgot-password-description {
    font-size: 14px;
    display: flex;
    font-weight: 500;
    color: var(--background-color);
    justify-content: center;
    align-items: center;
}

span.check-text {
    font-size: 13px;
    color: #000;
}

span.check-text a {
    color: #000;
    text-decoration: underline;
}

.login-btn-blk {
    text-align: center;
    margin-top: 30px;
}

.login-btn-blk .btn.primary-btn {
    width: 100%;
    font-size: 16px !important;
    font-weight: 500;
    border-radius: 50px;
    border: 0px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 14px;
    background-color: var(--background-color);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.356);
    transition: all .3s ease-in-out;
}

.login-btn-blk .btn.primary-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 24px 0 rgb(16 39 112 / 20%);
}

.login-btn-blk .btn.primary-btn:disabled {
    cursor: not-allowed;
}

.login-btn-blk .btn.primary-btn :hover {
    background: #c1c1c1 !important;
}


/* Login Page CSS End */

/*--  MEDIA QURIES CSS START --*/

@media screen and (min-width: 1800px) {
    .container {
        max-width: calc(100% - 120px);
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
    }

    .main-wrapper {
        margin-left: 0px;
    }

    .login-form-blk {
        width: calc(100% - 30%);
    }

    .login-img-blk img {
        object-position: left;
    }
}

@media screen and (max-width: 576px) {
    .login-logo {
        padding: 25px 0px 0px 25px;
    }

    .login-form-blk {
        width: calc(100% - 15%);
    }

    .login-form-blk h1 {
        font-size: 26px;
    }

    .login-form-blk p {
        font-size: 15px;
    }

    .login-form-blk form {
        margin-top: 50px;
    }

    .form-block input,
    .form-block input::placeholder {
        font-size: 14px;
    }

    .profile-main-wrapper {
        padding: 45px 20px 80px !important;
    }

    span.page-heading {
        font-size: 16px !important;
    }

    .pagination-button-wrapper {
        justify-content: center !important;
    }
}

.popup-wrapper {
    padding: 0px 30px !important;

}

.popup-input {
    width: 100%;
    padding: 12px 20px;
    margin-top: 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 35px;
}

.popup-label {
    display: flex !important;
    align-items: flex-end !important;
    margin-top: 20px !important;
    font-weight: 500 !important;
}

.error {
    font-weight: 400 !important;
    font-size: 13px !important;
    color: red !important;
    margin: 5px;
}

/* login end */
/* sidebar */

a {
    transition: background 0.2s, color 0.2s;
}

a:hover,
a:focus {
    text-decoration: none;
}

#wrapper {
    padding-left: 0;
    /* transition: all 0.5s ease; */
    position: relative;
    height: 100vh;
    background-image: url(../assets/bg-12.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 258px;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--primary-color);
}

.regain_width {
    width: 258px !important;
}

.sidebar_collapse_btn {
    position: absolute;
    content: "";
    top: 5px;
    right: 10px;
    left: auto;
    background: transparent;
    padding: 0;
    border: 0px;
}

html[dir="rtl"] .sidebar_collapse_btn {
    left: 10px;
    right: auto;
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
}

html[dir="rtl"] #sidebar-wrapper {
    right: 0;
    left: auto;

}

html[dir="rtl"] #wrapper {
    padding-right: 250px;
    padding-left: 0;

}

.sidebar-brand {
    /* width: 250px; */
    width: 100%;
    text-align: center;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

/* .sidebar-brand h2 {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
} */

.sidebar-brand img {
    width: 68%;
}

.sidebar-nav {
    position: absolute;
    top: 175px;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav>li {
    text-indent: 10px;
    line-height: 42px;
    padding: 0px 0px 0px 5px;
    margin-bottom: 8px;
    cursor: pointer;
}

.sidebar-nav>li a {
    border-radius: 30px 0px 0px 30px;
    /* padding: 4px 10px; */
    display: block;
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.sidebar-nav>li>a:hover,
.sidebar-nav>li.active>a {
    text-decoration: none;
    color: #fff;
    background: var(--background-color);
}

.sidebar-nav>li>a i {
    font-size: 20px;
    width: 50px;
}

#navbar-wrapper {
    width: 100%;
    position: absolute;
    z-index: 2;
}

#wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
}

#navbar-wrapper .navbar {
    border-width: 0 0 0 0;
    /* background-color: #eee; */
    font-size: 24px;
    margin-bottom: 0;
    border-radius: 0;
}

#navbar-wrapper .navbar a {
    color: #757575;
}

#navbar-wrapper .navbar a:hover {
    color: var(--background-color)
}

#content-wrapper {
    /* width: 100%; */
    position: absolute;
    padding: 15px;
    top: 100px;

}

#wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
}

@media (min-width: 992px) {

    #wrapper {
        padding-left: 250px;
    }

    #wrapper.toggled {
        padding-left: 60px;
    }

    html[dir="rtl"] #wrapper {
        padding-right: 250px;
        padding-left: 0;
    }

    html[dir="rtl"] #wrapper.toggled {
        padding-right: 60px;
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 60px;
    }

    html[dir="rtl"] #wrapper.toggled #sidebar-wrapper {
        margin-right: 0;
        margin-left: 0;
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-left: -190px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #navbar-wrapper {
        margin-right: -190px;
        /* Corrected for RTL */
        margin-left: 0;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-left: -190px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #content-wrapper {
        margin-right: -190px;
        /* Corrected for RTL */
        margin-left: 0;
    }

    #navbar-wrapper {
        position: relative;
    }

    html[dir="rtl"] #navbar-wrapper {
        margin-right: 0;
        margin-left: auto;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-left: 60px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #navbar-wrapper,
    html[dir="rtl"] #wrapper.toggled #content-wrapper {
        margin-right: 60px;
        /* Corrected for RTL */
        margin-left: 0;
    }


}

@media (min-width: 768px) and (max-width: 991px) {

    #wrapper {
        padding-left: 60px;
    }

    html[dir="rtl"] #wrapper {
        padding-right: 60px;
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 60px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled {
        padding-left: 250px;
    }

    html[dir="rtl"] #wrapper.toggled {
        padding-right: 250px;
        padding-left: 0;
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-left: -250px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #navbar-wrapper {
        margin-right: -250px;
        /* Adjusted for RTL */
        margin-left: 0;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-left: -250px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #content-wrapper {
        margin-right: -250px;
        /* Adjusted for RTL */
        margin-left: 0;
    }

    #navbar-wrapper {
        position: relative;
    }

    html[dir="rtl"] #navbar-wrapper {
        margin-right: 0;
        margin-left: auto;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-left: 250px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #navbar-wrapper,
    html[dir="rtl"] #wrapper.toggled #content-wrapper {
        margin-right: 250px;
        /* Adjusted for RTL */
        margin-left: 0;
    }

    .sidebar-brand img {
        width: 50px;
        height: 50px;
    }

    .profile-main-wrapper form {
        width: 100% !important;
    }
}


@media (max-width: 767px) {
    #wrapper {
        padding-left: 0;
    }

    html[dir="rtl"] #wrapper {
        padding-right: 0;
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 0;
        transition: width 0.3s ease;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 250px;
    }

    html[dir="rtl"] #wrapper.toggled #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled #navbar-wrapper {
        position: absolute;
        margin-left: -250px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #navbar-wrapper {
        margin-right: -250px;
        /* Adjusted for RTL */
        margin-left: 0;
    }

    #wrapper.toggled #content-wrapper {
        position: absolute;
        margin-left: -250px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #content-wrapper {
        margin-right: -250px;
        /* Adjusted for RTL */
        margin-left: 0;
    }

    #navbar-wrapper {
        position: relative;
    }

    html[dir="rtl"] #navbar-wrapper {
        margin-right: 0;
        margin-left: auto;
    }

    #content-wrapper {
        position: relative;
        top: 0;
    }

    #wrapper.toggled {
        padding-left: 250px;
    }

    html[dir="rtl"] #wrapper.toggled {
        padding-right: 250px;
        padding-left: 0;
    }

    #wrapper.toggled #navbar-wrapper,
    #wrapper.toggled #content-wrapper {
        position: relative;
        margin-left: 250px;
        /* Adjusted for LTR */
    }

    html[dir="rtl"] #wrapper.toggled #navbar-wrapper,
    html[dir="rtl"] #wrapper.toggled #content-wrapper {
        margin-right: 250px;
        /* Adjusted for RTL */
        margin-left: 0;
    }

    .dashboard-card-wrapper {
        margin-top: 0 !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .dashboard-card {
        width: 100% !important;
    }

    .dashboard-chart-wrapper {
        flex-direction: column !important;
    }

    .chart-container {
        width: 100% !important;
        height: 100% !important;
    }

    .profile-main-wrapper form {
        width: 100% !important;
    }


}

.profile-imgs img {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 1px;
    object-fit: cover;
    cursor: pointer;
}

/* end sidebar */
.dashboard-chart-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* navbar */
span.page-heading {
    font-size: 16px;
}

header {
    padding: 16px 0px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    background: var(--white-clr);
    position: relative;
    z-index: 1;
}

ul.navsbar,
a.nav-link.profile-link {
    position: relative;
}

a.navbar-brand {
    /* color: #fff !important; */
    display: none !important;
}

.navbar-light .navbar-nav .nav-link i {
    color: var(--main-clr) !important;
    font-size: 18px;
}

.navbar-nav li.nav-item:not(:last-child) {
    margin-right: 8px;
}

.navsbar li a.nav-link {
    width: 37px;
    height: 37px;
    background: var(--dark-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.navsbar li a.nav-link.profile-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

header button.opnBtn {
    background-color: var(--primary-color);
    color: #fff;
    border: 0;
    padding: 7px 15px;
    border-radius: 5px;
    z-index: 2;
    display: none !important;
}

/* cards */
.card span {
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    color: #666;
}

.card p.small {
    font-size: 14px;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: var(--background-color);
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    display: flex;
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: var(--font-family);
}

.card1 {
    display: block;
    position: relative;
    background-color: #f2f8f9;
    border-radius: 4px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
}

.card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: var(--background-color);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.dash_card_wrapper:hover .card1:before {
    transform: scale(21);
}

.dash_card_wrapper:hover .card1 span {
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.dash_card_wrapper:hover .card1 h3 {
    transition: all 0.3s ease-out;
    color: #fff;
}

.card-wrapper {
    width: 100%;
    flex-wrap: wrap;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    text-decoration: none;
}

.action-wrapper {
    position: absolute;
    content: "";
    right: -5px;
    top: 16px;
    gap: 18px;
    z-index: 2;
    color: #fff;
    display: none;
}

.action-wrapper i {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.dash_card_wrapper:hover .action-wrapper {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding: 3px 25px;
}

@media (max-width: 1234px) {
    .card-wrapper {
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .card-wrapper {
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    a.navbar-brand {
        display: block !important;
    }


}

@media (max-width: 480px) {
    .card-wrapper {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }

    .search input[type="text"] {
        width: 100%;
    }

    .header-title {
        max-width: 170px;
    }
}

/* end card */

div:where(.swal2-container) .swal2-input {
    height: 2.625em;
    padding: 0 .89em;
    border-radius: 50px;
    color: var(--background-color) !important;
}

/* search */
/* From Uiverse.io by Bodyhc */
.search {
    display: inline-block;
    position: relative;
}

.search input[type="text"] {
    /* width: 250px; */
    padding: 12px 100px 12px 20px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search input[type="text"]:focus {
    outline: none;
}

.search button[type="submit"] {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 0px 50px 50px 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    right: 0;
    transition: .9s ease;
    font-weight: 500;
}

/* search end */
/* commonButton */
.dynamic-button {
    background-color: var(--primary-color);
    /* Default or customizable primary color */
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.dynamic-button:hover::before {
    transform: scale(1);
}

.dynamic-button:hover {
    color: #fff;
    background-color: var(--primary-color);

}

.dynamic-button span {
    position: relative;
}

/* end commonButton */
div:where(.swal2-container) .swal2-html-container {
    padding: 2em 2.6em .3em !important;
}

div:where(.swal2-container) .swal2-input select {
    padding: 1.5em 1em !important;
    border: 1px solid !important;
    outline: none !important;
}

/* profile */
.profile-main-wrapper {
    width: 100%;
    border-radius: 18px;
    background: var(--white-clr);
    box-shadow: 0px 8px 45px 0px rgba(189, 189, 189, 0.25);
    padding: 45px 100px 80px;
}

.profile-img {
    width: 132px;
    height: 132px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 40px !important;
    position: relative;
    cursor: pointer;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

label.profile-img span {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: none;
}

label.profile-img span i {
    font-size: 24px;
    margin-bottom: 5px;
}

.profile-img:hover span {
    display: flex;
}

.profile-details {
    width: 100%;
}

.profile-main-wrapper .form-block input,
.profile-main-wrapper .form-block select,
.change-main-wrapper .form-block input,
.change-main-wrapper .form-block select,
.change-main-wrapper .form-block textarea {
    background-color: transparent !important;
}

.change-main-wrapper label,
.profile-main-wrapper label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

.send-notification textarea {
    padding: 13px 18px;
    width: 100%;
    background: var(--bg--lgt-clr);
    border: 1px solid var(--bg-lgt-clr);
    resize: none;
    border-radius: 8px;
    color: var(--black-clr);
}

.change-psw .form-group:not(:last-child) {
    margin-bottom: 25px;
}

.change-psw .form-mdl-blk {
    padding: 40px;
}

span#eye {
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.change-psw input {
    padding-right: 40px !important;
}

.reset-password {
    color: var(--primary-color) !important;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 2px solid;
    cursor: pointer;
}

.input_fields input,
.form-control {
    color: var(--white-clr) !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 30px !important;
    padding: 0.8em 1.3em !important;
}

.input_fields select,
.form-control {
    padding: 0.8em 1.6em !important;
}

.select-wrapper {
    border: 1px solid var(--primary-color) !important;
    border-radius: 30px !important;
    padding: 0.8em 1.3em !important;
}

.input_fields select {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
}

.profile-input-field {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: var(--white-clr);
    font-weight: 500;
    box-shadow: none !important;
}

.input_fields textarea {
    background: none;
    border-radius: 25px !important;
    padding: 0.8em 1.3em !important;
    border: 1px solid var(--primary-color) !important;

}

.list-group-item {
    border: 1px solid var(--primary-color) !important;
    padding: 13px 20px !important;
    border-radius: 30px !important;
    ;
}

.icon-wrapper {
    width: "1.5rem" !important;
}

.icon {
    width: "1.5rem" !important;
}

/* Profile CSS End */

/* table */
table {
    width: 100%;
}

th,
td {
    white-space: nowrap;
}

.table-blk table thead tr {
    background: var(--primary-color);
    color: #fff;
}

.table-blk table tr th {
    font-size: 16px;
    color: var(--white-clr);
    font-weight: 500;
    padding: 17px 23px;
}

.table-blk table tr td {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding: 10px 23px;
    text-wrap: wrap;
}

.table-blk table tr td a {
    font-size: 16px;
    color: var(--table-txt-clr);
    font-weight: 400;
}

.table-blk table tr th,
.table-blk table tr td,
.table-blk table.dataTable.display tbody td {
    border: 0px;
    box-shadow: none !important;
}

.table-blk table.dataTable.display tbody tr.odd {
    background: var(--bg-lgt-clr) !important;
}

span.table-profile {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

span.table-profileimg {
    width: 29px;
    height: 29px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

span.table-profileimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

span.table-username {
    width: calc(100% - 39px);
    display: inline-block;
}

span.table-status.st-confirmed,
span.table-status.st-active {
    color: var(--green-clr);
    /* background-color: var(--green-clr);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 14px; */
}

span.table-status.st-suspended,
span.table-status.st-decline {
    color: var(--red-clr);
    /* background-color: var(--red-clr);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 14px; */
}

span.table-status.st-pending {
    color: #f1c114;
    /* background-color: #f1c114;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 14px; */
}

span.table-action {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    line-height: 0px;
    cursor: pointer;
}

span.table-check {
    line-height: 0px;
}

.table-check input {
    display: none;
}

.table-check input+label {
    width: 32px;
    height: 16px;
    background: var(--primary-clr);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
}

.table-check input+label::before {
    position: absolute;
    content: "";
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.table-check input:checked+label {
    background: #4d7c79;
}

.table-check input:checked+label::before {
    left: calc(100% - 14px);
}

button.table-trash {
    border: 0px;
    background: transparent;
    padding: 0px;
    line-height: 0px;
    cursor: pointer;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 5px 12px !important;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:not(:last-child) {
    margin-right: 45px;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 0px;
    background: linear-gradient(to bottom, #96b0e5 0%, #082562 100%);
}

div.dataTables_length select {
    background: var(--primary-clr);
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    border-color: var(--primary-clr);
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    border: 0px;
    background: transparent;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover svg path {
    fill: #000 !important;
    fill-opacity: 0.38;
}

.table-blk .dataTables_wrapper .dataTables_paginate .paginate_button:hover svg path {
    fill: #fff !important;
    fill-opacity: 1;
}

.table-span-view {
    text-align: center;
    color: #fff;
    padding: 11px;
    border-radius: 10px;
    font-size: 14px;
    background-color: var(--primary-color);
}

/* end table */
/* pagination */
.pagination-button-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    font-weight: 500;
}

label.row-label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

label.row-label span {
    width: 130px;
    line-height: normal;
}

label.row-label select {
    width: calc(100% - 135px);
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
}

label.row-label select.form-select {
    width: 80px !important;
    min-width: 80px !important;
}


button.pagination-button {
    font-weight: 500;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px;
    background: #fff;
    cursor: pointer;
}

button.pagination-button i {
    font-size: 16px;
}

.form-select {
    border-radius: 50px !important;
    padding: 12px 30px 12px 20px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    width: 100% !important;
    box-shadow: none !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    min-width: 160px !important;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}

.custom-card {
    flex-grow: 1;
    flex-shrink: 1;
    width: 18em;
    min-height: 200px !important;
    border-radius: 1.5em;
    background: linear-gradient(to bottom right, #3cc1f1, rgba(75, 30, 133, 0.01));
    border: 1px solid #82dfff;
    color: #000;
    padding: 1.3em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75em;
    backdrop-filter: blur(10px);
}

.custom-heading {
    font-size: 23px;
    font-weight: 500;
    margin: 0;
}

.custom-text {
    font-size: 16px;
    margin: 0;
}

.custom-button {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.25em 1em;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    background: none;
    color: #000;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease;
}

.custom-button:hover {
    transform: translateY(-0.125em);
}

.custom-icon {
    transition: transform 0.3s ease;
}

.custom-button:hover .custom-icon {
    transform: translateX(10%);
}

/* header tooltip */
/* From Uiverse.io by BishalSaini */
.custom-tooltip-container {
    position: relative;
    display: inline-block;
}

.custom-tooltip-btn {
    margin-top: 9px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-tooltip-btn img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    border: none !important;

}

.custom-tooltip-btn:hover {
    background-color: transparent !important;
    z-index: 2;
}

.custom-tooltip-content {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    width: 200px;
    background: linear-gradient(135deg, #3cc1f1 0%, #00c6ff 100%);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-radius: 15px;
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 4px 8px #01627c;
}

.custom-tooltip-content .selected {
    color: var(--primary-color);
    font-weight: bold;
}

.custom-tooltip-container:hover .custom-tooltip-content {
    visibility: visible;
    z-index: 2;
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.custom-tooltip-text {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* end tooltip */
.chart-container {
    width: 47%;
    height: 47%;
}

.dashboard-card-wrapper {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    margin-top: 10px !important;
    /* width: 100%; */
}

.dashboard-card {
    color: rgb(3, 2, 41);
    background-color: var(--primary-color);
    box-shadow: none;
    font-size: 22px;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    gap: 20px;
    padding: 24px;
    width: 48%;
}

.dashboard-card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.dashboard-card-inner {
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: var(--background-color);
    border-radius: 50%;

}

.dashboard-card-content {
    margin: 0px;
    font-size: 1.375rem;
    line-height: 1.334;
    color: #fff;
    font-weight: 700;
}

.card-description {
    font-size: 14px;
    color: #fff;
    margin: 0px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.city-details-wrapper {
    color: rgb(3, 2, 41);
    min-height: 200px;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: none;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px 36px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.city-details-wrapper h2 {
    font-size: 1.375rem;
    line-height: 1.334;
    color: #fff;
    font-weight: 700;
    margin: 0px;
    letter-spacing: 0.5px;
}

.city-details-wrapper p {
    font-size: 14px;
    color: #fff;
    margin: 0px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.details-card-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10%
}

.details-card-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10%
}

.teacher-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 10px;
    background-color: var(--primary-color);
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

}

.teacher-card span {
    color: #fff !important;
}

.kindergarten-actions {
    color: #fff;
    height: 30px;
    width: 80px;
    border: 0px;
    background-color: var(--primary-color);
    border-radius: 30px;
    z-index: 1;
    font-size: 14px;

}