@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"); 

:root {
    --base-clr: #7367f0;
    --base-rgb: 115, 103, 240;
    --body-clr: #5b626b;
    --light-clr: #8699ad;
    --title-clr: #2a3142;
    --title-rgb: 0, 68, 122;
    --body-bg: #fbfbfb;
    --section-bg: #ffffff;
    --input-bg: #f9f9f9;
    --dark-clr: #2b3a4a;
    --dark-rgb: 17, 43, 60;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --primary-clr: #7367f0;
    --primary-rgb: 115, 103, 240;
    --success-clr: #28a745;
    --success-rgb: 40, 167, 69;
    --secondary-clr: #ededed;
    --secondary-rgb: 237, 237, 237;
    --danger-clr: #dc3545;
    --danger-rgb: 220, 53, 69;
    --warning-clr: #ffc107;
    --warning-rgb: 255, 193, 7;
    --info-clr: #3751ff;
    --info-rgb: 55, 81, 255;
    --border-clr: #e5e5e5;
    --border-light: #e5e5e5;
    --border-light-only: #e5e5e5;
    --border-dark: #302474;
    --border-dark-only: transparent;
    --heading-fonts: "Poppins", sans-serif;
    --body-fonts: "Poppins", sans-serif;
    --shadow:  0 0 6px #ebeef4;
    --card-bg: linear-gradient(118deg, #239df90d, rgb(0 227 150 / 4%));
}

.dark-theme {
    --base-clr: #7367f0;
    --base-rgb: 115, 103, 240;
    --primary-clr: #7367f0;
    --primary-rgb: 115, 103, 240;
    --dark-clr: #2a3142;
    --dark-rgb: 42, 49, 66;
    --title-clr: #ffffff;
    --title-rgb: 255, 255, 255;
    --body-clr: #8699ad;
    --light-clr: #8699ad;
    --border-clr: #3a445b;
    --body-bg: #1f2431;
    --section-bg: #2a3142;
    --card-bg: #2a3142;
    --input-bg: rgba(31, 36, 49, 0.2);
    --shadow:  0 0 6px rgba(84, 82, 82, 0.15);
}

.white-theme {
    --base-clr: #3751ff;
    --base-rgb: 55, 81, 255;
    --body-clr: #536479;
    --light-clr: #8699ad;
    --title-clr: #000000;
    --title-rgb: 0, 68, 122;
    --body-bg: #fbfbfb;
    --section-bg: #ffffff;
    --input-bg: #f9f9f9;
    --dark-clr: #112b3c;
    --dark-rgb: 17, 43, 60;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --primary-clr: #112b3c;
    --primary-rgb: 17, 43, 60;
    --success-clr: #28a745;
    --success-rgb: 40, 167, 69;
    --secondary-clr: #ededed;
    --secondary-rgb: 237, 237, 237;
    --danger-clr: #dc3545;
    --danger-rgb: 220, 53, 69;
    --warning-clr: #ffc107;
    --warning-rgb: 255, 193, 7;
    --info-clr: #3751ff;
    --info-rgb: 55, 81, 255;
    --border-clr: #e5e5e5;
    --border-light: #e5e5e5;
    --border-light-only: #e5e5e5;
    --border-dark: #302474;
    --border-dark-only: transparent;
    --shadow: 0 0 6px #ebeef4;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--body-clr);
    line-height: 26px;
    overflow-x: hidden;
    font-family: var(--body-fonts);
    background: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.2;
    color: var(--title-clr);
    font-family: var(--heading-fonts);
    font-weight: 500;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--title-clr);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--base-clr);
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 28px;
    margin-top: -9px;
}

h3 {
    font-size: 24px;
    margin-top: -8px;
}

h4 {
    font-size: 22px;
    margin-top: -5px;
}

h5 {
    font-size: 20px;
    margin-top: -4px;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    margin-top: -6px;
    font-weight: 500;
}

p {
    margin-top: -9px;
}

p:last-child {
    margin-bottom: -7px !important;
}

@media (min-width: 576px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
        margin-top: -11px;
    }

    h3 {
        font-size: 30px;
        margin-top: -9px;
    }

    h4 {
        font-size: 22px;
        margin-top: -7px;
    }

    h5 {
        font-size: 20px;
        margin-top: -5px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 60px;
        line-height: 73px;
        font-weight: 500;
    }

    h2 {
        font-size: 42px;
        font-weight: 500;
    }

    h3 {
        font-size: 30px;
        margin-top: -9px;
        font-weight: 500;
    }

    h4 {
        font-size: 24px;
        margin-top: -8px;
        font-weight: 500;
    }

    h5 {
        font-size: 22px;
        margin-top: -7px;
    }
}

a {
    display: inline-block;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

label,
button,
select {
    cursor: pointer;
}

input,
textarea {
    width: 100%;
}

.header-wrapper {
    display: flex;
    flex-wrap: wrap;
}

header.active .header-wrapper{
    border-bottom:none!important;
    box-shadow: var(--shadow)!important;
}

.loader::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    content: "";
}

.overlayer,
.overlayer-2 {
    position: fixed;
    inset: 0;
    background: rgba(var(--title-rgb), 0.75);
    z-index: 9;
}

.overlayer:not(.active),
.overlayer-2:not(.active) {
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 1200px) {
    .overlayer {
        display: none;
    }
}

.overlayer-2 {
    z-index: 9999;
}

.dark-theme .overlayer,
.dark-theme .overlayer-2 {
    background: rgba(var(--title-rgb), 0.25);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid var(--base-clr);
    -webkit-text-fill-color: var(--title-clr);
    box-shadow: 0 0 0px 1000px var(--input-bg) inset;
    -webkit-box-shadow: 0 0 0px 1000px var(--input-bg) inset;
    transition: background-color 5000s ease-in-out 0s;
    border-radius: 3px;
}

.swal2-input,
.form--control {
    background: var(--input-bg) !important;
    border: 1px solid var(--border-clr);
    color: var(--title-clr);
    outline: none !important;
    box-shadow: none !important;
    font-size: 14px;
}

.swal2-input:focus,
.form--control:focus {
    color: var(--title-clr);
    border-color: var(--base-clr);
}

.swal2-input::placeholder,
.form--control::placeholder {
    color: var(--body-clr);
}

.swal2-input:-webkit-autofill, .swal2-input:-webkit-autofill:hover, .swal2-input:-webkit-autofill:focus,
.form--control:-webkit-autofill,
.form--control:-webkit-autofill:hover,
.form--control:-webkit-autofill:focus {
    border: 1px solid var(--base-clr) !important;
    -webkit-text-fill-color: var(--title-clr) !important;
    box-shadow: 0 0 0px 1000px var(--input-bg) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--input-bg) inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

input.swal2-input, input.form--control,
select.swal2-input,
select.form--control,
button.swal2-input,
button.form--control {
    height: 45px;
}

@media (max-width: 575px) {
    input.swal2-input, input.form--control,
select.swal2-input,
select.form--control,
button.swal2-input,
button.form--control {
        height: 42px;
    }
}

input.swal2-input[type=number]::-webkit-inner-spin-button, input.swal2-input[type=number]::-webkit-outer-spin-button, input.form--control[type=number]::-webkit-inner-spin-button, input.form--control[type=number]::-webkit-outer-spin-button,
select.swal2-input[type=number]::-webkit-inner-spin-button,
select.swal2-input[type=number]::-webkit-outer-spin-button,
select.form--control[type=number]::-webkit-inner-spin-button,
select.form--control[type=number]::-webkit-outer-spin-button,
button.swal2-input[type=number]::-webkit-inner-spin-button,
button.swal2-input[type=number]::-webkit-outer-spin-button,
button.form--control[type=number]::-webkit-inner-spin-button,
button.form--control[type=number]::-webkit-outer-spin-button {
    display: none;
}

select.form--control {
    -webkit-appearance: button;
}

textarea.form--control {
    height: 150px;
}

select.form--control {
    -webkit-appearance: button;
}

select.form--control:focus {
    background: var(--section-bg);
}

select.form--control option {
    color: var(--dark-clr);
}

.form-label {
    font-family: var(--heading-fonts);
    font-weight: 500;
    text-transform: capitalize;
    color: var(--title-clr);
}

.form-check .form-check-input {
    margin-top: 6px !important;
}

.form-check .form-check-input:checked {
    background-color: var(--base-clr);
    border-color: var(--base-clr);
}

.form-check .form-check-input:focus {
    box-shadow: var(--base-shadow-sm);
}

.edit-icon {
    position: absolute;
    right: 15px;
    top: 10px;
}

@media (max-width: 575px) {
    .edit-icon {
        top: 13px;
        right: 13px;
    }
}

.edit-icon ~ .form--control {
    padding-right: 60px;
}

.position-relative > .form--control {
    padding-right: 50px;
}

.parsley-required {
    color: var(--danger-clr);
}

button[type=submit].btn-md {
    height: 45px;
}

input[switch] {
    display: none;
}

input[switch] + label {
    font-size: 1em;
    line-height: 1;
    width: 56px;
    height: 24px;
    background-color: #ced4da;
    background-image: none;
    border-radius: 2rem;
    padding: 0.16667rem;
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    position: relative;
    transition: all 0.1s ease-in-out;
}

input[switch] + label:before {
    color: #111;
    content: attr(data-off-label);
    display: block;
    font-family: inherit;
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
    position: absolute;
    right: 1px;
    margin: 3px;
    top: -2px;
    text-align: center;
    min-width: 1.66667rem;
    overflow: hidden;
    transition: all 0.1s ease-in-out;
}

input[switch] + label:after {
    content: "";
    position: absolute;
    left: 3px;
    background-color: #e9ecef;
    box-shadow: none;
    border-radius: 2rem;
    height: 20px;
    width: 20px;
    top: 2px;
    transition: all 0.1s ease-in-out;
}

input[switch]:checked + label {
    background-color: var(--primary-clr);
}

input[switch]:checked + label {
    background-color: var(--primary-clr);
}

input[switch]:checked + label:before {
    color: var(--white-clr);
    content: attr(data-on-label);
    right: auto;
    left: 3px;
}

input[switch]:checked + label:after {
    left: 33px;
    background-color: #e9ecef;
}

input[switch=bool] + label {
    background-color: var(--danger-clr);
}

input[switch=bool] + label:before,
input[switch=bool]:checked + label:before,
input[switch=default]:checked + label:before {
    color: var(--white-clr);
}

input[switch=default]:checked + label {
    background-color: #a2a2a2;
}

input[switch=primary]:checked + label {
    background-color: var(--primary-clr);
}

input[switch=success]:checked + label {
    background-color: var(--success-clr);
}

input[switch=info]:checked + label {
    background-color: var(--info-clr);
}

input[switch=warning]:checked + label {
    background-color: var(--warning-clr);
}

input[switch=danger]:checked + label {
    background-color: var(--danger-clr);
}

input[switch=dark]:checked + label {
    background-color: #111;
}

.square-switch {
    margin-right: 7px;
}

.square-switch input[switch] + label,
.square-switch input[switch] + label:after {
    border-radius: 4px;
}

.dropzone {
    min-height: 230px;
    border: 2px dashed var(--border-clr);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dropzone .dz-message {
    font-size: 24px;
}

.dz-error-message {
    display: none !important;
}

.dz-error-mark {
    display: none !important;
}

.fc-ltr .fc-basic-view .fc-day-number {
    text-align: center !important;
    vertical-align: middle;
}

.fc-event.fc-draggable {
    border-radius: 20px;
    padding: 5px 20px;
}

.header-wrapper {
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 0 24px;
    min-height: 60px;
    border-bottom: 1px solid var(--border-clr);
}

.header-wrapper .header-right-icons {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.header-wrapper .header-right-icons img {
    width: 20px;
    aspect-ratio: 1;
    object-fit: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.header-wrapper .header-right-icons .language {
    width: 18px;
    position: relative;
    margin-right: 10px;
}

.header-wrapper .header-right-icons .language img {
    width: 100%;
}

.header-wrapper .header-right-icons .language > a {
    display: flex;
}

.header-wrapper .header-right-icons .language ul {
    display: none;
    position: absolute;
    min-width: 130px;
    right: 0;
    top: 100%;
    background: var(--section-bg);
    border: 1px solid var(--border-clr);
    padding: 10px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.header-wrapper .header-right-icons .language ul li {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.header-wrapper .header-right-icons .language ul li img {
    width: 16px;
}

.header-wrapper .header-right-icons .language ul li span {
    width: calc(100% - 16px);
    padding-left: 5px;
    color: var(--body-clr);
}

.header-wrapper .header-right-icons .language a.active ~ ul {
    display: block;
    animation: zoomIn 0.3s;
    -webkit-animation: zoomIn 0.3s;
    -moz-animation: zoomIn 0.3s;
}

.header-wrapper .header-right-icons .header-icon-link {
    padding: 5px 8px;
    display: block;
    color: var(--title-clr);
}

.header-wrapper .header-right-icons .search-area {
    position: relative;
}

.header-wrapper .header-right-icons .search-area .form-control {
    color: var(--title-clr);
    box-shadow: none !important;
    border-right: none !important;
}

.header-wrapper .header-right-icons .search-area .form-control:focus {
    outline: none;
}

.header-wrapper .header-right-icons .search-area .input-group-text {
    padding: 0;
    width: 45px;
}

.header-wrapper .header-right-icons .search-area .search-form {
    position: relative;
    position: absolute;
    right: 0;
    top: 100%;
    width: 230px;
    display: none;
    animation: zoomIn 0.3s;
    -webkit-animation: zoomIn 0.3s;
    -moz-animation: zoomIn 0.3s;
}

@media (max-width: 575px) {
    .header-wrapper .header-right-icons .search-area .search-form {
        right: -50px;
    }
}

@media (min-width: 768px) {
    .header-wrapper .header-right-icons .search-area .search-form {
        right: calc(100% + 60px);
        top: -6px;
        width: 820px;
    }

    .header-wrapper .header-right-icons .search-area .search-form .form-control {
        height: 50px;
    }
}

@media (min-width: 768px) and (max-width: 1520px) {
    .header-wrapper .header-right-icons .search-area .search-form {
        width: 740px;
    }
}

@media (min-width: 768px) and (max-width: 1440px) {
    .header-wrapper .header-right-icons .search-area .search-form {
        width: 640px;
    }
}

@media (min-width: 768px) and (max-width: 1299px) {
    .header-wrapper .header-right-icons .search-area .search-form {
        width: 540px;
    }
}

@media (min-width: 768px) and (max-width: 885px) {
    .header-wrapper .header-right-icons .search-area .search-form {
        width: 420px;
    }
}

.header-wrapper .header-right-icons .search-area .search-form.active, .header-wrapper .header-right-icons .search-area .search-form:hover {
    display: block;
}

.header-wrapper .header-right-icons .search-area a:focus ~ .search-form {
    display: block;
}

.header-wrapper .header-right-icons .notification-bell {
    font-size: 18px;
}

.header-wrapper .header-right-icons .user {
    position: relative;
    margin-left: 8px;
}

.header-wrapper .header-right-icons .user a {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.header-wrapper .header-right-icons .user a img {
    width: 19px;
}

.header-wrapper .header-right-icons .user a .name {
    width: calc(100% - 19px);
    padding-left: 5px;
    color: var(--body-clr);
}

.header-wrapper .header-right-icons .user a .name::after {
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--title-clr);
    border-top: 1px solid var(--title-clr);
    -webkit-transform: translateY(-2px) rotate(135deg);
    -ms-transform: translateY(-2px) rotate(135deg);
    transform: translateY(-2px) rotate(135deg);
    margin-left: 5px;
}

@media (max-width: 575px) {
    .header-wrapper .header-right-icons .user a .name {
        display: none;
    }
}

.header-wrapper .header-right-icons .user ul {
    display: none;
    position: absolute;
    min-width: 160px;
    right: 0;
    top: 100%;
    background: var(--section-bg);
    border: 1px solid var(--border-clr);
    padding: 10px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.header-wrapper .header-right-icons .user ul li a {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 5px;
}

.header-wrapper .header-right-icons .user ul li a i {
    width: 16px;
    color: var(--base-clr);
}

.header-wrapper .header-right-icons .user ul li a span {
    width: calc(100% - 16px);
    padding-left: 10px;
    color: var(--body-clr);
}

.header-wrapper .header-right-icons .user a.active ~ ul {
    display: block;
    animation: zoomIn 0.3s;
    -webkit-animation: zoomIn 0.3s;
    -moz-animation: zoomIn 0.3s;
}

.header-wrapper .header-right-icons .toggle-mode {
    margin-left: 10px;
    font-size: 20px;
    cursor: pointer;
    color: var(--title-clr);
}

@media (max-width: 1399px) {
    .header-wrapper {
        padding: 8px 20px;
    }
}

.nav-toggle {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 20px;
}

.nav-toggle span {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background-color: var(--title-clr);
    left: 0;
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 52%;
    transform: translateY(-65%);
}

.nav-toggle span:last-child {
    bottom: 0;
}

.nav-toggle.active span:first-child {
    -webkit-transform: rotate(45deg) translate(3px, 9px);
    -ms-transform: rotate(45deg) translate(3px, 9px);
    transform: rotate(45deg) translate(3px, 9px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -9px);
    -ms-transform: rotate(-45deg) translate(3px, -9px);
    transform: rotate(-45deg) translate(3px, -9px);
}

header {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--section-bg);
    z-index: 99;
    width: 100%;
}

header.active {
    position: fixed;
    top: 0;
    animation: fadeInDown 0.5s;
    -webkit-animation: fadeInDown 0.5s;
    -moz-animation: fadeInDown 0.5s;
}

@media (min-width: 1200px) {
    header.active {
        right: 24px;
        width: calc(100% - 278px);
    }

    header.active.fixed-width {
        width: calc(100% - 138px);
    }
}

.header-top-wrapper {
    position: relative;
}

.user-panel-sidebar {
    background: var(--section-bg);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    color: var(--body-clr);
    overflow-y: auto;
    width: 100%;
    max-width: 230px;
}

.user-panel-sidebar:not(.active) {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.user-panel-sidebar .author {
    text-align: center;
    padding: 25px 15px 25px;
}

.user-panel-sidebar .author img {
    width: 100%;
    height: 45px;
    margin-bottom: 14px;
    object-fit: contain;
    object-position: center;
}

.user-panel-sidebar .author .designation {
    font-size: 13px;
    margin-top: 5px;
}

.user-panel-sidebar .author .name {
    font-size: 15px;
    color: var(--title-clr);
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .user-panel-sidebar {
        transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
        padding-bottom: 30px;
    }
}

.user-panel-sidebar .collapsed-icon {
    display: none;
    font-size: 17px;
}

@media (min-width: 1200px) {
    .user-panel-sidebar {
        position: sticky;
        -webkit-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
        transform: translateX(0) !important;
    }

    .user-panel-sidebar.active {
        width: 90px;
    }

    .user-panel-sidebar.active .author {
        padding: 17px 5px;
        border-bottom: 1px solid var(--border-clr);
    }

    .user-panel-sidebar.active .author img {
        width: 50px;
        margin-bottom: 0;
    }

    .user-panel-sidebar.active .author .designation,
.user-panel-sidebar.active .author .name {
        display: none;
    }

    .user-panel-sidebar.active .nav-menu li a {
        padding: 5px 15px;
        text-align: center;
        height: 50px;
        line-height: 42px;
    }

    .user-panel-sidebar.active .nav-menu li a span {
        display: none;
    }

    .user-panel-sidebar.active .nav-menu li a.collapsed-icon {
        display: block;
    }

    .user-panel-sidebar.active .nav-menu li a:not(.collapsed-icon) {
        display: none;
    }

    .user-panel-sidebar.active .nav-menu li .subtitle {
        padding-left: 2px;
    }
}

.user-panel {
    background: var(--body-bg);
}

.nav-menu li a {
    padding: 8px 40px 8px 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--body-clr);
    display: block;
    margin-bottom: 2px;
}

.nav-menu li a:hover {
    background: rgba(var(--white-rgb), 0.05);
    color: var(--title-clr);
}

.nav-menu li a i {
    margin-right: 5px;
    width: 25px;
    text-align: center;
}

.nav-menu li ul {
    padding: 5px 0;
    padding-left: 0px;
    background: rgba(var(--white-rgb), 0.03);
    display: none;
    
}

.nav-menu li ul li a {
    font-size: 13px;
    padding: 7px 30px;
    font-family: var(--body-fonts);
}

.nav-menu li ul li a:hover {
    background: rgba(var(--white-rgb), 0.05);
}


.nav-menu li ul li.active > a {
    color: var(--base-clr);
    background: transparent;
}

.nav-menu li.open > a {
    background: var(--primary-clr)!important;
    color: var(--white-clr)!important;
}

.nav-menu li.active > a {
    background: rgba(var(--white-rgb), 0.05);
    color: var(--title-clr);
}

.nav-menu li.active ul {
    display: block;
}

.nav-menu li.parent-menu > a {
    align-items: center;
}

.nav-menu li.parent-menu > a::after {
    display: inline-block;
    content: ">";
    font-family: 'Poppins';
    font-weight: 600;
    width: 18px;
    height: 18px;
    line-height: 17px;
    margin-left: 5px;
    margin-left: auto;
    transition: all ease 0.3s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
    border: 1px solid rgba(var(--white-rgb), 0.1);
    margin-left: auto;
    margin-right: -15px;
}

.nav-menu li.parent-menu > a:not(.collapsed-icon) {
    display: flex;
}

.nav-menu li.parent-menu.open > a::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.nav-menu .subtitle {
    color: var(--title-clr);
    margin-bottom: 15px;
    padding-left: 15px;
    font-size: 12px;
}

@media (min-width: 1200px) {
    .nav-menu {
        padding-bottom: 50px;
    }
}

html:not(.dark-theme) .user-panel-sidebar {
    background: white;
    box-shadow: var(--shadow);
}

html:not(.dark-theme) .fc-event {
    background: var(--base-clr) !important;
    border-color: var(--base-clr) !important;
}

html:not(.dark-theme) .author {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

html:not(.dark-theme) .nav-menu li a {
    color: var(--dark-clr);
}

html:not(.dark-theme) .nav-menu li a:hover {
    background: rgba(var(--white-rgb), 0.05);
}

html:not(.dark-theme) .nav-menu li .subtitle {
    color: #fff;
}

.sidebar-close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    color: var(--danger-clr);
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.theme-settings {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 10000;
    width: 100%;
    max-width: 290px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease-in;
}

.theme-settings:not(.active) {
    transform: translateX(101%);
}

@media (min-width: 1200px) {
    .theme-settings {
        position: fixed;
        order: 2;
        transition: all ease 1s;
    }

    .theme-settings:not(.active) {
        transform: translateX(0);
        width: 0;
    }
}

.theme-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.theme-toggle .checkmark {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid var(--border-clr);
    display: block;
    align-items: center;
}

.theme-toggle .label {
    width: calc(100% - 14px);
    padding-left: 5px;
}

.theme-toggle.active {
    position: relative;
}

.theme-toggle.active::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 9;
}

.theme-toggle.active .checkmark {
    border-color: var(--base-clr);
    background: var(--base-clr);
}

.set-primary-clr {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.set-primary-clr span {
    margin: 5px;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white-clr);
    border: 1px solid var(--border-clr);
}

.set-primary-clr span i {
    display: none;
}

.set-primary-clr span.active i {
    display: block;
}

html.dark-theme .theme-toggle-dark {
    position: relative;
}

html.dark-theme .theme-toggle-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 9;
}

html.dark-theme .theme-toggle-dark .checkmark {
    border-color: var(--base-clr);
    background: var(--base-clr);
}

html:not(.dark-theme) .theme-toggle-light {
    position: relative;
}

html:not(.dark-theme) .theme-toggle-light::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 9;
}

html:not(.dark-theme) .theme-toggle-light .checkmark {
    border-color: var(--base-clr);
    background: var(--base-clr);
}

.cog-btn {
    width: 40px;
    aspect-ratio: 1;
    position: fixed;
    bottom: 50%;
    right: 0;
    z-index: 99;
    background: var(--primary-clr);
    color: var(--white-clr);
    -webkit-border-radius: 50% 0 0 50%;
    -moz-border-radius: 50% 0 0 50%;
    border-radius: 50% 0 0 50%;
    cursor: pointer;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.cog-btn i {
    animation: rotate 3s linear infinite;
    top: 50%;
    left: 50%;
    position: absolute;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 1400px) {
    .modal-md {
        max-width: 720px;
    }
}

.pagination {
    margin: -3px;
    margin-top: 27px;
    justify-content: flex-end;
}

.pagination .page-item {
    text-align: center;
    padding: 3px;
}

.pagination .page-item a,
.pagination .page-item span {
    min-width: 35px;
    padding: 0 10px;
    height: 35px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: var(--title-clr);
    padding: 0;
    line-height: 35px;
    display: block;
    margin: 0;
    border: 1px solid rgba(var(--title-rgb), 0.2);
    background: transparent;
}

.pagination .page-item.active span,
.pagination .page-item.active a, .pagination .page-item:hover span,
.pagination .page-item:hover a {
    background: var(--base-clr);
    color: var(--white-clr);
    border: 1px solid rgba(var(--title-rgb), 0.2);
}

.pagination .page-item.disabled span,
.pagination .page-item.disabled a {
    background: rgba(var(--title-rgb), 0.1);
    border: none;
    color: var(--title-clr);
}

.pagination.size-lg .page-item a,
.pagination.size-lg .page-item span {
    height: 45px;
    min-width: 45px;
    line-height: 45px;
    padding: 0 15px;
}

.pagination.rounded-pagination .page-item a,
.pagination.rounded-pagination .page-item span {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.card-link {
    color: var(--base-clr);
}

.auth-content {
    max-width: 524px;
    background: var(--section-bg);
    box-shadow: var(--shadow);
    padding: 64px 46px;
}

@media (max-width: 575px) {
    .auth-content {
        padding: 45px 30px;
    }
}

@media screen and (max-width: 374px) {
    .auth-content {
        padding: 40px 20px;
    }
}

.auth-content .title {
    margin-bottom: 25px;
}

.auth-content .or {
    margin-bottom: 15px;
    position: relative;
}

.auth-content .or::after {
    position: absolute;
    height: 1px;
    width: 80%;
    content: "";
    background: var(--border-clr);
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
}

.auth-content .or span {
    background: var(--section-bg);
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.auth-content a {
    color: var(--base-clr);
}

.auth-section {
    padding: 45px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

@media (max-width: 575px) {
    .auth-section {
        padding: 30px 15px;
    }
}

.other-auth-options {
    display: flex;
    flex-wrap: wrap;
}

.other-auth-options li {
    padding: 5px 15px;
    flex-grow: 1;
    text-align: center;
}

@media (min-width: 576px) {
    .other-auth-options li {
        max-width: 50%;
    }
}

.other-auth-options li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 0 20px;
    line-height: 24px;
    color: var(--white-clr);
    background: var(--base-clr);
    border-radius: 3px;
}

.other-auth-options li a i {
    margin-right: 5px;
}

.other-auth-options li a.facebook {
    background: #3b5998;
}

.other-auth-options li a.google {
    background: #dd4b39;
}

.other-auth-options li a.twitter {
    background: #55acee;
}

.other-auth-options li a.instagram {
    background: #e4405f;
}

.other-auth-options li a.youtube {
    background: #cd201f;
}

.other-auth-options li a.pinterest {
    background: #007bb5;
}

.other-auth-options li a.skype {
    background: #2fb7df;
}

.login-toggle-mode {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.user-panel {
    display: flex;
}

.user-panel-body {
    width: 100px;
    flex-grow: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.user-panel .user-panel-wrapper {
    padding: 0 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1399px) {
    .user-panel .user-panel-wrapper {
        padding: 0 20px 30px;
    }
}

.user-panel .user-panel-wrapper .user-panel-content {
    width: 100%;
    margin: auto;
}

.user-panel .header-top-wrapper {
    margin: 0 24px 24px;
    background: var(--section-bg);
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    box-shadow: var(--shadow);
}

.user-panel .header-top-wrapper .breadcrumb-area {
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 1399px) {
    .user-panel .header-top-wrapper {
        margin: 0 20px 30px;
    }

    .user-panel .header-top-wrapper .breadcrumb-area {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.breadcrumb-area {
    width: 100%;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.breadcrumb-area .breadcrumb {
    padding: 0;
    margin: 0;
    align-items: center;
}

.breadcrumb-area li {
    color: var(--base-clr);
    font-size: 15px;
    line-height: 1.2;
}

.breadcrumb-area li a {
    color: var(--title-clr);
    font-weight: 500;
    font-size: 15px;
}

.breadcrumb-area li:not(:last-child) {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-area li:not(:last-child)::after {
    display: inline-block;
    content: "";
    width: 8px;
    height: 1px;
    background: var(--title-clr);
    margin: 0 8px;
}

.calendar-card {
    padding: 60px 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    background: var(--section-bg);
}

.calendar-card * {
    border-color: var(--border-clr) !important;
}

.user-panel-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    min-height: 65px; 

    background: var(--section-bg);
    box-shadow: var(--shadow);
    border: none;

}

@media (min-width: 992px) {
    .user-panel-footer {
        justify-content: space-between;
        padding: 15px 55px;
    }
}

@media (max-width: 1199px) {
    .user-panel-footer {
        padding: 5px 20px;
    }
}

.user-panel-footer .copyright {
    padding: 5px 0;
}

.user-panel-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
}

.user-panel-footer-links li a {
    color: var(--title-clr);
    line-height: 1.2;
    display: block;
}

.user-panel-footer-links li:not(:last-child) {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid var(--border-clr);
}

.error-content {
    text-align: center;
    max-width: 377px;
    margin: 0 auto;
}

.error-content .title {
    margin-bottom: 20px;
}

.error-content .subtitle {
    font-weight: 400;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .error-content .title {
        font-size: 65px;
        line-height: 76.17px;
    }
}

.error-content .btn {
    width: 100%;
    line-height: 40px;
}

.table {
    font-size: 13px;
    color: var(--body-clr);
    margin: 0;
    border-left: 1px solid var(--border-clr);
    border-right: 1px solid var(--border-clr);
    text-align: center;
}

.table * {
    border-color: var(--border-clr);
    color: var(--body-clr);
}

@media (min-width: 1200px) {
    .table .badge {
        min-width: 70px;
    }
}

.table thead {
    background: var(--base-clr-2);
    margin-left: -1px;
    margin-right: -1px;
}

.table thead th {
    padding: 15px 15px;
    border: none;
    border-top: 1px solid var(--border-clr);
    color: var(--title-clr);
    font-family: var(--heading-fonts);
    font-weight: 500;
}

.table tbody tr td {
    padding: 15px 15px;
    vertical-align: middle;
}

.table.table-sm tbody tr td {
    padding: 8px 15px;
}

.invoice-table .table tr th,
.invoice-table .table tr td {
    padding: 14px;
}

@media screen and (max-width: 767px) {
    .table-nowrap {
        min-width: 700px;
    }
}

.action-btn {
    width: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--body-clr);
}

.action-btn:hover {
    color: var(--base-clr);
}

@media (max-width: 991px) {
    .table-responsive {
        padding-right: 5px;
    }

    .table-responsive:not(.no--scroll) {
        max-height: 70vh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .table-responsive:not(.no--scroll)::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(var(--title-rgb), 0.3);
        width: 4px;
    }

    .table-responsive:not(.no--scroll)::-webkit-scrollbar {
        width: 4px;
    }

    .table-responsive:not(.no--scroll)::-webkit-scrollbar-thumb {
        background-color: var(--base-clr);
        outline: 1px solid var(--base-clr);
        width: 4px;
    }

    .table-responsive .table {
        width: 100%;
        color: var(--body-clr);
        border-left: 1px solid var(--border-clr);
        border-right: 1px solid var(--border-clr);
        border-top: 1px solid var(--border-clr);
        text-align: left;
    }

    .table-responsive .table thead {
        display: none;
    }

    .table-responsive .table tbody tr {
        display: block;
        border-bottom: 1px solid var(--border-clr);
        padding: 10px 15px;
    }

    .table-responsive .table tbody tr td {
        /* display: flex; */
        justify-content: space-between;
        align-items: center;
        border: none;
        padding: 3px 0;
        box-shadow: none !important;
    }

    .table-responsive .table tbody tr td::before {
        content: attr(data-title);
        font-family: var(--heading-fonts);
        font-weight: 500;
        color: var(--title-clr);
    }

    .table-responsive .table tbody tr:nth-child(even) {
        background: var(--body-bg) !important;
    }
}

.dashboard--widget {
 
    border:1px solid #eff0f2; 
    padding: 30px;
    background: var(--section-bg);
    -webkit-border-radius: .5rem;
    -moz-border-radius:.5rem;
    border-radius: .5rem;
    box-shadow: var(--shadow);
}

.dark-theme .dashboard--widget{
    border:none !important;
}

@media (max-width: 767px) {
    .dashboard--widget {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .dashboard--widget {
        padding: 15px;
    }
}

.dashboard--widget:not(:last-child) {
    margin-bottom: 24px;
}

.badge {
    text-transform: capitalize;
    font-family: var(--heading-fonts);
    font-weight: 500;
}

.submit-btn {
    min-width: 200px;
}

.header-wrapper .header-right-icons .search-area .form-control {
    background: var(--section-bg);
    border-color: var(--border-clr);
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.chart .apexcharts-canvas .apexcharts-yaxis-title *,
.chart .apexcharts-canvas .apexcharts-xaxis-texts-g * {
    fill: var(--body-clr) !important;
}

.chart .apexcharts-canvas .apexcharts-text tspan {
    fill: var(--body-clr) !important;
}

.chart .apexcharts-canvas .apexcharts-title-text {
    fill: var(--title-clr);
    font-size: 20px;
    font-family: var(--heading-fonts) !important;
    letter-spacing: 1px;
    font-weight: 500;
}

.chart .apexcharts-canvas line {
    stroke: var(--border-clr);
}

.chart .apexcharts-canvas #SvgjsG1170 path {
    fill: var(--body-clr);
}

.chart .apexcharts-canvas .apexcharts-legend-text {
    color: var(--title-clr) !important;
}

.pie-chart path {
    stroke: var(--border-clr) !important;
}

.modal-header {
    border-color: var(--border-clr);
}

.modal-header .modal-title {
    margin: 0;
}

.modal-footer {
    border-color: var(--border-clr);
}

.modal-body {
    padding: 30px 20px;
    border-color: var(--border-clr);
}

.modal-body p {
    margin: 0;
}

.modal-body p:not(:last-child) {
    margin-bottom: 20px;
}

.modal-content {
    background: var(--section-bg);
}

.modal .btn-close {
    background-color: var(--white-clr);
}

/*Accordions*/
.accordion-item {
    border: none;
    background: transparent;
}

.accordion-item .accordion-title {
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--border-clr);
    display: flex;
    justify-content: space-between;
}

.accordion-item .accordion-title .title {
    margin: 0;
    font-size: 18px;
    width: calc(100% - 15px);
}

.accordion-item .accordion-title .right-icon {
    width: 14px;
    height: 14px;
    display: block;
    border-right: 2px solid var(--title-clr);
    border-bottom: 2px solid var(--title-clr);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.accordion-item .accordion-content {
    padding: 20px 0;
    display: none;
}

.accordion-item .accordion-content p {
    margin: 0;
}

.accordion-item .accordion-content p:not(:last-child) {
    margin-bottom: 20px;
}

.accordion-item.open .accordion-title .title {
    color: var(--base-clr);
}

.accordion-item.open .accordion-title .right-icon {
    -webkit-transform: translateY(5px) rotate(-135deg);
    -ms-transform: translateY(5px) rotate(-135deg);
    transform: translateY(5px) rotate(-135deg);
}

.accordion-item.active .accordion-content {
    display: block;
}

.tab-content {
    padding: 25px 0;
}

.tab-content p {
    margin: 0;
}

.tab-content p:not(:last-child) {
    margin-bottom: 20px;
}

.nav-tabs {
    border-color: var(--border-clr);
}

.nav-tabs .nav-link {
    color: var(--title-clr);
    padding: 8px 20px;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
    background: var(--section-bg);
    border-color: var(--border-clr);
    border-bottom-color: transparent;
    color: var(--base-clr);
}
 

.card {
    box-shadow: var(--shadow); 
    border:1px solid #eff0f2;
    -webkit-border-radius: 5px;
    -moz-border-radius: .5rem;
    border-radius: .5rem;
}

.dark-theme .card{
    background: var(--dark-clr)!important;
    border: none!important;
}
.card-header {
    background: transparent;
    padding: 20px;
    border-bottom: 1px solid var(--border-clr);
}

.card-header .card-title {
    font-weight: 500;
    color: var(--title-clr);
    margin: 0;
}

.card-footer {
    background: transparent;
    padding: 20px;
    border-top: 1px solid var(--border-clr);
}

@media (min-width: 1200px) {
    .card-footer .btn {
        min-width: 150px;
    }
}

.card-body {
    padding: 20px;
}

.card-body .card-title {
    margin: 0;
}

.card-body .subtitle {
    max-width: 264px;
}

.card-body p {
    margin: 0;
}

.card-body p:not(:last-child) {
    margin-bottom: 20px;
}

.user--profile {
    display: flex;
    align-items: center;
    position: relative;
}

.user--profile .thumb {
    width: 120px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.user--profile .thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.user--profile .content {
    padding-left: 30px;
}

.user--profile .content .title {
    margin: 0;
}

@media (max-width: 767px) {
    .user--profile .content .title {
        font-size: 22px;
        line-height: 1.3;
    }
}

@media (max-width: 575px) {
    .user--profile {
        flex-wrap: wrap;
    }

    .user--profile .thumb {
        width: 100%;
        height: unset;
        max-width: 300px;
        margin: 0 auto;
    }

    .user--profile .content {
        width: 100%;
        padding: 20px 0 0;
        text-align: center;
    }
}

.remove-thumb {
    position: absolute;
    text-align: center;
    color: var(--danger-clr);
    z-index: 1;
    width: 30px;
    height: 30px;
    line-height: 30px;
    left: 10px;
    top: 10px;
    display: none;
}

.invoice-btn-grp {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: -9px;
}

.invoice-btn-grp .btn {
    font-weight: 500;
    margin: 9px;
    text-transform: capitalize;
}

.invoice-btn-grp .btn.btn-lg {
    min-width: 130px;
}

@media (min-width: 576px) {
    .invoice-btn-grp .btn.btn-lg {
        min-width: 150px;
    }
}

@media (max-width: 767px) {
    .invoice-btn-grp {
        margin: -4px;
    }

    .invoice-btn-grp .btn {
        margin: 4px;
        width: calc(50% - 8px);
        padding-left: 5px !important;
        padding-right: 5px !important;
        flex-grow: 1;
        min-width: 0;
    }
}

.dashboard-card { 
    text-transform: uppercase;
    box-shadow: 0 0 6px #ebeef4;
    border:1px solid #eff0f2;
    -webkit-border-radius: 5px;
    -moz-border-radius: .5rem;
    border-radius: .5rem; 
    background: white;
    overflow: hidden;
    position: relative;
}
.dark-theme .dashboard-card { 
    background:var(--dark-clr)!important;
    border: none!important;
}

.dashboard-card > * {
    position: relative;
    z-index: 1;
}

.dashboard-card .card-header {
    border: none;
    padding-bottom: 0;
    padding-top: 18px;
    font-size: 14px;
    z-index: 9;
}

.dashboard-card .card-header .info {
    opacity: 1;
    color: var(--title-clr);
}

.dashboard-card .card-header .details-action {
    position: relative;
}

.dashboard-card .card-header .details-action a {
    color: var(--title-clr);
    font-size: 18px;
}

.dashboard-card .card-header .details-action ul {
    display: none;
    position: absolute;
    min-width: 130px;
    right: -10px;
    top: 100%;
    background: var(--body-bg);
    border: 1px solid var(--border-clr);
    padding: 10px 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 9;
}

.dashboard-card .card-header .details-action ul li a {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.dashboard-card .card-header .details-action ul li a i {
    width: 16px;
    color: var(--base-clr);
}

.dashboard-card .card-header .details-action ul li a span {
    width: calc(100% - 16px);
    padding-left: 10px;
    color: var(--body-clr);
}

.dashboard-card .card-header .details-action a:focus ~ ul,
.dashboard-card .card-header .details-action ul:hover {
    display: block;
    animation: zoomIn 0.3s;
    -webkit-animation: zoomIn 0.3s;
    -moz-animation: zoomIn 0.3s;
}

.dashboard-card .card-body {
    padding-top: 15px;
    padding-bottom: 15px;
}

.dashboard-card .card-body .title {
    font-size: 50px;
}

.dashboard-card .card-body .info {
    font-size: 14px;
    display: block;
    margin-top: -6px;
}

.dashboard-card .card-body small {
    font-size: 11px;
    display: block;
    color: var(--body-clr);
}

.dashboard-card::before {
    /* content: "";
    position: absolute;
    inset: 10px 0 0; */
    /* background: url(./images/shapes.png) no-repeat top center/100% 100%; */
    /* opacity: 0.061; */
}

.todays-trend-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.todays-trend-chart .chart-area {
    width: 100px;
    flex-grow: 1;
}

.todays-trend-chart .trend-chart-right {
    width: 100%;
}

@media (min-width: 992px) {
    .todays-trend-chart .trend-chart-right {
        border-left: 1px solid var(--border-clr);
        max-width: 290px;
    }
}

.trend-chart-right ul li {
    padding: 24px 15px;
    border-bottom: 1px solid var(--border-clr);
}

.trend-chart-right ul li .title {
    margin: 0;
}

.letter-spacing {
    letter-spacing: 1px;
    text-transform: capitalize;
    font-family: "Mulish", sans-serif;
}

.tickets-list {
    font-family: "Mulish", sans-serif;
}

.tickets-list li {
    border-bottom: 1px solid var(--border-clr);
}

.tickets-list li a,
.tickets-list li > div,
.tickets-list li .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--title-clr);
}

@media (max-width: 767px) {
    .tickets-list li a,
.tickets-list li > div,
.tickets-list li .item {
        padding: 15px 0;
    }
}

.tickets-list .form--control {
    border: none;
    background: transparent !important;
    color: var(--title-clr);
    font-size: 14px;
    padding: 0 50px 0 30px;
}

.tickets-list .form--control:focus {
    outline: none;
}

.tickets-list .edit-icon {
    background: #f0f1f7;
    border-radius: 8px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--title-clr);
}

.dark-theme .tickets-list .edit-icon {
    background: var(--body-bg);
}



.text-danger i {
    color: var(--danger-clr);
}

.text-success i {
    color: var(--success-clr);
}

.text-warning i {
    color: var(--warning-clr);
}

.text-info i {
    color: var(--info-clr);
}

.text-primary i {
    color: var(--primary-clr);
}

.text-secondary i {
    color: var(--secondary-clr);
}

.text-dark i {
    color: var(--dark-clr);
}

.text-light i {
    color: var(--light-clr);
}

.ui-icon-circle-triangle-e {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(-45deg);
    cursor: pointer;
}

.ui-icon-circle-triangle-w {
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    transform: rotate(-45deg);
    cursor: pointer;
}

.date-icon {
    position: absolute;
    color: var(--base-clr);
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.toast {
    background: var(--body-bg);
    color: var(--body-clr);
}

.dark-theme .dashboard--widget,
.dark-theme .dashboard-card {
    box-shadow: none;
}

.alert {
    padding: 0.7rem 1rem;
}

body aside::-webkit-scrollbar-track {
    background: var(--section-bg);
}

body aside::-webkit-scrollbar {
    width: 4px;
    background: var(--section-bg);
}

body aside::-webkit-scrollbar-thumb {
    background: rgba(var(--title-rgb), 0.3);
}

.invoice-container {
    padding: 15px;
}

.pagination {
    flex-wrap: wrap;
}

.avatar-img {
    width: 30px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.loader {
    position: fixed;
    inset: 0;
    background: var(--section-bg);
    z-index: 99999;
}

.loader::before {
    width: 46px;
    height: 46px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 6px solid var(--base-clr);
    border-left-color: transparent;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(720deg);
        -ms-transform: translate(-50%, -50%) rotate(720deg);
        transform: translate(-50%, -50%) rotate(720deg);
    }
}

.btn {
    position: relative;
    color: var(--white-clr);
    border-radius: 3px;
    font-weight: 400;
    text-transform: uppercase;
    outline: none;
    border: none;
    padding: 8px 23px;
    background: var(--base-clr);
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0px 4px 4px rgba(var(--primary-rgb), 0.25);
    height: unset;
    cursor: pointer;
}

.btn.btn-lg {
    padding: 13px 30px;
    font-size: 15px;
    line-height: 1.4;
}

.btn.btn-sm {
    padding: 6px 18px;
    font-size: 14px;
    line-height: 1.4;
}

.btn:hover, .btn:focus, .btn:active {
    box-shadow: none !important;
    color: var(--base-clr);
    background: transparent;
    border-color: var(--base-clr);
}

.badge {
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    padding: 7px 10px 5px !important;
}

.badge.badge-pill {
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    border-radius: 15px !important;
}

.btn,
.badge {
    border: 1px solid var(--base-clr);
}

.btn.badge-outline,
.badge.badge-outline {
    background: transparent;
    color: var(--base-clr);
    border-color: var(--base-clr);
    box-shadow: none;
}

.btn.btn-outline,
.badge.btn-outline {
    background: transparent;
    color: var(--base-clr);
    border-color: var(--base-clr);
    box-shadow: none;
}

.btn.btn-outline:hover,
.badge.btn-outline:hover {
    background: var(--base-clr);
    color: var(--white-clr);
}

.btn.badge-primary,
.badge.badge-primary {
    background: var(--primary-clr);
    color: var(--white-clr);
    border-color: var(--primary-clr);
}

.btn.btn-primary,
.badge.btn-primary {
    background: var(--primary-clr);
    color: var(--white-clr);
    border-color: var(--primary-clr);
}

.btn.btn-primary:hover,
.badge.btn-primary:hover {
    background: transparent;
    color: var(--primary-clr);
}

.btn.badge-secondary,
.badge.badge-secondary {
    background: var(--secondary-clr);
    color: var(--dark-clr);
    border-color: var(--secondary-clr);
    box-shadow: none;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}

.btn.btn-secondary,
.badge.btn-secondary {
    background: var(--secondary-clr);
    color: var(--dark-clr);
    border-color: var(--secondary-clr);
    box-shadow: none;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}

.btn.btn-secondary:hover,
.badge.btn-secondary:hover {
    background: transparent;
    color: var(--title-clr);
    filter: unset;
}

.btn.badge-success,
.badge.badge-success {
    background: var(--success-clr);
    color: var(--white-clr);
    border-color: var(--success-clr);
}

.btn.btn-success,
.badge.btn-success {
    background: var(--success-clr);
    color: var(--white-clr);
    border-color: var(--success-clr);
}

.btn.btn-success:hover,
.badge.btn-success:hover {
    background: transparent;
    color: var(--success-clr);
}

.btn.badge-info,
.badge.badge-info {
    background: var(--info-clr);
    color: var(--white-clr);
    border-color: var(--info-clr);
}

.btn.btn-info,
.badge.btn-info {
    background: var(--info-clr);
    color: var(--white-clr);
    border-color: var(--info-clr);
}

.btn.btn-info:hover,
.badge.btn-info:hover {
    background: transparent;
    color: var(--info-clr);
}

.btn.badge-warning,
.badge.badge-warning {
    background: var(--warning-clr);
    color: var(--dark-clr);
    border-color: var(--warning-clr);
}

.btn.btn-warning,
.badge.btn-warning {
    background: var(--warning-clr);
    color: var(--dark-clr);
    border-color: var(--warning-clr);
}

.btn.btn-warning:hover,
.badge.btn-warning:hover {
    background: transparent;
    color: var(--warning-clr);
}

.btn.badge-danger,
.badge.badge-danger {
    background: var(--danger-clr);
    color: var(--white-clr);
    border-color: var(--danger-clr);
}

.btn.btn-danger,
.badge.btn-danger {
    background: var(--danger-clr);
    color: var(--white-clr);
    border-color: var(--danger-clr);
}

.btn.btn-danger:hover,
.badge.btn-danger:hover {
    background: transparent;
    color: var(--danger-clr);
}

.btn.badge-outline-primary,
.badge.badge-outline-primary {
    background: transparent;
    color: var(--primary-clr);
    border-color: var(--primary-clr);
    box-shadow: none;
}

.btn.btn-outline-primary,
.badge.btn-outline-primary {
    background: transparent;
    color: var(--primary-clr);
    border-color: var(--primary-clr);
    box-shadow: none;
}

.btn.btn-outline-primary:hover,
.badge.btn-outline-primary:hover {
    background: var(--primary-clr);
    color: var(--white-clr);
}

.btn.badge-outline-secondary,
.badge.badge-outline-secondary {
    background: transparent;
    color: var(--title-clr);
    border-color: var(--border-clr);
    box-shadow: none;
}

.btn.btn-outline-secondary,
.badge.btn-outline-secondary {
    background: transparent;
    color: var(--title-clr);
    border-color: var(--border-clr);
    box-shadow: none;
}

.btn.btn-outline-secondary:hover,
.badge.btn-outline-secondary:hover {
    background: var(--secondary-clr);
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
    color: var(--dark-clr);
}

.btn.badge-outline-success,
.badge.badge-outline-success {
    background: transparent;
    color: var(--success-clr);
    border-color: var(--success-clr);
    box-shadow: none;
}

.btn.btn-outline-success,
.badge.btn-outline-success {
    background: transparent;
    color: var(--success-clr);
    border-color: var(--success-clr);
    box-shadow: none;
}

.btn.btn-outline-success:hover,
.badge.btn-outline-success:hover {
    background: var(--success-clr);
    color: var(--white-clr);
}

.btn.badge-outline-info,
.badge.badge-outline-info {
    background: transparent;
    color: var(--info-clr);
    border-color: var(--info-clr);
    box-shadow: none;
}

.btn.btn-outline-info,
.badge.btn-outline-info {
    background: transparent;
    color: var(--info-clr);
    border-color: var(--info-clr);
    box-shadow: none;
}

.btn.btn-outline-info:hover,
.badge.btn-outline-info:hover {
    background: var(--info-clr);
    color: var(--white-clr);
}

.btn.badge-outline-warning,
.badge.badge-outline-warning {
    background: transparent;
    color: var(--warning-clr);
    border-color: var(--warning-clr);
    box-shadow: none;
}

.btn.btn-outline-warning,
.badge.btn-outline-warning {
    background: transparent;
    color: var(--warning-clr);
    border-color: var(--warning-clr);
    box-shadow: none;
}

.btn.btn-outline-warning:hover,
.badge.btn-outline-warning:hover {
    background: var(--warning-clr);
    color: var(--white-clr);
}

.btn.badge-outline-danger,
.badge.badge-outline-danger {
    background: transparent;
    color: var(--danger-clr);
    border-color: var(--danger-clr);
    box-shadow: none;
}

.btn.btn-outline-danger,
.badge.btn-outline-danger {
    background: transparent;
    color: var(--danger-clr);
    border-color: var(--danger-clr);
    box-shadow: none;
}

.btn.btn-outline-danger:hover,
.badge.btn-outline-danger:hover {
    background: var(--danger-clr);
    color: var(--white-clr);
}

.btn.badge-light,
.badge.badge-light {
    background: #fff;
    color: #111;
    border-color: var(--border-clr);
    box-shadow: none;
}

.btn.badge-dark,
.badge.badge-dark {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: none;
}

.btn.badge-outline-dark,
.badge.badge-outline-dark {
    background: transparent;
    color: #fff;
    border-color: var(--border-clr);
    box-shadow: none;
}

.btn.badge-outline-light,
.badge.badge-outline-light {
    background: #fff;
    color: #111;
    border-color: var(--border-clr);
    box-shadow: none;
}

.tooltip-inner {
    padding: 6px 14px;
}

button[type=submit].btn.btn-lg {
    height: 60px;
}

@media (max-width: 575px) {
    button[type=submit].btn.btn-lg {
        height: 50px;
    }
}

.button-grp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
    margin-bottom: 10px;
}

.button-grp a {
    margin: 10px;
}

.text-info {
    color: var(--info-clr) !important;
}

.text-success {
    color: var(--success-clr) !important;
}

.text-danger {
    color: var(--danger-clr) !important;
}

.text-warning {
    color: var(--warning-clr) !important;
}

.text-primary {
    color: var(--primary-clr) !important;
}

.text-secondary {
    color: var(--secondary-clr) !important;
}

.text-dark {
    color: var(--dark-clr) !important;
}

.text-white {
    color: var(--white-clr) !important;
}

.text-light {
    color: var(--light-clr) !important;
}

.text-body {
    color: var(--body-clr) !important;
}

.list-group {
    background: var(--section-bg);
    border-color: var(--border-clr);
}

.list-group-item {
    background: var(--body-bg);
    color: var(--body-clr);
    border-color: var(--border-clr);
}

.swal2-show {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.swal2-title {
    font-size: 20px !important;
    width: 100%;
}

.swal2-styled {
    position: relative;
    color: var(--white-clr);
    border-radius: 3px;
    font-weight: 400;
    text-transform: uppercase;
    outline: none;
    border: none;
    padding: 8px 23px;
    background: var(--base-clr);
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0px 4px 4px rgba(var(--primary-rgb), 0.25);
    height: unset;
    cursor: pointer;
}

.swal2-styled.btn-lg {
    padding: 13px 30px;
    font-size: 15px;
    line-height: 1.4;
}

.swal2-styled.btn-sm {
    padding: 6px 18px;
    font-size: 14px;
    line-height: 1.4;
}

.swal2-styled:hover, .swal2-styled:focus, .swal2-styled:active {
    box-shadow: none !important;
    color: var(--white-clr);
}

.swal2-input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-left: 0;
    margin-right: 0;
}

.swal2-popup {
    background: var(--body-bg);
    color: var(--body-clr);
}

.swal2-close {
    position: absolute;
    right: 10px;
    top: 10px;
}

.swal2-title {
    color: var(--title-clr);
}

.swal2-content {
    color: var(--body-clr);
}

.nav-pills .nav-item .nav-link {
    color: var(--base-clr);
}

.nav-pills .nav-item .nav-link.active {
    background: var(--base-clr);
    color: var(--white-clr);
}

.action-btn {
    padding: 0 4px !important;
    text-align: center !important;
    min-width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
    font-size: 12px !important;
}

.action-btn.btn-sm {
    min-width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
}

.bg--body {
    background-color: var(--body-bg) !important;
}

.bg--section {
    background-color: var(--section-bg) !important;
}

.text-dark {
    color: var(--title-clr) !important;
}

.text--base {
    color: var(--base-clr) !important;
}

a {
    text-decoration: none;
}

*[class*=border]:not(.spinner-border) {
    border-color: var(--border-clr) !important;
}

.badge {
    padding: 8px 15px 7px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
}
/*# sourceMappingURL=main.css.map */
.select2-container--default .select2-selection--single{
    border: none!important;
}
.theme-settings.white-theme.bg--section.active{
    box-shadow: var(--shadow)!important;
}



.header-wrapper .header-right-icons .user a.active ~ ul{
    inset: 0px 0px auto auto!important;
    transform: translate(0px, 42px)!important;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
    border: none!important;
    border-radius: 0.25rem!important;
    overflow: hidden!important;
}

.dataTables_filter input{
    padding:.25rem .5rem!important;
}

.open.parent-menu li.open>a,.open.parent-menu li>a:hover{
    background: #7367f024!important;
    color: var(--primary-clr)!important;
    border-right: 5px solid var(--primary-clr)!important;
    transition: none!important;
}
.open.parent-menu li.open .parent-menu li >a,.open.parent-menu li.open .parent-menu li>a:hover{
    background: #7367f024!important;
    color: var(--primary-clr)!important;
    border-right: 5px solid var(--primary-clr)!important;
    transition: none!important;
}


/* hide scrollbar but allow scrolling */
.user-panel-sidebar {
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll; 
}

.user-panel-sidebar::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}


@media screen and (max-width: 991px) {
        .export-row.text-left{
            text-align: center!important;
        }
        .export-row.text-left .dataTables_length{
           float: unset !important;
        }
}