

.nk-kanban {
    overflow: auto;
    padding-bottom: 1rem;
}

.kanban-container {
    position: relative;
    box-sizing: border-box;
    width: auto;
    display: flex;
    margin-left: -14px;
    margin-right: -14px;
    overflow: auto;
}
.kanban-container > * {
    touch-action: pan-y;
}

.kanban-container * {
    box-sizing: border-box;
}

.kanban-board {
    padding: 14px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
}

.kanban-board.disabled-board {
    opacity: 0.3;
}

.kanban-board.is-moving.gu-mirror {
    transform: rotate(3deg);
}

.kanban-board.is-moving.gu-mirror .kanban-drag {
    overflow: hidden;
    padding-right: 50px;
}

.kanban-board-header {
    background: #fff;
    border: 1px solid #e5e9f2;
    border-top: 3px solid #dbdfea;
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
}

.kanban-primary {
    border-top-color: #6576ff;
}

.kanban-success {
    border-top-color: #1ee0ac;
}

.kanban-info {
    border-top-color: #09c2de;
}

.kanban-warning {
    border-top-color: #f4bd0e;
}

.kanban-danger {
    border-top-color: #e85347;
}

.kanban-title-content {
    display: flex;
    align-items: center;
}
.kanban-title-content .title {
    font-size: 0.9375rem;
    margin-bottom: 0;
    margin-right: 0.75rem;
    color: #526484;
}

.kanban-title-board {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kanban-board header .kanban-title-button {
    float: right;
}

.kanban-board .kanban-drag {
    min-height: 100px;
    margin-bottom: 1rem;
}
.kanban-board .kanban-drag:empty {
    border-radius: 4px;
    border: 1px dashed #e5e9f2;
}

.kanban-board:after {
    clear: both;
    display: block;
    content: "";
}

.kanban-item {
    border-radius: 4px;
    border: 1px solid #e5e9f2;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.kanban-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.kanban-item-title + .kanban-item-text {
    margin-top: 0.5rem;
}
.kanban-item-title .title {
    font-size: 0.9375rem;
    margin-bottom: 0;
    margin-right: 0.75rem;
}
.kanban-item-tags {
    display: flex;
    padding-top: 0.5rem;
    margin: -0.125rem;
}
.kanban-item-tags li {
    padding: 0.125rem;
}
.kanban-item-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 0.5rem;
}
.kanban-item-meta-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -0.25rem;
}
.kanban-item-meta-list:last-child {
    flex-wrap: nowrap;
}
.kanban-item-meta-list:first-child {
    padding-right: 1rem;
}
.kanban-item-meta-list li {
    font-size: 0.8125rem;
    padding: 0 0.25rem;
    color: #8094ae;
}
.kanban-item-meta-list li span {
    white-space: nowrap;
}
.kanban-item-meta-list li .icon + span {
    margin-left: 0.25rem;
}

.kanban-item:hover {
    cursor: move;
}

.kanban-item:last-child {
    margin: 0;
}

.kanban-item.is-moving.gu-mirror {
    transform: rotate(3deg);
    height: auto !important;
}

/* Dragula CSS  */
.gu-mirror {
    position: fixed !important;
    margin: 0 !important;
    z-index: 9999 !important;
}

.gu-hide {
    display: none !important;
}

.gu-unselectable {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.gu-transit {
    opacity: 0.2 !important;
    transform: rotate(0deg) !important;
}

.drag_handler {
    background: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    position: relative;
    top: -3px;
    float: left;
    margin-right: 4px;
}

.drag_handler:hover {
    cursor: move;
}

.drag_handler_icon {
    position: relative;
    display: block;
    background: #000;
    width: 24px;
    height: 2px;
    top: 12px;
    transition: 0.5s ease-in-out;
}

.drag_handler_icon:before,
.drag_handler_icon:after {
    background: #000;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.5s ease-in-out;
}

.drag_handler_icon:before {
    top: 6px;
}

.drag_handler_icon:after {
    bottom: 6px;
}

.kanban-add-task {
    color: #6576ff;
    background: #fff;
    border: 1px dashed #e5e9f2;
    padding-top: 0.675rem;
    padding-bottom: 0.675rem;
}
.kanban-add-task:hover {
    color: #fff;
    background: #6576ff;
    border: 1px solid #6576ff;
}
.kanban-add-task:focus {
    outline: none;
    box-shadow: none;
}

.dual-listbox {
    display: flex;
    flex-direction: column;
}
.dual-listbox .dual-listbox__container {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.dual-listbox .dual-listbox__search {
    max-width: 300px;
}
.dual-listbox .dual-listbox__search--hidden {
    display: none;
}
.dual-listbox .dual-listbox__available,
.dual-listbox .dual-listbox__selected {
    border: 1px solid #e5e9f2;
    height: 300px;
    overflow-y: auto;
    padding: 0;
    width: 300px;
    margin-top: 0;
    border-radius: 0 0 4px 4px;
}
.dual-listbox .dual-listbox__buttons {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 10px 10px 0;
}
.dual-listbox .dual-listbox__button {
    margin-bottom: 5px;
    justify-content: center;
    text-transform: capitalize;
}
.dual-listbox .dual-listbox__title {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-left: 1px solid #e5e9f2;
    border-right: 1px solid #e5e9f2;
    border-top: 1px solid #e5e9f2;
    margin-top: 1rem;
    -webkit-margin-before: 1rem;
    border-radius: 4px 4px 0 0;
}
.dual-listbox .dual-listbox__item {
    display: block;
    padding: 0.5rem 1rem;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    border-bottom: 1px solid #e5e9f2;
    transition: background-color 0.2s ease;
}
@media (min-width: 576px) and (max-width: 991.98px) {
    .dual-listbox .dual-listbox__container {
        flex-wrap: nowrap;
    }
    .dual-listbox .dual-listbox__container > div:not(.dual-listbox__buttons) {
        width: 100%;
    }
    .dual-listbox .dual-listbox__available, .dual-listbox .dual-listbox__selected {
        width: auto;
    }
    .dual-listbox .dual-listbox__buttons {
        margin: 10px auto;
    }
    .dual-listbox__buttons {
        flex-shrink: 0;
    }
}
@media (max-width: 575.98px) {
    .dual-listbox .dual-listbox__container > div:not(.dual-listbox__buttons) {
        width: 100%;
    }
    .dual-listbox .dual-listbox__available, .dual-listbox .dual-listbox__selected {
        width: 100%;
    }
    .dual-listbox .dual-listbox__buttons {
        margin: 10px auto 0;
    }
}
/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}
.mfp-preloader a {
    color: #CCC;
}
.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

button.mfp-close {
    overflow: visible;
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: 0 3px 12px 1px rgba(43, 55, 72, 0.15);
    touch-action: manipulation;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    transform: translate(50%, -50%);
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
    background-color: #fff;
    border-radius: 50%;
}
.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
}
.mfp-close:active {
    top: 1px;
}
.mfp-close:after {
    position: absolute;
    font-family: "Nioicon";
    content: "\ea05";
    color: #526484;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
    margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}
.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}
.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}
.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}
.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}
.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}
.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: calc(100% - 34px);
    max-width: 900px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
    border-radius: 8px;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 8px;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}
.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}
.mfp-figure small, .mfp-figure .small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}
.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: calc(100% - 34px);
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
   * Remove all paddings around the image on small screen
   */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small, .mfp-img-mobile .mfp-figure .small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}
@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}
.gu-mirror {
    position: fixed !important;
    margin: 0 !important;
    z-index: 9999 !important;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    cursor: grabbing;
}

.gu-hide {
    display: none !important;
}

.gu-unselectable {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.gu-transit {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    filter: alpha(opacity=20);
}

.dragula-container > *:not(:last-child) {
    margin-bottom: 0.75rem;
}
.dragula-container > * {
    cursor: move;
    cursor: grab;
    touch-action: none;
}
.dragula-container.has-handle > * {
    cursor: initial;
}
.dragula-handle {
    display: flex;
}
.dragula-handle .handle {
    position: relative;
    font-size: 1.125rem;
    cursor: move;
    margin: 0 0.875rem;
}
.dragula-handle .handle:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-family: "Nioicon";
    content: "\eb04";
    font-size: 1rem;
}

.google-map {
    height: 400px;
    width: 100%;
}

/** 03. LAYOUTS */
body {
    min-width: 320px;
}
body.nav-shown {
    overflow: hidden;
}

.nk-body {
    outline: none;
}
.nk-app-root {
    outline: none;
}
.nk-main {
    position: relative;
}
.nk-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.nk-content {
    padding: 24px 4px;
}
.nk-content-fs {
    min-height: calc(100vh - (65px + 65px));
    display: flex;
    align-items: center;
}

@media (min-width: 576px) {
    .nk-content {
        padding: 32px 22px;
    }
    .nk-content-fluid {
        padding-left: 22px;
        padding-right: 22px;
    }
}
@media (min-width: 992px) {
    .nk-content-lg {
        padding-top: 36px;
        padding-bottom: 36px;
    }
    .nk-content-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (min-width: 1660px) {
    .nk-content-lg {
        padding-top: 54px;
        padding-bottom: 54px;
    }
    .nk-content-fluid {
        padding-left: 44px;
        padding-right: 44px;
    }
}
.nk-content-body {
    flex-grow: 1;
}

.nk-wrap-nosidebar .nk-content {
    padding: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo-link {
    position: relative;
    display: inline-block;
    align-items: center;
}
.logo-dark {
    opacity: 1;
}
.tc-light .logo-dark, .is-dark .logo-dark, .is-theme .logo-dark {
    opacity: 0;
}
.logo-light {
    opacity: 0;
}
.tc-light .logo-light, .is-dark .logo-light, .is-theme .logo-light {
    opacity: 1;
}
.logo-img {
    max-height: 36px;
}
.logo-img-lg {
    max-height: 60px;
}
.logo-img-sm {
    max-height: 28px;
}
.logo-img-icon {
    max-height: 33px;
}
.logo-img:not(:first-child) {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nk-header {
    background: #f5f6fa;
    border-bottom: 1px solid #e5e9f2;
    padding: 0 6px;
    position: relative;
    z-index: 1010;
}
.nk-header.is-dark:not([class*=bg-]) {
    background: #101924;
    border-color: #203247;
}
.nk-header.is-light:not([class*=bg-]) {
    background: #fff;
}
.nk-header.is-theme:not([class*=bg-]) {
    background: #29347a;
    border-color: #3644a0;
}
.nk-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-width: 320px;
}
.nk-header-fixed + .nk-content {
    margin-top: 65px;
    position: relative;
}
.nk-header-wrap {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -0.25rem;
}
.nk-header-wrap > * {
    padding: 0 0.25rem;
}
.nk-header-right {
    align-items: center;
    justify-content: flex-end;
}
.nk-header-center {
    justify-content: center;
}
.nk-header-tools {
    margin-left: auto;
    padding-top: 14px;
    padding-bottom: 14px;
}
.nk-header-brand {
    flex-shrink: 0;
    padding-top: 14px;
    padding-bottom: 14px;
}
.nk-header .dropdown-menu .lead-text {
    color: #364a63;
}
.nk-header .dropdown-menu .sub-text, .nk-header .dropdown-menu .overline-title, .nk-header .dropdown-menu .overline-title-alt {
    color: #8094ae;
}
.nk-quick-nav {
    display: flex;
    align-items: center;
    margin: 0 -6px;
}
.nk-quick-nav > li {
    padding: 0 6px;
}
.nk-quick-nav > li.user-dropdown > a {
    padding: 0 2px;
}
.nk-quick-nav-icon {
    display: inline-flex;
    position: relative;
    font-size: 1.5rem;
    z-index: 1;
    color: #526484;
    padding: 0.375rem;
}
.is-dark .nk-quick-nav-icon {
    color: #9faec2;
}
.is-theme .nk-quick-nav-icon {
    color: #c4cefe;
}
.is-theme .nk-quick-nav-icon.nk-nav-toggle {
    color: #fff;
}
.nk-quick-nav-icon:focus {
    box-shadow: none;
}
.nk-quick-nav-icon:before {
    position: absolute;
    z-index: -1;
    height: 20px;
    width: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    content: "";
    background-color: #e5e9f2;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}
.is-dark .nk-quick-nav-icon:before {
    background-color: #0b1219;
}
.is-theme .nk-quick-nav-icon:before {
    background-color: #1f275c;
}
.show > .nk-quick-nav-icon:before {
    opacity: 1;
    height: 116%;
    width: 116%;
}
.nk-quick-nav-icon:hover:before, .nk-quick-nav-icon.active:before {
    opacity: 1;
    height: 116%;
    width: 116%;
}

@media (max-width: 359px) {
    .nk-quick-nav {
        margin: 0 -3px;
    }
    .nk-quick-nav > li {
        padding: 0 3px;
    }
    .hide-mb-xs {
        display: none;
    }
}
@media (max-width: 575px) {
    .hide-mb-sm {
        display: none;
    }
}
@media (min-width: 576px) {
    .nk-header {
        padding: 0 22px;
    }
    .nk-quick-nav {
        margin: 0 -10px;
    }
    .nk-quick-nav > li {
        padding: 0 10px;
    }
}
@media (min-width: 992px) {
    .nk-header-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (min-width: 1660px) {
    .nk-header-fluid {
        padding-left: 44px;
        padding-right: 44px;
    }
}
.nk-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 280px;
    height: 100vh;
    max-height: 100vh;
    z-index: 999;
    background: #fff;
}
.nk-header-menu-inner {
    overflow: auto;
    max-height: 100%;
    min-height: 100%;
}
.nk-header-menu.mobile-menu {
    padding-top: 65px;
    padding-left: 0;
    padding-right: 0;
    transition: transform 0.4s ease;
}
.nk-header-menu.nk-sidebar-active {
    transform: translateX(0);
}
.nk-header-mobile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    border-bottom: 1px solid #e5e9f2;
}
.nk-header-mobile .logo-dark {
    opacity: 1;
}
.nk-header-mobile .logo-light {
    opacity: 0;
}
.nk-header-mobile .nk-nav-toggle.nk-quick-nav-icon {
    color: #526484;
}
.nk-header-mobile .nk-nav-toggle.nk-quick-nav-icon:before {
    background-color: #e5e9f2;
}

@media (min-width: 992px) {
    .nk-header-menu {
        position: static;
        background: transparent;
        height: auto;
        max-height: auto;
        border-right: none;
        width: auto;
        padding: 0;
        overflow: visible;
        transform: translateX(0) !important;
    }
    .nk-header-menu .nk-header-mobile {
        display: none;
    }
}
.quick-icon {
    display: inline-flex;
    height: 24px;
    width: 24px;
    border-radius: 50%;
}
.quick-icon img.icon {
    border-radius: 50%;
}

@keyframes animate-fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.nk-aside {
    position: fixed;
    top: 0;
    left: 0;
    border-right: 1px solid #e5e9f2;
    transform: translateX(-100%);
    background: #fff;
    min-height: 100vh;
    max-height: 100vh;
    z-index: 700;
    width: 280px;
    padding-top: 75px;
}
.nk-aside.mobile-menu {
    transition: transform 0.4s ease;
}
.nk-aside.content-active {
    transform: none;
}
.nk-aside + .toggle-overlay {
    z-index: 600;
}
.nk-aside-inner {
    padding-left: 24px;
    padding-right: 24px;
}
.nk-aside-header {
    display: none;
}
.nk-aside-close {
    display: none;
}
.nk-aside .nk-sidebar-menu {
    max-height: calc(100vh - (65px + 24px));
    padding-bottom: 2.5rem;
}

.has-aside .nk-content {
    padding-bottom: 0;
}
.has-aside .nk-content-wrap {
    padding-bottom: 2rem;
}
.has-aside .nk-content-body {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 97px);
}
.has-aside .nk-footer {
    background: transparent;
    padding-top: 0;
    border-top: 0;
    padding-left: 0;
    padding-right: 0;
    margin-left: -1rem;
    margin-right: -1rem;
}

.apps-only .nk-content {
    padding-top: 1.5rem;
    padding-bottom: 0;
}
.apps-only .nk-content-wrap {
    padding-bottom: 1.5rem;
}
.apps-only .nk-footer {
    background: transparent;
    border-top: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: -14px;
    margin-right: -14px;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .nk-aside {
        width: 300px;
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media (min-width: 992px) {
    .has-aside .nk-content-inner {
        display: flex;
    }
    .has-aside .nk-content-body {
        padding: 2rem 0 0;
        width: calc(100% - 268px);
    }
    .nk-aside {
        padding: 2rem 0;
        width: 220px;
        flex-shrink: 0;
        position: static;
        background: transparent;
        opacity: 1;
        visibility: visible;
        margin-right: 48px;
        border: none;
        transform: none;
        max-height: none;
        min-height: none;
    }
    .nk-aside-inner {
        padding-left: 0;
        padding-right: 0;
    }
    .nk-aside .nk-sidebar-menu {
        max-height: none;
    }
    .nk-aside + .toggle-overlay {
        display: none;
    }
    .apps-only .nk-aside {
        display: none;
    }
    .apps-only .nk-content {
        padding-top: 0;
    }
    .apps-only .nk-content-body {
        padding: 1.5rem 0 0;
        width: 100%;
    }
}
@media (max-width: 1199.98px) {
    .nk-aside .nk-menu-main + .nk-menu {
        margin-top: 1.5rem;
    }
}
.nk-menu li a {
    vertical-align: middle;
    display: flex;
    position: relative;
    align-items: center;
    transition: color 0.3s, background-color 0.3s;
}
.nk-menu-item {
    padding: 2px 0;
}
.nk-menu-sub .nk-menu-item {
    padding: 1px 0;
}
.nk-menu-item.has-sub {
    position: relative;
}
.nk-menu > .nk-menu-item.menu-without-icon > .nk-menu-sub .nk-menu-link {
    padding-left: 0;
}
.nk-menu-link {
    padding: 0.625rem 40px 0.625rem 24px;
    color: #6e82a5;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.25rem;
}
.nk-menu-link:hover, .active > .nk-menu-link {
    color: #7f8dff;
}
.nk-menu-link:hover .count, .active > .nk-menu-link .count {
    color: #7f8dff;
}
.nk-menu-sub .nk-menu-link {
    padding: 0.375rem 40px 0.375rem 36px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1.25rem;
    color: #6e82a5;
}
.nk-menu-link.is-disable {
    cursor: default;
}
.nk-menu-link.is-disable:hover, .active > .nk-menu-link.is-disable {
    color: #6e82a5;
}
.nk-menu-link.is-disable:hover .count, .active > .nk-menu-link.is-disable .count {
    color: #6e82a5;
}
.is-light .nk-menu-link {
    color: #526484;
}
.is-theme .nk-menu-link {
    color: #9cadfd;
}
.is-light .nk-menu-link:hover, .is-light .active > .nk-menu-link {
    color: #7f8dff;
}
.is-theme .nk-menu-link:hover, .is-theme .active > .nk-menu-link {
    color: #fff;
}
.nk-menu-link span.small {
    color: #8094ae;
    margin-left: 0.5rem;
}
.nk-menu-icon {
    font-weight: normal;
    letter-spacing: normal;
    width: 36px;
    line-height: 1;
    flex-grow: 0;
    color: #8094ae;
}
.is-theme .nk-menu-icon {
    color: #9cadfd;
}
.nk-menu-icon svg, .nk-menu-icon img {
    width: 36px;
}
.nk-menu-icon .icon {
    font-size: 24px;
    letter-spacing: normal;
    vertical-align: middle;
    color: currentColor;
    transition: color 0.4s, background-color 0.4s;
}
.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 {
    color: #7f8dff;
}
.is-theme .nk-menu-link:hover .nk-menu-icon, .is-theme .nk-menu-item.active > .nk-menu-link .nk-menu-icon, .is-theme .nk-menu-item.current-menu > .nk-menu-link .nk-menu-icon {
    color: #fff;
}
.nk-menu-link.is-disable:hover .nk-menu-icon {
    color: #8094ae;
}
.is-theme .nk-menu-link.is-disable:hover .nk-menu-icon {
    color: #c4cefe;
}
.nk-menu-text {
    flex-grow: 1;
    display: inline-block;
}
.nk-menu-badge {
    border-radius: 3px;
    padding: 0 0.4rem;
    font-size: 11px;
    color: #798bff;
    background: #eff1ff;
    position: absolute;
    top: 50%;
    right: 24px !important;
    transform: translateY(-50%);
}
.nk-menu-toggle > .nk-menu-badge {
    right: 48px !important;
}
.is-dark .nk-menu-badge {
    color: #9cabff;
    background: #203247;
}
.is-theme .nk-menu-badge {
    color: #c4cefe;
    background: #3947a8;
}
.nk-menu-main .nk-menu-sub .nk-menu-badge {
    color: #798bff;
    background: #eff1ff;
}
.nk-menu-heading {
    padding: 0.25rem 24px 0.5rem;
    color: #8094ae;
}
.is-theme .nk-menu-heading {
    color: #7990fd;
}
.nk-menu-item + .nk-menu-heading {
    padding-top: 2.5rem;
}
.nk-menu-heading .overline-title {
    color: inherit;
}
.nk-menu-heading span {
    font-size: 13px;
    font-weight: 400;
}
.nk-menu-hr {
    margin: 1.25rem 0;
    border-bottom: 1px solid #dbdfea;
}
.is-dark .nk-menu-hr {
    border-color: rgba(255, 255, 255, 0.12);
}
.is-theme .nk-menu-hr {
    border-color: rgba(255, 255, 255, 0.12);
}
.nk-menu-hr + .nk-menu-heading {
    padding-top: 1rem;
}
.nk-menu-sub {
    padding-bottom: 0.25rem;
}
.nk-menu-toggle + .nk-menu-sub {
    display: none;
}
.active > .nk-menu-sub {
    display: block;
}
.nk-menu-sub .nk-menu-link:hover {
    color: #6576ff;
}
.is-theme .nk-menu-sub .nk-menu-link:hover {
    color: #fff;
}
.nk-menu-sub .active > .nk-menu-link {
    color: #6576ff;
}
.is-theme .nk-menu-sub .active > .nk-menu-link {
    color: #fff;
}
.nk-menu-sub .nk-menu-icon {
    width: 24px;
    margin-top: -1px;
}
.nk-menu-sub .nk-menu-icon .icon {
    margin-top: -1px;
    font-size: 1.2em;
}
.nk-menu-toggle {
    position: relative;
}
.nk-menu-toggle:after {
    position: absolute;
    font-family: "Nioicon";
    top: 50%;
    right: 1.25rem;
    content: "\e9d3";
    transform: translateY(-50%);
    font-size: 1rem;
    color: #8094ae;
    transition: transform 0.3s, color 0.1s;
}
.is-dark .nk-menu-toggle:after, .is-theme .nk-menu-toggle:after {
    color: rgba(255, 255, 255, 0.4);
}
.has-sub.active > .nk-menu-toggle:after {
    transform: translateY(-50%) rotate(90deg);
}
.nk-menu .count {
    display: inline-block;
    font-size: 0.85em;
    margin-left: 0.25rem;
    color: #8094ae;
    line-height: 1;
}
.nk-menu-icon-colored .nk-menu-icon {
    color: #6576ff;
}
.nk-menu-tooltip {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (min-width: 992px) {
    .nk-aside .nk-menu > li > .nk-menu-link, .nk-aside .nk-menu-heading {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 991.98px) {
    .nk-aside .nk-menu-sub {
        padding-left: 1.5rem;
    }
}
.nk-menu + .nk-menu-sm {
    padding-top: 5rem;
}
.nk-menu-sm .nk-menu-heading {
    padding-bottom: 0.25rem;
    color: #526484;
}
.nk-menu-sm .nk-menu-link {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    color: #526484;
}
.nk-menu-sm .nk-menu-link:hover {
    color: #7f8dff;
}
.nk-menu-sm .nk-menu-icon {
    width: 1.375rem;
}
.nk-menu-sm .nk-menu-icon .icon {
    font-size: 1rem;
}
.nk-menu-sm .nk-menu-text {
    font-size: 12px;
    line-height: 1.125rem;
}

.nk-menu + .nk-menu-md {
    padding-top: 5rem;
}
.nk-menu-md .nk-menu-heading {
    padding-bottom: 0.25rem;
    color: #526484;
}
.nk-menu-md .nk-menu-link {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
    color: #526484;
}
.nk-menu-md .nk-menu-link:hover {
    color: #7f8dff;
}
.nk-menu-md .nk-menu-icon {
    width: 1.375rem;
}
.nk-menu-md .nk-menu-icon .icon {
    font-size: 1.25rem;
}
.nk-menu-md .nk-menu-text {
    font-size: 12px;
    line-height: 1.125rem;
}

.nk-menu-inline {
    display: flex;
}
.nk-menu-inline .nk-menu-link {
    padding-left: 0;
    padding-right: 0;
}

.nk-menu-footer {
    display: flex;
}
.nk-menu-footer .nk-menu-link {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    color: #8094ae;
    font-family: Roboto, sans-serif;
    font-weight: 500;
}
.nk-menu-footer .nk-menu-link:hover {
    color: #7f8dff;
}
.is-theme .nk-menu-footer .nk-menu-link {
    color: #c4cefe;
}
.nk-menu-footer .nk-menu-icon {
    width: 1.375rem;
    color: #6576ff;
}
.nk-menu-footer .nk-menu-icon .icon {
    font-size: 1rem;
}
.nk-menu-footer .nk-menu-text {
    font-size: 12px;
    line-height: 1.125rem;
}

.nk-menu-main.nk-menu {
    padding-top: 0.75rem;
}
.nk-menu-main .nk-menu-link {
    color: #526484;
    padding-left: 24px;
}
.nk-menu-main .nk-menu-sub {
    padding: 0;
    margin: 0;
    transition: none;
}
.nk-menu-main .nk-menu-sub .nk-menu-link {
    color: #526484;
}
.nk-menu-main .nk-menu-sub .nk-menu-sub {
    border-left: 1px solid #dbdfea;
    margin: 0.25rem 0 0.25rem 24px;
    padding-bottom: 0;
}
.nk-menu-main .nk-menu-sub .nk-menu-sub .nk-menu-link {
    padding-left: 0.875rem;
}
.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 {
    color: #7f8dff;
}
.nk-menu-main .nk-menu-heading {
    padding: 0.75rem 1.25rem 0.5rem;
}
.nk-menu-main .nk-menu-item + .nk-menu-heading {
    padding-top: 1.25rem;
}
.nk-menu-main > li > .nk-menu-link {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    letter-spacing: -0.01rem;
}


@media (max-width: 991.98px) {
    .nk-menu-main.nk-menu {
        max-height: calc(100vh - 65px);
        overflow: auto;
    }
}
@media (min-width: 992px) {
    .nk-menu-main.nk-menu {
        padding: 0 1.5rem 0 2rem;
    }
    .nk-menu-main > li {
        padding: 0;
        display: inline-block;
    }
    .nk-menu-main > li.nk-menu-item {
        padding: 0 1rem;
    }
    .nk-menu-main > li.nk-menu-item > .nk-menu-link {
        padding: 1.25rem 0;
        font-size: 14px;
    }
    .nk-menu-main > li > .nk-menu-link:before {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #7f8dff;
        border-radius: 3px 3px 0 0;
        opacity: 0;
    }
    .nk-menu-main > li.nk-menu-item.active > .nk-menu-link:before, .nk-menu-main > li.nk-menu-item.current-menu > .nk-menu-link:before {
        opacity: 1;
    }
    .nk-menu-main > li > .nk-menu-sub {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .nk-menu-main .nk-menu-link {
        padding: 0.5rem 1.25rem;
        font-size: 13px;
    }
    .nk-menu-main .nk-menu-icon {
        display: none;
    }
    .nk-menu-main .nk-menu-text {
        line-height: 1.5rem;
    }
    .nk-menu-main .nk-menu-item .nk-menu-toggle:after {
        line-height: 1;
        position: static;
        transform: translateY(0);
        content: "\e9c5";
        vertical-align: middle;
        color: rgba(128, 148, 174, 0.7);
        margin-left: 0.5rem;
        margin-right: -2px;
        margin-top: -1px;
        transition: color 0.1s;
    }
    .nk-menu-main .nk-menu-item:hover > .nk-menu-sub {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
    .nk-menu-main .nk-menu-sub {
        position: absolute;
        left: 0;
        top: 100%;
        width: 200px;
        background: #fff;
        border: 1px solid #e5e9f2;
        box-shadow: 0 0.125rem 0.25rem rgba(43, 55, 72, 0.15);
        border-radius: 4px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        margin-top: 6px;
        transition: opacity 0.4s, margin 0.2s;
        display: block !important;
    }
    .nk-menu-main .nk-menu-sub .nk-menu-link {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .nk-menu-main .nk-menu-sub .nk-menu-sub {
        top: -9px;
        padding: 0.5rem 0;
        border: 1px solid #e5e9f2;
        margin: 0;
        margin-top: 6px;
        left: 100%;
        margin-left: -0.75rem;
    }
    .nk-menu-main .nk-menu-sub .nk-menu-sub .nk-menu-link {
        padding-left: 1.5rem;
    }
    .nk-menu-main .nk-menu-sub .nk-menu-item:hover > a {
        background: #f5f6fa;
    }
    .nk-menu-main .nk-menu-sub .nk-menu-toggle:after {
        content: "\e9d3";
    }
    .nk-aside .nk-menu-main {
        display: none;
    }
    .is-dark .nk-menu-main > li > .nk-menu-link:before, .is-theme .nk-menu-main > li > .nk-menu-link:before {
        border-radius: 0;
        bottom: auto;
        top: 0;
    }
    .is-dark .nk-menu-main > li > .nk-menu-link {
        color: #9faec2;
    }
    .is-dark .nk-menu-main > li > .nk-menu-link.nk-menu-toggle:after {
        color: rgba(128, 148, 174, 0.7);
    }
    .is-dark .nk-menu-main > li:hover > .nk-menu-link, .is-dark .nk-menu-main > li.active > .nk-menu-link, .is-dark .nk-menu-main > li.current-menu > .nk-menu-link, .is-dark .nk-menu-main > li > .nk-menu-link:hover {
        color: #fff;
    }
    .is-theme .nk-menu-main > li > .nk-menu-link {
        color: #c4cefe;
    }
    .is-theme .nk-menu-main > li > .nk-menu-link.nk-menu-toggle:after {
        color: rgba(196, 206, 254, 0.7);
    }
    .is-theme .nk-menu-main > li:hover > .nk-menu-link, .is-theme .nk-menu-main > li.active > .nk-menu-link, .is-theme .nk-menu-main > li.current-menu > .nk-menu-link, .is-theme .nk-menu-main > li > .nk-menu-link:hover {
        color: #fff;
    }
}
.nk-footer {
    margin-top: auto;
    background: #fff;
    border-top: 1px solid #e5e9f2;
    padding: 20px 6px;
}
.nk-footer.is-dark:not([class*=bg-]) {
    background: #2b357e;
}
.nk-footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.nk-footer-copyright {
    color: #8094ae;
}
.nk-footer-copyright a {
    color: inherit;
}
.nk-footer-copyright a:hover {
    color: #6576ff;
}

@media (min-width: 576px) {
    .nk-footer {
        padding: 20px 22px;
    }
}
@media (min-width: 992px) {
    .nk-footer-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (min-width: 1660px) {
    .nk-footer-fluid {
        padding-left: 44px;
        padding-right: 44px;
    }
}
.nk-split {
    position: relative;
    display: flex;
}
.nk-split-page {
    min-height: 100vh;
}
.nk-split-content {
    position: relative;
    flex-shrink: 0;
    min-height: 100%;
}
@media (min-width: 768px) {
    .nk-split-content-md {
        width: 642px;
    }
}
.nk-split-stretch {
    flex-grow: 1;
    flex-shrink: 1;
}

@media (max-width: 991.98px) {
    .nk-split-stretch.toggle-break-lg {
        width: 460px;
    }
}
@media (max-width: 575.98px) {
    .nk-split-sm {
        flex-wrap: wrap;
    }
    .nk-split-sm > * {
        width: 100% !important;
    }
}
@media (max-width: 767.98px) {
    .nk-split-md {
        flex-wrap: wrap;
    }
    .nk-split-md > * {
        width: 100% !important;
    }
}
@media (max-width: 991.98px) {
    .nk-split-lg {
        flex-wrap: wrap;
    }
    .nk-split-lg > * {
        width: 100% !important;
    }
}
@media (max-width: 1199.98px) {
    .nk-split-xl {
        flex-wrap: wrap;
    }
    .nk-split-xl > * {
        width: 100% !important;
    }
}
@media (max-width: 1539.98px) {
    .nk-split-xxl {
        flex-wrap: wrap;
    }
    .nk-split-xxl > * {
        width: 100% !important;
    }
}
/** 04. UTILITES */
canvas {
    width: 100%;
    max-width: 100%;
}

a:hover {
    text-decoration: none;
}

p:last-child {
    margin-bottom: 0;
}

.del {
    text-decoration: line-through;
}

span[data-toggle=tooltip]:focus {
    outline: none;
}

li {
    list-style: none;
}

.g-0:not(.row) {
    margin: 0;
}
.g-0:not(.row) > li, .g-0:not(.row) > div {
    padding: 0;
}

.gx-0:not(.row) {
    margin-left: 0;
    margin-right: 0;
}
.gx-0:not(.row) > li, .gx-0:not(.row) > div {
    padding-left: 0;
    padding-right: 0;
}

.gy-0:not(.row) {
    margin-top: 0;
    margin-bottom: 0;
}
.gy-0:not(.row) > li, .gy-0:not(.row) > div {
    padding-top: 0;
    padding-bottom: 0;
}

.g-1:not(.row) {
    margin: -0.1875rem;
}
.g-1:not(.row) > li, .g-1:not(.row) > div {
    padding: 0.1875rem;
}

.gx-1:not(.row) {
    margin-left: -0.1875rem;
    margin-right: -0.1875rem;
}
.gx-1:not(.row) > li, .gx-1:not(.row) > div {
    padding-left: 0.1875rem;
    padding-right: 0.1875rem;
}

.gy-1:not(.row) {
    margin-top: -0.1875rem;
    margin-bottom: -0.1875rem;
}
.gy-1:not(.row) > li, .gy-1:not(.row) > div {
    padding-top: 0.1875rem;
    padding-bottom: 0.1875rem;
}

.g-2:not(.row) {
    margin: -0.375rem;
}
.g-2:not(.row) > li, .g-2:not(.row) > div {
    padding: 0.375rem;
}

.gx-2:not(.row) {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
}
.gx-2:not(.row) > li, .gx-2:not(.row) > div {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.gy-2:not(.row) {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem;
}
.gy-2:not(.row) > li, .gy-2:not(.row) > div {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.g-3:not(.row) {
    margin: -0.5rem;
}
.g-3:not(.row) > li, .g-3:not(.row) > div {
    padding: 0.5rem;
}

.gx-3:not(.row) {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}
.gx-3:not(.row) > li, .gx-3:not(.row) > div {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.gy-3:not(.row) {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
}
.gy-3:not(.row) > li, .gy-3:not(.row) > div {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.g-4:not(.row) {
    margin: -0.75rem;
}
.g-4:not(.row) > li, .g-4:not(.row) > div {
    padding: 0.75rem;
}

.gx-4:not(.row) {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
.gx-4:not(.row) > li, .gx-4:not(.row) > div {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.gy-4:not(.row) {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
}
.gy-4:not(.row) > li, .gy-4:not(.row) > div {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.g-5:not(.row) {
    margin: -1.375rem;
}
.g-5:not(.row) > li, .g-5:not(.row) > div {
    padding: 1.375rem;
}

.gx-5:not(.row) {
    margin-left: -1.375rem;
    margin-right: -1.375rem;
}
.gx-5:not(.row) > li, .gx-5:not(.row) > div {
    padding-left: 1.375rem;
    padding-right: 1.375rem;
}

.gy-5:not(.row) {
    margin-top: -1.375rem;
    margin-bottom: -1.375rem;
}
.gy-5:not(.row) > li, .gy-5:not(.row) > div {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem;
}

.g-gs:not(.row) {
    margin: -14px;
}
.g-gs:not(.row) > li, .g-gs:not(.row) > div {
    padding: 14px;
}

.gx-gs:not(.row) {
    margin-left: -14px;
    margin-right: -14px;
}
.gx-gs:not(.row) > li, .gx-gs:not(.row) > div {
    padding-left: 14px;
    padding-right: 14px;
}

.gy-gs:not(.row) {
    margin-top: -14px;
    margin-bottom: -14px;
}
.gy-gs:not(.row) > li, .gy-gs:not(.row) > div {
    padding-top: 14px;
    padding-bottom: 14px;
}

.gap {
    width: 100%;
    display: block;
    height: 28px;
}

.gap-0 {
    height: 0;
}

.gap-1 {
    height: 0.375rem;
}

.gap-2 {
    height: 0.75rem;
}

.gap-3 {
    height: 1rem;
}

.gap-4 {
    height: 1.5rem;
}

.gap-5 {
    height: 2.75rem;
}

.gap-gs {
    height: 28px;
}

.gap-sm {
    height: 0.75rem;
}

.gap-md {
    height: 1.25rem;
}

.gap-lg {
    height: 2rem;
}

.gap-xl {
    height: 2.5rem;
}

.gap-10px {
    height: 10px;
}

.gap-20px {
    height: 20px;
}

.gap-30px {
    height: 30px;
}

.gap-40px {
    height: 40px;
}

.gap-50px {
    height: 50px;
}

.gap-60px {
    height: 60px;
}

.gap-70px {
    height: 70px;
}

.gap-80px {
    height: 80px;
}

.gap-90px {
    height: 90px;
}

.gap-100px {
    height: 100px;
}

.li-col2x > li {
    width: 50%;
    float: left;
}

.li-col3x > li {
    width: 33.3333333333%;
    float: left;
}

.li-col4x > li {
    width: 25%;
    float: left;
}

/** 05. COMPONENTS */
.alert-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.alert-actions {
    display: inline-flex;
    align-items: center;
}
.alert-actions a + a {
    margin-left: 1rem;
}

.accordion {
    border-radius: 4px;
    border: 1px solid #dbdfea;
    background: #fff;
}
.accordion-heading {
    padding-bottom: 1.5rem;
}
.accordion-body {
    border-radius: 4px;
    padding: 0;
}
.accordion-item {
    border: none;
}
.accordion-item:not(:last-child) .accordion-head {
    border-bottom: 1px solid #dbdfea;
}
.accordion-item:not(:last-child) .accordion-inner {
    border-bottom: 1px solid #dbdfea;
}
.accordion-item:last-child .accordion-inner {
    border-top: 1px solid #dbdfea;
}
.accordion-head {
    padding: 1rem 2.25rem 1rem 1.25rem;
    display: block;
    position: relative;
}
.accordion-head .title {
    margin-bottom: 0;
    font-size: 1rem;
    color: #364a63;
    line-height: 1.3;
}
.accordion-head.collapsed .title {
    color: #526484;
}
.accordion-inner {
    padding: 1rem 1.25rem 1.25rem;
}
.accordion-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    font-size: 1rem;
    color: #364a63;
    transform: translateY(-50%);
    transition: rotate 0.4s;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}
.accordion-icon:before {
    content: "\e9da";
    font-family: "Nioicon";
    transition: 0.4s;
}
.accordion-head.collapsed .accordion-icon:before {
    content: "\e9c5";
}

@media (min-width: 768px) {
    .accordion-head {
        padding: 1rem 1.5rem;
    }
    .accordion-inner {
        padding: 1rem 1.5rem 1.25rem;
    }
    .accordion-icon {
        right: 1.5rem;
    }
}
.accordion-s2 {
    border: none;
}
.accordion-s2 .accordion-icon {
    right: 0;
}
.accordion-s2 .accordion-icon:before {
    content: "\eafa";
}
.accordion-s2 .accordion-head {
    padding: 0.5rem 2.25rem 0.5rem 0;
    border: none !important;
}
.accordion-s2 .accordion-head .title {
    font-size: 1.1rem;
    color: #6576ff;
}
.accordion-s2 .accordion-head.collapsed .title {
    color: #526484;
}
.accordion-s2 .accordion-head.collapsed .accordion-icon:before {
    content: "\eb44";
}
.accordion-s2 .accordion-inner {
    padding: 0.5rem 0 0.625rem;
    border: none !important;
}

@media (min-width: 768px) {
    .accordion-s2 .accordion-head {
        padding: 0.5rem 2.25rem 0.5rem 0;
    }
    .accordion-s2 .accordion-inner {
        padding: 0.5rem 0 0.625rem;
    }
}
.accordion-s3 {
    border: none;
}
.accordion-s3 .accordion-icon {
    left: 0;
    right: auto;
}
.accordion-s3 .accordion-icon:before {
    content: "\eafa";
}
.accordion-s3 .accordion-head {
    padding: 0.5rem 0 0.5rem 2.25rem;
    border: none !important;
}
.accordion-s3 .accordion-head .title {
    font-size: 1.1rem;
    color: #6576ff;
}
.accordion-s3 .accordion-head.collapsed .title {
    color: #526484;
}
.accordion-s3 .accordion-head.collapsed .accordion-icon:before {
    content: "\eb44";
}
.accordion-s3 .accordion-inner {
    padding: 0.5rem 0 0.625rem;
    border: none !important;
}

@media (min-width: 768px) {
    .accordion-s3 .accordion-head {
        padding: 0.5rem 0 0.5rem 2.25rem;
    }
    .accordion-s3 .accordion-inner {
        padding: 0.5rem 2.25rem 0.625rem;
    }
}
.dot {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    height: 8px;
    width: 8px;
}
.dot-label:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #fff;
    content: "";
    transform: scale(0.65);
}
.dot.sq {
    border-radius: 3px;
}
.dot.sq:after {
    border-radius: 3px;
}

.dot-xs {
    height: 4px;
    width: 4px;
}

.dot-sm {
    height: 6px;
    width: 6px;
}

.dot-md {
    height: 8px;
    width: 8px;
}

.dot-rg {
    height: 10px;
    width: 10px;
}

.dot-lg {
    height: 12px;
    width: 12px;
}

.dot-xl {
    height: 16px;
    width: 16px;
}

.dot-primary {
    background: #6576ff;
}

.dot-secondary {
    background: #364a63;
}

.dot-success {
    background: #1ee0ac;
}

.dot-info {
    background: #09c2de;
}

.dot-warning {
    background: #f4bd0e;
}

.dot-danger {
    background: #e85347;
}

.dot-light {
    background: #e5e9f2;
}

.dot-dark {
    background: #1f2b3a;
}

.dot-gray {
    background: #8091a7;
}

.dot-lighter {
    background: #f5f6fa;
}

.list:not(:last-child) {
    margin-bottom: 1rem;
}
.list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5rem;
}
.list li:not(:last-child) {
    padding-bottom: 0.5rem;
}
.list li:before {
    position: absolute;
    left: 0;
    font-size: 14px;
    line-height: 1.5rem;
    font-family: "Nioicon";
    content: "\e980";
}
.list li span {
    color: #8094ae;
}
.list li ul {
    margin-top: 0.5rem;
}
.list-checked li:before {
    color: #6576ff;
    content: "\e9b9";
}
.list-checked-circle li:before {
    color: #6576ff;
    content: "\e9b7";
}
.list-cross li:before {
    color: rgba(232, 83, 71, 0.8);
    content: "\ea02";
}
.list-status {
    list-style: none;
    line-height: 1.3;
}
.list-status li {
    display: inline-flex;
    align-items: center;
    padding-right: 1rem;
    vertical-align: middle;
}
.list-status .icon {
    margin-right: 0.375rem;
    line-height: 1.3;
}
.list-lg li {
    padding-left: 2rem;
}
.list-lg li:not(:last-child) {
    padding-bottom: 0.75rem;
}
.list-lg li:before {
    font-size: 1.35rem;
}
.list-sm li {
    padding-left: 1.2rem;
}
.list-sm li:not(:last-child) {
    padding-bottom: 0.35rem;
}
.list-sm li:before {
    font-size: 12px;
}
.list-step li {
    color: #8094ae;
    font-weight: 500;
}
.list-step li:before {
    content: "\e9e0";
}
.list-step li.list-step-current {
    color: #364a63;
}
.list-step li.list-step-current:before {
    content: "\ea1b";
    color: #6576ff;
}
.list-step li.list-step-done {
    color: #526484;
}
.list-step li.list-step-done:before {
    content: "\e9b6";
    color: #1ee0ac;
}
.list-plain a {
    color: #526484;
    display: block;
    line-height: 1.3;
    padding: 0.5rem 0;
}
.list-plain a:hover {
    color: #6576ff;
}
.list-category a {
    font-weight: 500;
}
.list-download li > a {
    display: inline-block;
    padding: 0.25rem;
}
.list-download li > a > .icon {
    margin: 0 0.25rem;
    font-size: 1.25rem;
}

.list-primary li:before {
    color: #6576ff;
}

.list-secondary li:before {
    color: #364a63;
}

.list-success li:before {
    color: #1ee0ac;
}

.list-info li:before {
    color: #09c2de;
}

.list-warning li:before {
    color: #f4bd0e;
}

.list-danger li:before {
    color: #e85347;
}

.list-light li:before {
    color: #e5e9f2;
}

.list-dark li:before {
    color: #1f2b3a;
}

.list-gray li:before {
    color: #8091a7;
}

.list-lighter li:before {
    color: #f5f6fa;
}

.link-bdr-t, .link-list-plain li + li, .link-list-opt li + li, .link-list + .link-list, .link-tidy li + li, .link-check + .link-check {
    border-top: 1px solid #e5e9f2;
}

.link-bdr-b {
    border-bottom: 1px solid #e5e9f2;
}

.link-pd-sm, .link-list-plain.sm a, .link-tidy.sm li {
    padding: 6px 1rem;
}

.link-act-check:after, .link-list-opt li.active > a:after, .link-list-opt a.active:after, .link-check li.active > a:after, .link-check li a.active:after {
    content: "\e9bd";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    font-family: "Nioicon";
}

.link-check {
    padding: 0.5rem 0;
}
.link-check .divider {
    margin: 0.5rem 0;
}
.link-check li {
    display: block;
}
.link-check li > span, .link-check li a {
    display: block;
    line-height: 1.25rem;
    padding: 0.35rem 1rem;
}
.link-check li > span {
    text-transform: uppercase;
    color: #364a63;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}
.link-check li a {
    display: flex;
    align-items: center;
    color: #526484;
    font-size: 13px;
    position: relative;
}
.link-check li a:hover {
    color: #6576ff;
    background: #f5f6fa;
}
.link-check li .icon {
    width: 1.75rem;
    font-size: 1.125rem;
}
.link-tidy.no-bdr {
    padding: 0.5rem 0;
}
.link-tidy.no-bdr li:not(.divider) {
    border-top-width: 0;
}
.link-tidy .divider {
    margin: 0.5rem 0;
}
.link-tidy li {
    position: relative;
    padding: 0.625rem 1.1rem;
    line-height: 1.3rem;
}
.link-list {
    padding: 0.75rem 0;
}
.link-list .divider {
    margin: 0.5rem 0;
}
.link-list a {
    display: flex;
    align-items: center;
    color: #526484;
    font-size: 13px;
    line-height: 1.4rem;
    font-weight: 500;
    padding: 0.575rem 0;
    position: relative;
}
.link-list a:hover {
    color: #6576ff;
}
.link-list a .icon {
    font-size: 1.125rem;
    width: 1.5rem;
    line-height: 1;
}

.link-list-opt.no-bdr {
    padding: 0.5rem 0;
}
.link-list-opt.no-bdr li:not(.divider) {
    border-top-width: 0;
}
.link-list-opt .divider {
    margin: 0.5rem 0;
}
.link-list-opt a {
    display: flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    font-size: 12px;
    font-weight: 500;
    color: #526484;
    transition: all 0.4s;
    line-height: 1.3rem;
    position: relative;
}
.link-list-opt a:hover {
    color: #6576ff;
    background: #f5f6fa;
}
.link-list-opt a .icon {
    font-size: 1.125rem;
    width: 1.75rem;
    opacity: 0.8;
}
.link-list-opt li.disabled > a, .link-list-opt a.disabled {
    pointer-events: none;
    color: #8094ae;
    opacity: 0.7;
}
.link-list-opt .opt-head {
    padding: 0.25rem 1.25rem;
    color: #8094ae;
}
.link-list-opt.ui-v2 a {
    font-weight: 400;
}
.link-list-opt.no-bdr + .link-check {
    margin-top: -0.75rem;
}
.link-list-opt.ui-colored li.active > a, .link-list-opt.ui-colored a.active {
    color: #6576ff;
}

.link-list-menu {
    padding: 0.75rem 0;
}
.link-list-menu .divider {
    margin: 0.5rem 0;
}
.link-list-menu a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    color: #526484;
    transition: all 0.4s;
    line-height: 1.3rem;
}
.link-list-menu a:after {
    position: absolute;
    font-size: 1rem;
    font-family: "Nioicon";
    right: 1.25rem;
    content: "\e9d3";
    color: #8094ae;
    transition: 0.3s ease;
}
.link-list-menu a .icon {
    font-size: 1.125rem;
    width: 1.75rem;
    opacity: 0.8;
    color: #8094ae;
    margin-top: -2px;
}
.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 {
    color: #6576ff;
}
.link-list-menu.nav {
    display: block;
}

@media (min-width: 576px) {
    .link-list-menu a {
        padding: 1rem 1.5rem;
    }
}
.link-list-plain.no-bdr {
    padding: 0.5rem 0;
}
.link-list-plain.no-bdr li {
    border-top-width: 0;
}
.link-list-plain .divider {
    margin: 0.5rem 0;
}
.link-list-plain a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    color: #526484;
    transition: all 0.4s;
    line-height: 1.4rem;
    position: relative;
}
.link-list-plain a:hover {
    color: #6576ff;
    background: #f5f6fa;
}
.link-list-plain a .icon {
    font-size: 1.125rem;
    width: 1.75rem;
    opacity: 0.8;
    color: #6576ff;
}
.link-list-plain li.active > a, .link-list-plain a.active {
    color: #6576ff;
    background: #f5f6fa;
}
.link-list-plain.text-center a {
    justify-content: center;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.link-list-plain.li-col2x > li {
    border-right: 1px solid #e5e9f2;
    border-bottom: 1px solid #e5e9f2;
    border-top: 0;
}
.link-list-plain.li-col2x > li:nth-child(2n) {
    border-right: none;
}

.link-list-plain.li-col3x > li {
    border-right: 1px solid #e5e9f2;
    border-bottom: 1px solid #e5e9f2;
    border-top: 0;
}
.link-list-plain.li-col3x > li:nth-child(3n) {
    border-right: none;
}

.link-list-plain.li-col4x > li {
    border-right: 1px solid #e5e9f2;
    border-bottom: 1px solid #e5e9f2;
    border-top: 0;
}
.link-list-plain.li-col4x > li:nth-child(4n) {
    border-right: none;
}

.link-list-template a {
    font-weight: 400;
}

.passcode-icon {
    display: none;
}
.passcode-icon.icon-show {
    display: block;
}
.is-shown .passcode-icon.icon-show {
    display: none;
}
.is-hidden .passcode-icon.icon-show {
    display: block;
}
.is-shown .passcode-icon.icon-hide {
    display: block;
}
.is-hidden .passcode-icon.icon-hide {
    display: none;
}

.form-dropdown {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8094ae;
}
.form-dropdown > div > span {
    margin: 0 0.5rem;
}
.form-dropdown .dropdown > a {
    display: inline-flex;
}

.form-clip, .form-text-hint {
    position: absolute;
    right: 2px;
    top: 2px;
    height: calc(2.125rem - 2px);
    display: flex;
    align-items: center;
    color: #6576ff;
    padding-left: 1rem;
    padding-right: 0.75rem;
    background: #fff;
    border-radius: 4px;
}
.form-clip.sm, .form-text-hint.sm {
    height: calc(1.75rem + 2px);
}
.form-clip.lg, .form-text-hint.lg {
    height: calc(2.625rem + 2px);
}
.form-clip.xl, .form-text-hint.xl {
    height: calc(3.25rem + 2px);
}
.form-clip .icon + span, .form-clip span + .icon, .form-text-hint .icon + span, .form-text-hint span + .icon {
    margin-left: 0.25rem;
}

.nk-upload-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.125rem + 2px);
    margin: 0;
    opacity: 0;
}
.nk-upload-label {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    width: 100%;
    min-height: 150px;
    border-radius: 4px;
    border: 1px dashed #e5e9f2;
    padding-bottom: 0;
}
.nk-upload-init {
    display: block;
    text-align: center;
}
.nk-upload-files {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    margin: -0.5rem;
    padding-bottom: 2rem;
}
.nk-upload-files li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0.5rem;
}
.nk-upload-files li img {
    width: 60px;
    flex-shrink: 0;
    border-radius: 4px;
}
.is-multiple .nk-upload-files li img {
    width: 40px;
}
.is-multiple .nk-upload-files li .nk-upload-name {
    display: none;
}
.nk-upload-name {
    margin: 0.5rem 0 0;
    color: #526484;
    font-size: 0.8125rem;
    font-weight: 500;
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nk-upload-response {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
}
.nk-upload-response .message {
    font-size: 12px;
    color: #8094ae;
}
.nk-upload-response .message + .icon {
    margin-left: 0.5rem;
}
.nk-upload-response .icon:after {
    font-family: "Nioicon";
}
.nk-upload-response .icon + .message {
    margin-left: 0.5rem;
}
.nk-upload-response.invalid .icon {
    color: #f4bd0e;
}
.nk-upload-response.invalid .icon:after {
    content: "\e90f";
}
.nk-upload-response.valid .icon {
    color: #1ee0ac;
}
.nk-upload-response.valid .icon:after {
    content: "\e9b7";
}
.nk-upload-response.error .icon {
    color: #e85347;
}
.nk-upload-response.error .icon:after {
    content: "\ea00";
}
.nk-upload-foot {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #e5e9f2;
    padding: 1rem 1.25rem;
    margin: 0 -1.5rem;
}
.nk-upload-foot > span, .nk-upload-foot > button {
    margin: 0.25rem;
}

.form-editor-custom textarea {
    border-radius: 4px 4px 0 0;
}
.form-editor-action {
    border: 1px solid #dbdfea;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    padding: 0.25rem 0.5rem;
}
.form-editor-action > .link {
    padding: 0.5rem;
}
.form-editor-action > .link.collapsed {
    color: #8094ae;
}
.form-editor-action > .link .icon {
    margin-right: 0.25rem;
}
.form-editor-btn-group, .form-btn-group {
    display: flex;
    align-items: center;
    margin: -0.25rem;
    flex-wrap: wrap;
}
.form-editor-btn-group li, .form-btn-group li {
    padding: 0.25rem;
    line-height: 0.5rem;
}
.form-btn-group li:first-child {
    margin-right: 0.5rem;
}
.form-btn-secondary {
    margin-left: auto;
}

input[type=number] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.number-spinner {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
    text-align: center;
}
.number-spinner:focus {
    border-color: #dbdfea;
}
.number-spinner-btn {
    position: absolute;
    top: 0;
}
.number-plus {
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.number-minus {
    left: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-addon {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: #f5f6fa;
    border: 1px solid #dbdfea;
    font-size: 0.75rem;
    border-radius: 4px;
}
.input-group-addon:not(:last-child) {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group-addon:not(:first-child) {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #3c4d62;
    transition: background-color 5000s ease-in-out 0s;
}

.page-title {
    font-family: Nunito, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .page-title {
        font-size: 1.75rem;
    }
}
.overline-title {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.2em;
    color: #8094ae;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Roboto, sans-serif;
}
.text-light .overline-title {
    color: #8094ae;
}
.is-dark .overline-title {
    color: #b7c2d0;
}
.is-theme .overline-title {
    color: #c4cefe;
}
.overline-title-alt {
    font-family: Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.15em;
    font-size: 11px;
    color: #8094ae;
    text-transform: uppercase;
}
.is-dark .overline-title-alt {
    color: #8094ae;
}
.is-theme .overline-title-alt {
    color: #c4cefe;
}
.overline-title-sap {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding-left: 0.35rem;
    padding-right: 0.25rem;
    color: #b6c6e3;
}
.overline-title-sap:before, .overline-title-sap:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    content: "";
    background: #b6c6e3;
}
.overline-title-sap:before {
    right: 100%;
}
.overline-title-sap:after {
    left: 100%;
}

.caption-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.caption-text + .sub-text, .caption-text + .sub-text-sm {
    margin-top: 0.5rem;
    display: block;
}

.lead-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #364a63;
    display: block;
}
.lead-text + .sub-text {
    font-size: 12px;
}
.lead-text span {
    color: #526484;
    font-weight: 400;
}
.lead-text-lg {
    font-size: 1.125rem;
    font-weight: 500;
    color: #364a63;
    display: block;
}
.is-theme .lead-text-lg {
    color: #fff;
}
.is-theme .is-light .lead-text-lg {
    color: #364a63;
}
.is-dark .lead-text {
    color: #b7c2d0;
}
.is-dark .lead-text span {
    color: #8091a7;
}
.is-theme .lead-text {
    color: #fff;
}
.is-theme .lead-text span {
    color: #c4cefe;
}
.is-theme .is-light .lead-text, .is-dark .is-light .lead-text {
    color: #364a63;
}
.is-theme .is-light .lead-text span, .is-dark .is-light .lead-text span {
    color: #526484;
}

.sub-text {
    display: block;
    font-size: 13px;
    color: #8094ae;
}
.sub-text span + .dot, .sub-text .dot + span {
    margin-left: 0.25rem;
}
.sub-text-sm, .sub-text + .sub-text {
    font-size: 12px;
}
.sub-text-sm {
    color: #8094ae;
}
.is-theme .sub-text-sm {
    color: #c4cefe;
}
.is-theme .is-light .sub-text-sm {
    color: #8094ae;
}
.text-ellipsis .sub-text {
    display: inline;
}
.sub-text strong {
    color: #526484;
    font-weight: 700;
}
.is-theme .sub-text strong {
    color: #c4cefe;
}
.is-theme .is-light .sub-text strong {
    color: #526484;
}
.sub-text span {
    white-space: nowrap;
}
.is-theme .sub-text {
    color: #c4cefe;
}
.is-theme .is-light .sub-text {
    color: #8094ae;
}

.text-date span {
    color: #526484;
}

h6 .badge, .h6 .badge {
    margin-left: 0.5rem;
}

.fs-9px {
    font-size: 9px !important;
}

.fs-10px {
    font-size: 10px !important;
}

.fs-11px {
    font-size: 11px !important;
}

.fs-12px {
    font-size: 12px !important;
}

.fs-13px {
    font-size: 13px !important;
}

.fs-14px {
    font-size: 14px !important;
}

.fs-15px {
    font-size: 15px !important;
}

.fs-16px {
    font-size: 16px !important;
}

.fs-17px {
    font-size: 17px !important;
}

.fs-18px {
    font-size: 18px !important;
}

.fs-19px {
    font-size: 19px !important;
}

.fs-20px {
    font-size: 20px !important;
}

.fs-21px {
    font-size: 21px !important;
}

.fs-22px {
    font-size: 22px !important;
}

.note-text {
    font-size: 12px;
    font-style: italic;
    color: #8094ae;
}

.card .table {
    margin-bottom: 0;
}
.card .table tr:first-child th, .card .table tr:first-child td {
    border-top: none;
}
.card .table tr:last-child td:first-child {
    border-bottom-left-radius: 4px;
}
.card .table tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
}
.card .table tr:first-child th:first-child {
    border-top-left-radius: 4px;
}
.card .table tr:first-child th:last-child {
    border-top-right-radius: 4px;
}
.card + .lead-text {
    margin-top: 2rem;
}
.lead-text + .card {
    margin-top: 1rem;
}
.card-custom-s1 .card-inner-group .card-inner {
    border-bottom: 1px solid #dbdfea;
}

@media (max-width: 991.98px) {
    .card-custom-s1 .card-inner-lg {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (min-width: 992px) {
    .card-custom-s1 .card-inner-group {
        border-right: 1px solid #dbdfea;
    }
    .card-custom-s1 .card-inner-group .card-inner:last-child {
        border-bottom: none;
    }
}
@media (min-width: 576px) {
    .card-search .card-body {
        padding: 1.5rem;
    }
}
.card-aside {
    width: 300px;
    background-color: #fff;
    min-height: 100vh;
    flex-shrink: 0;
}
.card-aside-left {
    order: -1;
    border-right: 1px solid #e5e9f2;
}
.card-aside-right {
    order: 100;
    border-left: 1px solid #e5e9f2;
}
.card-aside-wrap {
    display: flex;
}
.card-aside-wrap .card-inner, .card-aside-wrap .card-content {
    flex-grow: 1;
}

@media (max-width: 767.98px) {
    .toggle-break-md.card-aside .card-inner-group {
        max-height: calc(100vh - 65px);
        margin-top: 65px;
    }
}
@media (max-width: 991.98px) {
    .toggle-break-lg.card-aside .card-inner-group {
        max-height: calc(100vh - 65px);
        margin-top: 65px;
    }
}
@media (max-width: 1199.98px) {
    .toggle-break-xl.card-aside .card-inner-group {
        max-height: calc(100vh - 65px);
        margin-top: 65px;
    }
}
@media (max-width: 1539.98px) {
    .toggle-break-xxl.card-aside .card-inner-group {
        max-height: calc(100vh - 65px);
        margin-top: 65px;
    }
}
@media (min-width: 992px) {
    .card-aside {
        position: static;
        display: block;
    }
}
@media (min-width: 1540px) {
    .card-aside {
        width: 380px;
    }
}
.user-avatar, [class^=user-avatar]:not([class*=-group]) {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #798bff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    position: relative;
}
.user-avatar + .user-info, [class^=user-avatar]:not([class*=-group]) + .user-info {
    margin-left: 1rem;
}
.user-avatar + .user-name, [class^=user-avatar]:not([class*=-group]) + .user-name {
    margin-left: 0.75rem;
}
.user-avatar img, [class^=user-avatar]:not([class*=-group]) img {
    border-radius: 50%;
}
.user-avatar.md + .user-info, [class^=user-avatar]:not([class*=-group]).md + .user-info {
    margin-left: 1.5rem;
}
.user-avatar.md + .user-name, [class^=user-avatar]:not([class*=-group]).md + .user-name {
    margin-left: 1.25rem;
}
.user-avatar .edit, [class^=user-avatar]:not([class*=-group]) .edit {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(31, 43, 58, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.user-avatar:hover .edit, [class^=user-avatar]:not([class*=-group]):hover .edit {
    opacity: 1;
}
.user-avatar .status, [class^=user-avatar]:not([class*=-group]) .status {
    border: 2px solid #fff;
    position: absolute;
    bottom: 0;
    right: 0;
}
.user-avatar.sq, [class^=user-avatar]:not([class*=-group]).sq {
    border-radius: 4px;
}
.user-avatar.sq img, [class^=user-avatar]:not([class*=-group]).sq img {
    border-radius: 4px;
}
.user-avatar.sq .status, [class^=user-avatar]:not([class*=-group]).sq .status {
    bottom: -6px;
    right: -6px;
}

.user-avatar-multiple {
    background-color: transparent !important;
}
.user-avatar-multiple .user-avatar {
    position: absolute;
    height: 70%;
    width: 70%;
    font-size: 80%;
    border: 2px solid #fff;
}
.user-avatar-multiple .user-avatar:nth-child(1) {
    top: 0;
    right: 0;
}
.user-avatar-multiple .user-avatar:nth-child(2) {
    bottom: 0;
    left: 0;
}

.user-card .user-avatar.d-none {
    margin-right: 1rem;
}
.user-card .user-avatar.d-none + .user-info, .user-card .user-avatar.d-none + .user-name {
    margin-left: 0;
}

.user-avatar-xl, .user-avatar.xl {
    height: 110px;
    width: 110px;
    font-size: 40px;
    font-weight: 400;
}
.user-avatar-xl .status, .user-avatar.xl .status {
    bottom: 9px;
    right: 9px;
}
.user-avatar-lg, .user-avatar.lg {
    height: 80px;
    width: 80px;
    font-size: 28px;
    font-weight: 400;
}
.user-avatar-lg .status, .user-avatar.lg .status {
    bottom: 5px;
    right: 5px;
}
.user-avatar-md, .user-avatar.md {
    height: 60px;
    width: 60px;
    font-size: 18px;
}
.user-avatar-md .status, .user-avatar.md .status {
    bottom: 2px;
    right: 2px;
}
.user-avatar-sm, .user-avatar.sm {
    height: 32px;
    width: 32px;
    font-size: 12px;
}
.user-avatar-sm .status, .user-avatar.sm .status {
    bottom: -2px;
    right: -2px;
}
.user-avatar-xs, .user-avatar.xs {
    height: 26px;
    width: 26px;
    font-size: 9px;
    font-weight: 700;
}
.user-avatar-xs .status, .user-avatar.xs .status {
    bottom: -2px;
    right: -2px;
}

.user-avatar[class*=-blue-dim] {
    color: #559bfb;
}

.user-avatar[class*=-azure-dim] {
    color: #1676fb;
}

.user-avatar[class*=-indigo-dim] {
    color: #2c3782;
}

.user-avatar[class*=-purple-dim] {
    color: #816bff;
}

.user-avatar[class*=-pink-dim] {
    color: #ff63a5;
}

.user-avatar[class*=-orange-dim] {
    color: #ffa353;
}

.user-avatar[class*=-teal-dim] {
    color: #20c997;
}

.user-avatar[class*=-primary-dim] {
    color: #6576ff;
}

.user-avatar[class*=-secondary-dim] {
    color: #364a63;
}

.user-avatar[class*=-success-dim] {
    color: #1ee0ac;
}

.user-avatar[class*=-info-dim] {
    color: #09c2de;
}

.user-avatar[class*=-warning-dim] {
    color: #f4bd0e;
}

.user-avatar[class*=-danger-dim] {
    color: #e85347;
}

.user-avatar[class*=-dark-dim] {
    color: #1f2b3a;
}

.user-avatar[class*=-gray-dim] {
    color: #8091a7;
}

.user-avatar[class*=-lighter] {
    color: #8094ae;
}

.user-avatar[class*=-light] {
    color: #526484;
}

.user-card {
    display: flex;
    align-items: center;
}
.user-card-wrap {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
}
.user-card .user-info {
    color: #8094ae;
}
.user-card-menu {
    position: absolute;
    right: 1rem;
    top: 1rem;
}
.user-toggle {
    display: flex;
    align-items: center;
    padding: 0 1px 1px;
}
.user-status {
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    padding-top: 0.125rem;
    padding-bottom: 0.375rem;
}
.user-status-unverified {
    color: #e85347;
}
.user-status-verified {
    color: #1ee0ac;
}
.user-name {
    color: #526484;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}
.is-dark .user-name {
    color: #90a1b8;
}
.is-theme .user-name {
    color: #c4cefe;
}
.user-action {
    margin-left: auto;
    font-size: 20px;
    color: #8094ae;
}
.user-account-info {
    padding-top: 1.5rem;
    padding-bottom: 1.25rem;
}
.user-account-data li {
    display: flex;
    justify-content: space-between;
    padding: 0.125rem 0;
}
.user-account-actions:not(:first-child) {
    margin-top: 1.5rem;
}
.user-account-actions ul {
    display: flex;
}
.user-account-actions ul li {
    width: 44%;
}
.user-account-actions ul li:last-child {
    width: 56%;
}
.user-account-actions .btn, .user-account-actions .dual-listbox .dual-listbox__button, .dual-listbox .user-account-actions .dual-listbox__button {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.04em;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-transform: uppercase;
}
.user-account-links {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e9f2;
}
.user-account-info .user-account-links:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.user-account-info + .user-account-links {
    padding-top: 0;
    margin-top: -0.5rem;
}
.user-account-links a:link {
    padding: 0.5rem 0;
    display: flex;
}
.user-account-value {
    display: inline-flex;
}
.user-balance {
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.125rem 0 0.375rem;
    color: #6576ff;
}
.user-balance small, .user-balance .small {
    font-size: 1rem;
}
.user-balance-alt {
    font-size: 15px;
    color: #526484;
    font-weight: 700;
}
.user-balance-alt span {
    font-weight: 400;
}
.user-balance-sub {
    font-size: 13px;
    color: #8094ae;
}
.user-balance-sub span {
    color: #526484;
}
.user-balance-sub + a {
    margin-top: 1rem;
}

.user-card-s2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0.5rem;
}
.user-card-s2 .user-avatar {
    margin: 0 auto;
}
.user-card-s2 .user-info {
    margin: 1.25rem 0 0 !important;
}
.user-card-s2 .user-info .sub-text {
    justify-content: center;
}
.user-card-s2 .user-info .badge {
    margin-bottom: 1rem;
}

.user-card-md .lead-text {
    font-size: 1rem;
}
.user-card-md .sub-text {
    font-size: 0.875rem;
}

.user-activity {
    display: flex;
}
.user-activity-group {
    display: flex;
    flex-wrap: wrap;
}
.user-activity-ck {
    height: 110px;
    padding: 0.5rem 0.375rem 0;
}
.user-activity .icon {
    width: 2.25rem;
    font-size: 1.5rem;
    color: #8094ae;
}
.user-activity .info span {
    display: block;
}
.user-activity .amount {
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 500;
    color: #526484;
}
.user-activity .title {
    font-size: 12px;
    color: #8094ae;
}
.user-activity .gfx {
    align-self: flex-end;
    width: 50px;
    margin-left: 1rem;
    margin-bottom: 0.25rem;
}

.user-contacts li {
    color: #526484;
    display: flex;
    font-size: 0.875rem;
    line-height: 1.4rem;
    padding: 0.375rem 0;
}
.user-contacts li .icon {
    color: #8094ae;
    font-size: 1rem;
    width: 1.75rem;
    line-height: inherit;
    display: inline-block;
}

.user-avatar-group {
    display: flex;
}
.user-avatar-group .user-avatar {
    border: 2px solid #fff;
}
.user-avatar-group .user-avatar:not(:first-child) {
    margin-left: -20%;
}
.user-avatar-group .user-avatar.sm:not(:first-child) {
    margin-left: -1rem;
}
.user-avatar-group .user-avatar.xs:not(:first-child) {
    margin-left: -0.5rem;
}

.user-info .lead-text, .user-info .sub-text {
    display: flex;
    align-items: center;
}
.user-info .edit {
    font-size: 1.25rem;
    color: #8094ae;
    margin-left: 0.5rem;
    display: inline-flex;
}
.user-info .edit:hover {
    color: #6576ff;
}

.user-plan {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.75rem 0;
}
.user-plan-title {
    display: flex;
    align-items: center;
    color: #364a63;
    font-weight: 700;
    font-size: 1rem;
}
.user-plan-title .icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #6576ff;
}
.user-plan-info, .user-plan-actions {
    padding: 0.5rem 0;
}
.user-plan-status {
    font-size: 13px;
    font-weight: 500;
    color: #8094ae;
    text-transform: uppercase;
    margin-top: 0.5rem;
}
.user-plan-progress {
    width: 100%;
    margin-top: 1rem;
}

.data-list:not(:first-child) {
    margin-top: 1.5rem;
}
.data-item {
    position: relative;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
}
.data-item .icon {
    color: #8094ae;
    text-align: center;
    height: 32px;
    vertical-align: middle;
    line-height: 32px;
    display: inline-block;
}
.data-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.data-item[data-toggle] {
    cursor: pointer;
}
.data-item:hover .data-label {
    color: #526484;
}
.data-item:hover .data-value, .data-item:hover .icon {
    color: #364a63;
}
.data-head {
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.25rem;
    background-color: #ebeef2;
    border-radius: 4px;
}
.data-head.is-plain {
    margin-bottom: 0;
    background-color: transparent;
}
.data-head.is-plain:first-child {
    margin-top: 1rem;
}
.data-head .title {
    color: #526484;
}
.data-col {
    flex-grow: 1;
}
.data-col span:not(.data-more) {
    display: inline-block;
    transition: color 0.3s;
}
.data-col-end {
    flex-grow: 0;
    margin-left: auto;
}
.data-label {
    color: #8094ae;
    width: 100%;
    flex-shrink: 0;
}
.data-value {
    color: #526484;
    font-size: 0.9375rem;
}
.data-more {
    position: relative;
    z-index: 4;
    text-align: center;
    line-height: 28px;
    height: 28px;
    width: 28px;
    display: inline-grid;
    align-content: center;
}
.data-more:before {
    position: absolute;
    z-index: -1;
    height: 20px;
    width: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    content: "";
    background-color: #e5e9f2;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}
.data-item:hover .data-more:before {
    opacity: 1;
    height: 40px;
    width: 40px;
}
.data-more.disable:before {
    display: none;
}

.data-list-s2:not(:first-child) {
    margin-top: 1rem;
}
.data-list-s2 .data-item, .data-list-s2 .data-head {
    padding-left: 0;
    padding-right: 0;
    background: transparent;
}
.data-list-s2 .data-head {
    border-bottom: 1px solid #dbdfea;
}
.data-list-s2 .data-item:not(:last-child) {
    border-bottom-color: #dbdfea;
}
.data-list-s2 .data-label {
    color: #526484;
}
.data-list-s2 .data-placeholder {
    color: #8094ae;
}

@media (min-width: 768px) {
    .data-list:not(:first-child) {
        margin-top: 2rem;
    }
    .data-list-s2:not(:first-child) {
        margin-top: 1.25rem;
    }
    .data-item {
        padding: 1.5rem 1.25rem;
    }
    .data-col {
        display: flex;
        align-items: center;
    }
    .data-col-end {
        width: 200px;
        text-align: right;
        justify-content: flex-end;
    }
    .data-label:not([class^=w-]) {
        width: 50%;
    }
}
@media (min-width: 1200px) and (max-width: 1359px) {
    .card-aside-wrap .data-list .data-col {
        flex-wrap: wrap;
    }
    .card-aside-wrap .data-list .data-label {
        width: 100%;
    }
}
.is-compact .data-item {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.is-medium .data-item {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
}

.dropdown-menu .nk-notification {
    max-height: 239px;
    overflow: auto;
}
.nk-notification-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.75rem;
}
.nk-notification-icon {
    flex-shrink: 0;
    margin-right: 0.75rem;
}
.nk-notification-text {
    font-size: 13px;
    color: #526484;
}
.nk-notification-text span {
    color: #364a63;
}
.nk-notification-time {
    font-size: 11px;
    color: #8094ae;
}

.dropdown-menu .nk-chat-list, .dropdown-menu .chat-list {
    max-height: 274px;
    overflow: auto;
}

.icon-light {
    color: #fff;
}
.icon-dark {
    color: #364a63;
}
.icon-text {
    display: flex;
    align-items: center;
    font-size: 13px;
}
.icon-text .icon {
    font-size: 1.5em;
    width: 1.75rem;
}
.icon-image {
    width: 70px;
}
.icon-image + h6, .icon-image + .h6 {
    margin-top: 1rem;
}
.icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #6576ff;
    color: #fff;
    font-size: 18px;
    height: 36px;
    width: 36px;
}
.icon-circle-sm, .icon-circle.sm {
    height: 20px;
    width: 20px;
    font-size: 12px;
}
.icon-circle-md, .icon-circle.md {
    height: 28px;
    width: 28px;
    font-size: 14px;
}
.icon-circle-lg, .icon-circle.lg {
    height: 44px;
    width: 44px;
    font-size: 24px;
}
.icon-circle-xxl, .icon-circle.xxl {
    height: 80px;
    width: 80px;
    font-size: 40px;
}
.icon-status {
    position: relative;
    display: inline-flex;
}
.icon-status:after {
    position: absolute;
    border-radius: 50%;
    right: 0;
    top: 1px;
    height: 10px;
    width: 10px;
    border: 2px solid #fff;
    content: "";
}
.icon-status-info:after {
    background: #09c2de;
}
.icon-status-danger:after {
    background: #e85347;
}
.icon-status-success:after {
    background: #1ee0ac;
}
.icon-status-warning:after {
    background: #f4bd0e;
}
.icon-status-on:after {
    background: #1ee0ac;
}
.icon-status-off:after {
    background: #8094ae;
}
.icon-status-na:after {
    display: none;
}
.icon-overlap {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-shrink: 0;
}
.icon-overlap li {
    border-radius: 50%;
    border: 2px solid #fff;
}
.icon-overlap li + li {
    margin-right: -14px;
}
.icon-overlap-alt {
    display: inline-flex;
    align-items: flex-end;
    flex-shrink: 0;
}
.icon-overlap-alt li {
    border-radius: 50%;
}
.icon-overlap-alt li + li {
    margin-left: -16px;
    margin-bottom: -10px;
}

.icon-circle[class*=btc] {
    background: #f9841e;
}

.icon-circle[class*=facebook] {
    background: #3b5998;
}

.icon-circle[class*=google] {
    background: #de5246;
}

.icon-circle[class*=btc-dim] {
    background: #feefe2;
}

.icon-circle[class*=eth-dim] {
    background: #eaedf6;
}

.icon-circle[class*=white] {
    background: #fff;
}

.icon[class*=bg-blue-dim] {
    color: #559bfb;
}

.icon[class*=bg-azure-dim] {
    color: #1676fb;
}

.icon[class*=bg-indigo-dim] {
    color: #2c3782;
}

.icon[class*=bg-purple-dim] {
    color: #816bff;
}

.icon[class*=bg-pink-dim] {
    color: #ff63a5;
}

.icon[class*=bg-orange-dim] {
    color: #ffa353;
}

.icon[class*=bg-teal-dim] {
    color: #20c997;
}

.icon[class*=bg-primary-dim] {
    color: #6576ff;
}

.icon[class*=bg-secondary-dim] {
    color: #364a63;
}

.icon[class*=bg-success-dim] {
    color: #1ee0ac;
}

.icon[class*=bg-info-dim] {
    color: #09c2de;
}

.icon[class*=bg-warning-dim] {
    color: #f4bd0e;
}

.icon[class*=bg-danger-dim] {
    color: #e85347;
}

.icon[class*=bg-light] {
    color: #526484;
}

.icon[class*=bg-lighter] {
    color: #8094ae;
}

.icon[class*=bg-dark-dim] {
    color: #dde2ea;
}

.icon[class*=bg-gray-dim] {
    color: #e9f0f9;
}

.icon[class*=bg-facebook-dim] {
    color: #3b5998;
}

.icon[class*=bg-google-dim] {
    color: #de5246;
}

.icon[class*=bg-btc-dim] {
    color: #f9841e;
}

.icon[class*=bg-eth-dim] {
    color: #6174b9;
}

.icon[class*=bg-white] {
    color: #526484;
}

.icon-avatar {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    text-align: center;
    line-height: 1.5rem;
    border-radius: 50%;
    background: #e3e7fe;
    color: #798bff;
    margin-right: 0.5rem;
    font-size: 12px;
}
.icon-avatar-md {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    font-size: 14px;
}

.tb-col-hide, .tb-col-xxl, .tb-col-xl, .tb-col-lg, .tb-col-md, .tb-col-sm, .tb-col-xs, .tb-col-mb {
    display: none !important;
}

@media (min-width: 576px) {
    .tb-col-sm {
        display: table-cell !important;
    }
}
@media (min-width: 768px) {
    .tb-col-md {
        display: table-cell !important;
    }
}
@media (min-width: 992px) {
    .tb-col-lg {
        display: table-cell !important;
    }
}
@media (min-width: 1200px) {
    .tb-col-xl {
        display: table-cell !important;
    }
}
@media (min-width: 1540px) {
    .tb-col-xxl {
        display: table-cell !important;
    }
}
@media (min-width: 359px) {
    .tb-col-xs {
        display: table-cell !important;
    }
}
@media (min-width: 414px) {
    .tb-col-mb {
        display: table-cell !important;
    }
}
.table-middle td, .tb-row-middle td {
    vertical-align: middle;
}

.tb-col-end, .tb-col-action {
    text-align: right;
}
.tb-col-middle {
    vertical-align: middle;
}
.tb-col-action .link-cross, .tb-col-action .link-done {
    font-size: 1rem;
    text-align: center;
    line-height: 28px;
    height: 24px;
    width: 24px;
    display: inline-block;
    color: #8094ae;
    vertical-align: middle;
    border-radius: 12px;
}
.tb-col-action .link-cross .icon, .tb-col-action .link-done .icon {
    padding-left: 1px;
}
.tb-col-action .link-cross:hover {
    color: #e85347;
    background: #fce7e5;
}
.tb-col-action .link-done:hover {
    color: #1ee0ac;
    background: #e0fbf3;
}

@media (max-width: 575.98px) {
    .table-ulogs th.tb-col-ip {
        display: none;
    }
    .table-ulogs tr {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        position: relative;
        padding: 0.5rem 1.25rem;
    }
    .table-ulogs tr:not(:first-child) {
        border-top: 1px solid #dbdfea;
    }
    .table-ulogs tr td {
        padding: 0;
        border: 0;
    }
    .table-ulogs tr td:first-child, .table-ulogs tr td:last-child {
        padding: 0;
    }
    .table-ulogs tr td, .table-ulogs tr th {
        flex-grow: 1;
    }
    .table-ulogs tr td.tb-col-os {
        width: 100%;
    }
    .table-ulogs tr th.tb-col-os {
        width: 40%;
        min-width: 142px;
        flex-grow: 0;
    }
    .table-ulogs tr td.tb-col-ip {
        width: 40%;
        min-width: 130px;
        flex-grow: 0;
    }
    .table-ulogs tr .tb-col-action {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        padding: 0;
    }
    .table-ulogs thead tr {
        padding: 0;
    }
}
.toggle-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 10px);
    z-index: 9;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 12px 1px rgba(43, 55, 72, 0.15);
    transform: translateY(10px);
}
.toggle-content-right {
    left: auto;
    right: 0;
}
.toggle-content-bottom {
    top: auto;
    bottom: 0;
}
.toggle-content.content-active {
    transition: all 0.2s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.toggle-slide {
    position: fixed;
    top: 0;
    z-index: 999;
    min-width: 260px;
    max-width: calc(100% - 40px);
    transition: transform 650ms ease;
}
.toggle-slide-left {
    left: 0;
    transform: translateX(-100%);
}
.toggle-slide-right {
    right: 0;
    transform: translateX(100%);
}
.toggle-slide.content-active {
    transform: translate(0) !important;
}
.toggle-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(31, 43, 58, 0.2);
    z-index: 900;
    animation: overlay-fade-in 0.4s ease 1;
}

.toggle-expand-content {
    display: none;
}
.toggle-expand-content.expanded {
    display: block;
}

.toggle-expand .inactive-text, .toggle-opt .inactive-text {
    display: block;
}
.toggle-expand.active > .inactive-text, .toggle-opt.active > .inactive-text {
    display: none;
}

.toggle-expand .active-text, .toggle-opt .active-text {
    display: none;
}
.toggle-expand.active > .active-text, .toggle-opt.active > .active-text {
    display: block;
}

body.toggle-shown {
    overflow: hidden;
}

@media (min-width: 576px) {
    .nk-block-tools-toggle .toggle-expand {
        display: none;
    }
    .nk-block-tools-toggle .toggle-expand-content {
        display: block !important;
    }
}
@media (max-width: 575.98px) {
    .nk-block-tools-toggle .toggle-expand-content {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 99;
        padding: 0 18px !important;
        background: #fff;
        margin-left: -18px;
        margin-right: -18px;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    }
    .nk-block-tools-toggle .nk-block-tools {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .nk-block-tools-toggle .nk-block-tools-opt {
        margin-left: auto;
    }
}
@media (max-width: 575.98px) {
    .card-tools-toggle .card-title-group {
        position: static;
    }
    .card-tools-toggle .toggle-wrap .toggle-content {
        padding: 1.25rem 1rem;
        transform: translate(0);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .card-tools-toggle .toggle-wrap .toggle-close {
        margin-right: auto;
    }
    .card-tools-toggle .toggle-wrap .toggle-close .btn-trigger:before {
        opacity: 0;
    }
    .card-tools-toggle .toggle-wrap .toggle-close .btn-trigger:hover:before {
        opacity: 1;
    }
}
@media (min-width: 576px) {
    .card-tools-toggle {
        z-index: 9;
    }
    .card-tools-toggle .toggle-wrap .toggle {
        display: none;
    }
    .card-tools-toggle .toggle-wrap .toggle-content {
        z-index: 9;
        opacity: 1;
        visibility: visible;
        position: static;
        background: transparent;
        box-shadow: none;
        transform: translate(0);
    }
    .card-tools-toggle .toggle-wrap .toggle-close {
        display: none;
    }
}
@media (min-width: 576px) {
    .toggle-break-sm {
        transition: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) !important;
        position: static;
        background: transparent;
        box-shadow: none;
        z-index: 1 !important;
    }
    .toggle-break-sm.collapse {
        display: block;
    }
}
@media (min-width: 768px) {
    .toggle-break-md {
        transition: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) !important;
        position: static;
        background: transparent;
        box-shadow: none;
        z-index: 1 !important;
    }
    .toggle-break-md.collapse {
        display: block;
    }
}
@media (min-width: 992px) {
    .toggle-break-lg {
        transition: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) !important;
        position: static;
        background: transparent;
        box-shadow: none;
        z-index: 1 !important;
    }
    .toggle-break-lg.collapse {
        display: block;
    }
}
@media (min-width: 1200px) {
    .toggle-break-xl {
        transition: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) !important;
        position: static;
        background: transparent;
        box-shadow: none;
        z-index: 1 !important;
    }
    .toggle-break-xl.collapse {
        display: block;
    }
}
@media (min-width: 1540px) {
    .toggle-break-xxl {
        transition: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0) !important;
        position: static;
        background: transparent;
        box-shadow: none;
        z-index: 1 !important;
    }
    .toggle-break-xxl.collapse {
        display: block;
    }
}
.nav-switch {
    display: inline-flex;
    margin-bottom: 1.5rem;
    border: 1px solid #dbdfea;
    border-radius: 30px;
    padding: 5px;
}
.nav-switch .nav-link {
    padding: 5px 16px;
    line-height: 20px;
    border-radius: 20px;
    position: static;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #8094ae;
}
.nav-switch .nav-link.active {
    background: #6576ff;
    color: #fff;
}
.nav-switch .nav-link:after {
    display: none;
}
.nav-switch .nav-item {
    padding: 0;
    margin: 0 1px;
}
.nav-switch .nav-item:last-child {
    margin-right: 0;
}
.nav-switch .nav-item:first-child {
    margin-left: 0;
}

@media (min-width: 576px) {
    .nav-switch {
        margin-bottom: 2.5rem;
    }
}
.nav-switch-s2 {
    display: inline-flex;
    border-radius: 4px;
    border: none;
}
.nav-switch-s2 .nav-link {
    padding: 0.25rem 0.7rem;
    line-height: 20px;
    border-radius: 0;
    position: static;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #8094ae;
    border: 1px solid #dbdfea;
}
.nav-switch-s2 .nav-link:hover, .nav-switch-s2 .nav-link:focus {
    color: #526484;
    background: #f5f6fa;
    border: 1px solid #dbdfea;
}
.nav-switch-s2 .nav-link.active {
    color: #364a63;
    border: 1px solid #dbdfea;
    background: #f5f6fa;
    box-shadow: inset 0 0 4px -1px rgba(128, 148, 174, 0.25);
}
.nav-switch-s2 .nav-link:after {
    display: none;
}
.nav-switch-s2 .nav-item {
    padding: 0;
    margin: 0;
}
.nav-switch-s2 .nav-item:last-child {
    margin-right: 0;
}
.nav-switch-s2 .nav-item:last-child .nav-link {
    border-radius: 0 4px 4px 0;
}
.nav-switch-s2 .nav-item:first-child {
    margin-left: 0;
}
.nav-switch-s2 .nav-item:first-child .nav-link {
    border-radius: 4px 0 0 4px;
}
.nav-switch-s2 .nav-item:not(:first-child) {
    margin-left: -1px;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.js-preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
}
.page-loaded .js-preloader {
    pointer-events: none;
}

.loading-animation {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    transform: translate(-50%, -50%);
}

.tri-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #6576ff;
    animation: spin 2s linear infinite;
}

.tri-ring:before, .tri-ring:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

.tri-ring:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: #09c2de;
    animation: spin 3s linear infinite;
}

.tri-ring:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: #1f2b3a;
    animation: spin 1.5s linear infinite;
}

.duo-pulse {
    width: 50px;
    height: 50px;
    display: inline-block;
    transform: translateZ(0);
}

.duo-pulse::before, .duo-pulse::after {
    content: "";
    background-color: #6576ff;
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: 0.5;
    border-radius: 50%;
    animation: ballPulseDouble 2s ease-in-out infinite;
}
.duo-pulse::after {
    animation-delay: -1s;
}

@keyframes ballPulseDouble {
    0%, 100% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}
.widget-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.widget-title > * {
    margin-bottom: 0;
}
.text-center .widget-title {
    justify-content: center;
}
.is-theme .widget-title a:hover {
    color: #fff;
}

.side-wg:not(:last-child) {
    margin-bottom: 2.5rem;
}
.side-wg-title {
    padding-bottom: 0.75rem;
}
.side-wg .back-to {
    font-size: 0.875rem;
    line-height: 1.1;
    font-weight: 400;
    position: relative;
    color: #8094ae;
    display: inline-flex;
    align-items: center;
}
.side-wg .back-to .icon {
    font-size: 1.25rem;
    width: 1.75rem;
    margin-top: -3px;
    display: inline-block;
}

.nk-ck {
    height: 260px;
}
.nk-ck-sm {
    height: 180px;
}

.nk-ck1 {
    height: 120px;
}

.nk-ck2 {
    height: 240px;
}

.nk-ck3 {
    height: 160px;
}

.nk-cktv {
    height: 300px;
    overflow: hidden;
    border: 1px solid #dbdfea;
    border-radius: 4px;
}
.nk-cktv .tradingview-widget-container {
    overflow: hidden;
    position: relative;
    top: 8px;
}
.nk-cktv .tradingview-widget-container > div {
    margin: -1px;
}

@media (min-width: 576px) {
    .nk-ck {
        height: 260px;
    }
    .nk-ck-sm {
        height: 180px;
    }
    .nk-ck1 {
        height: 120px;
    }
    .nk-ck2 {
        height: 240px;
    }
    .nk-ck3 {
        height: 258px;
    }
}
.nk-wg6-title:not(:first-child) {
    margin-top: 1.5rem;
}
.nk-wg6-title:not(:last-child) {
    margin-bottom: 1.5rem;
}
.nk-wg6-text:not(:last-child) {
    margin-bottom: 1.5rem;
}

.aside-wg + .aside-wg {
    padding-top: 2rem;
}

.nk-modal-title:not(:first-child) {
    margin-top: 1.5rem;
}
.nk-modal-title:not(:last-child) {
    margin-bottom: 1.5rem;
}
.nk-modal-title.title {
    font-size: 1.5rem;
}
.nk-modal-text:not(:last-child) {
    margin-bottom: 1.5rem;
}
.nk-modal-text .lead {
    font-size: 1.1rem;
    line-height: 1.5;
}
.nk-modal-text .sub-text {
    font-size: 14px;
}
.nk-modal-action {
    margin-top: 1.5rem;
}
.nk-modal-action-sm {
    margin-top: 1rem;
}
.nk-modal-action-md {
    margin-top: 2rem;
}
.nk-modal-action-lg {
    margin-top: 2.25rem;
}

.modal-body-lg .tab-content {
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .nk-modal-action-md {
        margin-top: 2.5rem;
    }
    .nk-modal-action-lg {
        margin-top: 3.25rem;
    }
}
[data-bs-toggle=modal] {
    cursor: pointer;
}

.search-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: #fff;
    transition: opacity 0.4s;
    border-radius: 6px;
    pointer-events: none;
    display: flex;
    align-items: center;
}
.search-wrap.active {
    opacity: 1;
    z-index: 9;
    pointer-events: auto;
}
.search-wrap-extend {
    margin-top: -1rem;
    left: -2px;
    right: -2px;
}
.search-toggle {
    transition: all 0.4s;
    opacity: 1;
}
.search-toggle.active {
    opacity: 0;
}
.search-content {
    position: relative;
    width: 100%;
}
.search-content .form-control, .search-content div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .search-content input, .search-content .dual-listbox .dual-listbox__search, .dual-listbox .search-content .dual-listbox__search {
    padding-left: calc(2.125rem + 2px);
    padding-right: calc(2.125rem + 2px);
}
.search-content .form-control-sm {
    padding-left: calc(1.75rem + 2px);
    padding-right: calc(1.75rem + 2px);
}
.search-back, .search-submit {
    position: absolute;
    top: 50%;
}
.search-back:focus, .search-submit:focus {
    box-shadow: none;
}
.search-back {
    left: 0;
    transform: translate(-0.25rem, -50%);
}
.search-submit {
    right: 0;
    transform: translate(0.5rem, -50%);
}
.search-submit:hover {
    color: #6576ff;
}

.nk-search-box {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
}
.nk-search-box .form-icon {
    height: 100%;
    border: none;
    background: transparent;
    width: 3.5rem;
}
.nk-search-box .form-control, .nk-search-box div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .nk-search-box input, .nk-search-box .dual-listbox .dual-listbox__search, .dual-listbox .nk-search-box .dual-listbox__search {
    border-radius: 1.5rem;
    padding-left: 1.25rem;
    padding-right: 1.5rem;
}

.nk-block + .nk-block, .nk-block + .nk-block-head {
    padding-top: 28px;
}
.nk-block + .nk-block-lg, .nk-block + .nk-block-head-lg {
    padding-top: 2.5rem;
}
.nav-tabs + .nk-block {
    padding-top: 1.5rem;
}
.nav-tabs + .nk-block-sm {
    padding-top: 1rem;
}
.nk-block-area {
    display: flex;
}
.nk-block-area-column {
    flex-direction: column;
}
.nk-block-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nk-block-between > .title:first-child {
    margin-bottom: 0;
}
.nk-block-middle {
    margin-top: auto;
    margin-bottom: auto;
}
.nk-block-head {
    position: relative;
    padding-bottom: 1.25rem;
}
.nk-block-head:only-child {
    padding-bottom: 0;
}
.nk-block-head h2:not(:last-child), .nk-block-head .h2:not(:last-child) {
    margin-bottom: 1rem;
}
.nk-block-head-sub {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8094ae;
    font-weight: 400;
    position: relative;
}
.nk-block-head-sub .dropdown {
    position: absolute;
    right: -8px;
    top: -6px;
}
.nk-block-head-xs {
    padding-bottom: 0.75rem;
}
.nk-block-head-sm {
    padding-bottom: 1rem;
}
.nk-block-head-lg {
    padding-bottom: 1.5rem;
}
.nk-block-head + .nav-tabs {
    margin-top: -1rem;
}
.nk-content-body > .nk-block-head:first-child {
    padding-bottom: 1.75rem;
}
.nk-block-head .nk-block-text {
    margin-top: 1.5rem;
}
.nk-block-head .nk-block-text + .btn, .nk-block-head .dual-listbox .nk-block-text + .dual-listbox__button, .dual-listbox .nk-block-head .nk-block-text + .dual-listbox__button {
    margin-top: 1.5rem;
}
.nk-block-tools {
    display: flex;
    align-items: center;
}
.nk-block-tools > * {
    display: inline-flex;
}
.nk-block-des {
    color: #526484;
}
.nk-block-des strong {
    color: #364a63;
}
.nk-block-des .icon {
    vertical-align: middle;
}
.nk-block-content + .nk-block-head {
    padding-top: 2rem;
}
.nk-block-content + .nk-block-head-sm {
    padding-top: 1.5rem;
}
.nk-block-content-head:not(:last-child) {
    margin-bottom: 1rem;
}
.nk-block-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nk-block-title-group .title {
    margin-bottom: 0;
}
.nk-block-title-group:not(:last-child) {
    margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
    .nk-block-head-md {
        padding-bottom: 1.75rem;
    }
    .nk-block-head-lg {
        padding-bottom: 2.5rem;
    }
    .nk-block-content + .nk-block-head {
        padding-top: 4rem;
    }
    .nk-block-content + .nk-block-head-sm {
        padding-top: 2.5rem;
    }
}
@media (min-width: 768px) {
    .nk-content-body > .nk-block-head:first-child {
        padding-bottom: 2.5rem;
    }
    .nk-content-body > .nk-block-head-sm:first-child {
        padding-bottom: 1.75rem;
    }
    .nav-tabs + .nk-block {
        padding-top: 2.5rem;
    }
    .nav-tabs + .nk-block-sm {
        padding-top: 2rem;
    }
    .nav-tabs + .nk-block-xs {
        padding-top: 1.25rem;
    }
    .nk-block-text h5, .nk-block-text .h5, .nk-block-text h6, .nk-block-text .h6 {
        font-size: 1rem;
    }
}
@media (max-width: 767.98px) {
    .nk-block-tools .opt-menu-md {
        order: 100;
        margin-left: auto;
    }
}
@media (min-width: 768px) {
    .nk-block-between-md {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
.back-to {
    color: inherit;
    display: inline-flex;
    align-items: center;
}
.back-to .icon {
    font-size: 1.5rem;
    width: 2rem;
    margin-top: -3px;
    display: inline-block;
}

.nk-block-subhead {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dbdfea;
}

.nk-feature-center {
    text-align: center;
}

.filter-wg label.overline-title {
    margin-bottom: 0.5rem;
}

.change {
    line-height: 1;
}
.change .sign {
    font-family: "Nioicon";
}
.change .sign:before {
    content: "";
}
.change.up {
    color: #1ee0ac !important;
}
.change.up .sign:before {
    content: "\e93c";
}
.change.down {
    color: #e85347 !important;
}
.change.down .sign:before {
    content: "\e939";
}

.nk-knob > div {
    position: relative;
    display: inline-block !important;
}

.knob {
    height: 100% !important;
    margin-top: 0 !important;
    font-size: 1.5rem !important;
}

.knob-half {
    height: 50% !important;
    font-size: 1.25rem !important;
}

[class*=knob] {
    text-align: center;
    pointer-events: none;
    width: 100% !important;
    font-weight: 400 !important;
    font-family: Roboto, sans-serif !important;
    color: #364a63 !important;
    left: 0;
    margin-left: 0 !important;
    border: none;
}
[class*=knob]:focus {
    outline: none;
}

.stats {
    padding: 0 0 1rem;
}

@media (min-width: 1540px) {
    .nk-content-sidebar .stats {
        padding: 1.25rem 1.5rem 1rem;
    }
}
.collapse-shown {
    display: inline-block !important;
}
.collapsed .collapse-shown {
    display: none !important;
}
.collapse-hidden {
    display: none !important;
}
.collapsed .collapse-hidden {
    display: inline-block !important;
}

.clipboard-init {
    cursor: pointer;
}
.clipboard-success .clipboard-init {
    color: #1bca9b;
}
.clipboard-text {
    font-size: 12px;
}
.clipboard-success .form-control:focus, .clipboard-success div.dataTables_wrapper div.dataTables_filter input:focus, div.dataTables_wrapper div.dataTables_filter .clipboard-success input:focus, .clipboard-success .dual-listbox .dual-listbox__search:focus, .dual-listbox .clipboard-success .dual-listbox__search:focus {
    border-color: #dbdfea;
    box-shadow: inset 0 1px 1px rgba(16, 25, 36, 0.075);
}

.nk-news-item {
    display: flex;
    align-items: center;
}
.nk-news-icon {
    width: 2rem;
    display: inline-flex;
    flex-shrink: 0;
}
.nk-news-icon .icon {
    font-size: 24px;
    color: #6576ff;
}
.is-theme .nk-news-icon .icon {
    color: #7f8dff;
}
.nk-news-icon img {
    width: 24px;
}
.nk-news-text {
    display: flex;
    align-items: center;
    max-width: calc(100% - 1.5rem);
}
.nk-news-text p {
    font-size: 13px;
    margin-bottom: 0;
    color: #526484;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: calc(100% - 2rem);
}
.nk-news-text p span {
    color: #8094ae;
    font-weight: 400;
}
.is-dark .nk-news-text p {
    color: #90a1b8;
}
.is-dark .nk-news-text p span {
    color: rgba(128, 148, 174, 0.9);
}
.is-theme .nk-news-text p {
    color: #dde3fe;
}
.is-theme .nk-news-text p span {
    color: rgba(196, 206, 254, 0.8);
}
.nk-news-text .icon {
    color: #8094ae;
    margin-left: 0.25rem;
}
.is-dark .nk-news-text .icon {
    color: #8094ae;
}
.is-theme .nk-news-text .icon {
    color: #c4cefe;
}
.nk-news-item:hover .nk-news-text .icon {
    color: #6576ff;
}

.language-list li:not(:last-child) .language-item {
    border-bottom: 1px solid #ecf2ff;
}
.language-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #344357;
    transition: all 0.4s;
}
.language-item:hover {
    color: #3c4d62;
    background: #ebeef2;
}
.language-name {
    font-size: 12px;
}
.language-flag {
    width: 24px;
    margin-right: 12px;
}

.entry img, .entry .video, .entry .image-group {
    border-radius: 4px;
}
.entry img + p, .entry img + h2, .entry img + .h2, .entry img + h3, .entry img + .h3, .entry img + h4, .entry img + .h4, .entry img + h5, .entry img + .h5, .entry img + h6, .entry img + .h6, .entry img + ul, .entry img + ol, .entry .video + p, .entry .video + h2, .entry .video + .h2, .entry .video + h3, .entry .video + .h3, .entry .video + h4, .entry .video + .h4, .entry .video + h5, .entry .video + .h5, .entry .video + h6, .entry .video + .h6, .entry .video + ul, .entry .video + ol, .entry .image-group + p, .entry .image-group + h2, .entry .image-group + .h2, .entry .image-group + h3, .entry .image-group + .h3, .entry .image-group + h4, .entry .image-group + .h4, .entry .image-group + h5, .entry .image-group + .h5, .entry .image-group + h6, .entry .image-group + .h6, .entry .image-group + ul, .entry .image-group + ol {
    margin-top: 2rem;
}
.entry p + img {
    margin-top: 1rem;
}
.entry p + h2, .entry p + .h2, .entry p + h3, .entry p + .h3, .entry p + h4, .entry p + .h4, .entry p + h5, .entry p + .h5, .entry p + h6, .entry p + .h6, .entry p + .video, .entry p + .image-group {
    padding-top: 0.75rem;
}

p > span > .icon.ni {
    vertical-align: middle;
}

.btn-trigger + .dropdown-menu-end, .btn-trigger + .dropdown-menu-start {
    margin: -0.75rem 0 !important;
}

.btn-trigger + .dropdown-menu-end {
    margin-right: 16px !important;
}

.btn-trigger + .dropdown-menu-start {
    margin-left: 16px;
}

@media (max-width: 420px) {
    .btn-trigger + .dropdown-menu-xl, .btn-trigger + .dropdown-menu-lg, .btn-trigger + .dropdown-menu-md {
        margin-right: -16px !important;
        margin-top: 0 !important;
    }
}
.bq-note-item:not(:first-child) {
    margin-top: 1.75rem;
}
.bq-note-text {
    padding: 1rem 1.25rem;
    background: #f5f6fa;
    border-radius: 4px;
}
.bq-note-meta {
    font-size: 12px;
    color: #8094ae;
    margin-top: 0.75rem;
}
.bq-note-meta span > span {
    color: #526484;
}
.bq-note-meta .link {
    margin-left: 0.75rem;
}
.bq-note-sep {
    height: 0.25rem;
    display: block;
    visibility: hidden;
    padding: 0 0.25rem;
}
.bq-note-by {
    display: inline-block;
}

@media (min-width: 576px) {
    .bq-note-text {
        padding: 1.25rem 1.5rem;
    }
    .bq-note-sep {
        height: auto;
        display: inline-block;
        visibility: visible;
    }
}
@media (min-width: 1200px) and (max-width: 1359px) {
    .form-settings .col-lg-5, .form-settings .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.ratio {
    border-radius: 4px;
}

.video {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.video:before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
.video-play {
    display: flex;
    align-items: center;
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    color: #fff;
    font-size: 1.25rem;
}
.video-play:hover {
    color: #fff;
}
.video-play .icon {
    font-size: 2rem;
}

.nk-slider {
    position: relative;
}
.nk-slider-s1 {
    width: 290px;
    max-width: 100%;
}
.nk-slider-s1 .slick-dots {
    position: absolute;
    right: 1.25rem;
    top: 1.5rem;
    padding-top: 0;
}
.nk-slider-s2 .slider-arrows > div {
    padding: 0.5rem 0;
}

.project-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    align-items: start;
}
.project-title {
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
}
.project-title .user-avatar {
    margin-right: 1rem;
}
.project-title .title {
    font-size: 0.975rem;
}
.project-title .title:not(:last-child) {
    margin-bottom: 0.125rem;
}
.project-details {
    margin-bottom: 1rem;
}
.project-progress {
    margin-bottom: 1rem;
}
.project-progress-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.project-progress-task {
    display: flex;
    align-items: center;
    color: #8094ae;
}
.project-progress-task .icon {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-right: 0.25rem;
}
.project-progress-percent {
    color: #526484;
    font-weight: 500;
}
.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-users {
    display: flex;
    align-items: center;
}
.project-list-progress {
    display: flex;
    align-items: center;
}
.project-list-progress .progress {
    width: 100px;
    margin-right: 0.5rem;
}

@media (min-width: 1540px) {
    .project-list-progress .progress {
        width: 140px;
        margin-right: 1rem;
    }
}
.team {
    position: relative;
}
.team-info {
    padding: 1rem 0 1.25rem;
}
.team-info li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem;
    line-height: 1.75rem;
}
.team-info li span:first-child {
    color: #8094ae;
}
.team-info li span:last-child {
    color: #526484;
}
.team-status {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
}
.team-options {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
}
.team-details {
    padding-top: 0.5rem;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}
.team-statistics {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 1rem 0 1.5rem;
}
.team-statistics li span {
    display: block;
}
.team-statistics li span:first-child {
    font-size: 1.125rem;
    color: #1c2b46;
}
.team-statistics li span:last-child {
    font-size: 0.875rem;
    color: #8094ae;
}
.team-view {
    display: flex;
    justify-content: center;
    padding-bottom: 0.25rem;
}

.rating {
    display: flex;
    align-items: center;
    margin: 0 -0.125rem;
    color: #f4bd0e;
}
.rating > * {
    padding: 0 0.125rem;
    display: inline-flex;
}
.rating .icon {
    font-size: 1rem;
}
.rating-wrap {
    display: inline-flex;
    align-items: flex-start;
}
.rating-wrap .amount {
    line-height: 1.25rem;
}
.rating-wrap .rating + span, .rating-wrap span + .rating {
    margin-left: 0.75rem;
}
.rating-pill {
    padding: 0.35rem 0.875rem;
    border-radius: 3rem;
}

.rating-card-description .icon {
    color: #6576ff;
}
.rating-card-description li {
    color: #8094ae;
}
.rating-progress {
    display: flex;
    align-items: center;
}

.icon + span, span + .icon {
    margin-left: 0.25rem;
}

.nk-stepper {
    display: none;
}
.nk-stepper-nav {
    display: flex;
    margin: -0.5rem;
    counter-reset: step-number;
}
.nk-stepper-nav > * {
    padding: 0.5rem;
}
.nk-stepper-nav > * .step-item {
    position: relative;
    display: flex;
    align-items: center;
}
.nk-stepper-nav > * .step-item:before, .nk-stepper-nav > * .step-item:after {
    display: grid;
    place-items: center;
    height: 32px;
    width: 32px;
    border-radius: 100px;
    color: #6576ff;
    background: rgba(101, 118, 255, 0.15);
    margin-right: 1.125rem;
    flex-shrink: 0;
    flex-grow: 0;
}
.nk-stepper-nav > * .step-item:before {
    counter-increment: step-number;
    content: counter(step-number);
}
.nk-stepper-nav > * .step-item:after {
    font-family: "Nioicon";
    content: "\e9bd";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}
.nk-stepper-nav > *.done .step-item:before {
    opacity: 0;
}
.nk-stepper-nav > *.done .step-item:after {
    opacity: 1;
}
.nk-stepper-nav > *.current .step-item:before, .nk-stepper-nav > *.current .step-item:after {
    color: #fff;
    background: #6576ff;
}
.nk-stepper-nav.is-vr {
    flex-direction: column;
}
.nk-stepper-nav-s2 > * .step-item {
    border-radius: 4px;
    padding: 1rem 1.25rem;
    background: #f5f6fa;
    border-left: 2px solid transparent;
    height: 100%;
}
.nk-stepper-nav-s2 > *.current .step-item {
    border-left-color: #6576ff;
}
.nk-stepper-nav-s2 > *.done .step-item:before {
    color: #fff;
    background: #6576ff;
}
.nk-stepper-step {
    display: none;
}
.nk-stepper-step.active {
    display: block;
}
.nk-stepper-pagination {
    display: flex;
}
.nk-stepper-pagination li {
    display: none;
}
.nk-stepper-s1[data-step-current=last] .stepper-pagination {
    justify-content: center;
}

@media (min-width: 576px) {
    .nk-stepper-nav.is-vr-sm {
        flex-direction: column;
    }
    .nk-stepper-nav.is-hr-sm {
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .nk-stepper-nav.is-vr-md {
        flex-direction: column;
    }
    .nk-stepper-nav.is-hr-md {
        flex-direction: row;
    }
}
@media (min-width: 992px) {
    .nk-stepper-nav.is-vr-lg {
        flex-direction: column;
    }
    .nk-stepper-nav.is-hr-lg {
        flex-direction: row;
    }
}
@media (min-width: 1200px) {
    .nk-stepper-nav.is-vr-xl {
        flex-direction: column;
    }
    .nk-stepper-nav.is-hr-xl {
        flex-direction: row;
    }
}
@media (min-width: 1540px) {
    .nk-stepper-nav.is-vr-xxl {
        flex-direction: column;
    }
    .nk-stepper-nav.is-hr-xxl {
        flex-direction: row;
    }
}
/** 06. PAGES */
.nk-auth-body {
    padding: 1.25rem;
}
.nk-auth-footer {
    padding-bottom: 40px;
}
.nk-auth-body, .nk-auth-footer {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.nk-auth-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.nk-auth-footer-full {
    margin-top: 0;
}

@media (min-width: 992px) {
    .nk-auth-container {
        width: 45%;
    }
}
@media (min-width: 1540px) {
    .nk-split .nk-auth-body, .nk-split .nk-auth-footer {
        margin-right: 90px;
    }
}
.nk-error-ld {
    padding: 2rem 1rem;
}
.nk-error-gfx {
    padding-bottom: 30px;
    max-width: 90%;
}
.nk-error-head {
    font-size: 160px;
    font-weight: 700;
    background: -webkit-linear-gradient(#6576ff, #2c3782);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}
.nk-error-title {
    padding-bottom: 1rem;
}
.nk-error-text {
    font-size: 1rem;
}

@media (min-width: 576px) {
    .nk-error-lead {
        font-size: 200px;
    }
    .nk-error-gfx {
        padding-bottom: 60px;
        max-width: 520px;
    }
}
.clipboard-success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ee0ac;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.clipboard-success .clipboard-success-message {
    opacity: 1;
}

/** 07. MISC */
.has-shadow.bg-lighter .card, .dual-listbox .has-shadow.dual-listbox__item:hover .card, .has-shadow.bg-lighter .sp-pdl-item, .dual-listbox .has-shadow.dual-listbox__item:hover .sp-pdl-item, .has-shadow.bg-lighter .invoice-wrap, .dual-listbox .has-shadow.dual-listbox__item:hover .invoice-wrap, .has-shadow.bg-lighter .accordion, .dual-listbox .has-shadow.dual-listbox__item:hover .accordion {
    box-shadow: 0 0 8px -3px rgba(60, 77, 98, 0.15);
}
.has-shadow .card, .has-shadow .sp-pdl-item, .has-shadow .invoice-wrap, .has-shadow .accordion {
    box-shadow: 0 0 6px -2px rgba(60, 77, 98, 0.2);
}
.has-shadow .data-head, .has-shadow .data-item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.has-shadow .card .data-head:not(.is-plain) {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    padding-left: 0.75rem;
}
.has-shadow .nav-tabs {
    box-shadow: 0 2px 0 -1px rgba(60, 77, 98, 0.06);
}
.has-shadow .nk-header {
    box-shadow: 0 3px 0 -1px rgba(60, 77, 98, 0.04);
}

.nio-version {
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: absolute;
    right: -1px;
    bottom: -3px;
}

.code-tag {
    color: #816bff;
}
.code-class {
    color: #ff63a5;
}
.code-fnc {
    color: #09c2de;
}

.nk-switch-icon {
    color: #90a1b8;
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nk-switch-icon .icon {
    font-size: 1.5rem;
}
.nk-switch-icon .icon-sm {
    font-size: 1.25rem;
}
.nk-switch-icon:hover {
    color: #526484;
}
.nk-switch-icon.active {
    color: #6576ff;
}

.dark-switch {
    position: relative;
}
.dark-switch:before, .dark-switch:after {
    position: absolute;
    content: "";
    transform: translateY(-50%);
    border-radius: 1.5rem;
    display: block;
    top: 50%;
}
.dark-switch:before {
    right: 0;
    width: 3rem;
    height: 1.5rem;
    background-color: #fff;
    border: #dbdfea solid 2px;
}
.dark-switch:after {
    height: 1rem;
    width: 1rem;
    right: calc(2rem - 2px - .125rem);
    background-color: #dbdfea;
}
.dark-switch.active:before {
    background-color: #6576ff;
    border-color: #6576ff;
}
.dark-switch.active:after {
    right: calc(2px + .125rem);
    background-color: #fff;
}

.is-scrollable {
    overflow: auto;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
}
.country-list li {
    width: 100%;
}
.country-item {
    display: flex;
    align-items: center;
}
.country-flag {
    width: 1.25rem;
    margin-right: 0.75rem;
}
.country-name {
    font-size: 1rem;
    color: #526484;
}

@media (min-width: 576px) {
    .country-list li {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .country-list li {
        width: 33.33%;
    }
}
.collapsed .switch-text-normal {
    display: none;
}
.switch-text-collapsed {
    display: none;
}
.collapsed .switch-text-collapsed {
    display: inline-flex;
}

.close {
    float: right;
    font-size: 1.505rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}
.close:hover {
    color: #000;
    text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover-focus {
    opacity: 0.75;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.popover-header {
    border-bottom: 1px solid #eaeaea;
}

.author-list {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.author-list li {
    padding: 0 0.25rem;
}
.author-list li:first-child {
    margin-left: 0.75rem;
}
.author-list.is-grouped li {
    padding: 0;
}
.author-list.is-grouped li:not(:last-child) {
    margin-left: -1rem;
}
.author-list.is-grouped li:first-child {
    margin-left: 0.75rem;
}
.author-list.is-grouped .user-avatar {
    border: 2px solid #fff;
}

.react-list {
    display: flex;
    align-items: center;
    margin: -0.25rem;
    padding: 0;
}
.react-list li {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.3;
    padding: 0.25rem;
}
.react-list .title {
    text-transform: uppercase;
    color: #8094ae;
    letter-spacing: 0.05em;
    font-size: 12px;
    font-weight: 500;
    margin-right: 1rem;
}
.react-list a {
    color: #b7c2d0;
    display: inline-block;
}
.react-list a .icon {
    font-size: 1.5rem;
}
.react-good a:hover {
    color: #1ee0ac;
}
.react-ok a:hover {
    color: #6576ff;
}
.react-bad a:hover {
    color: #f4bd0e;
}

@media (max-width: 359px) {
    .react-list {
        flex-wrap: wrap;
    }
    .react-list .title {
        width: 100%;
    }
}
.profile-ud-label {
    display: block;
    color: #8094ae;
}
.plain .profile-ud-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.wider .profile-ud-label {
    display: inline-flex;
    letter-spacing: -0.01em;
    width: 120px;
    flex-shrink: 0;
}
.profile-ud-value {
    color: #526484;
}
.wider .profile-ud-value {
    text-align: right;
    font-weight: 500;
    width: 100%;
}
.profile-ud.wider {
    display: flex;
    padding: 0.5rem 0;
}
.profile-ud-item:nth-child(n+2) .profile-ud.plain {
    margin-top: 1.25rem;
}

@media (min-width: 768px) {
    .profile-ud.wider {
        padding: 0.75rem 0;
    }
    .profile-ud-list {
        display: flex;
        flex-wrap: wrap;
        margin: -0.25rem -3.25rem;
        max-width: 960px;
    }
    .profile-ud-item {
        width: 50%;
        padding: 0 3.25rem;
    }
    .profile-ud-item:nth-child(2) .profile-ud.plain {
        margin-top: 0;
    }
}
.profile-stats .amount {
    font-size: 1.125rem;
    font-weight: 700;
}

.profile-balance-group {
    display: flex;
    align-items: flex-end;
}
.profile-balance-ck {
    position: relative;
    height: 70px;
    margin-top: 0.5rem;
}
.profile-balance-sub {
    font-size: 0.875rem;
    color: #8094ae;
}
.profile-balance-subtitle {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}
.profile-balance-sub .icon {
    font-size: 0.75rem;
}
.profile-balance-plus {
    position: absolute;
}
.profile-balance-plus .icon {
    font-size: 1rem;
    line-height: 1.5rem;
}
.profile-balance-plus ~ * {
    padding-left: 24px;
}
.profile-balance-amount .number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #364a63;
    line-height: 1.5rem;
    white-space: nowrap;
}
.profile-balance-amount .number small, .profile-balance-amount .number .small {
    font-weight: 400;
}

.price-plan-media {
    padding: 0.25rem 0;
    margin-bottom: 1.5rem;
}
.price-plan-media img {
    max-width: 90px;
}
.price-plan-info {
    margin-bottom: 1.5rem;
    color: #8094ae;
}
.text-center .price-plan-info {
    padding: 0.25rem 0.5rem;
}
.price-plan-amount {
    font-size: 0.875rem;
    color: #8094ae;
}
.price-plan-amount .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #526484;
}
.price-plan-action {
    margin-top: 1.5rem;
    margin-bottom: 0.125rem;
}

.tb-member-item td {
    vertical-align: middle;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.tb-member-item:first-child td:first-child {
    border-radius: 4px;
}
.tb-member-item .user-card .user-info {
    flex-grow: 1;
}
.tb-member-role {
    width: 150px;
}
.tb-member-info {
    width: 40%;
}
.tb-member-action {
    text-align: right;
}
.tb-member-action div > .link {
    margin-left: 0.75rem;
}

@media (max-width: 992px) {
    .tb-member-action {
        width: 150px;
    }
}
@media (max-width: 767px) {
    .tb-member-info {
        width: 60%;
    }
}
@media (max-width: 575px) {
    .tb-member-item {
        display: flex;
    }
    .tb-member-info {
        width: auto;
        flex-grow: 1;
    }
    .tb-member-action {
        margin-left: auto;
        width: auto;
    }
    .table .tb-member-body .tb-member-action:last-child {
        padding-right: 0.5rem;
    }
}
@media (max-width: 374px) {
    .tb-member-item .user-card {
        max-width: 200px;
    }
    .tb-member-item .user-card .sub-text {
        width: 96%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.steps ul {
    display: flex;
}
.steps ul li {
    flex-grow: 1;
}
.steps .current-info {
    display: none;
}

.actions ul {
    display: flex;
    margin: -10px;
    padding-top: 20px;
}
.actions ul li {
    padding: 10px;
}
.actions ul li:first-child {
    order: 1;
}
.actions ul li a {
    display: inline-block;
    position: relative;
    color: #fff;
    font-weight: 500;
    transition: all 0.4s ease;
    border-color: #6576ff;
    background: #6576ff;
    --bs-btn-padding-y: 0.4375rem;
    --bs-btn-padding-x: 1.125rem;
    --bs-btn-font-size: 0.8125rem;
    --bs-btn-border-radius: 4px;
    line-height: 1.25rem;
}
.actions ul li.disabled {
    display: none;
}

.nk-wizard-head {
    display: none;
}
.nk-wizard-simple .steps {
    margin-bottom: 20px;
}
.nk-wizard-simple .steps ul li {
    position: relative;
    padding-bottom: 5px;
    padding-right: 1rem;
    margin-bottom: 0.5rem;
}
.nk-wizard-simple .steps ul li h5, .nk-wizard-simple .steps ul li .h5 {
    border: none;
    padding: 0 0 6px 0;
    letter-spacing: 0.02em;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #8094ae;
}
.nk-wizard-simple .steps ul li .number {
    font-size: 13px;
    color: #8094ae;
    font-weight: 700;
}
.nk-wizard-simple .steps ul li:after {
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    bottom: 0;
    content: "";
    transition: all 0.4s;
    background: #e5e9f2;
}
.nk-wizard-simple .steps ul li.done:after, .nk-wizard-simple .steps ul li.current:after {
    height: 2px;
    background: #6576ff;
    width: 100%;
}
.nk-wizard-simple .steps ul li.done h5, .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 .h5, .nk-wizard-simple .steps ul li.current .number {
    color: #6576ff;
}
.nk-wizard-simple .steps ul li.current ~ .done:after {
    height: 1px;
    background: #e5e9f2;
}
.nk-wizard-simple .steps ul li.current ~ .done h5, .nk-wizard-simple .steps ul li.current ~ .done .h5, .nk-wizard-simple .steps ul li.current ~ .done .number {
    color: #8094ae;
}
.nk-wizard-simple .steps .current-info {
    display: none;
}
.nk-wizard.is-vertical .steps ul {
    flex-wrap: wrap;
}
.nk-wizard.is-vertical .steps ul li h5, .nk-wizard.is-vertical .steps ul li .h5 {
    text-transform: none;
}

@media (min-width: 768px) {
    .nk-wizard.is-vertical {
        display: flex;
        flex-wrap: wrap;
    }
    .nk-wizard.is-vertical .steps {
        width: 33%;
        padding-right: 2rem;
    }
    .nk-wizard.is-vertical .steps ul li {
        width: 100%;
    }
    .nk-wizard.is-vertical .steps ul li:not(:last-child) {
        margin-bottom: 1rem;
    }
    .nk-wizard.is-vertical .content {
        width: 66%;
    }
    .nk-wizard.is-vertical .actions {
        margin-left: 33%;
    }
}
.tb-tnx-head {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: #f5f6fa;
}
.tb-tnx-head td, .tb-tnx-head th {
    color: #8094ae;
    padding: 0.625rem 0.25rem;
}
.tb-tnx-head th {
    border-radius: 0;
}
.tb-tnx-head th:first-child {
    border-top-left-radius: 4px;
}
.tb-tnx-head th:last-child {
    border-top-right-radius: 4px;
}
.tb-tnx-item {
    font-size: 14px;
}
.tb-tnx-item td {
    padding: 1.25rem 0.25rem;
    vertical-align: middle;
}
.is-compact .tb-tnx-item td {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}
.tb-tnx-id a {
    display: block;
}
.tb-tnx-id span {
    font-weight: 500;
}
.tb-tnx-item .tb-tnx-total {
    font-weight: 500;
    color: #526484;
}
.tb-tnx-desc {
    padding-right: 0.5rem;
}
.tb-tnx-item .tb-tnx-date {
    color: #8094ae;
}
.tb-tnx-item .tb-tnx-date .date {
    font-size: 13px;
}
.tb-tnx-action {
    width: 60px;
    text-align: right;
}
.tb-tnx-action .dropdown {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem;
}
.tb-tnx-btns .btn + .btn, .tb-tnx-btns .dual-listbox .dual-listbox__button + .btn, .dual-listbox .tb-tnx-btns .dual-listbox__button + .btn, .tb-tnx-btns .dual-listbox .btn + .dual-listbox__button, .dual-listbox .tb-tnx-btns .btn + .dual-listbox__button, .tb-tnx-btns .dual-listbox .dual-listbox__button + .dual-listbox__button, .dual-listbox .tb-tnx-btns .dual-listbox__button + .dual-listbox__button {
    margin-left: 0.5rem;
}
.tb-tnx-btns + .dropdown {
    margin-left: 1rem;
}

@media (max-width: 767px) {
    .tb-tnx-item, .tb-tnx-head {
        display: flex;
        width: 100%;
    }
    .tb-tnx-item th, .tb-tnx-head th {
        flex-grow: 1;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .tb-tnx-item td, .tb-tnx-head td {
        flex-grow: 1;
        border: none;
        padding-top: 0;
        padding-bottom: 0;
    }
    .tb-tnx-item {
        flex-wrap: wrap;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .tb-tnx-item:not(:last-child) {
        border-bottom: 1px solid #e5e9f2;
    }
    .tb-tnx-amount {
        width: 110px;
        text-align: right;
    }
    .tb-tnx-id, .tb-tnx-head th:first-child {
        min-width: 85px;
        padding-right: 0.25rem !important;
        flex-grow: 0 !important;
    }
    .tb-tnx-info {
        width: 45%;
    }
    .tb-tnx-date .date {
        font-size: 12px;
    }
    .tb-tnx-date .date + .date {
        padding-left: 0.5rem;
    }
    .tb-tnx-action:last-child {
        flex-grow: 0;
        padding-left: 0.5rem;
        display: inline-flex;
        align-items: center;
    }
}
@media (max-width: 575px) {
    .tb-tnx-item {
        font-size: 13px;
    }
    .tb-tnx-id {
        width: 100%;
    }
    .tb-tnx-id + td {
        padding-left: 1.25rem;
    }
    .tb-tnx-info {
        width: 65%;
    }
    .tb-tnx-amount:last-child {
        width: 25%;
    }
    .tb-tnx-amount:not(:last-child) {
        display: none;
    }
    .tb-tnx-amount.is-alt {
        position: absolute;
        display: inline-flex;
        right: 1.25rem;
        width: auto;
    }
    .tb-tnx-amount.is-alt .tb-tnx-total {
        order: 5;
        padding-left: 1.25rem;
    }
}
@media (min-width: 768px) {
    .tb-tnx-desc, .tb-tnx-date, .tb-tnx-total, .tb-tnx-status {
        display: inline-block;
        vertical-align: middle;
    }
    .tb-tnx-desc, .tb-tnx-date {
        width: calc(50% - 4px);
    }
    .tb-tnx-total {
        width: calc(60% - 4px);
    }
    .tb-tnx-status {
        width: calc(40% - 4px);
    }
    .tb-tnx-amount {
        width: 25%;
    }
    .tb-tnx-date .date, .tb-tnx-date > span > span {
        width: calc(50% - 4px);
        display: inline-block;
    }
    .tb-tnx-date .date + .date, .tb-tnx-date > span > span + span {
        padding-left: 0.75rem;
    }
}
.tb-odr-item {
    font-size: 14px;
}
.tb-odr-item td {
    padding: 1rem 0.25rem;
    vertical-align: middle;
}
.tb-odr-id, .tb-odr-total {
    display: block;
}
.tb-odr-item .tb-odr-id, .tb-odr-item .tb-odr-total {
    font-weight: 500;
}
.tb-odr-id a {
    display: block;
}
.tb-odr-id span {
    font-weight: 500;
}
.tb-odr-item .tb-odr-total {
    color: #364a63;
}
.tb-odr-head .tb-odr-item .tb-odr-total {
    color: inherit;
}
.tb-odr-item .tb-odr-date {
    color: #8094ae;
}
.tb-odr-head .tb-odr-item .tb-odr-date {
    color: inherit;
}
.tb-odr-action > div, .tb-odr-action > .btn, .dual-listbox .tb-odr-action > .dual-listbox__button {
    vertical-align: middle;
}
.tb-odr-action:last-child {
    padding-left: 1.25rem;
    text-align: right;
}
.tb-odr-btns .btn + .btn, .tb-odr-btns .dual-listbox .dual-listbox__button + .btn, .dual-listbox .tb-odr-btns .dual-listbox__button + .btn, .tb-odr-btns .dual-listbox .btn + .dual-listbox__button, .dual-listbox .tb-odr-btns .btn + .dual-listbox__button, .tb-odr-btns .dual-listbox .dual-listbox__button + .dual-listbox__button, .dual-listbox .tb-odr-btns .dual-listbox__button + .dual-listbox__button {
    margin-left: 0.5rem;
}
.tb-odr-id {
    min-width: 90px;
}
.tb-odr-head {
    background: #f5f6fa;
}
.tb-odr-head th {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8094ae;
    padding: 0.625rem 0.25rem;
}

@media (max-width: 767px) {
    .tb-odr-item th, .tb-odr-item td {
        flex-grow: 1;
    }
    .tb-odr-amount {
        text-align: right;
    }
}
@media (max-width: 575px) {
    .tb-odr-item {
        font-size: 13px;
    }
    .tb-odr-amount {
        width: 24%;
    }
    .tb-odr-info {
        width: 44%;
    }
    .tb-odr-action {
        width: 2rem;
        min-width: auto;
    }
    .tb-odr-item .tb-odr-action {
        padding-left: 0.5rem;
    }
}
@media (min-width: 768px) {
    .tb-odr-info {
        min-width: 55%;
    }
    .tb-odr-amount {
        width: 30%;
    }
    .tb-odr-total {
        min-width: 100px;
    }
    .tb-odr-id, .tb-odr-total {
        display: inline-block;
    }
    .tb-odr-id + span, .tb-odr-total + span {
        padding-left: 1rem;
    }
    .tb-odr-btns + .dropdown, .tb-odr-btns + .btn, .dual-listbox .tb-odr-btns + .dual-listbox__button {
        margin-left: 0.75rem;
    }
}
@media (min-width: 992px) {
    .tb-odr-id {
        min-width: 120px;
    }
    .tb-odr-total {
        min-width: 50%;
    }
}
.tb-ftr-head th {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.table .tb-ftr-head th {
    font-size: 12px;
    color: #8094ae;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.tb-ftr-item td {
    border-top: 0;
}
.tb-ftr-info {
    font-weight: 500;
    width: 60%;
}
.tb-ftr-plan {
    text-align: center;
}
.tb-ftr-plan .plan-name {
    display: none;
}
.tb-ftr-plan .icon {
    color: #6576ff;
}

@media (max-width: 575px) {
    .tb-ftr-item {
        display: flex;
        flex-wrap: wrap;
        border-top: 1px solid #e5e9f2;
        padding: 0.75rem 1.25rem;
    }
    .tb-ftr-head .tb-ftr-item {
        padding: 0;
    }
    .tb-ftr-item:first-child {
        border-top: 0;
    }
    .table .tb-ftr-item td {
        padding: 0.25rem 0;
    }
    .table .tb-ftr-item .tb-ftr-plan {
        padding-right: 1.25rem;
    }
    .tb-ftr-info {
        width: 100%;
    }
    .tb-ftr-plan .icon {
        font-size: 1rem;
        vertical-align: middle;
        margin-right: 0.25rem;
    }
    .tb-ftr-plan .plan-name {
        display: inline;
        vertical-align: middle;
        line-height: 1.3;
        font-size: 12px;
    }
    .tb-ftr-head .tb-ftr-plan {
        display: none;
    }
}
@media (min-width: 575px) {
    .tb-ftr-item:first-child td {
        padding-top: 1.25rem;
    }
    .tb-ftr-item:last-child td {
        padding-bottom: 1.25rem;
    }
}
.is-compact .tb-tnx-item td, .is-compact .tb-odr-item td {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

@media (max-width: 767px) {
    .is-compact .tb-tnx-item, .is-compact .tb-odr-item {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .is-compact .tb-tnx-item td, .is-compact .tb-odr-item td {
        padding-top: 0;
        padding-bottom: 0;
    }
}
.nk-tb-list {
    display: table;
    width: 100%;
    font-size: 13px;
    color: #8094ae;
}
.nk-tb-list.is-alt {
    color: #526484;
}
.nk-tb-list .list-status, .nk-tb-list .tb-status {
    font-size: 12px;
    font-weight: 500;
}
.nk-tb-list .tb-lead, .nk-tb-list .tb-amount {
    font-weight: 500;
    color: #364a63;
    display: block;
    line-height: 1.4;
}
.nk-tb-list .tb-lead-sub, .nk-tb-list .tb-amount-sub {
    color: #526484;
    display: block;
    line-height: 1.4;
}
.nk-tb-list .tb-sub, .nk-tb-list .tb-amount-sm {
    font-size: 0.9em;
}
.nk-tb-list .tb-amount span, .nk-tb-list .tb-amount .currency {
    color: #526484;
    font-weight: 400;
}
.nk-tb-list .user-info .tb-lead + span, .nk-tb-list .tb-lead + .tb-date {
    font-size: 11px;
}
.nk-tb-list .tb-country {
    display: flex;
    align-items: center;
}
.nk-tb-list .tb-country .name {
    color: #364a63;
}
.nk-tb-list .tb-country .flag {
    height: 16px;
    border-radius: 3px;
}
.nk-tb-list .tb-country .flag + .name {
    margin-left: 0.6875rem;
}
.nk-tb-list .tb-product {
    display: flex;
    align-items: center;
}
.nk-tb-list .tb-product .thumb {
    width: 48px;
    border-radius: 4px;
    margin-right: 1rem;
}
.nk-tb-list .tb-product .title {
    font-weight: 700;
    font-size: 0.875rem;
    color: #364a63;
}
.nk-tb-list .tb-asterisk {
    font-size: 1.125rem;
    line-height: 1;
    vertical-align: middle;
}
.nk-tb-list .tb-asterisk a {
    color: #6576ff;
}
.nk-tb-item {
    transition: background-color 0.3s, box-shadow 0.3s;
    display: table-row;
}
.nk-tb-item:not(.nk-tb-head):hover, .nk-tb-item:not(.nk-tb-head).seleted {
    background: #f8f9fc;
    box-shadow: 0 0 10px -4px rgba(54, 74, 99, 0.2);
}
.nk-tb-col {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 1rem 0.5rem;
}
.nk-tb-col:first-child {
    padding-left: 1.25rem;
}
.nk-tb-col:last-child {
    padding-right: 1.25rem;
}
.nk-tb-col-tools {
    max-width: 3.75rem;
}
.nk-tb-col-check {
    width: 3rem;
}
.nk-tb-col-check .custom-control {
    vertical-align: middle;
}
.nk-tb-item:not(:last-child) .nk-tb-col {
    border-bottom: 1px solid #dbdfea;
}
.nk-tb-head .nk-tb-col {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #8094ae;
    font-size: 0.9em;
    border-bottom: 1px solid #dbdfea;
}
.nk-tb-col-action {
    text-align: right;
}
.nk-tb-col-action > .dropdown:last-child {
    right: -0.5rem;
}
.nk-tb-col-nosort:before, .nk-tb-col-nosort:after {
    display: none !important;
}
.nk-tb-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.nk-tb-ulist .nk-tb-actions, .nk-tb-actions-adj .nk-tb-actions {
    right: -0.5rem;
}
.nk-tb-actions.visible1 {
    width: 1rem;
}
.nk-tb-action-hidden {
    opacity: 0;
    transition: 0.3s ease;
}
.nk-tb-item:hover .nk-tb-action-hidden {
    opacity: 1;
    background: #f8f9fc;
}
.nk-tb-list .nk-tb-head .btn-trigger .icon {
    font-size: 1.5em;
}
.nk-tb-list.is-separate {
    margin-top: -8px;
    border-collapse: separate;
    border-spacing: 0 8px;
}
.nk-tb-list.is-separate .nk-tb-item > .nk-tb-col {
    background: #fff;
    border: none;
    box-shadow: 0px 1px 3px 0px rgba(54, 74, 99, 0.05);
}
.nk-tb-list.is-separate .nk-tb-item > .nk-tb-col:first-child {
    border-radius: 4px 0 0 4px;
}
.nk-tb-list.is-separate .nk-tb-item > .nk-tb-col:last-child {
    border-radius: 0 4px 4px 0;
}
.nk-tb-list.is-separate .nk-tb-item:hover .nk-tb-action-hidden {
    background: #fff;
}
.nk-tb-list.is-separate .nk-tb-head .nk-tb-col {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .nk-tb-col-check {
        width: 3.25rem;
    }
    .nk-tb-item .nk-tb-col:first-child {
        padding-left: 1.5rem;
    }
    .nk-tb-item .nk-tb-col:last-child {
        padding-right: 1.5rem;
    }
}
@media (min-width: 1540px) {
    .nk-tb-list {
        font-size: 14px;
    }
    .nk-tb-list .list-status, .nk-tb-list .tb-status {
        font-size: 13px;
    }
    .nk-tb-list .user-info .tb-lead + span, .nk-tb-list .tb-lead + .tb-date {
        font-size: 12px;
    }
}
.is-loose .nk-tb-item:not(.nk-tb-head) .nk-tb-col {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
}

.is-medium .nk-tb-item:not(.nk-tb-head) .nk-tb-col {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.is-compact .nk-tb-item:not(.nk-tb-head) .nk-tb-col {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.card-full .nk-wg1 {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nk-wg1-block {
    display: flex;
    padding: 1.25rem;
    align-items: flex-start;
    flex-direction: column;
}
.nk-wg1-img {
    width: 84px;
    margin-right: 0;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    text-align: center;
    padding: 0.125rem;
}
.nk-wg1-text {
    color: #8094ae;
}
.nk-wg1-action {
    margin-top: auto;
    border-top: 1px solid #e5e9f2;
}
.nk-wg1-action .link {
    position: relative;
    display: block;
    line-height: 1.3;
    padding: 1.25rem;
    padding-right: 2.5rem;
    white-space: inherit;
}
.nk-wg1-action .link:hover {
    background-color: #f5f6fa;
}
.nk-wg1-action .link .icon {
    position: absolute;
    right: 1.25rem;
    margin-right: -0.25rem;
    margin-top: -1px;
}
.nk-wg1-action .link-inline {
    display: inline-block;
    padding-right: 0.25rem;
}
.nk-wg1-action .link-inline .icon {
    position: static;
    padding-left: 0.25rem;
    margin-right: 0;
}

@media (min-width: 576px) {
    .nk-wg1-block {
        padding: 1.5rem;
    }
    .nk-wg1-action .link {
        padding: 1.5rem;
        padding-right: 2.75rem;
    }
    .nk-wg1-action .link-inline {
        padding-right: 0.25rem;
    }
}
@media (min-width: 1200px) {
    .nk-wg1-img {
        margin-right: 1.5rem;
        margin-bottom: 0;
    }
    .nk-wg1-block {
        flex-direction: row;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
.nk-help {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.nk-help-img {
    width: 120px;
    margin-right: 0;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    text-align: center;
    padding: 0.125rem;
}
.text-center .nk-help-img {
    margin-left: auto;
    margin-right: auto;
}
.nk-help-action {
    flex-shrink: 0;
    margin-top: 1.5rem;
    width: 100%;
    margin-bottom: 0.125rem;
}

@media (min-width: 768px) {
    .nk-help {
        flex-wrap: nowrap;
    }
    .nk-help-img {
        margin-right: 1.5rem;
        margin-bottom: 0;
    }
    .card-inner-lg .nk-help-img {
        margin-left: -0.5rem;
    }
    .nk-help-text {
        flex-grow: 1;
        padding: 0.5rem 1rem 0.5rem 0.5rem;
    }
    .nk-help-action {
        width: auto;
        margin-top: 0;
        padding-left: 1.5rem;
    }
}
.card-full .nk-help-plain {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nk-help-plain .nk-help-img {
    margin-bottom: 1.25rem;
}
.nk-help-plain .nk-help-text {
    padding: 0;
}
.nk-help-plain .nk-help-text:not(:last-child) {
    margin-bottom: 1.5rem;
}
.nk-help-plain .nk-help-action {
    margin-top: auto;
    padding: 0;
}
.nk-cta {
    display: flex;
    align-items: center;
}
.nk-cta-block {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.nk-cta-img {
    flex-shrink: 0;
}
.nk-cta-img .icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
}
.nk-cta-text {
    flex-grow: 1;
    line-height: 1.5;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.25rem 1.5rem 0.25rem 1.25rem;
}
.nk-cta-action {
    flex-shrink: 0;
    margin-left: auto;
}

@media (max-width: 459px) {
    .nk-cta {
        flex-wrap: wrap;
    }
    .nk-cta-text {
        padding-right: 0;
        font-size: 0.875rem;
    }
    .nk-cta-action {
        flex-shrink: 1;
        width: 100%;
        margin: 1rem 0 0.5rem 3.5rem;
    }
}
.nk-cta-plain .nk-cta-block {
    display: block;
}
.nk-cta-plain .nk-cta-img {
    margin-bottom: 1rem;
}
.nk-cta-plain .nk-cta-text {
    font-weight: 400;
    padding: 0.25rem 0;
}
.nk-cta-plain .nk-cta-action {
    margin-top: 1.25em;
}

.nk-kyc-app-icon {
    margin-bottom: 2rem;
}
.nk-kyc-app-icon .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    font-size: 36px;
    border-radius: 50%;
    color: #8094ae;
    border: 2px solid #dbdfea;
}
.nk-kyc-app-text:not(:last-child) {
    margin-bottom: 2rem;
}

.nk-kycfm-head {
    display: flex;
    align-items: center;
}
.nk-kycfm-head, .nk-kycfm-content, .nk-kycfm-footer {
    padding: 1.5rem;
}
.nk-kycfm-head:not(:last-child), .nk-kycfm-content:not(:last-child), .nk-kycfm-footer:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.nk-kycfm-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    font-size: 16px;
    border-radius: 50%;
    color: #526484;
    border: 2px solid #dbdfea;
    margin-right: 1rem;
    flex-shrink: 0;
}
.nk-kycfm-title .title {
    margin: 0.25rem 0;
}
.nk-kycfm-content .title {
    margin-bottom: 0.75rem;
}
.nk-kycfm-note {
    color: #8094ae;
    display: flex;
}
.nk-kycfm-note:not(:last-child) {
    margin-bottom: 1rem;
}
.nk-kycfm-note .icon {
    margin-right: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.65;
}
.nk-kycfm-label {
    display: flex;
    align-items: center;
    border: 2px solid #e5e9f2;
    border-radius: 4px;
    padding: 0.5rem 2.875rem 0.5rem 1rem;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: -0.01rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0;
}
.nk-kycfm-label::after {
    position: absolute;
    right: 1.375rem;
    top: 50%;
    height: 20px;
    width: 20px;
    line-height: 20px;
    font-size: 12px;
    border-radius: 50%;
    transform: translateY(-50%);
    font-family: "Nioicon";
    content: "\e9be";
    color: #fff;
    background: #6576ff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.nk-kycfm-label-icon {
    position: relative;
    width: 34px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 12px;
}
.nk-kycfm-label-icon .label-icon {
    transition: all 0.3s;
    color: #8094ae;
    width: 100%;
    height: 28px;
}
.nk-kycfm-control {
    position: absolute;
    height: 1px;
    width: 1px;
    opacity: 0;
}
.nk-kycfm-control-list {
    display: flex;
    flex-wrap: wrap;
}
.nk-kycfm-control-list + * {
    margin-top: 1.25rem;
}
.nk-kycfm-control-item {
    position: relative;
    flex-grow: 1;
}
.nk-kycfm-control:checked ~ .nk-kycfm-label {
    border-color: #6576ff;
}
.nk-kycfm-control:checked ~ .nk-kycfm-label:after {
    opacity: 1;
}
.nk-kycfm-control:checked ~ .nk-kycfm-label .label-icon {
    color: #6576ff;
}
.nk-kycfm-upload:not(:first-child) {
    margin-top: 1.5rem;
}

@media (min-width: 576px) {
    .nk-kycfm-head, .nk-kycfm-content, .nk-kycfm-footer {
        padding: 1.5rem 2.25rem;
    }
    .nk-kycfm-content {
        padding-bottom: 1.75rem;
    }
    .nk-kycfm-footer {
        padding: 2.25rem;
    }
}
.pricing {
    position: relative;
    height: 100%;
}
.pricing-badge {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
}
.pricing-head {
    text-align: center;
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid #e5e9f2;
}
.pricing-title {
    max-width: 100% !important;
}
.pricing-title .title {
    margin-bottom: 0.25rem;
}
.pricing-title:not(:last-child) {
    padding-bottom: 1.25rem;
}
.pricing-body {
    padding: 1.75rem 1.75rem 2rem;
}
.pricing-features li {
    display: flex;
    padding: 0.25rem 0;
}
.pricing-features .icon {
    margin-top: 0.175rem;
}
.pricing-action {
    margin-top: 1.5rem;
    text-align: center;
}
.pricing-media {
    padding: 0.25rem 0;
    margin-bottom: 1.5rem;
}
.pricing-media img {
    max-width: 90px;
}
.pricing-amount {
    font-size: 0.875rem;
    color: #8094ae;
}
.pricing-amount .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #526484;
}

.nk-add-product {
    top: 65px;
    background-color: #fff;
    width: 400px;
    height: calc(100vh - 65px);
    padding: 1.5rem;
}
.nk-add-product + .toggle-overlay {
    z-index: 700;
}

.rating {
    display: flex;
    align-items: center;
    margin: 0 -0.125rem;
    color: #f4bd0e;
}
.rating > * {
    padding: 0 0.125rem;
}
.rating .icon {
    font-size: 1rem;
}

.product-card {
    overflow: hidden;
    height: 100%;
}
.product-thumb {
    position: relative;
}
.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-wrap: wrap;
    margin: -0.25rem;
}
.product-badges > li {
    padding: 0.25rem;
}
.product-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product-tags > li {
    padding: 0.25rem;
}
.product-tags a {
    color: #8094ae;
}
.product-tags a:hover {
    color: #6576ff;
}
.product-tags + .product-title {
    margin-top: 0.5rem;
}
.product-title a {
    color: #364a63;
}
.product-title + .product-price {
    margin-top: 1rem;
}
.product-actions {
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    transition: 0.2s linear;
    display: flex;
    opacity: 0;
}
.product-card:hover .product-actions {
    opacity: 1;
}
.product-actions li {
    padding: 0 0.125rem;
}
.product-actions li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #526484;
    font-size: 15.6px;
    height: 2.125rem;
    width: 2.125rem;
    transition: 0.3s ease;
}
.product-actions li a:hover {
    color: #6576ff;
}
.product-gallery {
    position: relative;
    height: auto;
    margin: 0 0 30px 0;
    border-radius: 4px;
    border: 1px solid #e5e9f2;
}
.product-gallery .slick-list {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.product-gallery .slider-nav {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 282px;
}
.product-gallery .slider-nav .slider-item {
    padding: 0 8px;
}
.product-gallery .slider-nav .slider-item .thumb {
    width: 78px;
    padding: 1px;
    border: 2px solid #e5e9f2;
    box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #fff, inset 1px -1px 0 #fff, inset -1px 1px 0 #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.product-gallery .slider-nav .slider-item.slick-current .thumb {
    border-color: #6576ff;
    cursor: default;
}
.product-rating {
    display: flex;
    align-items: center;
}
.product-rating .amount {
    margin-left: 0.5rem;
    color: #8094ae;
}
.product-excrept {
    margin-top: 1.5rem;
}
.product-meta {
    margin-top: 2rem;
}
.product-meta + .product-meta {
    margin-top: 1.25rem;
}

@media (max-width: 420px) {
    .product-gallery .slider-nav {
        width: 188px;
    }
}
@media (min-width: 768px) {
    .product-gallery .slider-nav {
        width: 384px;
    }
}
.gallery-image {
    position: relative;
    z-index: 1;
}

.nk-order-ovwg-ck {
    height: 180px;
}
.nk-order-ovwg-data {
    padding: 0.75rem 1.25rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 4px;
}
.nk-order-ovwg-data .amount {
    font-size: 1.5rem;
    font-weight: 700;
}
.nk-order-ovwg-data .amount small, .nk-order-ovwg-data .amount .small {
    font-weight: 400;
}
.nk-order-ovwg-data .info {
    font-size: 12px;
    color: #8094ae;
    margin-bottom: 0.25rem;
}
.nk-order-ovwg-data .info strong {
    color: #364a63;
}
.nk-order-ovwg-data .title {
    font-size: 14px;
    line-height: 1.3;
    color: #8094ae;
    font-weight: 500;
}
.nk-order-ovwg-data .title .icon {
    font-size: 1rem;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #f5f6fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}
.nk-order-ovwg-data.buy {
    border-color: #8ff0d6;
}
.nk-order-ovwg-data.buy .amount, .nk-order-ovwg-data.buy .title .icon {
    color: #1ee0ac;
}
.nk-order-ovwg-data.sell {
    border-color: #b2bbff;
}
.nk-order-ovwg-data.sell .amount, .nk-order-ovwg-data.sell .title .icon {
    color: #6576ff;
}

@media (min-width: 1540px) {
    .nk-order-ovwg-ck {
        height: 260px;
    }
}
.nk-wg-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nk-wg-action-content {
    position: relative;
    padding-left: 2rem;
    padding-right: 1rem;
}
.nk-wg-action-content .icon {
    font-size: 1.5rem;
    left: 0;
    position: absolute;
    color: #8094ae;
}
.nk-wg-action-content .title {
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 0.25rem;
}
.nk-wg-action-content p {
    color: #8094ae;
    font-size: 13px;
    line-height: 1.25rem;
}
.nk-wg-action-content p strong {
    color: #6576ff;
}

.nk-coin-ovwg {
    display: flex;
}
.nk-coin-ovwg-ck {
    flex-grow: 1;
    height: 165px;
}
.nk-coin-ovwg-legends {
    width: 100px;
    flex-shrink: 0;
}
.nk-coin-ovwg-legends li {
    display: flex;
    align-items: center;
    line-height: 1.25rem;
    font-size: 12px;
    padding: 0.25rem 0;
    color: #8094ae;
}
.nk-coin-ovwg-legends li .dot {
    margin-right: 0.5rem;
}

.nk-tb-orders-type {
    width: 66px;
}

.nk-sale-data {
    flex-shrink: 0;
}
.nk-sale-data-group {
    display: flex;
    flex-wrap: wrap;
}
.nk-sale-data .amount {
    display: block;
    font-size: 1.75rem;
    color: #364a63;
}
.nk-sale-data .amount .change {
    font-size: 0.875rem;
}
.nk-sale-data .amount.sm {
    font-size: 1.125rem;
    color: #8094ae;
}
.nk-sale-data .sub-title {
    color: #8094ae;
    font-size: 12px;
}
.nk-sale-data .sub-title .change {
    margin-right: 0.5rem;
}

.nk-sale-data {
    flex-shrink: 0;
}
.nk-sale-data-group {
    display: flex;
    flex-wrap: wrap;
}
.nk-sale-data .amount {
    display: block;
    font-size: 1.75rem;
    color: #364a63;
}
.nk-sale-data .amount .change {
    font-size: 0.875rem;
}
.nk-sale-data .amount.sm {
    font-size: 1.125rem;
    color: #8094ae;
}
.nk-sale-data .sub-title {
    color: #8094ae;
    font-size: 12px;
}
.nk-sale-data .sub-title .change {
    margin-right: 0.5rem;
}

.nk-sales-ck {
    height: 80px;
    flex-grow: 1;
}
.nk-sales-ck.large {
    height: 184px;
}

@media (min-width: 1200px) {
    .nk-sales-ck.sales-revenue {
        height: 164px;
    }
}
.nk-activity-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
}
.nk-activity-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.nk-activity-data {
    margin-left: 1rem;
}
.nk-activity-data .time {
    display: block;
    font-size: 12px;
    color: #8094ae;
    line-height: 1.3;
}

@media (min-width: 576px) {
    .nk-activity-item {
        display: flex;
        padding: 1rem 1.5rem;
    }
}
.nk-support-item {
    display: flex;
    padding: 1.25rem;
}
.nk-support-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.nk-support-content {
    flex-grow: 1;
    margin-left: 1rem;
}
.nk-support-content .title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #364a63;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nk-support-content p {
    margin-bottom: 0;
    margin-top: 0.25rem;
}
.nk-support-content .time {
    display: block;
    font-size: 12px;
    color: #8094ae;
}

@media (min-width: 576px) {
    .nk-support-item {
        display: flex;
        padding: 1.25rem 1.5rem;
    }
}
.device-status {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}
.device-status-ck {
    height: 200px;
    margin: auto 0;
}
.device-status-group {
    display: flex;
    justify-content: space-between;
    padding-top: 1.75rem;
    margin: auto;
    width: 280px;
    max-width: 100%;
}
.device-status-data > .icon {
    font-size: 1.5rem;
}
.device-status-data .title {
    font-size: 12px;
    color: #8094ae;
    margin-bottom: 0.5rem;
}
.device-status-data .amount {
    font-size: 1.125rem;
    color: #364a63;
    font-weight: 500;
}
.device-status-data .change {
    margin-left: -0.125rem;
}

.traffic-channel {
    margin-top: 1rem;
}
.traffic-channel-ck {
    height: 44px;
    width: 130px;
    margin-top: -4px;
    margin-bottom: -4px;
}
.traffic-channel-doughnut-ck {
    height: 160px;
}
.traffic-channel-group {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1.75rem;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 320px;
    max-width: 100%;
}
.traffic-channel-data {
    width: 50%;
}
.traffic-channel-data .title {
    display: flex;
    align-items: center;
    color: #8094ae;
    font-size: 12px;
}
.traffic-channel-data .title .dot {
    margin-right: 0.5rem;
}
.traffic-channel-data .amount {
    font-size: 1.125rem;
    color: #364a63;
    margin-left: 1.25rem;
}
.traffic-channel-data .amount small, .traffic-channel-data .amount .small {
    font-size: 12px;
    color: #8094ae;
}

@media (max-width: 575.98px) {
    .traffic-channel-ck {
        width: 100%;
    }
    .traffic-channel-table .nk-tb-item {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid #e5e9f2;
        padding: 1.125rem 0;
    }
    .traffic-channel-table .nk-tb-col {
        border-bottom: none !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .traffic-channel-table .nk-tb-channel {
        width: 50%;
    }
    .traffic-channel-table .nk-tb-sessions {
        width: 25%;
    }
    .traffic-channel-table .nk-tb-prev-sessions {
        display: none;
    }
    .traffic-channel-table .nk-tb-change {
        width: 25%;
    }
    .traffic-channel-table .nk-tb-trend {
        width: 100%;
        padding-left: 1.25rem;
    }
}
@media (min-width: 1540px) and (max-width: 1800px) {
    .traffic-channel-data .amount {
        font-size: 1rem;
    }
}
.analytic-data-group {
    display: flex;
    flex-wrap: wrap;
}
.analytic-data .title {
    font-size: 12px;
    font-weight: 500;
    color: #8094ae;
    margin-bottom: 0.375rem;
}
.analytic-data .title span {
    font-weight: 400;
}
.analytic-data .amount {
    color: #364a63;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.analytic-data .amount-sm {
    font-size: 1.125rem;
}
.analytic-data .change {
    font-size: 13px;
    margin-left: -0.125rem;
}
.analytic-data .subtitle {
    font-size: 12px;
    color: #8094ae;
}

@media (min-width: 1540px) and (max-width: 1800px) {
    .analytic-data .amount {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .analytic-data .amount-sm {
        font-size: 1.125rem;
    }
}
.analytic-ov-data {
    width: 50%;
}
.analytic-ov-ck {
    height: 175px;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .analytic-ov-data {
        width: 25%;
    }
}
.analytic-au-data {
    width: 33.3333%;
}
.analytic-au-ck {
    height: 170px;
    margin-top: 2.25rem;
}

.analytic-wp-data {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.analytic-wp-ck {
    height: 36px;
}
.analytic-wp-graph {
    width: 150px;
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}
.analytic-wp-graph .title {
    margin-bottom: 0;
}
.analytic-wp-text {
    text-align: right;
    margin-left: 0.5rem;
}

@media (min-width: 420px) and (max-width: 767px) {
    .analytic-wp-graph {
        width: 60%;
    }
}
@media (min-width: 1540px) and (max-width: 1800px) {
    .analytic-wp-graph {
        width: 120px;
    }
}
.chart-label {
    font-size: 12px;
    color: #8094ae;
}
.chart-label-group {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.analytics-map .vector-map {
    height: 160px;
    margin: 1rem 0;
}
.analytics-map-data {
    font-size: 0.875rem;
}
.analytics-map-data td {
    padding: 0.25rem 0;
}
.analytics-map-data .country {
    color: #8094ae;
}
.analytics-map-data .amount {
    color: #364a63;
    text-align: right;
}
.analytics-map-data .percent {
    text-align: right;
    color: #8094ae;
}
.analytics-map-data-list {
    width: 100%;
    margin-bottom: -0.25rem;
}

.card-title .subtitle {
    color: #8094ae;
    font-size: 13px;
    font-weight: 500;
}
.card-amount {
    display: flex;
    align-items: baseline;
}
.card-amount .change {
    margin-left: 0.5rem;
}
.card-amount .amount {
    font-size: 1.5rem;
    color: #364a63;
}
.card-amount .amount span {
    color: #526484;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .card-amount .amount {
        font-size: 1rem;
        font-weight: 500;
    }
    .card-amount .amount span {
        font-weight: 400;
    }
    .card-amount .change {
        font-size: 12px;
    }
}
.card-inner .nav-tabs-card {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
}

@media (min-width: 576px) {
    .card-inner .nav-tabs-card {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}
.nav-tabs-xs .nav-link {
    padding: 0.75rem 0;
    font-size: 13px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .nav-tabs-xs .nav-item {
        padding-right: 1.25rem;
    }
}
@media (min-width: 992px) {
    .nav-tabs-sm .nav-item {
        padding-right: 1.25rem;
    }
}
@media (min-width: 1200px) {
    .nav-tabs-sm .nav-item {
        padding-right: 1.25rem;
    }
}
.invest-data {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.invest-data-history {
    margin-right: 20px;
    flex-grow: 1;
}
.invest-data-history .title {
    font-size: 11px;
    color: #8094ae;
    text-transform: uppercase;
    margin-bottom: 0.125rem;
    letter-spacing: 0.1em;
}
.invest-data-history .amount {
    font-size: 0.9375rem;
    line-height: 1.1;
    color: #364a63;
}
.invest-data-history .amount span {
    color: #526484;
}
.invest-data-amount {
    display: flex;
    flex-shrink: 0;
    flex-grow: 1;
}
.invest-data-ck {
    flex-grow: 1;
    height: 48px;
    width: 80px;
    margin-bottom: 0.125rem;
}

@media (min-width: 768px) and (max-width: 1350px), (max-width: 359px) {
    .invest-data {
        margin-top: 0.75rem;
    }
    .invest-data-amount {
        flex-wrap: wrap;
        flex-shrink: 1;
    }
    .invest-data-ck {
        height: 68px;
        width: 140px;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .invest-data-history .amount {
        font-size: 0.75rem;
        font-weight: 700;
    }
    .invest-data-history .amount span {
        font-weight: 400;
    }
}
.invest-ov {
    padding: 1.25rem 0 1rem;
}
.invest-ov:last-child {
    padding-bottom: 0;
}
.invest-ov:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.invest-ov .subtitle {
    color: #8094ae;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.invest-ov .title {
    font-size: 11px;
    color: #8094ae;
    text-transform: uppercase;
    margin-top: 0.25rem;
    letter-spacing: 0.1em;
}
.invest-ov .amount {
    font-size: 1.25rem;
    line-height: 1.1;
    color: #364a63;
}
.invest-ov .amount span {
    color: #526484;
}
.invest-ov-details {
    display: flex;
}
.invest-ov-info {
    width: 60%;
}
.invest-ov-stats {
    width: 40%;
}
.invest-ov-stats > div {
    display: flex;
    align-items: baseline;
}
.invest-ov-stats .change {
    margin-left: 0.25rem;
}

.invest-top-ck {
    padding-top: 20px;
    height: 70px;
}

/** Project: Subscription | Package: DashLite | Version : 1.0.0 **/
.sp-plan-name {
    font-size: 13px;
    color: #8094ae;
}
.sp-plan-name .badge {
    margin-left: 0.5rem;
}
.sp-plan-opt {
    width: 100%;
}
.sp-plan-opt label {
    font-size: 12px;
    font-weight: 500;
}
.sp-plan-desc {
    border-top: 1px solid #e5e9f2;
    padding-top: 1rem;
    margin-bottom: -0.5rem;
}
.sp-plan-desc li {
    padding: 0.375rem 0;
    font-weight: 500;
}
.sp-plan-desc p > span {
    font-weight: 400;
    display: block;
}
.sp-plan-action {
    background: #f5f6fa;
    border-top: 1px solid #dbdfea;
    border-radius: 0 0 4px 4px;
}
.sp-plan-note {
    margin-top: 0.75rem;
    font-style: italic;
    font-size: 12px;
    color: #8094ae;
}
.sp-plan-note span {
    color: #526484;
}
.sp-plan-head-group {
    display: flex;
    justify-content: space-between;
}
.sp-plan-head-group + .sp-plan-payopt {
    margin-top: 0.75rem;
}
.sp-plan-head + .sp-plan-desc {
    padding-top: 0.5rem;
    border-top: 0;
    margin-bottom: 0;
}
.sp-plan-head .title {
    line-height: 1.3;
}
.sp-plan-head .title + span {
    font-size: 13px;
}
.sp-plan-amount {
    flex-shrink: 0;
    font-size: 0.875rem;
    color: #364a63;
    font-weight: 500;
    text-align: right;
    line-height: 1.3;
}
.sp-plan-status {
    font-size: 12px;
    display: inline-block;
    width: 55px;
    text-align: left;
    padding-right: 0.5rem;
}
.sp-plan-link {
    position: relative;
    margin: -0.5rem 0;
}
.sp-plan-link .link {
    padding: 0.5rem 1.5rem 0.5rem 0;
    display: block;
}
.sp-plan-link .link > span {
    display: inline-flex;
    align-items: center;
}
.sp-plan-link .link > span .icon {
    font-size: 1.5rem;
    padding-right: 0.75rem;
}
.sp-plan-link .link > .icon {
    position: absolute;
    right: 0;
    font-size: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 414px) {
    .sp-plan-action {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sp-plan-note {
        margin-top: 0;
    }
    .sp-plan-amount {
        font-size: 1rem;
    }
    .sp-plan-status {
        font-size: 13px;
    }
}
@media (min-width: 768px) {
    .sp-plan-head + .sp-plan-desc {
        padding-top: 1rem;
    }
    .sp-plan-desc {
        border-top: 0;
        padding-top: 0;
        margin-top: -0.5rem;
    }
    .sp-plan-action {
        height: 100%;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        border-top: 0;
        border-left: 1px solid #dbdfea;
        border-radius: 0 4px 4px 0;
    }
    .sp-plan-note {
        margin-top: 0.75rem;
        font-size: 13px;
    }
}
@media (max-width: 575.98px) {
    .sp-plan-desc-mb p {
        text-align: right;
    }
    .sp-plan-desc-mb p > span {
        text-align: left;
        float: left;
        width: 45%;
        display: inline-block;
    }
}
.cc-pay .title {
    font-size: 0.875rem;
    color: #526484;
    font-family: Roboto, sans-serif;
}
.cc-pay-method {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.cc-pay-btn {
    margin-top: 1.25rem;
}
.cc-pay-dd > .btn, .dual-listbox .cc-pay-dd > .dual-listbox__button {
    width: 100%;
    font-size: 1rem;
    font-family: Roboto, sans-serif;
    font-weight: 400;
}
.cc-pay-dd > .btn span, .dual-listbox .cc-pay-dd > .dual-listbox__button span {
    letter-spacing: 0.08em;
}
.cc-pay-dd > .btn .icon, .dual-listbox .cc-pay-dd > .dual-listbox__button .icon {
    margin-right: 0.25rem;
    margin-left: -0.25rem;
    font-size: 1.5rem;
}
.cc-pay-dd .dropdown-toggle:after {
    position: absolute;
    margin-right: -0.25rem;
    padding-left: 0.5rem;
    right: 1rem;
}
.cc-pay-dd .btn + .dropdown-menu, .cc-pay-dd .dual-listbox .dual-listbox__button + .dropdown-menu, .dual-listbox .cc-pay-dd .dual-listbox__button + .dropdown-menu {
    margin-top: -2.25rem;
}
.cc-pay-dd .btn-lg + .dropdown-menu, .cc-pay-dd .btn-group-lg > .btn + .dropdown-menu, .cc-pay-dd .dual-listbox .btn-group-lg > .dual-listbox__button + .dropdown-menu, .dual-listbox .cc-pay-dd .btn-group-lg > .dual-listbox__button + .dropdown-menu {
    margin-top: -2.75rem;
}
.cc-pay-star {
    line-height: 1;
    padding-top: 0.125rem;
    display: inline-block;
    vertical-align: middle;
}
.cc-pay-item {
    padding: 0.75rem 1.25rem !important;
}
.cc-pay-item-icon {
    font-size: 1.5rem;
    width: 2rem;
    flex-shrink: 0;
    display: inline-block;
    margin-right: 0.5rem;
}
.cc-pay-item-name {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.cc-pay-item-method {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 90%;
}
.cc-pay-item-method-new {
    color: #6576ff;
    font-weight: 500;
}
.cc-pay-item-meta {
    font-weight: 400;
    color: #8094ae;
    font-size: 12px;
    font-style: italic;
}

@media (min-width: 768px) {
    .cc-pay-dd {
        min-width: 280px;
        margin-right: 1rem;
    }
    .cc-pay-method {
        flex-direction: row;
    }
    .cc-pay-btn {
        margin-top: 0;
    }
}
.sp-package-plan {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.sp-package-item:not(:last-child) {
    margin-bottom: 1.25rem;
}
.sp-package-choose {
    position: absolute;
    opacity: 0;
    height: 1px;
    width: 1px;
}
.sp-package-choose ~ label {
    position: relative;
    border-width: 2px;
    cursor: pointer;
    transition: border-color 0.4s;
    margin-bottom: 0;
}
.sp-package-choose ~ label:after, .sp-package-choose ~ label:before {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    height: 22px;
    width: 22px;
    border-radius: 50%;
}
.sp-package-choose ~ label:before {
    content: "";
    border: 2px solid #dbdfea;
}
.sp-package-choose ~ label:after {
    line-height: 22px;
    font-size: 12px;
    font-family: "Nioicon";
    content: "\e9bd";
    color: #fff;
    background: #6576ff;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s;
}
.sp-package-choose:checked ~ label {
    border-color: #6576ff;
}
.sp-package-choose:checked ~ label:after {
    opacity: 1;
}
.sp-package-desc {
    text-align: left;
    display: flex;
    justify-content: space-between;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    flex-direction: column;
}
.sp-package-desc .badge {
    vertical-align: middle;
    margin-left: 0.5rem;
}
.sp-package-title {
    color: #364a63;
    font-size: 1.15rem;
    display: block;
    font-weight: 500;
}
.sp-package-detail {
    color: #8094ae;
}
.sp-package-action {
    margin-top: 1.5rem;
}
.sp-package-action .btn, .sp-package-action .dual-listbox .dual-listbox__button, .dual-listbox .sp-package-action .dual-listbox__button, .sp-package-action .link {
    margin: 0 0.75rem;
}
.sp-package-info, .sp-package-price {
    padding: 1.25rem;
}
.sp-package-price {
    text-align: left;
    background: #f5f6fa;
    border-radius: 0 0 4px 4px;
    border-top: 1px solid #e5e9f2;
    min-width: 185px;
}
.sp-package-amount {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1;
}
.sp-package-amount .amount {
    display: block;
    font-size: 1.75rem;
}
.sp-package-amount .amount + span {
    margin-top: 0.5rem;
    display: block;
}

@media (min-width: 992px) {
    .sp-package-desc {
        text-align: left;
        padding-left: 2.75rem;
        flex-direction: row;
    }
    .sp-package-info, .sp-package-price {
        padding: 1.5rem 1.25rem;
    }
    .sp-package-info {
        flex-grow: 1;
    }
    .sp-package-price {
        text-align: center;
        border-radius: 0 4px 4px 0;
        border-top: 0;
        border-left: 1px solid #e5e9f2;
    }
    .sp-package-choose ~ label:after, .sp-package-choose ~ label:before {
        left: 1.25rem;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
    }
}
.sp-pdl-item {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    background: #fff;
}
.sp-pdl-item:not(:last-child) {
    margin-bottom: 1rem;
}
.sp-pdl-btn {
    padding-left: 2.75rem;
}
.sp-pdl-desc {
    display: flex;
    flex-grow: 1;
}
.sp-pdl-info {
    margin-top: 0.35rem;
}
.sp-pdl-title {
    font-size: 1rem;
    line-height: 1.2;
}
.sp-pdl-img {
    flex-shrink: 0;
    width: 1.75rem;
    margin-right: 1rem;
}
.sp-pdl-meta .version, .sp-pdl-meta .release {
    display: block;
    line-height: 1.2;
    padding: 0.25rem 0;
}
.sp-pdl-title .badge {
    margin-left: 1rem;
}

@media (min-width: 768px) {
    .sp-pdl-img {
        width: 2.5rem;
        margin-right: 1.5rem;
    }
    .sp-pdl-desc {
        align-items: center;
    }
    .sp-pdl-item {
        padding: 1rem 1.5rem;
    }
    .sp-pdl-meta .version, .sp-pdl-meta .release {
        display: inline-block;
        padding-right: 1.5rem;
    }
}
@media (max-width: 459px) {
    .sp-pdl-desc {
        width: 100%;
        padding-left: 2.75rem;
    }
    .sp-pdl-img {
        position: absolute;
        margin-left: -2.75rem;
    }
    .sp-pdl-btn {
        margin: 1rem 0 0.5rem;
    }
}
.invoice {
    position: relative;
}
.invoice-wrap {
    padding: 1.25rem;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    background: #fff;
}
.invoice-action {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
}
.invoice-brand {
    padding-bottom: 1.5rem;
}
.invoice-brand img {
    max-height: 60px;
}
.invoice-bills {
    font-size: 12px;
}
.invoice-bills .table {
    min-width: 580px;
}
.invoice-bills .table th {
    color: #6576ff;
    font-size: 12px;
    text-transform: uppercase;
    border-top: 0;
}
.invoice-bills .table th:last-child, .invoice-bills .table td:last-child {
    text-align: right;
}
.invoice-bills .table tfoot {
    border-top: 1px solid #dbdfea;
}
.invoice-bills .table tfoot td {
    border-top: 0;
    white-space: nowrap;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.invoice-bills .table tfoot tr:last-child td:not(:first-child), .invoice-bills .table tfoot tr:first-child td:not(:first-child) {
    font-weight: 500;
    padding-top: 1.25rem;
    padding-bottom: 0.25rem;
}
.invoice-bills .table tfoot tr:last-child td:not(:first-child) {
    border-top: 1px solid #dbdfea;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.invoice-head {
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.invoice-desc {
    width: 210px;
    padding-top: 1.5rem;
}
.invoice-desc .title {
    text-transform: uppercase;
    color: #6576ff;
}
.invoice-desc ul li {
    padding: 0.25rem 0;
}
.invoice-desc ul span {
    font-size: 13px;
    font-weight: 500;
    color: #526484;
}
.invoice-desc ul span:first-child {
    min-width: 90px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8094ae;
}
.invoice-desc ul span:last-child {
    padding-left: 0.75rem;
}
.invoice-contact .title {
    margin-bottom: 1rem;
}
.invoice-contact ul li {
    padding: 0.5rem 0;
    line-height: 1.3;
}
.invoice-contact ul li:first-child {
    padding-top: 0;
}
.invoice-contact ul li:last-child {
    padding-bottom: 0;
}
.invoice-contact ul .icon {
    line-height: 1.3;
    font-size: 1.1em;
    display: inline-block;
    vertical-align: top;
    margin-top: -2px;
    color: #6576ff;
    margin-right: 0.5rem;
}
.invoice-contact ul .icon + span {
    display: inline-block;
    vertical-align: top;
    color: #8094ae;
}
.invoice-print {
    max-width: 940px;
    margin: 2rem auto;
}
.invoice-print .invoice-wrap {
    padding: 0;
    border: none !important;
}

@media (min-width: 768px) {
    .invoice-wrap {
        padding: 3rem;
    }
    .invoice-head {
        flex-direction: row;
    }
    .invoice-desc {
        padding-top: 0;
    }
    .invoice-bills {
        font-size: 0.875rem;
    }
}
.support-topic-item:not(:first-child) {
    margin-top: 28px;
}
.support-topic-block {
    display: flex;
    align-items: center;
}
.card-bordered .support-topic-block {
    border-radius: 4px;
}
.support-topic-block:link:hover {
    background: #f5f6fa;
}
.support-topic-media {
    width: 90px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}
.support-topic-context {
    color: #526484;
    flex-grow: 1;
}
.support-topic-count {
    margin-top: 0.75rem;
    font-size: 12px;
    color: #6576ff;
}
.support-topic-action {
    margin-left: auto;
    padding-left: 1rem;
}
.support-topic-action .icon {
    font-size: 1.5rem;
    color: #8094ae;
}
.support-topic-title {
    color: #364a63;
}
.support-topic-title-sub {
    color: #8094ae;
    margin-bottom: 0.25rem;
}
.support-topic-details h2, .support-topic-details .h2, .support-topic-details h3, .support-topic-details .h3 {
    font-weight: 400;
}
.support-topic-details h3, .support-topic-details .h3, .support-topic-details h4, .support-topic-details .h4 {
    color: #6576ff;
}
.support-topic-details h3:first-child, .support-topic-details .h3:first-child, .support-topic-details h4:first-child, .support-topic-details .h4:first-child {
    margin-bottom: 1.5rem;
}
.support-topic-meta {
    margin: 1.5rem -0.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid #e5e9f2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.support-topic-meta > div {
    padding: 0.5rem;
}

@media (max-width: 479px) {
    .support-topic-block {
        flex-direction: column;
        align-items: flex-start;
    }
    .support-topic-media {
        margin-bottom: 1.5rem;
        width: 60px;
    }
    .support-topic-context {
        font-size: 12px;
    }
    .support-topic-action {
        display: none;
    }
}
@media (max-width: 359px) {
    .support-topic-react {
        margin-top: 0.5rem;
    }
}
.support-queue-item {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.support-queue-item:not(:first-child) {
    border-top: 1px solid #dbdfea;
}
.card-bordered .support-queue-item {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.card-bordered .support-queue-item:first-child {
    padding-top: 0;
}
.card-bordered .support-queue-item:last-child {
    padding-bottom: 0;
}
.support-queue-link {
    display: flex;
    align-items: center;
}
.support-queue-media {
    width: 36px;
    flex-shrink: 0;
    margin-right: 1rem;
}
.support-queue-body {
    display: flex;
    flex-grow: 1;
    align-items: center;
}
.support-queue-context {
    color: #8094ae;
}
.support-queue-context .title {
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}
.support-queue-desc {
    display: none;
    max-width: 420px;
}
.support-queue-update {
    margin-left: auto;
    padding-left: 1.5rem;
    flex-shrink: 0;
    color: #8094ae;
    font-size: 12px;
}

@media (max-width: 991.98px) {
    .support-queue-body {
        flex-direction: column;
        align-items: flex-start;
    }
    .support-queue-context {
        width: 100%;
    }
    .support-queue-update {
        margin-top: 0.25rem;
        margin-left: 0;
        padding-left: 0;
    }
}
@media (min-width: 576px) {
    .card-bordered .support-queue-item {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (min-width: 768px) {
    .support-queue-link {
        flex-wrap: nowrap;
    }
    .support-queue-media {
        margin-right: 1.25rem;
    }
    .support-queue-context .title {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
    }
    .support-queue-desc {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media (min-width: 1200px) {
    .support-queue-desc {
        max-width: 620px;
    }
}
.table-tickets {
    font-size: 13px;
    color: #8094ae;
}

.tb-ticket-item td, .tb-ticket-item th {
    vertical-align: middle;
}
.tb-ticket-item td {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.tb-ticket-item td.tb-ticket-desc {
    font-size: 0.875rem;
    color: #526484;
}
.tb-ticket-item td.tb-ticket-id {
    font-size: 0.875rem;
}
.tb-ticket-item.is-unread {
    background: #f5f6fa;
}
.tb-ticket-item.is-unread .title {
    font-weight: 500;
    color: #364a63;
}
.tb-ticket-item .date, .tb-ticket-item .date-last {
    white-space: nowrap;
}
.tb-ticket-item .title {
    vertical-align: middle;
    display: inline-block;
    max-width: 220px;
    padding-right: 1rem;
}
.tb-ticket-id {
    font-weight: 500;
    color: #6576ff;
    width: 120px;
}
.tb-ticket-id a, .tb-ticket-desc a {
    display: block;
    padding: 0.25rem 0;
    color: inherit;
}
.tb-ticket-date, .tb-ticket-seen, .tb-ticket-status {
    width: 115px;
}
.tb-ticket-status {
    text-align: center;
}
.tb-ticket-action {
    text-align: right;
}
.tb-ticket-item .tb-ticket-action {
    height: 52px;
}
.tb-ticket-title th {
    color: #8094ae;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    height: auto;
}

@media (min-width: 1200px) {
    .tb-ticket-item .title {
        max-width: 320px;
    }
}
@media (max-width: 575.98px) {
    .table-tickets {
        font-size: 12px;
    }
    .tb-ticket-item {
        display: flex;
        position: relative;
        flex-wrap: wrap;
        padding: 0.5rem 1.25rem;
        align-items: center;
    }
    .tb-ticket-item td {
        border: 0;
        padding: 0;
    }
    .tb-ticket-item td:first-child, .tb-ticket-item td:last-child {
        padding: 0;
    }
    .tb-ticket-item td.tb-ticket-id {
        font-size: 14px;
    }
    .tb-ticket-item td.tb-ticket-desc {
        font-size: 12px;
    }
    .tb-ticket-item:not(:first-child) {
        border-top: 1px solid #dbdfea;
    }
    .tb-ticket-item .title {
        max-width: 360px;
    }
    .tb-ticket-id {
        width: 100%;
    }
    .tb-ticket-item .tb-ticket-id {
        margin-top: 0.25rem;
        margin-bottom: 0.125rem;
    }
    .tb-ticket-desc {
        width: 78%;
    }
    .tb-ticket-id a, .tb-ticket-desc a {
        padding: 0;
    }
    .tb-ticket-action {
        margin-left: auto;
    }
    .tb-ticket-item .tb-ticket-action {
        height: auto;
    }
    .tb-ticket-date, .tb-ticket-seen, .tb-ticket-status {
        width: auto;
    }
    .tb-ticket-status {
        position: absolute;
        width: 90px;
        right: 1.25rem;
        text-align: right;
        top: 0.75rem;
    }
    .tb-ticket-title {
        display: flex;
        position: relative;
    }
    .tb-ticket-title th:not(:first-child):not(.tb-ticket-status) {
        display: none;
    }
    .tb-ticket-title th.tb-ticket-status {
        padding-right: 0;
        top: 0;
    }
    .table .tb-ticket-title th.tb-ticket-status {
        border: 0;
    }
}
@media (max-width: 420px) {
    .tb-ticket-item .title {
        max-width: 270px;
    }
}
@media (max-width: 374px) {
    .tb-ticket-item .title {
        max-width: 220px;
    }
}
.ticket-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -0.5rem;
}
.ticket-status {
    padding-left: 1rem;
}
.ticket-meta {
    color: #8094ae;
}
.ticket-meta li {
    display: inline-block;
    padding-right: 1rem;
}
.ticket-meta strong {
    color: #526484;
}
.ticket-meta .ticket-id strong {
    color: #6576ff;
}
.ticket-msg-item .user-card .user-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
}
.ticket-msg-item:not(:first-child) {
    margin-top: 3rem;
}
.ticket-msg-from {
    margin-bottom: 1.25rem;
}
.ticket-msg-attach {
    margin-top: 2rem;
}
.ticket-msg-attach .title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8094ae;
}
.ticket-msg-attach-list {
    display: flex;
    flex-wrap: wrap;
    margin: -0.375rem;
}
.ticket-msg-attach-list li {
    width: 72px;
    position: relative;
    margin: 0.375rem;
}
.ticket-msg-attach-list li img {
    border-radius: 4px;
}
.ticket-msg-attach-list a {
    display: block;
    position: relative;
    border-radius: 4px;
    z-index: 1;
}
.ticket-msg-attach-list a:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 43, 58, 0.4);
    border-radius: 4px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}
.ticket-msg-attach-list a .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    color: #fff;
    background: #6576ff;
    border-radius: 4px;
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.6s;
}
.ticket-msg-attach-list a:hover:after {
    opacity: 1;
}
.ticket-msg-attach-list a:hover .icon {
    opacity: 1;
}
.ticket-msg-reply {
    margin-bottom: 0.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e5e9f2;
}
.ticket-msg-reply textarea {
    height: 156px;
    resize: none;
    padding: 0.75rem 1.5rem;
}
.ticket-msg-reply-action-list {
    display: inline-flex;
    align-items: center;
    margin: 0 -0.35rem;
}
.ticket-msg-reply-action-list li .icon {
    font-size: 1.1rem;
    color: #526484;
    transition: color 0.4s;
}
.ticket-msg-reply-action-list li .icon:hover {
    color: #6576ff;
}

@media (min-width: 768px) {
    .ticket-msg-from {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .ticket-msg-comment, .ticket-msg-attach, .ticket-msg-reply {
        margin-left: 56px;
    }
}
@media (max-width: 767.98px) {
    .ticket-msg-from {
        padding-bottom: 1rem;
        border-bottom: 1px solid #e5e9f2;
    }
    .card-bordered .ticket-msg-reply {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        margin-top: 2rem;
        padding-top: 1.25rem;
    }
    .ticket-msg-item:not(:first-child) {
        border-top: 1px solid #dbdfea;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    .card-bordered .ticket-msg-item {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .ticket-msg-item .user-card + .ticket-msg-date {
        font-style: italic;
        margin-left: 56px;
    }
}
.asterisk a {
    position: relative;
    color: #8094ae;
    display: inline-flex;
}
.asterisk a:hover, .asterisk a.active {
    color: #ffa353;
}
.asterisk a:hover .asterisk-on, .asterisk a.active .asterisk-on {
    opacity: 1;
}
.asterisk a.active:hover .asterisk-on {
    opacity: 0;
}
.asterisk-on {
    opacity: 0;
    position: absolute;
    left: 0;
    color: #ffa353;
    z-index: 1;
    transition: opacity 0.2s;
}

.nk-reply {
    height: 100%;
    max-height: 100%;
    overflow: auto;
}
.nk-reply-item {
    padding: 2rem 1.25rem;
}
.nk-reply-item + .nk-reply-item {
    padding-top: 0;
}
.nk-reply-item > div:not(.nk-reply-header) {
    margin-left: 48px;
}
.nk-reply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.nk-reply-header .user-name {
    margin-left: 1rem;
    font-size: 0.875rem;
}
.nk-reply-header .user-name span {
    color: #8094ae;
    font-weight: 400;
}
.nk-reply-header .date-time {
    color: #8094ae;
    font-size: 12px;
}
.nk-reply-entry.note {
    background: #f5f6fa;
    padding: 1.25rem;
    border-radius: 4px;
}
.nk-reply-from {
    margin-top: 1.25rem;
    padding: 0.375rem 0.75rem;
    background: #f5f6fa;
    border-radius: 4px;
    display: inline-block;
    font-size: 13px;
}
.nk-reply-meta {
    overflow: hidden;
    text-align: center;
    margin: 0 1.25rem;
    padding: 0 2rem;
}
.nk-reply-meta-info {
    position: relative;
    display: inline-block;
    padding: 0 0.75rem;
    color: #8094ae;
    font-size: 13px;
    line-height: 1.4;
}
.nk-reply-meta-info span, .nk-reply-meta-info strong, .nk-reply-meta-info .who {
    color: #526484;
}
.nk-reply-meta-info .whom {
    color: #6576ff;
}
.nk-reply-meta-info:before, .nk-reply-meta-info:after {
    position: absolute;
    height: 1px;
    background: #e5e9f2;
    content: "";
    width: 100vw;
    top: 50%;
}
.nk-reply-meta-info:before {
    right: 100%;
}
.nk-reply-meta-info:after {
    left: 100%;
}
.nk-reply-form {
    border-top: 1px solid #e5e9f2;
}
.nk-reply-form-dropdown {
    margin-left: -0.5rem;
    margin-right: 0.75rem;
}
.nk-reply-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    border-bottom: 1px solid #e5e9f2;
}
.nk-reply-form-title {
    display: flex;
    align-items: center;
}
.nk-reply-form-title .title {
    color: #8094ae;
    margin-right: 0.75rem;
}
.nk-reply-form-field {
    padding: 0.5rem 1.25rem;
}
.nk-reply-form-field:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.nk-reply-form-field .form-control, .nk-reply-form-field div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .nk-reply-form-field input, .nk-reply-form-field .dual-listbox .dual-listbox__search, .dual-listbox .nk-reply-form-field .dual-listbox__search {
    font-size: 0.875rem;
}
.nk-reply-form-field textarea.form-control, .nk-reply-form-field .dual-listbox textarea.dual-listbox__search, .dual-listbox .nk-reply-form-field textarea.dual-listbox__search {
    min-height: 78px;
}
.nk-reply-form-field textarea.form-control.ex-large, .nk-reply-form-field .dual-listbox textarea.ex-large.dual-listbox__search, .dual-listbox .nk-reply-form-field textarea.ex-large.dual-listbox__search {
    min-height: 160px;
}
.nk-reply-form-field + .nk-reply-form-tools {
    border-top: 0;
}
.nk-reply-form-tools {
    padding: 1.25rem;
    border-top: 1px solid #e5e9f2;
    display: flex;
    justify-content: space-between;
}
.nk-reply-form-actions {
    display: inline-flex;
    align-items: center;
}
.nk-reply-form-options {
    display: inline-flex;
}
.nk-reply-form-input {
    display: flex;
}
.nk-reply-form-input .label {
    margin: 0.3rem 0.5rem 0.3rem 0;
    width: 2.25rem;
    color: #8094ae;
}
.nk-reply-form-input-group {
    width: 100%;
}
.nk-reply-form-input-cc, .nk-reply-form-input-bcc {
    display: none;
}
.nk-reply-form-input-cc.expanded, .nk-reply-form-input-bcc.expanded {
    display: flex;
}
.nk-reply-form-input .toggle-opt {
    display: inline-flex;
    align-items: center;
    color: #364a63;
}
.nk-reply-form-input .toggle-opt:hover {
    color: #6576ff;
}
.nk-reply-form-group {
    position: relative;
    padding: 1rem 0;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}
.nk-reply-form-input-to {
    padding-right: 3.5rem;
}
.nk-reply-form-nav {
    position: absolute;
    display: flex;
    align-items: center;
    align-self: flex-start;
    padding: 1.0625rem 0 0;
    right: 0;
    top: 0;
    margin: 0 -0.375rem;
}
.nk-reply-form-nav li a {
    font-size: 12px;
    color: #8094ae;
    display: block;
    line-height: 1.5rem;
    padding: 0.25rem 0.375rem;
}
.nk-reply-form-nav li a:hover {
    color: #6576ff;
}
.is-collapsed .nk-reply-msg-info {
    display: none;
}
.nk-reply-msg-excerpt {
    color: #526484;
    display: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.is-collapsed .nk-reply-msg-excerpt {
    display: block;
}
.nk-reply-msg-meta {
    padding: 0.75rem;
}
.nk-reply-msg-meta li {
    display: flex;
    line-height: 1.125rem;
    padding: 0.1875rem 0;
}
.nk-reply-msg-meta li .label {
    width: 75px;
    color: #8094ae;
    font-size: 12px;
    text-align: right;
    margin-right: 0.75rem;
}
.nk-reply-msg-meta li .info {
    font-size: 13px;
}
.nk-reply-msg-meta li .info a {
    color: #526484;
}
.nk-reply-tools {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    cursor: default;
}
.nk-reply-tools .date {
    margin-right: 1rem;
    line-height: 2.25rem;
    color: #526484;
}
.nk-reply-tools .attach-msg {
    font-size: 1.25rem;
    margin-right: 0.375rem;
}
.nk-reply-desc {
    display: flex;
    flex-grow: 1;
}
.is-collapsed .nk-reply-desc {
    overflow: hidden;
}
.nk-reply-header .nk-reply-desc {
    align-items: center;
}
.nk-reply-info {
    margin-left: 1rem;
    max-width: calc(100% - 4.5rem);
}
.nk-reply-header.is-collapsed {
    margin-bottom: 0;
}
.nk-reply-header:not(.is-opened) {
    cursor: pointer;
}
.is-collapsed + .nk-reply-body {
    display: none;
}
.nk-reply-quick-btns ul {
    display: flex;
    align-items: center;
}

.is-collapsed .prev-msg, .is-collapsed .next-msg, .is-collapsed .more-actions, .is-collapsed .replyto-msg, .is-collapsed .forwardto-msg {
    display: none;
}

.input-mail {
    width: 100%;
    border: none;
}

@media (max-width: 767.98px) {
    .nk-reply-tools {
        flex-wrap: wrap;
    }
    .nk-reply-tools .date {
        margin-right: 0.5rem;
        font-size: 13px;
    }
    .nk-reply-tools .attach-msg {
        font-size: 1.25rem;
        margin-right: 0.375rem;
    }
}
@media (max-width: 575.98px) {
    .nk-reply-info {
        margin-left: 0.75rem;
        max-width: calc(100% - 2.5rem);
    }
    .is-collapsed .nk-reply-info {
        max-width: calc(100% - 4.5rem);
    }
    .nk-reply-info .date {
        font-size: 11px;
        color: #8094ae;
        margin-left: 0.375rem;
    }
    .nk-reply-info .lead-text {
        font-size: 13px;
    }
    .nk-reply-form-dropdown {
        margin-right: 0.5rem;
    }
    .nk-reply-form-group {
        flex-wrap: wrap;
        align-items: center;
    }
    .nk-reply-form-title {
        font-weight: 500;
    }
    .nk-reply-tools .attach-msg, .nk-reply-tools .date-msg {
        display: none;
    }
    .nk-reply-avatar {
        height: 30px;
        width: 30px;
    }
    .nk-reply-msg-excerpt {
        font-size: 12px;
        margin-top: 0.25rem;
    }
    .nk-reply-msg-info .sub-text {
        font-size: 12px;
    }
    .nk-reply-msg-info .dropdown-menu {
        margin-right: 16px !important;
    }
}
@media (min-width: 576px) {
    .nk-reply-form {
        margin: 0.5rem 2.25rem 2.25rem;
        border: 1px solid #e5e9f2;
        border-radius: 4px;
    }
    .nk-reply-form-header {
        padding: 0 1.5rem;
    }
    .nk-reply-form-field {
        padding: 0.5rem 1.5rem;
    }
    .nk-reply-form-field textarea.form-control.ex-large, .nk-reply-form-field .dual-listbox textarea.ex-large.dual-listbox__search, .dual-listbox .nk-reply-form-field textarea.ex-large.dual-listbox__search {
        min-height: 278px;
    }
    .nk-reply-form-tools {
        padding: 1rem 1.5rem;
    }
    .modal-body .nk-reply-form-tools {
        padding: 1.5rem;
    }
    .nk-reply-item {
        padding: 2rem 2.25rem;
    }
    .nk-reply-meta {
        margin: 0 2.25rem;
    }
    .nk-reply-header .date-time {
        font-size: 13px;
    }
    .nk-reply-quick-btns {
        margin: 0.5rem 2.25rem 2.25rem;
    }
}
@media (min-width: 992px) {
    .nk-reply-form {
        margin: 0.5rem 2.5rem 2.5rem;
    }
    .nk-reply-item {
        padding: 2rem 2.5rem;
    }
    .nk-reply-meta {
        margin: 0 2.5rem;
    }
    .nk-reply-quick-btns {
        margin: 0.5rem 2.5rem 2.5rem;
    }
}
.attach-files {
    margin-top: 1.75rem;
    border: 1px solid #e5e9f2;
    border-radius: 4px;
}
.attach-list {
    padding: 1rem 1.25rem;
    margin-bottom: -0.5rem;
    display: flex;
    flex-wrap: wrap;
}
.attach-item {
    width: 180px;
    padding-right: 2rem;
    padding-bottom: 0.5rem;
}
.attach-item a {
    display: flex;
    align-items: center;
    width: 100%;
    color: #526484;
}
.attach-item .icon {
    font-size: 1.5rem;
    color: #6576ff;
    margin-right: 0.75rem;
}
.attach-foot {
    border-top: 1px solid #e5e9f2;
    background: #f5f6fa;
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.attach-info {
    font-weight: 500;
    color: #364a63;
}
.attach-download span {
    color: #8094ae;
    transition: all 0.3s;
}
.attach-download:hover span {
    color: #6576ff;
}

@media (max-width: 359px) {
    .attach-info {
        font-size: 12px;
    }
    .attach-download {
        font-size: 12px;
    }
}
.nk-msg-nav {
    position: relative;
    border-bottom: 1px solid #e5e9f2;
    padding: 0 1.25rem;
    background: #f5f6fa;
    z-index: 2;
    border-top-left-radius: 3px;
}
.nk-msg-nav .search-wrap {
    padding: 0 1rem;
    bottom: -1px;
    border-bottom: 1px solid #e5e9f2;
}
.nk-msg-nav .search-submit {
    transform: translate(0.25rem, -50%);
}
.nk-msg-menu {
    display: flex;
    margin: 0 -0.75rem;
}
.nk-msg-menu-item {
    padding: 0 0.75rem;
}
.nk-msg-menu-item a {
    display: inline-flex;
    position: relative;
    color: #8094ae;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5rem;
    padding: 1rem 0;
}
.nk-msg-menu-item a:after {
    position: absolute;
    content: "";
    height: 2px;
    background: #6576ff;
    bottom: -1px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: 0.3s ease;
}
.nk-msg-menu-item a .icon {
    font-size: 1.125rem;
    line-height: 1.5rem;
}
.nk-msg-menu-item a:hover {
    color: #6576ff;
}
.nk-msg-menu-item.active a {
    color: #6576ff;
}
.nk-msg-menu-item.active a:after {
    opacity: 1;
}

.nk-msg {
    position: relative;
    display: flex;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    min-height: calc(100vh - (65px + 64px + 96px));
    max-height: calc(100vh - (65px + 64px + 96px));
}
.nk-msg-aside {
    width: 100%;
    overflow: hidden;
    max-height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    background: rgba(245, 246, 250, 0.7);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.nk-msg-list {
    max-height: 100%;
    height: 100%;
    overflow: auto;
}
.nk-msg-item {
    display: flex;
    padding: 1.25rem 1.25rem;
    cursor: pointer;
}
.nk-msg-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.nk-msg-item.active, .nk-msg-item.current {
    background: #fff;
    cursor: default;
}
.nk-msg-info {
    max-width: calc(100% - 52px);
    margin-left: 0.75rem;
    flex-grow: 1;
}
.nk-msg-from {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nk-msg-context {
    display: flex;
    justify-content: space-between;
    margin-top: 0.25rem;
}
.nk-msg-context .asterisk {
    margin-top: auto;
}
.nk-msg-sender {
    display: inline-flex;
    align-items: center;
    color: #8094ae;
    font-size: 12px;
}
.nk-msg-sender .name {
    margin-right: 0.5rem;
}
.is-unread .nk-msg-sender .name {
    font-weight: 500;
    color: #364a63;
}
.nk-msg-meta {
    display: inline-flex;
    align-items: center;
    color: #8094ae;
    font-size: 12px;
}
.nk-msg-meta .attchment .icon {
    font-size: 1.125rem;
}
.nk-msg-meta .date {
    margin-left: 0.75rem;
}
.nk-msg-text {
    max-width: calc(100% - 35px);
    flex-grow: 0;
    padding-right: 0.5rem;
}
.nk-msg-text .title {
    font-size: 15px;
    margin-bottom: 0.25rem;
}
.nk-msg-text p {
    font-size: 13px;
    color: #8094ae;
    max-height: 42px;
    overflow: hidden;
}
.is-unread .nk-msg-text p {
    color: #526484;
    font-weight: 500;
}
.nk-msg-lables {
    text-align: center;
    margin: -0.125rem;
    display: inline-flex;
    flex-direction: column;
}
.nk-msg-lables > div {
    padding: 0.125rem;
}
.nk-msg-lables .icon {
    font-size: 1.125rem;
}
.nk-msg-lables .badge {
    line-height: 14px;
    font-size: 10px;
    padding: 0 0.25rem;
}
.nk-msg-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: padding 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}
.nk-msg-body.show-message {
    opacity: 1;
    pointer-events: auto;
}
.nk-msg-profile {
    position: absolute;
    top: 0;
    width: 280px;
    height: 100%;
    max-height: 100%;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    background: #fff;
    z-index: 100;
}
.nk-msg-profile-toggle {
    position: absolute;
    height: 36px;
    width: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    bottom: -18px;
    border: 1px solid #e5e9f2;
    background-color: #fff;
    border-radius: 50%;
    font-size: 1.125rem;
    z-index: 2;
    right: -18px;
    margin-right: 40px;
    transition: right 0.3s ease-in-out, margin 0.3s ease-in-out 0.2s;
    color: #8094ae;
    z-index: 110;
}
.nk-msg-profile-toggle.active {
    margin-right: 0;
    transform: rotate(-180deg);
}
.nk-msg-profile-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(16, 25, 36, 0.4);
    z-index: 600;
    z-index: 90;
    animation: overlay-fade-in 0.4s ease 1;
}
.nk-msg-profile.visible {
    transform: none;
}
.nk-msg-head {
    position: relative;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #e5e9f2;
}
.nk-msg-head .title {
    margin-bottom: 0.5rem;
}
.nk-msg-head-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nk-msg-hide {
    font-size: 1rem;
}
.nk-msg-tags {
    margin: 0 -0.75rem;
}
.nk-msg-tags li {
    padding: 0 0.75rem;
    color: #8094ae;
}
.nk-msg-tags li > span {
    display: inline-flex;
    align-items: center;
}
.nk-msg-tags li > span .icon {
    color: #6576ff;
    margin-right: 0.25rem;
}
.nk-msg-actions {
    display: flex;
    margin: 0 -0.25rem;
}
.nk-msg-actions li {
    padding: 0 0.25rem;
}

@media (max-width: 575.98px) {
    .nk-msg {
        border-left: none;
        border-right: none;
        border-radius: 4px;
        min-height: calc(100vh - (65px));
        max-height: calc(100vh - (65px));
        margin: 0 -18px;
    }
}
@media (min-width: 576px) {
    .nk-msg-nav {
        padding: 0 2rem;
    }
    .nk-msg-nav .search-wrap {
        padding: 0 1.7rem;
    }
    .nk-msg-item {
        padding: 1.25rem 2rem;
    }
    .nk-msg-head {
        padding: 1rem 2.25rem;
    }
    .nk-msg-head .title {
        margin-bottom: 1rem;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .nk-msg-text .title {
        margin-top: 0.125rem;
        margin-bottom: 0.375rem;
    }
}
@media (min-width: 992px) {
    .nk-msg-nav {
        padding: 0 1.75rem;
    }
    .nk-msg-nav .search-wrap {
        padding: 0 1.425rem;
    }
    .nk-msg-item {
        padding: 1.25rem 1.75rem;
    }
    .nk-msg-head {
        padding: 2rem 2.5rem;
    }
    .nk-msg-head .title {
        max-height: 82px;
        overflow: hidden;
    }
    .nk-msg-aside {
        width: 320px;
        border-right: 1px solid #e5e9f2;
    }
    .nk-msg-body {
        position: static;
        opacity: 1;
        pointer-events: auto;
    }
    .nk-msg-profile {
        border-left: 1px solid #e5e9f2;
    }
    .nk-msg-profile-toggle {
        margin-right: 55px;
        display: flex;
    }
}
@media (min-width: 1540px) {
    .nk-msg-aside {
        width: 380px;
    }
}
@media (max-width: 1539.98px) {
    .profile-shown .nk-msg-profile-toggle {
        right: 262px;
    }
    .has-apps-sidebar .profile-shown .nk-msg-profile-toggle {
        right: -18px;
    }
}
@media (max-width: 1279px) {
    .has-apps-sidebar .profile-shown .nk-msg-profile-toggle {
        right: 262px;
    }
}
@media (min-width: 1540px) {
    .nk-msg-body.profile-shown {
        padding-right: 280px;
    }
}
@media (min-width: 1280px) {
    .has-apps-sidebar .nk-msg-body.profile-shown {
        padding-right: 280px;
    }
}
.ibx-count {
    position: relative;
    padding: 0.3125rem 0.75rem;
    font-size: 0.75rem;
    color: #8094ae;
    background: #fff;
    border: 1px solid #e5e9f2;
    display: inline-block;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
}
.ibx-count:before, .ibx-count:after {
    position: absolute;
    height: 0;
    width: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    border-style: solid;
}
.ibx-count:before {
    right: -8px;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #e5e9f2;
}
.ibx-count:after {
    right: -6px;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #fff;
}

.nk-ibx-context {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.nk-ibx-context-group {
    display: flex;
    align-items: center;
}
.nk-ibx-context-badges {
    margin-right: 0.75rem;
}
.nk-ibx-context-text {
    display: inline;
    color: #8094ae;
}
.is-unread .nk-ibx-context-text {
    color: #526484;
}
.nk-ibx-context-text .heading {
    color: #364a63;
}
.is-unread .nk-ibx-context-text .heading {
    font-weight: 500;
}

.ibx-actions {
    position: relative;
    display: inline-block;
    transition: background-color 0.3s;
}
.ibx-actions-hidden {
    position: absolute;
    display: flex;
    right: calc(100% + 8px);
    opacity: 0;
    transition: background-color 0.3s;
}
.nk-ibx-item:hover .ibx-actions-hidden {
    opacity: 1;
    background-color: #f5f6fa;
}
.nk-ibx-item:hover .ibx-actions {
    background-color: #f5f6fa;
}

.nk-ibx {
    position: relative;
    display: flex;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    min-height: calc(100vh - (65px + 64px + 96px));
    max-height: calc(100vh - (65px + 64px + 96px));
}
.nk-ibx-aside {
    position: absolute;
    background: #fff;
    width: 260px;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-shrink: 0;
    border-right: 1px solid #e5e9f2;
    transform: translateX(-100%);
    z-index: 99;
    transition: transform 0.4s linear;
}
.nk-ibx-aside + .toggle-overlay {
    z-index: 90;
    position: absolute;
}
.nk-ibx-aside.content-active {
    transform: none;
}
.nk-ibx-aside .simplebar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nk-ibx-nav {
    overflow: auto;
    flex-grow: 1;
    height: 100%;
    max-width: 100%;
}
.nk-ibx-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem 0.75rem;
}
.nk-ibx-nav-head .title {
    font-size: 1rem;
    margin-bottom: 0;
}
.nk-ibx-nav-head .dropdown > a, .nk-ibx-nav-head > .link {
    color: #8094ae;
    font-size: 0.875rem;
}
.nk-ibx-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.75rem;
    border-bottom: 1px solid #e5e9f2;
    min-height: 61px;
}
.nk-ibx-head .title {
    font-size: 1rem;
    margin-bottom: 0;
}
.nk-ibx-head-actions, .nk-ibx-head-tools {
    display: flex;
    align-items: center;
}
.nk-ibx-head-tools .btn-icon.btn-trigger .icon, .nk-ibx-head-tools .dt-buttons .btn-trigger.btn-secondary .icon, .dt-buttons .nk-ibx-head-tools .btn-trigger.btn-secondary .icon {
    font-size: 1.25rem;
}
.nk-ibx-head .search-wrap {
    padding: 0 1.365rem 0 1rem;
}
.nk-ibx-head .search-wrap .icon {
    font-size: 1.25rem;
}
.nk-ibx-head .search-back {
    transform: translate(-0.5rem, -50%);
}
.nk-ibx-head-check {
    display: flex;
    margin-right: 0.325rem;
}
.nk-ibx-action {
    position: relative;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e9f2;
}
.nk-ibx-action-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nk-ibx-action-item a {
    display: flex;
    align-items: center;
}
.nk-ibx-action-item .icon {
    font-size: 1.5rem;
}
.nk-ibx-action-item .icon + span {
    margin-left: 0.5rem;
}
.nk-ibx-action-item .search-toggle .icon {
    font-size: 1.125rem;
}
.nk-ibx-menu li {
    margin: 2px 0;
}
.nk-ibx-menu li:hover {
    background: #f5f6fa;
    border-radius: 3px;
}
.nk-ibx-menu li.active {
    background: #eff1ff;
    border-radius: 3px;
}
.nk-ibx-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}
.nk-ibx-menu-item .icon {
    font-size: 1.25rem;
    line-height: 1.5rem;
    width: 2rem;
    color: #8094ae;
}
.nk-ibx-menu-item .badge {
    margin-left: auto;
    min-width: 2.25rem;
    justify-content: center;
}
.active .nk-ibx-menu-item .icon {
    color: #6576ff;
}
.nk-ibx-menu-text {
    font-size: 0.875rem;
    color: #526484;
    font-weight: 500;
    line-height: 1.5rem;
}
.active .nk-ibx-menu-text {
    color: #6576ff;
}
.nk-ibx-label > li, .nk-ibx-contact > li {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 4px;
    margin: 2px 0;
    transition: background-color 0.3s;
}
.nk-ibx-label > li > a, .nk-ibx-contact > li > a {
    display: flex;
    padding: 0.5rem 0.75rem;
    flex-grow: 1;
}
.nk-ibx-label > li .dropdown, .nk-ibx-contact > li .dropdown {
    opacity: 0;
}
.nk-ibx-label > li .dropdown > a, .nk-ibx-contact > li .dropdown > a {
    color: #526484;
    padding: 0.6875rem;
}
.nk-ibx-label > li:hover, .nk-ibx-contact > li:hover {
    background: #f5f6fa;
}
.nk-ibx-label > li:hover .dropdown, .nk-ibx-contact > li:hover .dropdown {
    opacity: 1;
}
.nk-ibx-label > li.active, .nk-ibx-contact > li.active {
    background: #c4cefe;
}
.nk-ibx-label-text {
    line-height: 1;
    margin-left: 1rem;
    font-size: 0.875rem;
    color: #526484;
    font-weight: 500;
}
.nk-ibx-menu, .nk-ibx-label, .nk-ibx-contact {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.nk-ibx-menu {
    padding-top: 0.75rem;
}
.nk-ibx-contact {
    padding-bottom: 1.75rem;
}
.nk-ibx-status {
    background: #f5f6fa;
    padding: 1.5rem 1.5rem;
    margin-top: auto;
}
.nk-ibx-status-info {
    margin-bottom: 0.5rem;
}
.nk-ibx-status-info .icon {
    width: 1.25rem;
    display: inline-block;
}
.nk-ibx-body {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 1;
}
.nk-ibx-list {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    height: 100%;
    overflow: auto;
}
.nk-ibx-item {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s;
    cursor: pointer;
}
.nk-ibx-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.nk-ibx-item:not(.no-hover):hover, .nk-ibx-item.active {
    background: #f5f6fa;
}
.nk-ibx-item.is-unread {
    background: rgba(245, 246, 250, 0.6);
}
.nk-ibx-item-elem {
    padding: 0 8px;
    flex-shrink: 0;
}
.nk-ibx-item-elem:first-child {
    padding-left: 0;
}
.nk-ibx-item-check {
    width: 28px;
    display: inline-flex;
}
.nk-ibx-item-fluid {
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.nk-ibx-item-user .user-name {
    max-width: calc(100% - 50px);
}
.nk-ibx-item-user .user-name .lead-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 400;
}
.is-unread .nk-ibx-item-user .user-name .lead-text {
    font-weight: 500;
}
.nk-ibx-item-count {
    width: 3.25rem;
}
.nk-ibx-item-time {
    width: 80px;
    text-align: right;
}
.nk-ibx-item-attach {
    width: 2.25rem;
    text-align: center;
}
.nk-ibx-item-star .asterisk {
    padding: 0 0.25rem;
}
.nk-ibx-item-star .asterisk a {
    display: flex;
}
.nk-ibx-item-star .asterisk .icon {
    line-height: 1;
    font-size: 1.125rem;
}
.nk-ibx-item-tools {
    padding-right: 0;
    margin-left: auto;
    text-align: right;
}
.nk-ibx-item-check, .nk-ibx-item-star, .nk-ibx-item-attach {
    position: relative;
    z-index: 2;
}
.nk-ibx-item-tools {
    position: relative;
}
.nk-ibx-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.nk-ibx-link + .nk-ibx-item-elem {
    padding-left: 0;
}
.nk-ibx-view {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.nk-ibx-view.show-ibx {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.nk-ibx-reply-head {
    padding: 1.5rem 1.25rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.nk-ibx-reply-head .title {
    margin-bottom: 0.75rem;
}
.nk-ibx-reply-header {
    margin-right: -0.5rem;
}
.nk-ibx-reply-item {
    position: relative;
}
.nk-ibx-reply-item > div:not(.nk-reply-header) {
    margin-left: 0;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}
.nk-ibx-reply-item:not(:last-child):after {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    bottom: 1rem;
    content: "";
    background: #e5e9f2;
}

@media (min-width: 576px) {
    .nk-ibx-item, .nk-ibx-head {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
    .nk-ibx-head .search-wrap {
        padding: 0 2.375rem 0 2rem;
    }
    .nk-ibx-reply-head {
        padding: 2em 2.25rem 0;
    }
    .nk-ibx-reply-item {
        padding-bottom: 2.75rem;
    }
    .nk-ibx-reply-item > div:not(.nk-reply-header) {
        margin-left: 56px;
    }
    .nk-ibx-reply-item:not(:last-child):after {
        bottom: 1.375rem;
        left: 2.25rem;
        right: 2.25rem;
    }
    .nk-ibx-reply-quick-btns, .nk-ibx-reply-form {
        margin-left: 5.75rem;
    }
}
@media (min-width: 768px) {
    .nk-ibx-item-user {
        width: 180px;
    }
}
@media (min-width: 992px) {
    .nk-ibx-aside {
        position: static;
        transform: none;
        transition: none;
        height: calc(100vh - 228px);
    }
    .nk-ibx-menu, .nk-ibx-label, .nk-ibx-contact {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .nk-ibx-menu {
        padding-top: 1rem;
    }
    .nk-ibx-contact {
        padding-bottom: 1rem;
    }
    .nk-ibx-nav-head {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
    .nk-ibx-item {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
    .nk-ibx-head {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .nk-ibx-head .search-wrap {
        padding: 0 2.25rem 0 1.5rem;
    }
    .nk-ibx-body {
        max-width: calc(100% - 260px);
    }
    .nk-ibx-reply-quick-btns, .nk-ibx-reply-form {
        margin-left: 5.25rem;
    }
    .nk-ibx-reply-item, .nk-ibx-reply-head {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
}
@media (min-width: 1200px) {
    .nk-ibx-aside {
        width: 300px;
    }
    .nk-ibx-item-user {
        width: 200px;
    }
    .nk-ibx-item-time {
        margin-right: 2rem;
    }
}
@media (max-width: 1199.98px) {
    .nk-ibx-item-attach {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .nk-ibx-item {
        flex-wrap: wrap;
    }
    .nk-ibx-item-elem {
        padding: 0 4px;
    }
    .nk-ibx-item-fluid {
        padding-left: 32px;
        padding-right: 48px;
        margin-top: 6px;
        width: calc(100% - 2.5rem);
    }
    .nk-ibx-item-fluid .heading {
        display: block;
    }
    .nk-ibx-item-count, .nk-ibx-item-attach {
        display: none;
    }
    .nk-ibx-item-user {
        flex-grow: 1;
    }
    .nk-ibx-item-user .user-avatar {
        height: 28px;
        width: 28px;
        font-size: 12px;
    }
    .nk-ibx-item-time {
        position: absolute;
        right: 32px;
        top: 19px;
    }
    .nk-ibx-item-tools {
        position: absolute;
        text-align: right;
        right: 28px;
        bottom: 18px;
    }
    .nk-ibx-item-star {
        position: absolute;
        left: 28px;
        top: 50px;
    }
    .nk-ibx-context-badges {
        display: none;
    }
    .ibx-actions-hidden {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .nk-ibx-item-star {
        left: 12px;
    }
    .nk-ibx-item-time {
        right: 12px;
    }
    .nk-ibx-item-tools {
        right: 8px;
    }
    .nk-ibx-reply-head .title {
        font-size: 1.125rem;
    }
    .nk-ibx-reply .btn-icon.btn-trigger, .nk-ibx-reply .dt-buttons .btn-trigger.btn-secondary, .dt-buttons .nk-ibx-reply .btn-trigger.btn-secondary {
        padding-top: 0.3125rem;
        padding-bottom: 0.3125rem;
    }
    .nk-ibx-reply .btn-icon.btn-trigger .icon, .nk-ibx-reply .dt-buttons .btn-trigger.btn-secondary .icon, .dt-buttons .nk-ibx-reply .btn-trigger.btn-secondary .icon {
        width: 1.875rem;
    }
}
@media (max-width: 359px) {
    .nk-ibx-head .btn-icon.btn-trigger, .nk-ibx-head .dt-buttons .btn-trigger.btn-secondary, .dt-buttons .nk-ibx-head .btn-trigger.btn-secondary {
        padding-top: 0.3125rem;
        padding-bottom: 0.3125rem;
    }
    .nk-ibx-head .btn-icon.btn-trigger .icon, .nk-ibx-head .dt-buttons .btn-trigger.btn-secondary .icon, .dt-buttons .nk-ibx-head .btn-trigger.btn-secondary .icon {
        width: 1.875rem;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .nk-ibx-aside {
        width: 320px;
    }
    .nk-ibx-menu, .nk-ibx-label, .nk-ibx-contact {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .nk-ibx-nav-head, .nk-ibx-status {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
}
.nk-fmg {
    position: relative;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.4);
}
.nk-fmg-aside {
    position: fixed;
    width: 260px;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    background: #fff;
    flex-shrink: 0;
    z-index: 99;
    top: 65px;
    left: 0;
    transform: translateX(-100%);
    border-right: 1px solid #e5e9f2;
    transition: transform 0.4s linear;
    min-height: calc(100vh - 65px);
    max-height: calc(100vh - 65px);
    overflow-y: auto;
}
.nk-fmg-aside + .toggle-overlay {
    z-index: 90;
}
.nk-fmg-aside.content-active {
    transform: none;
}
.nk-fmg-aside .simplebar-content {
    height: 100%;
}
.nk-fmg-aside-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.nk-fmg-aside-top {
    margin-bottom: 30px;
}
.nk-fmg-menu {
    padding: 1rem;
}
.nk-fmg-menu li {
    margin: 2px 0;
}
.nk-fmg-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}
.nk-fmg-menu-item:hover {
    background: #f5f6fa;
    border-radius: 3px;
}
.active > .nk-fmg-menu-item {
    background: #eff1ff;
    border-radius: 3px;
}
.nk-fmg-menu-item .icon {
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-top: -2px;
    width: 2rem;
    color: #8094ae;
}
.nk-fmg-menu-item .badge {
    margin-left: auto;
    min-width: 2.25rem;
}
.active > .nk-fmg-menu-item .icon {
    color: #6576ff;
}
.nk-fmg-menu-text {
    font-size: 0.875rem;
    color: #526484;
    font-weight: 500;
    line-height: 1.5rem;
}
.active > .nk-fmg-menu-item > .nk-fmg-menu-text {
    color: #6576ff;
}
.nk-fmg-menu li ul {
    margin-top: -0.125rem;
    margin-bottom: 0.5rem;
    padding-left: 2.75rem;
}
.nk-fmg-menu li ul ul {
    padding-left: 0.75rem;
    border-left: 1px solid #e5e9f2;
}
.nk-fmg-menu li ul .nk-fmg-menu-item {
    padding: 0.125rem 0;
}
.nk-fmg-menu li ul .nk-fmg-menu-item:hover, .nk-fmg-menu li ul .nk-fmg-menu-item.active {
    background: transparent;
}
.nk-fmg-menu li ul .nk-fmg-menu-item:hover span, .nk-fmg-menu li ul .nk-fmg-menu-item.active span {
    color: #6576ff;
}
.nk-fmg-menu li ul .nk-fmg-menu-text {
    font-size: 90%;
    line-height: 1.375rem;
}
.nk-fmg-status {
    padding: 1.75rem;
}
.nk-fmg-status-title {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    color: #526484;
    margin-bottom: 1rem;
}
.nk-fmg-status-title .icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}
.nk-fmg-status-info {
    font-size: 12px;
    font-weight: 500;
    color: #8094ae;
    margin-top: 1rem;
}
.nk-fmg-body {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    flex-grow: 1;
    flex-shrink: 0;
}
.nk-fmg-body-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #dbdfea;
    background-color: #fff;
    z-index: 9;
    position: relative;
    top: 0;
    border-top-right-radius: 4px;
}
.nk-fmg-body-content {
    padding: 1.125rem 1.25rem;
    height: 100%;
    max-height: 100%;
    overflow: auto;
}
.nk-fmg-body .simplebar-content {
    min-height: 470px;
}
.nk-fmg-search {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.nk-fmg-filter {
    margin-bottom: 1.25rem;
}
.nk-fmg-filter .form-label {
    font-weight: 500;
    font-size: 13px;
    color: #8094ae;
}
.nk-fmg-filter .form-group {
    margin-bottom: 1rem;
}
.nk-fmg-switch {
    background-color: transparent;
    border-top: 1px solid #e5e9f2;
}
.nk-fmg-switch > div {
    width: 100%;
}
.nk-fmg-switch .dropdown-toggle {
    padding: 1.25rem 1.75rem;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}
.nk-fmg-switch .dropdown-toggle:after {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #526484;
}
.nk-fmg-listing {
    min-height: 380px;
}
.nk-fmg-listing.is-scrollable {
    min-height: auto;
    max-height: 298px;
}

@media (min-width: 576px) {
    .nk-fmg-body-content {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    .nk-fmg-aside-top {
        margin-bottom: 100px;
    }
}
@media (min-width: 992px) {
    .nk-fmg {
        padding-left: 260px;
    }
    .nk-fmg-aside {
        transform: none;
        transition: none;
        width: 260px;
        position: absolute;
        top: 0;
        min-height: 100%;
        max-height: 100%;
        left: 0;
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }
    .nk-fmg-aside-top {
        flex-grow: 0;
    }
    .nk-fmg-body-head {
        padding: 0.75rem 1.75rem;
        z-index: 9;
    }
    .nk-fmg-body-content {
        padding: 1.75rem;
    }
}
@media (min-width: 1200px) {
    .nk-fmg {
        padding-left: 220px;
    }
    .nk-fmg-filter.toggle-expand-content {
        display: block !important;
    }
    .nk-fmg-aside {
        width: 220px;
    }
}
@media (min-width: 992px) and (max-width: 1360px) {
    .nk-fmg {
        padding-left: 220px;
    }
    .nk-fmg-aside {
        width: 220px;
    }
}
@media (min-width: 576px) and (max-width: 991.98px) {
    .nk-fmg-aside {
        width: 320px;
    }
    .nk-fmg-body-head, .nk-fmg-body-content, .nk-fmg-status, .nk-fmg-switch .dropdown-toggle {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
    .nk-fmg-menu {
        padding: 1rem 1.75rem;
    }
}
.nk-file .tb-sub {
    font-size: 12px;
    color: #8094ae;
}
.nk-file .tb-head {
    font-weight: 500;
    font-size: 13px;
    color: #8094ae;
}
.nk-file-info:hover .nk-file-name .asterisk a, .nk-file-info .nk-file-name .asterisk a.active {
    opacity: 1;
}
.nk-file-icon {
    margin-right: 8px;
    flex-shrink: 0;
}
.nk-file-icon-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.nk-file-icon-type {
    width: 32px;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    margin: auto;
}
.nk-file-title {
    display: flex;
    align-items: center;
}
.nk-file-title .breadcrumb {
    padding-top: 0.25rem;
    padding-bottom: 0;
}
.nk-file-name {
    font-weight: 500;
    color: #364a63;
    position: relative;
    line-height: 1.4;
}
.nk-file-name-text {
    padding-right: 1.5rem;
    display: inline-block;
}
.nk-file-name-text .title {
    transition: color 0.3s;
    display: inline-block;
    text-decoration: none;
    word-break: break-word;
}
.nk-file-name-text a.title {
    color: #364a63;
}
.nk-file-name-text a.title:hover {
    color: #6576ff;
}
.nk-file-name-sub {
    font-size: 12px;
    color: #8094ae;
}
.nk-file-name .asterisk {
    position: absolute;
    display: inline-flex;
    margin-left: 0.5rem;
    transition: 0.3s opacity;
    margin-top: -1px;
    top: 50%;
    transform: translateY(-50%);
}
.nk-file-name .asterisk a {
    opacity: 0;
}
.nk-file-name .asterisk .icon {
    font-size: 1.125rem;
    color: #6576ff;
}
.nk-file-desc {
    display: flex;
    align-items: center;
    margin: 0 -0.375rem;
}
.nk-file-desc li {
    position: relative;
    padding: 0 0.375rem;
    font-size: 12px;
    color: #8094ae;
}
.nk-file-desc li:not(:first-child):before {
    content: "\eca1";
    font-family: "Nioicon";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    font-size: 11px;
    line-height: 10px;
    opacity: 0.8;
}
.nk-file-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.nk-file-link:hover .title {
    color: #6576ff;
}
.nk-file-info > .nk-file-link {
    padding: 0.75rem 0;
}
.is-compact .nk-file-info > .nk-file-link {
    padding: 0.375rem 0;
}
.nk-file-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    border-bottom: 1px solid #e5e9f2;
}
.nk-file-share-field {
    padding: 0.5rem 1.25rem;
}
.nk-file-share-field:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.nk-file-share-field .form-control, .nk-file-share-field div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .nk-file-share-field input, .nk-file-share-field .dual-listbox .dual-listbox__search, .dual-listbox .nk-file-share-field .dual-listbox__search {
    font-size: 0.875rem;
}
.nk-file-share-field textarea.form-control, .nk-file-share-field .dual-listbox textarea.dual-listbox__search, .dual-listbox .nk-file-share-field textarea.dual-listbox__search {
    min-height: 78px;
}
.nk-file-share-field textarea.form-control.ex-large, .nk-file-share-field .dual-listbox textarea.ex-large.dual-listbox__search, .dual-listbox .nk-file-share-field textarea.ex-large.dual-listbox__search {
    min-height: 160px;
}
.nk-file-share-input {
    display: flex;
}
.nk-file-share-input .label {
    margin: 0.3rem 0.5rem 0.3rem 0;
    width: 1.25rem;
    color: #8094ae;
}
.nk-file-share-input-group {
    width: 100%;
}
.nk-file-share-group {
    position: relative;
    padding: 1rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.nk-file-share-nav {
    flex-shrink: 0;
}
.nk-file-details-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0.25rem 0;
}
.nk-file-details-col {
    font-size: 13px;
}
.nk-file-details-col:first-child {
    color: #8094ae;
    width: 100%;
}
.nk-file-details-col:last-child {
    color: #526484;
}
.nk-file-details-col .breadcrumb {
    padding: 0;
}

@media (min-width: 420px) {
    .nk-file-details-row {
        flex-wrap: nowrap;
        padding: 0.375rem 0;
    }
    .nk-file-details-col:first-child {
        width: 100px;
        flex-shrink: 0;
    }
}
@media (min-width: 576px) {
    .nk-file-share-field textarea.form-control.ex-large, .nk-file-share-field .dual-listbox textarea.ex-large.dual-listbox__search, .dual-listbox .nk-file-share-field textarea.ex-large.dual-listbox__search {
        min-height: 278px;
    }
}
.nk-files .nk-file .hideable {
    opacity: 0;
    transition: opacity 0.3s;
}
.nk-files .nk-file:hover .hideable {
    opacity: 1;
}
.nk-files .nk-file-item {
    display: table-row;
}
.nk-files .nk-file-item > div {
    position: relative;
    display: table-cell;
    padding: 0.5rem;
    vertical-align: middle;
}
.nk-files .nk-file-actions {
    width: 60px;
    text-align: center;
}
.nk-files-head {
    display: table-header-group;
}
.nk-files-head .nk-file-item > div {
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 0.25rem;
}
.nk-files-head .nk-file-item > div:first-child {
    padding-left: 0;
}
.nk-files-head .nk-file-item > div:last-child {
    padding-right: 0.5rem;
}
.nk-files-head .dropdown-menu-xs {
    min-width: 140px;
    max-width: 140px;
}
.nk-files-list {
    display: table-row-group;
}
.nk-files-view-list {
    display: table;
    width: 100%;
}
.nk-files-view-list .nk-file {
    display: table-row;
}
.nk-files-view-list .nk-file.selected {
    background: #e3e7fe;
}
.nk-files-view-list .nk-file.selected > div {
    background: transparent;
}
.nk-files-view-list .nk-file > div {
    padding: 0.5rem 0.375rem;
    border-bottom: 1px solid #dbdfea;
    height: 4rem;
    background-color: #fff;
}
.nk-files-view-list .nk-file > div:first-child {
    border-left: 1px solid #dbdfea;
    padding-left: 1.25rem;
}
.nk-files-view-list .nk-file > div:last-child {
    border-right: 1px solid #dbdfea;
}
.nk-files-view-list .nk-file > div.nk-file-info {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}
.nk-files-view-list .nk-file:first-child > div {
    border-top: 1px solid #dbdfea;
}
.nk-files-view-list .nk-file:first-child > div:first-child {
    border-top-left-radius: 4px;
}
.nk-files-view-list .nk-file:first-child > div:last-child {
    border-top-right-radius: 4px;
}
.nk-files-view-list .nk-file:last-child > div:first-child {
    border-bottom-left-radius: 4px;
}
.nk-files-view-list .nk-file:last-child > div:last-child {
    border-bottom-right-radius: 4px;
}
.nk-files-view-list .nk-file .custom-checkbox {
    margin-right: 1rem;
}
.nk-files-view-list .nk-file-members .tb-shared {
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.nk-files-view-list .nk-file-name-text a.title {
    padding: 1rem 0 0.875rem;
}
.nk-files-view-list .nk-file-icon + .nk-file-name a.title {
    padding-left: 40px;
    margin-left: -40px;
}
.nk-files-view-list.is-compact .nk-file > div {
    height: 3rem;
}
.nk-files-view-grid .nk-files-head, .nk-files-view-group .nk-files-head {
    margin-bottom: 0.25rem;
    width: 100%;
    display: flex;
}
.nk-files-view-grid .nk-files-head .nk-file-item, .nk-files-view-group .nk-files-head .nk-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}
.nk-files-view-grid .nk-files-head .nk-file-item > div:not(.nk-file-info):not(.nk-file-actions), .nk-files-view-group .nk-files-head .nk-file-item > div:not(.nk-file-info):not(.nk-file-actions) {
    display: none;
}
.nk-files-view-grid .nk-files-head .nk-file-actions, .nk-files-view-group .nk-files-head .nk-file-actions {
    width: 30px;
    padding: 0 !important;
    margin-right: -4px;
}
.nk-files-view-grid .nk-files-list, .nk-files-view-group .nk-files-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}
.nk-files-view-grid .nk-files-list .nk-file-actions, .nk-files-view-group .nk-files-list .nk-file-actions {
    position: absolute;
    border: 0 none;
    background: transparent;
    width: 46px;
    right: 4px;
    top: 10px;
}
.nk-files-view-grid .nk-files-list .custom-control, .nk-files-view-group .nk-files-list .custom-control {
    position: absolute;
}
.nk-files-view-grid .nk-file, .nk-files-view-group .nk-file {
    display: flex;
    position: relative;
    margin: 8px;
    background: #fff;
    border: 1px solid #dbdfea;
    border-radius: 4px;
}
.nk-files-view-grid .nk-file .nk-file-members, .nk-files-view-group .nk-file .nk-file-members {
    display: none;
}
.nk-files-view-grid .nk-file {
    display: block;
    position: relative;
    width: calc(50% - 16px);
    text-align: center;
    padding: 0.5rem 0.25rem;
}
.nk-files-view-grid .nk-file > div {
    display: block;
    padding: 0;
}
.nk-files-view-grid .nk-file-title {
    display: flex;
    flex-direction: column;
}
.nk-files-view-grid .nk-file-icon {
    display: block;
    margin: 0;
    width: 100%;
}
.nk-files-view-grid .nk-file-icon-type {
    width: 72px;
    padding: 0.5rem 0;
}
.nk-files-view-grid .nk-file-name .title {
    padding: 0.5rem 0.125rem 0.5rem;
}
.nk-files-view-grid .nk-file-name-text {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.nk-files-view-grid .nk-file-desc {
    padding: 0 0.25rem 0.75rem;
    margin-top: -0.125rem;
    justify-content: center;
}
.nk-files-view-grid .nk-file-desc .members {
    display: none;
}
.nk-files-view-grid .nk-file-info > .nk-file-link {
    padding: 0.5rem 0;
}
.nk-files-view-grid .nk-file .nk-file-members {
    display: none;
}
.nk-files-view-grid .nk-file .nk-file-meta {
    padding-bottom: 0.5rem;
}
.nk-files-view-grid .nk-file .custom-control {
    top: 0.75rem;
    left: 1rem;
}
.nk-files-view-group .nk-file {
    position: relative;
    padding: 0.5rem 0.5rem;
    width: 100%;
}
.nk-files-view-group .nk-file > div {
    display: block;
    width: 100%;
    padding-right: 2.5rem;
}
.nk-files-view-group .nk-file-desc {
    padding: 0.25rem 0.125rem 0;
}
.nk-files-view-group .nk-file-name-text a.title {
    padding: 0.125rem 0;
}
.nk-files-view-group .nk-file-icon + .nk-file-name a.title {
    padding-left: 40px;
    margin-left: -40px;
}
.nk-files-view-group .nk-file .nk-file-actions {
    right: 2px;
    top: 4px;
}
.nk-files-view-group .nk-file .custom-control {
    right: 0.5rem;
    bottom: 0.5rem;
}
.nk-files-view-group .nk-file .nk-file-meta {
    display: none;
}
.nk-files-group > .title {
    border-top: 1px solid #e5e9f2;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1rem 0;
    margin: 0;
}
.nk-files-group + .nk-files-group {
    margin-top: 3rem;
}

@media (max-width: 767.98px) {
    .nk-file-name-text {
        font-size: 13px;
    }
    .nk-files-view-grid .nk-file-name-text {
        font-size: 12px;
    }
}
@media (max-width: 991.98px) {
    .nk-fmg-body .nk-block-tools .btn-icon.btn-trigger .icon, .nk-fmg-body .nk-block-tools .dt-buttons .btn-trigger.btn-secondary .icon, .dt-buttons .nk-fmg-body .nk-block-tools .btn-trigger.btn-secondary .icon {
        font-size: 1.25rem;
    }
}
@media (min-width: 576px) {
    .nk-files-view-grid .nk-file {
        width: calc(33.33% - 16px);
    }
    .nk-files-view-group .nk-file {
        width: calc(100% - 16px);
    }
}
@media (min-width: 660px) {
    .nk-files-view-group .nk-file {
        width: calc(50% - 16px);
    }
}
@media (min-width: 1200px) {
    .nk-files-view-grid .nk-file {
        width: calc(25% - 16px);
    }
    .nk-files-view-group .nk-file {
        width: calc(50% - 16px);
    }
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
    .nk-files-view-list .nk-file-members, .nk-files-view-list .nk-file-size {
        display: none !important;
    }
}
@media (max-width: 599px) {
    .nk-files-view-list .nk-file-icon-type {
        width: 24px;
    }
    .nk-files-view-list .nk-file-meta, .nk-files-view-list .nk-file-date, .nk-files-view-list .nk-file-size {
        display: none !important;
    }
    .nk-files-view-list .nk-file .custom-checkbox {
        margin-right: 0.75rem;
    }
}
@media (max-width: 359px) {
    .nk-files-view-grid .nk-file {
        width: 100%;
    }
}
.nk-upload-form {
    margin-bottom: 2.25rem;
}
.nk-upload-list > .title {
    font-size: 0.875rem;
    padding-bottom: 1rem;
}
.nk-upload-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #e5e9f2;
    margin: 0.5rem 0;
}
.nk-upload-icon {
    width: 48px;
    margin-right: 0.25rem;
    flex-shrink: 0;
}
.nk-upload-info {
    font-weight: 500;
    color: #364a63;
    flex-grow: 1;
    padding-right: 0.75rem;
}
.nk-upload-title {
    display: flex;
    align-items: flex-end;
}
.nk-upload-title .title {
    font-size: 0.875rem;
}
.nk-upload-title .meta {
    font-size: 12px;
    margin-left: auto;
    color: #8094ae;
    font-weight: 400;
}
.nk-upload-size {
    font-size: 12px;
    color: #8094ae;
    font-weight: 400;
}
.nk-upload-progress {
    margin: 0.375rem 0 0.25rem;
}
.nk-upload-action {
    margin-left: auto;
}

.add-opt:hover .sub-text, .add-opt:hover .icon {
    color: #6576ff;
}

.add-opt-icon .icon-circle, .contacts-add-link .icon-circle, .chat-members-link .icon-circle, .chat-option-link .icon-circle {
    height: 32px;
    width: 32px;
    font-size: 1rem;
}
.add-opt-icon .icon + span, .contacts-add-link .icon + span, .chat-members-link .icon + span, .chat-option-link .icon + span, .add-opt-icon .icon + div, .contacts-add-link .icon + div, .chat-members-link .icon + div, .chat-option-link .icon + div {
    margin-left: 0.75rem;
}

.chat-item {
    position: relative;
    border-radius: 4px;
    transition: background-color 0.3s;
}
.chat-item:hover {
    background-color: #ebeef2;
}
.chats-dropdown .chat-item:hover {
    background-color: #f5f6fa;
}
.chat-item:hover .chat-actions {
    opacity: 1;
    pointer-events: initial;
    transition: opacity 0.5s;
}
.chat-item.current {
    background-color: #f5f6fa;
}
.chat-item.current:hover {
    background-color: #ebeef2;
}
.chat-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem;
    cursor: pointer;
}
.chat-media {
    height: 44px;
    width: 44px;
}
.chat-media + .chat-info {
    margin-left: 1rem;
}
.chat-info {
    width: calc(100% - 3.75rem);
}
.chat-from {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-from .name {
    font-size: 0.9375rem;
    margin-bottom: 0;
    font-weight: 500;
    color: #526484;
}
.is-unread .chat-from .name {
    font-weight: 700;
    color: #364a63;
}
.chat-from .time {
    font-size: 12px;
    color: #8094ae;
}
.chat-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-context .text {
    width: calc(100% - 2.5rem);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 13px;
    color: #8094ae;
}
.is-unread .chat-context .text {
    font-weight: 500;
    color: #526484;
}
.chat-context .status {
    display: flex;
    color: rgba(128, 148, 174, 0.8);
}
.is-unread .chat-context .status {
    color: #6576ff;
}
.chat-context .status.seen {
    color: #6576ff;
}
.chat-actions {
    background-color: #ebeef2;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.75rem;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 3rem;
}
.chat-profile-group {
    border-top: 1px solid #e5e9f2;
    padding: 0.25rem 0;
}
.chat-profile-head {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-profile-head .title {
    margin-bottom: 0;
}
.chat-profile-head .indicator-icon {
    display: inline-flex;
}
.chat-profile-head.collapsed .indicator-icon {
    transform: rotate(-180deg);
}
.chat-profile-body-inner {
    padding: 0 1.5rem 1.5rem;
}
.chat-profile-options {
    margin: -0.25rem;
}
.chat-profile-options li {
    padding: 0.25rem;
}
.chat-profile-settings {
    margin: -0.5rem;
}
.chat-profile-settings li {
    padding: 0.5rem;
}
.chat-profile-settings .custom-control-sm .custom-control-label {
    padding-left: 0.25rem;
    font-size: 13px;
    font-weight: 500;
    color: #526484;
}
.chat-profile-media {
    display: flex;
    margin: 0 -0.25rem;
}
.chat-profile-media li {
    width: 33.33%;
    padding: 0.25rem;
}
.chat-profile-media li a {
    display: inline-block;
}
.chat-profile-media li img {
    border-radius: 4px;
}
.chat-option-link {
    display: flex;
    align-items: center;
}
.chat-option-link .lead-text {
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s;
    color: #526484;
}
.chat-option-link:hover .lead-text {
    color: #1c2b46;
}
.chat-members {
    margin: -0.375rem -0.5rem;
}
.chat-members li {
    position: relative;
}
.chat-members-link {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.5rem;
}
.chat-members .user-card {
    position: relative;
    padding: 0.375rem 0.5rem;
    border-radius: 3px;
    transition: background-color 0.3s;
}
.chat-members .user-card > a {
    width: 100%;
    display: flex;
    align-items: center;
}
.chat-members .user-card:hover {
    background-color: #ebeef2;
}
.chat-members .user-card:hover .user-actions {
    opacity: 1;
    pointer-events: initial;
    transition: opacity 0.5s;
}
.chat-members .user-role {
    margin-left: auto;
    font-size: 12px;
    color: #8094ae;
}
.chat-members .user-actions {
    position: absolute;
    top: 0;
    right: 0.25rem;
    bottom: 0;
    width: 3rem;
    background-color: #ebeef2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
}

.chat {
    display: flex;
    align-items: flex-end;
    margin: -4px;
}
.chat > div {
    padding: 4px;
}
.chat + .chat {
    padding-top: 0.5rem;
}
.chat-avatar {
    margin-bottom: 1.4rem;
}
.chat-avatar.no-meta {
    margin-bottom: 0;
}
.chat-bubble {
    display: flex;
    align-items: center;
    padding: 0.125rem 0;
}
.chat-bubble:hover .chat-msg-more {
    opacity: 1;
}
.chat-bubbles .attach-files {
    margin-top: 0.75rem;
}
.chat-msg {
    background-color: #fff;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}
.chat-msg-more {
    display: flex;
    align-items: center;
    margin: 0 0.75rem;
    opacity: 0;
    flex-shrink: 0;
    transition: all 0.3s;
}
.chat-msg-more > li {
    padding: 0.25rem;
}
.chat-msg.is-light {
    background-color: #e5e9f2;
    color: #526484;
}
.chat-msg.is-theme {
    background-color: #6576ff;
    color: #fff;
}
.chat-meta {
    display: flex;
    align-items: center;
    margin: 0.25rem -0.375rem 0;
}
.chat-meta li {
    position: relative;
    padding: 0 0.375rem;
    font-size: 12px;
    color: #8094ae;
}
.chat-meta li:not(:first-child):before {
    content: "\eca1";
    font-family: "Nioicon";
    position: absolute;
    top: 50%;
    font-size: 11px;
    line-height: 10px;
    left: 0;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}
.chat-sap {
    overflow: hidden;
    text-align: center;
    padding: 1rem 0;
}
.chat-sap-meta {
    position: relative;
    display: inline-block;
    padding: 0 0.75rem;
    color: #8094ae;
    font-size: 12px;
    line-height: 1.4;
}
.chat-sap-meta:before, .chat-sap-meta:after {
    position: absolute;
    height: 1px;
    background: #dbdfea;
    content: "";
    width: 100vw;
    top: 50%;
}
.chat-sap-meta:before {
    right: 100%;
}
.chat-sap-meta:after {
    left: 100%;
}
.chat.is-you .chat-bubbles .attach-files {
    border-color: #fff;
    overflow: hidden;
}
.chat.is-you .chat-bubbles .attach-files, .chat.is-you .chat-bubbles .attach-foot {
    background-color: #fff;
}
.chat.is-you .chat-bubble:last-child .chat-msg {
    border-bottom-left-radius: 0;
}
.chat.is-you .chat-bubble:not(:first-child) .chat-msg {
    border-top-left-radius: 4px;
}
.chat.is-you .chat-bubble:not(:last-child) .chat-msg {
    border-bottom-left-radius: 4px;
}
.chat.is-me {
    justify-content: flex-end;
}
.chat.is-me .chat-msg {
    background-color: #6576ff;
    color: #fff;
}
.chat.is-me .chat-meta {
    justify-content: flex-end;
}
.chat.is-me .chat-bubble {
    flex-direction: row-reverse;
}
.chat.is-me .chat-bubbles .attach-files {
    border-color: #c4cefe;
    overflow: hidden;
}
.chat.is-me .chat-bubbles .attach-files, .chat.is-me .chat-bubbles .attach-foot {
    background-color: #fff;
}
.chat.is-me .chat-bubble:last-child .chat-msg {
    border-bottom-right-radius: 0;
}
.chat.is-me .chat-bubble:not(:first-child) .chat-msg {
    border-top-right-radius: 4px;
}
.chat.is-me .chat-bubble:not(:last-child) .chat-msg {
    border-bottom-right-radius: 4px;
}
.chat-upload-option {
    display: none;
    position: absolute;
    left: 100%;
    padding: 0.5rem;
    background-color: #fff;
}
.chat-upload-option.expanded {
    display: block;
}
.chat-upload-option ul {
    display: flex;
    align-items: center;
}
.chat-upload-option a {
    color: #6576ff;
    font-size: 1.25rem;
    height: 36px;
    width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.chat-upload-option a:hover {
    color: #3c52ff;
}

.fav-list {
    display: flex;
    margin: -0.375rem;
    overflow-x: auto;
}
.fav-list li {
    padding: 0.375rem;
}
.fav-list a:hover > .user-avatar:after {
    opacity: 1;
}
.fav-list .user-avatar {
    height: 44px;
    width: 44px;
}
.fav-list .user-avatar:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    background: #e5e9f2;
    transform: scale(1.15);
    opacity: 0;
    border-radius: 50%;
    z-index: -1;
    transition: opacity 0.3s;
}

@media (min-width: 768px) {
    .fav-list {
        flex-wrap: wrap;
    }
}
@media (max-width: 859px) {
    .fav-list {
        margin: -0.375rem 0;
    }
    .fav-list li:first-child {
        padding-left: 0;
    }
    .fav-list li:last-child {
        padding-right: 0;
    }
}
.channel-list li {
    margin: 0.125rem -0.5rem;
}
.channel-list a {
    padding: 0.375rem 0.5rem;
    display: block;
    transition: all 0.3s;
    font-weight: 500;
    color: #526484;
    border-radius: 3px;
}
.channel-list a:hover, .channel-list a.active {
    color: #6576ff;
    background: #eff1ff;
}

.contacts-list {
    margin: -0.375rem -0.5rem;
}
.contacts-list + .contacts-list {
    margin-top: 1.75rem;
}
.contacts-list li {
    position: relative;
}
.contacts-list li > .title {
    padding-left: 1.25rem;
    margin-bottom: 0.25rem;
}
.contacts-list .user-card {
    position: relative;
    padding: 0.375rem 0.5rem;
    border-radius: 3px;
    transition: background-color 0.3s;
}
.contacts-list .user-card > a {
    width: 100%;
    display: flex;
    align-items: center;
}
.contacts-list .user-card:hover {
    background-color: #ebeef2;
}
.contacts-list .user-card:hover .user-actions {
    opacity: 1;
    pointer-events: initial;
    transition: opacity 0.4s;
}
.contacts-list .user-meta {
    margin-left: auto;
    font-size: 12px;
    color: #8094ae;
}
.contacts-list .user-actions {
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0.25rem;
    bottom: 0;
    width: 4.5rem;
    background-color: #ebeef2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
}
.contacts-list .user-actions > a {
    padding: 0 0.375rem;
}
.contacts-add-link {
    padding: 0.375rem 0.5rem;
    display: flex;
    align-items: center;
}
.contacts-add-link .lead-text {
    font-weight: 500;
    font-size: 13px;
}

.nk-chat {
    position: relative;
    display: flex;
    overflow: hidden;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    min-height: calc(100vh - (65px + 64px + 64px));
    max-height: calc(100vh - (65px + 64px + 64px));
    background: #fff;
}
.nk-chat-blank {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    background-color: #e5e9f2;
}
.nk-chat-blank-icon {
    margin-bottom: 1.5rem;
}
.nk-chat-aside {
    background: #fff;
    width: 100%;
    overflow: hidden;
    max-height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.nk-chat-aside-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.25rem 0.875rem;
}
.nk-chat-aside-user .title {
    font-size: 1.375rem;
    color: #364a63;
}
.nk-chat-aside-user .user-avatar {
    height: 36px;
    width: 36px;
}
.nk-chat-aside-user .user-avatar + .title {
    margin-left: 1rem;
}
.nk-chat-aside-user .dropdown-toggle:after {
    font-size: 1.125rem;
    color: #8094ae;
    margin-left: 1rem;
}
.nk-chat-aside-tools {
    display: flex;
    align-items: center;
}
.nk-chat-aside-body {
    max-height: 100%;
    height: 100%;
    overflow: auto;
}
.nk-chat-aside-search {
    padding: 0 1.25rem;
    margin-bottom: 1.75rem;
    margin-top: 0.25rem;
}
.nk-chat-aside-search .form-control, .nk-chat-aside-search div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .nk-chat-aside-search input, .nk-chat-aside-search .dual-listbox .dual-listbox__search, .dual-listbox .nk-chat-aside-search .dual-listbox__search {
    background-color: #f5f6fa;
    border-color: #f5f6fa;
}
.nk-chat-aside-search .form-control::placeholder, .nk-chat-aside-search div.dataTables_wrapper div.dataTables_filter input::placeholder, div.dataTables_wrapper div.dataTables_filter .nk-chat-aside-search input::placeholder, .nk-chat-aside-search .dual-listbox .dual-listbox__search::placeholder, .dual-listbox .nk-chat-aside-search .dual-listbox__search::placeholder {
    color: #8094ae;
}
.nk-chat-aside-panel {
    padding: 0 1.25rem 1.75rem;
}
.nk-chat-aside-panel .title {
    margin-bottom: 0.75rem;
}
.nk-chat-list {
    padding: 0 0.5rem;
}
.nk-chat-list .title {
    margin-left: 0.75rem;
}
.nk-chat-body {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: padding 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}
.nk-chat-body.show-chat {
    opacity: 1;
    pointer-events: auto;
}
.nk-chat-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.75rem;
    border-bottom: 1px solid #e5e9f2;
    background-color: #fff;
}
.nk-chat-head-info {
    width: 60%;
}
.nk-chat-head-info .user-avatar + .user-info {
    margin-left: 0.75rem;
}
.nk-chat-head-info .user-info .lead-text {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.nk-chat-head-info, .nk-chat-head-tools {
    display: flex;
    align-items: center;
    margin: -0.125rem;
}
.nk-chat-head-info > li, .nk-chat-head-tools > li {
    padding: 0.125rem;
}
.nk-chat-head-info .btn-icon .icon, .nk-chat-head-info .dt-buttons .btn-secondary .icon, .dt-buttons .nk-chat-head-info .btn-secondary .icon, .nk-chat-head-tools .btn-icon .icon, .nk-chat-head-tools .dt-buttons .btn-secondary .icon, .dt-buttons .nk-chat-head-tools .btn-secondary .icon {
    font-size: 1.25rem;
}
.nk-chat-head-search {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 0 1.75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.5s;
}
.nk-chat-head-search.show-search {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
.nk-chat-panel {
    background-color: rgba(235, 238, 242, 0.7);
    height: 100%;
    max-height: 100%;
    overflow: auto;
    padding: 1.25rem;
}
.nk-chat-editor {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: #fff;
}
.nk-chat-editor-form {
    padding: 0 0.5rem;
    flex-grow: 1;
}
.nk-chat-editor-form .form-control, .nk-chat-editor-form div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .nk-chat-editor-form input, .nk-chat-editor-form .dual-listbox .dual-listbox__search, .dual-listbox .nk-chat-editor-form .dual-listbox__search {
    min-height: 36px;
    padding-top: 0.5rem;
}
.nk-chat-editor-upload, .nk-chat-editor-tools {
    display: flex;
    align-items: center;
}
.nk-chat-editor-upload .btn-icon .icon, .nk-chat-editor-upload .dt-buttons .btn-secondary .icon, .dt-buttons .nk-chat-editor-upload .btn-secondary .icon, .nk-chat-editor-tools .btn-icon .icon, .nk-chat-editor-tools .dt-buttons .btn-secondary .icon, .dt-buttons .nk-chat-editor-tools .btn-secondary .icon {
    font-size: 1.5rem;
}
.nk-chat-editor-upload {
    position: relative;
    z-index: 2;
}
.nk-chat-editor-upload .toggle-opt {
    transition: 0.3s;
}
.nk-chat-editor-upload .toggle-opt.active {
    opacity: 0.7;
    transform: rotate(-45deg);
}
.nk-chat-profile {
    position: absolute;
    top: 0;
    width: 325px;
    height: 100%;
    max-height: 100%;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    background: #fff;
    z-index: 100;
}
.nk-chat-profile-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(16, 25, 36, 0.4);
    z-index: 600;
    z-index: 90;
    animation: overlay-fade-in 0.4s ease 1;
}
.nk-chat-profile.visible {
    transform: none;
}

@media (max-width: 575.98px) {
    .nk-chat {
        border: none;
        border-radius: 4px;
        min-height: calc(100vh - (65px + 85px));
        max-height: calc(100vh - (65px + 85px));
        margin: -20px -18px -24px;
    }
    .nk-chat-head {
        padding: 0.75rem 1.25rem;
    }
    .nk-chat-head-user {
        max-width: calc(100% - 34px);
    }
    .nk-chat-head-user .user-avatar {
        height: 36px;
        width: 36px;
    }
    .nk-chat-head-user .user-info {
        width: calc(100% - 36px - 0.75rem);
    }
}
@media (min-width: 576px) {
    .nk-chat-head-info, .nk-chat-head-tools {
        margin: -0.375rem;
    }
    .nk-chat-head-info > li, .nk-chat-head-tools > li {
        padding: 0.375rem;
    }
}
@media (min-width: 576px) and (max-width: 991px) {
    .nk-chat-aside-head, .nk-chat-aside-search {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
    .nk-chat-aside-panel {
        padding: 0 2.25rem 1.75rem;
    }
    .nk-chat-list {
        padding: 0 1.5rem;
    }
    .nk-chat-head, .nk-chat-panel, .nk-chat-editor {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
    .nk-chat-head-search {
        padding: 0 2.25rem;
    }
}
@media (max-width: 1199.98px) {
    .nk-chat-body.show-chat {
        position: fixed;
        z-index: 2999;
    }
    .nk-chat-head {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}
@media (min-width: 992px) {
    .nk-chat {
        min-height: calc(100vh - (65px + 64px + 96px));
        max-height: calc(100vh - (65px + 64px + 96px));
    }
    .nk-chat-aside-panel, .nk-chat-aside-head, .nk-chat-aside-search {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
    .nk-chat-list {
        padding: 0 1rem;
    }
    .nk-chat-panel {
        padding: 1.25rem 1.75rem;
    }
    .nk-chat-aside {
        width: 325px;
        border-right: 1px solid #e5e9f2;
    }
    .nk-chat-body {
        position: static;
        opacity: 1;
        pointer-events: auto;
    }
    .nk-chat-body-close {
        display: none;
    }
    .chat-profile-head, .chat-profile-body-inner {
        padding-right: 1.75rem;
        padding-left: 1.75rem;
    }
}
@media (min-width: 1200px) {
    .nk-chat-profile {
        border-left: 1px solid #e5e9f2;
    }
}
@media (min-width: 1540px) {
    .nk-chat-aside {
        width: 382px;
    }
    .nk-chat-profile {
        width: 365px;
    }
}
@media (max-width: 359px) {
    .nk-chat-profile {
        width: 280px;
    }
}
.nk-code-preview-box {
    display: block;
    color: #8094ae;
    padding: 0.15rem 1.25rem;
    border-left: 1px solid #e5e9f2;
}

.dashboard-preview {
    height: 200px;
    justify-content: center;
}

.dropdown-preview .dropdown-menu {
    position: static;
    display: block;
}
.dropdown-preview:after {
    display: block;
    clear: both;
    content: "";
}

@media (max-width: 420px) {
    .dropdown-preview .dropdown-menu-xl, .dropdown-preview .dropdown-menu-lg, .dropdown-preview .dropdown-menu-md {
        min-width: 100%;
        max-width: 100%;
    }
}
.prettyprint {
    padding: 1.25rem;
    white-space: pre;
    box-shadow: none !important;
    margin-bottom: 0;
    border-radius: 4px;
    overflow: auto;
}

.card-preview {
    border: 1px solid #dbdfea;
}

.code-block {
    position: relative;
    border: 1px solid #dbdfea;
    padding: 1.25rem;
    background: #fff;
    border-radius: 4px;
}
.code-block .clipboard-init {
    position: absolute;
    top: 12px;
    right: 12px;
}
.card-preview + .code-block {
    margin-top: 28px;
}
.code-block + .code-block {
    margin-top: -3px;
    border-top-color: #e5e9f2;
    border-radius: 0 0 4px 4px;
}
.code-block + .card-preview, .code-block + .nk-block-head {
    margin-top: 40px;
}
.code-block .prettyprint {
    background: #f5f6fa;
    border: none;
    padding: 0.75rem;
    font-size: 11px;
    line-height: 20px;
    max-height: 136px;
}
.code-block .title {
    margin-bottom: 1rem;
}
.code-block .btn, .code-block .dual-listbox .dual-listbox__button, .dual-listbox .code-block .dual-listbox__button {
    background-color: #fff;
}
.code-block .btn:focus, .code-block .dual-listbox .dual-listbox__button:focus, .dual-listbox .code-block .dual-listbox__button:focus, .code-block .btn:hover, .code-block .dual-listbox .dual-listbox__button:hover, .dual-listbox .code-block .dual-listbox__button:hover {
    border-color: #dbdfea;
    box-shadow: none;
}
.code-block-clean .title {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8094ae;
    font-weight: 500;
    margin-bottom: 0.45rem;
    display: block;
}

.preview-icon-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.preview-icon-item {
    flex: 1 0 150px;
    padding: 15px;
    max-width: 50%;
}
.preview-icon-box {
    position: relative;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #dbdfea;
}
.preview-icon-box .btn-clipboard {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 1;
}
.preview-icon-box .btn-clipboard:focus {
    border-color: transparent;
    box-shadow: none;
}
.preview-icon-box:hover .btn-clipboard {
    opacity: 1;
}
.preview-icon-wrap {
    padding-bottom: 5px;
}
.preview-icon-wrap .ni {
    font-size: 30px;
}
.preview-icon-svg .preview-icon-wrap {
    margin-bottom: 0.5rem;
}
.preview-icon-svg .preview-icon-wrap svg {
    width: 90px;
}
.preview-icon-name {
    color: #8094ae;
    font-size: 11px;
}

.preview-title, .preview-title-lg {
    display: block;
    padding-bottom: 0.75rem;
}
.preview-title-lg {
    font-size: 13px;
}
.preview-hr {
    border-top: 1px solid #dbdfea;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.preview-hr + .preview-title {
    padding-top: 0.5rem;
}
.nk-block-head + .preview-hr {
    margin-top: 0.5rem;
}
.preview-list {
    display: flex;
    flex-wrap: wrap;
    margin: -0.75rem;
}
.preview-item {
    padding: 0.75rem;
}
.preview-btn-list {
    display: flex;
    flex-wrap: wrap;
    margin: -0.75rem;
}
.preview-btn-item {
    width: 50%;
    padding: 0.75rem;
}
.preview-btn-list-fw .preview-btn-item {
    width: 100%;
}
.preview-btn-list-3x .preview-btn-item {
    width: 33.33%;
}

.example-width > div, .example-height > div, .example-border > div, .example-spacing > div {
    font-size: 11px;
    padding: 0.5rem;
    text-align: center;
    background-color: #f5f6fa;
}
.example-border {
    margin: -0.5rem;
}
.example-border > div {
    height: 4.5rem;
    width: 4.5rem;
    margin: 0.5rem;
}
.example-border-all > div {
    border: 1px solid #dbdfea;
}
.example-width > div {
    height: 2rem;
    background-color: #e5e9f2;
    margin-bottom: 0.25rem;
}
.example-height {
    height: 8rem;
}
.example-height > div {
    width: 8rem;
    background-color: #e5e9f2;
    margin-right: 0.5rem;
}
.example-spacing > div {
    height: 2rem;
    width: 4.5rem;
    background-color: #e5e9f2;
    margin-bottom: 0.5rem;
}
.example-spacing-pd > div {
    margin-right: 0.5rem;
    height: auto;
    width: auto;
}
.example-spacing-pd > div > span {
    display: block;
    padding: 0.25rem;
    line-height: 1;
    border-radius: 2px;
    background-color: #fff;
}
.example-alerts:not(:last-child) {
    margin-bottom: 28px;
}

.components-preview h4.title, .components-preview .title.h4, .components-preview h5.title, .components-preview .title.h5 {
    font-size: 1.25rem;
    letter-spacing: -0.01rem;
    font-family: Roboto, sans-serif;
    font-weight: 500;
}
.components-preview .card-preview > .card-inner {
    padding: 1.25rem;
}

@media (min-width: 768px) {
    .preview-btn-item {
        width: 25%;
    }
    .preview-btn-list-fw .preview-btn-item {
        width: 25%;
    }
    .preview-btn-list-3x .preview-btn-item {
        width: 16.66%;
    }
}
@media (min-width: 992px) {
    .components-preview .nk-block + .nk-block-lg {
        padding-top: 3.75rem;
    }
}
@media (max-width: 767.98px) {
    .preview-reference tr, .preview-reference th, .preview-reference td {
        display: block;
        border: 0;
        width: 100% !important;
    }
    .preview-reference tbody tr {
        padding: 0.5rem 0;
    }
    .preview-reference tbody tr:not(:last-child) {
        border-bottom: 1px solid #e5e9f2;
    }
    .preview-reference tbody tr:nth-child(2n) {
        background-color: rgba(245, 246, 250, 0.3);
    }
    .preview-reference tr td {
        padding: 0.2rem 1.25rem;
    }
    .preview-reference tr th:not(:first-child) {
        display: none;
    }
}
.ui-softy .table .table-light th {
    background: rgba(245, 246, 250, 0.5);
    box-shadow: 0 -1px 5px -5px rgba(31, 43, 58, 0.7);
}
.ui-softy .tb-tnx-head, .ui-softy .sp-plan-action, .ui-softy .tb-ticket-item.is-unread, .ui-softy .support-topic-block:link:hover, .ui-softy .nk-refwg-stats {
    background: rgba(245, 246, 250, 0.5);
}
.ui-softy .nk-refwg-stats {
    background: rgba(245, 246, 250, 0.5) !important;
}
.ui-softy .card .card-inner + .table .tb-tnx-head {
    border-top: 1px solid #dbdfea;
}
.ui-softy .nk-header {
    box-shadow: 0 1px 3px rgba(16, 25, 36, 0.06);
}

.ui-softy .card,
.ui-softy .code-block,
.ui-softy .sp-pdl-item,
.ui-softy .invoice-wrap,
.ui-softy .accordion:not(.accordion-s2):not(.accordion-s3),
.ui-softy .nk-reply-form,
.ui-softy .nk-files-view-grid .nk-file, .ui-softy .nk-files-view-group .nk-file, .ui-softy .nk-files-view-list .nk-files-list,
.ui-softy .chat-msg, .ui-softy .kanban-board-header, .ui-softy .kanban-item, .ui-softy .kanban-add-task {
    box-shadow: 0 2px 6px -1px rgba(31, 43, 58, 0.08);
}
.ui-softy .card .accordion:not(.accordion-s2):not(.accordion-s3) {
    box-shadow: none;
    border: 1px solid #dbdfea;
}

.ui-softy .nk-msg, .ui-softy .nk-ibx, .ui-softy .nk-fmg, .ui-softy .nk-chat {
    box-shadow: 0 2px 6px -1px rgba(31, 43, 58, 0.08);
}

.ui-softy .nk-msg-aside, .ui-softy .nk-msg-nav {
    background: #fff;
}
.ui-softy .nk-msg-item.active, .ui-softy .nk-msg-item.current {
    background: rgba(245, 246, 250, 0.5);
    position: relative;
}
.ui-softy .nk-msg-item.active:after, .ui-softy .nk-msg-item.current:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: #6576ff;
}
.ui-softy .nk-msg-item.active, .ui-softy .nk-msg-item.current {
    background: #f5f6fa;
}
.ui-softy .nk-msg-item.active:after, .ui-softy .nk-msg-item.current:after {
    width: 3px;
}
.ui-softy .nk-msg-reply {
    box-shadow: inset 0 0 8px -5px rgba(16, 25, 36, 0.3);
}
.ui-softy .nk-ibx-reply, .ui-softy .nk-chat-panel {
    box-shadow: inset 0 0 8px -5px rgba(16, 25, 36, 0.3);
}
.ui-softy .nk-ibx-item {
    box-shadow: 0 0 7px -1px rgba(16, 25, 36, 0.1);
}

.ui-rounder .card, .ui-rounder .ratio {
    border-radius: 12px;
}

body.dark-mode {
    background: #101924 !important;
    color: #b6c6e3;
}
body.dark-mode.bg-lighter, .dual-listbox body.dark-mode.dual-listbox__item:hover, body.dark-mode.bg-light {
    background: #0d141d !important;
}
body.dark-mode.nk-body.ui-softy, body.dark-mode.nk-body.ui-shady {
    background: #101924 !important;
}

.dark-mode .logo-dark {
    opacity: 0;
}
.dark-mode .logo-light {
    opacity: 1;
}
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6, .dark-mode .h1, .dark-mode .h2, .dark-mode .h3, .dark-mode .h4, .dark-mode .h5, .dark-mode .h6,
.dark-mode .lead-text, .dark-mode .dropdown-title, .dark-mode pre {
    color: #fff;
}
.dark-mode .text-base, .dark-mode .text-body, .dark-mode .link-text {
    color: #b6c6e3 !important;
}
.dark-mode .text-secondary, .dark-mode .icon[class*=bg-secondary-dim], .dark-mode .user-avatar[class*=-light], .dark-mode .icon[class*=bg-light] {
    color: #8094ae !important;
}
.dark-mode .text-dark {
    color: #fff !important;
}
.dark-mode .text-muted {
    color: #8094ae !important;
}
.dark-mode .text-light, .dark-mode .user-avatar[class*=-dark] {
    color: #8091a7 !important;
}
.dark-mode .text-lighter {
    color: #3c4d62 !important;
}
.dark-mode .text-indigo {
    color: #6370ca !important;
}
.dark-mode .bg-light {
    background-color: #0d141d !important;
}
.dark-mode .bg-lighter, .dark-mode .dual-listbox .dual-listbox__item:hover, .dual-listbox .dark-mode .dual-listbox__item:hover {
    background-color: #101924 !important;
}
.dark-mode .table-striped tbody tr:nth-of-type(odd) {
    background-color: #101924 !important;
}
.dark-mode .bg-white {
    background-color: #18212d !important;
}
.dark-mode .bg-transparent.bg-transparent {
    background-color: transparent !important;
}
.dark-mode .bg-dark {
    background-color: #192330 !important;
}
.dark-mode .bg-blue-dim {
    background-color: #21334c !important;
}
.dark-mode .bg-azure-dim {
    background-color: #182e4c !important;
}
.dark-mode .bg-indigo-dim {
    background-color: #1b243a !important;
}
.dark-mode .bg-purple-dim {
    background-color: #282c4d !important;
}
.dark-mode .bg-pink-dim {
    background-color: #3b2b3f !important;
}
.dark-mode .bg-orange-dim {
    background-color: #3b3533 !important;
}
.dark-mode .bg-teal-dim {
    background-color: #193a3d !important;
}
.dark-mode .bg-primary-dim, .dark-mode .dual-listbox .dual-listbox__item:active, .dual-listbox .dark-mode .dual-listbox__item:active, .dark-mode .dual-listbox .dual-listbox__item.dual-listbox__item--selected, .dual-listbox .dark-mode .dual-listbox__item.dual-listbox__item--selected {
    background-color: #242e4d !important;
}
.dark-mode .bg-success-dim {
    background-color: #193e40 !important;
}
.dark-mode .bg-info-dim {
    background-color: #163948 !important;
}
.dark-mode .bg-warning-dim {
    background-color: #393828 !important;
}
.dark-mode .bg-danger-dim {
    background-color: #372931 !important;
}
.dark-mode .bg-secondary-dim {
    background-color: #1e2938 !important;
}
.dark-mode .bg-dark-dim {
    background-color: #19232f !important;
}
.dark-mode .bg-gray-dim {
    background-color: #28323f !important;
}
.dark-mode .bg-btc-dim {
    background-color: #3a302b !important;
}
.dark-mode .bg-eth-dim {
    background-color: #232d42 !important;
}
.dark-mode .alert-primary {
    color: #6576ff;
    background-color: #242e4d;
    border-color: #242e4d;
}
.dark-mode .alert-primary hr {
    border-top-color: #242e4d;
}
.dark-mode .alert-primary .alert-link {
    color: #3249ff;
}
.dark-mode .alert-fill.alert-primary {
    color: #fff;
    background: #6576ff;
}
.dark-mode .alert-fill.alert-primary .alert-link {
    color: #fff;
}
.dark-mode .alert-pro.alert-primary {
    border-color: #6576ff;
}
.dark-mode .alert-secondary {
    color: #8ca3c0;
    background-color: #1e2938;
    border-color: #1e2938;
}
.dark-mode .alert-secondary hr {
    border-top-color: #1e2938;
}
.dark-mode .alert-secondary .alert-link {
    color: #6b89ae;
}
.dark-mode .alert-fill.alert-secondary {
    color: #fff;
    background: #8ca3c0;
}
.dark-mode .alert-fill.alert-secondary .alert-link {
    color: #fff;
}
.dark-mode .alert-pro.alert-secondary {
    border-color: #8ca3c0;
}
.dark-mode .alert-success {
    color: #1ee0ac;
    background-color: #193e40;
    border-color: #193e40;
}
.dark-mode .alert-success hr {
    border-top-color: #193e40;
}
.dark-mode .alert-success .alert-link {
    color: #18b389;
}
.dark-mode .alert-fill.alert-success {
    color: #fff;
    background: #1ee0ac;
}
.dark-mode .alert-fill.alert-success .alert-link {
    color: #fff;
}
.dark-mode .alert-pro.alert-success {
    border-color: #1ee0ac;
}
.dark-mode .alert-warning {
    color: #f4bd0e;
    background-color: #393828;
    border-color: #393828;
}
.dark-mode .alert-warning hr {
    border-top-color: #393828;
}
.dark-mode .alert-warning .alert-link {
    color: #c69909;
}
.dark-mode .alert-fill.alert-warning {
    color: #fff;
    background: #f4bd0e;
}
.dark-mode .alert-fill.alert-warning .alert-link {
    color: #fff;
}
.dark-mode .alert-pro.alert-warning {
    border-color: #f4bd0e;
}
.dark-mode .alert-info {
    color: #09c2de;
    background-color: #163948;
    border-color: #163948;
}
.dark-mode .alert-info hr {
    border-top-color: #163948;
}
.dark-mode .alert-info .alert-link {
    color: #0797ad;
}
.dark-mode .alert-fill.alert-info {
    color: #fff;
    background: #09c2de;
}
.dark-mode .alert-fill.alert-info .alert-link {
    color: #fff;
}
.dark-mode .alert-pro.alert-info {
    border-color: #09c2de;
}
.dark-mode .alert-danger {
    color: #e85347;
    background-color: #372931;
    border-color: #372931;
}
.dark-mode .alert-danger hr {
    border-top-color: #372931;
}
.dark-mode .alert-danger .alert-link {
    color: #e02b1c;
}
.dark-mode .alert-fill.alert-danger {
    color: #fff;
    background: #e85347;
}
.dark-mode .alert-fill.alert-danger .alert-link {
    color: #fff;
}
.dark-mode .alert-pro.alert-danger {
    border-color: #e85347;
}
.dark-mode .alert-gray {
    color: #b7c2d0;
    background-color: #28323f;
    border-color: #28323f;
}
.dark-mode .alert-gray hr {
    border-top-color: #28323f;
}
.dark-mode .alert-gray .alert-link {
    color: #98a8bc;
}
.dark-mode .alert-fill.alert-gray {
    color: #fff;
    background: #b7c2d0;
}
.dark-mode .alert-fill.alert-gray .alert-link {
    color: #fff;
}
.dark-mode .alert-pro.alert-gray {
    border-color: #b7c2d0;
}
.dark-mode .alert-dark {
    color: #1f2b3a;
    background-color: #19232f;
    border-color: #19232f;
}
.dark-mode .alert-dark hr {
    border-top-color: #19232f;
}
.dark-mode .alert-dark .alert-link {
    color: #0d1219;
}
.dark-mode .alert-fill.alert-dark {
    color: #fff;
    background: #1f2b3a;
}
.dark-mode .alert-fill.alert-dark .alert-link {
    color: #fff;
}
.dark-mode .alert-pro.alert-dark {
    border-color: #1f2b3a;
}
.dark-mode .alert-light {
    color: #ebeef2;
    background-color: #28323f;
    border-color: #28323f;
}
.dark-mode .alert-light hr {
    border-top-color: #28323f;
}
.dark-mode .alert-light .alert-link {
    color: #ccd4de;
}
.dark-mode .alert-fill.alert-light {
    color: #000;
    background: #ebeef2;
}
.dark-mode .alert-fill.alert-light .alert-link {
    color: #000;
}
.dark-mode .alert-pro.alert-light {
    border-color: #ebeef2;
}
.dark-mode .badge-dim.bg-primary {
    color: #6576ff;
    background-color: #242e4d !important;
    border-color: #242e4d;
}
.dark-mode .badge-dim.bg-outline-primary {
    color: #6576ff;
    background-color: #242e4d;
    border-color: #374381;
}
.dark-mode .badge-dim.bg-secondary {
    color: #8ca3c0;
    background-color: #293543 !important;
    border-color: #293543;
}
.dark-mode .badge-dim.bg-outline-secondary {
    color: #8ca3c0;
    background-color: #293543;
    border-color: #465568;
}
.dark-mode .badge-dim.bg-success {
    color: #1ee0ac;
    background-color: #193e40 !important;
    border-color: #193e40;
}
.dark-mode .badge-dim.bg-outline-success {
    color: #1ee0ac;
    background-color: #193e40;
    border-color: #1a6d60;
}
.dark-mode .badge-dim.bg-info {
    color: #09c2de;
    background-color: #163948 !important;
    border-color: #163948;
}
.dark-mode .badge-dim.bg-outline-info {
    color: #09c2de;
    background-color: #163948;
    border-color: #126174;
}
.dark-mode .badge-dim.bg-warning {
    color: #f4bd0e;
    background-color: #393828 !important;
    border-color: #393828;
}
.dark-mode .badge-dim.bg-outline-warning {
    color: #f4bd0e;
    background-color: #393828;
    border-color: #705f21;
}
.dark-mode .badge-dim.bg-danger {
    color: #e85347;
    background-color: #372931 !important;
    border-color: #372931;
}
.dark-mode .badge-dim.bg-outline-danger {
    color: #e85347;
    background-color: #372931;
    border-color: #6b3537;
}
.dark-mode .badge-dim.bg-light {
    color: #b7c2d0;
    background-color: #303945 !important;
    border-color: #303945;
}
.dark-mode .badge-dim.bg-outline-light {
    color: #b7c2d0;
    background-color: #303945;
    border-color: #58616e;
}
.dark-mode .badge-dim.bg-dark {
    color: #e5e9f2;
    background-color: #373f4b !important;
    border-color: #373f4b;
}
.dark-mode .badge-dim.bg-outline-dark {
    color: #e5e9f2;
    background-color: #373f4b;
    border-color: #6a717c;
}
.dark-mode .badge-dim.bg-gray {
    color: #8091a7;
    background-color: #28323f !important;
    border-color: #28323f;
}
.dark-mode .badge-dim.bg-outline-gray {
    color: #8091a7;
    background-color: #28323f;
    border-color: #424e5e;
}
.dark-mode .badge-dim.bg-lighter, .dark-mode .dual-listbox .badge-dim.dual-listbox__item:hover, .dual-listbox .dark-mode .badge-dim.dual-listbox__item:hover {
    color: #8091a7;
    background-color: #28323f !important;
    border-color: #28323f;
}
.dark-mode .badge-dim.bg-outline-lighter {
    color: #8091a7;
    background-color: #28323f;
    border-color: #424e5e;
}
.dark-mode .bg-outline-secondary, .dark-mode .badge-dot.bg-dark, .dark-mode .badge-dot.bg-secondary {
    color: #b7c2d0;
}
.dark-mode .bg-outline-dark {
    color: #e5e9f2;
    border-color: #e5e9f2;
}
.dark-mode .bg-outline-light {
    color: #b7c2d0;
    border-color: #344357;
}
.dark-mode .badge-dot.bg-dark, .dark-mode .badge-dot.bg-light {
    background-color: transparent !important;
}
.dark-mode .badge-dot.bg-light {
    color: #8091a7;
}
.dark-mode .bg-light, .dark-mode .code-block .btn, .dark-mode .code-block .dual-listbox .dual-listbox__button, .dual-listbox .dark-mode .code-block .dual-listbox__button {
    color: #e5e9f2;
    background: #344357;
    border-color: #344357;
}
.dark-mode .bg-dark {
    color: #8091a7;
    border-color: #192330;
}
.dark-mode .bg-dark.user-avatar {
    color: #1f2b3a !important;
    background: #e5e9f2 !important;
    border-color: #e5e9f2 !important;
}
.dark-mode .btn-light, .dark-mode .dual-listbox .dual-listbox__button, .dual-listbox .dark-mode .dual-listbox__button {
    color: #e5e9f2;
    background: #344357;
    border-color: #344357;
}
.dark-mode .btn-light:not(:disabled):not(.disabled):hover, .dark-mode .dual-listbox .dual-listbox__button:not(:disabled):not(.disabled):hover, .dual-listbox .dark-mode .dual-listbox__button:not(:disabled):not(.disabled):hover, .dark-mode .btn-light:not(:disabled):not(.disabled):focus, .dark-mode .dual-listbox .dual-listbox__button:not(:disabled):not(.disabled):focus, .dual-listbox .dark-mode .dual-listbox__button:not(:disabled):not(.disabled):focus, .dark-mode .btn-light:not(:disabled):not(.disabled).focus, .dark-mode .dual-listbox .dual-listbox__button:not(:disabled):not(.disabled).focus, .dual-listbox .dark-mode .dual-listbox__button:not(:disabled):not(.disabled).focus, .dark-mode .btn-light:not(:disabled):not(.disabled):active, .dark-mode .dual-listbox .dual-listbox__button:not(:disabled):not(.disabled):active, .dual-listbox .dark-mode .dual-listbox__button:not(:disabled):not(.disabled):active, .dark-mode .btn-light:not(:disabled):not(.disabled).active, .dark-mode .dual-listbox .dual-listbox__button:not(:disabled):not(.disabled).active, .dual-listbox .dark-mode .dual-listbox__button:not(:disabled):not(.disabled).active {
    background: #435771;
    border-color: #435771;
    color: #e5e9f2;
}
.dark-mode .btn-dark {
    color: #1f2b3a;
    background: #e5e9f2;
    border-color: #e5e9f2;
}
.dark-mode .btn-dark:not(:disabled):not(.disabled):hover, .dark-mode .btn-dark:not(:disabled):not(.disabled):focus, .dark-mode .btn-dark:not(:disabled):not(.disabled).focus, .dark-mode .btn-dark:not(:disabled):not(.disabled):active, .dark-mode .btn-dark:not(:disabled):not(.disabled).active {
    background: #fff;
    border-color: #fff;
    color: #1f2b3a;
}
.dark-mode .btn-outline-dark {
    border-color: #e5e9f2;
    color: #e5e9f2;
}
.dark-mode .btn-outline-dark:not(:disabled):not(.disabled):hover {
    background: #e5e9f2;
    color: #1f2b3a;
}
.dark-mode .btn-outline-secondary {
    border-color: #5a7ba5;
    color: #5a7ba5;
}
.dark-mode .btn-outline-secondary:not(:disabled):not(.disabled):hover {
    background: #5a7ba5;
    color: #fff;
}
.dark-mode .btn-outline-light, .dark-mode .dt-buttons .btn-secondary, .dt-buttons .dark-mode .btn-secondary {
    border-color: #3c4d62;
    color: #b7c2d0;
}
.dark-mode .btn-outline-light:not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-secondary:not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-secondary:not(:disabled):not(.disabled):hover {
    background: #3c4d62;
    color: #fff;
}
.dark-mode .btn-dim.btn-primary {
    color: #6576ff;
    background-color: #263053;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-primary:not(:disabled):not(.disabled):hover {
    color: #98a3ff;
    background-color: #313e6b;
    border-color: #313e6b;
}
.dark-mode .btn-dim.btn-secondary {
    color: #adbdd2;
    background-color: #202b3b;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-secondary:not(:disabled):not(.disabled):hover {
    color: #ced8e4;
    background-color: #2d3c52;
    border-color: #2d3c52;
}
.dark-mode .btn-dim.btn-success {
    color: #1ee0ac;
    background-color: #194344;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-success:not(:disabled):not(.disabled):hover {
    color: #4ae7bd;
    background-color: #235d5e;
    border-color: #235d5e;
}
.dark-mode .btn-dim.btn-warning {
    color: #f4bd0e;
    background-color: #403d27;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-warning:not(:disabled):not(.disabled):hover {
    color: #f6ca3f;
    background-color: #565235;
    border-color: #565235;
}
.dark-mode .btn-dim.btn-info {
    color: #09c2de;
    background-color: #153e4d;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-info:not(:disabled):not(.disabled):hover {
    color: #24daf6;
    background-color: #1d5569;
    border-color: #1d5569;
}
.dark-mode .btn-dim.btn-danger {
    color: #e85347;
    background-color: #3d2a32;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-danger:not(:disabled):not(.disabled):hover {
    color: #ee7d74;
    background-color: #523943;
    border-color: #523943;
}
.dark-mode .btn-dim.btn-gray {
    color: #b7c2d0;
    background-color: #2b3543;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-gray:not(:disabled):not(.disabled):hover {
    color: #d6dce4;
    background-color: #394659;
    border-color: #394659;
}
.dark-mode .btn-dim.btn-dark {
    color: #e5e9f2;
    background-color: #353e4a;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-dark:not(:disabled):not(.disabled):hover {
    color: white;
    background-color: #444f5f;
    border-color: #444f5f;
}
.dark-mode .btn-dim.btn-light, .dark-mode .dual-listbox .btn-dim.dual-listbox__button, .dual-listbox .dark-mode .btn-dim.dual-listbox__button {
    color: #ebeef2;
    background-color: #2b3543;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-light:not(:disabled):not(.disabled):hover, .dark-mode .dual-listbox .btn-dim.dual-listbox__button:not(:disabled):not(.disabled):hover, .dual-listbox .dark-mode .btn-dim.dual-listbox__button:not(:disabled):not(.disabled):hover {
    color: white;
    background-color: #394659;
    border-color: #394659;
}
.dark-mode .btn-dim.btn-lighter {
    color: #b7c2d0;
    background-color: #2b3543;
    border-color: transparent;
}
.dark-mode .btn-dim.btn-lighter:not(:disabled):not(.disabled):hover {
    color: #d6dce4;
    background-color: #394659;
    border-color: #394659;
}
.dark-mode .btn-dim.btn-outline-primary {
    color: #6576ff;
    background-color: #263053;
    border-color: #333f77;
}
.dark-mode .btn-dim.btn-outline-primary:not(:disabled):not(.disabled):hover {
    color: #fff;
    background-color: #6576ff;
    border-color: #6576ff;
}
.dark-mode .btn-white.btn-outline-primary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-outline-primary.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-outline-primary.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-primary:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #6576ff;
    background: #263053;
}
.dark-mode .btn-dim.btn-outline-success {
    color: #1ee0ac;
    background-color: #194344;
    border-color: #1a6459;
}
.dark-mode .btn-dim.btn-outline-success:not(:disabled):not(.disabled):hover {
    color: #fff;
    background-color: #1ee0ac;
    border-color: #1ee0ac;
}
.dark-mode .btn-white.btn-outline-success:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-outline-success.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-outline-success.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-success:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #1ee0ac;
    background: #194344;
}
.dark-mode .btn-dim.btn-outline-warning {
    color: #f4bd0e;
    background-color: #403d27;
    border-color: #655822;
}
.dark-mode .btn-dim.btn-outline-warning:not(:disabled):not(.disabled):hover {
    color: #fff;
    background-color: #f4bd0e;
    border-color: #f4bd0e;
}
.dark-mode .btn-white.btn-outline-warning:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-outline-warning.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-outline-warning.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-warning:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #f4bd0e;
    background: #403d27;
}
.dark-mode .btn-dim.btn-outline-info {
    color: #09c2de;
    background-color: #153e4d;
    border-color: #13596b;
}
.dark-mode .btn-dim.btn-outline-info:not(:disabled):not(.disabled):hover {
    color: #fff;
    background-color: #09c2de;
    border-color: #09c2de;
}
.dark-mode .btn-white.btn-outline-info:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-outline-info.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-outline-info.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-info:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #09c2de;
    background: #153e4d;
}
.dark-mode .btn-dim.btn-outline-danger {
    color: #e85347;
    background-color: #3d2a32;
    border-color: #613336;
}
.dark-mode .btn-dim.btn-outline-danger:not(:disabled):not(.disabled):hover {
    color: #fff;
    background-color: #e85347;
    border-color: #e85347;
}
.dark-mode .btn-white.btn-outline-danger:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-outline-danger.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-outline-danger.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-danger:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #e85347;
    background: #3d2a32;
}
.dark-mode .btn-dim.btn-outline-secondary {
    color: #6b89ae;
    background-color: #202b3b;
    border-color: #2d3e53;
}
.dark-mode .btn-dim.btn-outline-secondary:not(:disabled):not(.disabled):hover {
    color: #fff;
    background-color: #6b89ae;
    border-color: #6b89ae;
}
.dark-mode .btn-white.btn-outline-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-outline-secondary.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-outline-secondary.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #6b89ae;
    background: #202b3b;
}
.dark-mode .btn-dim.btn-outline-gray {
    color: #b7c2d0;
    background-color: #2b3543;
    border-color: #3c4858;
}
.dark-mode .btn-dim.btn-outline-gray:not(:disabled):not(.disabled):hover {
    color: #fff;
    background-color: #b7c2d0;
    border-color: #b7c2d0;
}
.dark-mode .btn-white.btn-outline-gray:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-outline-gray.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-outline-gray.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-gray:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #b7c2d0;
    background: #2b3543;
}
.dark-mode .btn-dim.btn-outline-dark {
    color: #e5e9f2;
    background-color: #353e4a;
    border-color: #505966;
}
.dark-mode .btn-dim.btn-outline-dark:not(:disabled):not(.disabled):hover {
    color: #000;
    background-color: #e5e9f2;
    border-color: #e5e9f2;
}
.dark-mode .btn-white.btn-outline-dark:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-outline-dark.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-outline-dark.btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-dark:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #e5e9f2;
    background: #353e4a;
}
.dark-mode .btn-dim.btn-outline-light, .dark-mode .dt-buttons .btn-dim.btn-secondary, .dt-buttons .dark-mode .btn-dim.btn-secondary {
    color: #8091a7;
    background-color: #1e2937;
    border-color: #3c4858;
}
.dark-mode .btn-dim.btn-outline-light:not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-dim.btn-secondary:not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-dim.btn-secondary:not(:disabled):not(.disabled):hover {
    color: #fff;
    background-color: #8091a7;
    border-color: #8091a7;
}
.dark-mode .btn-white.btn-outline-light:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .dt-buttons .btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dt-buttons .dark-mode .btn-secondary:not(.btn-dim):not(:disabled):not(.disabled):hover, .dark-mode .btn-trans.btn-outline-light:not(.btn-dim):not(:disabled):not(.disabled):hover {
    color: #8091a7;
    background: #1e2937;
}
.dark-mode .btn-dim.btn-outline-light:not(:disabled):not(.disabled):hover,
.dark-mode .btn-white.btn-outline-light:not(:disabled):not(.disabled):hover,
.dark-mode .dt-buttons .btn-secondary:not(:disabled):not(.disabled):hover,
.dt-buttons .dark-mode .btn-secondary:not(:disabled):not(.disabled):hover,
.dark-mode .btn-dim.btn-outline-light:not(:disabled):not(.disabled):active,
.dark-mode .btn-white.btn-outline-light:not(:disabled):not(.disabled):active,
.dark-mode .dt-buttons .btn-secondary:not(:disabled):not(.disabled):active,
.dt-buttons .dark-mode .btn-secondary:not(:disabled):not(.disabled):active,
.dark-mode .show > .btn-white.btn-outline-light.dropdown-toggle,
.dark-mode .dt-buttons .show > .dropdown-toggle.btn-secondary,
.dt-buttons .dark-mode .show > .dropdown-toggle.btn-secondary {
    background: #3c4d62;
    border-color: #3c4d62;
    color: #fff;
}
.dark-mode .btn-white, .dark-mode .dt-buttons .btn-secondary, .dt-buttons .dark-mode .btn-secondary, .dark-mode .btn-white.btn-dim, .dark-mode .btn-white.btn-outline-light {
    background: #18212d;
}
.dark-mode .btn-outline-light:focus, .dark-mode .dt-buttons .btn-secondary:focus, .dt-buttons .dark-mode .btn-secondary:focus, .dark-mode .btn-outline-light.focus, .dark-mode .dt-buttons .focus.btn-secondary, .dt-buttons .dark-mode .focus.btn-secondary {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.07) !important;
}
.dark-mode .border, .dark-mode .border-bottom, .dark-mode .border-top, .dark-mode .border-left, .dark-mode .border-right,
.dark-mode .dropdown-inner + .dropdown-inner, .dark-mode .dropdown-head, .dark-mode .dropdown-foot,
.dark-mode .preview-hr, .dark-mode .select2-container--default .select2-selection--single,
.dark-mode .ql-picker-options,
.dark-mode .select2-container--default .select2-selection--multiple, .dark-mode .select2-dropdown,
.dark-mode .select2-container--default .select2-search--dropdown .select2-search__field,
.dark-mode .ui-timepicker-standard, .dark-mode .ql-toolbar, .dark-mode .ql-container, .dark-mode .note-editor, .dark-mode .note-toolbar,
.dark-mode .tox .tox-menubar, .dark-mode .tox-toolbar-overlord, .dark-mode .tox-tinymce, .dark-mode .tox .tox-toolbar__group:not(:last-of-type),
.dark-mode .tox .tox-statusbar, .dark-mode .tox .tox-menu, .dark-mode .tox-toolbar, .dark-mode .tox-editor-header,
.dark-mode .tox .tox-toolbar, .dark-mode .tox .tox-toolbar__primary, .dark-mode .tox .tox-toolbar__overflow,
.dark-mode .tox .tox-collection--list .tox-collection__group,
.dark-mode .note-btn-group .note-btn, .dark-mode .note-statusbar, .dark-mode .nk-code-preview-box, .dark-mode .swal2-footer,
.dark-mode .example-border-all > div, .dark-mode .btn-toolbar-sep, .dark-mode .page-link,
.dark-mode .table th, .dark-mode .table td, .dark-mode .table-bordered, .dark-mode .table-bordered th, .dark-mode .table-bordered td, .dark-mode .datatable-wrap, .dark-mode .nk-tb-head .nk-tb-col,
.dark-mode .list-group-item, .dark-mode .modal-header, .dark-mode .modal-footer, .dark-mode .popover, .dark-mode .popover-header,
.dark-mode .tagify__tag > div::before, .dark-mode .tagify__tag:hover:not([readonly]) div::before,
.dark-mode .nk-tb-item:not(:last-child) .nk-tb-col, .dark-mode .nk-activity-item:not(:last-child),
.dark-mode .nk-support-item:not(:last-child), .dark-mode .card-inner-group .card-inner:not(:last-child),
.dark-mode .card-aside, .dark-mode .nav-tabs, .dark-mode .divider, .dark-mode .data-item:not(:last-child), .dark-mode .nk-footer,
.dark-mode .nav-switch-s2 .nav-link, .dark-mode .data-list-s2 .data-head, .dark-mode .btn-outline-light, .dark-mode .dt-buttons .btn-secondary, .dt-buttons .dark-mode .btn-secondary, .dark-mode .user-avatar-multiple .user-avatar {
    border-color: #203247 !important;
}
.dark-mode .select2-search--dropdown .select2-search__field {
    color: #b6c6e3;
}
.dark-mode .card, .dark-mode .code-block, .dark-mode .alert-pro, .dark-mode .modal-content, .dark-mode .toast, .dark-mode .toastr {
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4);
}
.dark-mode .card .card {
    box-shadow: none;
}
.dark-mode .toast-header {
    color: #8094ae;
}
.dark-mode .toast, .dark-mode .toast-header {
    border-color: #23364e;
    background: #1b2633;
}
.dark-mode .table-active, .dark-mode .table-active > th, .dark-mode .table-active > td, .dark-mode .table-hover tbody tr:hover,
.dark-mode .code-block .prettyprint, .dark-mode .prettyprint, .dark-mode .list-group-item, .dark-mode .example-spacing-pd > div > span,
.dark-mode .form-file-label::after, .dark-mode .ql-picker-options, .dark-mode .data-more:before,
.dark-mode .ui-state-hover, .dark-mode .note-editor.note-frame .note-statusbar,
.dark-mode .note-editor.note-airframe .note-statusbar, .dark-mode .swal2-popup,
.dark-mode .select2-container--default .select2-results__option--highlighted[aria-selected],
.dark-mode .select2-container--default .select2-results__option[aria-selected=true],
.dark-mode .select2-container--default .select2-selection--multiple .select2-selection__choice,
.dark-mode .select2-container--default .select2-search--dropdown .select2-search__field,
.dark-mode .example-width > div, .dark-mode .example-height > div, .dark-mode .example-border > div, .dark-mode .example-spacing > div {
    background: #101924;
}
.dark-mode .list-group-item {
    color: #b6c6e3;
}
.dark-mode .tox .tox-tbtn:hover,
.dark-mode .tox .tox-collection--list .tox-collection__item--active,
.dark-mode .tox .tox-mbtn--active, .dark-mode .tox .tox-mbtn:focus:not(:disabled),
.dark-mode .tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active),
.dark-mode .tox .tox-collection--list .tox-collection__item--enabled {
    background: #0a0f16;
}
.dark-mode .icon-overlap li {
    border-color: #18212d;
}
.dark-mode .card, .dark-mode .kanban-add-task, .dark-mode .kanban-board-header, .dark-mode .kanban-item, .dark-mode .table > :not(caption) > * > * {
    background: #18212d;
}
.dark-mode .accordion, .dark-mode .form-clip, .dark-mode .form-text-hint, .dark-mode .card-aside,
.dark-mode .code-block, .dark-mode .alert-pro, .dark-mode .modal-content, .dark-mode .toastr, .dark-mode .toggle-content,
.dark-mode .nav-switch-s2 .nav-link:hover, .dark-mode .nav-switch-s2 .nav-link:focus, .dark-mode .nav-switch-s2 .nav-link.active,
.dark-mode .select2-container--default .select2-selection--single,
.dark-mode .select2-container--default .select2-selection--multiple, .dark-mode .select2-dropdown,
.dark-mode .form-file-label, .dark-mode .form-select, .dark-mode .popover, .dark-mode .search-wrap, .dark-mode .form-control, .dark-mode div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .dark-mode input, .dark-mode .dual-listbox .dual-listbox__search, .dual-listbox .dark-mode .dual-listbox__search, .dark-mode .form-label-outlined, .dark-mode .input-mail, .dark-mode .page-link,
.dark-mode .ui-timepicker-standard, .dark-mode .note-editor, .dark-mode .note-toolbar,
.dark-mode .tox .tox-edit-area__iframe, .dark-mode .tox .tox-menubar, .dark-mode .tox-toolbar-overlord,
.dark-mode .tox .tox-toolbar, .dark-mode .tox .tox-toolbar__primary, .dark-mode .tox .tox-toolbar__overflow,
.dark-mode .tox .tox-statusbar, .dark-mode .tox .tox-menu,
.dark-mode .datepicker table tr td.today, .dark-mode .datepicker table tr td.today:hover,
.dark-mode .datepicker table tr td.today.disabled, .dark-mode .datepicker table tr td.today.disabled:hover,
.dark-mode .datepicker table tr td.day:hover, .dark-mode .datepicker table tr td.day.focused,
.dark-mode .datepicker .datepicker-switch:hover, .dark-mode .datepicker .prev:hover, .dark-mode .datepicker .next:hover, .dark-mode .datepicker tfoot tr th:hover {
    background: #18212d !important;
}
.dark-mode .accordion-item {
    background: #18212d !important;
}
.dark-mode .clipboard-success-message {
    background: rgba(24, 33, 45, 0.9);
}
.dark-mode .tagify__tag > div::before, .dark-mode .tagify__tag:hover:not([readonly]) div::before {
    box-shadow: 0 0 0 1.1em #101924 inset;
}
.dark-mode .popover-header {
    background-color: #1d2937;
}
.dark-mode .popover {
    box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.6);
}
.dark-mode .bs-popover-top > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
    border-top-color: #203247 !important;
}
.dark-mode .bs-popover-top > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
    border-top-color: #18212d !important;
}
.dark-mode .bs-popover-bottom > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
    border-bottom-color: #203247 !important;
}
.dark-mode .bs-popover-bottom > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
    border-bottom-color: #18212d !important;
}
.dark-mode .bs-popover-end > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
    border-right-color: #203247 !important;
}
.dark-mode .bs-popover-end > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
    border-right-color: #18212d !important;
}
.dark-mode .bs-popover-start > .popover-arrow::before, .dark-mode .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
    border-left-color: #203247 !important;
}
.dark-mode .bs-popover-start > .popover-arrow::after, .dark-mode .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
    border-left-color: #18212d !important;
}
.dark-mode .team-info li span:last-child, .dark-mode .team-statistics li span:first-child, .dark-mode .project-progress-percent,
.dark-mode .kanban-title-content .title,
.dark-mode .card-tools-nav li a:hover,
.dark-mode .card-tools-nav li a.active,
.dark-mode .card-tools-nav li.active a,
.dark-mode .card-amount .amount,
.dark-mode .accordion-head .title, .dark-mode .form-file-label::after,
.dark-mode .input-mail, .dark-mode .form-control, .dark-mode div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .dark-mode input, .dark-mode .dual-listbox .dual-listbox__search, .dual-listbox .dark-mode .dual-listbox__search, .dark-mode .form-control:focus, .dark-mode .form-label, .dark-mode .form-label-outlined, .dark-mode .input-group-text, .dark-mode .table .table-light th, .dark-mode .table-hover tbody tr:hover,
.dark-mode .close, .dark-mode .close:hover, .dark-mode .user-name, .dark-mode .nk-news-text p,
.dark-mode .data-item:hover .icon,
.dark-mode .accordion-icon {
    color: #fff !important;
}
.dark-mode .close {
    text-shadow: 0 1px 0 #18212d;
}
.dark-mode .close:focus {
    outline: none !important;
}
.dark-mode .nk-block-des, .dark-mode .card-title p, .dark-mode .nk-sale-data .sub-title, .dark-mode .link-check li span, .dark-mode .data-value,
.dark-mode .form-file-label, .dark-mode .form-select, .dark-mode .form-control-select-multiple .form-select option,
.dark-mode .select2-container--default .select2-selection--single .select2-selection__rendered,
.dark-mode .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.dark-mode .ui-timepicker-standard a, .dark-mode .note-placeholder, .dark-mode [class*=knob], .dark-mode .tox .tox-tbtn:hover,
.dark-mode .tox .tox-statusbar a, .dark-mode .tox .tox-statusbar__path-item, .dark-mode .tox .tox-statusbar__wordcount,
.dark-mode .tox-collection__item-label > *, .dark-mode .nk-quick-nav-icon, .dark-mode .dropzone .dz-message span,
.dark-mode .datepicker table tr td.today, .dark-mode .datepicker table tr td.today:hover,
.dark-mode .datepicker table tr td.today.disabled, .dark-mode .datepicker table tr td.today.disabled:hover,
.dark-mode .datepicker table tr td.day:hover, .dark-mode .datepicker table tr td.day.focused,
.dark-mode .page-link, .dark-mode .alert-pro, .dark-mode .nk-news-text p span, .dark-mode .language-item,
.dark-mode .nk-tb-list .tb-lead-sub, .dark-mode .nk-tb-list .tb-amount-sub {
    color: #8094ae !important;
}
.dark-mode .tox .tox-collection__item-accessory {
    color: #526484;
}
.dark-mode .nk-menu-link, .dark-mode .link-dark, .dark-mode .nk-menu-main .nk-menu-sub .nk-menu-link, .dark-mode .link-list a {
    color: #8094ae;
}
.dark-mode .nk-menu-link:hover, .dark-mode .link-dark:hover, .dark-mode .nk-menu-main .nk-menu-sub .nk-menu-link:hover, .dark-mode .link-list a:hover {
    color: #6576ff;
}
.dark-mode .nk-menu-badge {
    color: #dbdfea;
    background: #2d3f55;
}
.dark-mode .is-dark .nk-menu-badge {
    color: #e3e7fe;
}
.dark-mode .is-dark .nk-menu-badge {
    color: #9cabff;
}
.dark-mode .ql-picker.ql-expanded .ql-picker-label,
.dark-mode .active > .nk-menu-link, .dark-mode .is-theme .nk-menu-link:hover .nk-menu-icon,
.dark-mode .is-theme .nk-menu-item.active > .nk-menu-link .nk-menu-icon,
.dark-mode .is-theme .nk-menu-item.current-menu > .nk-menu-link .nk-menu-icon,
.dark-mode .is-theme .nk-menu-sub .nk-menu-link:hover,
.dark-mode .is-theme .nk-menu-sub .active > .nk-menu-link, .dark-mode .page-link:hover {
    color: #6576ff !important;
}
.dark-mode .nk-menu-hr, .dark-mode .nk-menu-main .nk-menu-sub, .dark-mode .nk-sidebar .nk-menu > li .nk-menu-sub .nk-menu-sub,
.dark-mode .user-avatar-group .user-avatar {
    border-color: #203247;
}
.dark-mode .nk-menu-main .nk-menu-sub {
    background: #15202f;
}
.dark-mode .nk-menu-main .nk-menu-sub .nk-menu-item:hover > a {
    background-color: #101924;
}
.dark-mode .table .table-light th, .dark-mode .page-item.disabled .page-link, .dark-mode .page-link:hover, .dark-mode .tb-odr-head, .dark-mode .tb-tnx-head,
.dark-mode .custom-control-input[disabled] ~ .custom-control-label::before, .dark-mode .custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #2b3c51 !important;
}
.dark-mode .progress, .dark-mode .custom-control-label::before, .dark-mode .input-group-text,
.dark-mode .nk-msg-profile-toggle {
    background-color: #243244 !important;
}
.dark-mode .nk-msg-profile-toggle,
.dark-mode .custom-control-label::before, .dark-mode .form-control, .dark-mode div.dataTables_wrapper div.dataTables_filter input, div.dataTables_wrapper div.dataTables_filter .dark-mode input, .dark-mode .dual-listbox .dual-listbox__search, .dual-listbox .dark-mode .dual-listbox__search, .dark-mode .input-mail, .dark-mode .form-file-label, .dark-mode .input-group-text,
.dark-mode .form-select, .dark-mode .swal2-input, .dark-mode .swal2-file, .dark-mode .swal2-textarea,
.dark-mode .select2-container--default .select2-selection--single,
.dark-mode .select2-container--default .select2-selection--multiple, .dark-mode .select2-dropdown,
.dark-mode .note-popover .popover-content .dropdown-style > li[aria-label=pre],
.dark-mode .note-editor .note-toolbar .dropdown-style > li[aria-label=pre],
.dark-mode .link-bdr-t,
.link-tidy .dark-mode li + li,
.link-list-opt .dark-mode li + li,
.link-list-plain .dark-mode li + li, .dark-mode .link-check + .link-check, .dark-mode .link-tidy li + li, .dark-mode .link-list + .link-list,
.dark-mode .link-list-opt li + li, .dark-mode .link-list-plain li, .dark-mode .link-list-plain li + li {
    border-color: #3b526f !important;
}
.dark-mode .custom-switch .custom-control-label::after {
    background-color: #869fbe !important;
}
.dark-mode .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff !important;
}
.dark-mode .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #6576ff !important;
    border-color: #6576ff !important;
}
.dark-mode .btn-trigger:before, .dark-mode .btn-trigger.active:hover:before, .dark-mode .nk-quick-nav-icon:before {
    background-color: #070a0f;
}
.dark-mode .dropdown-menu {
    background-color: #1b2633;
    border-color: #2a3a4e;
    box-shadow: 0 3px 20px 1px rgba(0, 0, 0, 0.4);
}
.dark-mode .dropdown-menu-s1 {
    border-top-color: #6576ff;
}
.dark-mode .link-list-plain a, .dark-mode .link-list-opt a, .dark-mode .link-check li a {
    color: #b6c6e3;
}
.dark-mode .link-list-plain a:hover, .dark-mode .link-list-opt a:hover, .dark-mode .link-check li a:hover {
    background: #2d3f55;
}
.dark-mode .border-transparent {
    border-color: transparent !important;
}
.dark-mode .note-editor .btn, .dark-mode .note-editor .dual-listbox .dual-listbox__button, .dual-listbox .dark-mode .note-editor .dual-listbox__button, .dark-mode .ql-picker, .dark-mode .tox .tox-tbtn__select-label, .dark-mode .tox .tox-mbtn__select-label, .dark-mode .lead-text span,
.dark-mode .data-list-s2 .data-label, .dark-mode .btn-trigger, .dark-mode .dropdown .btn.btn-icon:not(.btn-light), .dark-mode .dropdown .dual-listbox .btn-icon.dual-listbox__button:not(.btn-light), .dual-listbox .dark-mode .dropdown .btn-icon.dual-listbox__button:not(.btn-light), .dark-mode .dropdown .dt-buttons .btn.btn-secondary:not(.btn-light), .dt-buttons .dark-mode .dropdown .btn.btn-secondary:not(.btn-light), .dark-mode .dropdown .dual-listbox .dt-buttons .dual-listbox__button.btn-secondary:not(.btn-light), .dual-listbox .dt-buttons .dark-mode .dropdown .dual-listbox__button.btn-secondary:not(.btn-light), .dark-mode .dropdown .dt-buttons .dual-listbox .dual-listbox__button.btn-secondary:not(.btn-light), .dt-buttons .dual-listbox .dark-mode .dropdown .dual-listbox__button.btn-secondary:not(.btn-light), .dark-mode .list-step li.list-step-done {
    color: #8094ae;
}
.dark-mode .ql-fill, .dark-mode .ql-stroke.ql-fill, .dark-mode .tox .tox-tbtn svg {
    fill: #8094ae;
}
.dark-mode .ql-stroke {
    stroke: #8094ae;
}
.dark-mode .swal2-validation-message {
    background: #203247;
}
.dark-mode .team-info li span:first-child, .dark-mode .team-statistics li span:last-child, .dark-mode .project-progress-task,
.dark-mode .table, .dark-mode .nk-tb-list, .dark-mode .nk-tb-list .tb-amount span, .dark-mode .nk-tb-list .tb-amount .currency,
.dark-mode .tb-tnx-item .tb-tnx-total, .dark-mode .tb-odr-item .tb-odr-total, .dark-mode .tb-ticket-item td.tb-ticket-desc,
.dark-mode .dropdown-menu, .dark-mode .pln, .dark-mode .overline-title, .dark-mode .nk-block-des strong, .dark-mode .user-balance-sub span,
.dark-mode .data-item:hover .data-value, .dark-mode .data-item:hover .data-label,
.dark-mode .nk-notification-text, .dark-mode .profile-ud-value, .dark-mode .bq-note-meta span > span,
.dark-mode .tagify__tag > div, .dark-mode .popover-body, .dark-mode .input-mail::placeholder, .dark-mode .list-apps-title {
    color: #b6c6e3;
}
.dark-mode .nk-notification-text span, .dark-mode .is-unread .chat-context .text {
    color: #dfe9fe;
}
.dark-mode .nav-tabs .nav-link {
    color: #b6c6e3;
}
.dark-mode .nav-tabs .nav-link.active {
    color: #6576ff;
}
.dark-mode .nav-tabs .nav-link:hover {
    color: #fff;
}
.dark-mode .link-list-menu a, .dark-mode .list-plain a {
    color: #8094ae;
}
.dark-mode .link-list-menu a:hover, .dark-mode .link-list-menu a.active, .dark-mode .list-plain a:hover, .dark-mode .list-plain a.active {
    color: #6576ff;
}
.dark-mode .nav-switch .nav-link.active, .dark-mode .list-apps a:hover .list-apps-title {
    color: #fff;
}
.dark-mode .nk-tb-item:not(.nk-tb-head):hover, .dark-mode .nk-tb-item:not(.nk-tb-head).seleted {
    box-shadow: 0 2px 15px -4px rgba(0, 0, 0, 0.7);
}
.dark-mode .nk-tb-item:hover .nk-tb-action-hidden, .dark-mode .bq-note-text,
.dark-mode .nk-tb-item:not(.nk-tb-head):hover, .dark-mode .nk-tb-item:not(.nk-tb-head).seleted {
    background: #141c26;
}
.dark-mode .nk-apps-sidebar .dropdown-menu .lead-text, .dark-mode .sp-plan-amount, .dark-mode .list-step li.list-step-current,
.dark-mode .nk-tb-list .tb-lead, .dark-mode .nk-tb-list .tb-amount, .dark-mode .nk-support-content .title, .dark-mode .nk-sale-data .amount {
    color: #fff;
}
.dark-mode .nk-support-content .time, .dark-mode .page-item.disabled .page-link, .dark-mode .card-hint, .dark-mode .list-step li {
    color: #526484;
}
.dark-mode .nk-order-ovwg-data .title .icon, .dark-mode .timeline-item:not(:last-child):before,
.dark-mode .timeline-status.is-outline:after {
    background-color: #2a3a4e;
}
.dark-mode .nk-footer {
    background-color: #101924;
}
.dark-mode .nk-order-ovwg-data .info strong, .dark-mode .user-activity .amount, .dark-mode .invest-data-history .amount,
.dark-mode .analytic-data .amount, .dark-mode .traffic-channel-data .amount, .dark-mode .analytics-map-data .amount,
.dark-mode .device-status-data .amount, .dark-mode .invest-ov .amount, .dark-mode .profile-balance-amount .number {
    color: #fff;
}
.dark-mode .invest-ov:not(:last-child) {
    border-color: #3b526f;
}
.dark-mode .nk-header .dropdown-menu .lead-text, .dark-mode .nk-sidebar-bar .dropdown-menu .lead-text {
    color: #fff;
}
.dark-mode .nk-aside,
.dark-mode .nk-header, .dark-mode .nk-header.is-light:not([class*=bg-]),
.dark-mode .nk-sidebar, .dark-mode .nk-sidebar.is-light, .dark-mode .nk-sidebar-head {
    border-color: #203247 !important;
}
.dark-mode .nk-aside,
.dark-mode .nk-header, .dark-mode .nk-header.is-light:not([class*=bg-]),
.dark-mode .nk-sidebar, .dark-mode .nk-sidebar.is-light, .dark-mode .nk-header.is-theme:not([class*=bg-]) {
    background: #101924;
}
.dark-mode .nk-chat-aside-user .title, .dark-mode .nk-file-name, .dark-mode .nk-file-name-text a.title,
.dark-mode .is-unread .nk-ibx-context-text .heading, .dark-mode .chat-profile-settings .custom-control-sm .custom-control-label,
.dark-mode .attach-info, .dark-mode .profile-stats .amount, .dark-mode .is-unread .chat-from .name {
    color: #fff;
}
.dark-mode .nk-fmg-menu-item .icon, .dark-mode .nk-ibx-menu-item .icon {
    color: #8094ae;
}
.dark-mode .chat-upload-option {
    background-color: #18212d;
}
.dark-mode .nk-fmg-menu-text, .dark-mode .nk-ibx-label-text, .dark-mode .nk-ibx-menu-text, .dark-mode .attach-item a, .dark-mode .user-contacts li,
.dark-mode .nk-ibx-context-text .heading, .dark-mode .chat-option-link:hover .lead-text, .dark-mode .chat-from .name, .dark-mode .user-plan-title {
    color: #b6c6e3;
}
.dark-mode .nk-file-name-text a.title:hover, .dark-mode .active > .nk-fmg-menu-item .icon, .dark-mode .active .nk-ibx-menu-text, .dark-mode .active .nk-ibx-menu-item .icon {
    color: #6576ff;
}
.dark-mode .nk-chat, .dark-mode .nk-chat-aside, .dark-mode .nk-chat-profile, .dark-mode .nk-chat-head, .dark-mode .chat-profile-group,
.dark-mode .nk-fmg, .dark-mode .nk-fmg-aside, .dark-mode .nk-fmg-body-head, .dark-mode .nk-fmg-switch,
.dark-mode .nk-files-view-grid .nk-file, .dark-mode .nk-files-view-group .nk-file,
.dark-mode .nk-ibx, .dark-mode .nk-ibx-aside, .dark-mode .nk-ibx-head, .dark-mode .nk-ibx-item, .dark-mode .nk-reply-form,
.dark-mode .nk-reply-form-header, .dark-mode .nk-reply-form-tools, .dark-mode .nk-reply-form-field:not(:last-child),
.dark-mode .nk-msg, .dark-mode .nk-msg-head, .dark-mode .nk-msg-profile, .dark-mode .attach-files, .dark-mode .attach-foot,
.dark-mode .nk-msg-item:not(:last-child), .dark-mode .nk-msg-aside, .dark-mode .nk-msg-nav,
.dark-mode .nk-msg-nav .search-wrap,
.dark-mode .nk-files-group > .title, .dark-mode .nk-file-share-header,
.dark-mode .nk-files-view-list .nk-file > div {
    border-color: #203247 !important;
}
.dark-mode .nk-block-subhead, .dark-mode .data-list-s2 .data-head, .dark-mode .nk-profile-toggle, .dark-mode .nk-profile-content, .dark-mode .user-account-links {
    border-color: #2b3748;
}
.dark-mode .nk-upload-item, .dark-mode .dropzone {
    border-color: #354358 !important;
}
.dark-mode .data-list-s2 .data-head {
    background: transparent !important;
}
.dark-mode .chat-sap-meta:before, .dark-mode .chat-sap-meta:after,
.dark-mode .active > .nk-fmg-menu-item, .dark-mode .nk-fmg-menu-item:hover,
.dark-mode .nk-ibx-status, .dark-mode .nk-ibx-reply-item:not(:last-child):after,
.dark-mode .nk-reply-meta-info:before, .dark-mode .nk-reply-meta-info:after {
    background: #203247;
}
.dark-mode .nk-chat, .dark-mode .nk-chat-aside, .dark-mode .nk-chat-profile, .dark-mode .nk-chat-head, .dark-mode .chat-msg, .dark-mode .nk-chat-editor, .dark-mode .nk-chat-blank,
.dark-mode .nk-fmg, .dark-mode .nk-fmg-aside, .dark-mode .nk-fmg-body-head,
.dark-mode .nk-files-view-grid .nk-file, .dark-mode .nk-files-view-group .nk-file,
.dark-mode .nk-ibx, .dark-mode .nk-ibx-aside, .dark-mode .nk-ibx-item, .dark-mode .nk-ibx-view,
.dark-mode .nk-msg, .dark-mode .nk-msg-head, .dark-mode .nk-msg-profile, .dark-mode .nk-fmg-switch {
    background: #18212d;
}
.dark-mode .nk-files-view-list .nk-file.selected > div {
    background: transparent;
}
.dark-mode .nk-files-view-list .nk-file.selected {
    background: #203247;
}
.dark-mode .nk-ibx-status .progress {
    background: #18212d !important;
}
.dark-mode .nk-chat-panel, .dark-mode .chat-item:hover, .dark-mode .chat-item.current, .dark-mode .chat-item:hover .chat-actions, .dark-mode .chat-members .user-card:hover, .dark-mode .chat-members .user-actions, .dark-mode .nk-profile-content,
.dark-mode .nk-msg-item.active, .dark-mode .nk-msg-item.current, .dark-mode .channel-list a:hover, .dark-mode .channel-list a.active {
    background: #0d141d !important;
}
.dark-mode .fav-list .user-avatar:after {
    background: #445f80;
}
.dark-mode .nk-ibx-item:not(.no-hover):hover, .dark-mode .nk-ibx-item.active,
.dark-mode .nk-ibx-item:hover .ibx-actions-hidden, .dark-mode .nk-ibx-item:hover .ibx-actions,
.dark-mode .nk-ibx-label > li:hover, .dark-mode .nk-ibx-contact > li:hover,
.dark-mode .nk-ibx-menu li.active, .dark-mode .nk-ibx-menu li:hover, .dark-mode .dot-label:after, .dark-mode .attach-foot,
.dark-mode .nk-reply-from, .dark-mode .nk-reply-entry.note, .dark-mode .nk-msg-aside, .dark-mode .nk-msg-nav,
.dark-mode .nk-files-view-list .nk-file > div {
    background: #101924;
}
.dark-mode .is-unread .nk-ibx-context-text,
.dark-mode .nk-upload-info {
    color: #dfe9fe;
}
.dark-mode .nk-reply-msg-excerpt, .dark-mode .nk-ibx-context-text, .dark-mode .user-contacts li .icon, .dark-mode .nk-reply-tools .date {
    color: #8094ae;
}
.dark-mode .is-unread .nk-msg-sender .name {
    color: #fff;
}
.dark-mode .nk-reply-meta-info, .dark-mode .nk-reply-from {
    color: #7a8faa;
}
.dark-mode .nk-reply-meta-info span, .dark-mode .nk-reply-meta-info strong, .dark-mode .nk-reply-meta-info .who, .dark-mode .channel-list a {
    color: #b6c6e3;
}
.dark-mode .nk-reply-meta-info .whom {
    color: #6576ff;
}
.dark-mode .fc table.fc-scrollgrid {
    border-color: #203247;
}
.dark-mode .fc table td, .dark-mode .fc table th {
    border-color: #203247;
}
.dark-mode .fc .fc-list-event:hover td {
    background: #101924;
}
.dark-mode .fc.fc-theme-bootstrap5 .fc-list {
    border-color: #203247;
}
.dark-mode .fc .fc-theme-bootstrap5-shaded {
    background-color: #203247;
}
.dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .btn, .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox .dual-listbox__button, .dual-listbox .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox__button {
    color: #b6c6e3;
    border-color: #203247;
}
.dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .btn:disabled, .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox .dual-listbox__button:disabled, .dual-listbox .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox__button:disabled {
    color: #b6c6e3;
    border-color: #203247;
}
.dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .btn:hover, .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox .dual-listbox__button:hover, .dual-listbox .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox__button:hover, .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .btn:focus, .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox .dual-listbox__button:focus, .dual-listbox .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox__button:focus {
    color: #fff;
    background: #101924;
    border-color: #203247;
}
.dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .btn:focus, .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox .dual-listbox__button:focus, .dual-listbox .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox__button:focus {
    box-shadow: 0 0 0 0.2rem rgba(32, 50, 71, 0.5);
}
.dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .btn.active, .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .dual-listbox .active.dual-listbox__button, .dual-listbox .dark-mode .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .active.dual-listbox__button {
    color: #6576ff;
    border-color: #203247 !important;
    background: #101924;
    box-shadow: inset 0 0 4px -1px rgba(32, 50, 71, 0.25);
}
.dark-mode .fc-day {
    color: #b6c6e3;
}
.dark-mode .fc-day-other {
    color: #8094ae;
}
.dark-mode .fc-list-day, .dark-mode .fc-col-header-cell {
    color: #fff;
}
.dark-mode .fc .fc-list-empty {
    background: #101924;
}
.dark-mode .fc-timegrid-event-harness-inset .fc-timegrid-event, .dark-mode .fc-timegrid-event.fc-event-mirror {
    box-shadow: none;
}
.dark-mode a.fc-event-primary-dim {
    background-color: #242e4d !important;
    border-color: #242e4d !important;
}
.dark-mode .modal-header.fc-event-primary-dim {
    background-color: #242e4d !important;
    border-color: #1c243c !important;
}
.dark-mode span.fc-event-primary-dim .dot {
    background-color: #242e4d !important;
}
.dark-mode .fc-event-primary-dim:not(a) .fc-list-event-dot {
    background-color: #242e4d !important;
}
.dark-mode a.fc-event-success-dim {
    background-color: #193e40 !important;
    border-color: #193e40 !important;
}
.dark-mode .modal-header.fc-event-success-dim {
    background-color: #193e40 !important;
    border-color: #122c2e !important;
}
.dark-mode span.fc-event-success-dim .dot {
    background-color: #193e40 !important;
}
.dark-mode .fc-event-success-dim:not(a) .fc-list-event-dot {
    background-color: #193e40 !important;
}
.dark-mode a.fc-event-info-dim {
    background-color: #163948 !important;
    border-color: #163948 !important;
}
.dark-mode .modal-header.fc-event-info-dim {
    background-color: #163948 !important;
    border-color: #102a34 !important;
}
.dark-mode span.fc-event-info-dim .dot {
    background-color: #163948 !important;
}
.dark-mode .fc-event-info-dim:not(a) .fc-list-event-dot {
    background-color: #163948 !important;
}
.dark-mode a.fc-event-warning-dim {
    background-color: #393828 !important;
    border-color: #393828 !important;
}
.dark-mode .modal-header.fc-event-warning-dim {
    background-color: #393828 !important;
    border-color: #2a291d !important;
}
.dark-mode span.fc-event-warning-dim .dot {
    background-color: #393828 !important;
}
.dark-mode .fc-event-warning-dim:not(a) .fc-list-event-dot {
    background-color: #393828 !important;
}
.dark-mode a.fc-event-danger-dim {
    background-color: #372931 !important;
    border-color: #372931 !important;
}
.dark-mode .modal-header.fc-event-danger-dim {
    background-color: #372931 !important;
    border-color: #281e24 !important;
}
.dark-mode span.fc-event-danger-dim .dot {
    background-color: #372931 !important;
}
.dark-mode .fc-event-danger-dim:not(a) .fc-list-event-dot {
    background-color: #372931 !important;
}
.dark-mode a.fc-event-secondary-dim {
    background-color: #1e2938 !important;
    border-color: #1e2938 !important;
}
.dark-mode .modal-header.fc-event-secondary-dim {
    background-color: #1e2938 !important;
    border-color: #151d27 !important;
}
.dark-mode span.fc-event-secondary-dim .dot {
    background-color: #1e2938 !important;
}
.dark-mode .fc-event-secondary-dim:not(a) .fc-list-event-dot {
    background-color: #1e2938 !important;
}
.dark-mode a.fc-event-dark-dim {
    background-color: #19232f !important;
    border-color: #19232f !important;
}
.dark-mode .modal-header.fc-event-dark-dim {
    background-color: #19232f !important;
    border-color: #10171e !important;
}
.dark-mode span.fc-event-dark-dim .dot {
    background-color: #19232f !important;
}
.dark-mode .fc-event-dark-dim:not(a) .fc-list-event-dot {
    background-color: #19232f !important;
}
.dark-mode a.fc-event-blue-dim {
    background-color: #21334c !important;
    border-color: #21334c !important;
}
.dark-mode .modal-header.fc-event-blue-dim {
    background-color: #21334c !important;
    border-color: #19273a !important;
}
.dark-mode span.fc-event-blue-dim .dot {
    background-color: #21334c !important;
}
.dark-mode .fc-event-blue-dim:not(a) .fc-list-event-dot {
    background-color: #21334c !important;
}
.dark-mode a.fc-event-azure-dim {
    background-color: #182e4c !important;
    border-color: #182e4c !important;
}
.dark-mode .modal-header.fc-event-azure-dim {
    background-color: #182e4c !important;
    border-color: #122239 !important;
}
.dark-mode span.fc-event-azure-dim .dot {
    background-color: #182e4c !important;
}
.dark-mode .fc-event-azure-dim:not(a) .fc-list-event-dot {
    background-color: #182e4c !important;
}
.dark-mode a.fc-event-indigo-dim {
    background-color: #1d2742 !important;
    border-color: #1d2742 !important;
}
.dark-mode .modal-header.fc-event-indigo-dim {
    background-color: #1d2742 !important;
    border-color: #151d30 !important;
}
.dark-mode span.fc-event-indigo-dim .dot {
    background-color: #1d2742 !important;
}
.dark-mode .fc-event-indigo-dim:not(a) .fc-list-event-dot {
    background-color: #1d2742 !important;
}
.dark-mode a.fc-event-purple-dim {
    background-color: #282c4d !important;
    border-color: #282c4d !important;
}
.dark-mode .modal-header.fc-event-purple-dim {
    background-color: #282c4d !important;
    border-color: #1f223c !important;
}
.dark-mode span.fc-event-purple-dim .dot {
    background-color: #282c4d !important;
}
.dark-mode .fc-event-purple-dim:not(a) .fc-list-event-dot {
    background-color: #282c4d !important;
}
.dark-mode a.fc-event-pink-dim {
    background-color: #3b2b3f !important;
    border-color: #3b2b3f !important;
}
.dark-mode .modal-header.fc-event-pink-dim {
    background-color: #3b2b3f !important;
    border-color: #2d2130 !important;
}
.dark-mode span.fc-event-pink-dim .dot {
    background-color: #3b2b3f !important;
}
.dark-mode .fc-event-pink-dim:not(a) .fc-list-event-dot {
    background-color: #3b2b3f !important;
}
.dark-mode a.fc-event-orange-dim {
    background-color: #3b3533 !important;
    border-color: #3b3533 !important;
}
.dark-mode .modal-header.fc-event-orange-dim {
    background-color: #3b3533 !important;
    border-color: #2d2927 !important;
}
.dark-mode span.fc-event-orange-dim .dot {
    background-color: #3b3533 !important;
}
.dark-mode .fc-event-orange-dim:not(a) .fc-list-event-dot {
    background-color: #3b3533 !important;
}
.dark-mode a.fc-event-teal-dim {
    background-color: #193a3d !important;
    border-color: #193a3d !important;
}
.dark-mode .modal-header.fc-event-teal-dim {
    background-color: #193a3d !important;
    border-color: #12292b !important;
}
.dark-mode span.fc-event-teal-dim .dot {
    background-color: #193a3d !important;
}
.dark-mode .fc-event-teal-dim:not(a) .fc-list-event-dot {
    background-color: #193a3d !important;
}
.dark-mode .code-block, .dark-mode .card-preview,
.dark-mode .card .card-inner + .table .tb-tnx-head,
.dark-mode .card-bordered, .dark-mode .kanban-add-task, .dark-mode .kanban-board-header, .dark-mode .kanban-item, .dark-mode .kanban-board .kanban-drag:empty,
.dark-mode .accordion-item:not(:last-child) .accordion-head,
.dark-mode .accordion-item:not(:last-child) .accordion-inner,
.dark-mode .accordion-item:last-child .accordion-inner,
.dark-mode .nk-download {
    border-color: #203247;
}
.dark-mode .accordion:not(.accordion-s2):not(.accordion-s3) {
    border-color: #203247 !important;
}
.dark-mode .card.bg-light .card-header, .dark-mode .card.bg-lighter .card-header, .dark-mode .dual-listbox .card.dual-listbox__item:hover .card-header, .dual-listbox .dark-mode .card.dual-listbox__item:hover .card-header {
    background: rgba(0, 0, 0, 0.2);
}
.dark-mode .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col {
    border-top-color: #203247;
    border-bottom-color: #203247;
}
.dark-mode .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col:first-child {
    border-left-color: #203247;
}
.dark-mode .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col:last-child {
    border-right-color: #203247;
}
.dark-mode .modal-footer.bg-light {
    background-color: #141c26 !important;
}
.dark-mode .kanban-primary {
    border-top-color: #6576ff;
}
.dark-mode .kanban-success {
    border-top-color: #1ee0ac;
}
.dark-mode .kanban-info {
    border-top-color: #09c2de;
}
.dark-mode .kanban-warning {
    border-top-color: #f4bd0e;
}
.dark-mode .kanban-danger {
    border-top-color: #e85347;
}
.dark-mode.ui-bordered .card,
.dark-mode.ui-bordered .code-block,
.dark-mode.ui-bordered .accordion:not(.accordion-s2):not(.accordion-s3),
.dark-mode.ui-bordered .card .card-inner + .table .tb-tnx-head,
.dark-mode.ui-bordered .card-bordered,
.dark-mode.ui-bordered .nk-download {
    border-color: #203247;
}
.dark-mode.ui-bordered .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col {
    border-top-color: #203247;
    border-bottom-color: #203247;
}
.dark-mode.ui-bordered .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col:first-child {
    border-left-color: #203247;
}
.dark-mode.ui-bordered .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col:last-child {
    border-right-color: #203247;
}
.dark-mode .nk-order-ovwg-data.buy {
    border-color: #1c9479;
}
.dark-mode .nk-order-ovwg-data.sell {
    border-color: #4654ab;
}
.dark-mode .nk-sidebar-overlay {
    background: rgba(0, 0, 0, 0.6);
}
.dark-mode .toggle-overlay, .dark-mode .nk-chat-profile-overlay {
    background: rgba(7, 10, 15, 0.75);
}
.dark-mode .swal2-container.swal2-backdrop-show {
    background: rgba(0, 0, 0, 0.85);
}
.dark-mode .modal-backdrop {
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.9);
}
.dark-mode .invoice-wrap, .dark-mode .sp-pdl-item {
    background: #18212d;
}
.dark-mode .support-topic-block:link:hover, .dark-mode .tb-ticket-item.is-unread {
    background: #101924;
}
.dark-mode .nk-wg1-action .link:hover, .dark-mode .sp-plan-action, .dark-mode .sp-package-price {
    background: #1b2633;
}
.dark-mode .invoice-wrap, .dark-mode .invoice-bills .table tfoot, .dark-mode .support-queue-item:not(:first-child), .dark-mode .support-topic-meta,
.dark-mode .ticket-msg-reply, .dark-mode .nk-wg1-action, .dark-mode .sp-plan-action, .dark-mode .sp-package-price, .dark-mode .sp-package-desc, .dark-mode .sp-pdl-item {
    border-color: #203247;
}
.dark-mode .sp-package-choose ~ label:before {
    border-color: #3b526f;
}
.dark-mode .form-editor-action {
    border-color: #3b526f !important;
}
.dark-mode .author-list.is-grouped .user-avatar {
    border-color: #18212d;
}
.dark-mode .tb-ticket-item.is-unread .title, .dark-mode .price-plan-amount .amount, .dark-mode .sp-package-title {
    color: #fff;
}
.dark-mode .support-topic-context {
    color: #8094ae;
}
.dark-mode .ui-bordered .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col:first-child,
.dark-mode .ui-bordered .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col {
    border-color: #203247 !important;
}
.dark-mode .nk-tb-list.is-separate .nk-tb-item > .nk-tb-col,
.dark-mode .nk-tb-list.is-separate .nk-tb-item:hover .nk-tb-action-hidden {
    background-color: #18212d;
}
.dark-mode .nk-tb-list .tb-product .title {
    color: #fff;
}
.dark-mode .dual-listbox .dual-listbox__available,
.dark-mode .dual-listbox .dual-listbox__selected {
    border-color: #3b526f;
}
.dark-mode .dual-listbox .dual-listbox__title {
    border-left-color: #3b526f;
    border-right-color: #3b526f;
    border-top-color: #3b526f;
}
.dark-mode .dual-listbox .dual-listbox__item {
    border-bottom-color: #3b526f;
}
.dark-mode .input-group-addon {
    background-color: #1f2b3a;
    border-color: #3b526f;
}
.dark-mode .border-light {
    border-color: #203247 !important;
}
.dark-mode div.dt-button-info {
    background-color: #18212d;
}
.dark-mode div.dt-button-info h2, .dark-mode div.dt-button-info .h2 {
    background-color: #131a23;
}
.dark-mode div.dt-button-info h2, .dark-mode div.dt-button-info .h2 {
    border-color: #203247;
}
.dark-mode .dropzone {
    background: #101924;
}
.dark-mode .image-control .custom-control-input:checked ~ .custom-control-label:before {
    border-color: #3b526f;
}
.dark-mode .image-control .custom-control-label {
    background-color: #1f2b3a;
}
.dark-mode .custom-control-pro .custom-control-label {
    background-color: #18212d;
    border-color: #3b526f;
}
.dark-mode .custom-control.color-control .custom-control-label::before {
    background: transparent !important;
}
.dark-mode .slick-dots li button {
    background-color: #101924;
}
.dark-mode .slick-dots li.slick-active button {
    background-color: #6576ff;
}
.dark-mode .slick-next, .dark-mode .slick-prev {
    color: #fff;
    background: #18212d;
    border-color: #203247;
}
.dark-mode .slick-next:hover, .dark-mode .slick-prev:hover {
    color: #fff;
    background: #6576ff;
    border-color: #6576ff;
}
.dark-mode .slick-disabled .slick-next, .dark-mode .slick-disabled .slick-prev {
    color: #dbdfea;
}
.dark-mode .slick-disabled .slick-next:hover, .dark-mode .slick-disabled .slick-prev:hover {
    color: #dbdfea;
    background: #18212d;
    border-color: #203247;
}
.dark-mode .pricing-head {
    border-color: #203247;
}
.dark-mode .pricing-amount .amount {
    color: #fff;
}
.dark-mode .product-title a {
    color: #fff;
}
.dark-mode .product-gallery {
    border-color: #203247;
}
.dark-mode .product-gallery .slider-nav .slider-item .thumb {
    border-color: #203247;
}
.dark-mode .product-gallery .slider-nav .slider-item.slick-current .thumb {
    border-color: #6576ff;
}
.dark-mode .invoice-wrap {
    background-color: #18212d;
    border-color: #203247;
}
.dark-mode .invoice-bills .table tfoot {
    border-color: #203247;
}
.dark-mode .nk-add-product {
    background: #101924;
    box-shadow: -10px 15px 30px 5px rgba(0, 0, 0, 0.4);
}
.dark-mode .noUi-target {
    background: #33465f;
}
.dark-mode .noUi-handle:before, .dark-mode .noUi-handle:after {
    background: #6188b9;
}
.dark-mode .noUi-handle {
    border-color: #6188b9;
    background: #080d12;
}
.dark-mode .noUi-active {
    box-shadow: inset 0 0 1px #000, inset 0 1px 7px #000, 0 3px 6px -3px #000;
}
.dark-mode input:-webkit-autofill,
.dark-mode input:-webkit-autofill:hover,
.dark-mode input:-webkit-autofill:focus,
.dark-mode textarea:-webkit-autofill,
.dark-mode textarea:-webkit-autofill:hover,
.dark-mode textarea:-webkit-autofill:focus,
.dark-mode select:-webkit-autofill,
.dark-mode select:-webkit-autofill:hover,
.dark-mode select:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
}

@media (max-width: 1199.98px) {
    .dark-mode .nk-menu-main .nk-menu-sub {
        background: transparent;
    }
}
@media (max-width: 576px) {
    .dark-mode .nk-block-tools-toggle .toggle-expand-content {
        background-color: #243244;
    }
}
.dark-mode .pro-control .custom-control-label {
    border-color: #203247;
}
.dark-mode .col-sep > * + * {
    border-color: #203247;
}
.dark-mode .col-sep-vr > * + * {
    border-color: #203247;
}
.dark-mode .page-item.active .page-link {
    color: #fff !important;
    background-color: #6576ff !important;
    border-color: #6576ff !important;
}

/*! END @iO */


#overlay{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.1);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
.is-hide{
    display:none;
}



@media (min-width: 576px) {
    .plan-iv-actions {
        padding-top: 3.5rem;
    }
}
.invest-cc-dropdown {
    width: 100%;
}
.invest-cc-dropdown .dropdown-indicator:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 56px;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8094ae;
    opacity: 0.5;
}
.invest-cc-dropdown .dropdown-menu {
    margin-top: -78px;
}
.invest-cc-dropdown .dropdown-menu[x-placement=top-start] {
    margin-top: 0;
    margin-bottom: -78px;
}
.invest-cc-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.invest-cc-choosen, .invest-cc-chosen {
    display: block;
    width: 100%;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    background: #fff;
}
.invest-cc-opt {
    display: block;
}
.invest-pm-list {
    border: 1px solid #dbdfea;
    background: #fff;
    border-radius: 4px;
}
.invest-pm-item {
    position: relative;
}
.invest-pm-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.invest-pm-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 16px 20px 16px 60px;
    cursor: pointer;
}
.invest-pm-label:before, .invest-pm-label:after {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    height: 24px;
    width: 24px;
    border-radius: 50%;
}
.invest-pm-label:before {
    content: "";
    border: 2px solid #dbdfea;
}
.invest-pm-label:after {
    font-family: "Nioicon";
    content: "\e9be";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #0971fe;
    transition: opacity 0.3s;
    opacity: 0;
}
.invest-pm-label .pm-name {
    font-size: 14px;
    color: #364a63;
}
.invest-pm-label .pm-icon {
    display: inline-flex;
    font-size: 24px;
    color: #8094ae;
}
.invest-pm-control {
    position: absolute;
    top: 0;
    height: 1px;
    width: 1px;
    opacity: 0;
}
.invest-pm-control:checked ~ .buysell-pm-label {
    cursor: default;
}
.invest-pm-control:checked ~ .buysell-pm-label:after {
    opacity: 1;
}
.invest-field {
    margin-bottom: 1.5rem !important;
}
.invest-field .form-control-amount {
    padding: 1rem 4rem 1.25rem 1.5rem;
    height: 3rem;
    font-size: 1.25rem;
    color: #8094ae;
    border-color: #dbdfea;
}
.invest-field .form-control-amount ~ .form-range-slider {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}
.invest-field .form-control-amount ~ .form-range-slider.noUi-horizontal {
    height: 4px;
    border-radius: 0 0 4px 4px;
}
.invest-field .form-control-amount ~ .form-range-slider.noUi-target {
    background: rgba(219, 223, 234, 0.6);
}
.invest-field .form-control-amount ~ .form-range-slider .noUi-connects {
    border-radius: 0 0 4px 4px;
}

.invest-amount-group {
    display: flex;
    flex-wrap: wrap;
}
.invest-amount-item {
    position: relative;
    flex-grow: 1;
    width: 33.33%;
}
.invest-amount-label {
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #dbdfea;
    background: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 1rem;
    padding: 1rem;
    width: 100%;
    margin-bottom: 0;
    transition: all 0.3s;
}
.invest-amount-control {
    position: absolute;
    opacity: 0;
    height: 1px;
    width: 1px;
}
.invest-amount-control:checked ~ .invest-amount-label {
    border-color: #0971fe;
    background-color: #0971fe;
    color: #fff;
}

@media (min-width: 576px) {
    .invest-amount-item {
        width: auto;
    }
}
.nk-ecwg .data {
    margin-top: 0.5rem;
}
.nk-ecwg .data:not(:last-child) {
    margin-bottom: 2rem;
}
.nk-ecwg .data-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nk-ecwg .data-group .data {
    margin: 0;
    padding-right: 20px;
}
.nk-ecwg4 {
    display: flex;
    flex-direction: column;
}
.nk-ecwg4-ck {
    height: 180px;
    width: 180px;
    margin-right: 2.5rem;
}
.nk-ecwg4-legends {
    flex-grow: 1;
    padding: 1rem 0;
}
.nk-ecwg4-legends li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}
.nk-ecwg4-legends .title {
    display: flex;
    align-items: center;
}
.nk-ecwg4-legends .title .dot {
    margin-right: 0.5rem;
}

.nk-iv-wg4 .lead-text {
    font-weight: 400;
}
.nk-iv-wg4-title {
    margin-bottom: 0.75rem;
}
.nk-iv-wg4-sub {
    padding: 1.25rem 1.5rem;
}
.nk-iv-wg4-sub:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}
.card .nk-iv-wg4-sub:last-child {
    border-radius: 0 0 3px 3px;
}
.nk-iv-wg4-sub .btn, .nk-iv-wg4-sub .dual-listbox .dual-listbox__button, .dual-listbox .nk-iv-wg4-sub .dual-listbox__button {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.nk-iv-wg4-overview {
    display: flex;
    flex-wrap: wrap;
}
.nk-iv-wg4-overview li {
    width: 50%;
}
.nk-iv-wg4-list li {
    display: flex;
    justify-content: space-between;
}
.nk-iv-wg4-list li:not(:last-child) {
    margin-bottom: 0.25rem;
}

@media (max-width: 420px) {
    .nk-iv-wg4-overview li {
        width: 100%;
    }
}
.nk-iv-wg5 {
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}
.nk-iv-wg5-head {
    margin-bottom: 1rem;
}
.nk-iv-wg5-title {
    margin-bottom: 0.25rem;
}
.nk-iv-wg5-subtitle {
    color: #8094ae;
}
.nk-iv-wg5-ck {
    margin-top: auto;
    position: relative;
    display: inline-block;
}
.nk-iv-wg5-ck-result {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.nk-iv-wg5-ck-result .text-lead {
    font-size: 40px;
    font-weight: 300;
    color: #364a63;
    line-height: 1.3;
}
.nk-iv-wg5-ck-result .text-lead.sm {
    font-size: 30px;
}
.nk-iv-wg5-ck-result .text-sub {
    font-size: 12px;
    font-weight: 500;
    color: #8094ae;
}
.nk-iv-wg5-ck-minmax {
    display: flex;
    justify-content: space-between;
    color: #8094ae;
    font-size: 12px;
}

.featured-card {
    position: relative;
    overflow: hidden;
}
.featured-action {
    position: absolute;
    height: 77px;
    width: 77px;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #f5f6fa;
    padding: 1rem 1.1875rem;
    border-radius: 50%;
    font-size: 1.25rem;
    color: #364a63;
}
.featured-action:hover {
    background-color: #0971fe;
    color: #fff;
}

.nk-coin-ovwg6 {
    display: flex;
}
.nk-coin-ovwg6-ck {
    flex-grow: 1;
    height: 165px;
}
.nk-coin-ovwg6-legends {
    flex-shrink: 0;
}
.nk-coin-ovwg6-legends li {
    display: flex;
    align-items: center;
    line-height: 1.25rem;
    font-size: 12px;
    padding: 0.25rem 0;
    color: #8094ae;
}
.nk-coin-ovwg6-legends li .dot {
    margin-right: 0.5rem;
}

.asterisk a {
    position: relative;
    color: #8094ae;
    display: inline-flex;
}
.asterisk a:hover, .asterisk a.active {
    color: #ffa353;
}
.asterisk a:hover .asterisk-on, .asterisk a.active .asterisk-on {
    opacity: 1;
}
.asterisk a.active:hover .asterisk-on {
    opacity: 0;
}
.asterisk-on {
    opacity: 0;
    position: absolute;
    left: 0;
    color: #ffa353;
    z-index: 1;
    transition: opacity 0.2s;
}