.tooltip {
    --bs-tooltip-zindex: 1080;
    --bs-tooltip-max-width: 200px;
    --bs-tooltip-padding-x: 0.5rem;
    --bs-tooltip-padding-y: 0.25rem;
    --bs-tooltip-margin: 0.5rem;
    --bs-tooltip-font-size: 0.875rem;
    --bs-tooltip-color: #fff;
    --bs-tooltip-bg: #000;
    --bs-tooltip-border-radius: 0.375rem;
    --bs-tooltip-opacity: 0.9;
    --bs-tooltip-arrow-width: 0.8rem;
    --bs-tooltip-arrow-height: 0.4rem;
    z-index: var(--bs-tooltip-zindex);
    display: block;
    padding: var(--bs-tooltip-arrow-height);
    margin: var(--bs-tooltip-margin);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-tooltip-font-size);
    word-wrap: break-word;
    opacity: 0;
}
.tooltip.show {
    opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
    display: block;
    width: var(--bs-tooltip-arrow-width);
    height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
    bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    top: -1px;
    border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
    border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
    left: 0;
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    right: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
    border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
    top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
    border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
    right: 0;
    width: var(--bs-tooltip-arrow-height);
    height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    left: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
    border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
    max-width: var(--bs-tooltip-max-width);
    padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
    color: var(--bs-tooltip-color);
    text-align: center;
    background-color: var(--bs-tooltip-bg);
    border-radius: var(--bs-tooltip-border-radius);
    font-size: 13px;
}

.popover {
    --bs-popover-zindex: 1070;
    --bs-popover-max-width: 276px;
    --bs-popover-font-size: 0.875rem;
    --bs-popover-bg: #fff;
    --bs-popover-border-width: 1px;
    --bs-popover-border-color: var(--bs-border-color-translucent);
    --bs-popover-border-radius: 0.5rem;
    --bs-popover-inner-border-radius: calc(0.5rem - 1px);
    --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-popover-header-padding-x: 1rem;
    --bs-popover-header-padding-y: 0.5rem;
    --bs-popover-header-font-size: 1rem;
    --bs-popover-header-color: ;
    --bs-popover-header-bg: #f0f0f0;
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: 1rem;
    --bs-popover-body-color: #212529;
    --bs-popover-arrow-width: 1rem;
    --bs-popover-arrow-height: 0.5rem;
    --bs-popover-arrow-border: var(--bs-popover-border-color);
    z-index: var(--bs-popover-zindex);
    display: block;
    max-width: var(--bs-popover-max-width);
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: var(--bs-popover-font-size);
    word-wrap: break-word;
    background-color: var(--bs-popover-bg);
    background-clip: padding-box;
    border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
    border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
    display: block;
    width: var(--bs-popover-arrow-width);
    height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
    border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
    bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
    border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
    bottom: 0;
    border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
    bottom: var(--bs-popover-border-width);
    border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
    left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
    width: var(--bs-popover-arrow-height);
    height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
    border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
    left: 0;
    border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
    left: var(--bs-popover-border-width);
    border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
    top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
    border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
    top: 0;
    border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
    top: var(--bs-popover-border-width);
    border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: var(--bs-popover-arrow-width);
    margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
    content: "";
    border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
    right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
    width: var(--bs-popover-arrow-height);
    height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
    border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
    right: 0;
    border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
    right: var(--bs-popover-border-width);
    border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
    padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
    margin-bottom: 0;
    font-size: var(--bs-popover-header-font-size);
    color: var(--bs-popover-header-color);
    background-color: var(--bs-popover-header-bg);
    border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
    border-top-left-radius: var(--bs-popover-inner-border-radius);
    border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
    display: none;
}

.popover-body {
    padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
    color: var(--bs-popover-body-color);
}

@charset "UTF-8"; /*!
 * Theme: Blue
 * Package: DashLite v3.0.3
 * Updated: 07.01.2022
 * Author: Softnio
 * Author URI: http://themeforest.net/user/softnio
**/
.nk-sidebar.is-dark {
  background: #0f192a;
  border-right-color: #1c2f50;
}

.nk-sidebar.is-theme {
  background: #0a2d6c;
  border-right-color: #0f419a;
}

.is-dark .nk-sidebar-head {
  border-color: #1c2f50;
}

.is-theme .nk-sidebar-head {
  border-color: #0f419a;
}

.nk-sidebar.is-dark .user-balance-alt, .nk-sidebar.is-theme .user-balance-alt {
  color: rgba(255, 255, 255, 0.8);
}

.nk-header {
  background: #f5f6fa;
  border-bottom-color: #e5e9f2;
}

.nk-header.is-dark:not([class*=bg-]) {
  background: #0f192a;
}

.nk-header.is-theme:not([class*=bg-]) {
  background: #0a2d6c;
}

.is-dark .nk-menu-link {
  color: #8699b2;
}

.is-dark .nk-menu-link:hover {
  background: #172641;
}

.is-dark .active > .nk-menu-link {
  background: #172641;
}

.is-dark .nk-menu-icon {
  color: #9faec2;
}

.is-dark .nk-menu-badge {
  color: #6facfe;
  background: #1c2f50;
}

.is-dark .nk-menu-sub .active > .nk-menu-link, .is-dark .nk-menu-link:hover, .is-dark .active > .nk-menu-link, .is-dark .nk-menu-link:hover .nk-menu-icon, .is-dark .nk-menu-item.active > .nk-menu-link .nk-menu-icon, .is-dark .nk-menu-item.current-menu > .nk-menu-link .nk-menu-icon {
  color: #3c8efe;
}

.is-dark .user-name {
  color: #90a1b8;
}

.is-dark .nk-quick-nav-icon {
  color: #9faec2;
}

.is-theme .nk-menu-link {
  color: #9fc7ff;
}

.is-theme .nk-menu-link:hover {
  background: #0d3988;
}

.is-theme .active > .nk-menu-link {
  background: #0d3988;
}

.is-theme .nk-menu-icon {
  color: #c8dfff;
}

.is-theme .nk-menu-badge {
  color: #a1c9ff;
  background: #0f419a;
}

.is-theme .nk-quick-nav-icon, .is-theme .overline-title {
  color: #a9cdff;
}

.is-theme .nk-menu-heading .overline-title {
  color: rgba(169, 205, 255, 0.8);
}

.is-theme .user-name {
  color: #c3dcff;
}

.card-tools-nav li a:before, .nav-tabs .nav-link:after, .progress-bar, .dot-primary, .alert-fill.alert-primary, .bg-primary, .icon-circle, .noUi-connect, .nk-msg-menu-item a:after, .ui-shady .nk-msg-item.active:after, .ui-shady .nk-msg-item.current:after, .ui-softy .nk-msg-item.active:after, .ui-softy .nk-msg-item.current:after {
  background: #0971fe;
}

.card-bordered.is-dark {
  border-color: #0b3175;
}

.card.is-dark {
  background: #0b3175;
}

.is-dark .nk-wg7-title, .is-dark .nk-wg7-note {
  color: #a9cdff;
}

.user-avatar, [class^=user-avatar]:not([class*=-group]) {
  background: #3c8efe;
}

.nk-menu-link:hover, .nk-menu-link:hover .nk-menu-icon, .nk-menu-item.active > .nk-menu-link .nk-menu-icon, .nk-menu-item.current-menu > .nk-menu-link .nk-menu-icon, .nk-menu-link:hover .count, .nk-menu-sub .nk-menu-link:hover, .nk-menu-sub .active > .nk-menu-link, .nk-menu-sm .nk-menu-link:hover, .nk-menu-main .nk-menu-link:hover, .nk-menu-main .nk-menu-link:focus, .nk-menu-main .nk-menu-item.active > .nk-menu-link, .nk-menu-main .nk-menu-item.current-menu > .nk-menu-link, .nk-menu-main .nk-menu-item:hover > .nk-menu-link, .is-light .nk-menu-link:hover, .is-light .active > .nk-menu-link, .active > .nk-menu-link, .active > .nk-menu-link .count, .nav-tabs .nav-link:focus, .nav-tabs .nav-link.active, .nav-tabs .nav-item.active .nav-link, .nk-menu-footer .nk-menu-icon, .nk-menu-footer .nk-menu-link:hover, .nk-footer-copyright a:hover, .page-link:hover, .list-plain a:hover, .link-check li a:hover, .link-list a:hover, .link-list-opt a:hover, .link-list-plain a:hover, .link-list-menu li.active > a, .link-list-menu a.active, .link-list-menu a:hover, .link-list-menu li.active > a .icon, .link-list-menu a.active .icon, .link-list-menu a:hover .icon, .link-list-menu li.active > a:after, .link-list-menu a.active:after, .link-list-menu a:hover:after, .list-checked li:before, .list-step li.list-step-current:before, .accordion-s2 .accordion-head .title, .accordion-s3 .accordion-head .title, .bg-outline-primary, .badge-dim.bg-primary, .badge-dot.bg-primary, .badge-dim.bg-outline-primary, .alert-primary, .form-clip, .form-text-hint, .search-submit:hover, .attach-item .icon, .attach-download:hover span, .nk-reply-meta-info .whom, .nk-msg-tags li > span .icon, .nk-msg-menu-item a:hover, .nk-msg-menu-item.active a, .user-balance, .user-avatar[class*=-primary-dim], a, .dropzone .dz-message-text span, .nk-switch-icon.active, .link-list-plain a .icon, .chat-upload-option a, .is-unread .chat-context .status, .add-opt:hover .sub-text, .add-opt:hover .icon, .icon[class*=bg-primary-dim], .nk-tb-list .tb-asterisk a {
  color: #0971fe;
}

a:hover {
  color: #015edd;
}

.text-primary, .link-primary {
  color: #0971fe !important;
}

.link-primary:hover, a.text-primary:hover, a.text-primary:focus, .chat-upload-option a:hover {
  color: #015edd !important;
}

.border-primary, .nk-kycfm-control:checked ~ .nk-kycfm-label {
  border-color: #0971fe !important;
}

.bg-lighter {
  background-color: #f5f6fa !important;
}

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

a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus {
  background-color: #015ad3 !important;
}

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

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

.alert-primary, .badge-dim.bg-outline-primary {
  background-color: #e6f1ff;
  border-color: #9dc6ff;
}

.alert-pro.alert-primary, .bg-primary, .sp-package-choose:checked ~ label, .plan-control:checked + .plan-item-card, .form-control:focus, .form-control.focus, .custom-file-input:focus ~ .custom-file-label, .custom-control-input:focus:not(:checked) ~ .custom-control-label::before, .select2-container--default .select2-selection--single:focus, .select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #0971fe;
}

.nk-order-ovwg-data.sell, .bg-outline-primary {
  border-color: #9dc6ff;
}

.dropdown-menu-s1 {
  border-top-color: #0971fe;
}

.nk-iv-wg2-amount.ui-v2 {
  border-bottom-color: #0971fe;
}

.page-item.active .page-link, .custom-control-input:checked ~ .custom-control-label::before, .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: #0971fe;
  border-color: #0971fe;
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before, .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before, .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #6baafe;
}

.badge-dim.bg-primary {
  background-color: #e6f1ff;
  border-color: #e6f1ff;
}

.bg-primary.badge-dot {
  background: rgba(0, 0, 0, 0) !important;
}

.nk-error-head {
  background: -webkit-linear-gradient(#0971fe, #0f45a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.nav-switch .nav-link.active {
  background: #0971fe;
  color: #fff;
}

.icon-avatar {
  color: #0971fe;
  background-color: #daeaff;
}

.is-theme .nk-quick-nav-icon:before {
  background-color: #071d46;
}

.btn-primary {
  background-color: #0971fe;
  border-color: #0971fe;
}

.btn-primary:hover {
  background-color: #0167f2;
  border-color: #0163e7;
}

.btn-primary:focus {
  background-color: #0167f2;
  border-color: #0163e7;
}

.btn-primary.btn-dim {
  color: #0971fe;
  background-color: #e4efff;
  border-color: #e4efff;
}

.btn-dim.btn-outline-primary {
  color: #0971fe;
  background-color: #e4efff;
  border-color: #9dc6ff;
}

.btn-dim.btn-outline-primary.btn-white {
  background-color: #fff;
}

.btn-outline-primary {
  border-color: #0971fe;
  color: #0971fe;
}

.btn-outline-primary:hover {
  background-color: #0971fe;
  border-color: #0971fe;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  background-color: #0169f7;
  border-color: #0167f2;
}

.btn-primary:focus, .btn-outline-primary:focus, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary.btn-dim:focus, .btn-primary.btn-dim:not(:disabled):not(.disabled):active, .btn-primary.btn-dim:not(:disabled):not(.disabled):active:focus, .btn-dim.btn-outline-primary:focus, .btn-dim.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-dim.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(9, 113, 254, 0.2);
}

.btn-outline-light:focus, .btn-outline-light.focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(128, 148, 174, 0.1);
}

.btn-trigger:focus {
  box-shadow: none;
}

.form-control:focus, .form-control.focus, .custom-control-input:focus ~ .custom-control-label::before, .custom-file-input:focus ~ .custom-file-label, .select2-container--default .select2-selection--single:focus, .select2-container--default.select2-container--focus .select2-selection--multiple {
  box-shadow: 0 0 0 3px rgba(9, 113, 254, 0.1);
}

.form-control-simple:focus {
  box-shadow: none;
}

.btn-primary.btn-dim:not(:disabled):not(.disabled):hover, .btn-dim.btn-outline-primary:not(:disabled):not(.disabled):hover, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle, .btn-primary.disabled, .btn-primary:disabled {
  background-color: #0971fe;
  border-color: #0971fe;
}

.form-focus-none:focus {
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}

@media (min-width: 992px) {
  .nk-menu-main > li > .nk-menu-link:before {
    background: #0971fe;
  }
  .is-theme .nk-menu-main > li > .nk-menu-link {
    color: #a9cdff;
  }
  .is-theme .nk-menu-main > li > .nk-menu-link.nk-menu-toggle:after {
    color: rgba(169, 205, 255, 0.7);
  }
}
.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
  background-color: #daeaff;
  color: #0971fe;
}

.datepicker table tr td.today:hover, .datepicker table tr td.today:hover:hover, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled:hover:hover, .datepicker table tr td.today:active, .datepicker table tr td.today:hover:active, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.active, .datepicker table tr td.today:hover.active, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:hover.active, .datepicker table tr td.today.disabled, .datepicker table tr td.today:hover.disabled, .datepicker table tr td.today.disabled.disabled, .datepicker table tr td.today.disabled:hover.disabled, .datepicker table tr td.today[disabled], .datepicker table tr td.today:hover[disabled], .datepicker table tr td.today.disabled[disabled], .datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #5da1ff;
}

.datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td span:hover, .datepicker table tr td span.focused {
  background-color: #0971fe;
}

.code-tag {
  color: blue;
}

.alert-pro {
  background: #fff;
  color: #526484;
}

.nk-menu-badge {
  color: #539cfe;
  background-color: #e6f1ff;
}

.is-theme .nk-sidebar-footer, .nk-apps-sidebar.is-theme, .is-theme .nk-sidebar-profile-fixed {
  background: #0a2d6c;
  border-color: #0f419a;
}

.is-theme .nk-menu-footer .nk-menu-link, .is-theme .sub-text, .is-theme .lead-text span {
  color: #a9cdff;
}

.nav-switch-s2 .nav-link:hover, .nav-switch-s2 .nav-link:focus {
  color: #526484;
}

.nav-switch-s2 .nav-link.active {
  color: #364a63;
}

.active .nk-ibx-menu-text, .active .nk-ibx-menu-item .icon, .nk-reply-form-nav li a:hover, .nk-reply-form-input .toggle-opt:hover {
  color: #0971fe;
}

.nk-ibx-menu li.active {
  background: #ebf4ff;
}

.nk-fmg-menu li.active {
  background: #ebf4ff;
}

.nk-file-name .asterisk .icon, .nk-file-name-text a.title:hover, .nk-file-link:hover .title, .active .nk-fmg-menu-item .icon, .active .nk-fmg-menu-text {
  color: #0971fe;
}

.nk-files-view-list .nk-file.selected {
  background-color: #e1eeff;
}

.chat.is-me .chat-msg {
  background-color: #0971fe;
}

.kanban-add-task {
  color: #0971fe;
}

.kanban-add-task:hover {
  background: #0971fe;
  border-color: #0971fe;
}

.actions ul li a {
  border-color: #0971fe;
  background: #0971fe;
}

.nk-wizard-simple .steps ul li.done h5, .nk-wizard-simple .steps ul li.done .number, .nk-wizard-simple .steps ul li.current h5, .nk-wizard-simple .steps ul li.current .number {
  color: #0971fe;
}

.nk-wizard-simple .steps ul li:after {
  background: #0971fe;
}

.invoice-contact ul .icon, .invoice-desc .title, .invoice-bills .table th {
  color: #0971fe;
}

.product-gallery .slider-nav .slider-item.slick-current .thumb, .custom-control-pro.no-control .custom-control-input:checked ~ .custom-control-label, .custom-control-pro.no-control .custom-control-input:not(:disabled):active ~ .custom-control-label, .custom-control.color-control .custom-control-label:before {
  border-color: #0971fe !important;
}

.nk-header-tools {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.nk-header-fixed + .nk-content {
  margin-top: 30px !important;
}

.breadcrumb {
  margin-bottom: 10px;
}

.swal-button {
  font-weight: normal !important;
}

td.text-center.has_data {
  background: #e4efff;
  color: #0971fe;
}

.swal-button--confirm {
  color: #0971fe !important;
  background-color: #e4efff;
  border-color: #e4efff !important;
  outline: none !important;
  box-shadow: none !important;
}

.swal-button--confirm:hover,
.swal-button--confirm:active,
.swal-button--confirm:focus {
  background-color: #0971fe !important;
  border-color: #0971fe !important;
  outline: none !important;
  color: #fff !important;
}

.hide {
  display: none;
}

.w85 {
  max-width: 920px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.w768 {
  max-width: 768px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.nk-block-fixed {
  position: fixed;
  bottom: 20px;
  width: 721px;
  border: 1px solid #eee;
  border-radius: 5px;
  background: #fff;
  box-shadow: 1px 1px 0px -1px rgba(204, 204, 204, 0.8);
  padding-top: 0 !important;
  z-index: 999;
}

.red {
  color: #e5493e;
}

.link-list-opt a {
  padding: 0.35rem 1.125rem !important;
}

.error-form {
  color: #e5493e;
  font-size: 0.8rem;
}

.datepicker-dropdown {
  z-index: 99 !important;
}

.datepicker td, .datepicker th {
  text-align: center;
  width: 34px !important;
  height: 24px !important;
  padding: 4px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s;
}

.datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .datepicker table tr td span:hover, .datepicker table tr td span.focused {
  background-color: rgb(9, 113, 254) !important;
}

.datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover {
  background-color: rgb(218, 234, 255);
  color: rgb(9, 113, 254);
}

.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
  background-color: #e0edff;
}

.form-control,
.dual-listbox .dual-listbox__search,
div.dataTables_wrapper div.dataTables_filter input {
  font-size: 0.85rem;
}

.loading-container {
  position: fixed;
  top: 0;
  background: #fff;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
}

.lds-spinner {
  color: #e4efff;
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  z-index: 99999;
  margin: 25% auto;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
          animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #0971fe;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

/* Position job*/
[data-position="1"] {
  left: 0;
}

[data-position="2"] {
  left: 12.5%;
}

[data-position="3"] {
  left: 14.2857142857%;
}

[data-position="4"] {
  left: 16.6666666667%;
}

[data-position="5"] {
  left: 20%;
}

[data-position="6"] {
  left: 25%;
}

[data-position="7"] {
  left: 33.3333333333%;
}

[data-position="8"] {
  left: 50%;
}

[data-position="9"] {
  left: calc(100% - 150px);
}

[data-position="10"] {
  left: calc(100% - 100px);
}

[data-position="10"] .icon-arrow,
[data-position="9"] .icon-arrow {
  left: calc(10% + 63px) !important;
}

.job-position-wrapper .icon-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  position: absolute;
  bottom: -4px;
  left: calc(10% - 1px);
}

.three-dot {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.three-dot-height {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-position-wrapper [data-rank="1"] {
  left: 2% !important;
}

.job-position-wrapper [data-rank="2"] {
  left: 10% !important;
}

.job-position-wrapper [data-rank="3"] {
  left: 15% !important;
}

.job-position-wrapper [data-rank="4"] {
  left: 20% !important;
}

.job-position-wrapper [data-rank="5"] {
  left: 25% !important;
}

.job-position-wrapper [data-rank="6"] {
  left: 30% !important;
}

.job-position-wrapper [data-rank="7"] {
  left: 35% !important;
}

.job-position-wrapper [data-rank="8"] {
  left: 40% !important;
}

.job-position-wrapper [data-rank="9"] {
  left: 50% !important;
}

.job-position-wrapper [data-rank="10"] {
  left: 52% !important;
}

.job-position-wrapper [data-rank="10"] .icon-arrow {
  left: calc(10% + 55px);
}

.active .custom-control-input:checked ~ .custom-control-label::before,
.active .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  opacity: 0.4;
}

.dropdown-menu {
  min-width: 200px;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .nk-content {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}
@media only screen and (min-width: 1300px) {
  .nk-content {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1140px !important;
  }
}
.js-input-clear .icon-clear {
  position: absolute;
  right: 13px;
  top: 6px;
  display: none;
}

.icon-clear:hover {
  cursor: pointer;
}

.js-input-clear {
  position: relative;
}

.js-input-clear input {
  padding-right: 35px;
}

.chzn-container-multi .chzn-choices .search-choice {
  color: #364a63 !important;
  background-color: #e5e9f2 !important;
  border: none !important;
}

.border-dot {
  border: 1px dashed #b8b8b8;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #526484;
  padding: 0.5625rem 0.625rem;
  background-color: #fff;
  border: 1px solid #e5e9f2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-link:hover {
  z-index: 2;
  background-color: #ebeef2;
  border-color: #e5e9f2;
}

.page-link:focus {
  z-index: 3;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: none;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
}

.page-item.disabled .page-link {
  color: #dbdfea;
  pointer-events: none;
  background-color: #fff;
  border-color: #e5e9f2;
}

.page-item:first-child .page-link {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination-lg .page-link {
  padding: 0.5625rem 0.75rem;
  font-size: 1.25rem;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.pagination-sm .page-link {
  padding: 0.4375rem 0.5rem;
  font-size: 0.75rem;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pagination {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.pagination a,
.pagination span {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #333;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.pagination a:hover {
  color: #333;
  background-color: #f4f4f9;
  border-color: #ddd;
}

.pagination li.disabled span {
  color: #6c757d !important;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination li.active span {
  z-index: 1;
  color: #333;
  font-weight: bold;
  background-color: #f4f4f9;
  border-color: #ddd;
}

.box-scroll-customize {
  position: relative;
}
.box-scroll-customize:hover .cover-scroll-bar {
  opacity: 0;
  -webkit-transition: all 0.5s;
}
.box-scroll-customize .box-scroll-main {
  overflow-y: scroll;
  overflow-x: hidden;
}
.box-scroll-customize .box-scroll-main::-webkit-scrollbar {
  width: 0.4em;
}
.box-scroll-customize .box-scroll-main::-webkit-scrollbar,
.box-scroll-customize .box-scroll-main::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}
.box-scroll-customize .box-scroll-main::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}
.box-scroll-customize .cover-scroll-bar {
  position: absolute;
  background: #ffffff;
  height: 100%;
  top: 0;
  right: 0;
  width: 0.4em;
  -webkit-transition: all 0.5s;
  opacity: 1;
}

.post h2 a,
.vip_1 h2 a {
  text-transform: capitalize !important;
}

.vip_1 h2 a {
  color: #0D47A1 !important;
}

.vip_2 h2 a {
  color: #e34513 !important;
  text-transform: uppercase !important;
}

.vip_3 h2 a {
  color: #C20000 !important;
  text-transform: uppercase !important;
}

.js-item-job {
  position: relative;
}

.label_hot .ribbons {
  display: inline-block;
  text-transform: none;
  margin: 0 !important;
  padding: 0 !important;
}
.label_hot .ribbons:before {
  content: "✨Nổi bật";
  color: #fff;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 6px;
  margin-right: 3px;
}

.job_urgent .tag-urgent {
  display: inline-block;
  text-transform: none;
  margin: 0 !important;
  padding: 0 !important;
}
.job_urgent .tag-urgent:before {
  content: "Gấp";
  border: 1px solid #fb7328;
  background: #fb7328 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' stroke='none' fill='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M10 2c0 -.88 1.056 -1.331 1.692 -.722c1.958 1.876 3.096 5.995 1.75 9.12l-.08 .174l.012 .003c.625 .133 1.203 -.43 2.303 -2.173l.14 -.224a1 1 0 0 1 1.582 -.153c1.334 1.435 2.601 4.377 2.601 6.27c0 4.265 -3.591 7.705 -8 7.705s-8 -3.44 -8 -7.706c0 -2.252 1.022 -4.716 2.632 -6.301l.605 -.589c.241 -.236 .434 -.43 .618 -.624c1.43 -1.512 2.145 -2.924 2.145 -4.78'/></svg>") no-repeat 6px center;
  background-size: 12px;
  color: #fff;
  font-size: 11px;
  padding: 3px 6px 3px 20px;
  border-radius: 6px;
  margin-right: 3px;
}

.ribbons, .tag-urgent {
  display: none;
}

.tags {
  display: inline-flex;
  margin: 0;
  padding: 0 !important;
}

.post.label_hot .ribbons:before {
  border: 1px solid #364a63;
  background: #364a63;
}

.vip_1.label_hot .ribbons:before {
  border: 1px solid #1054bd;
  background: #1054bd;
}

.vip_2.label_hot .ribbons:before {
  border: 1px solid #e34513 !important;
  background: #e34513 !important;
}

.vip_3.label_hot .ribbons:before {
  border: 1px solid #C20000 !important;
  background: #C20000 !important;
}

.box-neo-footer {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 15px;
  background: #000;
  border-radius: 100px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.box-neo-footer .neo-content {
  padding: 10px 16px;
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.box-neo-footer .neo-content .link-verify .text-verify {
  color: #2563eb;
  max-width: 350px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.box-neo-footer .neo-content .link-verify .btn-to-verify {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
  border-radius: 999px;
  background: #2563eb;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
}

.authentic-level-modal {
  display: none;
  top: 4%;
  left: 5%;
  padding: 16px;
  max-width: 450px;
  position: fixed;
  background: #fff;
  border: 1px solid #e8edf2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  z-index: 9999;
}
.authentic-level-modal .modal-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.authentic-level-modal .box-image {
  margin-right: 16px;
  width: 40px;
  height: 40px;
}
.authentic-level-modal .box-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.authentic-level-modal .modal-body {
  padding: 16px 0 16px 0;
}
.authentic-level-modal .modal-body .step-title {
  color: #5e6368;
  font-weight: 400;
}
.authentic-level-modal .modal-body .verify-item {
  padding: 10px 8px;
  border-radius: 8px;
  background: #fff;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.authentic-level-modal .modal-body .verify-item:hover {
  background: #f5f8fa;
}
.authentic-level-modal .modal-body .verify-item:hover .btn-to-verify {
  background: #2563eb;
  color: #fff !important;
}
.authentic-level-modal .modal-body .verify-item .verify-item-title {
  color: inherit;
}
.authentic-level-modal .modal-body .verify-item .btn-to-verify {
  padding: 4px 8px;
  border-radius: 999px;
  background: #f5f8fa;
  cursor: pointer;
  color: #2563eb;
  font-weight: 400;
  width: 30px;
  height: 30px;
}
.authentic-level-modal .modal-body .verify-item.finished .icon-check {
  color: #2563eb;
}
.authentic-level-modal .modal-body .verify-item.finished .verify-item-title {
  color: #a8afb6;
}

.resume-avatar {
  background-position: 50%;
  background-size: contain;
  cursor: pointer;
  height: 32px;
  width: 32px;
}

.service-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.service-buttons .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  width: 40px;
  font-size: 12px;
  border-radius: 8px 0 0 8px;
  transition: all 0.3s ease;
}

.cs-pointer {
  cursor: pointer;
}
