/*!
 * Fast Delivery
 * Copyright (c) 2024 Advandz Technologies, LLC. All Rights Reserved.
 */
html {
    position: relative;
    min-height: 100%;
}

body {
    height: 100%;
    font-family: 'League Spartan', sans-serif;
    line-height: 1.5;
}

a:focus {
    outline: none;
}

#wrapper {
    display: flex;
}

#wrapper #content-wrapper {
    background-color: #f8f9fc;
    width: 100%;
    padding-left: 6.5rem;
    overflow-x: hidden;
}

#wrapper .navbar-nav.toggled+#content-wrapper {
    padding-left: 0rem;
}

#wrapper #content-wrapper #content {
    flex: 1 0 auto;
}

@media (min-width: 768px) {
    #wrapper .navbar-nav+#content-wrapper {
        padding-left: 14rem;
    }

    #wrapper .navbar-nav.toggled+#content-wrapper {
        padding-left: 6.5rem;
    }
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.scroll-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    text-align: center;
    color: #fff;
    background: rgba(90, 92, 105, 0.5);
    line-height: 46px;
}

.scroll-to-top:focus,
.scroll-to-top:hover {
    color: white;
}

.scroll-to-top:hover {
    background: #5a5c69;
}

.scroll-to-top i {
    font-weight: 800;
}

@-webkit-keyframes growIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes growIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animated--grow-in,
.sidebar .nav-item .collapse {
    -webkit-animation-name: growIn;
    animation-name: growIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animated--fade-in {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 200ms;
    animation-duration: 200ms;
    -webkit-animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
    animation-timing-function: opacity cubic-bezier(0, 1, 0.4, 1);
}

.bg-gradient-primary {
    background-color: #FFDF2B;
    background-image: linear-gradient(180deg, #FFDF2B 10%, #F6C23E 100%);
    background-size: cover;
}

.bg-gradient-secondary {
    background-color: #858796;
    background-image: linear-gradient(180deg, #858796 10%, #60616f 100%);
    background-size: cover;
}

.bg-gradient-success {
    background-color: #1cc88a;
    background-image: linear-gradient(180deg, #1cc88a 10%, #13855c 100%);
    background-size: cover;
}

.bg-gradient-info {
    background-color: #36b9cc;
    background-image: linear-gradient(180deg, #36b9cc 10%, #258391 100%);
    background-size: cover;
}

.bg-gradient-warning {
    background-color: #f6c23e;
    background-image: linear-gradient(180deg, #f6c23e 10%, #dda20a 100%);
    background-size: cover;
}

.bg-gradient-danger {
    background-color: #e74a3b;
    background-image: linear-gradient(180deg, #e74a3b 10%, #be2617 100%);
    background-size: cover;
}

.bg-gradient-light {
    background-color: #f8f9fc;
    background-image: linear-gradient(180deg, #f8f9fc 10%, #c2cbe5 100%);
    background-size: cover;
}

.bg-gradient-dark {
    background-color: #5a5c69;
    background-image: linear-gradient(180deg, #5a5c69 10%, #373840 100%);
    background-size: cover;
}

.bg-primary {
    background-color: #FFDF2B !important;
}

.bg-gray-100 {
    background-color: #f8f9fc !important;
}

.bg-gray-200 {
    background-color: #eaecf4 !important;
}

.bg-gray-300 {
    background-color: #dddfeb !important;
}

.bg-gray-400 {
    background-color: #d1d3e2 !important;
}

.bg-gray-500 {
    background-color: #b7b9cc !important;
}

.bg-gray-600 {
    background-color: #858796 !important;
}

.bg-gray-700 {
    background-color: #6e707e !important;
}

.bg-gray-800 {
    background-color: #5a5c69 !important;
}

.bg-gray-900 {
    background-color: #3a3b45 !important;
}

.bg-black {
    background-color: #000000 !important;
}

.o-hidden {
    overflow: hidden !important;
}

.text-xs {
    font-size: .7rem;
}

.text-sm {
    font-size: .9rem;
}

.text-md {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.2rem;
}

.text-xl {
    font-size: 1.5rem;
}

.text-primary {
    color: #F6C23E !important;
}

.text-gray-100 {
    color: #f8f9fc !important;
}

.text-gray-200 {
    color: #eaecf4 !important;
}

.text-gray-300 {
    color: #dddfeb !important;
}

.text-gray-400 {
    color: #d1d3e2 !important;
}

.text-gray-500 {
    color: #b7b9cc !important;
}

.text-gray-600 {
    color: #858796 !important;
}

.text-gray-700 {
    color: #6e707e !important;
}

.text-gray-800 {
    color: #5a5c69 !important;
}

.text-gray-900 {
    color: #3a3b45 !important;
}

.icon-circle {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.border-left-primary {
    border-left: 0.25rem solid #FFDF2B !important;
}

.border-bottom-primary {
    border-bottom: 0.25rem solid #FFDF2B !important;
}

.border-left-secondary {
    border-left: 0.25rem solid #858796 !important;
}

.border-bottom-secondary {
    border-bottom: 0.25rem solid #858796 !important;
}

.border-left-success {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-bottom-success {
    border-bottom: 0.25rem solid #1cc88a !important;
}

.border-left-info {
    border-left: 0.25rem solid #36b9cc !important;
}

.border-bottom-info {
    border-bottom: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-bottom-warning {
    border-bottom: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
}

.border-bottom-danger {
    border-bottom: 0.25rem solid #e74a3b !important;
}

.border-left-light {
    border-left: 0.25rem solid #f8f9fc !important;
}

.border-bottom-light {
    border-bottom: 0.25rem solid #f8f9fc !important;
}

.border-left-dark {
    border-left: 0.25rem solid #5a5c69 !important;
}

.border-bottom-dark {
    border-bottom: 0.25rem solid #5a5c69 !important;
}

.btn {
    padding-top: 0.45rem;
    padding-bottom: 0.25rem;
    padding-left: 0.60rem;
    padding-right: 0.60rem;
}

.btn-primary {
    background: #FFDF2B;
    border-color: #F2CC5A;
    color: #2B2B2B;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:disabled,
.btn-primary:active:focus,
.btn-primary:active {
    background: #F2CC5A !important;
    border-color: #F2CC5A !important;
    color: #2B2B2B !important;
}

.progress-sm {
    height: .5rem;
}

.rotate-15 {
    transform: rotate(15deg);
}

.rotate-n-15 {
    transform: rotate(-15deg);
}

.dropdown .dropdown-menu {
    font-size: 0.85rem;
}

.dropdown .dropdown-menu .dropdown-header {
    font-weight: 800;
    font-size: 0.65rem;
    color: #b7b9cc;
}

.dropdown.no-arrow .dropdown-toggle::after {
    display: none;
}

.sidebar .nav-item.dropdown .dropdown-toggle::after,
.topbar .nav-item.dropdown .dropdown-toggle::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
}

.sidebar .nav-item.dropdown.show .dropdown-toggle::after,
.topbar .nav-item.dropdown.show .dropdown-toggle::after {
    content: '\f107';
}

.sidebar .nav-item .nav-link,
.topbar .nav-item .nav-link {
    position: relative;
}

.sidebar .nav-item .nav-link .badge-counter,
.topbar .nav-item .nav-link .badge-counter {
    position: absolute;
    transform: scale(0.7);
    transform-origin: top right;
    right: .25rem;
    margin-top: -.25rem;
}

.sidebar .nav-item .nav-link .img-profile,
.topbar .nav-item .nav-link .img-profile {
    height: 2rem;
    width: 2rem;
}

.table .img-profile {
    width: 64px;
    height: 64px;
    border-radius: 100%;
}

.topbar {
    height: 4.375rem;
}

.topbar #sidebarToggleTop {
    height: 2.5rem;
    width: 2.5rem;
}

.topbar #sidebarToggleTop:hover {
    background-color: #eaecf4;
}

.topbar #sidebarToggleTop:active {
    background-color: #dddfeb;
}

.topbar .navbar-search {
    width: 25rem;
}

.topbar .navbar-search input {
    font-size: 0.85rem;
    height: auto;
}

.topbar .topbar-divider {
    width: 0;
    border-right: 1px solid #e3e6f0;
    height: calc(4.375rem - 2rem);
    margin: auto 1rem;
}

.topbar .nav-item .nav-link {
    height: 4.375rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
}

.topbar .nav-item .nav-link:focus {
    outline: none;
}

.topbar .nav-item:focus {
    outline: none;
}

.topbar .dropdown {
    position: static;
}

.topbar .dropdown .dropdown-menu {
    width: calc(100% - 1.5rem);
    right: 0.75rem;
}

.topbar .dropdown-list {
    padding: 0;
    border: none;
    overflow: hidden;
}

.topbar .dropdown-list .dropdown-header {
    background-color: #FFDF2B;
    border: 1px solid #FFDF2B;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #fff;
}

.topbar .dropdown-list .dropdown-item {
    white-space: normal;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-left: 1px solid #e3e6f0;
    border-right: 1px solid #e3e6f0;
    border-bottom: 1px solid #e3e6f0;
    line-height: 1.3rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image {
    position: relative;
    height: 2.5rem;
    width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image img {
    height: 2.5rem;
    width: 2.5rem;
}

.topbar .dropdown-list .dropdown-item .dropdown-list-image .status-indicator {
    background-color: #eaecf4;
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 0.125rem solid #fff;
}

.topbar .dropdown-list .dropdown-item .text-truncate {
    max-width: 10rem;
}

.topbar .dropdown-list .dropdown-item:active {
    background-color: #eaecf4;
    color: #3a3b45;
}

@media (min-width: 576px) {
    .topbar .dropdown {
        position: relative;
    }

    .topbar .dropdown .dropdown-menu {
        width: auto;
        right: 0;
    }

    .topbar .dropdown-list {
        width: 20rem !important;
    }

    .topbar .dropdown-list .dropdown-item .text-truncate {
        max-width: 13.375rem;
    }
}

.topbar.navbar-dark .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.topbar.navbar-dark .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
}

.topbar.navbar-dark .navbar-nav .nav-item .nav-link:active {
    color: #fff;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link {
    color: #2B2B2B;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
    color: #5A5C69;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:active {
    color: #2B2B2B;
}

.nav-tabs .nav-item .nav-link {
    color: #2B2B2B;
}

.nav-tabs .nav-item .nav-link:hover {
    color: #5A5C69;
}

.nav-tabs .nav-item .nav-link:active {
    color: #2B2B2B;
}

.sidebar {
    width: 6.5rem;
    min-height: 100vh;
    position: fixed;
    z-index: 10;
}

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

.sidebar .nav-item:last-child {
    margin-bottom: 1rem;
}

.sidebar .nav-item .nav-link {
    text-align: center;
    padding: 0.75rem 1rem;
    width: 6.5rem;
}

.sidebar .nav-item .nav-link span {
    font-size: 0.65rem;
    display: block;
}

.sidebar .nav-item.active .nav-link {
    font-weight: 700;
}

.sidebar .nav-item .collapse {
    position: absolute;
    left: calc(6.5rem + 1.5rem / 2);
    z-index: 1;
    top: 2px;
}

.sidebar .nav-item .collapse .collapse-inner {
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.sidebar .nav-item .collapsing {
    display: none;
    transition: none;
}

.sidebar .nav-item .collapse .collapse-inner,
.sidebar .nav-item .collapsing .collapse-inner {
    padding: .5rem 0;
    min-width: 10rem;
    font-size: 0.85rem;
    margin: 0 0 1rem 0;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-header,
.sidebar .nav-item .collapsing .collapse-inner .collapse-header {
    margin: 0;
    white-space: nowrap;
    padding: .5rem 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.65rem;
    color: #b7b9cc;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item {
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    display: block;
    color: #3a3b45;
    text-decoration: none;
    border-radius: 0.35rem;
    white-space: nowrap;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:hover,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:hover {
    background-color: #eaecf4;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item:active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item:active {
    background-color: #dddfeb;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item.active,
.sidebar .nav-item .collapsing .collapse-inner .collapse-item.active {
    background: #FFDF2B;
    font-weight: 700;
}

.sidebar #sidebarToggle {
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    /*margin-bottom: 1rem;*/
    cursor: pointer;
    margin: 0 auto !important;
}

.sidebar #sidebarToggle::after {
    font-weight: 900;
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    margin-right: 0.1rem;
}

.sidebar #sidebarToggle:hover {
    text-decoration: none;
}

.sidebar #sidebarToggle:focus {
    outline: none;
}

.sidebar.toggled {
    width: 0 !important;
    overflow: hidden;
}

.sidebar.toggled #sidebarToggle::after {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    margin-left: 0.25rem;
}

.sidebar.toggled .sidebar-card {
    display: none;
}

.sidebar .sidebar-brand {
    height: 4.375rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem 1rem;
    text-align: center;
    z-index: 1;
}

.sidebar .sidebar-brand .sidebar-brand-icon img {
    max-height: 40px;
    filter: brightness(0.5) sepia(100);
}

.sidebar .sidebar-brand .sidebar-brand-text {
    width: 150px;
    display: none;
}

.sidebar hr.sidebar-divider {
    margin: 0 1rem 1rem;
}

.sidebar .sidebar-heading {
    text-align: center;
    padding: 0 1rem;
    font-weight: 800;
    font-size: 0.65rem;
}

.sidebar .sidebar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    border-radius: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.1);
}

.sidebar .sidebar-card .sidebar-card-illustration {
    height: 3rem;
    display: block;
}

.sidebar .sidebar-card .sidebar-card-title {
    font-weight: bold;
}

.sidebar .sidebar-card p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .sidebar {
        width: 14rem !important;
    }

    .sidebar .nav-item .collapse {
        position: relative;
        left: 0;
        z-index: 1;
        top: 0;
        -webkit-animation: none;
        animation: none;
    }

    .sidebar .nav-item .collapse .collapse-inner {
        border-radius: 0;
        box-shadow: none;
    }

    .sidebar .nav-item .collapsing {
        display: block;
        transition: height 0.15s ease;
    }

    .sidebar .nav-item .collapse,
    .sidebar .nav-item .collapsing {
        margin: 0 1rem;
    }

    .sidebar .nav-item .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1rem;
        width: 14rem;
    }

    .sidebar .nav-item .nav-link i {
        font-size: 0.85rem;
        margin-right: 0.25rem;
    }

    .sidebar .nav-item .nav-link span {
        font-size: 0.85rem;
        display: inline;
    }

    .sidebar .nav-item .nav-link[data-toggle="collapse"]::after {
        width: 1rem;
        text-align: center;
        float: right;
        vertical-align: 0;
        border: 0;
        font-weight: 900;
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
    }

    .sidebar .nav-item .nav-link[data-toggle="collapse"].collapsed::after {
        content: '\f105';
    }

    .sidebar .sidebar-brand .sidebar-brand-text {
        display: inline;
    }

    .sidebar .sidebar-heading {
        text-align: left;
    }

    .sidebar.toggled {
        overflow: visible;
        width: 6.5rem !important;
    }

    .sidebar.toggled .sidebar-content {
        width: 6.5rem !important;
        position: fixed;
    }

    .sidebar.toggled .nav-item .collapse {
        position: absolute;
        left: calc(6.5rem + 1.5rem / 2);
        z-index: 1;
        top: 2px;
        -webkit-animation-name: growIn;
        animation-name: growIn;
        -webkit-animation-duration: 200ms;
        animation-duration: 200ms;
        -webkit-animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
        animation-timing-function: transform cubic-bezier(0.18, 1.25, 0.4, 1), opacity cubic-bezier(0, 1, 0.4, 1);
    }

    .sidebar.toggled .nav-item .collapse .collapse-inner {
        box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
        border-radius: 0.35rem;
    }

    .sidebar.toggled .nav-item .collapsing {
        display: none;
        transition: none;
    }

    .sidebar.toggled .nav-item .collapse,
    .sidebar.toggled .nav-item .collapsing {
        margin: 0;
    }

    .sidebar.toggled .nav-item:last-child {
        margin-bottom: 1rem;
    }

    .sidebar.toggled .nav-item .nav-link {
        text-align: center;
        padding: 0.75rem 1rem;
        width: 6.5rem;
    }

    .sidebar.toggled .nav-item .nav-link span {
        font-size: 0.65rem;
        display: block;
    }

    .sidebar.toggled .nav-item .nav-link i {
        margin-right: 0;
    }

    .sidebar.toggled .nav-item .nav-link[data-toggle="collapse"]::after {
        display: none;
    }

    .sidebar.toggled .sidebar-brand .sidebar-brand-text {
        display: none;
    }

    .sidebar.toggled .sidebar-heading {
        text-align: center;
    }
}

.sidebar-light .sidebar-brand {
    color: #6e707e;
}

.sidebar-light hr.sidebar-divider {
    border-top: 1px solid #eaecf4;
}

.sidebar-light .sidebar-heading {
    color: #b7b9cc;
}

.sidebar-light .nav-item .nav-link {
    color: #858796;
}

.sidebar-light .nav-item .nav-link i {
    color: #d1d3e2;
}

.sidebar-light .nav-item .nav-link:active,
.sidebar-light .nav-item .nav-link:focus,
.sidebar-light .nav-item .nav-link:hover {
    color: #6e707e;
}

.sidebar-light .nav-item .nav-link:active i,
.sidebar-light .nav-item .nav-link:focus i,
.sidebar-light .nav-item .nav-link:hover i {
    color: #6e707e;
}

.sidebar-light .nav-item .nav-link[data-toggle="collapse"]::after {
    color: #b7b9cc;
}

.sidebar-light .nav-item.active .nav-link {
    color: #6e707e;
}

.sidebar-light .nav-item.active .nav-link i {
    color: #6e707e;
}

.sidebar-light #sidebarToggle {
    background-color: #eaecf4;
}

.sidebar-light #sidebarToggle::after {
    color: #b7b9cc;
}

.sidebar-light #sidebarToggle:hover {
    background-color: #dddfeb;
}

.sidebar-dark .sidebar-brand {
    color: #2B2B2B;
}

.sidebar-dark hr.sidebar-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-dark .sidebar-heading {
    color: #2B2B2B;
}

.sidebar-dark .nav-item .nav-link {
    color: #2B2B2B;
}

.sidebar-dark .nav-item .nav-link i {
    color: #2B2B2B;
}

.sidebar-dark .nav-item .nav-link:active,
.sidebar-dark .nav-item .nav-link:focus,
.sidebar-dark .nav-item .nav-link:hover {
    color: #2B2B2B;
}

.sidebar-dark .nav-item .nav-link:active i,
.sidebar-dark .nav-item .nav-link:focus i,
.sidebar-dark .nav-item .nav-link:hover i {
    color: #2B2B2B;
}

.sidebar-dark .nav-item .nav-link[data-toggle="collapse"]::after {
    color: #2B2B2B;
}

.sidebar-dark .nav-item.active .nav-link {
    color: #2B2B2B;
}

.sidebar-dark .nav-item.active .nav-link i {
    color: #2B2B2B;
}

.sidebar-dark #sidebarToggle {
    background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-dark #sidebarToggle::after {
    color: #2B2B2B;
}

.sidebar-dark #sidebarToggle:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.sidebar-dark.toggled #sidebarToggle::after {
    color: rgba(255, 255, 255, 0.5);
}

.btn-circle {
    border-radius: 100%;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-circle.btn-sm,
.btn-group-sm>.btn-circle.btn {
    height: 1.8rem;
    width: 1.8rem;
    font-size: 0.75rem;
}

.btn-circle.btn-lg,
.btn-group-lg>.btn-circle.btn {
    height: 3.5rem;
    width: 3.5rem;
    font-size: 1.35rem;
}

.btn-icon-split {
    padding: 0;
    overflow: hidden;
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
}

.btn-icon-split .icon {
    background: rgba(0, 0, 0, 0.15);
    display: inline-block;
    padding: 0.375rem 0.75rem;
}

.btn-icon-split .text {
    display: inline-block;
    padding: 0.375rem 0.75rem;
}

.btn-icon-split.btn-sm .icon,
.btn-group-sm>.btn-icon-split.btn .icon {
    padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-sm .text,
.btn-group-sm>.btn-icon-split.btn .text {
    padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-lg .icon,
.btn-group-lg>.btn-icon-split.btn .icon {
    padding: 0.5rem 1rem;
}

.btn-icon-split.btn-lg .text,
.btn-group-lg>.btn-icon-split.btn .text {
    padding: 0.5rem 1rem;
}

.card .card-header>h6 {
    margin-top: 0.25rem;
    line-height: 1 !important;
}

.card .card-header .dropdown {
    line-height: 1;
}

.card .card-header .dropdown .dropdown-menu {
    line-height: 1.5;
}

.card .card-header[data-toggle="collapse"] {
    text-decoration: none;
    position: relative;
    padding: 0.75rem 3.25rem 0.75rem 1.25rem;
}

.card .card-header[data-toggle="collapse"]::after {
    position: absolute;
    right: 0;
    top: 0;
    padding-right: 1.725rem;
    line-height: 51px;
    font-weight: 900;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    color: #d1d3e2;
}

.card .card-header[data-toggle="collapse"].collapsed {
    border-radius: 0.35rem;
}

.card .card-header[data-toggle="collapse"].collapsed::after {
    content: '\f105';
}

.card .card-header .btn-sm {
    margin: -5px -5px -5px 10px;
}

.card .card-header .nav-tabs+.btn-sm {
    margin: 0 -5px -5px 10px;
}

.chart-area {
    position: relative;
    height: 10rem;
    width: 100%;
}

@media (min-width: 768px) {
    .chart-area {
        height: 20rem;
    }
}

.chart-bar {
    position: relative;
    height: 10rem;
    width: 100%;
}

@media (min-width: 768px) {
    .chart-bar {
        height: 20rem;
    }
}

.chart-pie {
    position: relative;
    height: 15rem;
    width: 100%;
}

@media (min-width: 768px) {
    .chart-pie {
        height: calc(20rem - 43px) !important;
    }
}

form.user .custom-checkbox.small label {
    line-height: 1.5rem;
}

form.user .form-control-user {
    font-size: 0.8rem;
    border-radius: 10rem;
    padding: 1.5rem 1rem;
}

form.user .btn-user {
    font-size: 0.8rem;
    border-radius: 10rem;
    padding: 0.75rem 1rem;
}

.btn-google {
    color: #fff;
    background-color: #ea4335;
    border-color: #fff;
}

.btn-google:hover {
    color: #fff;
    background-color: #e12717;
    border-color: #e6e6e6;
}

.btn-google:focus,
.btn-google.focus {
    color: #fff;
    background-color: #e12717;
    border-color: #e6e6e6;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-google.disabled,
.btn-google:disabled {
    color: #fff;
    background-color: #ea4335;
    border-color: #fff;
}

.btn-google:not(:disabled):not(.disabled):active,
.btn-google:not(:disabled):not(.disabled).active,
.show>.btn-google.dropdown-toggle {
    color: #fff;
    background-color: #d62516;
    border-color: #dfdfdf;
}

.btn-google:not(:disabled):not(.disabled):active:focus,
.btn-google:not(:disabled):not(.disabled).active:focus,
.show>.btn-google.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-facebook {
    color: #fff;
    background-color: #3b5998;
    border-color: #fff;
}

.btn-facebook:hover {
    color: #fff;
    background-color: #30497c;
    border-color: #e6e6e6;
}

.btn-facebook:focus,
.btn-facebook.focus {
    color: #fff;
    background-color: #30497c;
    border-color: #e6e6e6;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-facebook.disabled,
.btn-facebook:disabled {
    color: #fff;
    background-color: #3b5998;
    border-color: #fff;
}

.btn-facebook:not(:disabled):not(.disabled):active,
.btn-facebook:not(:disabled):not(.disabled).active,
.show>.btn-facebook.dropdown-toggle {
    color: #fff;
    background-color: #2d4373;
    border-color: #dfdfdf;
}

.btn-facebook:not(:disabled):not(.disabled):active:focus,
.btn-facebook:not(:disabled):not(.disabled).active:focus,
.show>.btn-facebook.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.error {
    color: #5a5c69;
    font-size: 7rem;
    position: relative;
    line-height: 1;
    width: 12.5rem;
}

@-webkit-keyframes noise-anim {
    0% {
        clip: rect(49px, 9999px, 40px, 0);
    }

    5% {
        clip: rect(75px, 9999px, 72px, 0);
    }

    10% {
        clip: rect(97px, 9999px, 93px, 0);
    }

    15% {
        clip: rect(15px, 9999px, 9px, 0);
    }

    20% {
        clip: rect(14px, 9999px, 92px, 0);
    }

    25% {
        clip: rect(18px, 9999px, 94px, 0);
    }

    30% {
        clip: rect(17px, 9999px, 20px, 0);
    }

    35% {
        clip: rect(71px, 9999px, 59px, 0);
    }

    40% {
        clip: rect(42px, 9999px, 84px, 0);
    }

    45% {
        clip: rect(56px, 9999px, 25px, 0);
    }

    50% {
        clip: rect(46px, 9999px, 14px, 0);
    }

    55% {
        clip: rect(47px, 9999px, 1px, 0);
    }

    60% {
        clip: rect(64px, 9999px, 58px, 0);
    }

    65% {
        clip: rect(89px, 9999px, 92px, 0);
    }

    70% {
        clip: rect(56px, 9999px, 39px, 0);
    }

    75% {
        clip: rect(80px, 9999px, 71px, 0);
    }

    80% {
        clip: rect(8px, 9999px, 13px, 0);
    }

    85% {
        clip: rect(66px, 9999px, 68px, 0);
    }

    90% {
        clip: rect(68px, 9999px, 4px, 0);
    }

    95% {
        clip: rect(56px, 9999px, 14px, 0);
    }

    100% {
        clip: rect(28px, 9999px, 53px, 0);
    }
}

@keyframes noise-anim {
    0% {
        clip: rect(49px, 9999px, 40px, 0);
    }

    5% {
        clip: rect(75px, 9999px, 72px, 0);
    }

    10% {
        clip: rect(97px, 9999px, 93px, 0);
    }

    15% {
        clip: rect(15px, 9999px, 9px, 0);
    }

    20% {
        clip: rect(14px, 9999px, 92px, 0);
    }

    25% {
        clip: rect(18px, 9999px, 94px, 0);
    }

    30% {
        clip: rect(17px, 9999px, 20px, 0);
    }

    35% {
        clip: rect(71px, 9999px, 59px, 0);
    }

    40% {
        clip: rect(42px, 9999px, 84px, 0);
    }

    45% {
        clip: rect(56px, 9999px, 25px, 0);
    }

    50% {
        clip: rect(46px, 9999px, 14px, 0);
    }

    55% {
        clip: rect(47px, 9999px, 1px, 0);
    }

    60% {
        clip: rect(64px, 9999px, 58px, 0);
    }

    65% {
        clip: rect(89px, 9999px, 92px, 0);
    }

    70% {
        clip: rect(56px, 9999px, 39px, 0);
    }

    75% {
        clip: rect(80px, 9999px, 71px, 0);
    }

    80% {
        clip: rect(8px, 9999px, 13px, 0);
    }

    85% {
        clip: rect(66px, 9999px, 68px, 0);
    }

    90% {
        clip: rect(68px, 9999px, 4px, 0);
    }

    95% {
        clip: rect(56px, 9999px, 14px, 0);
    }

    100% {
        clip: rect(28px, 9999px, 53px, 0);
    }
}

.error:after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 #e74a3b;
    top: 0;
    color: #5a5c69;
    background: #f8f9fc;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;
}

@-webkit-keyframes noise-anim-2 {
    0% {
        clip: rect(16px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(22px, 9999px, 29px, 0);
    }

    10% {
        clip: rect(6px, 9999px, 68px, 0);
    }

    15% {
        clip: rect(85px, 9999px, 95px, 0);
    }

    20% {
        clip: rect(65px, 9999px, 91px, 0);
    }

    25% {
        clip: rect(93px, 9999px, 68px, 0);
    }

    30% {
        clip: rect(10px, 9999px, 27px, 0);
    }

    35% {
        clip: rect(37px, 9999px, 25px, 0);
    }

    40% {
        clip: rect(12px, 9999px, 23px, 0);
    }

    45% {
        clip: rect(40px, 9999px, 18px, 0);
    }

    50% {
        clip: rect(19px, 9999px, 71px, 0);
    }

    55% {
        clip: rect(2px, 9999px, 35px, 0);
    }

    60% {
        clip: rect(16px, 9999px, 69px, 0);
    }

    65% {
        clip: rect(8px, 9999px, 65px, 0);
    }

    70% {
        clip: rect(30px, 9999px, 57px, 0);
    }

    75% {
        clip: rect(14px, 9999px, 4px, 0);
    }

    80% {
        clip: rect(39px, 9999px, 30px, 0);
    }

    85% {
        clip: rect(22px, 9999px, 35px, 0);
    }

    90% {
        clip: rect(58px, 9999px, 71px, 0);
    }

    95% {
        clip: rect(34px, 9999px, 90px, 0);
    }

    100% {
        clip: rect(67px, 9999px, 68px, 0);
    }
}

@keyframes noise-anim-2 {
    0% {
        clip: rect(16px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(22px, 9999px, 29px, 0);
    }

    10% {
        clip: rect(6px, 9999px, 68px, 0);
    }

    15% {
        clip: rect(85px, 9999px, 95px, 0);
    }

    20% {
        clip: rect(65px, 9999px, 91px, 0);
    }

    25% {
        clip: rect(93px, 9999px, 68px, 0);
    }

    30% {
        clip: rect(10px, 9999px, 27px, 0);
    }

    35% {
        clip: rect(37px, 9999px, 25px, 0);
    }

    40% {
        clip: rect(12px, 9999px, 23px, 0);
    }

    45% {
        clip: rect(40px, 9999px, 18px, 0);
    }

    50% {
        clip: rect(19px, 9999px, 71px, 0);
    }

    55% {
        clip: rect(2px, 9999px, 35px, 0);
    }

    60% {
        clip: rect(16px, 9999px, 69px, 0);
    }

    65% {
        clip: rect(8px, 9999px, 65px, 0);
    }

    70% {
        clip: rect(30px, 9999px, 57px, 0);
    }

    75% {
        clip: rect(14px, 9999px, 4px, 0);
    }

    80% {
        clip: rect(39px, 9999px, 30px, 0);
    }

    85% {
        clip: rect(22px, 9999px, 35px, 0);
    }

    90% {
        clip: rect(58px, 9999px, 71px, 0);
    }

    95% {
        clip: rect(34px, 9999px, 90px, 0);
    }

    100% {
        clip: rect(67px, 9999px, 68px, 0);
    }
}

.error:before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 1px 0 #FFDF2B;
    top: 0;
    color: #5a5c69;
    background: #f8f9fc;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 3s infinite linear alternate-reverse;
}

footer.sticky-footer {
    padding: 2rem 0;
    flex-shrink: 0;
}

footer.sticky-footer .copyright {
    line-height: 1;
    font-size: 0.8rem;
}

body.sidebar-toggled footer.sticky-footer {
    width: 100%;
}

.pagination .page-item {
    cursor: pointer;
}

.pagination .page-item .page-link {
    color: #20201C;
    cursor: pointer;
}

.pagination .page-item.active .page-link {
    background: #FFDB1C;
    border-color: #F0C64B;
    color: #20201C;
    cursor: pointer;
}

/* ── API Documentation ──────────────────────────────────────────────────── */
.api-documentation .doc-wrap {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.api-documentation .doc-sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 1.5rem;
}

.api-documentation .doc-content {
    flex: 1;
    min-width: 0;
}

.api-documentation .doc-nav {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.api-documentation .doc-nav-group {
    padding: .5rem 0;
    border-bottom: 1px solid #f0f0f3;
}

.api-documentation .doc-nav-group:last-child {
    border-bottom: none;
}

.api-documentation .doc-nav-label {
    padding: .45rem 1.1rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #aab;
}

.api-documentation .doc-nav a {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .38rem 1.1rem;
    font-size: .8rem;
    color: #444;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .15s, border-color .15s, color .15s;
}

.api-documentation .doc-nav a:hover {
    background: #f8f8fb;
    color: #222;
    border-left-color: #ddd;
}

.api-documentation .doc-nav a.active {
    background: #fffbe6;
    color: #856404;
    border-left-color: #FFDF2B;
    font-weight: 600;
}

.api-documentation .doc-nav .method-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.api-documentation .dot-get {
    background: #22c55e;
}

.api-documentation .dot-post {
    background: #3b82f6;
}

.api-documentation .dot-put {
    background: #f97316;
}

.api-documentation .dot-delete {
    background: #ef4444;
}

.api-documentation .doc-section-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #888;
    margin: 2rem 0 .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #eee;
}

.api-documentation .doc-section-title i {
    font-size: .85rem;
}

.api-documentation .doc-auth-card {
    background: linear-gradient(135deg, #1e2130 0%, #2d3148 100%);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
    color: #e8e9f0;
}

.api-documentation .doc-auth-card h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.api-documentation .doc-auth-card p {
    font-size: .875rem;
    color: #9fa3bb;
    margin-bottom: 1.25rem;
}

.api-documentation .doc-auth-code {
    background: rgba(0, 0, 0, .35);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: .82rem;
    color: #a8d8a8;
    white-space: pre;
}

.api-documentation .doc-auth-code .kw {
    color: #79b8ff;
}

.api-documentation .doc-auth-code .val {
    color: #f8c555;
}

.api-documentation .ep-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .07);
    margin-bottom: .85rem;
    overflow: hidden;
    transition: box-shadow .2s;
}

.api-documentation .ep-card:hover {
    box-shadow: 0 3px 16px rgba(0, 0, 0, .11);
}

.api-documentation .ep-header {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1.25rem;
    cursor: pointer;
    user-select: none;
}

.api-documentation .ep-header:hover {
    background: #fafafa;
}

.api-documentation .ep-method {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .28rem .7rem;
    border-radius: 6px;
    min-width: 56px;
    text-align: center;
    flex-shrink: 0;
}

.api-documentation .ep-get {
    background: #dcfce7;
    color: #166534;
}

.api-documentation .ep-post {
    background: #dbeafe;
    color: #1e40af;
}

.api-documentation .ep-put {
    background: #ffedd5;
    color: #9a3412;
}

.api-documentation .ep-delete {
    background: #fee2e2;
    color: #991b1b;
}

.api-documentation .ep-path {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: .82rem;
    font-weight: 600;
    color: #1a1a2e;
    flex: 1;
}

.api-documentation .ep-summary {
    font-size: .78rem;
    color: #888;
    flex: 1;
    display: none;
}

@media (min-width: 900px) {
    .api-documentation .ep-summary {
        display: block;
    }
}

.api-documentation .ep-toggle-icon {
    color: #bbb;
    font-size: .75rem;
    transition: transform .2s;
    flex-shrink: 0;
}

.api-documentation .ep-toggle-icon.open {
    transform: rotate(90deg);
}

.api-documentation .ep-body {
    display: none;
    border-top: 1px solid #f0f0f3;
    padding: 1.25rem 1.5rem;
}

.api-documentation .ep-description {
    font-size: .875rem;
    color: #555;
    margin-bottom: 1.1rem;
    line-height: 1.6;
}

.api-documentation .params-table {
    width: 100%;
    font-size: .78rem;
    border-collapse: collapse;
    margin-bottom: 1.1rem;
}

.api-documentation .params-table th {
    background: #f6f7fb;
    color: #666;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    padding: .5rem .85rem;
    border-bottom: 2px solid #eaecf4;
    text-align: left;
}

.api-documentation .params-table td {
    padding: .5rem .85rem;
    border-bottom: 1px solid #f0f0f3;
    vertical-align: top;
    color: #333;
}

.api-documentation .params-table tr:last-child td {
    border-bottom: none;
}

.api-documentation .param-name {
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: .78rem;
    color: #2563eb;
}

.api-documentation .param-type {
    color: #7c3aed;
    font-size: .75rem;
    font-family: 'SFMono-Regular', Consolas, monospace;
}

.api-documentation .badge-req {
    background: #fef3c7;
    color: #92400e;
    font-size: .65rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 4px;
}

.api-documentation .badge-opt {
    background: #f0f0f3;
    color: #888;
    font-size: .65rem;
    font-weight: 600;
    padding: .15rem .45rem;
    border-radius: 4px;
}

.api-documentation .code-tabs {
    margin-bottom: 0;
}

.api-documentation .code-tab-nav {
    display: flex;
    gap: .25rem;
    margin-bottom: 0;
    border-bottom: none;
    background: #282c3e;
    border-radius: 10px 10px 0 0;
    padding: .5rem .75rem 0;
}

.api-documentation .code-tab-nav li {
    list-style: none;
}

.api-documentation .code-tab-btn {
    background: none;
    border: none;
    color: #8892aa;
    font-size: .73rem;
    font-weight: 600;
    padding: .35rem .75rem;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    letter-spacing: .04em;
    transition: background .15s, color .15s;
}

.api-documentation .code-tab-btn:hover {
    color: #c8d0e0;
}

.api-documentation .code-tab-btn.active {
    background: #1e2130;
    color: #e8e9f0;
}

.api-documentation .code-tab-pane {
    display: none;
}

.api-documentation .code-tab-pane.active {
    display: block;
}

.api-documentation .code-block {
    background: #1e2130;
    color: #a8b4cc;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: .78rem;
    line-height: 1.7;
    padding: 1.1rem 1.25rem;
    margin: 0;
    border-radius: 0 0 10px 10px;
    overflow-x: auto;
    white-space: pre;
}

.api-documentation .code-block .cmd {
    color: #79b8ff;
}

.api-documentation .code-block .str {
    color: #f8c555;
}

.api-documentation .code-block .key {
    color: #85e89d;
}

.api-documentation .code-block .val {
    color: #e06c75;
}

.api-documentation .code-block .com {
    color: #676e95;
    font-style: italic;
}

.api-documentation .resp-block {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.api-documentation .resp-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .05em;
}

.api-documentation .resp-success .resp-header {
    background: #052e16;
    color: #86efac;
}

.api-documentation .resp-error .resp-header {
    background: #450a0a;
    color: #fca5a5;
}

.api-documentation .resp-json {
    background: #111827;
    color: #d1d5db;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: .75rem;
    line-height: 1.7;
    padding: .9rem 1.1rem;
    margin: 0;
    overflow-x: auto;
    white-space: pre;
}

.api-documentation .resp-json .jk {
    color: #93c5fd;
}

.api-documentation .resp-json .js {
    color: #86efac;
}

.api-documentation .resp-json .jn {
    color: #fbbf24;
}

.api-documentation .resp-json .jb {
    color: #f472b6;
}

.api-documentation .doc-hero {
    background: linear-gradient(135deg, #1e2130 0%, #2d3148 100%);
    border-radius: 14px;
    padding: 2rem 2.25rem;
    margin-bottom: 2rem;
    color: #fff;
}

.api-documentation .doc-hero h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.api-documentation .doc-hero p {
    color: #9fa3bb;
    font-size: .9rem;
    margin: 0;
}

.api-documentation .doc-hero .base-url {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: .35rem .85rem;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: .8rem;
    color: #FFDF2B;
    margin-top: .85rem;
}

.api-documentation .warning-note {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: .85rem 1rem;
    font-size: .82rem;
    color: #92400e;
    margin-bottom: 1rem;
}

.api-documentation .warning-note i {
    margin-top: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .api-documentation .doc-wrap {
        flex-direction: column;
    }

    .api-documentation .doc-sidebar {
        width: 100%;
        position: static;
    }
}