:root {
    --bs-page_color: #2b84d8;
}

.loader-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center
}

.loaded .loader-wrapper {
    visibility: hidden;
    opacity: 0;
    transition: all .8s ease-out
}

.loader-wrapper .loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-page_color);
    background: linear-gradient(90deg, var(--bs-page_color) 10%, transparent 42%);
    -webkit-animation: loading 1.4s linear infinite;
    animation: loading 1.4s linear infinite;
    transform: translateZ(0)
}

.loader-wrapper .loader.loader:before {
    width: 50%;
    height: 50%;
    background: var(--bs-page_color);
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: ""
}

.loader-wrapper .loader.loader:after {
    background: #f9fafb;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

@-webkit-keyframes loading {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes loading {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.main-wrapper {
    display: flex
}

.main-wrapper .page-wrapper {
    min-height: 100vh;
    background: #f9fafb;
    width: calc(100% - 240px);
    margin-left: 240px;
    display: flex;
    flex-direction: column;
    transition: margin .1s ease, width .1s ease
}

.main-wrapper .page-wrapper .page-content {
    flex-grow: 1;
    padding: 25px;
    margin-top: 60px
}

@media (max-width:767px) {
    .main-wrapper .page-wrapper .page-content {
        padding: 25px 15px
    }
}

.main-wrapper .page-wrapper.full-page {
    width: 100%;
    margin-left: 0
}

.main-wrapper .page-wrapper.full-page .page-content {
    margin-top: 0
}

@media (max-width:991px) {
    .main-wrapper .page-wrapper {
        margin-left: 0;
        width: 100%
    }
}

.page-content .content-nav-wrapper {
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    height: calc(100vh - 6rem);
    overflow-y: auto;
    border-left: 1px solid #e9ecef;
    display: none
}

@media (min-width:1200px) {
    .page-content .content-nav-wrapper {
        display: block
    }
}

.page-content .content-nav-wrapper .content-nav {
    padding: 0 25px
}

.page-content .content-nav-wrapper .content-nav .nav-item .nav-link {
    padding: 0;
    height: 30px;
    white-space: nowrap;
    color: #7987a1;
    display: flex;
    align-items: center
}

.page-wrapper .navbar {
    width: calc(100% - 240px);
    height: 60px;
    padding: 0;
    position: fixed;
    right: 0;
    left: 240px
}

@media (max-width:991px) {
    .page-wrapper .navbar {
        width: 100%;
        left: 0
    }
}

.navbar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    z-index: 978;
    box-shadow: 3px 0 10px 0 rgba(183, 192, 206, .2);
    transition: width .1s ease, left .1s ease
}

.navbar .sidebar-toggler {
    height: 100%;
    border-right: 1px solid #e9ecef;
    align-items: center;
    padding: 0 25px;
    display: none
}

.navbar .sidebar-toggler svg {
    width: 20px;
    height: 20px;
    color: #7987a1
}

@media (max-width:991px) {
    .navbar .sidebar-toggler {
        display: flex
    }
}

.navbar .search-form {
    width: 100%;
    margin-right: 60px
}

.navbar .search-form .input-group .input-group-text {
    padding: 0;
    border: 0;
    color: #7987a1;
    background: #fff
}

.navbar .search-form .input-group .input-group-text svg {
    width: 20px;
    height: 20px;
    cursor: pointer
}

.navbar .search-form .input-group .form-control,
.navbar .search-form .input-group .select2-container--default .select2-search--dropdown .select2-search__field,
.navbar .search-form .input-group .typeahead.tt-hint,
.navbar .search-form .input-group .typeahead.tt-input,
.select2-container--default .select2-search--dropdown .navbar .search-form .input-group .select2-search__field {
    border: 0;
    margin-top: 3px
}

.navbar .navbar-content {
    display: flex;
    width: 100%;
    height: 100%;
    padding-left: 25px;
    padding-right: 25px
}

@media (max-width:991px) {
    .navbar .navbar-content {
        width: calc(100% - 71px)
    }
}

.navbar .navbar-content .navbar-nav {
    display: flex;
    flex-direction: row;
    margin-left: auto
}

.navbar .navbar-content .navbar-nav .nav-item {
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    min-width: 30px;
    display: flex;
    align-items: center
}

.navbar .navbar-content .navbar-nav .nav-item .nav-link {
    color: #000;
    padding: 0;
    position: relative;
    margin-left: auto;
    margin-right: auto
}

.navbar .navbar-content .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-content .navbar-nav .nav-item .nav-link[aria-expanded=true] {
    color: var(--bs-page_color)
}

.navbar .navbar-content .navbar-nav .nav-item .nav-link:after {
    display: none
}

.navbar .navbar-content .navbar-nav .nav-item .nav-link svg {
    width: 20px;
    height: 20px
}

.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator {
    position: absolute;
    top: 0;
    right: 2px
}

.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle {
    background: var(--bs-page_color);
    width: 7px;
    height: 7px;
    border-radius: 50%
}

.navbar .navbar-content .navbar-nav .nav-item .nav-link .indicator .circle:before {
    background-color: var(--bs-page_color);
    content: "";
    display: table;
    border-radius: 50%;
    position: absolute
}

@media (max-width:767px) {
    .navbar .navbar-content .navbar-nav .nav-item.dropdown {
        position: static
    }
}

.navbar .navbar-content .navbar-nav .nav-item.dropdown .datepicker.datepicker-dropdown,
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    right: -20px;
    left: auto
}

.navbar .navbar-content .navbar-nav .nav-item.dropdown .datepicker.datepicker-dropdown:before,
.navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu:before,
.navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu:before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 28px;
    transform: rotate(45deg);
    border-top: 1px solid #f2f4f9;
    border-left: 1px solid #f2f4f9
}

@media (max-width:767px) {

    .navbar .navbar-content .navbar-nav .nav-item.dropdown .datepicker.datepicker-dropdown,
    .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu,
    .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu {
        right: 20px;
        width: calc(100% - 40px)
    }

    .navbar .navbar-content .navbar-nav .nav-item.dropdown .datepicker.datepicker-dropdown:before,
    .navbar .navbar-content .navbar-nav .nav-item.dropdown .dropdown-menu:before,
    .navbar .navbar-content .navbar-nav .nav-item.dropdown .tt-menu:before {
        display: none
    }
}

.sidebar {
    width: 240px;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    transition: width .1s ease, margin .1s ease-in-out;
    z-index: 999
}

.sidebar .sidebar-header {
    background: #fff;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    border-right: 1px solid #e9ecef;
    z-index: 999;
    width: 240px;
    transition: width .1s ease
}

.sidebar-open .sidebar .sidebar-header,
.sidebar .sidebar-header {
    border-bottom: 1px solid #e9ecef
}

.sidebar .sidebar-header .sidebar-brand {
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease;
    font-weight: 700;
    font-size: 25px;
    color: var(--bs-page_color)
}

.sidebar .sidebar-header .sidebar-brand span {
    color: var(--bs-page_color);
    font-weight: 300
}

.sidebar .sidebar-header .sidebar-toggler {
    cursor: pointer;
    width: 18px
}

.sidebar .sidebar-header .sidebar-toggler span {
    display: block;
    width: 100%;
    border-radius: 3px;
    height: 2px;
    background: #7987a1;
    transition: all .3s;
    position: relative
}

.sidebar .sidebar-header .sidebar-toggler span+span {
    margin-top: 4px
}

.sidebar .sidebar-header .sidebar-toggler.active span:first-child {
    -webkit-animation: top .6s ease forwards;
    animation: top .6s ease forwards
}

.sidebar .sidebar-header .sidebar-toggler.not-active span:first-child {
    -webkit-animation: top-2 .6s ease forwards;
    animation: top-2 .6s ease forwards
}

.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(2) {
    -webkit-animation: scaled .6s ease forwards;
    animation: scaled .6s ease forwards
}

.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(2) {
    -webkit-animation: scaled-2 .6s ease forwards;
    animation: scaled-2 .6s ease forwards
}

.sidebar .sidebar-header .sidebar-toggler.active span:nth-child(3) {
    -webkit-animation: bottom .6s ease forwards;
    animation: bottom .6s ease forwards
}

.sidebar .sidebar-header .sidebar-toggler.not-active span:nth-child(3) {
    -webkit-animation: bottom-2 .6s ease forwards;
    animation: bottom-2 .6s ease forwards
}

@-webkit-keyframes top {
    0% {
        top: 0;
        transform: rotate(0)
    }

    50% {
        top: 6px;
        transform: rotate(0)
    }

    to {
        top: 6px;
        transform: rotate(45deg)
    }
}

@keyframes top {
    0% {
        top: 0;
        transform: rotate(0)
    }

    50% {
        top: 6px;
        transform: rotate(0)
    }

    to {
        top: 6px;
        transform: rotate(45deg)
    }
}

@-webkit-keyframes top-2 {
    0% {
        top: 6px;
        transform: rotate(45deg)
    }

    50% {
        top: 6px;
        transform: rotate(0deg)
    }

    to {
        top: 0;
        transform: rotate(0deg)
    }
}

@keyframes top-2 {
    0% {
        top: 6px;
        transform: rotate(45deg)
    }

    50% {
        top: 6px;
        transform: rotate(0deg)
    }

    to {
        top: 0;
        transform: rotate(0deg)
    }
}

@-webkit-keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0)
    }

    50% {
        bottom: 6px;
        transform: rotate(0)
    }

    to {
        bottom: 6px;
        transform: rotate(135deg)
    }
}

@keyframes bottom {
    0% {
        bottom: 0;
        transform: rotate(0)
    }

    50% {
        bottom: 6px;
        transform: rotate(0)
    }

    to {
        bottom: 6px;
        transform: rotate(135deg)
    }
}

@-webkit-keyframes bottom-2 {
    0% {
        bottom: 6px;
        transform: rotate(135deg)
    }

    50% {
        bottom: 6px;
        transform: rotate(0)
    }

    to {
        bottom: 0;
        transform: rotate(0)
    }
}

@keyframes bottom-2 {
    0% {
        bottom: 6px;
        transform: rotate(135deg)
    }

    50% {
        bottom: 6px;
        transform: rotate(0)
    }

    to {
        bottom: 0;
        transform: rotate(0)
    }
}

@-webkit-keyframes scaled {
    50% {
        transform: scale(0)
    }

    to {
        transform: scale(0)
    }
}

@keyframes scaled {
    50% {
        transform: scale(0)
    }

    to {
        transform: scale(0)
    }
}

@-webkit-keyframes scaled-2 {
    0% {
        transform: scale(0)
    }

    50% {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@keyframes scaled-2 {
    0% {
        transform: scale(0)
    }

    50% {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.sidebar .sidebar-body {
    max-height: calc(100% - 60px);
    position: relative;
    border-right: 1px solid #e9ecef;
    height: 100%;
    box-shadow: 0 8px 10px 0 rgba(183, 192, 206, .2);
    background: #fff
}

.sidebar .sidebar-body .nav {
    display: flex;
    flex-direction: column;
    padding: 25px 25px 50px
}

.sidebar .sidebar-body .nav .nav-item {
    position: relative
}

.sidebar .sidebar-body .nav .nav-item .nav-link {
    display: flex;
    align-items: center;
    padding: 0;
    height: 32px;
    white-space: nowrap;
    color: #000
}

.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
    width: 16px;
    height: 16px;
    fill: rgba(233, 236, 239, .21);
    position: absolute;
    color: inherit
}

.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
    margin-left: 30px;
    font-size: 14px;
    transition: all .2s ease-in-out
}

.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow {
    width: 14px;
    height: 14px;
    margin-left: auto;
    transition: all .3s ease-in-out;
    color: inherit
}

.sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow,
.sidebar .sidebar-body .nav .nav-item .nav-link .link-icon,
.sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
    transition: all .3s ease
}

.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
    color: var(--bs-page_color)
}

.sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] .link-arrow {
    transform: rotate(180deg)
}

.sidebar .sidebar-body .nav .nav-item.nav-category {
    color: #7987a1;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5px;
    margin-bottom: 5px;
    height: 15px
}

.sidebar .sidebar-body .nav .nav-item.nav-category:not(:first-child) {
    margin-top: 20px
}

.sidebar .sidebar-body .nav .nav-item:hover .nav-link {
    color: var(--bs-page_color);
}

.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
    margin-left: 31px
}

.sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-icon {
    color: var(--bs-page_color);
    fill: rgba(239, 243, 255, .5)
}

.sidebar .sidebar-body .nav .nav-item.active .nav-link {
    color: var(--bs-page_color)
}

.sidebar .sidebar-body .nav .nav-item.active .nav-link:before {
    content: "";
    width: 3px;
    height: 26px;
    background: var(--bs-page_color);
    position: absolute;
    left: -25px
}

.sidebar .sidebar-body .nav .nav-item.active .nav-link .link-icon {
    fill: rgba(239, 243, 255, .5);
    color: var(--bs-page_color)
}

.sidebar .sidebar-body .nav.sub-menu {
    padding: 0 0 15px 33px
}

.sidebar .sidebar-body .nav.sub-menu .nav-item {
    position: relative
}

.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link {
    height: 25px;
    color: #000;
    font-size: 13px;
    transition: all .3s ease-in-out
}

.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #aeb9c4;
    position: absolute;
    left: -29px;
    top: 10px;
    transition: all .4s ease-in-out
}

.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active {
    color: var(--bs-page_color)
}

.sidebar .sidebar-body .nav.sub-menu .nav-item .nav-link.active:before {
    border: 1px solid var(--bs-page_color);
    background: var(--bs-page_color)
}

.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link {
    color: var(--bs-page_color);
    margin-left: 3px
}

.sidebar .sidebar-body .nav.sub-menu .nav-item:hover .nav-link:before {
    border: 1px solid var(--bs-page_color);
    background: var(--bs-page_color)
}

@media (max-width:991px) {
    .sidebar {
        z-index: 999;
        margin-left: -240px;
        visibility: hidden
    }

    .sidebar-open .sidebar {
        margin-left: 0;
        visibility: visible
    }

    .sidebar .sidebar-body .nav .nav-item {
        width: auto
    }

    .sidebar .sidebar-body .nav .nav-item .nav-link .link-icon {
        transition: none;
        margin: 0
    }
}

.sidebar-dark .sidebar .sidebar-header {
    background: #0c1427;
    border-bottom: 1px solid rgba(233, 236, 239, .1);
    border-right: 1px solid rgba(233, 236, 239, .1)
}

.sidebar-dark .sidebar .sidebar-header .sidebar-brand {
    color: #e9ecef
}

.sidebar-dark .sidebar .sidebar-header .sidebar-toggler span {
    background: #7987a1
}

.sidebar-dark .sidebar .sidebar-body {
    background: #0c1427;
    border-right: 1px solid rgba(233, 236, 239, .1)
}

.sidebar-dark .sidebar .sidebar-body .nav .nav-item.nav-category {
    color: #fff
}

.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link {
    color: #7987a1
}

.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link svg {
    fill: none
}

.sidebar-dark .sidebar .sidebar-body .nav .nav-item .nav-link[aria-expanded=true] {
    color: var(--bs-page_color)
}

.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link svg,
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link svg {
    fill: rgba(101, 113, 255, .2)
}

.sidebar-dark .sidebar .sidebar-body .nav .nav-item.active .nav-link .link-title,
.sidebar-dark .sidebar .sidebar-body .nav .nav-item:hover .nav-link .link-title {
    color: var(--bs-page_color)
}

.settings-sidebar {
    position: fixed;
    right: -232px;
    top: 130px;
    width: 232px;
    background: #fff;
    box-shadow: -3px 0 10px 0 rgba(183, 192, 206, .2);
    z-index: 999;
    border-radius: 0 0 0 4px;
    transition: all .2s ease-in-out
}

.settings-open .settings-sidebar {
    right: 0
}

.settings-sidebar .sidebar-body {
    position: relative;
    padding: 18px
}

.settings-sidebar .sidebar-body .settings-sidebar-toggler {
    position: absolute;
    left: -44px;
    top: 0;
    padding: 12px;
    border-radius: 4px 0 0 4px;
    background: #fff;
    box-shadow: -3px 0 10px 0 rgba(183, 192, 206, .2)
}

.settings-sidebar .sidebar-body .settings-sidebar-toggler svg {
    width: 20px;
    height: 20px;
    color: #7987a1
}

.settings-sidebar .sidebar-body .theme-wrapper .theme-item {
    position: relative;
    display: block;
    margin-bottom: 19px;
    border-radius: 6px;
    border: 3px solid #e9ecef
}

.settings-sidebar .sidebar-body .theme-wrapper .theme-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(101, 113, 255, 0)
}

.settings-sidebar .sidebar-body .theme-wrapper .theme-item:last-child {
    margin-bottom: 0
}

.settings-sidebar .sidebar-body .theme-wrapper .theme-item.active {
    border: 3px solid #b2b8ff
}

.settings-sidebar .sidebar-body .theme-wrapper .theme-item img {
    width: 100%;
    border-radius: 3px
}

.settings-sidebar .sidebar-body .theme-wrapper .theme-item:hover:after {
    background: rgba(101, 113, 255, .2);
    transition: all .3s ease-in-out
}

.sidebar-folded .sidebar .sidebar-header {
    width: 70px
}

.sidebar-folded .sidebar .sidebar-header .sidebar-brand {
    display: none
}

.sidebar-folded .page-wrapper {
    width: calc(100% - 70px);
    margin-left: 70px
}

.sidebar-folded .page-wrapper .navbar {
    width: calc(100% - 70px);
    left: 70px;
    right: 0
}

.sidebar-folded:not(.open-sidebar-folded) .sidebar,
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header {
    width: 70px
}

.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-header .sidebar-brand {
    opacity: 0;
    visibility: hidden;
    width: 0
}

.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-arrow,
.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item .nav-link .link-title {
    visibility: hidden;
    opacity: 0
}

.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category {
    visibility: hidden
}

.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav .nav-item.nav-category:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7987a1;
    position: absolute;
    top: 5px;
    left: 6px;
    visibility: visible
}

.sidebar-folded:not(.open-sidebar-folded) .sidebar .sidebar-body .nav.sub-menu {
    display: none
}

@media (max-width:991px) {

    .settings-open .main-wrapper:before,
    .sidebar-open .main-wrapper:before {
        content: "";
        width: 100vw;
        background: rgba(0, 0, 0, .3);
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 99;
        transition: all 3s ease;
        z-index: 980
    }
}


.top-0 {
    top: 0 !important
}

.top-10 {
    top: 10% !important
}

.top-20 {
    top: 20% !important
}

.top-25 {
    top: 25% !important
}

.top-30 {
    top: 30% !important
}

.top-40 {
    top: 40% !important
}

.top-50 {
    top: 50% !important
}

.top-60 {
    top: 60% !important
}

.top-70 {
    top: 70% !important
}

.top-75 {
    top: 75% !important
}

.top-80 {
    top: 80% !important
}

.top-90 {
    top: 90% !important
}

.top-100 {
    top: 100% !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-10 {
    bottom: 10% !important
}

.bottom-20 {
    bottom: 20% !important
}

.bottom-25 {
    bottom: 25% !important
}

.bottom-30 {
    bottom: 30% !important
}

.bottom-40 {
    bottom: 40% !important
}

.bottom-50 {
    bottom: 50% !important
}

.bottom-60 {
    bottom: 60% !important
}

.bottom-70 {
    bottom: 70% !important
}

.bottom-75 {
    bottom: 75% !important
}

.bottom-80 {
    bottom: 80% !important
}

.bottom-90 {
    bottom: 90% !important
}

.bottom-100 {
    bottom: 100% !important
}

a {
    text-decoration: none !important;
}

.on-hover-visible {
    visibility: hidden;
}


div:hover>div>.on-hover-visible {
    visibility: visible;
}