@charset "UTF-8";
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100;
    src: url("../fonts/Inter/Inter-Thin.woff") format("woff"), url("../fonts/Inter/Inter-Thin.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/Inter/Inter-ExtraLight.woff") format("woff"), url("../fonts/Inter/Inter-ExtraLight.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/Inter/Inter-Light.woff") format("woff"), url("../fonts/Inter/Inter-Light.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Inter/Inter-Regular.woff") format("woff"), url("../fonts/Inter/Inter-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Inter/Inter-Medium.woff") format("woff"), url("../fonts/Inter/Inter-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Inter/Inter-SemiBold.woff") format("woff"), url("../fonts/Inter/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Inter/Inter-Bold.woff") format("woff"), url("../fonts/Inter/Inter-Bold.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    src: url("../fonts/Inter/Inter-ExtraBold.woff") format("woff"), url("../fonts/Inter/Inter-ExtraBold.woff2") format("woff2");
}
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    src: url("../fonts/Inter/Inter-Black.woff") format("woff"), url("../fonts/Inter/Inter-Black.woff2") format("woff2");
}
@font-face {
    font-family: "Mont";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Mont/Mont-Bold.woff") format("woff"), url("../fonts/Mont/Mont-Bold.woff2") format("woff2");
}
/* == BASE RULES AND VARIABLES== */
:root {
    --main-color: #1E1D2D;
    --alt-color: #B5B3D6;
    --text-main-color: #1E1D2D;
    --text-alt-color: #88879D;
    --border-color: #E9E8F6;
    --main-dark-color: #fff;
    --alt-dark-color: #4F4D6A;
    --text-main-dark-color: #fff;
    --text-alt-dark-color: #818CB1;
    --border-dark-color: #35344D;
    --accent-color: #8786F8;
    --dark-color-v1: #2A2939;
    --gray-color-v1: #F6F6FB;
}

*:focus-visible {
    outline-color: #0085f2;
    outline-offset: 1px;
    outline-style: auto;
}

* focus {
    outline: none;
}

*:invalid {
    -webkit-box-shadow: none;
    box-shadow: none;
}

body {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 320px;
    height: 100vh;
    position: relative;
    overflow: hidden;
    font: normal normal 16px/1.5 Inter, sans-serif;
    background-color: var(--main-dark-color);
    color: var(--main-color);
    background-color: #FCFCFE;
}

.body-auto {
    height: auto;
    overflow: visible;
}

.outer-div {
    padding: 30px;
}

.inner-div {
    margin: 0 auto;
    width: 100px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert .alert-link {
    font-weight: bold;
}

.alert > p,
.alert > ul {
    margin-bottom: 0;
}

.alert > p + p {
    margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-success hr {
    border-top-color: #c9e2b3;
}
.alert-success .alert-link {
    color: #2b542c;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-info hr {
    border-top-color: #a6e1ec;
}
.alert-info .alert-link {
    color: #245269;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.alert-warning hr {
    border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
    color: #66512c;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.alert-danger hr {
    border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
    color: #843534;
}

.alert-close {
    float: right;
    cursor: pointer;
    font-size: 2em;
    line-height: 0.7;
    vertical-align: middle;
    font-style: normal;
    font-weight: normal;
    color: #cacccd;
}

.is-overflow-off {
    overflow: hidden;
}

.theme-dark body {
    background-color: var(--main-color);
    color: var(--main-dark-color);
}

.adaptive-page {
    min-width: 320px;
    height: auto;
    overflow: visible;
}

main {
    padding: var(--h-height) 0 0 var(--s-width);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* == text elements == */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1.2em;
    font-weight: 600;
    line-height: 1;
}

h1, h2 {
    font-size: 24px;
}

h3, h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
    font-weight: 500;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

ul, ol {
    margin: 0 0 1em;
}

ol {
    list-style-type: none;
    padding: 0;
    counter-reset: li;
    color: var(--text-alt-color);
}

ol li {
    position: relative;
    padding: 0 0 0 16px;
    margin: 0 0 14px;
}

ol li:last-child {
    margin-bottom: 0;
}

ol li::before {
    counter-increment: li;
    content: counters(li, ".") ".";
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

b, strong {
    font-weight: 700;
}

.instructions-list li::before {
    color: var(--main-color);
}

.theme-dark .instructions-list li::before {
    color: var(--text-main-dark-color);
}

.instructions-list b {
    font-weight: 500;
    color: var(--accent-color);
}

.instructions-list figure {
    text-align: center;
}

.instructions-list figure img {
    margin: 0 auto;
}

.instructions-close-btn {
    margin-top: 20px;
}

p {
    margin: 0 0 0.75em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

hr {
    margin: 10px -30px 30px;
    border: 0;
    border-bottom: 1px solid var(--border-color);
}

.theme-dark hr {
    border-color: var(--border-dark-color);
}

/* == media elements == */
img {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
}

img,
iframe,
video {
    max-width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

figure {
    margin: 20px auto;
}

a img {
    border: none;
}

em {
    color: #E23737;
    font-style: normal;
}

.text-center {
    text-align: center;
}

.bordered-text {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.theme-dark .bordered-text {
    border-color: var(--border-dark-color);
}

.tooltip-wrapper {
    position: relative;
    z-index: 99;
}

.tooltip {
    position: absolute;
    top: calc(100% + 5px);
    width: 120px;
    padding: 3px 5px;
    background-color: var(--main-dark-color);
    border-radius: 4px;
    -webkit-box-shadow: 2px 2px 2px rgba(21, 20, 31, 0.15);
    box-shadow: 2px 2px 2px rgba(21, 20, 31, 0.15);
    font-family: Inter;
    font-size: 11px;
    color: var(--main-color);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    line-height: 1;
}

.theme-dark .tooltip {
    background-color: var(--dark-color-v1);
    color: var(--main-dark-color);
}

.tooltip-right {
    right: 0;
}

.tooltip-top {
    bottom: calc(100% + 5px);
    top: auto;
}

.tooltip-center {
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.tooltip-wrapper:hover .tooltip {
    opacity: 1;
}

.icon-bell {
    padding-top: 2px;
}

.date {
    font-weight: 500;
    display: block;
}

/* == form elements == */
input, textarea, button, select {
    font: inherit;
    color: inherit;
}

input, textarea, select {
    outline: none;
}

[disabled] {
    opacity: 0.75;
    pointer-events: none;
    color: #88879D;
}

input[disabled] {
    background-color: var(--border-color);
}

.theme-dark [disabled] {
    background-color: #35344D;
}

[type=search] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
[type=search]::-webkit-search-decoration, [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-results-button, [type=search]::-webkit-search-results-decoration {
    display: none;
}

input:-moz-placeholder {
    opacity: 1;
    color: #a4a3b4;
}

input::-moz-placeholder {
    opacity: 1;
    color: #a4a3b4;
}

input:focus:-moz-placeholder {
    opacity: 1;
    color: #a4a3b4;
}

input:focus::-moz-placeholder {
    opacity: 1;
    color: #a4a3b4;
}

input::-webkit-input-placeholder {
    opacity: 1;
    color: #a4a3b4;
}

.theme-night input::-webkit-input-placeholder {
    color: var(--night-text-secondary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

[type=text],
[type=email],
[type=tel],
[type=url],
[type=number],
[type=password],
[type=search],
[type=search] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 48px;
    padding: 0 18px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    -webkit-transition: border-color 0.25s ease-out;
    -o-transition: border-color 0.25s ease-out;
    transition: border-color 0.25s ease-out;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

[type=file] {
    display: none;
    opacity: 0;
    position: absolute;
}

.fieldset {
    margin: 0 0 20px;
}

.fieldset legend strong {
    color: var(--accent-color);
}

.fieldset-top {
    margin-top: 10px;
}

.fieldset:last-child {
    margin-bottom: 0;
}

.checkbox-box:not(:empty) {
    margin-bottom: -20px;
}

.checkbox {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-top {
    margin-top: 10px;
}

.checkbox-third {
    width: calc(33.3333333333% - 30px);
    margin: 0 15px 20px;
}

.checkbox-half {
    width: calc(50% - 30px);
    margin: 0 15px 20px;
}

.checkbox-full {
    width: calc(100% - 30px);
    margin: 0 15px 20px;
}

.checkbox-centered {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.checkbox:not(:last-child) {
    margin-bottom: 20px;
}

.checkbox input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
    width: 20px;
    height: 20px;
    position: relative;
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.checkbox input[type=checkbox]:not(:last-child) {
    margin: 0 10px 0 0;
}

.checkbox input[type=checkbox]::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #F0EFFF;
}

.theme-dark .checkbox input[type=checkbox]::before {
    background-color: var(--night-bg);
    border-color: var(--border-dark-color);
}

.checkbox input[type=checkbox]::after {
    content: "\e914";
    font-family: icomoon;
    font-size: 9px;
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 20px;
    left: 0;
    top: 0;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    color: #fff;
    background-color: var(--accent-color);
    border-radius: 4px;
}

.checkbox input[type=checkbox]:checked::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.checkbox input[type=checkbox]:checked:before {
    border-color: transparent;
    background-color: var(--accent);
}

.theme-dark .checkbox input[type=checkbox]:checked:before {
    background-color: var(--night-accent);
}

.radiobox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.radiobox-item {
    margin: 0 4px 5px;
}

.radiobox-item-large {
    margin: 0 15px 15px;
}

.radiobox-auto {
    width: auto;
    margin: 0 15px 20px;
}

.radiobox input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
    width: 16px;
    height: 16px;
    border-radius: 6px;
    position: relative;
    background-color: transparent;
    margin: 0 6px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.radiobox input[type=radio]::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #A6AEBF;
}

.radiobox input[type=radio]::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
    background-color: var(--accent-color);
    border-radius: 50%;
    -webkit-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.radiobox input[type=radio]:checked::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.radiobox input[type=radio]:checked::before {
    border-color: var(--accent-color);
}

.radiobox input[type=radio]::-ms-check {
    color: var(--accent-color);
}

.radiobox input[type=radio]:focus {
    outline: none;
}

.radiobox input[type=radio]:checked {
    outline: none;
}

legend {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-alt-color);
    margin: 0 0 20px;
}

.datepicker {
    background: url("../../public/img/svg-icons/calendar.svg") no-repeat center right 14px/20px 20px;
}

.file-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 0 18px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    -webkit-transition: border-color 0.25s ease-out;
    -o-transition: border-color 0.25s ease-out;
    transition: border-color 0.25s ease-out;
}

.file-field-centered {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-color: var(--accent-color);
    max-width: 240px;
}

.file-field-small {
    line-height: 36px;
    height: 36px;
    min-width: 150px;
    width: auto;
}

.file-field-name {
    color: var(--accent-color);
    display: block;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.file-thumb {
    width: 80px;
    height: 80px;
    margin: 15px 5px 0 0;
    display: inline-block;
    position: relative;
}

.file-thumb .icon-cross {
    position: absolute;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 11px;
    display: inline-block;
    padding: 2px;
    font-size: 7px;
    right: 0;
    top: 0;
    color: #FF5252;
    cursor: pointer;
    background-color: var(--main-dark-color);
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.theme-dark .file-thumb .icon-cross {
    background-color: var(--main-color);
    border-color: var(--border-dark-color);
}

.file-thumb-icon {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%;
}

.form-item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    margin: 0 0 7px;
}

.form-item-head > .field-name {
    margin: 0 10px 5px 0;
}

.form-item-flex .file-thumb {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin: 0 18px 0 0;
}

.form-item-clip {
    position: relative;
}

.form-item-clip > input {
    padding-right: 40px;
}

.form-item-clip .clipboard-btn {
    position: absolute;
    right: 15px;
    bottom: 12px;
    font-size: 18px;
}

.form-item-editable {
    position: relative;
}

.form-item-editable > input {
    padding-right: 40px;
}

.form-item-editable .btn-edit {
    position: absolute;
    right: 15px;
    top: 41px;
    font-size: 18px;
    color: var(--accent-color);
    z-index: 10;
}

.form-item-editable .btn-edit-small {
    font-size: 15px;
    right: 5px;
    top: 5px;
}

.form-item-editable .btn-edit-right {
    right: 52px;
}

.btn-edit.is-edit::before {
    content: "\e914";
    color: #00A478;
}

.form-item-icon {
    position: relative;
}

.form-item-icon input {
    padding-right: 60px;
}

.form-item-unite {
    position: absolute;
    right: 18px;
    top: 38px;
    z-index: 1;
}

.form-item-unite.icon-refresh {
    font-size: 20px;
    top: 40px;
    color: var(--accent-color);
}

.form-item-unite.icon-book {
    font-size: 24px;
    top: 37px;
    right: 16px;
    color: var(--accent-color);
}

.form-item-unite.icon-view {
    font-size: 24px;
    color: var(--accent-color);
}

.form-item-unite.is-active.icon-view::before {
    content: "\e950";
}

.theme-dark .file-field {
    border-color: var(--border-dark-color);
}

.theme-dark [type=text],
.theme-dark [type=email],
.theme-dark [type=tel],
.theme-dark [type=url],
.theme-dark [type=number],
.theme-dark [type=password],
.theme-dark [type=search] {
    border-color: var(--border-dark-color);
}

[type=text]:focus,
[type=email]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus {
    border-color: var(--accent-color);
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-row-small {
    margin: 0 -5px;
}

.form-row-small > .form-item {
    margin: 0 5px;
    width: calc(50% - 10px);
}

.form-row-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.form-row-hidden {
    display: none;
}

.form-row:last-child > .form-item {
    margin-bottom: 0;
}

.form-column {
    width: calc(50% - 30px);
    margin: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-item {
    width: 100%;
    margin: 0 15px 30px;
}

.filter-item {
    width: 100%;
    margin: 0 15px 30px;
}

.form-column .form-item {
    margin: 0 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.form-item-auto {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.form-item-half {
    width: calc(50% - 30px);
}

.form-item-half-mobile {
    width: calc(50% - 30px);
}

.form-item-third {
    width: calc(33.3333333333% - 30px);
}

.form-item-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-item-nowrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -10px;
}

.form-note {
    font-size: 14px;
    color: var(--text-alt-color);
}

.form-controls:not(:empty) {
    margin-bottom: -10px;
}

.form-controls:not(:last-child) {
    margin-bottom: 10px;
}

.form-control {
    margin: 0 10px 10px;
}

.form-control-auto {
    width: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.field-info {
    margin: 5px 0 0 0;
    width: 100%;
    font-size: 12px;
    color: var(--text-alt-color);
}

.field-info p {
    margin-bottom: 2px;
}

.field-info p:last-child {
    margin-bottom: 0;
}

.field-info strong:not([class]) {
    color: var(--main-color);
    font-weight: 600;
}

.theme-dark .field-info strong {
    color: var(--main-dark-color);
}

.field-errors {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #E23737;
}

.hide {
    display: none;
}

.form-item-error .field-errors {
    display: block;
}

.field-timer {
    line-height: 46px;
}

.form-item-error [type=text],
.form-item-error [type=email],
.form-item-error [type=tel],
.form-item-error [type=number],
.form-item-error [type=url],
.form-item-error [type=password],
.form-item-error [type=search],
.form-item-error [type=search] {
    border-color: #E23737;
}

.clipboard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.clipboard-auto {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.clipboard-input {
    height: auto;
    padding: 0;
    background: 0;
    border: 0;
    margin: 0 5px 0 0;
    font-size: 15px;
    pointer-events: none;
    outline: none;
}

.input-initial {
    height: auto;
    padding: 0 10px;
    background: 0;
    border: 1px solid transparent;
    margin: 0 5px 0 0;
    font-size: 15px;
    pointer-events: none;
    outline: none;
    min-height: 28px;
}

.input-initial:not(:disabled) {
    border-color: var(--border-color);
}

.input-small {
    height: 34px;
}

.clipboard-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 3px 0 0;
}

.clipboard-text-value {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 10px 0 0;
}

.clipboard-text-btn {
    font-size: 17px;
    color: var(--accent-color);
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.saved-method-input {
    height: auto;
    padding: 0 0 0.8px;
    background: 0;
    border: 0;
    border-radius: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 14px;
    color: var(--text-alt-color);
    width: 90px;
}

.saved-method-input[disabled] {
    background: 0;
}

.saved-method-input:focus {
    outline: none;
    border: 0;
}

.clipboard-input-large {
    font-size: 25px;
    margin: 0;
}

.clipboard-input-large ~ .clipboard-btn {
    font-size: 20px;
    margin: 0 0 0 14px;
}

.payment-card-clipboard {
    margin: 0 0 25px;
}

.payment-card-clipboard:last-child {
    margin-bottom: 0;
}

.payment-card-bank {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.payment-card-bank > img {
    height: 35px;
    margin: 0 12px 0 0;
    width: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.payment-card-bank > span {
    text-transform: uppercase;
    font-size: 24px;
}

.clipboard-unite {
    margin: 0 0 0 8px;
}

.clipboard-btn {
    margin: 0 0 2px 0;
    font-size: 14px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: var(--accent-color);
}

.clipboard-btn-large {
    font-size: 18px;
}

.input-no-border {
    border: 0;
    height: auto;
    padding: 0;
}

.input-no-border:focus {
    border: 0;
    outline: 0;
}

.input-large-text {
    font-size: 25px;
}

textarea {
    padding: 10px 18px;
    width: 100%;
    height: 70px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    -webkit-box-shadow: none;
    box-shadow: none;
    resize: none;
    overflow: auto;
    -webkit-transition: border-color 0.25s ease-out;
    -o-transition: border-color 0.25s ease-out;
    transition: border-color 0.25s ease-out;
}

textarea:focus {
    border-color: var(--accent-color);
}

.textarea-auto {
    height: auto;
    margin: 0 0 12px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.theme-dark textarea {
    border-color: var(--border-dark-color);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 48px;
    padding: 0 46px 0 18px;
    background: url("../img/svg-icons/carret-down.svg") no-repeat center right 18px/12px auto #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    -webkit-transition: border-color 0.25s ease-out;
    -o-transition: border-color 0.25s ease-out;
    transition: border-color 0.25s ease-out;
}

.select-field-large {
    padding-right: 65px;
}

.select-field-large,
.theme-dark .select-field-large,
.select-field-large:focus,
.theme-dark .select-field-large:focus {
    background-position: center right 54px;
}

.select-field-small {
    height: 36px;
}

.select-field-auto {
    height: 28px;
    padding: 0 15px 0 5px;
    background-position: right 5px center;
    background-size: 8px auto;
    width: auto;
}

.theme-dark select {
    background: url("../img/svg-icons/carret-down-dark.svg") no-repeat center right 18px/12px auto var(--main-color);
    border-color: var(--border-dark-color);
}

.theme-dark .select-field-auto {
    background-position: right 5px center;
    background-size: 8px auto;
}

.form-item-error select {
    border-color: #E23737;
}

select:focus {
    background: url("../img/svg-icons/carret-top.svg") no-repeat center right 18px/12px auto #fff;
    border-color: var(--accent-color);
}

.select-field-auto:focus {
    background-position: right 5px center;
    background-size: 8px auto;
}

.form-item-error select:focus {
    border-color: #E23737;
}

.theme-dark select:focus {
    background: url("../img/svg-icons/carret-top-dark.svg") no-repeat center right 18px/12px auto var(--main-color);
}

.theme-dark .select-field-auto:focus {
    background-position: right 5px center;
    background-size: 8px auto;
}

select option {
    background-color: #fff;
    border-color: inherit;
    text-transform: none;
}

select option:checked {
    background-color: var(--accent-color);
    color: #fff;
}

.theme-dark select {
    background-color: var(--main-color);
}

.theme-dark select option {
    background-color: var(--main-color);
}

.theme-dark select option:checked {
    background-color: var(--accent-color);
}

select::-ms-expand {
    display: none;
}

.show_area {
    cursor: pointer;
    z-index: 5;
}

.cursor-pointer {
    cursor: pointer;
}

.field-name {
    margin: 0 0 12px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main-color);
    line-height: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.theme-dark .field-name {
    color: var(--main-dark-color);
}

.field-name-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.field-name-small {
    margin: 0 0 2px;
    font-size: 12px;
    font-weight: 400;
    color: var(--alt-color);
}

button {
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: 0;
    background: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

.btn {
    padding: 0 15px;
    max-width: 100%;
    min-width: 240px;
    line-height: 46px;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
}

.btn-icon i {
    margin: 0 8px;
    font-size: 1.18em;
    vertical-align: -2px;
}

.btn-bordered {
    line-height: 42px;
    border: 2px solid transparent;
}

.btn-bordered.btn-tiny {
    line-height: 28px;
}

.btn-bordered-white {
    border-color: var(--main-dark-color);
}

.btn-bordered-white:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--main-dark-color);
}

.btn-bordered-accent {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-bordered-accent:hover {
    background-color: rgba(135, 134, 248, 0.15);
}

.btn-bordered-accent-shaded {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: rgba(111, 110, 247, 0.2);
}

.btn-bordered-red {
    border-color: #E23737;
    color: #E23737;
}

.btn-bordered-red:hover {
    background-color: rgba(226, 55, 55, 0.2);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--main-dark-color);
}

.btn-accent:hover {
    background-color: #6f6ef7;
    color: var(--main-dark-color);
}

.btn-green {
    background-color: #00A478;
    color: var(--main-dark-color);
}

.btn-green:hover {
    background-color: #00956d;
    color: var(--main-dark-color);
}

.btn-blue {
    background-color: #3197E0;
    color: var(--main-dark-color);
}

.btn-transparent {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main-dark-color);
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-main-dark-color);
}

.btn-transparent-accent {
    background-color: rgba(111, 110, 247, 0.1);
    color: var(--accent-color);
}

.btn-transparent-accent:hover {
    background-color: rgba(111, 110, 247, 0.2);
}

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

.btn-medium {
    line-height: 42px;
    min-width: 100px;
}

.btn-small {
    line-height: 36px;
    min-width: 150px;
    font-size: 14px;
    font-weight: 400;
}

.btn-margin-top {
    margin-top: 8px;
}

.btn-initial {
    color: var(--accent-color);
    font-size: 14px;
}

.btn-half {
    width: calc(50% - 20px);
    min-width: 1px;
}

.btn-tiny {
    line-height: 32px;
    min-width: 100px;
    font-size: 14px;
    font-weight: 400;
}

.btn-square {
    min-width: 32px;
    line-height: 32px;
    font-size: 16px;
    padding: 0;
}

.btn-no-padding {
    padding: 0;
}

.btn-no-padding.btn-icon > i {
    margin-left: 0;
}

.btn-copy {
    min-width: 100px;
}

.btn-large-font {
    font-size: 18px;
}

.social-btn {
    width: calc(25% - 10px);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0 5px;
    min-width: 1px;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
}

.social-btn-large {
    font-size: 18px;
}

.social-btn:hover {
    color: #fff;
}

.social-btn-instagram {
    background: -o-linear-gradient(135deg, #FBE18A -11.63%, #FCBB45 11.81%, #F75274 30.79%, #D53692 46.42%, #8F39CE 70.98%, #5B4FE9 100%);
    background: linear-gradient(315deg, #FBE18A -11.63%, #FCBB45 11.81%, #F75274 30.79%, #D53692 46.42%, #8F39CE 70.98%, #5B4FE9 100%);
}

.social-btn-whatsapp {
    background: #00D95F;
}

.social-btn-telegram {
    background: #34AADF;
}

.social-btn-facebook {
    background: #337FFF;
}

.social-btn-viber {
    background: #6F3FAA;
}

.social-btn-big i {
    font-size: 18px;
}

.social-btn-big.social-btn-whatsapp i {
    font-size: 20px;
}

.social-links-box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0 -10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.social-btn-font-instagram {
    background: -o-linear-gradient(135deg, #FBE18A -11.63%, #FCBB45 11.81%, #F75274 30.79%, #D53692 46.42%, #8F39CE 70.98%, #5B4FE9 100%);
    background: linear-gradient(315deg, #FBE18A -11.63%, #FCBB45 11.81%, #F75274 30.79%, #D53692 46.42%, #8F39CE 70.98%, #5B4FE9 100%);
}

.social-btn-font-telegram {
    background: #34AADF;
}

.social-btn-font-whatsapp {
    background: #00D95F;
}

.social-btn-font-facebook {
    background: #337FFF;
}

.social-btn-font {
    width: auto;
    min-width: 1px;
    padding: 0 2px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 32px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-btn-font i {
    margin: 0;
}

.share-card-image {
    margin: 0 0 20px;
    padding: 0 25px;
}

.share-card-image > img {
    width: 100%;
    height: auto;
}

.share-card-clipboard {
    margin: 0 0 18px;
}

.share-card-clipboard > .clipboard-input {
    font-size: 16px;
}

.share-card-clipboard > .clipboard-btn {
    font-size: 18px;
}

.share-card-social {
    text-align: center;
}

.share-card-social > h5 {
    font-size: 14px;
    line-height: 1;
    color: var(--text-alt-color);
    margin: 0 0 20px;
}

.box.share-card-buttons {
    margin-top: 25px;
}

.share-card-btn {
    margin: 0 5px;
}

/*tabs*/
.tab-content {
    display: none;
}

/* == table elements == */
table {
    width: 100%;
    font-size: 14px;
}

table a:not([class]) {
    color: var(--accent-color);
    display: block;
}

.cell-sort {
    position: relative;
    cursor: pointer;
}

.cell-sort::after {
    content: "\e911";
    font-family: icomoon;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 4px;
    font-size: 8px;
}

.cell-sort.cell-sort-asc,
.cell-sort.cell-sort-desc {
    color: var(--accent-color);
}

.cell-sort.cell-sort-desc::after {
    content: "\e910";
}

th {
    padding: 10px 15px;
    height: 50px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-alt-color);
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--main-dark-color);
}

.theme-dark th {
    border-color: var(--border-dark-color);
    background-color: transparent;
}

td {
    padding: 10px 15px;
    height: 48px;
    vertical-align: middle;
    text-align: center;
    background-color: var(--main-dark-color);
}

.theme-dark td {
    background-color: transparent;
}

tr:first-child td {
    padding-top: 20px;
}

tr:last-child td {
    padding-bottom: 20px;
}

.table-scrollable-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 4px 4px 0 0;
    overflow-x: auto;
    scrollbar-color: var(--alt-color) var(--border-color);
    scrollbar-width: thin;
}

.table-scrollable-wrapper::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 3px;
    background: var(--border-color);
}

.table-scrollable-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--alt-color);
    border-radius: 3px;
}

.theme-dark .table-scrollable-wrapper {
    border-color: var(--border-dark-color);
    scrollbar-color: var(--accent-color) var(--border-dark-color);
}

.theme-dark .table-scrollable-wrapper::-webkit-scrollbar {
    background: var(--border-dark-color);
}

.theme-dark .table-scrollable-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
}

.table-controls {
    background-color: var(--main-dark-color);
    border: 1px solid var(--border-color);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.theme-dark .table-controls {
    background-color: transparent;
    border-color: var(--border-dark-color);
}

.table-views {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-views-name {
    margin: 0 10px 0 0;
}

.table-pagination {
    margin-left: auto;
}

.unstyled-table {
    border: 0;
}

.unstyled-table table {
    font-size: inherit;
}

.unstyled-table table th:first-child,
.unstyled-table table td:first-child {
    text-align: left;
}

.unstyled-table th {
    border: 0;
}

.converter-table {
    border: 0;
    margin-top: -10px;
}

.converter-table table {
    border-spacing: 0 10px;
    border-collapse: separate;
}

.converter-table th {
    font-size: 15px;
    border: 0;
    color: var(--text-main-color);
    font-weight: 600;
    padding: 0;
    height: 1px;
}

.theme-dark .converter-table th {
    color: var(--main-dark-color);
}

.converter-table td {
    font-size: 15px;
    background-color: var(--gray-color-v1);
    height: 30px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.theme-dark .converter-table td {
    background-color: var(--dark-color-v1);
}

.converter-table table th:first-child {
    text-align: left;
}

.converter-table table th:last-child {
    text-align: right;
}

.converter-table table td:first-child {
    text-align: left;
    border-radius: 6px 0 0 6px;
}

.converter-table table td:last-child {
    text-align: right;
    border-radius: 0 6px 6px 0;
}

.converter-table tr:first-child td {
    padding-top: 8px;
}

.converter-table tr:last-child td {
    padding-bottom: 8px;
}

.valute {
    font-size: 15px;
    font-weight: 600;
}

.valute:first-child:after {
    content: " /";
    color: var(--text-main-color);
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
}

.pagination-step.is-disabled {
    pointer-events: none;
    opacity: 0.75;
}

.pagination-step-prev {
    margin: 0 20px 0 0;
}

.pagination-step-next {
    margin: 0 0 0 20px;
}

.pagination-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px;
}

.pagination-link {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    margin: 0 5px;
    text-align: center;
}

.pagination-link.is-active {
    background-color: var(--accent-color);
    color: var(--main-dark-color);
}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 30px;
    font-size: 16px;
}

.tab {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    line-height: 36px;
    white-space: nowrap;
}

.tab.is-active {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.theme-dark .tab {
    border-color: var(--border-dark-color);
}

.theme-dark .tab.is-active {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.timer {
    font-weight: 600;
}

.timer-accent {
    color: var(--accent-color);
}

/* == animations == */
@-webkit-keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.rotating {
    -webkit-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

/* ~~ LAYOUT RULES ~~ */
/*~ header ~*/
.header {
    position: fixed;
    right: 0;
    top: 0;
    width: calc(100% - var(--s-width));
    background-color: var(--main-dark-color);
    border-bottom: 1px solid var(--border-color);
    z-index: 99;
    width: 100%;
}

.theme-dark .header {
    background-color: var(--main-color);
    border-color: var(--border-dark-color);
}

.widgets {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 98;
    padding: 0 40px 0 60px;
}

.theme-dark .valutes-block {
    border-bottom: 1px solid var(--border-dark-color);
}

.widget-wallets {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0 -12px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 500;
}

.widget-wallets > li {
    margin: 0 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.widget-wallets .js-item {
    font-size: 13px;
    color: var(--text-alt-color);
}

.widget-wallet-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 6px 0 0;
}

.widget-wallet-value {
    white-space: nowrap;
}

.widget-subwallets {
    margin: 0;
    padding: 12px 18px;
    list-style-type: none;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 110px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--main-dark-color);
    -webkit-box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.08);
    box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.08);
    line-height: 1.1;
    text-align: right;
    opacity: 0;
    pointer-events: none;
}

.theme-dark .widget-subwallets {
    background-color: var(--main-color);
    border-color: var(--border-dark-color);
    -webkit-box-shadow: 20px 20px 100px rgba(21, 20, 31, 0.5);
    box-shadow: 20px 20px 100px rgba(21, 20, 31, 0.5);
}

.widget-subwallets::after {
    position: absolute;
    bottom: calc(100% - 3px);
    right: 5px;
    content: "\e910";
    color: var(--border-color);
    font-family: icomoon;
    line-height: 1;
}

.theme-dark .widget-subwallets::after {
    color: var(--border-dark-color);
}

.widget-subwallets::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 100%;
    top: -20px;
    left: 0;
    opacity: 0;
}

.widget-subwallets > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0 0 10px;
}

.widget-subwallets > li:last-child {
    margin: 0;
}

.widget-wallets > li.js-item:hover .widget-subwallets {
    opacity: 1;
    pointer-events: auto;
}

.widget-wallets > li.js-item:hover > a {
    color: var(--accent-color);
}

.valutes-block:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.valutes-block > h4 {
    margin: 0 0 10px;
}

.valutes-modal-text {
    margin-top: 5px;
    font-size: 12px;
}

.color-accent {
    color: var(--accent-color);
}

.color-blue {
    color: #3197E0;
}

.color-lightblue {
    color: #2BC0DA;
}

.color-green {
    color: #26A17B;
}

.color-red {
    color: #FF5252;
}

.color-yellow {
    color: #F7B731;
}

.color-gray {
    color: #88879D;
}

.color-orange {
    color: #F6931A;
}

.header-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 10px 0 auto;
    z-index: 99;
}

.header-btn {
    font-size: 14px;
    min-width: 140px;
    margin: 0 10px;
}

.header-btn.btn-bordered {
    line-height: 38px;
}

.tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 99;
}

.tools-item {
    position: relative;
    min-width: 60px;
    height: 60px;
    padding: 0 15px;
    border-left: 1px solid var(--border-color);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 99;
}

.tools-item-counter {
    display: inline-block;
    vertical-align: middle;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--accent-color);
    font-weight: 400;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
    color: #fff;
}

.theme-dark .tools-item {
    border-color: var(--border-dark-color);
}

.tools-item i {
    font-size: 20px;
    color: var(--alt-color);
    vertical-align: middle;
}

.theme-dark .tools-item i {
    color: var(--alt-dark-color);
}

.tools-item:hover .theme-selected i {
    color: var(--accent-color);
}

.theme-icon {
    display: none;
}

.theme-icon.is-active {
    display: inline-block;
}

.tools-item.is-active > i,
.tools-item.is-active .tools-link > i {
    color: #E23737;
}

.tools-link {
    height: 60px;
    line-height: 60px;
    margin: 0 -15px;
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.tools-link .icon-course {
    position: relative;
}

.tools-link .icon-course::after {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: url("../img/currency-icons/euro-white.svg") no-repeat center/5px #26A17B;
    position: absolute;
    left: -4px;
    top: 0px;
}

.tools-link:hover i {
    color: var(--accent-color);
}

.tools-link .icon-support {
    font-size: 22px;
}

.tools-drop {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 200px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--main-dark-color);
    -webkit-box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.08);
    box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.08);
    line-height: 1.1;
    text-align: left;
    display: none;
}

.tools-drop-footer {
    padding: 10px 18px;
    border-top: 1px solid var(--border-color);
}

.theme-dark .tools-drop-footer {
    border-color: var(--border-dark-color);
}

.theme-dark .tools-drop {
    background-color: var(--main-color);
    border-color: var(--border-dark-color);
    -webkit-box-shadow: 20px 20px 100px rgba(21, 20, 31, 0.5);
    box-shadow: 20px 20px 100px rgba(21, 20, 31, 0.5);
}

.tools-drop-medium {
    min-width: 220px;
}

.tools-drop-small {
    min-width: 100px;
}

.tools-drop-large {
    min-width: 396px;
}

.tools-drop-auto {
    min-width: 1px;
}

.language-selected {
    font-weight: 500;
}

.tools-drop::after {
    position: absolute;
    bottom: calc(100% - 3px);
    right: 20px;
    content: "\e910";
    color: var(--border-color);
    font-family: icomoon;
    line-height: 1;
}

.theme-dark .tools-drop::after {
    color: var(--border-dark-color);
}

.tools-drop-item {
    position: relative;
    padding: 12px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tools-drop-item.is-checked {
    padding: 12px 38px 12px 18px;
}

.tools-drop-item.is-checked::after {
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\e914";
    font-family: icomoon;
    color: #26A17B;
}

.tools-drop-item:hover {
    background-color: rgba(135, 134, 248, 0.15);
}

.theme-dark .tools-drop-item:hover {
    background-color: transparent;
}

.tools-drop-icon img {
    width: 26px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.theme-dark .tools-drop-icon img {
    border-color: var(--border-dark-color);
}

.tools-drop-icon {
    margin: 0 12px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.language-selected {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-transform: uppercase;
}

.language-selected img {
    width: 29px;
    height: 22px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.language-links {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -10px;
}

.language-link {
    width: calc(50% - 20px);
    margin: 4px 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.language-link:nth-child(odd):after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--border-color);
}

.theme-dark .language-link:nth-child(odd):after {
    background-color: var(--border-dark-color);
}

.language-link:last-child:after {
    display: none;
}

.theme-dark .language-selected img {
    border-color: var(--border-dark-color);
}

.profile {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 300px;
}

.profile-info {
    position: relative;
    padding: 0 15px 0 0;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    line-height: 1.2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.profile-info::after {
    position: absolute;
    right: 0;
    top: 6px;
    content: "\e911";
    font-family: icomoon;
    font-size: 9px;
    color: var(--alt-color);
    line-height: 1;
}

.profile-organization {
    font-size: 14px;
    color: var(--text-alt-color);
    margin: 8px 0 20px;
}

.profile-status::after {
    content: "\e954";
    font-family: icomoon;
    font-weight: normal;
}

.profile-status {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 5px;
    color: #E23737;
}

.profile-status-verified {
    color: #00A478;
}

.profile-status-verified::after {
    content: "\e94e";
}

.profile-name {
    max-width: 200px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.theme-dark .profile-name::after {
    color: var(--alt-dark-color);
}

.tools-item.is-open .profile-info::after {
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
}

.notifications-head {
    padding: 18px;
    border-bottom: 1px solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.notifications-head > h4 {
    margin: 0 10px 0 0;
}

.notifications-btn-reset {
    margin-left: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: var(--text-alt-color);
}

.notifications-btn-reset:hover {
    color: var(--accent-color);
}

.theme-dark .notifications-head {
    border-color: var(--border-dark-color);
}

.notifications-items {
    padding: 0 18px;
    margin: 6px 6px 6px 0;
    max-height: 390px;
    overflow-y: auto;
    scrollbar-color: var(--alt-color) var(--border-color);
    scrollbar-width: thin;
}

.notifications-items::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 3px;
    background: var(--border-color);
}

.notifications-items::-webkit-scrollbar-thumb {
    background-color: var(--alt-color);
    border-radius: 3px;
}

.theme-dark .notifications-items {
    scrollbar-color: var(--text-alt-dark-color) var(--border-dark-color);
}

.theme-dark .notifications-items::-webkit-scrollbar {
    background: var(--border-dark-color);
}

.theme-dark .notifications-items::-webkit-scrollbar-thumb {
    background-color: var(--text-alt-dark-color);
}

.notifications-item {
    padding: 18px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.notifications-item.is-active::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #00A478;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 20px;
}

.theme-dark .notifications-item {
    border-color: var(--border-dark-color);
}

.notifications-item:first-child {
    border-top: 0;
}

.notifications-item-date {
    margin: 0 0 12px;
}

.notifications-item-text {
    color: var(--text-alt-color);
    line-height: 1.4;
}

.theme-dark .notifications-item-text {
    color: var(--text-alt-dark-color);
}

/*~ sidebar ~*/
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100%;
    background-color: var(--main-dark-color);
    border-right: 1px solid var(--border-color);
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.theme-dark .sidebar {
    background-color: var(--main-color);
    border-color: var(--border-dark-color);
}

.sidebar-head {
    padding: 20px 18px 5px;
    margin: 0 0 20px;
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.sidebar-head .profile-organization {
    display: none;
}

.sidebar-content {
    padding: 0 18px;
    max-height: 100%;
    overflow-y: auto;
    scrollbar-color: var(--alt-color) var(--border-color);
    scrollbar-width: thin;
    padding-bottom: 30px;
}

.sidebar-content::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 3px;
    background: var(--border-color);
}

.sidebar-content::-webkit-scrollbar-thumb {
    background-color: var(--alt-color);
    border-radius: 3px;
}

.theme-dark .sidebar-content {
    scrollbar-color: var(--accent-color) var(--border-dark-color);
}

.theme-dark .sidebar-content::-webkit-scrollbar {
    background: var(--border-dark-color);
}

.theme-dark .sidebar-content::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
}

.logo {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.logo img {
    width: auto;
    height: auto;
    max-height: 28px;
}

.theme-dark .logo {
    -webkit-filter: brightness(10);
    filter: brightness(10);
}

.sidebar-logo {
    margin: 0 0 4px;
}

.balance {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 18px;
}

.balance-btn {
    position: relative;
    min-width: 164px;
    max-width: 230px;
    padding: 0 42px 0 24px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    line-height: 40px;
    font-weight: 500;
    white-space: nowrap;
}

.theme-dark .balance-btn {
    border-color: var(--border-dark-color);
}

.balance-btn:hover {
    border-color: var(--accent-color);
}

.balance-btn::after {
    content: "\e911";
    font-family: icomoon;
    font-size: 9px;
    position: absolute;
    right: 28px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.balance-btn.is-active {
    background-color: rgba(49, 151, 224, 0.15);
}

.balance-btn.is-active::after {
    -webkit-transform: translateY(-50%) scale(-1);
    -ms-transform: translateY(-50%) scale(-1);
    transform: translateY(-50%) scale(-1);
}

.balance-btn-value {
    display: inline-block;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin: 0 4px 0 0;
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
}

.balance-drop {
    position: absolute;
    left: 0;
    top: calc(100% + 24px);
    min-width: 320px;
    max-width: 396px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--main-dark-color);
    -webkit-box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.08);
    box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.08);
    line-height: 1.1;
    text-align: left;
    display: none;
}

.theme-dark .balance-drop {
    border-color: var(--border-dark-color);
    background-color: var(--main-color);
    -webkit-box-shadow: 20px 20px 100px rgba(21, 20, 31, 0.5);
    box-shadow: 20px 20px 100px rgba(21, 20, 31, 0.5);
}

.balance-drop::after {
    position: absolute;
    bottom: calc(100% - 6px);
    left: 20px;
    content: "\e910";
    color: var(--border-color);
    font-family: icomoon;
    font-size: 24px;
    line-height: 1;
}

.theme-dark .balance-drop::after {
    color: var(--border-dark-color);
}

.balance-drop-item {
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

.balance-drop-item h4 {
    font-size: 16px;
    margin: 0 0 12px;
}

.theme-dark .balance-drop-item {
    border-color: var(--border-dark-color);
}

.balance-drop-item:first-child {
    border-top: 0;
}

.balance-value {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.balance-currency {
    padding: 6px;
    margin: 0 6px 12px;
    width: calc(50% - 12px);
    background-color: var(--gray-color-v1);
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.theme-dark .balance-currency {
    background-color: var(--dark-color-v1);
}

.balance-currency-pic {
    height: 24px;
    width: 24px;
    margin: 0 8px 0 0;
    line-height: 21px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 4px;
    background-color: rgba(49, 151, 224, 0.2);
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.balance-currency-pic img {
    height: 13px;
    width: auto;
}

.balance-currency-value {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.menu li {
    margin: 0 0 10px;
}

.menu li:last-child {
    margin: 0;
}

.menu a {
    padding: 0 12px;
    display: block;
    border-radius: 8px;
    line-height: 42px;
}

.theme-dark .menu a {
    color: var(--text-alt-dark-color);
}

.theme-dark .menu a:hover {
    color: var(--main-dark-color);
}

.menu a i {
    margin: 0 10px 0 0;
    font-size: 20px;
    color: var(--alt-color);
    vertical-align: -2px;
}

.theme-dark .menu a i {
    color: var(--alt-dark-color);
}

.menu li.is-active a {
    background-color: rgba(98, 90, 252, 0.1);
    color: var(--accent-color);
}

.theme-dark .menu li.is-active a {
    background-color: var(--dark-color-v1);
    color: var(--main-dark-color);
}

.menu li.is-active a i {
    color: var(--accent-color);
}

.theme-dark .menu li.is-active a i {
    color: var(--main-dark-color);
}

/*~ skeleton ~*/
.box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.box-small {
    margin: 0 -5px;
}

.balance-currency-box {
    margin: 0 -6px;
}

.balance-currency-box:not(:empty) {
    margin-bottom: -12px;
}

.container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

.main {
    padding: var(--h-height) 0 0 var(--s-width);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.scrollable-wrapper {
    padding: 60px 60px 0 60px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 100%;
    overflow: auto;
    scrollbar-color: var(--alt-color) var(--border-color);
    scrollbar-width: thin;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    scroll-padding-top: var(--h-height);
    scroll-behavior: smooth;
}

.scrollable-wrapper::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background: var(--border-color);
}

.scrollable-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--alt-color);
    border-radius: 0;
}

.theme-dark .scrollable-wrapper {
    scrollbar-color: var(--text-alt-dark-color) var(--border-dark-color);
}

.theme-dark .scrollable-wrapper::-webkit-scrollbar {
    background: var(--border-dark-color);
}

.theme-dark .scrollable-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--text-alt-dark-color);
}

.section {
    padding: 0 0 60px;
}

.section-head {
    margin: 0 0 30px;
}

.section-head-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-head-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.section-head-link {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    text-decoration: underline;
    color: var(--accent-color);
    white-space: nowrap;
}

.section-head-link:hover {
    text-decoration: none;
}

.section-head h1:not(:last-child),
.section-head h2:not(:last-child) {
    margin-bottom: 15px;
}

.section-head-flex h1:not(:last-child),
.section-head-flex h2:not(:last-child) {
    margin: 0 35px 0 0;
}

.section-head-text {
    color: var(--text-alt-color);
    max-width: 752px;
    width: 100%;
}

.section-subtitle {
    display: inline-block;
    vertical-align: middle;
    color: var(--text-alt-color);
}

.section-tools {
    margin: 0 0 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.section-tools > .btn {
    margin-bottom: 7px;
}

.subnavigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -7px;
    white-space: nowrap;
}

.subnavigation-link {
    padding: 5px 12px;
    margin: 0 7px 7px;
    line-height: 1.5;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-alt-color);
    display: inline-block;
    vertical-align: middle;
}

.subnavigation-link.is-active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: rgba(111, 110, 247, 0.2);
}

.theme-dark .subnavigation-link {
    border-color: var(--border-dark-color);
}

.theme-dark .subnavigation-link.is-active {
    border-color: var(--accent-color);
}

.sidebar-buttons-box {
    margin: 24px -18px 0;
    padding: 24px 18px;
    border-top: 1px solid var(--border-color);
}

.sidebar-btn {
    width: calc(50% - 10px);
    margin: 0 5px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2px 15px;
    line-height: 56px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.theme-dark .sidebar-btn {
    border-color: var(--border-dark-color);
}

.theme-dark .sidebar-btn:nth-child(1) img {
    -webkit-filter: grayscale(1) brightness(100);
    filter: grayscale(1) brightness(100);
}

.theme-dark .sidebar-buttons-box {
    border-color: var(--border-dark-color);
}

.sidebar-btn img {
    max-height: 30px;
    margin: 0 8px 0 0;
    width: auto;
}

.sidebar-btn-text {
    font-size: 13px;
    font-weight: 500;
}

.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px 0 var(--s-width);
}

.wallets-section {
    padding-bottom: 40px;
}

.wallets-box {
    margin: 0 -8px;
}

.wallet {
    border: 2px solid transparent;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
    width: 292px;
    margin: 0 8px 16px;
}

.wallet-cyan {
    border-color: #0BCBD3;
    background-color: #0BCBD3;
}

.wallet-red {
    border-color: #FF5252;
    background-color: #FF5252;
}

.wallet-yellow {
    border-color: #F7B731;
    background-color: #F7B731;
}

.wallet-green {
    border-color: #26A17B;
    background-color: #26A17B;
}

.wallet-orange {
    border-color: #F7931A;
    background-color: #F7931A;
}

.wallet-purple {
    border-color: #627EEA;
    background-color: #627EEA;
}

.wallet-blue {
    border-color: #3197E0;
    background-color: #3197E0;
}

.wallet-lightblue {
    border-color: #2BC0DA;
    background-color: #2BC0DA;
}

.wallet-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 16px;
}

.wallet-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin: 0 0 16px;
}

.wallet-links {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.wallet-link:hover {
    color: var(--main-dark-color);
    opacity: 0.8;
}

.wallet-link {
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wallet-link[disabled] {
    color: inherit;
}

.theme-dark .wallet-link[disabled] {
    background: 0;
    opacity: 0.4;
}

.wallet-link:first-child {
    padding-left: 0;
}

.wallet-link:last-child {
    border: 0;
}

.wallet-frozen {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.wallet-frozen i {
    margin: 0 5px 0 0;
}

.wallet-content {
    padding: 12px;
}

.theme-dark .wallet-content {
    border-color: var(--border-dark-color);
}

.wallet-currency {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
}

.wallet-currency-pic {
    height: 36px;
    width: 36px;
    margin: 0 12px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
}

.wallet-currency-pic img {
    height: 17px;
}

.wallet-currency-value {
    font-weight: 500;
    font-size: 18px;
}

.wallet-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.wallet.is-blured .wallet-value {
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.wallet.is-blured .wallet-frozen {
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

.wallet.is-blured .wallet-course {
    -webkit-filter: blur(6px);
    filter: blur(6px);
}

.wallet-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -6px 0 auto;
}

.wallet-buttons:not(:empty) {
    margin-bottom: -12px;
}

.wallet-btn {
    margin: 0 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    min-width: 94px;
}

.wallet-qr {
    text-align: center;
    margin: 0 0 30px;
}

.wallet-qr img {
    width: 160px;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.transaction {
    font-weight: 600;
}

.transaction-pending {
    color: var(--text-alt-color);
}

.transaction-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 20px;
}

.transaction-column {
    margin: 0 0 20px;
}

.transaction-key {
    padding: 0 10px 0 0;
    font-weight: 600;
}

.transaction-value {
    margin: 0 0 0 auto;
    text-align: right;
}

.transaction-column .transaction-value {
    margin: 5px 0 0 0;
    text-align: left;
}

.trans {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.trans-image {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F0EFFF;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 10px 0 0;
    overflow: hidden;
}

.theme-dark .trans-image {
    background-color: var(--dark-color-v1);
}

.trans-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.trans-image i {
    color: #A6A4C0;
    font-size: 18px;
}

.theme-dark .trans-image i {
    color: #C4C2DE;
}

.trans-text {
    line-height: 1.2;
}

.transactions-table p {
    margin: 0;
    line-height: 1.2;
}

.transactions-table table {
    font-size: 15px;
}

.transactions-table strong {
    font-weight: 600;
}

.transactions-table th,
.transactions-table td {
    text-align: left;
    padding: 10px 20px;
}

.transactions-table th:last-child,
.transactions-table td:last-child {
    text-align: right;
    white-space: nowrap;
}

.exchange-currency-from {
    color: var(--text-alt-color);
    font-size: 80%;
}

.line-throught {
    text-decoration: line-through;
}

.trans-info {
    color: var(--alt-color);
    font-size: 14px;
    white-space: nowrap;
}

/*PAGES*/
.bordered-block {
    padding: 30px;
    max-width: 755px;
    min-width: 400px;
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.bordered-block:not(:last-child) {
    margin-bottom: 20px;
}

.bordered-block-medium {
    max-width: 655px;
}

.bordered-block-small {
    max-width: 390px;
    margin: 0 auto;
}

.bordered-block-large {
    max-width: 910px;
}

.content-box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.content-box .bordered-block {
    margin: 0 15px 30px;
}

.theme-dark .bordered-block {
    border-color: var(--border-dark-color);
    background-color: transparent;
}

.operation-nav {
    margin: 0 -15px;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 18px;
    counter-reset: li;
    color: var(--text-alt-color);
}

.operation-nav li {
    margin: 0 15px 30px;
}

.operation-nav li::before {
    display: inline-block;
    content: counter(li);
    counter-increment: li;
    width: 42px;
    height: 42px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    margin: 0 12px 0 0;
}

.theme-dark .operation-nav li::before {
    border-color: var(--alt-dark-color);
}

.operation-nav li.is-active::before {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--main-dark-color);
}

.operation-nav li.is-active {
    color: var(--accent-color);
    font-weight: 600;
}

.operation-nav li.is-passed {
    color: #26A17B;
}

.operation-nav li.is-passed::before {
    content: "\e914";
    border-color: #26A17B;
    background-color: transparent;
    font-family: icomoon;
    color: #26A17B;
}

.operation-nav li.is-failed::before {
    content: "\e916";
    border-color: #E23737;
    background-color: transparent;
    font-family: icomoon;
    color: #E23737;
}

.operation-nav li.is-failed {
    color: #E23737;
}

.operation-step {
    margin: 0 0 30px;
}

.operation-description-item {
    margin: 0 15px 30px;
}

.operation-caption p {
    margin: 0 0 5px;
}

.operation-captions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
    font-size: 18px;
    color: var(--text-alt-color);
}

.operation-captions-centered {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.operation-caption {
    margin: 0 15px 20px;
}

.operation-caption img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
}

.operation-details {
    color: var(--text-alt-color);
    line-height: 1;
}

.operation-details > h3 {
    margin: 0 0 30px;
}

.operation-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 0 30px;
}

.operation-detail:last-child {
    padding: 30px 0 0;
    border-top: 1px solid var(--border-color);
}

.theme-dark .operation-detail:last-child {
    border-color: var(--border-dark-color);
}

.operation-detail-key {
    padding: 0 15px 0 0;
}

.operation-detail-value {
    margin: 0 0 0 auto;
    font-weight: 600;
    text-align: right;
}

.operation-type {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 10px;
}

.operation-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px auto 15px;
}

.operation-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.operation-value {
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 10px;
}

.operation-date {
    font-weight: 300;
    margin: 0 0 30px;
    font-size: 14px;
}

.operation-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.operation-controls:not(:empty) {
    margin-bottom: -10px;
}

.operation-btn {
    margin: 0 10px 10px;
    min-width: 215px;
}

.export-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 -7px 0 auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.export-btn {
    margin: 0 7px 7px;
    min-width: 30px;
    line-height: 34px;
    font-weight: 600;
    padding: 0 10px;
}

.export-btn i {
    font-size: 20px;
    vertical-align: middle;
    margin: 0;
}

.control-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 7px;
}

.control-buttons:first-child {
    margin-left: -7px;
}

.control-btn {
    margin: 0 7px 7px;
    white-space: nowrap;
}

.controls {
    margin: 0 -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.controls:not(:empty) {
    margin-bottom: -10px;
}

.control {
    margin: 0 5px 10px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background-color: rgba(98, 90, 252, 0.1);
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 16px;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.control i.icon-view {
    font-size: 20px;
    vertical-align: -2px;
}

.control:hover {
    background-color: rgba(98, 90, 252, 0.2);
}

.status {
    max-width: 200px;
    border-radius: 6px;
    line-height: 1;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin: 4px;
    position: relative;
}

.status::before {
    display: inline-block;
    vertical-align: -1px;
    margin: 0 6px 0 0;
    font-family: icomoon;
}

.status-expired {
    color: #ff9900;
}

.status-expired::before {
    content: "\e93f";
}

.status-new {
    color: #8b00ff;
}

.status-new::before {
    content: "\e93e";
}

.status-approved {
    color: #00A478;
}

.status-approved::before {
    content: "\e940";
}

.status-review {
    color: #625AFC;
}

.status-review::before {
    content: "\e93e";
}

.status-rejected {
    color: #E23737;
}

.status-rejected::before {
    content: "\e93f";
}

.status-colored i {
    font-size: 18px;
    margin: 0 8px 0 0;
    vertical-align: -2.5px;
}

.info-box {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.info-column {
    margin: 0 15px;
    min-width: 220px;
    max-width: calc(50% - 30px);
}

.info-item {
    margin: 0 0 30px;
    color: var(--text-alt-color);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h4 {
    margin: 0 0 10px;
    color: var(--main-color);
}

.info-item p a {
    color: var(--accent-color);
}

.info-item-detail p {
    margin: 0;
}

.info-item-detail {
    margin: 0 0 10px;
}

.info-item-detail:last-child {
    margin-bottom: 0;
}

.info-item-detail strong {
    color: var(--main-color);
}

.theme-dark .info-item-detail strong {
    color: var(--main-dark-color);
}

.info-item-image {
    margin: 16px 0 0 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #F0EFFF;
}

.info-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.theme-dark .info-item h4 {
    color: var(--main-dark-color);
}

.info-details:not(:first-child) {
    margin-top: 30px;
}

.info-details h4 {
    margin: 0 0 10px;
}

.info-details-item {
    margin: 0 15px 30px;
    width: calc(50% - 30px);
}

.info-details-item strong {
    font-weight: 500;
    color: var(--main-color);
}

.info-details p {
    color: var(--text-alt-color);
}

.info-details-item p {
    margin: 0 0 5px;
}

.navigation-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px -10px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navigation-buttons:not(:empty) {
    margin-bottom: -10px;
}

.navigation-btn {
    margin: 0 10px 10px;
}

.nodata i {
    font-size: 50px;
    display: inline-block;
    vertical-align: middle;
    color: var(--accent-color);
    margin: 0 0 20px;
}

.details-block:not(:last-child) {
    padding-bottom: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.theme-dark .details-block:not(:last-child) {
    border-bottom: 1px solid var(--border-dark-color);
}

.details-items-box {
    margin: 0 -10px;
}

.details-item {
    width: calc(50% - 20px);
    margin: 0 10px 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.2;
    word-break: break-word;
}

.details-item > h4 {
    font-size: 16px;
    margin: 0 0 6px;
}

.details-item > p {
    color: var(--text-alt-color);
}

.details-item a {
    color: var(--accent-color);
}

/*swiper recustomize*/
.swiper-button-next, .swiper-button-prev {
    color: var(--accent-color);
}

.swiper:not(.swiper-initialized) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.square-swiper-button {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--accent-color);
}

.theme-dark .square-swiper-button {
    background-color: var(--dark-color-v1);
    border-color: var(--border-dark-color);
    color: var(--main-dark-color);
}

.square-swiper-button::after {
    font-size: 16px;
    font-weight: 600;
}

.message {
    margin: 0 0 25px;
}

.message:last-child {
    margin-bottom: 0;
}

.message-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.message-image {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 18px 0 0;
}

.message-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%;
}

.message-author {
    font-size: 18px;
}

.message-date {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-alt-color);
}

.message-head {
    margin: 0 0 15px;
}

.message-text {
    margin: 0 0 15px;
}

.message-attachment-link {
    color: var(--accent-color);
}

.profile-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 30px;
}

.profile-option-content {
    padding: 0 10px 0 0;
}

.profile-option:last-child {
    margin-bottom: 0;
}

.profile-option-qr {
    width: 120px;
    height: 120px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 18px 0 0;
}

.profile-option-qr img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.profile-option-image {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 18px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 21px;
    color: #C4C2DE;
}

.theme-dark .profile-option-image {
    background: var(--dark-color-v1);
}

.profile-option-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%;
}

.profile-option-title {
    font-size: 18px;
}

.profile-option-info {
    color: var(--text-alt-color);
    font-weight: 300;
}

.profile-option-info:not(:last-child) {
    margin-bottom: 10px;
}

.profile-option-info a {
    color: var(--accent-color);
}

.profile-option-buttons {
    margin: 0 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.profile-option-buttons p {
    text-align: right;
    color: var(--text-alt-color);
}

.profile-option-btn {
    min-width: 180px;
    margin: 0 0 12px;
    color: var(--main-dark-color);
}

.profile-option-btn-approved {
    background-color: #26A17B;
}

.profile-option-btn-rejected {
    background-color: #FF5252;
}

.profile-option-btn:last-child {
    margin-bottom: 0;
}

span.profile-option-btn {
    cursor: default;
}

.profile-image-btn {
    margin: 0 10px 0 0;
}

.profile-option-btn:hover {
    color: var(--main-dark-color);
}

/*payment page*/
.payment {
    margin: auto;
    max-width: 755px;
    width: 100%;
    line-height: 1.2;
}

.payment-value-text {
    text-align: center;
    display: none;
}

.payment-medium {
    max-width: 655px;
}

.payment-large {
    max-width: 755px;
}

.payment-block > h2 {
    margin: 0 0 20px;
}

.payment-block:not(:last-child) {
    margin-bottom: 20px;
}

.payment-logo {
    text-align: center;
    margin: 0 0 10px;
}

.payment-logo img {
    height: 38px;
}

.payment-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 24px;
}

.payment-comment {
    margin: 0 0 25px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.payment-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto 0 0;
}

.payment-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 24px;
}

.payment-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.payment-row ~ .payment-block {
    margin-top: 20px;
}

.payment-value {
    font-size: 24px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 8px 0 0;
    text-align: right;
}

.payment-value:last-child {
    margin-right: 0;
}

.payment-value-small {
    font-size: 18px;
}

.payment-img {
    display: inline-block;
    vertical-align: middle;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.payment-img img {
    width: auto;
    height: 30px;
}

.payment > h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 20px;
    text-align: center;
    text-transform: uppercase;
}

.payment-creator {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
    text-align: center;
}

.payment-text {
    margin: 0 0 24px;
    padding: 16px;
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    line-height: 1.45;
}

.payment-text-error {
    border-color: #E23737;
}

.payment-text h2 {
    margin: 0 0 16px;
}

.payment-text p {
    font-size: 14px;
    color: var(--text-alt-color);
}

.payment-text a {
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: underline;
}

.payment-text a:hover {
    text-decoration: none;
}

.payment-text strong {
    color: var(--main-color);
}

.payment-text-сlose {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    font-size: 10px;
    text-align: center;
    position: absolute;
    right: -12px;
    top: -12px;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    background-color: var(--main-dark-color);
}

.payment-text-сlose:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--main-dark-color);
}

.payment-process {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0 0 30px;
}

.payment-qr {
    width: 178px;
    height: 178px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 20px 0 0;
}

.payment-timer {
    padding: 16px;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    background-color: rgba(255, 82, 82, 0.2);
    border-radius: 6px;
}

.payment-timer-error {
    background-color: rgba(226, 55, 55, 0.2);
    color: #E23737;
}

.payment-timer:not(:last-child) {
    margin-bottom: 24px;
}

.theme-dark .payment-qr {
    border-color: var(--border-dark-color);
}

.payment-qr > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.payment-states.is-hidden {
    display: none;
}

.payment-step .payment-states {
    margin-top: 20px;
}

.payment-state {
    padding: 12px 16px;
    margin: 0 0 30px 0;
    border-radius: 6px;
    border: 1px solid transparent;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 65px;
    display: none;
}

.payment-state.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.payment-state-search {
    border-color: #8786F8;
}

.payment-state-success {
    border-color: #00A478;
}

.payment-state-error {
    border-color: #E23737;
}

.payment-state-pending {
    border-color: #E98931;
}

.payment-state > img {
    width: 30px;
    height: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 10px 0 0;
}

.payment-state-text {
    font-size: 15px;
}

.payment-state-text p {
    margin: 0;
}

.payment-state-text a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.payment-state-text a:hover {
    text-decoration: none;
}

.payment-state-text small {
    color: var(--text-alt-color);
}

.payment-state-text {
    line-height: 1.3;
}

.payment-id {
    color: var(--text-alt-color);
    margin: 0 0 20px;
}

.payment-methods {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.payment-method {
    margin: 0 8px 20px;
    width: calc(33.3333333333% - 16px);
    padding: 20px 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.payment-method-small {
    width: calc(25% - 16px);
}

.payment-method:hover {
    border-color: var(--accent-color);
}

.payment-method > img {
    height: 40px;
    margin: 0 0 12px;
    width: auto;
}

.payment-method-image {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 10px;
}

.payment-method-image > img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 154px;
}

.payment-method-image-small > img {
    height: 20px;
}

.payment-method-image-medium > img {
    height: 25px;
}

.payment-method > h4 {
    font-size: 16px;
    font-weight: 400;
}

.payment-step {
    display: none;
}

.payment-step-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px -15px;
}

.payment-step-row > .payment-timer {
    width: calc(50% - 30px);
    margin: 0 15px;
}

.payment-selected-method {
    width: calc(50% - 30px);
    margin: 0 15px;
    text-align: right;
}

.payment-selected-method > img {
    max-height: 29px;
}

.company-logo {
    text-align: center;
    margin: 0 0 35px;
}

.payment-note {
    margin: 0 0 24px;
    color: var(--text-alt-color);
}

.payment-note strong {
    color: var(--main-color);
    font-size: 18px;
}

.payment-lang {
    -ms-flex-item-align: center;
    align-self: center;
    margin: 0 10px 10px;
}

.lang-list {
    display: none;
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-size: inherit;
    position: absolute;
    top: calc(100% + 5px);
    left: -10px;
    width: calc(100% + 10px);
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    -webkit-box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.08);
    box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.08);
    list-style-type: none;
    min-height: 35px;
    z-index: 1;
}

.lang {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lang-output {
    font-weight: 500;
}

.lang-output i {
    font-size: 6px;
    color: #94919E;
    margin-left: 5px;
    vertical-align: 2px;
    pointer-events: none;
    display: inline-block;
}

.lang.is-open .lang-list {
    display: block;
    position: absolute;
}

.lang.is-open .lang-output i {
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
    color: var(--accent-color);
}

.header-lang {
    color: #28213B;
}

.lang-list li {
    padding: 0;
    position: static;
    margin: 0 0 6px;
}

.lang-list li:last-child {
    margin-bottom: 0;
}

.lang-list li::before {
    display: none;
}

.lang-list a {
    display: block;
    color: inherit;
}

.lang-list a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.theme-dark .company-logo {
    -webkit-filter: brightness(10);
    filter: brightness(10);
}

.company-logo img {
    max-width: 300px;
    width: auto;
    height: auto;
}

.converter-currency {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    margin: 0 20px 0 0;
}

.converter-currency-pic {
    height: 36px;
    width: 36px;
    margin: 0 12px 0 0;
    line-height: 32px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.converter-currency-pic img {
    height: 17px;
}

.converter-currency-value {
    font-weight: 500;
    width: 50px;
}

.login {
    margin: 0 auto;
    margin: auto;
    font-size: 14px;
    padding: 15px;
}

.login-logo {
    width: 190px;
    margin: 20px auto;
}

.login-text {
    color: var(--text-alt-color);
}

.login-text a {
    color: var(--accent-color);
}

/*Policy pages*/
.texted-section {
    padding-bottom: 40px;
}

.texted-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

.texted-block-sidebar {
    position: sticky;
    top: 0;
    width: 370px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.texted-block-navigation {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--main-dark-color);
    padding: 30px;
    margin: 0 10px 0 0;
    list-style-type: none;
    color: var(--text-alt-color);
    counter-reset: li;
}

.texted-block-navigation li::before {
    content: counter(li) ".";
    counter-increment: li;
    color: inherit;
    position: absolute;
    left: 0;
}

.texted-block-navigation li {
    margin: 0 0 14px;
    padding: 0 0 0 20px;
    position: relative;
}

.texted-block-navigation li a {
    display: block;
}

.texted-block-navigation li:last-child {
    margin-bottom: 0;
}

.texted-block-navigation a.is-active {
    color: #1E1D2D;
}

.texted-block-content {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--main-dark-color);
    padding: 30px;
    width: 100%;
    max-width: 724px;
    counter-reset: section;
}

.texted-block-content section > h3 {
    position: relative;
    padding: 0 0 0 40px;
}

.texted-block-content section > h3::before {
    content: counter(section) ".";
    counter-increment: section;
    position: absolute;
    left: 0;
}

.texted-block-content p {
    color: var(--text-alt-color);
    margin: 0 0 24px;
}

.texted-block-content p strong {
    color: var(--main-color);
}

.texted-block-content p:last-child {
    margin-bottom: 0;
}

.texted-block-content a {
    color: var(--accent-color);
}

.texted-block-content > section:not(:last-child) {
    margin-bottom: 24px;
}

.texted-block-content strong {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 5px;
}

/*organization pages*/
.balance-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 16px;
    border-radius: 6px;
    background: rgba(111, 110, 247, 0.1);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1.1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.balance-item {
    position: relative;
    padding: 0 20px 0 0;
    font-weight: 700;
    font-size: 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.balance-item-name {
    margin-left: 2px;
}

.balance-item::after {
    content: "";
    width: 1px;
    height: 20px;
    background-color: var(--accent-color);
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.balance-item:last-child:after {
    display: none;
}

.balance-item-value {
    font-size: 18px;
}

.balance-section {
    padding-bottom: 35px;
}

.organization-section {
    padding-bottom: 35px;
}

.staff-item {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin: 0 15px 30px;
    width: calc(25% - 30px);
    position: relative;
}

.staff-item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 15px;
    padding-right: 35px;
}

.staff-item-image {
    width: 54px;
    height: 54px;
    line-height: 1;
    margin: 0 18px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(111, 110, 247, 0.1);
    font-size: 12px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.staff-item-image > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.staff-balance-items {
    width: auto;
}

.staff-balance-items .balance-item-value {
    font-size: 14px;
}

.staff-item-title {
    font-size: 18px;
    margin: 0;
}

.staff-item-role {
    margin: 0 0 15px;
}

.staff-item-info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 186px;
}

.staff-item-options {
    margin: 0 0 15px;
}

.staff-item-option {
    margin: 0 0 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-size: 15px;
}

.staff-item-option-key {
    font-weight: 600;
    margin: 0 7px 0 0;
}

.staff-item-option-value {
    color: var(--text-alt-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.staff-item-option-value p {
    margin: 0 10px 0 0;
}

.staff-item-option-value p:last-child {
    margin: 0;
}

.staff-item-footer h4 {
    font-size: 15px;
    margin: 0 0 5px;
}

.staff-item-visit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
}

.staff-item-buttons {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.staff-item-btn {
    position: absolute;
    right: 30px;
    top: 30px;
}

.staff-balance-items {
    margin: 0 0 24px;
}

.stats-box {
    margin: 0 -12px;
}

.stats-item {
    margin: 0 12px 30px;
    width: calc(25% - 24px);
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.theme-dark .stats-item {
    border-color: var(--border-dark-color);
}

.theme-dark .staff-item {
    border-color: var(--border-dark-color);
}

.stats-item > h4 {
    font-size: 16px;
    margin: 0 0 16px;
}

.stats-item-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.stats-item-key {
    padding: 0 5px 0 0;
    color: var(--text-alt-color);
}

.stats-item-value {
    font-weight: 700;
    text-align: right;
}

/*notify-text*/
.notify-text {
    margin: 0 0 24px;
    padding: 16px;
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    line-height: 1.45;
}

.notify-text-error {
    border-color: #FF5252;
}

.notify-text-no-border {
    border: 0;
    padding: 0 30px 10px 0;
}

.notify-text h2 {
    margin: 0 0 16px;
}

.notify-text p {
    font-size: 15px;
}

.notify-text a {
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: underline;
}

.notify-text a:hover {
    text-decoration: none;
}

.notify-text strong:not([class]) {
    color: var(--main-color);
}

.theme-dark .notify-text strong:not([class]) {
    color: var(--main-dark-color);
}

.notify-text-сlose {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    font-size: 10px;
    text-align: center;
    position: absolute;
    right: -12px;
    top: -12px;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    background-color: var(--main-dark-color);
}

.theme-dark .notify-text-сlose {
    background-color: var(--main-color);
    border-color: var(--border-dark-color);
}

.notify-text-сlose:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--main-dark-color);
}

/*footer*/
.footer {
    font-size: 12px;
    margin-top: auto;
    padding: 20px 0;
    color: var(--text-alt-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-link {
    margin: 0 15px 15px;
    opacity: 0.5;
}

.footer-link:hover {
    opacity: 1;
}

.footer-link.is-active {
    color: var(--accent-color);
}

.footer-copy {
    margin: 0 0 0 auto;
    color: var(--main-color);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.theme-dark .footer-copy {
    color: var(--main-dark-color);
}

.loader {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    -webkit-animation: loader12-u6338d783 1s linear alternate infinite;
    animation: loader12-u6338d783 1s linear alternate infinite;
    top: 50%;
    margin: -50px auto 0;
}

.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.preloader-img {
    background-image: url("../images/loading.gif");
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
}

.transaction-loader {
    position: absolute;
    margin-top: 200px !important;
    margin-left: 40%;
    -webkit-transform: translate(-70%);
    -ms-transform: translate(-70%);
    transform: translate(-70%);
}

/*client card*/
.client-card-logo {
    display: block;
    text-align: center;
    margin: 0 0 18px;
    -webkit-filter: brightness(100);
    filter: brightness(100);
    outline: none;
}

.client-card-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 18px;
    overflow: hidden;
    background-color: var(--alt-color);
}

.client-card-pic > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.client-card > h2 {
    text-align: center;
    font-size: 20px;
}

.client-card-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 10px -5px 0;
}

.client-card-buttons-box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.client-card-buttons > .btn {
    margin: 10px 5px 0;
}

.client-card-btn {
    width: calc(50% - 10px);
    min-width: 1px;
    padding: 0 5px;
}

.client-card-btn.btn-bordered {
    line-height: 32px;
}

.saved-method {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px 12px;
    background-color: rgba(111, 110, 247, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin: 0 0 10px;
    font-size: 14px;
}

.saved-method-option {
    margin: 0 4px 2px 0;
    line-height: 1.1;
    word-break: break-all;
}

.saved-method-option > span {
    font-weight: 600;
}

.saved-method-option-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.saved-method-option:first-child > span::after {
    content: "-";
    margin: 0 4px;
}

.saved-method-name {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 90px;
    display: inline-block;
    vertical-align: -1px;
}

.saved-method-option:last-child {
    margin-bottom: 0;
}

.saved-method-name {
    color: var(--text-alt-color);
}

.saved-method-edit {
    color: var(--accent-color);
    margin: 0 0 0 4px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 16px;
}

.theme-dark .saved-method {
    border-color: var(--border-dark-color);
}

.saved-method:last-child {
    margin-bottom: 0;
}

.saved-method-contact {
    font-size: 14px;
}

.saved-method-buttons {
    margin: 0 -5px 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.saved-method-btn {
    margin: 0 5px;
}

.saved-method-btn:not(.btn-square) {
    min-width: 75px;
    padding: 0 7px;
}

.client-card-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
    font-size: 14.5px;
}

.client-card-options:not(:empty) {
    margin-bottom: -14px;
}

.client-card-option {
    margin: 0 10px 15px;
    width: calc(100% - 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.client-card-option-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.client-card-option-icon {
    color: var(--accent-color);
    margin: 2px 10px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 16px;
    vertical-align: middle;
}

.client-card-option-info {
    color: var(--text-alt-color);
    word-break: break-all;
}

.client-card-head {
    text-align: center;
    margin: 0 0 25px;
}

.client-card-head > h2 {
    margin: 0 0 5px;
}

.client-card-head > h5 {
    color: var(--text-alt-color);
}

.client-card-qr {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 22px;
    color: var(--accent-color);
}

.client-card-status > i {
    margin: 0 2px 0 0;
}

.client-card-status span {
    font-weight: 500;
}

.protection-form .form-item {
    margin: 0 15px 15px;
}

/*fancybox recustomize*/
.modal {
    max-width: 752px;
    width: 100%;
    padding: 30px;
    background-color: var(--main-dark-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: none;
}

.operation-modal {
    padding: 0;
    border: 0;
}

.transaction-modal {
    padding: 0 0 20px;
}

.transaction-modal .modal-body {
    padding-right: 30px;
}

.modal-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.theme-dark .operation-modal {
    border: 1px solid var(--border-dark-color);
}

.modal-info {
    width: 315px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    text-align: center;
    padding: 30px;
    background-color: var(--accent-color);
    color: var(--main-dark-color);
}

.modal-error {
    color: #ec6d6d !important;
    font-size: 11px;
    text-align: left;
    display: none;
}

.modal-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 30px 50px 10px 30px;
}

.theme-dark .modal {
    background-color: var(--main-color);
    border-color: var(--border-dark-color);
}

.modal-tiny {
    max-width: 400px;
}

.modal-extra-small {
    max-width: 350px;
}

.modal-small {
    max-width: 565px;
}

.modal-medium {
    max-width: 620px;
}

.modal-qr {
    max-width: 320px;
}

.modal-details {
    max-width: 434px;
    padding: 30px 20px;
}

.modal-background {
    background: -o-radial-gradient(50% -115px, circle, var(--accent-color) 250px, transparent 251px) no-repeat 50% 0 #fff;
    background: radial-gradient(circle at 50% -115px, var(--accent-color) 250px, transparent 251px) no-repeat 50% 0 #fff;
    border: 0;
}

.theme-dark .modal-background {
    border: 1px solid var(--border-dark-color);
}

.modal-head {
    margin: 0 0 30px;
}

.modal-head-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-head-flex > h2 {
    margin: 0 10px 0 0;
}

.modal-text a {
    color: var(--accent-color);
}

.instructions-modal p {
    color: var(--text-alt-color);
    margin: 0 0 24px;
}

.instructions-modal p:last-child {
    margin-bottom: 0;
}

.instructions-modal b {
    font-weight: 500;
    color: var(--accent-color);
}

.instructions-modal figure {
    text-align: center;
}

.instructions-modal figure img {
    margin: 0 auto;
}

.browsers-box {
    margin: 0 -10px;
}

.browser-item {
    width: calc(33.3333333333% - 20px);
    margin: 0 10px 24px;
    text-align: center;
}

.browser-item img {
    height: 50px;
    width: auto;
    margin: 0 0 10px;
}

.browser-item h4 {
    font-size: 14px;
    min-height: 28px;
    margin: 0 0 5px;
}

.browser-item-link {
    color: var(--accent-color);
}

.fancybox-bg {
    color: var(--main-color);
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.4;
}

.fancybox-container {
    z-index: 99999;
}

[data-fancybox] {
    cursor: pointer;
}

/*datepicker recustomize*/
.air-datepicker-global-container {
    z-index: 999999;
}

.air-datepicker {
    border-color: var(--border-color);
    border-radius: 6px;
    color: var(--main-color);
    -webkit-box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
    box-shadow: 0px 57px 77px rgba(26, 26, 38, 0.0209047), 0px 17.1838px 23.2132px rgba(26, 26, 38, 0.03), 0px 7.13728px 9.64159px rgba(26, 26, 38, 0.0390953), 0px 2.58142px 3.48718px rgba(26, 26, 38, 0.06);
    font-family: Inter;
    font-weight: 500;
}

.theme-dark .air-datepicker {
    background: var(--main-color);
    border-color: var(--border-dark-color);
    color: var(--text-main-dark-color);
}

.theme-dark .air-datepicker--pointer::after {
    border-color: var(--main-color);
}

.theme-dark .air-datepicker-nav {
    border-color: var(--border-dark-color);
}

.theme-dark .air-datepicker-cell.-day-.-other-month-,
.theme-dark .air-datepicker-cell.-year-.-other-decade- {
    color: var(--text-alt-color);
    opacity: 0.4;
}

.air-datepicker-nav--action:hover {
    background-color: rgba(98, 90, 252, 0.1);
    color: var(--accent-color);
}

.air-datepicker-nav--action:hover path {
    stroke: var(--accent-color);
}

.theme-dark .air-datepicker-nav--action path {
    stroke: var(--text-alt-dark-color);
}

.theme-dark .air-datepicker-nav--action:hover path {
    stroke: var(--accent-color);
}

.air-datepicker-nav--title:hover {
    background-color: rgba(98, 90, 252, 0.1);
    color: var(--accent-color);
}

.air-datepicker-nav--title i {
    color: var(--text-alt-color);
}

.theme-dark .air-datepicker-nav--title i {
    color: var(--text-alt-dark-color);
}

.air-datepicker-body--day-name {
    color: var(--text-alt-color);
}

.theme-dark .air-datepicker-body--day-name {
    color: var(--text-alt-dark-color);
}

.air-datepicker-cell.-current- {
    color: var(--accent-color);
}

.air-datepicker-cell.-current-:hover {
    color: var(--main-color);
}

.air-datepicker-cell.-current-.-in-range- {
    color: var(--accent-color);
}

.air-datepicker-cell.-focus- {
    background-color: rgba(98, 90, 252, 0.1);
    color: var(--accent-color);
}

.air-datepicker-cell.-selected- {
    background-color: var(--accent-color);
    color: var(--text-main-dark-color);
}

.air-datepicker-cell.-selected-:hover {
    background-color: var(--accent-color);
    color: var(--text-main-dark-color);
}

.air-datepicker-cell.-selected-.-current- {
    background-color: var(--accent-color);
}

.-selected-.air-datepicker-cell.-day-.-other-month-,
.-selected-.air-datepicker-cell.-year-.-other-decade- {
    background-color: var(--dark-color-v1);
}

.-selected-.air-datepicker-cell.-day-.-other-month-:hover,
.-selected-.air-datepicker-cell.-year-.-other-decade-:hover {
    background-color: var(--dark-color-v1);
}

.theme-dark .-selected-.air-datepicker-cell.-day-.-other-month-,
.theme-dark .-selected-.air-datepicker-cell.-year-.-other-decade- {
    background-color: var(--alt-dark-color);
    color: #fff;
    opacity: 0.7;
}

.theme-dark .-selected-.air-datepicker-cell.-day-.-other-month-:hover,
.theme-dark .-selected-.air-datepicker-cell.-year-.-other-decade-:hover {
    background-color: var(--alt-dark-color);
    color: #fff;
    opacity: 0.7;
}

.air-datepicker-cell.-in-range- {
    background-color: rgba(98, 90, 252, 0.1);
}

.air-datepicker-cell.-in-range-:hover {
    background-color: rgba(98, 90, 252, 0.1);
}

.-in-range-.air-datepicker-cell.-day-.-other-month-,
.-in-range-.air-datepicker-cell.-year-.-other-decade- {
    background-color: #dedede;
}

.-in-range-.air-datepicker-cell.-day-.-other-month-:hover,
.-in-range-.air-datepicker-cell.-year-.-other-decade-:hover {
    background-color: #dedede;
}

.theme-dark .-in-range-.air-datepicker-cell.-day-.-other-month-,
.theme-dark .-in-range-.air-datepicker-cell.-year-.-other-decade- {
    background-color: var(--alt-dark-color);
}

.theme-dark .-in-range-.air-datepicker-cell.-day-.-other-month-:hover,
.theme-dark .-in-range-.air-datepicker-cell.-year-.-other-decade-:hover {
    background-color: var(--alt-dark-color);
}

.air-datepicker-cell.-range-from- {
    border-color: transparent;
    background-color: var(--accent-color);
    color: var(--text-main-dark-color);
}

.air-datepicker-cell.-range-to- {
    border-color: transparent;
    background-color: var(--accent-color);
    color: var(--text-main-dark-color);
}

/*inputtel default settings*/
.iti {
    width: 100%;
}

.theme-dark .iti__country-list {
    background-color: var(--main-color);
    border-color: var(--border-dark-color);
}

.theme-dark .iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-dark .iti__divider {
    border-color: var(--border-dark-color);
}

/* ~~ MEDIA QUERIES ALWAYS AT THE END ~~ */
@media (max-width: 1890px) {
    .wallet {
        width: calc(25% - 16px);
    }
    .staff-item {
        width: calc(33.3333333333% - 30px);
    }
}
@media (max-width: 1779px) {
    .wallet-value {
        font-size: 22px;
    }
    .wallet-name {
        display: none;
    }
}
@media (max-width: 1589px) {
    table {
        font-size: 13px;
    }
    th {
        height: 60px;
        padding: 10px 5px;
    }
    td {
        padding: 10px 5px;
    }
    .section {
        padding: 0 0 40px;
    }
    .transactions-section {
        padding-bottom: 20px;
    }
    .scrollable-wrapper {
        padding: 30px 30px 0 30px;
    }
    .sidebar {
        width: 240px;
        font-size: 14px;
    }
    .menu a {
        line-height: 36px;
    }
    .widgets {
        padding: 0 30px;
    }
    .wallets-swiper {
        margin: 0 -30px;
        padding: 0 30px;
    }
    .wallet {
        padding: 4px 12px;
    }
    .wallet-name {
        display: none;
    }
    .wallet-frozen {
        margin-top: 0;
        font-size: 13px;
    }
    .wallet-pic {
        width: 30px;
        height: 30px;
        line-height: 28px;
    }
    .wallet-pic img {
        height: 15px;
    }
    .wallet {
        padding: 6px 8px;
    }
    .wallet-course {
        font-size: 14px;
    }
    .header-btn {
        min-width: 1px;
    }
    .balance-item-value {
        font-size: 17px;
    }
    .staff-balance-items .balance-item-value {
        font-size: 15px;
    }
}
@media (max-width: 1450px) {
    .wallet {
        width: calc(33.3333333333% - 16px);
    }
    .staff-item {
        width: 400px;
    }
}
@media (max-width: 1279px) {
    .widget-wallets {
        margin: 0 -5px;
        font-size: 13px;
    }
    .widget-wallets > li {
        margin: 0 5px;
    }
    .header-btn {
        line-height: 30px;
        font-size: 13px;
    }
    .header-btn.btn-bordered {
        line-height: 26px;
    }
    .header-container {
        padding: 0 15px 0 var(--s-width);
    }
    .language-selected img {
        width: 26px;
        height: 18px;
    }
    .profile-name {
        font-size: 14px;
        line-height: 1.2;
        max-width: 148px;
    }
    .tools {
        margin: 0 0 0 auto;
    }
    .tools-item {
        min-width: 40px;
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }
    .tools-item i {
        font-size: 18px;
    }
    .tools-drop {
        min-width: 180px;
    }
    .tools-drop-auto {
        min-width: 1px;
        right: -5px;
    }
    .tools-drop-small {
        min-width: 100px;
    }
    .tools-drop-medium {
        min-width: 205px;
    }
    .tools-drop-large {
        min-width: 285px;
    }
    .clipboard-input {
        font-size: 14px;
    }
    .clipboard-input-large {
        font-size: 25px;
    }
    .tools-link .icon-support {
        font-size: 19px;
    }
    .tools-item-counter {
        min-width: 14px;
        height: 14px;
        line-height: 14px;
        right: 9px;
        top: 6px;
        font-size: 9px;
    }
    .sidebar {
        width: 250px;
    }
    .texted-block-sidebar {
        width: 270px;
    }
    .texted-block-navigation {
        font-size: 14px;
        padding: 20px;
    }
    .texted-block-sidebar > h2 {
        font-size: 20px;
    }
    .balance-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .staff-item-title {
        font-size: 16px;
    }
    .section-head-link {
        font-size: 14px;
    }
    .wallet-value {
        font-size: 20px;
    }
    .staff-item {
        width: calc(50% - 30px);
    }
}
@media (max-width: 1155px) {
    .wallets-swiper .square-swiper-button {
        display: none;
    }
    .wallets-box {
        margin: 0 -5px;
    }
    .wallet {
        width: calc(50% - 10px);
        margin: 0 5px 10px;
    }
}
@media (max-width: 1023px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    .header-container {
        padding: 0 30px;
    }
    .is-z-index-down {
        z-index: 1;
    }
    .widget-wallets {
        display: none;
    }
    .body-auto {
        padding: 30px 15px;
        min-height: 100vh;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .body-auto main {
        height: auto;
        width: 100%;
    }
    .header {
        width: 100%;
        max-width: 100%;
        position: sticky;
    }
    .texted-block-navigation {
        display: none;
    }
    .texted-block {
        display: block;
    }
    .texted-block-sidebar {
        position: static;
        width: 100%;
    }
    .texted-block-sidebar > h2 {
        font-size: 24px;
    }
    .texted-block-content {
        max-width: 100%;
    }
    .menu-btn::before {
        content: "\e938";
        color: var(--accent-color);
        font-family: icomoon;
        font-size: 20px;
        margin: 0 15px 0 0;
    }
    .menu-btn.is-active::before {
        content: "\e916";
    }
    .main {
        padding: 0;
        height: auto;
    }
    .scrollable-wrapper {
        height: auto;
    }
    .section-tools {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .subnavigation {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow: auto;
        scrollbar-color: transparent transparent;
        scrollbar-width: thin;
        margin: 0 -15px 10px -7px;
        min-width: 100%;
    }
    .subnavigation::-webkit-scrollbar {
        background: transparent;
    }
    .subnavigation::-webkit-scrollbar-thumb {
        background-color: transparent;
    }
    .control-buttons {
        margin: 0 -7px;
    }
    .control-btn {
        min-width: 105px;
    }
    .sidebar {
        width: 100%;
        min-height: 1px;
        height: calc(100% - 46px - 1px);
        top: 47px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
        pointer-events: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .sidebar.is-visible {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        pointer-events: auto;
        z-index: 98;
    }
    .sidebar-head {
        display: none;
    }
    .sidebar-content {
        max-height: 100%;
        padding: 18px 18px 12px;
    }
    .sidebar-footer {
        margin-top: auto;
    }
    .sidebar-logo {
        display: none;
    }
    .menu a {
        background-color: rgba(111, 110, 247, 0.12);
    }
    .menu li.is-active a {
        background-color: rgba(111, 110, 247, 0.3);
    }
    .balance-btn {
        border-color: var(--accent-color);
    }
    .balance-drop {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .balance-drop::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .header-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
    }
    .widgets {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding: 10px 120px 10px 40px;
        border-top: 1px solid var(--border-color);
        min-height: 60px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: calc(100% + 60px);
        margin: 0 -30px;
        display: none;
    }
    .widgets.is-hidden {
        opacity: 0;
        pointer-events: none;
        position: absolute;
    }
    .widgets.is-hidden ~ .header-buttons {
        display: none;
    }
    .theme-dark .widgets {
        border-color: var(--border-dark-color);
    }
    .pagination-step {
        display: none;
    }
    .header-buttons {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        position: absolute;
        bottom: 15px;
        right: 10px;
    }
    .tools-item:last-child {
        padding-right: 0;
    }
    .tools-item i {
        font-size: 18px;
    }
    .tools-link .icon-support {
        font-size: 19px;
    }
    .tools-item-counter {
        min-width: 14px;
        height: 14px;
        line-height: 14px;
        right: 9px;
        top: 6px;
        font-size: 9px;
    }
    .profile .tools-item {
        padding-right: 0;
    }
    .profile-name {
        max-width: none;
        overflow: visible;
    }
    .profile-info .profile-name,
    .sidebar-head .profile-organization {
        display: none;
    }
    .profile-organization {
        margin: 0;
        font-size: 12px;
    }
    .profile-info::before {
        display: inline-block;
        content: "\e92e";
        font-family: icomoon;
        font-size: 20px;
        color: var(--alt-color);
    }
    .theme-dark .profile-info::before {
        color: var(--alt-dark-color);
    }
    .theme-dark .profile-info::after {
        color: var(--alt-dark-color);
    }
    .profile-name {
        font-size: 15px;
        font-weight: 700;
        margin: 0 0 3px;
    }
    .tools-drop-item.mobile-element {
        display: block;
        padding-bottom: 0;
    }
    .tools-drop-item.mobile-element:hover {
        background: 0;
        cursor: auto;
    }
    .logo img {
        height: 20px;
    }
    .client-card-logo img {
        height: 28px;
    }
    .language-selected img {
        width: 24px;
        height: 19px;
    }
    .tooltip {
        display: none;
    }
    .profile-option-title {
        font-size: 17px;
    }
    .notifications-wrapper {
        margin-left: auto;
    }
    .payment-method {
        padding: 20px 10px;
        width: calc(50% - 20px);
    }
    .wallet {
        width: calc(33.3333333333% - 10px);
    }
    .wallet-value {
        font-size: 2.2vw;
    }
    .wallet-links {
        font-size: 10px;
    }
    .staff-item-option {
        display: block;
        font-size: 16px;
    }
    .transactions-table th:nth-child(3),
    .transactions-table td:nth-child(3),
    .transactions-table th:nth-child(2),
    .transactions-table td:nth-child(2) {
        display: none;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
    h1, h2 {
        font-size: 22px;
    }
    h3, h4 {
        font-size: 17px;
    }
    .checkbox {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .checkbox-third {
        width: calc(50% - 30px);
    }
    .section-head-flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .section-head-flex h2 {
        max-width: calc(100% - 110px);
    }
    .texted-block-sidebar > h2 {
        font-size: 22px;
    }
    .adaptive-page h1,
    .adaptive-page h2 {
        font-size: 22px;
    }
    .adaptive-page .payment > h1 {
        font-size: 35px;
    }
    .adaptive-page .tab {
        width: 33.3333333333%;
        border-bottom: 1px solid var(--border-color);
    }
    .info-column {
        min-width: 1px;
        width: calc(33.3333333333% - 30px);
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .info-item {
        margin: 0 0 20px;
    }
    .operation-nav li:not(.is-active) {
        position: absolute;
        width: 0;
        opacity: 0;
        pointer-events: none;
    }
    .operation-nav li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 16px;
        margin: 0 15px 20px;
    }
    .operation-nav li::before {
        width: 32px;
        height: 32px;
        line-height: 28px;
    }
    .operation-caption {
        font-size: 17px;
    }
    .profile-option-title {
        font-size: 16px;
    }
    .profile-option-btn {
        min-width: 170px;
    }
    .wallet-value {
        font-size: 18px;
    }
    .balance-items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        padding: 18px 16px 0;
    }
    .balance-item {
        width: 33.3333333333%;
        margin: 0 0 20px;
        display: block;
    }
    .balance-item:after {
        display: none;
    }
    .balance-item-value {
        font-size: 18px;
    }
    .bordered-block-large > h3 {
        font-size: 20px;
        margin: 0 0 30px;
    }
    .wallet {
        width: calc(50% - 10px);
    }
    .wallet-value {
        font-size: 20px;
    }
    .wallet-links {
        font-size: 12px;
    }
    .staff-item-head {
        display: block;
        text-align: center;
        padding: 0;
    }
    .staff-item-image {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px;
    }
    .staff-item-title {
        font-size: 18px;
        margin: 0 0 10px;
    }
    .staff-item-info {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    .staff-item-option-key {
        margin: 0 0 10px;
    }
    .staff-item-option {
        font-size: 15px;
    }
}
@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
    h1, h2 {
        font-size: 20px;
    }
    h3, h4 {
        font-size: 16px;
    }
    table {
        font-size: 13px;
    }
    th {
        height: 40px;
    }
    td {
        height: 40px;
        padding: 8px 10px;
    }
    hr {
        margin: 10px -15px 30px;
    }
    .login {
        min-width: 100%;
        padding: 15px 0;
    }
    .fieldset {
        margin-bottom: 10px;
    }
    .fieldset:not(:last-child) {
        margin-bottom: 25px;
    }
    .bordered-block {
        min-width: 100%;
    }
    .tools-item {
        min-width: 35px;
    }
    .filter-widget {
        width: 100%;
        margin: 10px 0 0;
    }
    .table-controls {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .transactions-table ~ .table-controls {
        margin: 0 -15px;
        border-left: 0;
        border-right: 0;
    }
    .table-views {
        margin: 0 auto 20px;
    }
    .tablet-element {
        display: none;
    }
    .table-pagination {
        margin: 0 auto;
    }
    .converter-table td {
        font-size: 14px;
    }
    .btn-large-font {
        font-size: 17px;
    }
    .pagination-link {
        width: 34px;
        height: 34px;
        line-height: 34px;
    }
    .texted-block-sidebar > h2 {
        font-size: 20px;
    }
    .texted-block-content section > h3 {
        padding: 0 0 0 30px;
    }
    .texted-block-content {
        padding: 20px;
    }
    .texted-block-content h3 {
        font-size: 18px;
    }
    .bordered-block {
        padding: 16px;
    }
    .tools-item:last-child {
        padding-left: 5px;
    }
    .menu li {
        margin: 0 0 8px;
    }
    .file-field-centered {
        max-width: none;
    }
    .form-item {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
    }
    .form-column {
        width: calc(100% - 30px);
    }
    .form-column .form-item {
        width: 100%;
    }
    .form-row-nowrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .form-row:last-child > .form-item {
        margin-bottom: 15px;
    }
    .form-row:last-child > .form-item:last-child {
        margin-bottom: 0;
    }
    .form-control:not(.btn-block) {
        width: calc(50% - 20px);
    }
    .form-control {
        min-width: 1px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .form-control-auto.form-control {
        width: auto;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .field-name-flex {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .textarea-auto {
        min-height: 200px;
    }
    .section {
        padding: 0 0 30px;
    }
    .section-head {
        margin: 0 0 25px;
    }
    .section-head-btn {
        font-size: 13px;
    }
    .subnavigation-link.is-active {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .section-head-flex h1:not(:last-child),
    .section-head-flex h2:not(:last-child) {
        margin: 0 5px 0 0;
    }
    .section-head-links {
        margin: 0 -5px 0 auto;
    }
    .scrollable-wrapper {
        padding: 25px 15px 0 15px;
    }
    .table-scrollable-wrapper {
        margin: 0 -15px 0 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .transactions-table {
        margin: 0 -15px;
        border-left: 0;
        border-right: 0;
    }
    .container {
        padding: 0 15px;
    }
    .adaptive-page .tooltip-center {
        right: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .adaptive-page {
        font-size: 14px;
    }
    .adaptive-page .form-row {
        margin: 0 -10px;
    }
    .adaptive-page .form-item {
        margin: 0 10px 20px;
        width: calc(100% - 20px);
    }
    .adaptive-page .form-item-half {
        width: calc(50% - 20px);
    }
    .adaptive-page h1, .adaptive-page h2 {
        font-size: 19px;
    }
    .payment-card-bank > img {
        height: 30px;
    }
    .payment-card-bank > span {
        font-size: 19px;
    }
    .adaptive-page .tab {
        padding: 10px;
    }
    .adaptive-page .tab img {
        height: 18px;
    }
    .adaptive-page .tab-text {
        font-size: 13px;
    }
    .adaptive-page .tab:nth-child(3n+3) {
        border-right-color: transparent;
    }
    .adaptive-page .tab:nth-child(n+4) {
        border-bottom-color: transparent;
    }
    .payment-process {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0 0 20px;
    }
    .payment-logo img {
        height: 32px;
    }
    .payment-step-row > .payment-timer {
        width: calc(100% - 30px);
        margin: 0 15px 28px;
        padding: 10px 16px;
        font-size: 14px;
    }
    .payment-selected-method {
        margin: 0 auto;
    }
    .payment-qr {
        margin: 20px auto;
        width: 120px;
        height: 120px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .adaptive-page .payment-state {
        margin: 0 0 20px;
    }
    .adaptive-page .bordered-block {
        padding: 20px 15px;
    }
    .adaptive-page .payment-block-text p {
        font-size: 12px;
    }
    .payment-head {
        display: block;
        text-align: center;
    }
    .payment-head > h3 {
        font-size: 16px;
        font-weight: 500;
        margin: 0 0 20px;
    }
    .payment-value-text {
        display: inline-block;
        font-size: 16px;
        margin: 0 20px 0 0;
    }
    .payment-row {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 0 16px;
    }
    .payment-title {
        margin: 0 15px 0 0;
    }
    .payment-value {
        display: block;
        text-align: center;
        font-size: 20px;
        margin: 0;
    }
    .payment-creator {
        font-size: 18px;
    }
    .payment-text br {
        display: none;
    }
    .payment-comment {
        font-size: 16px;
    }
    .payment-info {
        display: block;
        text-align: center;
    }
    .payment-method {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .payment-img img {
        height: 27px;
    }
    .notify-text p {
        font-size: 14px;
    }
    .notify-text br {
        display: none;
    }
    .adaptive-page .payment-state-text p {
        font-size: 13px;
    }
    .adaptive-page .payment-state-text br {
        display: none;
    }
    .logo {
        margin-top: 5px;
    }
    .header-buttons {
        margin: 0 -5px;
    }
    .header-btn {
        line-height: 40px;
        margin: 0;
        width: calc(50% - 5px);
    }
    .header-btn.btn-bordered {
        line-height: 36px;
    }
    .header-buttons {
        bottom: 10px;
        right: 0;
        position: absolute;
        width: 100%;
        margin: 0;
        padding: 0 15px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .widgets {
        margin: 0 -15px;
        padding: 10px 15px;
        width: calc(100% + 30px);
    }
    .tools-drop {
        top: calc(100% + 10px);
    }
    .tools-drop-large {
        right: -90px;
    }
    .tools-drop-large::after {
        right: 104px;
    }
    .profile .tools-item,
    .notifications-wrapper .tools-item {
        width: auto;
        height: 45px;
        line-height: 45px;
        border-color: transparent;
    }
    .theme-dark .tools {
        background-color: var(--main-color);
        border-bottom-color: var(--border-dark-color);
        border-top-color: var(--border-dark-color);
    }
    .tools-item {
        padding: 0;
        border: 0;
    }
    .tools-item i {
        font-size: 19px;
    }
    .checkbox-top {
        margin-bottom: 15px;
    }
    .language-links {
        font-size: 13px;
    }
    .notifications-items {
        max-height: 300px;
    }
    .tools-link .icon-support {
        font-size: 21px;
    }
    .operation-btn {
        width: calc(50% - 20px);
        min-width: 1px;
        padding: 0 10px;
        font-size: 14px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        white-space: nowrap;
    }
    .navigation-btn {
        width: calc(50% - 20px);
        min-width: 1px;
        padding: 0 10px;
        font-size: 14px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        white-space: nowrap;
    }
    .profile-option {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .theme-dark .profile-name::before {
        color: var(--alt-dark-color);
    }
    .profile-option-buttons {
        margin: 15px 0 0 0;
        width: 100%;
    }
    .profile-option-content {
        width: calc(100% - 72px);
        padding: 0 30px 0 0;
    }
    .profile-option-qr {
        margin: 0 auto;
    }
    .profile-option-image {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .profile-option-buttons p {
        -moz-text-align-last: left;
        text-align-last: left;
        margin: 15px 0;
    }
    .profile-image-btn {
        width: calc(50% - 10px);
        margin: 0;
        min-width: 1px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .profile-image-btn:nth-child(1) {
        margin: 0 10px 0 0;
    }
    .file-thumb ~ .profile-image-btn {
        margin-top: 10px;
    }
    .login h2 {
        font-size: 20px;
    }
    .control-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .export-buttons {
        margin-top: auto;
    }
    .operation-detail-value span {
        display: block;
        margin: 0 0 4px;
    }
    .payment-card {
        font-size: 14px;
    }
    .payment-card-body {
        padding: 20px 20px 30px;
    }
    .payment-card-head {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .payment-card-head > img {
        margin-top: -5px;
    }
    .payment-card-name {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin: 0 0 0 auto;
        width: 100%;
        text-align: right;
    }
    .payment-card-footer {
        padding: 20px 80px 20px 20px;
    }
    .payment-card-footer::after {
        width: 35px;
        height: 26px;
        right: 20px;
    }
    .payment-card-holder {
        font-size: 20px;
    }
    .payment-card-head::before {
        width: 15px;
        height: 18px;
    }
    .clipboard-input-large {
        font-size: 20px;
    }
    .payment-note {
        font-size: 14px;
    }
    .wallet {
        padding: 4px;
    }
    .wallets-swiper-slide {
        width: calc(100% - 10px);
    }
    .wallet-content {
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .wallet-head {
        margin: 0 12px 0 0;
    }
    .wallet-body {
        margin: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .wallet-frozen {
        font-size: 15px;
        margin: 0 10px 0 auto;
    }
    .wallet-course {
        display: none;
    }
    .wallet-currency-pic {
        margin: 0;
    }
    .wallet-frozen ~ .wallet-pic {
        margin-left: 0;
    }
    .wallet-pic {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin: 0 10px 0 0;
    }
    .wallet-value {
        font-size: 20px;
    }
    .wallets-block {
        width: calc(100% + 16px);
    }
    .wallets-box {
        margin: 0 -5px;
    }
    .wallet-links {
        display: none;
    }
    .wallet-currency-value {
        display: none;
    }
    .organization-section {
        padding-bottom: 10px;
    }
    .footer {
        display: block;
    }
    .footer-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .footer-link {
        margin: 0 15px 10px;
    }
    .footer-copy {
        margin: 15px 0 0;
    }
    .balance-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .balance-item-value {
        font-size: 16px;
    }
    .info-column {
        max-width: calc(100% - 30px);
    }
    .wallet {
        width: calc(100% - 10px);
    }
    .social-btn {
        width: calc(50% - 10px);
        margin: 0 5px 10px;
    }
    .transactions-table th, .transactions-table td {
        padding: 10px 15px;
    }
    .transactions-table table {
        font-size: 14px;
    }
    .trans-info {
        font-size: 13px;
    }
    .trans-image {
        width: 45px;
        height: 45px;
    }
    .trans-image i {
        font-size: 20px;
    }
    .trans-text {
        font-weight: 500;
    }
    .staff-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .staff-item {
        max-width: 100%;
        width: 100%;
        margin: 0 15px 30px;
        padding: 20px 20px 30px;
    }
    .staff-item-btn {
        right: 20px;
        top: 20px;
    }
    .staff-block h3 {
        font-size: 18px;
    }
    .info-item-image {
        width: 70px;
        height: 70px;
        margin: 0;
    }
    .info-item-detail strong {
        font-weight: 500;
    }
    .info-details-item span {
        display: block;
    }
}
@media (max-width: 474px) {
    .info-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .info-column {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
    }
    .info-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 0 15px;
    }
    .info-item h4 {
        width: 50%;
        margin: 0 15px 0 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        font-size: 14px;
    }
    .stats-box {
        margin: 0 -8px;
    }
    .stats-item {
        padding: 8px;
        font-size: 12px;
        margin: 0 8px 16px;
        width: calc(50% - 16px);
    }
    .stats-item > h4 {
        font-size: 13px;
    }
    .staff-item-image {
        width: 70px;
        height: 70px;
    }
    .staff-item-title {
        font-size: 16px;
        margin: 0 0 5px;
    }
    .staff-item:last-child .stats-box:not(:empty) {
        margin-bottom: -16px;
    }
    .balance-item {
        padding-right: 10px;
    }
    .balance-item-value {
        font-size: 15px;
    }
    .staff-balance-items .balance-item-value {
        font-size: 13px;
    }
    .client-card-pic {
        width: 100px;
        height: 100px;
    }
    .client-card-logo img {
        height: 28px;
    }
    .form-item-unite.icon-book {
        font-size: 22px;
        top: 39px;
    }
    .modal-full-w-mobile {
        max-width: 100%;
    }
    .info-item-wrap-mobile {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .info-item-wrap-mobile h4 {
        width: 100%;
        margin: 0 0 15px;
    }
}
@media (max-width: 399px) {
    .saved-method {
        display: block;
    }
    .saved-method-buttons {
        margin-top: 15px;
    }
    .saved-method-btn:not(.btn-square) {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .saved-method-option {
        max-width: 100%;
    }
    .details-items-box {
        margin: 0 -10px;
    }
    .details-item > h4 {
        font-size: 15px;
    }
    .details-item {
        width: calc(50% - 20px);
        margin: 0 10px 15px;
    }
}
@media (max-width: 386px) {
    .logo img {
        height: 18px;
        max-width: 116px;
    }
    .client-card-logo img {
        height: 28px;
        max-width: none;
    }
    .tools-drop-large {
        min-width: 240px;
    }
    .pagination-link {
        width: 24px;
        height: 24px;
        line-height: 24px;
    }
    .tools-drop-large {
        right: -80px;
    }
    .tools-drop-large::after {
        right: 92px;
    }
    .client-card-buttons {
        margin-top: 20px;
    }
    .client-card-btn {
        width: calc(100% - 10px);
        margin: 10px 5px 0;
    }
    .payment-method-small {
        width: calc(100% - 20px);
    }
}
@media (max-width: 379px) {
    .saved-method {
        display: block;
    }
    .saved-method-head {
        margin: 0 0 10px;
    }
    .saved-method-btn:not(.btn-square) {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    .modal-details {
        padding: 30px 12px;
    }
    .details-items-box {
        margin: 0 -5px;
    }
    .details-item {
        margin: 0 5px 15px;
    }
    .tools-item {
        min-width: 32px;
    }
}
@media (max-width: 359px) {
    .tools-item:nth-child(3) {
        display: none;
    }
}
@media (max-width: 344px) {
    .balance-item {
        width: 50%;
        font-size: 15px;
    }
    .staff-balance-items .balance-item-value {
        font-size: 14px;
    }
    .stats-item {
        width: calc(100% - 16px);
        font-size: 14px;
    }
    .client-card-option {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .client-card-buttons-box {
        width: calc(100% + 10px);
        margin: 0;
    }
}
@media (min-width: 1024px) {
    .mobile-element {
        display: none;
    }
}
@media (min-width: 576px) {
    .phone-element {
        display: none;
    }
}
