:root {
    --bs-link-color: #004d9d;
    --bs-primary-rgb: 9,107,209;
    --bs-primary: #004d9d;
    --color-primary: #004d9d;
    --color-secondary: #e61010;
    --color-text: #0a335d;
    --bg-sky-light: #f3f9fd;
    --bg-yellow-light: #ffeeaa;
    --radius: 0.35em;
    --radius-sm: calc(var(--radius, 0.25em) / 2);
    --radius-md: var(--radius, 0.25em);
    --radius-lg: calc(var(--radius, 0.25em) * 2);
    --shadow-xs: 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 0.3px 0.4px rgba(0, 0, 0, 0.025),
        0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 0.9px 1.5px rgba(0, 0, 0, 0.03),
        0 3.1px 5.5px rgba(0, 0, 0, 0.08), 0 14px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 1.2px 1.9px -1px rgba(0, 0, 0, 0.014),
        0 3.3px 5.3px -1px rgba(0, 0, 0, 0.038),
        0 8.5px 12.7px -1px rgba(0, 0, 0, 0.085),
        0 30px 42px -1px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 1.5px 2.1px -6px rgba(0, 0, 0, 0.012),
        0 3.6px 5.2px -6px rgba(0, 0, 0, 0.035),
        0 7.3px 10.6px -6px rgba(0, 0, 0, 0.07),
        0 16.2px 21.9px -6px rgba(0, 0, 0, 0.117),
        0 46px 60px -6px rgba(0, 0, 0, 0.2);
    --bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    letter-spacing: normal;
    flex-direction: column;
    display: flex;
    height: 100%;
}

a {
    text-decoration: none;
}

strong {
    font-weight: 600;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-top: 0
}

.h1,
h1 {
    font-size: 1.75rem
}

.h2,
h2 {
    font-size: 1.53125rem
}

.h3,
h3 {
    font-size: 1.3125rem
}

.h4,
h4 {
    font-size: 1.09375rem
}

.h5,
.h6,
h5,
h6 {
    font-size: .875rem
}

p {
    margin-bottom: 10px;
    margin-top: 0
}

img {
    max-width: 100%;
}

.btn {
    border-radius: 3px;
    font-size: 15px;
}
.btn-sm {
    font-size: 13px;
}

.btn-primary {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}

.main {
    background: #ffffff;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    overflow: hidden;
    transition: margin-left .35s ease-in-out, left .35s ease-in-out, margin-right .35s ease-in-out, right .35s ease-in-out;
    width: 100%;
}

.content {
    direction: ltr;
    flex: 1;
    max-width: 100vw;
    padding: 10px 0;
    width: 100vw
}

@media (min-width:768px) {
    .content {
        max-width: 100%;
        width: auto;
    }
}


.navbar {
    padding: 10px 15px;
    border-bottom: 0;
    border-bottom: 1px solid #edf2f9;
    background: #ffffff;
    box-shadow: 0 1px 15px 1px rgba(69, 65, 78, 0.1);
}

@media (max-width: 767.98px) {
    .navbar {
        width: 100vw;
    }
}

.form-label {
    font-weight: 500;
    vertical-align: sub;
}

.input-group-navbar .btn,
.input-group-navbar .form-control {
    background: #f3f6fa;
    border: 0;
    border-radius: 5px;
    box-shadow: none;
    height: calc(2.1875rem + 2px);
    padding: .4rem 1rem;
}

.input-group-navbar .btn {
    color: #676c7b;
}

.input-group-navbar .btn svg {
    height: 20px;
    width: 20px;
}

.navbar-align {
    margin-left: auto;
}

.nav-flag,
.nav-icon {
    color: #676c7b;
    display: block;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: .1rem .8rem;
    transition: background .1s ease-in-out, color .1s ease-in-out;
    cursor: pointer;
}

.nav-flag .feather,
.nav-flag svg,
.nav-icon .feather,
.nav-icon svg {
    height: 20px;
    width: 20px;
}

.nav-flag img {
    border-radius: 50%;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 20px;
}

.navbar .avatar {
    margin-bottom: -15px;
    margin-top: -15px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.nav-item .indicator {
    background: #3b7ddd;
    border-radius: 50%;
    box-shadow: 0 0.1rem 0.2rem rgb(0 0 0 / 5%);
    color: #fff;
    display: block;
    font-size: .675rem;
    height: 18px;
    padding: 1px;
    position: absolute;
    right: -8px;
    text-align: center;
    top: 0;
    transition: top .1s ease-out;
    width: 18px;
}

.navbar-nav.navbar-align .dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    font-size: 14px;
    color: #495057;
}

.dropdown-item {
    padding: 5px 16px;
    font-size: 14px;
}

.dropdown .dropdown-menu.show {
    animation-duration: .25s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    /*animation-name: dropdownAnimation;*/
    animation-timing-function: ease;
}

@-webkit-keyframes dropdownAnimation {
    0% {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes dropdownAnimation {
    0% {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

.dropdown-menu-header {
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
    padding: .75rem;
    text-align: center;
}

.dropdown-menu-footer {
    display: block;
    font-size: .75rem;
    padding: .5rem;
    text-align: center;
}

.dropdown-menu-lg {
    min-width: 20rem
}

.dropdown .list-group .list-group-item {
    border-width: 0 0 1px;
    margin-bottom: 0
}

.dropdown .list-group .list-group-item:first-child,
.dropdown .list-group .list-group-item:last-child {
    border-radius: 0
}

.dropdown .list-group .list-group-item:hover {
    background: #f8f9fa
}

@media (min-width:576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media (min-width:768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

    .dropdown-menu-md-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-md-end {
        --bs-position: end
    }

    .dropdown-menu-md-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media (min-width:992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media (min-width:1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media (min-width:1440px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        left: 0;
        right: auto
    }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        left: auto;
        right: 0
    }
}

@media (max-width: 576px) {

    .dropdown,
    .dropleft,
    .dropright,
    .dropup {
        position: inherit;
    }

    .navbar-expand .navbar-nav .dropdown-menu-lg {
        min-width: 100%;
    }
}


svg {
    touch-action: none;
}

.feather {
    stroke-width: 2;
    height: 18px;
    width: 18px;
}

.not-found .error-heading {
    font-size: 85px;
}

.not-found img {
    max-height: 200px;
    text-align: center;
    margin-bottom: 30px;
    max-width: 100%;
    height: auto;
}

.not-found h1 {
    font-size: 28px;
    font-weight: 500;
    position: relative;
    margin: 0 0 25px 0;
}

.not-found p {
    font-size: 16px;
}



#root,
body,
html {
    height: 100%
}

body {
    opacity: 1 !important;
    overflow-y: scroll
}

.sidebar {
    max-width: 264px;
    min-width: 264px;
    transition: margin-left .35s ease-in-out, left .35s ease-in-out, margin-right .35s ease-in-out, right .35s ease-in-out;
    background: #222d32;
}

.sidebar.collapsed {
    margin-left: -264px;
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -264px;
    }

    .sidebar.collapsed {
        margin-left: 0;
    }
}

[data-simplebar] {
    left: 0;
    top: 0;
    position: sticky;
    width: 264px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    transition: margin-left .35s ease-in-out, left .35s ease-in-out, margin-right .35s ease-in-out, right .35s ease-in-out;
    border-right: 1px solid #edf2f9;
}


.sidebar-nav {
    flex-grow: 1;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 10px;
}

.sidebar-link,
a.sidebar-link {
    border-left: 3px solid transparent;
    color: #b8c7ce;
    cursor: pointer;
    display: block;
    font-weight: 400;
    padding: 10px 20px;
    position: relative;
    text-decoration: none;
    transition: background .1s ease-in-out
}

.sidebar-link i,
.sidebar-link svg,
a.sidebar-link i,
a.sidebar-link svg {
    fill: currentColor;
    margin-right: .75rem;
    width: 18px;
    font-size: 16px;
    vertical-align: middle;
}

.sidebar-dropdown .sidebar-dropdown .sidebar-link {
    padding: .625rem 1.5rem .625rem 4.5rem
}

.sidebar-dropdown .sidebar-dropdown .sidebar-dropdown .sidebar-link {
    padding: .625rem 1.5rem .625rem 5.75rem
}

.sidebar-link:focus {
    outline: 0
}

.sidebar-link:hover {
    color: #ffffff;
    border-left-color: transparent
}

.sidebar-link:hover {
    color: #ffffff;
}

.sidebar-link:hover i,
.sidebar-link:hover svg {
    color: #ffffff;
    fill: currentColor;
}

.sidebar-item [data-bs-toggle=collapse]:not(.collapsed),
.sidebar-item.active .sidebar-link:hover,
.sidebar-item.active>.sidebar-link {
    border-left-color: #ffffff;
    background: #1e282c;
    color: #ffffff;
}

.sidebar-item.active .sidebar-link:hover i,
.sidebar-item.active .sidebar-link:hover svg,
.sidebar-item.active>.sidebar-link i,
.sidebar-item.active>.sidebar-link svg {
    color: #ffffff
}


.sidebar-dropdown {
    background: #2c3b41;
    border-left: 3px solid #ffffff;
}

.sidebar-dropdown .sidebar-link {
    background: transparent;
    border-left: 0;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 7px 7px 40px;
    color: #8aa4af;
}


.sidebar-dropdown .sidebar-item .sidebar-link:hover {
    background: transparent;
    border-left: 0;
    color: #ffffff;
    font-weight: 400
}

.sidebar-dropdown .sidebar-item .sidebar-link:hover:hover:before {
    transform: translateX(4px)
}

.sidebar-dropdown .sidebar-item.active .sidebar-link {
    background: transparent;
    border-left: 0;
    color: #ffffff;
    font-weight: 400
}

.sidebar [data-bs-toggle=collapse] {
    position: relative
}

.sidebar [data-bs-toggle=collapse]:after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: " ";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
    transform: rotate(45deg);
    transition: all .2s ease-out
}

.sidebar [aria-expanded=true]:after,
.sidebar [data-bs-toggle=collapse]:not(.collapsed):after {
    top: 1.4rem;
    transform: rotate(-135deg)
}

.sidebar-dropdown [data-bs-toggle=collapse]:after {
    top: 1rem
}

.sidebar-dropdown [aria-expanded=true]:after,
.sidebar-dropdown [data-bs-toggle=collapse]:not(.collapsed):after {
    top: 1.2rem
}

.sidebar-brand {
    color: #333333;
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 9px 7px;
    text-align: center;
    border-bottom: 1px solid rgb(249 251 253 / 17%);
    background-color: #222d32;
}

.sidebar-brand img {
    max-height: 39px;
}

.sidebar-brand:hover {
    color: #f8f9fa;
    text-decoration: none
}

.sidebar-brand:focus {
    outline: 0
}

.sidebar-brand-text {
    display: block
}

.sidebar-brand-icon {
    display: none
}

.sidebar-toggle {
    cursor: pointer;
    display: flex;
    height: 26px;
    width: 26px;
    margin-right: 1rem;
    color: #061238;
}

.sidebar-toggle svg {
    fill: currentColor;
}

.sidebar-header {
    color: #b7bfc7;
    font-size: 13px;
    padding: 12px;
    text-align: center;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(47, 65, 96, 0.5);
}

.sidebar-badge {
    color: #fff;
    position: absolute;
    right: 15px;
    top: 14px;
    z-index: 1
}

.sidebar-cta-content {
    background: #2b3947;
    border-radius: .3rem;
    color: #e9ecef;
    margin: 1.75rem;
    padding: 1.5rem
}


footer.footer {
    background: #fff;
    padding: 1rem .875rem;
}

@media (max-width: 767.98px) {
    footer.footer {
        width: 100vw;
    }
}


.card {
    border-color: #edf2f9;
    margin-bottom: 24px;
}

.card-header {
    background: transparent;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.card-header>:first-child {
    -webkit-flex: 1 1;
    -moz-box-flex: 1;
    flex: 1 1;
}

.card-title {
    color: #12263f;
    font-size: 14px;
    font-weight: 500;
}

.card-body {
    flex: 1 1 auto;
    padding: 20px;
}

.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    text-align: center;
    color: #ffffff;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #616870;
    padding: 10px;
}

.scroll-to-top svg {
    fill: currentColor;
}

.scroll-to-top.active {
    visibility: visible;
    opacity: 0.7;
}

.scroll-to-top:hover {
    color: #ffffff;
    opacity: 1;
}


.breadcrumb-nav {
    padding: 7px 10px;
}

.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item {
    color: #6c757d;
    font-size: 13px;
    padding: 5px;
    text-align: center;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item a {
    color: #06193c;
}

.breadcrumb-nav .breadcrumb .breadcrumb-item:last-child a {
    color: #495057;
}

.password-visibility-toggler {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 8px 16px;
    color: #495057;
    user-select: none;
}

.password-visibility-toggler svg {
    vertical-align: bottom;
}

.flash-message {
    margin-top: -15px;
    border-radius: 0;
    color: #ffffff;
}

.flash-message.alert-danger {
    background-color: #C83C3C;
    border-color: #C83C3C;
}

.flash-message.alert-success {
    background-color: #158d25;
    border-color: #158d25;
}


/* Custom Modal */
.custom-alert .modal-content {
    border: none;
    border-radius: 5px;
    color: #545454;
}

.custom-alert .modal-body {
    text-align: center;
    padding: 20px;
}

.custom-alert .modal-body .custom-modal-title {
    position: relative;
    max-width: 100%;
    margin: 10px;
    color: #595959;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

.custom-alert .modal-body .custom-modal-message {
    z-index: 1;
    justify-content: center;
    margin: 10px 10px 20px;
    padding: 0;
    overflow: auto;
    color: #545454;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
}

.custom-alert .custom-alert-icon {
    text-align: center;
    display: block;
    height: 80px;
    margin-bottom: 20px;
}

.custom-alert .custom-alert-actions {
    display: flex;
    z-index: 1;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 20px auto 0;
    padding: 0;
}

.custom-alert .custom-alert-actions .btn {
    margin: 0 5px;
}

.custom-alert.custom-alert-info .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg fill='%2334a7da' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cpath d='M290.211,360.727c-5.234,0.488-10.489-0.693-15.011-3.375c-3.304-3.392-4.888-8.101-4.305-12.8 c0.122-3.912,0.589-7.806,1.396-11.636c0.781-4.394,1.79-8.744,3.025-13.033l13.731-47.244c1.416-4.663,2.352-9.459,2.793-14.313 c0-5.236,0.698-8.844,0.698-10.938c0.292-9.333-3.693-18.289-10.822-24.32c-8.769-6.732-19.689-10.041-30.72-9.309 c-7.905,0.119-15.749,1.413-23.273,3.84c-8.223,2.56-16.873,5.624-25.949,9.193l-3.956,15.36 c2.676-0.931,5.935-1.978,9.658-3.142c3.552-1.052,7.234-1.601,10.938-1.629c5.196-0.563,10.426,0.713,14.778,3.607 c2.956,3.527,4.343,8.109,3.84,12.684c-0.013,3.913-0.442,7.814-1.28,11.636c-0.815,4.073-1.862,8.378-3.142,12.916 l-13.847,47.476c-1.116,4.413-2.009,8.879-2.676,13.382c-0.544,3.855-0.816,7.743-0.815,11.636 c-0.057,9.397,4.24,18.291,11.636,24.087c8.904,6.837,19.98,10.226,31.185,9.542c7.89,0.162,15.753-0.978,23.273-3.375 c6.594-2.25,15.399-5.469,26.415-9.658l3.724-14.662c-2.984,1.238-6.057,2.249-9.193,3.025 C298.346,360.583,294.274,360.935,290.211,360.727z'%3E%3C/path%3E%3Cpath d='M304.756,136.727c-6.333-5.816-14.677-8.945-23.273-8.727c-8.591-0.194-16.927,2.932-23.273,8.727 c-11.632,10.03-12.931,27.591-2.9,39.224c0.894,1.037,1.863,2.006,2.9,2.9c13.252,11.853,33.294,11.853,46.545,0 c11.632-10.129,12.851-27.769,2.722-39.401C306.635,138.481,305.725,137.571,304.756,136.727z'%3E%3C/path%3E%3Cpath d='M256,0C114.615,0,0,114.615,0,256s114.615,256,256,256s256-114.615,256-256S397.385,0,256,0z M256,488.727 C127.468,488.727,23.273,384.532,23.273,256S127.468,23.273,256,23.273S488.727,127.468,488.727,256S384.532,488.727,256,488.727 z'%3E%3C/path%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert.custom-alert-success .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512.257 512.257' fill='%239dd97b' xml:space='preserve' %3E%3Cpath d='M147.379,213.709c-4.881-4.18-12.227-3.612-16.407,1.269c-3.731,4.356-3.731,10.781,0,15.138L247.335,346.48 c4.493,4.595,11.86,4.678,16.455,0.185c0.062-0.061,0.124-0.122,0.185-0.185L458.07,142.843l16.64-17.455l33.396-34.909 c4.92-4.134,5.557-11.474,1.423-16.395c-4.134-4.92-11.474-5.557-16.395-1.423c-0.663,0.557-1.261,1.186-1.785,1.876 l-29.905,31.069l-16.175,16.989L255.364,321.694L147.379,213.709z'%3E%3C/path%3E%3Cpath fill='rgba(165,220,134,.5)' d='M490.768,158.785h0.233c-4.742-4.338-12.102-4.01-16.44,0.732c-2.691,2.942-3.689,7.057-2.644,10.905 c47.548,119.414-10.711,254.763-130.124,302.31S87.03,462.021,39.482,342.607C-8.066,223.194,50.193,87.845,169.607,40.297 C257.374,5.35,357.559,26.925,423.161,94.901c4.976,4.067,12.307,3.33,16.374-1.646c3.66-4.478,3.476-10.964-0.432-15.227 c-0.48-0.348-0.986-0.66-1.513-0.931C338.714-23.513,176.998-24.919,76.388,73.957s-102.017,260.592-3.141,361.202 c98.876,100.611,260.592,102.017,361.202,3.141c72.747-71.493,95.986-179.413,59.112-274.511 C493.061,161.914,492.101,160.194,490.768,158.785z'%3E%3C/path%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert.custom-alert-error .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='100px' height='100px' viewBox='0 0 512 512' style='fill:%23DC3545;' xml:space='preserve'%3E%3Cpath d='M403.1,108.9c-81.2-81.2-212.9-81.2-294.2,0s-81.2,212.9,0,294.2c81.2,81.2,212.9,81.2,294.2,0 S484.3,190.1,403.1,108.9z M390.8,390.8c-74.3,74.3-195.3,74.3-269.6,0c-74.3-74.3-74.3-195.3,0-269.6s195.3-74.3,269.6,0 C465.2,195.5,465.2,316.5,390.8,390.8z'/%3E%3Cpolygon points='340.2,160 255.8,244.2 171.8,160.4 160,172.2 244,256 160,339.8 171.8,351.6 255.8,267.8 340.2,352 352,340.2 267.6,256 352,171.8 '/%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert.custom-alert-warning .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg fill='%23ff9000' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 338.531 338.531' xml:space='preserve'%3E%3Cpath d='M333.413,275.866l-139.2-239.6c-6.4-10.8-15.6-17.2-25.2-17.2c-10,0-19.2,6.4-25.2,17.2l-138.4,239.6 c-6.4,10.8-7.2,22-2,30.4c4.8,8.4,14.8,13.2,27.6,13.2h276.8c12.4,0,22.4-4.8,27.6-13.2 C340.213,297.866,339.413,286.666,333.413,275.866z M320.213,297.866c-2,3.2-6.4,4.8-12.8,4.8h-276.8c-6.4,0-11.2-2-12.8-4.8 c-2-3.2-1.2-8,2-13.6l138.4-239.6c3.2-5.6,7.2-8.8,10.8-8.8c3.6,0,7.6,3.2,10.8,8.8l138.4,239.6 C321.413,289.866,322.213,294.666,320.213,297.866z'%3E%3C/path%3E%3Cpath d='M169.013,97.866c-4.8,0-8.4,3.6-8.4,8.4v111.2c0,4.8,3.6,8.4,8.4,8.4s8.4-3.6,8.4-8.4v-111.2 C177.413,101.466,173.813,97.866,169.013,97.866z'%3E%3C/path%3E%3Ccircle cx='169.013' cy='259.466' r='14.8'%3E%3C/circle%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert.custom-alert-question .custom-alert-icon {
    background: url("data:image/svg+xml,%3Csvg fill='%2387adbd' xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 612 612' xml:space='preserve'%3E%3Cpath d='m306.022 612v-13.984l-.022 13.984c-168.73 0-306-137.275-306-306.005 0-168.725 137.27-305.995 306-305.995s306 137.27 306 305.995c0 168.73-137.265 306.005-305.978 306.005zm-.022-584.03c-153.308 0-278.03 124.723-278.03 278.025 0 153.307 124.722 278.035 278.03 278.035h.022c153.29 0 278.008-124.729 278.008-278.036 0-153.302-124.722-278.024-278.03-278.024z' fill='%23c9dae1'%3E%3C/path%3E%3Cpath d='m306 370.409c-7.725 0-13.985-6.26-13.985-13.985v-59.195c0-7.725 6.26-13.985 13.985-13.985 30.951 0 56.13-25.178 56.13-56.129 0-30.957-25.179-56.146-56.13-56.146s-56.135 25.189-56.135 56.146c0 7.725-6.26 13.985-13.985 13.985s-13.985-6.26-13.985-13.985c0-46.379 37.731-84.116 84.105-84.116s84.1 37.737 84.1 84.116c0 41.608-30.375 76.257-70.114 82.936v46.374c-.002 7.724-6.26 13.984-13.986 13.984z'%3E%3C/path%3E%3Ccircle cx='305.995' cy='433.743' r='23.03' fill='%2387adbd'%3E%3C/circle%3E%3C/svg%3E") center center no-repeat;
}

.custom-alert .close {
    position: absolute;
    right: 20px;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: .5;
}

/* Custom Modal */

/* Toast Messages */
#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}
.toast-top-right {
    top: 12px;
    right: 12px;
}
.toast-top-left {
    top: 12px;
    left: 12px;
}
.toast-bottom-right {
    bottom: 12px;
    right: 12px;
}
.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}
#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#toast-container > .toast {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999;
    color: #fff;
    opacity: 0.8;
}
#toast-container > .toast .btn-close-toast {
    margin: auto 0.5rem auto auto;
    filter: invert(1) grayscale(100%) brightness(200%);
}
#toast-container > .toast:hover,
#toast-container > .toast:focus {
    opacity: 1;
}
@media (max-width: 576px) {
    #toast-container > .toast {
      width: 300px;
    }
}
/* Toast Messages */

.qr-code-wrapper {
    display: inline-block;
    padding: 10px;
    margin: 30px auto;
    border: 1px solid #d8dee4;
    border-radius: 6px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}
.qr-code-wrapper svg {
    fill: #000000;
    width: 120px;
}

.mw-500 {
    max-width: 500px;
}

.form-switch .form-check-input {
    width: 36px;
    margin-left: -30px;
    margin-right: 5px;
    margin-top: 2px;
    border-radius: 36px;
    height: 18px;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #ced4da;
    background-image: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #fa6767;
}

.table>:not(:first-child) {
    border-top: 1px solid currentColor;
}

.table thead th {
    background-color: #f9fbfd;
    font-size: .8125rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: #95aac9;
    vertical-align: middle;
    padding: 12px 10px;
}

.table thead th,
tbody td,
tbody th {
    vertical-align: middle;
}



.stat {
    background: #e0eafc;
    border-radius: 50%;
    height: 48px;
    padding: 0.75rem;
    width: 48px;
}

.stat svg {
    color: #3f80ea !important;
    height: 24px;
    width: 24px;
}

.illustration {
    background: #e0eafc;
    color: #3f80ea;
}

.illustration-text {
    color: #3f80ea;
}

.illustration-text h4 {
    font-weight: 500;
}

.illustration-img {
    max-width: 150px;
    width: 100%;
}

@media(min-width:1440px) {
    .illustration-img {
        max-width: 175px;
    }
}



.card {
    border-color: #d9e3ea;
}

.card-title {
    margin: 5px 0;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
}

.custom-alert {
    text-align: center;
}

.custom-alert .icon {
    margin-bottom: 5px;
}

.custom-alert .icon svg {
    fill: var(--color-primary);
}

.custom-alert .text {
    color: #535658;
    font-size: 15px;
}

.custom-alert .text p {
    margin-bottom: 0;
}

.alert-dismissible .btn-close {
    z-index: 0;
}



.choices__inner {
    background-color: #ffffff;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    min-height: auto;
}
.choices[data-type*=select-one] .choices__inner {
    padding: 4px 5px;
}
.choices__list--multiple .choices__item {
    border-radius: 5px;
    margin-bottom: 0;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.choices__input {
    margin-bottom: 0;
    background-color: #ffffff;
}
.choices__list--single {
    padding: 4px;
}
.choices[data-type*=select-one]::after {
    display: none;
}
.form-control {
    font-size: 15px;
}

.table-sortable .sorting {
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url(../images/sort_both.png);
    padding-right: 20px;
}
.table-sortable .sorting.asc {
    background-image: url(../images/sort_asc.png) !important;
}
.table-sortable .sorting.desc {
    background-image: url(../images/sort_desc.png) !important;
}

/* Checkbox */
.styled-checkbox {
    position: absolute;
    opacity: 0;
}
.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}
.styled-checkbox + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: sub;
    width: 20px;
    height: 20px;
    background: #ccc;
}
.styled-checkbox:hover + label:before {
    background: var(--color-primary);
}
.styled-checkbox:focus + label:before {
    box-shadow: none;
}
.styled-checkbox:checked + label:before {
    background: var(--color-primary);
}
.styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}
.styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}
.styled-checkbox:checked + label:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 7px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* Checkbox */

/* Styled Radio*/
.styled-radio {
    display: block;
    position: relative;
}

.styled-radio label {
    display: block;
    cursor: pointer;
}
.styled-radio input[type="radio"] {
    position: absolute;
    left: -9999em;
}

.styled-radio input[type="radio"] + label:before {
    background-size: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    content: "";
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #e1e1e1;
    top: 50%;
    transform: translateY(-50%);
}
.styled-radio input[type="radio"]:checked + label:before {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9Jy00IC00IDggOCc+PGNpcmNsZSByPSczJyBmaWxsPScjZmZmJy8+PC9zdmc+);
    top: 50%;
    transform: translateY(-50%);
}
/* Styled Radio*/

/* Date Range Picker */
.daterangepicker{position:absolute;color:inherit;background-color:#fff;border-radius:4px;border:1px solid #ddd;width:278px;max-width:none;padding:0;margin-top:7px;top:100px;left:20px;z-index:3001;display:none;font-family:arial;font-size:15px;line-height:1em}.daterangepicker:after,.daterangepicker:before{position:absolute;display:inline-block;border-bottom-color:rgba(0,0,0,.2);content:''}.daterangepicker:before{top:-7px;border-right:7px solid transparent;border-left:7px solid transparent;border-bottom:7px solid #ccc}.daterangepicker:after{top:-6px;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent}.daterangepicker.opensleft:before{right:9px}.daterangepicker.opensleft:after{right:10px}.daterangepicker.openscenter:before{left:0;right:0;width:0;margin-left:auto;margin-right:auto}.daterangepicker.openscenter:after{left:0;right:0;width:0;margin-left:auto;margin-right:auto}.daterangepicker.opensright:before{left:9px}.daterangepicker.opensright:after{left:10px}.daterangepicker.drop-up{margin-top:-7px}.daterangepicker.drop-up:before{top:initial;bottom:-7px;border-bottom:initial;border-top:7px solid #ccc}.daterangepicker.drop-up:after{top:initial;bottom:-6px;border-bottom:initial;border-top:6px solid #fff}.daterangepicker.single .daterangepicker .ranges,.daterangepicker.single .drp-calendar{float:none}.daterangepicker.single .drp-selected{display:none}.daterangepicker.show-calendar .drp-calendar{display:block}.daterangepicker.show-calendar .drp-buttons{display:block}.daterangepicker.auto-apply .drp-buttons{display:none}.daterangepicker .drp-calendar{display:none;max-width:270px}.daterangepicker .drp-calendar.left{padding:8px 0 8px 8px}.daterangepicker .drp-calendar.right{padding:8px}.daterangepicker .drp-calendar.single .calendar-table{border:none}.daterangepicker .calendar-table .next span,.daterangepicker .calendar-table .prev span{color:#fff;border:solid #000;border-width:0 2px 2px 0;border-radius:0;display:inline-block;padding:3px}.daterangepicker .calendar-table .next span{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.daterangepicker .calendar-table .prev span{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.daterangepicker .calendar-table td,.daterangepicker .calendar-table th{white-space:nowrap;text-align:center;vertical-align:middle;min-width:32px;width:32px;height:24px;line-height:24px;font-size:12px;border-radius:4px;border:1px solid transparent;white-space:nowrap;cursor:pointer}.daterangepicker .calendar-table{border:1px solid #fff;border-radius:4px;background-color:#fff}.daterangepicker .calendar-table table{width:100%;margin:0;border-spacing:0;border-collapse:collapse}.daterangepicker td.available:hover,.daterangepicker th.available:hover{background-color:#eee;border-color:transparent;color:inherit}.daterangepicker td.week,.daterangepicker th.week{font-size:80%;color:#ccc}.daterangepicker td.off,.daterangepicker td.off.end-date,.daterangepicker td.off.in-range,.daterangepicker td.off.start-date{background-color:#fff;border-color:transparent;color:#999}.daterangepicker td.in-range{background-color:#ebf4f8;border-color:transparent;color:#000;border-radius:0}.daterangepicker td.start-date{border-radius:4px 0 0 4px}.daterangepicker td.end-date{border-radius:0 4px 4px 0}.daterangepicker td.start-date.end-date{border-radius:4px}.daterangepicker td.active,.daterangepicker td.active:hover{background-color:#357ebd;border-color:transparent;color:#fff}.daterangepicker th.month{width:auto}.daterangepicker option.disabled,.daterangepicker td.disabled{color:#999;cursor:not-allowed;text-decoration:line-through}.daterangepicker select.monthselect,.daterangepicker select.yearselect{font-size:12px;padding:1px;height:auto;margin:0;cursor:default}.daterangepicker select.monthselect{margin-right:2%;width:56%}.daterangepicker select.yearselect{width:40%}.daterangepicker select.ampmselect,.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect{width:50px;margin:0 auto;background:#eee;border:1px solid #eee;padding:2px;outline:0;font-size:12px}.daterangepicker .calendar-time{text-align:center;margin:4px auto 0 auto;line-height:30px;position:relative}.daterangepicker .calendar-time select.disabled{color:#ccc;cursor:not-allowed}.daterangepicker .drp-buttons{clear:both;text-align:right;padding:8px;border-top:1px solid #ddd;display:none;line-height:12px;vertical-align:middle}.daterangepicker .drp-selected{display:inline-block;font-size:12px;padding-right:8px}.daterangepicker .drp-buttons .btn{margin-left:8px;font-size:12px;font-weight:700;padding:4px 8px}.daterangepicker.show-ranges.single.rtl .drp-calendar.left{border-right:1px solid #ddd}.daterangepicker.show-ranges.single.ltr .drp-calendar.left{border-left:1px solid #ddd}.daterangepicker.show-ranges.rtl .drp-calendar.right{border-right:1px solid #ddd}.daterangepicker.show-ranges.ltr .drp-calendar.left{border-left:1px solid #ddd}.daterangepicker .ranges{float:none;text-align:left;margin:0}.daterangepicker.show-calendar .ranges{margin-top:8px}.daterangepicker .ranges ul{list-style:none;margin:0 auto;padding:0;width:100%}.daterangepicker .ranges li{font-size:12px;padding:8px 12px;cursor:pointer}.daterangepicker .ranges li:hover{background-color:#eee}.daterangepicker .ranges li.active{background-color:#08c;color:#fff}@media (min-width:564px){.daterangepicker{width:auto}.daterangepicker .ranges ul{width:140px}.daterangepicker.single .ranges ul{width:100%}.daterangepicker.single .drp-calendar.left{clear:none}.daterangepicker.single .drp-calendar,.daterangepicker.single .ranges{float:left}.daterangepicker{direction:ltr;text-align:left}.daterangepicker .drp-calendar.left{clear:left;margin-right:0}.daterangepicker .drp-calendar.left .calendar-table{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.daterangepicker .drp-calendar.right{margin-left:0}.daterangepicker .drp-calendar.right .calendar-table{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.daterangepicker .drp-calendar.left .calendar-table{padding-right:8px}.daterangepicker .drp-calendar,.daterangepicker .ranges{float:left}}@media (min-width:730px){.daterangepicker .ranges{width:auto}.daterangepicker .ranges{float:left}.daterangepicker.rtl .ranges{float:right}.daterangepicker .drp-calendar.left{clear:none!important}}
svg{-ms-touch-action:none;touch-action:none}.jvm-zoomin,.jvm-zoomout,image,text{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jvm-container{-ms-touch-action:none;touch-action:none;position:relative;overflow:hidden;height:100%;width:100%}.jvm-tooltip{border-radius:3px;background-color:#5c5cff;font-family:sans-serif,Verdana;font-size:smaller;box-shadow:1px 2px 12px rgba(0,0,0,.2);padding:3px 5px;white-space:nowrap;position:absolute;display:none;color:#fff}.jvm-tooltip.active{display:block}.jvm-zoom-btn{border-radius:3px;background-color:#292929;padding:3px;box-sizing:border-box;position:absolute;line-height:10px;cursor:pointer;color:#fff;height:15px;width:15px;left:10px}.jvm-zoom-btn.jvm-zoomout{top:30px}.jvm-zoom-btn.jvm-zoomin{top:10px}.jvm-series-container{right:15px;position:absolute}.jvm-series-container.jvm-series-h{bottom:15px}.jvm-series-container.jvm-series-v{top:15px}.jvm-series-container .jvm-legend{background-color:#fff;border:1px solid #e5e7eb;margin-left:.75rem;border-radius:.25rem;border-color:#e5e7eb;padding:.6rem;box-shadow:0 1px 2px 0 rgba(0,0,0,.05);float:left}.jvm-series-container .jvm-legend .jvm-legend-title{line-height:1;border-bottom:1px solid #e5e7eb;padding-bottom:.5rem;margin-bottom:.575rem;text-align:left}.jvm-series-container .jvm-legend .jvm-legend-inner{overflow:hidden}.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick{overflow:hidden;min-width:40px}.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick:not(:first-child){margin-top:.575rem}.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-sample{border-radius:4px;margin-right:.65rem;height:16px;width:16px;float:left}.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-text{font-size:12px;text-align:center;float:left}.jvm-line[animation=true]{-webkit-animation:jvm-line-animation 10s linear forwards infinite;animation:jvm-line-animation 10s linear forwards infinite}@-webkit-keyframes jvm-line-animation{from{stroke-dashoffset:250}}@keyframes jvm-line-animation{from{stroke-dashoffset:250}}
.daterangepicker-custom-input{cursor:pointer}.daterangepicker-wrapper{border:none;padding:0;cursor:pointer}.daterangepicker{border:none;font-family:Inter,sans-serif;z-index:98;background-color:#fff;box-shadow:0 .6125rem 2.5rem .6125rem rgba(140,152,164,.175);margin-top:0;border-radius:.75rem}.daterangepicker.opensright::after,.daterangepicker.opensright::before{left:1rem}.daterangepicker::after,.daterangepicker::before{top:0;border-bottom-color:#fff;border-bottom-width:0}.daterangepicker.drop-up::before{border-top-color:#fff}.daterangepicker .drp-calendar{max-width:18.75rem}.daterangepicker .drp-calendar.left{padding:1rem 1rem}.daterangepicker .drp-calendar.right{padding:1rem 1rem}.daterangepicker th.next,.daterangepicker th.prev{min-width:auto;width:2.40625rem;height:2.40625rem;color:#377dff;font-size:.875rem;border-radius:50%}.daterangepicker th.next:hover,.daterangepicker th.prev:hover{background-color:rgba(55,125,255,.1)}.daterangepicker th.next:hover .daterangepicker-custom-arrow,.daterangepicker th.prev:hover .daterangepicker-custom-arrow{color:#377dff}.daterangepicker .calendar-table{background-color:#fff;border-width:0}.daterangepicker .calendar-table table{border-collapse:separate;border-spacing:0 .25rem}.daterangepicker .calendar-table th:not(.month){color:#97a4af;font-weight:600;text-transform:uppercase}.daterangepicker .calendar-table th.month{font-size:.875rem;font-weight:600}.daterangepicker .calendar-table td{min-width:2.40625rem;width:2.40625rem;height:2.40625rem;font-size:.875rem;line-height:2.15625rem}.daterangepicker .calendar-table .next span,.daterangepicker .calendar-table .prev span{border-color:#677788}.daterangepicker .calendar-table .next:hover span,.daterangepicker .calendar-table .prev:hover span{border-color:#377dff}.daterangepicker td.available:not(.in-range){border-radius:50%}.daterangepicker td.available:hover:not(.active){color:#377dff;background-color:rgba(55,125,255,.1)}.daterangepicker td.in-range{color:#677788;background-color:rgba(231,234,243,.5)}.daterangepicker td.active.start-date.end-date,.daterangepicker td.today.start-date.end-date{border-radius:50%}.daterangepicker td.active,.daterangepicker td.active:hover{color:#fff;background-color:#377dff}.daterangepicker td.active.start-date{border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:50rem;border-bottom-left-radius:50rem}.daterangepicker td.active.end-date{border-top-right-radius:50rem;border-bottom-right-radius:50rem;border-top-left-radius:0;border-bottom-left-radius:0}.daterangepicker td.off,.daterangepicker td.off.end-date,.daterangepicker td.off.in-range,.daterangepicker td.off.start-date{color:#bdc5d1;background-color:transparent}.daterangepicker .drp-buttons,.daterangepicker.show-ranges.ltr .drp-calendar.left{border-color:rgba(231,234,243,.7)}.daterangepicker .drp-buttons{padding:1rem 1rem}.daterangepicker .drp-buttons .btn{font-size:.875rem;font-weight:400;padding:.6125rem 1rem}.daterangepicker .cancelBtn{background-color:#fff;border-color:rgba(231,234,243,.7)}.daterangepicker .cancelBtn.active,.daterangepicker .cancelBtn:active,.daterangepicker .cancelBtn:focus,.daterangepicker .cancelBtn:hover{color:#1366ff;box-shadow:0 3px 6px -2px rgba(140,152,164,.25)}.daterangepicker .drp-selected{color:#71869d}.daterangepicker .ranges ul{min-width:10rem;padding-top:.5rem;padding-bottom:.5rem}.daterangepicker .ranges li{color:#677788;font-size:.875rem;line-height:1.5;border-radius:.3125rem;padding:.5rem 1rem;margin-left:.625rem;margin-right:.625rem}.daterangepicker .ranges li:hover{color:#1366ff;background-color:transparent}.daterangepicker .ranges li.active{color:#377dff;background-color:rgba(55,125,255,.1)}.daterangepicker select.ampmselect,.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect{cursor:pointer;width:3.5rem;font-size:.8125rem;color:#1e2022;background-color:transparent;border-color:rgba(231,234,243,.7);padding:.25rem .25rem;border-radius:.5rem}.daterangepicker select.ampmselect:hover,.daterangepicker select.hourselect:hover,.daterangepicker select.minuteselect:hover,.daterangepicker select.secondselect:hover{color:#1366ff}@media (max-width:776.98px){.daterangepicker{width:auto;max-width:19rem}.daterangepicker .drp-calendar{max-width:100%}.daterangepicker .drp-calendar,.daterangepicker .ranges{float:none}.daterangepicker .ranges ul{width:100%;margin:0}.daterangepicker .drp-selected{display:block;margin-bottom:1rem}}
/* Date Range Picker */


.col-form-label {
    font-weight: 500;
}

.custom-select-caret {
    border-color: var(--color-primary);
    display: block;
    width: 2.1428571429em;
    height: 43%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border-left: 1px rgba(179, 179, 179, 0.5) solid;
    outline: none;
}
.custom-select-caret svg {
    color: var(--color-primary);
    outline: none;
    fill: currentColor;
    position: absolute;
    margin-left: -2px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
}

.mw-0 {
    min-width: 0;
}
.py-70 {
    padding: 70px 0;
}


.order-status-1{
    color: #fff;
    background: #9b7ad6;
}
.order-status-2 {
    color: #fff;
    background: #9e9e9e;
}
.order-status-3 {
    color: #ffffff;
    background-color: #e37d25;
}
.order-status-4 {
    color: #fff;
    background: #198754;
}
.order-status-5 {
    color: #fff;
    background: #e45d5d;
}
.order-status-6 {
    color: #fff;
    background: #e37d25;
}
.order-status-7 {
    color: #fff;
    background: #3d8a40;
}
.order-status-8, .order-status-11 {
    color: #fff;
    background: #ab5721;
}
.order-status-9, .order-status-10, .order-status-12 {
    color: white;
    background-color: #e45d5d;
}


.badge {
    border-radius: 3px;
    font-weight: 500;
    padding: 5px 6px;
}

.badge-empty {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
}
.badge-empty:empty {
    display: block !important;
}


.order-status-1-text{
    color: #9b7ad6;
}
.order-status-2-text {
    color: #9e9e9e;
}
.order-status-3-text {
    color: #315fdd;
}
.order-status-4-text {
    color: #64ce67;
}
.order-status-5-text {
    color: #d33c99;
}
.order-status-6-text {
    color: #e37d25;
}
.order-status-7-text {
    color: #3d8a40;
}
.order-status-8-text, .order-status-11-text {
    color: #ab5721;
}
.order-status-9-text, .order-status-10-text, .order-status-12-text {
    color: #e45d5d;
}

.card-shadow {
    box-shadow: 0 0 10px rgba(18, 38, 63, 0.05);
    border: none;
}



/* Chrome, Safari, Edge, Opera */
input.hide-input-arrow::-webkit-outer-spin-button,
input.hide-input-arrow::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number].hide-input-arrow {
    appearance: textfield;
    -moz-appearance: textfield;
}

.order-form-table td {
    padding: 5px 7px;
    line-height: 1.2;
}
.order-form-table.table .btn-sm {
    --bs-btn-padding-y: 5px;
    --bs-btn-padding-x: 8px;
    line-height: 1.2;
}
.order-form-table.table .form-control-sm {
    padding: 3px 5px;
    line-height: 1.2;
    min-height: 30px;
}



.iti__flag {
    background-image: url("../images/flags/flags.png") !important;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("../images/flags/flags@2x.png") !important;
    }
}


.col-sidebar {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 8px;
    padding-left: 8px;
}
@media (min-width: 768px) {
    .col-sidebar {
        -webkit-flex-basis: 316px;
        -ms-flex-preferred-size: 316px;
        flex-basis: 316px;
        max-width: 316px;
    }
}
@media (min-width: 992px) {
    .col-sidebar+.col {
        max-width: calc(100% - 316px);
    }
}

.sidebar-col {
    width: 350px;
}

@media (width < 1200px) {
    .sidebar-col {
        width: 100%;
    }
}

.sticky-sidebar {
    position: sticky;
    top: 130px;
}


.table-hover tr:hover {
    background-color: #d5e1ed;
}


.has-error {
    border-color: #dc3545;
}

.error-list {
    margin-bottom: 10px;
    color: #dd2619;
}
.error-list span {
    color: #dd2619;
    display: block;
    margin-left: 5px;
}

.error-list span:before {
    content: "✖";
    margin-right: 8px;
}



.input-field {
    padding: 0 !important;
}
.input-field input {
    padding: 5px;
    border: none;
    background-color: transparent;
    box-shadow: none !important;
    border-radius: 0;
}
.input-field input:disabled {
    background-color: transparent;
}





/* #################### INPUT FILE BROWSER #################### */
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  .inputfile + label {
    margin-bottom: 0;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 8px 20px;
    border-radius: 3px;
    transition: all 0.2s ease-in-out;
  }
  @media screen and (prefers-reduced-motion: reduce) {
    .inputfile + label {
      transition: none;
    }
  }
  .inputfile + label i {
    vertical-align: middle;
    margin-top: -0.25em;
    margin-right: 10px;
    line-height: 0;
  }
  .inputfile + label.bg-primary:hover {
    background-color: #0759ad !important;
  }
  .inputfile + label.bg-success:hover {
    background-color: #1fa707 !important;
  }
  .inputfile + label.bg-warning:hover {
    background-color: #e78c0b !important;
  }
  .inputfile + label.bg-danger:hover {
    background-color: #d32535 !important;
  }
  .inputfile + label.bg-info:hover {
    background-color: #148ea1 !important;
  }
  .inputfile + label.bg-indigo:hover {
    background-color: #5b0cdd;
  }
  .inputfile + label.bg-purple:hover {
    background-color: #643ab0;
  }
  .inputfile + label.bg-pink:hover {
    background-color: #e5277e;
  }
  .inputfile + label.bg-orange:hover {
    background-color: #dd690c;
  }
  .inputfile + label.bg-teal:hover {
    background-color: #189987;
  }
  .inputfile + label.bg-dark:hover {
    background-color: #292d32;
  }
  .inputfile + label.if-outline {
    padding: 6px 18px;
  }
  .inputfile + label.if-outline-primary {
    border: 2px solid #0866c6;
    color: #0866c6;
  }
  .inputfile + label.if-outline-primary:hover {
    color: #0759ad;
    border-color: #0759ad;
  }
  .inputfile + label.if-outline-success {
    border: 2px solid #23bf08;
    color: #23bf08;
  }
  .inputfile + label.if-outline-success:hover {
    color: #1fa707;
    border-color: #1fa707;
  }
  .inputfile + label.if-outline-warning {
    border: 2px solid #f49917;
    color: #f49917;
  }
  .inputfile + label.if-outline-warning:hover {
    color: #e78c0b;
    border-color: #e78c0b;
  }
  .inputfile + label.if-outline-danger {
    border: 2px solid #dc3545;
    color: #dc3545;
  }
  .inputfile + label.if-outline-danger:hover {
    color: #d32535;
    border-color: #d32535;
  }
  .inputfile + label.if-outline-info {
    border: 2px solid #17a2b8;
    color: #17a2b8;
  }
  .inputfile + label.if-outline-info:hover {
    color: #148ea1;
    border-color: #148ea1;
  }
  .inputfile + label.if-outline-indigo {
    border: 2px solid #6610f2;
    color: #6610f2;
  }
  .inputfile + label.if-outline-indigo:hover {
    color: #5b0cdd;
    border-color: #5b0cdd;
  }
  .inputfile + label.if-outline-purple {
    border: 2px solid #6f42c1;
    color: #6f42c1;
  }
  .inputfile + label.if-outline-purple:hover {
    color: #643ab0;
    border-color: #643ab0;
  }
  .inputfile + label.if-outline-pink {
    border: 2px solid #e83e8c;
    color: #e83e8c;
  }
  .inputfile + label.if-outline-pink:hover {
    color: #e5277e;
    border-color: #e5277e;
  }
  .inputfile + label.if-outline-orange {
    border: 2px solid #f27510;
    color: #f27510;
  }
  .inputfile + label.if-outline-orange:hover {
    color: #dd690c;
    border-color: #dd690c;
  }
  .inputfile + label.if-outline-teal {
    border: 2px solid #1caf9a;
    color: #1caf9a;
  }
  .inputfile + label.if-outline-teal:hover {
    color: #189987;
    border-color: #189987;
  }
  .inputfile + label.if-outline-dark {
    border: 2px solid #343a40;
    color: #343a40;
  }
  .inputfile + label.if-outline-dark:hover {
    color: #292d32;
    border-color: #292d32;
  }
  .inputfile + .if-style-1 {
    text-align: center;
    color: #17a2b8;
  }
  .inputfile + .if-style-1 .icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: #17a2b8;
    color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    margin: 0 auto 10px;
  }
  .inputfile + .if-style-1 .icon-wrapper > svg {
    height: 50px;
    margin-right: 0;
    line-height: 0;
  }
  .inputfile + .if-style-1.if-primary {
    color: #0866c6;
  }
  .inputfile + .if-style-1.if-primary .icon-wrapper {
    background-color: #0866c6;
  }



  .resizer {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    cursor: col-resize;
    user-select: none;
  }
  
  .resizer:hover,
  .resizing {
    border-right: 2px solid blue;
  }

  .dragging {
    background-color: #f0f0f0;
  }


.show-on-hover {
    display: none;
    cursor: pointer;
}

td:hover .show-on-hover {
    display: inline-block;
}


.select2-container--default .select2-selection--single {
    border: none !important;
    border-radius: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    display: block;
    width: 100%;
    padding: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
