:root {
    --blue: #559bfb;
    --indigo: #2c3782;
    --purple: #816bff;
    --pink: #ff63a5;
    --red: #e85347;
    --orange: #ffa353;
    --yellow: #f4bd0e;
    --green: #1ee0ac;
    --teal: #20c997;
    --cyan: #09c2de;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #6576ff;
    --secondary: #364a63;
    --success: #1ee0ac;
    --info: #09c2de;
    --warning: #f4bd0e;
    --danger: #e85347;
    --dark: #1c2b46;
    --gray: #8091a7;
    --light: #e5e9f2;
    --lighter: #f5f6fa;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1540px;
    --font-family-sans-serif: (Roboto, sans-serif), "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    font-family: Roboto, sans-serif, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.65;
    color: #526484;
    text-align: left;
    background-color: #f5f6fa;
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a {
    color: #798bff;
    text-decoration: none;
    background-color: transparent;
}

a:not([href]) {
    color: inherit;
    text-decoration: none;
}

img {
    vertical-align: middle;
    border-style: none;
}

label {
    display: inline-block;
    margin-bottom: 16px;
}

button {
    border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1540px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto,
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl,
.col-xxl-auto {
    position: relative;
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
}

@media (min-width: 576px) {
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 956px) {
    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
}

@media (min-width: 1200px) {
    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
}

.form-control,
div.dataTables_wrapper div.dataTables_filter input,
.dual-listbox .dual-listbox__search {
    display: block;
    width: 100%;
    height: calc(2.125rem + 2px);
    padding: 0.4375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: #3c4d62;
    font-weight: 700;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dbdfea;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:disabled,
div.dataTables_wrapper div.dataTables_filter input:disabled,
.dual-listbox .dual-listbox__search:disabled,
.form-control[readonly],
div.dataTables_wrapper div.dataTables_filter input[readonly],
.dual-listbox .dual-listbox__search[readonly] {
    background-color: #f5f6fa;
    opacity: 1;
}

.form-group {
    margin-bottom: 1rem;
}

.btn,
.dual-listbox .dual-listbox__button {
    display: inline-block;
    font-family: Nunito, sans-serif;
    font-weight: 700;
    color: #526484;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.4375rem 1.125rem;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:not(:disabled):not(.disabled),
.dual-listbox .dual-listbox__button:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn-outline-secondary {
    color: #364a63;
    border-color: #364a63;
}

.btn-block {
    display: block;
    width: 100%;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid rgba(0, 0, 0, 0.125);
    border-radius: 4px;
}

.bg-lighter,
.dual-listbox .dual-listbox__item:hover {
    background-color: #f5f6fa !important;
}

.border {
    border: 1px solid #dbdfea !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.text-info {
    color: #09c2de !important;
}

.text-warning {
    color: #f4bd0e !important;
}

.text-danger {
    color: #e85347 !important;
}

html {
    font-size: 16px;
}

a {
    transition: color .4s, background-color .4s, border .4s, box-shadow .4s;
}

img {
    max-width: 100%;
}

.text-base {
    color: #526484 !important;
}

.link-between {
    justify-content: space-between;
}


.btn,
.dual-listbox .dual-listbox__button {
    position: relative;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
}

.btn-block {
    justify-content: center;
}

.btn-dim.btn-outline-secondary {
    color: #364a63;
    background-color: #e9ebee;
    border-color: #b9c0c8;
}

.btn-dim.btn-outline-secondary.running {
    color: #fff;
    background-color: #364a63;
    border-color: #364a63;
}

.card-inner {
    padding: 1.25rem;
}

@media (min-width: 576px) {
    .card-inner {
        padding: 1.5rem;
    }
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #344357;
    margin-bottom: .5rem;
}

.form-control-wrap,
.form-control-group {
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

label {
    cursor: pointer;
}

body {
    min-width: 320px;
}

.nk-body {
    outline: none;
}

.nk-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.nk-content {
    padding: 24px 4px;
}

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

.logo-link {
    position: relative;
    display: inline-block;
    align-items: center;
}

.nk-header {
    background: #f5f6fa;
    border-bottom: 1px solid #e5e9f2;
    padding: 0 6px;
    z-index: 1010;
}

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

.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 -.25rem;
}

.nk-header-wrap>* {
    padding: 0 .25rem;
}

.nk-header-brand {
    flex-shrink: 0;
    padding-top: 14px;
    padding-bottom: 14px;
}

@media (min-width: 576px) {
    .nk-header {
        padding: 0 22px;
    }
}

@media (min-width: 992px) {
    .nk-header-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
}

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

#range-slider {
    /* width: 600px; */
    margin: 20px auto;
}

#range-slider .range-slider__thumb[data-lower] {
    width: 0;
    border: none !important;
}

#range-slider .range-slider__range {
    border-radius: 6px;
}

#range-slider .range-slider__thumb {
    background: #fff;
    border: 6px solid #2196f3;
    box-sizing: border-box;
}

#app {
    transform: scale(1.10);
    transform-origin: top center;
    width: 90.90%;
    /* 100% / 1.1 */
    margin: 0 auto;
}

*:focus-visible {
    outline: none;
}