/*
*/

.nk-sidebar {
    background: #0c8a80 !important;
    border-right: 1px solid #0c8a80 !important;
}

.nk-menu-heading {
    color: #fff !important;
}

.nk-menu-link {
    color: #000;
}

.nk-menu-icon {
    color: #000;
}

.nk-menu-toggle:after {
    color: #000 !important;
}

.nk-menu-toggle:after:hover {
    color: #a61c27 !important;
}

.nk-menu-link:hover,
.active>.nk-menu-link {
    color: #a61c27;
    background: #fff;
}

.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: #a61c27;
    background: #fff;
}

.nk-menu-sub .nk-menu-link {
    color: wheat !important
}

/* .nk-menu-icon:hover{
    color:#a61c27 !important;
} */



.scroll {
    overflow: scroll;
}

/* width */
.scroll::-webkit-scrollbar {
    width: 10px !important;
}

/* Track */
.scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f1f1f1;
    border-radius: 10px;
}

/* Handle */
.scroll::-webkit-scrollbar-thumb {
    background: #0c8a80;
    border-radius: 10px;
}

/* Handle on hover */
.scroll::-webkit-scrollbar-thumb:hover {
    background: #67A8E4;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #1a222b;
    z-index: 9999;
}

/* PACE TOP */
@-webkit-keyframes pace-spinner {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes pace-spinner {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes pace-spinner {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes pace-spinner {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.pace-top .pace .pace-progress {
    top: 0 !important;
}

.pace-top .pace .pace-activity {
    top: 15px !important;
}

.pace {
    background: 0 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1080;
    opacity: 1;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.pace .pace-progress {
    top: 0;
    height: 3px;
    background: #bfbfbf;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.pace .pace-progress .pace-progress-inner {
    display: none;
}

.pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 1080;
    top: 63px;
    right: 10px;
    width: 15px;
    height: 15px;
    border: 2px solid transparent;
    border-top-color: #bfbfbf;
    border-left-color: #bfbfbf;
    -webkit-animation: pace-spinner .4s linear infinite;
    -moz-animation: pace-spinner .4s linear infinite;
    -ms-animation: pace-spinner .4s linear infinite;
    -o-animation: pace-spinner .4s linear infinite;
    animation: pace-spinner .4s linear infinite;
    -webkit-border-radius: 40px;
    border-radius: 40px;
}

@media (max-width:767.98px) {
    .pace .pace-activity {
        top: 113px;
    }
}

.pace.pace-inactive {
    display: block;
    opacity: 0;
}

.pace-done .pace.pace-inactive {
    display: block;
}

/* END PACE TOP */
#page-loader.fade {
    display: none;
}

#page-loader.fade.in,
#page-loader.fade.show {
    display: block;
}

#page-loader.fade.d-none .spinner {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none;
}

.center-screen {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    min-height: 100vh !important;
}

/* SPINNER */
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.spin {
    height: 36px;
    width: 36px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -18px 0 0 -18px;
    border: 2px solid rgba(255, 255, 255, .15);
    border-top: 2px solid #fff;
    -webkit-border-radius: 36px;
    border-radius: 36px;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -ms-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
}

.spin-small {
    height: 28px;
    width: 28px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -15px 0 0 -15px;
    border: 2px solid rgba(255, 255, 255, .15);
    border-top: 2px solid #fff;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -ms-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
}

/* SPINNER END */

.fs-6 {
    font-size: 6px;
}

.fs-7 {
    font-size: 7px;
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-900 {
    font-weight: 900 !important;
}


/* CARDS */
.cardcc {
    width: 300px;
    height: 190px;
    -webkit-perspective: 28%;
    -moz-perspective: 250px;
    perspective: 300px;

}

.cardcc__part {
    box-shadow: 1px 1px #aaa3a3;
    top: 0;
    position: absolute;
    z-index: 1000;
    left: 0;
    display: inline-block;
    width: 300px;
    height: 190px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #0c8a80;
    border-radius: 8px;

    -webkit-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.cardcc__front {
    padding: 18px;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
}

.cardcc__back {
    padding: 18px 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
}

.cardcc__black-line {
    margin-top: 5px;
    height: 38px;
    background-color: #303030;
}

.cardcc__logo {
    height: 16px;
}

.cardcc__front-logo {
    position: absolute;
    top: 18px;
    right: 18px;
}

.cardcc__square {
    border-radius: 5px;
    height: 30px;
}

.cardcc_numer {
    display: block;
    width: 100%;
    word-spacing: 4px;
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.cardcc__space-75 {
    width: 75%;
    float: left;
}

.cardcc__space-25 {
    width: 25%;
    float: left;
}

.cardcc__label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.cardcc__info {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cardcc__back-content {
    padding: 15px 15px 0;
}

.cardcc__secret--last {
    color: #303030;
    text-align: right;
    margin: 0;
    font-size: 14px;
}

.cardcc__secret {
    padding: 5px 12px;
    background-color: #fff;
    position: relative;
}

.cardcc__secret:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    height: calc(100% + 6px);
    width: calc(100% - 42px);
    border-radius: 4px;
    background: repeating-linear-gradient(45deg, #ededed, #ededed 5px, #f9f9f9 5px, #f9f9f9 10px);
}

.cardcc__back-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.cardcc__back-square {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.cardcc:hover .cardcc__front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);

}

.cardcc:hover .cardcc__back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
}

.cardcc1 {
    width: 320px;
    height: 190px;
    -webkit-perspective: 98%;
    -moz-perspective: 600px;
    perspective: 600px;

}

.cardcc1__part {
    box-shadow: 1px 1px #aaa3a3;
    top: 0;
    position: absolute;
    z-index: 1000;
    left: 0;
    display: inline-block;
    width: 320px;
    height: 190px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #a61c27;
    border-radius: 8px;

    -webkit-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.cardcc1__front {
    padding: 18px;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
}

.cardcc1__back {
    padding: 18px 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
}

.cardcc1__black-line {
    margin-top: 5px;
    height: 38px;
    background-color: #303030;
}

.cardcc1__logo {
    height: 16px;
}

.cardcc1__front-logo {
    position: absolute;
    top: 18px;
    right: 18px;
}

.cardcc1__square {
    border-radius: 5px;
    height: 30px;
}

.cardcc1_numer {
    display: block;
    width: 100%;
    word-spacing: 4px;
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.cardcc1__space-75 {
    width: 75%;
    float: left;
}

.cardcc1__space-25 {
    width: 25%;
    float: left;
}

.cardcc1__label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.cardcc1__info {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cardcc1__back-content {
    padding: 15px 15px 0;
}

.cardcc1__secret--last {
    color: #303030;
    text-align: right;
    margin: 0;
    font-size: 14px;
}

.cardcc1__secret {
    padding: 5px 12px;
    background-color: #fff;
    position: relative;
}

.cardcc1__secret:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    height: calc(100% + 6px);
    width: calc(100% - 42px);
    border-radius: 4px;
    background: repeating-linear-gradient(45deg, #ededed, #ededed 5px, #f9f9f9 5px, #f9f9f9 10px);
}

.cardcc1__back-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.cardcc1__back-square {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.cardcc1:hover .cardcc1__front {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);

}

.cardcc1:hover .cardcc1__back {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
}


/* CARD WIDGET COLORD EXTRACT*/
.card-wg:after {
    content: "";
    position: absolute;
    height: 0.25rem;
    background-color: transparent;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 0 0 3px 3px;
}

.card-wg.on-left:after {
    top: 0;
    right: auto;
    height: 100%;
    width: 0.25rem;
    border-radius: 3px 0 0 3px;
}

.card-wg.is-primary:after {
    background-color: #037dff;
}

.card-wg.is-secondary:after,
.card-wg.is-base:after {
    background-color: #364a63;
}

.card-wg.is-alter:after {
    background-color: #816bff;
}

.card-wg.is-success:after {
    background-color: #1ee0ac;
}

.card-wg.is-warning:after {
    background-color: #f4bd0e;
}

.card-wg.is-danger:after {
    background-color: #e85347;
}

.card-wg.is-info:after {
    background-color: #33b5e5;
}

.card-wg.is-gray:after {
    background-color: #8091a7;
}


/* RECENT ACTIVITIES ON INDEX EXTRACT */

.nk-odr-list {
    font-size: 0.8125rem;
}

.nk-odr-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    position: relative;
}

.nk-odr-item:not(:last-child) {
    border-bottom: 1px solid #dbdfea;
}

.nk-odr-item.nk-odr-item-head {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nk-odr-item-head .nk-odr-col {
    color: #526484;
    font-size: 13px;
    font-weight: 500;
}

.nk-odr-item.is-pending:after,
.nk-odr-item.is-running:after,
.nk-odr-item.is-cancelled:after,
.nk-odr-item.is-deleted:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    left: 0;
    border-radius: 0;
    top: 0;
}

.nk-odr-item.is-running {
    background: rgba(3, 125, 255, 0.04);
}

.nk-odr-item.is-running:after {
    background: #037dff;
}

.nk-odr-item.is-pending {
    background: rgba(51, 181, 229, 0.04);
}

.nk-odr-item.is-pending:after {
    background: #33b5e5;
}

.nk-odr-item.is-cancelled {
    opacity: 0.8;
    background: rgba(232, 83, 71, 0.04);
}

.nk-odr-item.is-cancelled:after {
    background: #e85347;
}

.nk-odr-item.is-deleted {
    opacity: 0.8;
    background: rgba(54, 74, 99, 0.04);
}

.nk-odr-item.is-deleted:after {
    background: #8094ae;
}

.nk-odr-col {
    display: inline-flex;
    flex-direction: column;
}

.nk-odr-col-amount {
    margin-left: auto;
    min-width: 90px;
}

.nk-odr-col-action {
    margin-left: 0.625rem;
    font-size: 0.9em;
}

.nk-odr-col-action .btn-icon {
    margin: 0 -0.75rem;
}

.nk-odr-info {
    display: inline-flex;
    align-items: center;
}

.nk-odr-badge {
    flex-shrink: 0;
    position: relative;
}

.nk-odr-badge+.nk-odr-data {
    margin-left: 10px;
}

.nk-odr-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    font-size: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.nk-odr-icon.sm {
    height: 20px;
    width: 20px;
    font-size: 14px;
}

.nk-odr-icon[class*="-btc"] {
    color: #f9841e;
    background: rgba(249, 132, 30, 0.2);
}

.nk-odr-icon[class*="-eth"] {
    color: #6174b9;
    background: rgba(97, 116, 185, 0.2);
}

.nk-odr-icon+.nk-odr-icon {
    transform: scale(0.6);
    position: absolute;
    right: -16px;
    bottom: -16px;
    font-size: 22px;
    background: #fff !important;
}

.nk-odr-data {
    flex-grow: 1;
}

.nk-odr-label {
    font-size: 0.9375em;
    line-height: 1.35em;
    font-weight: 500;
    color: #364a63;
    margin-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.nk-odr-label span {
    width: 90%;
}

.nk-odr-label .nk-odr-icon {
    margin-left: 0.5rem;
}

.nk-odr-meta {
    font-size: 11px;
    line-height: 1.2;
    color: #8094ae;
    margin-bottom: 0.125rem;
}

.nk-odr-meta span {
    margin-right: 0.75rem;
    display: inline-block;
}

.nk-odr-meta span+.dot-join:before {
    content: "";
    font-family: "Nioicon";
    display: inline-block;
    padding-right: 0.25rem;
    margin-left: -0.5rem;
    line-height: 1;
}

.nk-odr-amount {
    text-align: right;
    line-height: 1.6;
}

.nk-odr-amount .number {
    font-size: 1.125em;
}

.nk-odr-amount .number-md {
    font-size: 1em;
}

.nk-odr-amount .number-sm {
    font-size: 11px;
    color: #526484;
}

.nk-odr-amount .number-sm span {
    color: #8094ae;
}

.nk-odr-amount .number,
.nk-odr-amount .number-md {
    white-space: nowrap;
    color: #364a63;
    font-weight: 500;
}

.nk-odr-amount .number span,
.nk-odr-amount .number-md span {
    color: #526484;
    font-weight: 400;
}

.nk-odr-amount .date,
.nk-odr-amount .status {
    font-size: 11px;
    color: #8094ae;
}

@media (max-width: 575.98px) {
    .nk-odr-list.is-stretch {
        margin-left: -18px;
        margin-right: -18px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .nk-odr-badge {
        margin-left: -0.25rem;
    }
}

@media (min-width: 576px) {
    .nk-odr-item {
        padding: 1.25rem 1.5rem;
    }

    .nk-odr-item.is-running,
    .nk-odr-item.is-pending,
    .nk-odr-item.is-cancelled,
    .nk-odr-item.is-deleted {
        left: -1px;
    }

    .nk-odr-col-action {
        margin-left: 1.25rem;
    }

    .nk-odr-list {
        font-size: 1rem;
    }

    .nk-odr-badge+.nk-odr-data {
        margin-left: 16px;
    }

    .nk-odr-icon {
        height: 44px;
        width: 44px;
        font-size: 24px;
    }

    .nk-odr-icon.sm {
        height: 24px;
        width: 24px;
        font-size: 16px;
    }

    .nk-odr-label {
        margin-bottom: 0.375rem;
    }

    .nk-odr-meta,
    .nk-odr-amount .number-sm,
    .nk-odr-amount .date,
    .nk-odr-amount .status {
        font-size: 12px;
    }
}

.is-compact .nk-odr-item {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.is-compact .nk-odr-label {
    margin-bottom: 0;
}

.is-compact .nk-odr-badge+.nk-odr-data {
    margin-left: 8px;
}

.is-compact .nk-odr-icon {
    height: 36px;
    width: 36px;
    font-size: 20px;
}

.is-compact .nk-odr-amount .number {
    font-size: 1em;
}

@media (min-width: 576px) {
    .is-compact .nk-odr-badge+.nk-odr-data {
        margin-left: 12px;
    }
}


/* CONTACT SUPPORT HELP ON INDEX EXTRACT */
.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-footer-copyright {
    color: #8094ae;
}

.nk-footer-copyright a {
    color: inherit;
}

.nk-footer-copyright a:hover {
    color: #037dff;
}

@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;
    }
}

@media (max-width: 767.98px) {
    .nk-footer {
        background-color: transparent;
        border-top: none;
        padding-top: 0.5rem;
    }

    .nk-footer-wrap {
        justify-content: center;
    }

    .nk-footer-copyright {
        width: 100%;
        text-align: center;
        padding-bottom: 0.375rem;
    }
}

.goog-te-combo {
    padding: 5px;
    cursor: pointer;
    border: 1px solid #dbdfea;
    height: calc(2.125rem + 2px);
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 400;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: none;
    transition: all 0.3s;
}


/* INVESTMENT PAGE EXTRACTS */

.nk-wgacc-group {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.nk-wgacc-group.has-graph {
    flex-wrap: nowrap;
    align-items: center;
}

.nk-wgacc-ck {
    position: relative;
    height: 50px;
    margin-bottom: 0.5rem;
}

.nk-wgacc-ck.lg {
    height: 95px;
}

.nk-wgacc-graph {
    height: 40px;
    width: 90px;
    margin-bottom: 0.25rem;
}

.has-graph .nk-wgacc-graph {
    padding-left: 1rem;
}

.nk-wgacc-title {
    font-size: 1.125rem;
    color: #364a63;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.nk-wgacc-title .icon {
    font-size: 0.875rem;
}

.nk-wgacc-title .dropdown>a {
    font-size: 80%;
    color: #8094ae;
}

.is-dark .nk-wgacc-title {
    color: #fff;
}

.nk-wgacc-sub {
    font-size: 0.875rem;
    color: #8094ae;
    margin-top: 0.125rem;
}

.nk-wgacc-sub-group {
    display: flex;
    flex-shrink: 0;
}

.nk-wgacc-sub .icon {
    font-size: 0.75rem;
}

.is-dark .nk-wgacc-sub {
    color: #6cbbf7;
}

.nk-wgacc-subtitle.xs {
    font-size: 12px;
}

.nk-wgacc-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    font-style: italic;
}

.nk-wgacc-action {
    margin-top: 1.75rem;
}

.nk-wgacc-action:last-child {
    margin-bottom: 0.25rem;
}

.nk-wgacc-sign {
    position: absolute;
}

.nk-wgacc-sign .icon {
    font-size: 1rem;
    line-height: 1.5rem;
}

.nk-wgacc-sign~* {
    padding-left: 24px;
}

.nk-wgacc-amount {
    color: #364a63;
    font-weight: 400;
    flex-shrink: 0;
}

.is-dark .nk-wgacc-amount {
    color: #fff;
}

.nk-wgacc-amount .currency {
    color: #526484;
    font-weight: 400;
}

.is-dark .nk-wgacc-amount .currency {
    color: #b7c2d0;
}

.nk-wgacc-amount .number {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5rem;
    white-space: nowrap;
}

.nk-wgacc-amount .number small {
    font-weight: 400;
}

.nk-wgacc-amount .number-md {
    font-size: 1.375rem;
}

.nk-wgacc-amount .number-lg {
    font-size: 1.75rem;
}

.nk-wgacc-amount .number-sm {
    font-size: 1.15rem;
    line-height: 1.5rem;
    white-space: nowrap;
}

.nk-wgacc-amount .number-xs {
    font-size: 13px;
    font-weight: 500;
}

.nk-wgacc-amount .number .number-ext,
.nk-wgacc-amount .number .number-up,
.nk-wgacc-amount .number .number-down,
.nk-wgacc-amount .number .number-plus,
.nk-wgacc-amount .number .number-minus {
    font-size: 50%;
    line-height: 1;
}

.nk-wgacc-amount .number .number-ext .icon,
.nk-wgacc-amount .number .number-up .icon,
.nk-wgacc-amount .number .number-down .icon,
.nk-wgacc-amount .number .number-plus .icon,
.nk-wgacc-amount .number .number-minus .icon {
    color: #526484;
}

.nk-wgacc-amount .number .number-ext:before,
.nk-wgacc-amount .number .number-up:before,
.nk-wgacc-amount .number .number-down:before,
.nk-wgacc-amount .number .number-plus:before,
.nk-wgacc-amount .number .number-minus:before {
    font-family: "Nioicon";
}

.nk-wgacc-amount .number .number-ext {
    color: #037dff;
}

.nk-wgacc-amount .number .number-ext:before {
    content: "";
    padding-right: 0.25rem;
}

.nk-wgacc-amount .number .number-up {
    color: #1ee0ac;
}

.nk-wgacc-amount .number .number-up:before {
    content: "";
}

.nk-wgacc-amount .number .number-down {
    color: #e85347;
}

.nk-wgacc-amount .number .number-down:before {
    content: "";
}

.nk-wgacc-amount .number .number-plus {
    color: #037dff;
}

.nk-wgacc-amount .number .number-plus:before {
    content: "";
}

.nk-wgacc-amount .number .number-minus {
    color: #e85347;
}

.nk-wgacc-amount .number .number-minus:before {
    content: "";
}

.nk-wgacc-amount .number-sm+.number-xs {
    font-size: 12px;
}

.nk-wgacc-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: -0.5rem -1.25rem;
}

.nk-wgacc-nav li a {
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
}

.nk-wgacc-nav li a .icon {
    font-size: 1.125rem;
    width: 1.75rem;
    line-height: 1.25rem;
}

.nk-wgacc-nav li a span {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.nk-wgacc-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-bottom: 1px solid #e5e9f2;
}

.nk-wgacc-list li .lead-text {
    font-size: 13px;
    font-weight: 400;
}

.nk-wgacc-list:last-child {
    padding: 0 0 1rem;
}

.nk-wgacc-list:last-child li:last-child {
    border-bottom: none;
}

@media (max-width: 991.98px) {
    .nk-wgacc-sub:first-child {
        min-width: 160px;
    }
}

@media (max-width: 413px) {
    .nk-wgacc-sub {
        width: 100%;
    }

    .nk-wgacc-sub-group {
        flex-wrap: wrap;
    }

    .nk-wgacc-sign {
        margin-bottom: 0.75rem;
        display: inline-block;
    }

    .nk-wgacc-sign .icon {
        font-size: 1.5rem;
        line-height: 2.25rem;
    }

    .nk-wgacc-sign~* {
        padding-left: 0;
    }

    .nk-wgacc-sign+* {
        padding-top: 40px;
    }
}

@media (min-width: 576px) {
    .nk-wgacc-list li {
        padding: 0.5rem 1.75rem;
    }
}

@media (min-width: 680px) and (max-width: 991px) {
    .nk-wgacc-list {
        display: flex;
        flex-wrap: wrap;
    }

    .nk-wgacc-list li {
        width: 50%;
    }

    .nk-wgacc-list li:last-child {
        border-bottom: 1px solid #e5e9f2;
    }

    .nk-wgacc-list:last-child li:nth-last-child(2) {
        border-bottom: none;
    }
}

@media (min-width: 992px) {
    .nk-wgacc-list {
        width: 33.333333%;
        float: left;
    }

    .nk-wgacc-list li:last-child {
        border-bottom: none;
    }
}

@media (min-width: 1200px) {
    .nk-wgacc-amount .number {
        font-size: 1.65rem;
        line-height: 2.25rem;
    }

    .nk-wgacc-amount .number-md {
        font-size: 1.5rem;
    }

    .nk-wgacc-amount .number-lg {
        font-size: 2rem;
    }

    .nk-wgacc-amount .number-sm {
        font-size: 1.25rem;
    }

    .nk-wgacc-amount .number-xs {
        font-size: 1rem;
    }

    .nk-wgacc-amount .number-sm+.number-xs {
        font-size: 13px;
        margin-top: -2px;
    }

    .nk-wgacc-sign .icon {
        font-size: 1.25rem;
        line-height: 2.25rem;
    }

    .nk-wgacc-sign~* {
        padding-left: 32px;
    }

    .nk-wgacc-graph {
        width: 110px;
    }
}

/* CONT.... PLAN LIST */
.nk-plan-list:not(:last-child) {
    margin-bottom: 1.5rem;
}

.nk-plan-item {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dbdfea;
    padding: 1.25rem;
}

.nk-plan-item:not(:first-child) {
    margin-top: 1.5rem;
}

.nk-plan-item .amount {
    color: #364a63;
    font-weight: 700;
}

.nk-plan-item .amount-ex {
    color: #037dff;
    font-weight: 400;
}

.nk-plan-item div {
    flex-grow: 1;
}

.nk-plan-icon {
    width: 40px;
    height: 40px;
    text-align: center;
    background: #f5f6fa;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
    flex-grow: 0 !important;
    color: #526484;
}

.nk-plan-icon.is-running {
    color: #037dff;
    background: rgba(3, 125, 255, 0.08);
}

.nk-plan-icon.is-pause {
    color: #f4bd0e;
    background: rgba(244, 189, 14, 0.08);
}

.nk-plan-icon.is-pending {
    color: #33b5e5;
    background: rgba(51, 181, 229, 0.08);
}

.nk-plan-icon.is-cancel {
    color: #e85347;
    background: rgba(232, 83, 71, 0.08);
}

.nk-plan-icon .icon,
.nk-plan-icon .code {
    line-height: 40px;
    display: inline-block;
    text-align: center;
}

.nk-plan-icon .icon {
    font-size: 1.2rem;
}

.nk-plan-icon .code {
    padding-left: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-transform: uppercase;
}

.nk-plan-info {
    padding-right: 0.75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.nk-plan-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: #364a63;
}

.nk-plan-desc {
    color: #8094ae;
    font-size: 0.8125rem;
}

.nk-plan-amount {
    display: none;
}

.nk-plan-amount a {
    display: none;
}

.nk-plan-amount div {
    flex-grow: 0;
    padding: 0 1rem;
}

.nk-plan-term {
    display: none;
}

.nk-plan-term div {
    flex-grow: 0;
    padding: 0 1.5rem;
}

.nk-plan-start {
    position: relative;
}

.nk-plan-start:after {
    border: none !important;
    font-family: "Nioicon";
    vertical-align: middle;
    content: "";
    margin-left: 0;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8094ae;
    margin-left: -0.7rem;
}

.nk-plan-label {
    display: block;
    font-size: 0.8125rem;
}

.nk-plan-value {
    font-weight: 500;
}

.nk-plan-more {
    margin-left: auto;
    margin-right: -1rem;
    flex-grow: 0 !important;
    border-radius: 50%;
    transition: background-color 0.4s;
}

.nk-plan-more:hover {
    background-color: #f5f6fa;
}

.nk-plan-more .btn {
    margin-left: auto;
    color: #8094ae;
    width: 40px;
    height: 40px;
}

.nk-plan-more .btn .icon {
    font-size: 18px;
}

.nk-plan-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.nk-plan-progress .progress-bar {
    width: 0px;
    height: 3px;
    border-radius: 0 3px 3px 3px;
}

.nk-plan-progress .progress-bar[data-progress="100"] {
    border-radius: 0 0 3px 3px;
}

.nk-plan-order {
    display: flex;
    flex-direction: column;
}

.nk-plan-order .nk-plan-value {
    order: -1;
}

.nk-plan-list.is-flat {
    border-radius: 4px;
    border: 1px solid #dbdfea;
}

.nk-plan-list.is-flat .nk-plan-item:first-child {
    border-radius: 4px 4px 0 0;
}

.nk-plan-list.is-flat .nk-plan-item:last-child {
    border-radius: 0 0 4px 4px;
}

.nk-plan-list.is-flat .nk-plan-item {
    margin-top: 0;
    border-width: 0;
    border-radius: 0;
}

.nk-plan-list.is-flat .nk-plan-item:not(:first-child) {
    border-top-width: 1px;
}

@media (max-width: 575.98px) {
    .nk-plan-list.is-stretch {
        margin-left: -18px;
        margin-right: -18px;
    }

    .nk-plan-list.is-stretch .nk-plan-item:not(:first-child) {
        margin-top: 0.5rem;
    }

    .nk-plan-list.is-stretch,
    .nk-plan-list.is-stretch .nk-plan-item {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }
}

@media (min-width: 576px) {
    .nk-plan-list:not(:last-child) {
        margin-bottom: 2.75rem;
    }

    .nk-plan-item {
        padding: 1.5rem;
    }

    .nk-plan-amount {
        display: block;
    }

    .nk-plan-amount-a {
        display: none;
    }

    .nk-plan-amount div {
        padding: 0;
    }
}

@media (min-width: 768px) {
    .nk-plan-amount {
        display: flex !important;
    }

    .nk-plan-amount-a {
        display: flex;
    }

    .nk-plan-amount div {
        padding: 0 1rem;
    }
}

@media (min-width: 992px) {
    .nk-plan-icon {
        width: 50px;
        height: 50px;
    }

    .nk-plan-icon .icon,
    .nk-plan-icon .code {
        line-height: 50px;
    }

    .nk-plan-icon .icon {
        font-size: 1.5rem;
    }

    .nk-plan-icon .code {
        font-size: 1rem;
    }

    .nk-plan-term {
        display: flex !important;
    }

    .nk-plan-more .btn {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 1200px) {
    .nk-plan-amount-a {
        display: none;
    }
}

@media (min-width: 1540px) {

    .nk-plan-term div,
    .nk-plan-amount div {
        flex-grow: 0;
        padding: 0 2rem;
    }

    .nk-plan-info {
        padding-right: 2rem;
    }
}

@media (min-width: 1400px) {
    .nk-plan-amount-a {
        display: flex;
    }
}


/* INVEST PAGE........ OUR PLANS EXTRACT */


.nk-ivp-apps .caption-text {
    line-height: 1.6;
}

.nk-ivp-title {
    text-align: center;
}

.nk-ivp-title .title {
    font-weight: 500;
}

.nk-ivp-title .caption-text,
.nk-ivp-title+.nk-ivp-form {
    margin-top: 1.5rem;
}

.nk-ivp-title,
.nk-ivp-overview,
.nk-ivp-overview+.form-note {
    margin-bottom: 1.5rem;
}

.nk-ivp-overview+.form-note {
    margin-top: -0.75rem;
}

.nk-ivp-summary {
    text-align: center;
    margin-top: 1rem;
}

.nk-ivp-summary .lead-text {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
}

.nk-ivp-summary .sub-text {
    font-size: 12px;
}

.nk-ivp-card {
    position: relative;
    transition: all 0.3s;
}

.nk-ivp-card:after {
    position: absolute;
    right: 12px;
    top: 12px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #037dff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: "Nioicon";
    content: "";
    opacity: 0;
    transition: opacity 0.3s;
}

.nk-ivp-plan:hover .nk-ivp-card {
    box-shadow: 0 2px 12px -4px rgba(43, 55, 72, 0.2);
}

.nk-ivp-control {
    position: absolute;
    opacity: 0;
    height: 1px;
    width: 1px;
}

.nk-ivp-control:checked+.nk-ivp-card {
    border-color: #037dff;
    box-shadow: 0 2px 12px -4px rgba(43, 55, 72, 0.2);
}

.nk-ivp-control:checked+.nk-ivp-card:after {
    opacity: 1;
}

.nk-ivp-control:checked+.nk-ivp-card .nk-ivp-btn-label {
    cursor: default;
    background: #037dff;
    border-color: #037dff;
    color: #fff;
}

.nk-ivp-control:checked+.nk-ivp-card .nk-ivp-btn-label .label-selected {
    display: block !important;
}

.nk-ivp-control:checked+.nk-ivp-card .nk-ivp-btn-label .label-base {
    display: none !important;
}

.nk-ivp-btn-label {
    cursor: pointer;
    padding: 0.4375rem 1rem;
    margin-bottom: 0;
    font-family: Roboto;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: 1px solid #dbdfea;
    background: #f5f6fa;
    min-width: 170px;
    text-align: center;
    transition: all 0.3s;
}

.nk-ivp-btn-label .label-selected {
    display: none;
}

.nk-ivp-data li {
    display: flex;
    padding: 0.25rem 0;
}

.nk-ivp-data .label {
    min-width: 50%;
}

.nk-ivp-data .data {
    margin-left: auto;
}

.nk-ivp-data+.nk-ivp-action {
    padding-top: 2rem;
}

.nk-ivp-switch {
    margin-bottom: 1.5rem;
}

.nk-ivp-switch .nav:last-child {
    margin-bottom: 0;
}

.nk-ivp-action {
    padding-top: 2rem;
    text-align: center;
}

@media (min-width: 576px) {
    .nk-ivp-switch {
        margin-bottom: 2.25rem;
    }

    .nk-ivp-action {
        padding-top: 3.5rem;
    }
}



/* PROFILE->ACCOUNT */

.alert-note {
    padding: 1rem 1rem 1rem 2.75rem;
    border-radius: 4px;
    position: relative;
    line-height: 1.4;
    background: #f5f6fa;
    text-align: left;
}

.alert-note>.icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.25rem;
    font-size: 1rem;
    width: 2.5rem;
    text-align: center;
    line-height: 1.3;
}

.alert-note.sm {
    padding: 0.5rem 0.75rem 0.5rem 2.25rem;
}

.alert-note.sm>.icon {
    width: 2rem;
}

.alert-note p,
.alert-note .note-text {
    font-size: 0.9rem;
    line-height: 1.5;
    display: block;
}

.alert-note.is-plain {
    padding: 0 0 0.5rem 1.125rem;
    background: transparent;
}

.alert-note.is-plain:last-child {
    padding-bottom: 0;
}

.alert-note.is-plain>.icon {
    left: 0;
    top: 0;
    font-size: 12px;
    line-height: 1.3;
    transform: translateY(1px);
    width: 1.125rem;
    text-align: left;
}

.alert li {
    line-height: 1.4;
}

.alert li+li {
    margin-top: 0.75rem;
}

.alert li.alert-icon {
    padding-left: 1.75rem;
    position: relative;
}

.alert li.alert-icon .icon {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.125rem;
}

.alert li.alert-icon.centered {
    padding-left: 2rem;
}

.alert li.alert-icon.centered .icon {
    top: 50%;
    transform: translateY(-50%);
    margin-top: -2px;
    font-size: 1.25rem;
}



/* TRANSACTION MODALS EXTRACT */
.nk-tnx {
    display: flex;
    align-items: center;
}

.nk-tnx-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ebeef2;
    margin-right: 1rem;
}

.nk-tnx-icon:last-child {
    margin-right: 0 !important;
}

.nk-tnx-text+.nk-tnx-icon {
    margin-left: 0.75rem;
}

@media (max-width: 991.98px) {
    .nk-tnx-icon {
        font-size: 0.875rem;
        height: 1.75rem;
        width: 1.75rem;
        margin-right: 0.75rem;
    }

    .nk-tnx-text+.nk-tnx-icon {
        margin-left: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .nk-tnx-icon {
        margin-right: 0.5rem;
    }
}





/* INVEST PAGE EXTRACTED */
.modal-body .nk-pps-apps:first-child {
    margin-top: 0;
}

.modal-body-lg .nk-pps-apps:first-child {
    margin-top: -0.75rem;
    margin-bottom: -0.5rem;
}

.nk-pps-apps .caption-text {
    line-height: 1.6;
    font-size: 0.9375rem;
}

.nk-pps-apps .method {
    align-items: center;
    display: flex;
}

.nk-pps-apps .method .icon {
    font-size: 18px;
    margin-right: 0.5rem;
    margin-top: -2px;
    color: #8094ae;
}

.nk-pps-apps.actived {
    display: block;
}

.nk-pps-title {
    position: relative;
    margin-bottom: 1.5rem;
}

.nk-pps-title .title {
    font-weight: 500;
    font-size: 1.5rem;
}

.nk-pps-title .title-sm {
    font-weight: 500;
    font-size: 1.125rem;
}

.nk-pps-title .title-sm+.caption-text {
    margin-top: 0.875rem;
}

.nk-pps-title .caption-text {
    margin-top: 1.5rem;
}

.nk-pps-title .caption-text:first-child {
    margin-top: 0;
}

.nk-pps-title p.caption-text {
    margin-bottom: 0;
}

.nk-pps-title .back-to {
    position: absolute;
    left: 0;
    top: 0.125rem;
}

.nk-pps-card:not(:last-child) {
    margin-bottom: 1.5rem;
}

.nk-pps-nav {
    margin-bottom: 2rem;
}

.nk-pps-dropdown {
    width: 100%;
}

.nk-pps-dropdown .dropdown-indicator {
    display: block;
    width: 100%;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    background: #fff;
}

.nk-pps-dropdown .dropdown-indicator:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8094ae;
    opacity: 0.5;
}

.nk-pps-dropdown .dropdown-indicator.is-single {
    cursor: default;
    pointer-events: none;
}

.nk-pps-dropdown .dropdown-indicator.is-single:after {
    content: "";
}

.nk-pps-dropdown .dropdown-menu-over {
    top: -70px !important;
}

.nk-pps-dropdown .dropdown-menu-over[x-placement^="top"] {
    top: 68px !important;
}

.nk-pps-dropdown .dropdown-menu-mxh {
    max-height: 228px;
}

.nk-pps-field-set:not(:last-child),
.nk-pps-field:not(:last-child) {
    margin-bottom: 1.75rem;
}

.nk-pps-field.form-action {
    padding-top: 0.5rem;
}

.nk-pps-data {
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
}

.nk-pps-data+.nk-pps-data {
    margin-top: -0.75rem;
}

.nk-pps-data .sub-text,
.nk-pps-data .sub-text-sm {
    line-height: 1.3rem;
}

.nk-pps-data:last-child {
    margin-bottom: 0;
}

.nk-pps-notes {
    margin-top: 2.5rem;
    color: #8094ae;
    font-size: 0.875rem;
}

.nk-pps-notes.text-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
}

.nk-pps-text.sm,
.nk-pps-text.md {
    margin: auto;
}

.nk-pps-text.sm {
    max-width: 360px;
}

.nk-pps-text.md {
    max-width: 435px;
}

.nk-pps-result {
    text-align: center;
}

.nk-pps-result .title {
    font-size: 1.5rem;
    font-weight: 500;
}

.nk-pps-result .title:not(:last-child) {
    margin-bottom: 1.5rem;
}

.nk-pps-result .title:not(:first-child) {
    margin-top: 1.25rem;
}

.nk-pps-result .nk-pps-action {
    margin-top: 1.5rem;
}

.nk-pps-result+.nk-pps-data {
    margin-top: 1.5rem;
}

.nk-pps-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.nk-pps-steps:last-child {
    margin-bottom: 0.25rem;
}

.nk-pps-field.form-action+.nk-pps-steps {
    margin-top: -0.5rem;
}

.nk-pps-field.form-action+.nk-pps-steps .step {
    margin: 2px 3px;
}

.nk-pps-steps .step {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 2px 4px;
    background: rgba(183, 194, 208, 0.75);
    border-radius: 4px;
}

.nk-pps-steps .step.active {
    background: #037dff !important;
}

.nk-pps-steps+.nk-pps-result {
    margin-top: 2.5rem;
}

.nk-pps-rate.form-note-alt {
    margin-left: auto;
}

@media (min-width: 576px) {
    .nk-pps-apps .caption-text {
        font-size: 1rem;
    }

    .nk-pps-result .nk-pps-action {
        margin-top: 2.25rem;
    }

    .nk-pps-steps {
        margin-bottom: 1.75rem;
    }

    .nk-pps-steps:last-child {
        margin-bottom: 0.25rem;
    }

    .nk-pps-field.form-action+.nk-pps-steps {
        margin-top: -0.5rem;
    }

    .nk-pps-title .title {
        font-size: 1.65rem;
    }

    .nk-pps-title .title-sm {
        font-size: 1.375rem;
    }
}

@media (min-height: 768px) {
    .nk-pps-apps {
        margin-top: 2.5rem;
    }

    .card-inner>.nk-pps-apps {
        margin-top: 0;
    }

    .nk-pps-steps+.nk-pps-result {
        margin-top: 5rem;
    }

    .card-inner .nk-pps-steps+.nk-pps-result {
        margin-top: 2rem;
    }

    .nk-pps-result .title:not(:first-child) {
        margin-top: 2.25rem;
    }
}

.nk-cm-item {
    display: flex;
    align-items: center;
    height: 66px;
}

.dropdown-indicator .nk-cm-item,
.nk-dlist-item .nk-cm-item {
    padding: 1rem 1.25rem;
}

.nk-cm-item.single {
    padding: 1rem 1.25rem;
    width: 100%;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    background: #fff;
}

.nk-cm-item .label {
    font-size: 14px;
    line-height: 1.35;
    color: #364a63;
    display: block;
}

.nk-pm-list.ui-alt {
    background: transparent;
    border-width: 0;
    display: flex;
    flex-wrap: wrap;
}

.nk-pm-item {
    position: relative;
}

.nk-pm-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}

.ui-alt .nk-pm-item {
    width: calc(50% - 0.5rem);
    margin: 0.25rem;
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 4px;
}

.nk-pm-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 16px 20px 16px 60px;
    cursor: pointer;
}

.nk-pm-label:before,
.nk-pm-label:after {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    height: 24px;
    width: 24px;
    border-radius: 50%;
}

.nk-pm-label:before {
    content: "";
    border: 2px solid #dbdfea;
}

.nk-pm-label:after {
    font-family: "Nioicon";
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #037dff;
    transition: opacity 0.3s;
    opacity: 0;
}

.nk-pm-label .pm-name {
    font-size: 14px;
    color: #364a63;
}

.nk-pm-label .pm-icon {
    display: inline-flex;
    font-size: 24px;
    color: #8094ae;
}

.nk-pm-control {
    position: absolute;
    top: 0;
    height: 1px;
    width: 1px;
    opacity: 0;
}

.nk-pm-control:checked~.nk-pm-label {
    cursor: default;
}

.nk-pm-control:checked~.nk-pm-label:after {
    opacity: 1;
}

.nk-cm-item {
    display: flex;
    align-items: center;
    height: 66px;
}

.dropdown-indicator .nk-cm-item,
.nk-dlist-item .nk-cm-item {
    padding: 1rem 1.25rem;
}

.nk-cm-item.single {
    padding: 1rem 1.25rem;
    width: 100%;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    background: #fff;
}

.nk-cm-item .label {
    font-size: 14px;
    line-height: 1.35;
    color: #364a63;
    display: block;
}

.nk-cm-icon {
    display: inline-flex;
    flex-shrink: 0;
}

.nk-cm-icon .icon {
    font-size: 31px;
    height: 32px;
    width: 32px;
    color: #8094ae;
}

.nk-cm-icon .icon.is-btc {
    color: #f9841e;
}

.nk-cm-icon .icon.is-eth {
    color: #6174b9;
}

.nk-cm-text {
    font-size: 12px;
    color: #8094ae;
    display: block;
}

.nk-cm-icon+.nk-cm-text {
    margin-left: 0.75rem;
}

.nk-dlist-item {
    transition: background 0.4s;
    background: #fff;
}

.nk-dlist-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}

.nk-dlist-item:hover {
    background: rgba(245, 246, 250, 0.8);
}

.nk-dlist-item.selected {
    position: relative;
}

.nk-dlist-item.selected:after {
    font-family: "Nioicon";
    content: "";
    color: #037dff;
    text-align: center;
    line-height: 1;
    font-size: 1.25rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    transform: translateY(-50%);
}

.nk-dlist-opt {
    display: block;
}

.nk-glist {
    display: flex;
    flex-wrap: wrap;
    padding: 0.25rem 1rem;
}

.nk-glist li {
    padding: 0.625rem 0;
    width: 50%;
}

.text-center .nk-glist li {
    padding: 0.625rem 0.25rem;
}

.card-bordered .nk-glist+.nk-olist {
    border-top: 1px solid #dbdfea !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

@media (min-width: 576px) {
    .nk-glist li {
        width: 33.33%;
    }
}

.nk-olist {
    border: 1px solid #dbdfea;
    border-radius: 4px;
    background: #fff;
}

.nk-olist+.nk-olist,
.nk-olist+.sub-text-sm,
.nk-olist+.sub-text {
    margin-top: 0.75rem;
}

.nk-olist-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.nk-olist-item:not(:last-of-type) {
    border-bottom: 1px solid #e5e9f2;
}

.is-plain .nk-olist-item:not(:last-of-type) {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: -0.25rem;
}

.is-compact .nk-olist-item {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nk-olist-item-final {
    border-top: 1px solid #dbdfea;
}

.nk-olist-item-final:first-child {
    border-top: 0;
}

.nk-olist-item-final .label,
.nk-olist-item-final .data {
    font-weight: 500 !important;
    color: #1c2b46 !important;
}

.nk-olist-item.is-grouped {
    border-bottom: 0 none;
    padding-bottom: 0;
}

.nk-olist-item.is-grouped+.nk-olist-item {
    padding-top: 0.25rem;
}

.nk-olist-item .label {
    font-weight: 400;
    color: #8094ae;
}

.nk-olist-item .label.lead-text {
    color: #526484;
}

.nk-olist-item .label>span {
    white-space: nowrap;
}

.nk-olist-item .data {
    font-weight: 500;
    color: #364a63;
}

.nk-olist-item .data.note {
    font-weight: 400;
    color: #526484;
}

.is-aligned .nk-olist-item {
    justify-content: flex-start;
}

.is-aligned .nk-olist-item .label {
    width: 220px;
    max-width: 44%;
}

@media (max-width: 449px) {
    .nk-olist-flat .nk-olist-item {
        display: block;
    }

    .nk-olist-flat .nk-olist-item .label {
        font-size: 13px;
    }

    .nk-olist-flat.is-aligned .nk-olist-item .label {
        width: auto;
        max-width: 100%;
    }
}

.pay-info {
    margin: 0 auto;
    max-width: 400px;
}

.pay-info:not(:last-child) {
    margin-bottom: 1.25rem;
}

.pay-info-meta {
    font-weight: 500;
    color: #364a63;
}

.pay-info-meta li>span {
    color: #8094ae;
    font-weight: 400;
}

.pay-info .title .click-to-copy {
    transition: all 400ms;
    opacity: 0.3;
    font-size: 0.85em;
    line-height: 1.3;
    padding-left: 0.375rem;
    position: absolute;
}

.pay-info .title:hover .click-to-copy {
    opacity: 0.7;
}

.pay-info.clipboard-success .title .click-to-copy {
    opacity: 1;
}


/* DEPOSIT PAGE EXTRACT */
.nk-pm-list {
    border: 1px solid #dbdfea;
    background: #fff;
    border-radius: 4px;
}

.nk-pm-list.ui-alt {
    background: transparent;
    border-width: 0;
    display: flex;
    flex-wrap: wrap;
}

.nk-pm-item {
    position: relative;
}

.nk-pm-item:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}

.ui-alt .nk-pm-item {
    width: calc(50% - 0.5rem);
    margin: 0.25rem;
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 4px;
}

.nk-pm-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 16px 20px 16px 60px;
    cursor: pointer;
}

.nk-pm-label:before,
.nk-pm-label:after {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    height: 24px;
    width: 24px;
    border-radius: 50%;
}

.nk-pm-label:before {
    content: "";
    border: 2px solid #dbdfea;
}

.nk-pm-label:after {
    font-family: "Nioicon";
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #037dff;
    transition: opacity 0.3s;
    opacity: 0;
}

.nk-pm-label .pm-name {
    font-size: 14px;
    color: #364a63;
}

.nk-pm-label .pm-icon {
    display: inline-flex;
    font-size: 24px;
    color: #8094ae;
}

.nk-pm-control {
    position: absolute;
    top: 0;
    height: 1px;
    width: 1px;
    opacity: 0;
}

.nk-pm-control:checked~.nk-pm-label {
    cursor: default;
}

.nk-pm-control:checked~.nk-pm-label:after {
    opacity: 1;
}


/* GRAPH EXTRACT*/
.nk-wgpg {
    display: inline-flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
}

.nk-wgpg-head {
    margin-bottom: 1rem;
}

.nk-wgpg-title {
    margin-bottom: 0.25rem;
}

.nk-wgpg-subtitle {
    color: #8094ae;
}

.nk-wgpg-graph {
    margin-top: auto;
    position: relative;
    display: inline-block;
}

.nk-wgpg-graph-result {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.nk-wgpg-graph-result .text-lead {
    font-size: 40px;
    font-weight: 300;
    color: #364a63;
    line-height: 1.3;
}

.nk-wgpg-graph-result .text-lead.sm {
    font-size: 30px;
}

.nk-wgpg-graph-result .text-sub {
    font-size: 12px;
    font-weight: 500;
    color: #8094ae;
}

.nk-wgpg-graph-minmax {
    display: flex;
    justify-content: space-between;
    color: #8094ae;
    font-size: 12px;
}

@media (min-width: 1200px) {
    .nk-wgpg-graph canvas {
        width: 300px !important;
        height: 150px !important;
    }

    .nk-wgpg-graph.sm canvas {
        width: 240px !important;
        height: 120px !important;
    }
}

.nk-wgov {
    padding: 1.25rem 0 1rem;
}

.nk-wgov:last-child {
    padding-bottom: 0;
}

.nk-wgov:not(:last-child) {
    border-bottom: 1px solid #e5e9f2;
}

.nk-wgov .subtitle {
    color: #8094ae;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.nk-wgov .title {
    font-size: 11px;
    color: #8094ae;
    text-transform: uppercase;
    margin-top: 0.25rem;
    letter-spacing: 0.1em;
}

.nk-wgov .amount {
    font-size: 1.25rem;
    line-height: 1.1;
    color: #364a63;
}

.nk-wgov .amount span {
    color: #526484;
}

.nk-wgov-data {
    width: 60%;
}

.nk-wgov-data+.nk-wgov-data {
    width: 40%;
}

.card-wg:after {
    content: "";
    position: absolute;
    height: 0.25rem;
    background-color: transparent;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 0 0 3px 3px;
}

.card-wg.on-left:after {
    top: 0;
    right: auto;
    height: 100%;
    width: 0.25rem;
    border-radius: 3px 0 0 3px;
}

.card-wg.is-primary:after {
    background-color: #037dff;
}

.card-wg.is-secondary:after,
.card-wg.is-base:after {
    background-color: #364a63;
}

.card-wg.is-alter:after {
    background-color: #816bff;
}

.card-wg.is-success:after {
    background-color: #1ee0ac;
}

.card-wg.is-warning:after {
    background-color: #f4bd0e;
}

.card-wg.is-danger:after {
    background-color: #e85347;
}

.card-wg.is-info:after {
    background-color: #33b5e5;
}

.card-wg.is-gray:after {
    background-color: #8091a7;
}




/* COVER SPINNER ON BUTTON CLICK */
#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}
