@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@400;500;600&display=swap');

:root {
    --main-text-color: #2a3547;
    --main-text-hover-color: #26303e;
    --main-bg-color: #F5F9FC;
    --main-bg-color-shade: rgba(206, 214, 226, 0.36);
    --bg-light-grey: #fafbfc;
    --bg-sidebar: #eff4f7;
    --bg-sidebar-secondary: #e9eff3;
    --border-color-sidebar: #dde6ec;
    --main-bg-secondary-color: #eef4f8;
    --main-border-sidebar-color: #e2eaf0;
    --main-accent-color: #1354f8;
    --main-accent-opacity-color: rgba(101, 50, 101, .02);
    --main-accent-hover-color: #0a45dd;
    --main-accent-text-color: #313c4b;
    --main-border-color: #eff2f7;
    --main-border-focus-color: #cfd6e2;
    --body-border-color: #e3ebf2;
    --title-color: #313c4b;
    --link-color: #1a1a1a;
    --link-hover-color: #1354f8;
    --secondary-bg-color: #22263e;
    --secondary-bg-hover-color: #1b1e34;
    --secondary-bg-submenu-color: #20233a;
    --secondary-text-color: #a4b2c2;
    --secondary-text-hover-color: #fff;
    --secondary-placeholder-color: #444966;
    --placeholder-color: #677486;
    --placeholder-hover-color: #313c4b;
    --header-bg-color: #fff;
    --button-disabled-bg-color: #cfd6e2;
    --button-disabled-hover-bg-color: #b5c0d5;
    --button-apply-bg-color: #1354f8;
    --button-apply-bg-hover-color: #0a45dd;
    --button-cancel-bg-color: #677486;
    --button-cancel-bg-hover-color: #505e71;
    --button-main-bg-color: #1354f8;
    --button-main-bg-hover-color: #0a45dd;
    --button-main-text-color: #fff;
    --button-main-text-hover-color: #fff;
    --card-bg-hover: #f9fafb;
    --close-color: rgba(79, 92, 114, .5);
    --close-hover-color: rgba(79, 92, 114, 1);
    --color-red: #cf3f50;
    --color-red-background: #faeff0;
    --color-red-hover: #c23243;
    --color-yellow: #FFC009;
    --color-yellow-background: #fffaea;
    --color-green: #19c675;
    --color-green-background: #e9fcf3;
    --color-purple: #612863;
    --color-purple-background: #612863;
    --color-dark-blue: #222f3d;
    --color-blue: #0e6cf8;
    --color-grey: #a4b2c2;
    --color-grey-background: #f6f7f9;
    --input-placeholder-color: #677486;
    --selection-bg-color: #F5F9FC;
    --selected-bg-color: #677486;
    --box-shadow: 0 0 35px 0 rgba(154, 161, 171, .15);
    --shadow-color: rgba(154, 161, 171, 0.15);
    --border-radius: 4px;
    --small-text-letter-spacing: 0.5px;
    --heading-letter-spacing: 1px;
    --button-height: 40px;
    --background-blue-light: #ECF2FF;
    --background-blue-light-contrast: #5D87FF;
    --background-purple-light: #f2e0f2;
    --background-purple-light-contrast: #b556ba;
}

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

html,
body {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.3;
    background: var(--main-bg-color);
    color: var(--main-text-color);
    font-feature-settings: "ss05" on, "liga" off;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
}

p {
    margin: 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--title-color);
    padding: 0;
    margin: 0;
    font-weight: 600;
}

a, a:link,
a:visited,
a:active {
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    text-decoration: none;
    font-weight: 600;
    color: var(--link-color);
}

a:hover {
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    text-decoration: none;
    color: var(--link-hover-color);
}

a:active, a:focus {
    outline: 0;
    -moz-outline-style: none;
}

::-moz-selection {
    background: #fde69a;
    color: #212121;
    text-shadow: none;
}

::selection {
    background: #fde69a;
    color: #212121;
    text-shadow: none;
}

::placeholder {
    color: var(--input-placeholder-color);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--input-placeholder-color);
}

::-ms-input-placeholder {
    color: var(--input-placeholder-color);
}

.input-control {
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
    color: var(--main-accent-text-color);
    height: auto;
    padding: 15px 15px;
    font-size: 16px;
}

.input-control:focus {
    border: 1px solid var(--main-border-focus-color);
}

.input-control.border-success {
    border: 1px solid var(--color-green);
}

.input-control.border-error {
    border: 1px solid var(--color-red);
}

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

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

select {
    box-shadow: none;
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat calc(100% - 10px) 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

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

.button,
a.button {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    font-size: 16px;
    line-height: 1.3;
    width: auto;
    font-weight: 500;
    background-color: var(--button-apply-bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--button-main-text-color);
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -ms-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.loading-wrapper {
    display: inline-flex;
    position: absolute;
    background: inherit;
    width: 100%;
    height: 100%;
    flex: 1 0 100%;
    top: 0;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 1;
    left: 0;
    border-radius: var(--border-radius);
}

.button:hover,
a.button:hover {
    background-color: var(--button-apply-bg-hover-color);
    color: var(--button-main-text-hover-color);
    border-color: transparent;
}

.button:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.button.disabled {
    cursor: not-allowed;
    pointer-events: all !important;
    background: var(--main-border-color);
    color: var(--placeholder-color);
}

.button.success {
    color: #fff;
    background-color: var(--button-apply-bg-color);
    border: none;
    padding: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.button.success:hover {
    color: #fff;
    background-color: var(--button-apply-bg-hover-color);
}

.button.red {
    color: #fff;
    background-color: var(--color-red);
    border: none;
    padding: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.button.red:hover {
    color: #fff;
    background-color: var(--color-red-hover);
    border: none;
    padding: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.input-title-wrapper {
    border-bottom: 1px solid var(--main-border-color);
    margin-bottom: 15px;
    padding-bottom: 7px;
    font-size: 16px;
    font-weight: 600;
}

.input-title-wrapper .status {
    font-size: 14px;
}

.input-information-wrapper {
    font-size: 14px;
}

.input-wrapper {
    margin-bottom: 25px;
    position: relative;
}

.input-wrapper .label-control,
.upload-wrapper .label-control {
    margin-bottom: 4px;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    font-weight: 500;
}

.input-wrapper .label-control .icon,
.upload-wrapper .label-control .icon {
    margin-right: 3px;
}

.vat-wrapper {
    display: none;
}

.vat-wrapper.active {
    display: block;
}

.input-wrapper .has-label-information {
    display: flex;
}

.input-wrapper .has-label-information .label-information {
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
}

.input-wrapper .has-button,
.input-wrapper .is-vat-code {
    position: relative;
}

.input-wrapper .has-button .button {
    color: #fff;
    background-color: var(--button-apply-bg-color);
    font-weight: 600;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    padding: 9px 10px;
    display: inline-block;
    font-size: 12px;
    position: absolute;
    top: 5px;
    right: 5px;
    width: auto;
    border: none;
    overflow: hidden;
}

.input-wrapper .has-button .button:hover {
    background: var(--button-apply-bg-hover-color);
}

.input-wrapper .has-button .input-control {
    padding-right: 60px;
}

.input-wrapper .is-vat-code .input-control {
    padding-left: 60px;
}

.input-wrapper .is-vat-code .vat-country-code {
    position: absolute;
    background: var(--main-border-color);
    color: var(--main-accent-text-color);
    padding: 9px 14px;
    top: 5px;
    left: 5px;
    font-weight: 600;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    font-size: 14px;
}

.input-wrapper.boxed-checkbox {
    margin-bottom: 16px;
}

.input-wrapper.boxed-checkbox .avatar-wrapper {
    line-height: 0;
    margin-right: 10px;
}

.input-wrapper.boxed-checkbox .avatar-wrapper .avatar {
    width: 28px;
    height: 28px;
    display: inline-block;
    border-radius: 50%;
}

.input-wrapper.boxed-checkbox input[type=radio] {
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
}

.input-wrapper.boxed-checkbox .label-control {
    position: relative;
    display: flex;
    padding: 16px 24px;
    height: 60px;
    margin-bottom: 0;
    align-items: center;
    align-self: stretch;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: var(--input-placeholder-color);
    border-radius: 4px;
    border: 1px solid var(--main-border-color);
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    cursor: pointer;
}

.input-wrapper.boxed-checkbox .label-control:hover {
    color: var(--input-placeholder-color);
    border: 1px solid var(--main-border-focus-color);
}

.input-wrapper.boxed-checkbox .label-control:after {
    content: " ";
    width: 18px;
    height: 18px;
    position: absolute;
    right: 24px;
    border: 1px solid var(--main-border-color);
    border-radius: 50px;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.input-wrapper.boxed-checkbox .label-control:hover:after {
    border: 1px solid var(--main-border-focus-color);
}

.input-wrapper.boxed-checkbox input[type=radio] + .label-control:before {
    content: " ";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 28px;
    border-radius: 50px;
    background: transparent;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.input-wrapper.boxed-checkbox input[type=radio]:checked + .label-control {
    color: var(--main-accent-color);
    border: 1px solid var(--main-accent-color);
}

.input-wrapper.boxed-checkbox input[type=radio]:checked + .label-control:after {
    border: 1px solid var(--main-accent-color);
}

.input-wrapper.boxed-checkbox input[type=radio]:checked + .label-control:before {
    background: var(--main-accent-color);
}

.submit-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.submit-wrapper .button-wrapper {
    margin-right: 15px;
}

.submit-wrapper .button {
    padding: 7px 25px;
    font-size: 14px;
    font-weight: 600;
    min-height: var(--button-height);
}

.submit-wrapper .navigation.additional-links {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 8px;
}

.submit-wrapper .navigation.additional-links .nav-link {
    font-weight: 500;
}

.form-centered .submit-wrapper .button-wrapper {
    margin: 0 auto;
}

.form-centered .submit-wrapper .button {
    padding: 15px 25px;
}

.form-centered .submit-wrapper .navigation.additional-links {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 8px;
}

.form-centered .submit-wrapper .navigation.additional-links .nav-link {
    font-weight: 500;
}

.checkbox-wrapper {
    line-height: 1;
    margin-bottom: 15px;
}

.checkbox-wrapper .label-text {
    font-size: 14px;
}

.switch-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.switch-wrapper .label {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.switch-wrapper .description {
    margin-top: 7px;
    margin-left: 50px;
    flex: 1 1 100%;
    font-size: 16px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-right: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--secondary-text-color);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.toggle:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    top: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle {
    background-color: var(--color-green);
}

input:focus + .toggle {
    box-shadow: 0 0 1px var(--color-green);
}

input:checked + .toggle:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(0px);
    transform: translateX(20px);
}

.upload-wrapper {
    margin-bottom: 15px;
}

.upload-wrapper .file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 46px;
    overflow: hidden;
}

.upload-wrapper .file-upload-wrapper .badge {
    z-index: 90;
    position: relative;
    width: auto;
    font-size: 18px;
    min-width: auto;
    border-radius: var(--border-radius);
    color: var(--input-placeholder-color);
    padding: 8px 10px;
    margin: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    background: var(--main-border-color);
}

.upload-wrapper .file-upload-wrapper .badge .icon {
    margin-right: 0;
}

.upload-wrapper .file-upload-wrapper.has-file .badge {
    color: var(--main-accent-text-color);
}

.upload-wrapper .file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 46px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

.upload-wrapper .file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 14px;
    color: var(--input-placeholder-color);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--border-radius);
    background: #fff;
    padding: 5px 16px 5px 50px;
    display: block;
    width: 100%;
    pointer-events: none;
    z-index: 20;
    line-height: 36px;
    border: 1px solid var(--main-border-color);
    cursor: pointer;
    min-height: 46px;
    max-height: 46px;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.upload-wrapper .file-upload-wrapper:hover:after {
    border: 1px solid var(--main-border-focus-color);
}

.upload-wrapper .file-upload-wrapper.has-file:after {
    color: var(--main-accent-text-color);
}

.requirements {
    padding: 0;
    margin: 0;
}

.requirements li {
    margin-bottom: 7px;
    display: flex;
    line-height: 1.2;
    align-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.requirements li:before {
    margin-right: 5px;
    font-size: 8px;
    content: "\e91f";
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.requirements li.active {
    color: var(--color-green);
}

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

a.badge,
.badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    border-radius: var(--border-radius);
    padding: 0 12px;
    height: 32px;
    min-width: 70px;
    gap: 8px;
    justify-content: center;
    font-weight: 700;
}

.badge .icon {
    margin-right: 6px;
}

.badge .icon:last-child {
    margin-right: 0;
}

.badge.badge-success {
    background: var(--color-green-background);
    color: var(--color-green);
}

.badge.badge-denied {
    background: var(--color-red-background);
    color: var(--color-red);
}

.badge.badge-warning {
    background: var(--color-yellow-background);
    color: var(--color-yellow);
}

.badge.badge-default {
    background: var(--color-grey-background);
    color: var(--color-grey);
}

.text-center {
    text-align: center !important;
    justify-content: center !important;
}

.alert {
    padding: 15px 15px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}

.alert .alert-icon {
    font-size: 24px;
    margin-right: 7px;
    line-height: 1;
}

.alert .alert-title {
    font-size: 16px;
    margin-right: 15px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.alert .alert-action {
    margin-left: auto;
}

.alert .alert-action .button {
    font-size: 16px;
    padding: 7px 15px;
    color: #fff;
}

.alert .alert-action .button .icon {
    margin-right: 7px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.alert.alert-danger {
    background: var(--color-red);
    color: rgba(255, 255, 255, .9);
}

.alert.alert-warning {
    background: var(--color-yellow);
    color: rgba(0, 0, 0, .9);
}

.alert.alert-warning .alert-icon,
.alert.alert-warning .alert-title {
    text-shadow: none;
}

.alert.alert-success {
    background: var(--color-green);
    color: rgba(255, 255, 255, .9);
}

.alert.alert-success .button,
.alert.alert-warning .button,
.alert.alert-danger .button {
    background: rgba(0, 0, 0, .2);
    color: rgba(255, 255, 255, 1);
}

.alert.alert-success .button:hover,
.alert.alert-warning .button:hover,
.alert.alert-danger .button:hover {
    background: rgba(0, 0, 0, .4);
    color: rgba(255, 255, 255, 1);
}

.alert.alert-dark {
    background: var(--secondary-bg-color);
    color: var(--secondary-text-color);
}

.alert.alert-dark .button {
    background: var(--secondary-bg-hover-color);
    color: var(--secondary-text-color);
}

.alert.alert-dark .button:hover {
    color: var(--secondary-text-hover-color);
}

.alert.alert-bright {
    background: #fff;
    color: var(--title-color);
}

.alert.alert-bright:hover {
}

.alert.alert-bright .alert-title {
    text-shadow: none;
}

.alert.alert-bright .button {
    background: var(--button-main-bg-color);
    color: #fff;
}

.alert.alert-bright .button:hover {
    background: var(--button-main-bg-hover-color);
    color: #fff;
}

.card {
    background: #fff !important;
    border-radius: var(--border-radius);
    z-index: 0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.card.full-height {
    height: 100%;
}

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

.card .card-header {
    padding: 25px;
    display: flex;
}

.card .card-header.flex-column {
    flex-direction: column;
}

.card .card-header .placeholder {
    font-size: 16px;
}

.card .card-header .title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.card .card-body:first-child {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.card .card-body:last-child {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.card.full-height .card-body:last-child {
    margin-top: auto;
}

.card .card-body {
    background: #fff !important;
    position: relative;
}

.card .card-body .body-wrapper {
    padding: 25px;
}

.card .card-body .insights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card .card-body .insights.insights-inline {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    gap: 25px;
    justify-content: center;
    padding: 25px 0 0 0;
    border-top: 1px solid var(--main-border-color);
}

.card .card-body .insights .column .row {
    gap: 15px;
}

.card .card-body .insights .item-title {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 600;
}

.card .card-body .insights .item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: initial;
}

.card .card-body .insights .item .icon-wrapper {
    height: 46px;
    width: 46px;
    min-width: 46px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    color: var(--background-blue-light-contrast);
    background: var(--background-blue-light);
}

.card .card-body .insights .item .icon-wrapper.purple-light {
    color: var(--background-purple-light-contrast) !important;
    background: var(--background-purple-light) !important;
}

.card .card-body .insights .item .icon-wrapper.green {
    color: var(--color-green) !important;
    background: var(--color-green-background) !important;
}

.card .card-body .insights .item .icon-wrapper.red {
    color: var(--color-red) !important;
    background: var(--color-red-background) !important;
}

.card .card-body .insights .item .icon-wrapper.gray {
    color: var(--placeholder-color) !important;
    background: var(--main-bg-color) !important;
}

.card .card-body .insights .item .title {
    font-weight: 400;
    line-height: 1;
}

.card .card-body .insights .item .value {
    font-size: 18px;
    font-weight: 600;
}

.card .card-body .insights .call-to-action-warning {
    margin-bottom: 25px;
    font-size: 48px;
    text-align: center;
}

.card .card-body .insights .call-to-action {
    background: var(--background-blue-light);
    border-radius: var(--border-radius);
    padding: 15px;
}

.card .card-body .insights .call-to-action .title {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--title-color);
    letter-spacing: var(--heading-letter-spacing);
}

.card .card-body .subtitle-wrapper {
    margin-bottom: 15px;
}

.card .card-body .subtitle-wrapper .subtitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--title-color);
}

.card .card-header.card-header-filters {
    display: flex;
    align-items: center;
    gap: 25px;
}

.card .card-header form {
    flex: 1;
}

.card .card-header .form-right-align {
    flex: none;
    margin-left: auto;
}

.card .card-header .filters {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    margin-top: 0;
}

.card .card-header .filters .filter {
    flex: 1;
}

.card .card-header .filters .filter.fixed-width {
    width: 100%;
    min-width: 200px;
}

.card .card-header .filters .input-wrapper {
    margin-bottom: 0;
}

.card .card-header .filters .button-wrapper {
    margin-right: 0;
}

.card .card-header .filters .submit-wrapper {
    margin-bottom: 0;
}

.card .card-header .filters .button-wrapper .button {
    height: 56px;
    min-width: 100px;
    margin-bottom: 0;
}

.card .form-wrapper {
    padding: 25px;
}

.card .input-wrapper {
    margin-bottom: 15px;
}

.card .label-control {
    margin-bottom: 3px;
    display: inline-flex;
    font-size: 14px;
}

.card .input-title-wrapper {
    border-bottom: 1px solid var(--main-border-color);
    margin-bottom: 15px;
    padding-bottom: 7px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    width: 100%;
    align-items: center;
}

.card .input-information-wrapper {
    font-size: 14px;
    background: var(--main-bg-color);
    padding: 15px;
    border-radius: var(--border-radius);
}

.card .input-wrapper.avatar-wrapper {
    line-height: 1;
    margin-bottom: 0;
}

.card .input-wrapper.avatar-wrapper .avatar {
    width: 56px;
    height: 56px;
    display: inline-block;
    border-radius: var(--border-radius);
    margin-right: 8px;
}

.card .checkbox-wrapper {
    line-height: 1;
}

.card .checkmark .check {
    border-radius: 7px;
    -webkit-box-sizing: initial;
    -moz-box-sizing: initial;
    box-sizing: initial;
}

.card .checkbox-wrapper .label-text {
    font-size: 14px;
}

.card .form-wrapper .submit-wrapper {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.card .form-wrapper .submit-wrapper .button {
    padding: 7px 25px;
    font-size: 14px;
    font-weight: 600;
}

.card .avatar-upload-wrapper {
    display: flex;
    align-items: center;
}

.card .avatar-upload-wrapper .avatar-wrapper {
    margin-right: 15px;
    position: relative;
}

.card .avatar-upload-wrapper .avatar-wrapper .loading-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    text-align: center;
}

.card .avatar-upload-wrapper .avatar-wrapper .loading-wrapper .icon {
    display: inline-flex;
    font-size: 24px;
    color: #fff;
    margin-top: 20px;
}

.card .avatar-upload-wrapper .avatar {
    width: 64px;
    height: 64px;
    display: inline-block;
    border-radius: 50%;
}

.card .avatar-upload-wrapper .avatar-settings .navigation {
    padding: 0;
    margin: 0;
}

.card .avatar-upload-wrapper .avatar-settings .nav-item {
    margin-bottom: 3px;
}

.card .avatar-upload-wrapper .avatar-settings .nav-link {
    color: var(--main-text-color);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.card .avatar-upload-wrapper .avatar-settings .nav-link:hover {
    color: var(--main-accent-color);
}

.card .avatar-upload-wrapper .avatar-settings .nav-link .icon {
    margin-right: 5px;
}

.card .password-information .requirements {
    padding: 0;
    margin: 0;
}

.card .password-information .requirements li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.card .password-information .requirements li:before {
    margin-right: 5px;
    font-size: 8px;
    content: "\e91f";
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.card .password-information .requirements li.active {
    color: var(--color-green);
}

.card .settings .setting {
    margin-bottom: 30px;
}

.card .settings .setting:last-child {
    margin-bottom: 0;
}

.card .settings .setting .description {
    font-size: 16px;
}

.card .settings .setting .action {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.card .settings .setting .action:hover {
    color: var(--main-accent-color);
}

.card .settings .setting .action .icon {
    margin-right: 5px;
}

.card .settings .setting .switch-wrapper .description {
    margin-top: 7px;
    margin-left: 50px;
    flex: 1 1 100%;
}

.card-body.messages-wrapper .message-details {
    padding: 15px 25px;
    margin-top: 0;
}

.card-body.messages-wrapper .message-details .navigation {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.card-body.messages-wrapper .message-details .navigation .nav-item {
    padding-right: 10px;
}

.card-body.messages-wrapper .message-details .navigation .nav-description {
    font-size: 14px;
    color: var(--placeholder-color);
    text-transform: initial;
    display: flex;
    align-items: center;
}

.card-body.messages-wrapper .message-details .navigation .nav-description .bullet {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    background: var(--main-border-color);
}

.card-body.messages-wrapper .message-details .navigation .nav-description .icon {
    margin-right: 5px;
}

.card-body.messages-wrapper .message-details .navigation .nav-description a {
    display: inline-flex;
    align-items: center;
}

.card-body.messages-wrapper .message-details .navigation .nav-description a .icon {
    margin-right: 5px;
}

.card-body.messages-wrapper .order-details {
    border-top: 1px solid var(--main-border-color);
    border-bottom: none;
    padding: 25px;
    display: flex;
    align-items: center;
}

.card-body.messages-wrapper .order-details .title-wrapper {
    flex: 1;
}

.card-body.messages-wrapper .order-details .title-wrapper .website {
    font-size: 14px;
}

.card-body.messages-wrapper .order-details .title-wrapper .title {
    color: var(--title-color);
    line-height: 1.2;
    font-size: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.card-body.messages-wrapper .delivered-button-wrapper .button {
    color: #fff;
    background-color: var(--button-apply-bg-color);
    border: none;
    padding: 7px 25px;
    font-size: 14px;
    font-weight: 600;
}

.card-body.messages-wrapper .delivered-button-wrapper .button:hover {
    background: var(--button-apply-bg-hover-color);
}

.card-body.messages-wrapper .delivered-button-wrapper .button.disabled,
.card-body.messages-wrapper .delivered-button-wrapper .button.disabled:hover {
    background-color: var(--main-border-color);
    color: var(--placeholder-color);
}

.card-body .messages {
    position: relative;
    padding: 0 25px;
    max-height: 500px;
    overflow-y: auto;
}

.card-body .messages .message {
    padding-top: 30px;
}

.card-body .messages .message:last-child {
    padding-bottom: 30px;
}

.card-body .messages .message .message-information {
    display: flex;
    align-items: center;
}

.card-body .messages .message .avatar-wrapper {
    margin-right: 10px;
    margin-bottom: auto;
}

.card-body .messages .message.current .avatar-wrapper {
    margin-left: auto;
}

.card-body .messages .message .avatar-wrapper .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 0;
}

.card-body .messages .message .details-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3px;
    line-height: 1;
}

.card-body .messages .message .details-wrapper .detail {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.card-body .messages .message .details-wrapper .date {
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.card-body .messages .message .details-wrapper .separator:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 5px;
    background: var(--placeholder-color);
    border-radius: 50%;
    line-height: 1;
}

.card-body .messages .message .content-bubble {
    padding: 15px;
    border-radius: 10px;
    background: var(--main-border-color);
    color: #1a1a1a;
    font-size: 16px;
    width: 70%;
}

.card-body .messages .message .content-bubble a {
    font-weight: 600;
    text-decoration: underline;
    color: inherit;
}

.card-body .messages .message.current .content-bubble {
    margin-left: auto;
    background: #f9f0f9;
    color: var(--main-accent-color);
}

.card-body .messages .message .content-bubble .downloads {
    margin-top: 15px;
}

.card-body .messages .message .content-bubble .downloads .navigation {
    padding: 0;
    margin: 0;
}

.card-body .messages .message .content-bubble .downloads .navigation .nav-link {
    display: inline-flex;
    align-items: center;
    color: var(--placeholder-color);
    text-decoration: none;
}

.card-body .messages .message.current .content-bubble .downloads .navigation .nav-link {
    color: #756075;
}

.card-body .messages .message .content-bubble .downloads .navigation .nav-link:hover {
    color: #1a1a1a;
}

.card-body .messages .message.current .content-bubble .downloads .navigation .nav-link:hover {
    color: var(--main-accent-color);
}

.card-body .messages .message .content-bubble .downloads .navigation .nav-link .icon {
    margin-right: 3px;
}

.card-messages .card-footer {
    padding: 25px;
    border-top: 1px solid var(--main-border-color);
}

.card-messages .chat-response-wrapper {
    position: relative;
}

.card-messages .chat-response-wrapper .attachments {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}

.card-messages .answer-wrapper {
    position: relative;
}

.card-messages .answer-wrapper .answer {
    resize: none;
    height: 56px;
    padding-right: 86px;
    border: 1px solid var(--main-border-color);
}

.card-messages .answer-wrapper .answer:focus {
    border: 1px solid var(--main-border-color);
}

.card-messages .answer-wrapper .actions {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    align-items: center;
}

.card-messages .answer-wrapper .actions .upload {
    margin-right: 10px;
    padding: 5px;
    line-height: 0;
    color: var(--main-text-color);
    opacity: .4;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    cursor: pointer;
}

.card-messages .answer-wrapper .answer:focus + .actions .upload {
    opacity: .6;
}

.card-messages .answer-wrapper .actions .upload:hover {
    opacity: 1 !important;
}

.card-messages .answer-wrapper .actions .send {
    border: none;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    border-radius: 10px;
    background: var(--main-border-color);
    font-size: 16px;
    cursor: pointer;
    color: var(--main-text-color);
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    opacity: .4;
}

.card-messages .answer-wrapper .answer:focus + .actions .send {
    opacity: .6;
}

.card-messages .answer-wrapper .actions .send:hover {
    opacity: 1 !important;
}

.card-messages .answer-upload-wrapper .file-upload {
    padding: 15px;
    background: var(--main-border-color);
    color: var(--link-color);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1;
    margin-top: 15px;
    opacity: .6;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.card-messages .answer-upload-wrapper .file-upload:hover {
    opacity: 1;
}

.card-messages .answer-upload-wrapper .file-upload .name {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-size: 16px;
}

.card-messages .answer-upload-wrapper .file-upload .name .icon {
    margin-right: 10px;
}

.card-messages .answer-upload-wrapper .file-upload .cancel {
    margin-left: auto;
    color: var(--color-red);
    line-height: 0;
}

.card-messages .answer-upload-wrapper .file-upload .cancel:hover {
    transform: scale(1.2);
}

.card-messages .answer-upload-wrapper .file-upload:last-child {
    margin-bottom: 0;
}

.card-notifications .card-header {
    padding: 15px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    background: #fff;
    min-height: 76px;
    z-index: 999991;
    flex-direction: row;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card-notifications .card-header .title {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 600;
}

.overview-properties-wrapper .card-property {
    border-bottom: 1px solid var(--main-border-color);
    border-radius: 0;
    background: transparent;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.overview-properties-wrapper .card-property:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.card-property .property {
    margin-bottom: 7px;
}

.card-property .property .title {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-property .property .title .icon {

}

.card-property .rent {
    padding: 5px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--main-accent-color);
    background: var(--background-blue-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-property .rent .icon-wrapper {
    height: 32px;
    width: 32px;
    min-width: 32px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    border: 1px solid var(--main-accent-color);
    color: var(--main-accent-color);
}

.card-property .rent .details .title {
    font-size: 12px;
}

.card-property .rent .details .value {
    font-weight: 600;
}

.card-property .rent .status {
    margin-left: auto;
}

.container.has-sidebar {
    padding-left: 0;
    flex-direction: row;
    gap: 50px;
}

.has-sidebar .sidebar {
    background: var(--main-bg-color-shade);
    min-width: 320px;
    max-width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.has-sidebar .sidebar nav.navigation-wrapper {
    background: transparent;
    height: auto;
    min-width: auto;
    max-width: 100%;
    padding: 15px 50px 25px 50px;
}

.has-sidebar .sidebar nav.navigation-wrapper .navigation .nav-title {
    color: var(--main-text-color);
}

.has-sidebar .sidebar nav.navigation-wrapper .navigation .nav-item .nav-link {
    color: var(--placeholder-color);
}

.has-sidebar .sidebar nav.navigation-wrapper .navigation .nav-item .nav-link:hover {
    background: var(--button-disabled-bg-color);
}

.has-sidebar .sidebar nav.navigation-wrapper .navigation .nav-item .nav-link:after {
    color: var(--button-disabled-bg-color);
}

.has-sidebar .sidebar nav.navigation-wrapper .navigation .nav-item .nav-link:hover:after {
    color: var(--placeholder-color);
}

.has-sidebar .sidebar nav.navigation-wrapper .navigation .nav-item .nav-link.active {
    color: #FFFFFF;
    background: var(--button-cancel-bg-color);
}

.has-sidebar .sidebar nav.navigation-wrapper .navigation .nav-item .nav-link.active:hover:after {
    color: var(--button-disabled-bg-color);
}

.has-sidebar section.content {
    margin-top: 50px;
    margin-bottom: 50px;
    width: calc(100% - 370px);
}

.bullet {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.color-red {
    color: var(--color-red) !important;
}

.color-green {
    color: var(--color-green) !important;
}

.bullet.grey {
    background: var(--color-grey) !important;
}

.bullet.red {
    background: var(--color-red) !important;
}

.bullet.yellow {
    background: var(--color-yellow) !important;
}

.bullet.green {
    background: var(--color-green) !important;
}

.bullet.purple {
    background: var(--color-purple) !important;
}

.d-flex {
    display: flex !important;
    align-items: center;
}

.d-flex-center {
    display: flex;
    align-items: center;
}

.d-block {
    display: block;
}

.mt-50 {
    margin-top: 50px;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.m-25 {
    margin: 25px !important;
}

.m-50 {
    margin: 50px !important;
}

.d-block {
    display: block;
}

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

.text-success {
    color: var(--color-green) !important;
}

.text-danger {
    color: var(--color-red) !important;
}

.hidden-overflow {
    overflow: hidden !important;
}

strong {
    font-weight: 600;
}

ul {
    list-style: none;
}

input {
    font-feature-settings: "ss05" on, "liga" off;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
}

.blur {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
    pointer-events: none;
}

#wrap__loading {
    height: 2px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999999;
}

.loading-bar {
    width: 0;
    height: 3px;
    background-color: var(--color-red);
    animation: 1.5s firstLoading linear forwards;
    position: relative;
}

.loading-bar.done {
    animation: 0.4s endLoading linear;
}

@-webkit-keyframes firstLoading {
    0% {
        width: 0;
    }
    100% {
        width: 98%;
    }
}

@keyframes firstLoading {
    0% {
        width: 0;
    }
    100% {
        width: 98%;
    }
}

@-webkit-keyframes endLoading {
    0% {
        width: 98%;
    }
    100% {
        width: 100%;
    }
}

@keyframes endLoading {
    0% {
        width: 98%;
    }
    100% {
        width: 100%;
    }
}

button:focus, input:focus, select:focus, input:focus, textarea:focus {
    box-shadow: none !important;
    outline: none;
}

.collapsable {
    display: flex;
    flex-direction: column;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.collapse.open ~ .collapsable {
    visibility: visible;
}

.scrollbar {
    scrollbar-color: #cfd6df transparent;
    scrollbar-width: thin;
}

.scrollbar::-webkit-scrollbar {
    background-color: transparent;
    width: 6px;
}

.scrollbar:hover::-webkit-scrollbar-thumb {
    background-color: #c5cbd4;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: #cfd6df;
    border-radius: 10px;
    -webkit-box-shadow: none;
}

.scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
    -webkit-box-shadow: none;
}

.container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-right: 50px;
    padding-left: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.checkmark .label-text {
    font-size: 14px;
    color: var(--placeholder-color);
    z-index: 10;
    padding-left: 7px;
    cursor: pointer;
    line-height: 1;
}

.checkmark .label-text a {
    font-weight: 600;
    line-height: 1;
    color: var(--placeholder-color);
}

.checkmark .label-text a:hover {
    text-decoration: underline;
    color: var(--placeholder-hover-color);
}

.checkmark input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.checkmark input:checked ~ .check {
    border-color: var(--color-green);
    background: var(--color-green);
    transform: scale(1.1);
}

.checkmark input:checked:disabled ~ .check {
    border-color: var(--color-grey);
    background: var(--color-grey);
    transform: scale(1.1);
}

.checkmark input:checked ~ .check::after {
    opacity: 1;
    transform: scale(1);
}

.checkmark .check {
    min-width: 20px;
    max-width: 20px;
    width: 20px;
    min-height: 20px;
    max-height: 20px;
    height: 20px;
    display: inline-flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 100px;
    background-color: transparent;
    border: 2px solid var(--main-border-color);
    transition: all 0.15s ease-in-out;
    transform: scale(1);
}

.checkmark .check.checkbox {
    border-radius: var(--border-radius);
}

.checkmark:hover .check {
    background: var(--main-border-color);
    border: 2px solid var(--main-border-focus-color);
}

.checkmark .check::after {
    content: '';
    width: 120%;
    height: 120%;
    opacity: 0;
    z-index: 4;
    position: absolute;
    transform: scale(0);
    background-size: 50%;
    background-image: url("../images/checkmark.svg");
    background-repeat: no-repeat;
    background-position: center;
    transition-delay: 0.2s !important;
    transition: all 0.25s cubic-bezier(0, 1.05, 0.72, 1.07);
}

.shadow-top {
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px -10px rgba(154, 161, 171, .3) inset;
    -webkit-box-shadow: 0 10px 20px -10px rgba(154, 161, 171, .3) inset;
    height: 30px;
    margin-bottom: -29px;
}

.ribbon {
    margin-left: -5px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    position: relative;
    padding: 5px 12px;
    margin-top: 15px;
    margin-bottom: 15px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.ribbon:before {
    content: " ";
    border-style: solid;
    border-width: 10px;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    margin-bottom: -10px;
    z-index: -1;
}

.ribbon .icon {
    margin-right: 3px;
}

.ribbon.ribbon-success {
    background: var(--color-green);
}

.ribbon.ribbon-success:before {
    border-color: var(--color-green) transparent transparent;
}

.has-tooltip {
    position: relative;
}

.has-tooltip .label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    line-height: 0;
}

.has-tooltip .icon {
    cursor: pointer;
    margin-right: 3px;
}

/*noinspection CssInvalidPropertyValue*/
.has-tooltip .tooltip {
    background: var(--secondary-bg-color);
    color: var(--secondary-text-color);
    position: absolute;
    padding: 15px;
    font-size: 14px;
    line-height: 1.3;
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    z-index: 9999999;
    opacity: 0;
    left: 0;
    top: auto;
    margin-top: 5px;
    min-width: 200px;
    max-width: 300px;
    width: max-content;
    width: -webkit-max-content;
    width: -moz-max-content;
    visibility: hidden;
    transform: translateY(10px) scale(.9);
    -webkit-transform: translateY(10px) scale(.9);
    -moz-transform: translateY(10px) scale(.9);
    -o-transform: translateY(10px) scale(.9);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.has-tooltip .tooltip:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(45deg) translateX(-50%);
    -ms-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    background: var(--secondary-bg-color);
    height: 10px;
    width: 10px;
    z-index: -1;
    box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.1), 1px 1px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.1), 1px 1px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.1), 1px 1px 4px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.1), 1px 1px 4px rgba(0, 0, 0, 0.1);
    left: 25px;
}

.has-tooltip .tooltip.show {
    display: inline-block;
    transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    visibility: visible;
    opacity: 1;
}

.has-tooltip .tooltip a {
    color: var(--secondary-text-color);
    font-weight: 600;
    text-decoration: underline;
}

.has-tooltip .tooltip a:hover {
    color: var(--secondary-text-hover-color);
}

.has-bullet {
    position: relative;
}

.has-bullet:after {
    content: attr(data-number);
    position: absolute;
    height: 20px;
    min-width: 20px;
    bottom: -5px;
    color: #fff;
    right: -5px;
    font-size: 12px;
    line-height: 0;
    font-weight: 700;
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    border-radius: 20px;
    width: auto;
}

.progress {
    height: 26px;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--secondary-bg-submenu-color);
    border-radius: 20px;
    padding: 0 5px;
}

.progress > span {
    min-width: 15%;
    font-size: 12px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    background: var(--color-green);
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.is-sticky {
    position: sticky !important;
    top: 0;
    z-index: 999992;
}

.modal {
    position: fixed;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    z-index: 999994;
    background: rgba(0, 0, 0, .75);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.modal.show {
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 1;
}

.modal .modal-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}

.modal.show .modal-wrapper {
    display: flex;
    margin: auto 0 auto 0;
    padding: 25px;
}

.modal .modal-wrapper .modal-content {
    min-width: 250px;
    max-width: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 7px;
    width: 100%;
    margin: auto;
    z-index: 99999999;
    background: rgba(255, 255, 255, 1);
}

.modal .modal-wrapper .modal-content .modal-header {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #fff;
    min-height: 76px;
}

.modal .modal-wrapper .modal-content .modal-header.drop-shadow {
    box-shadow: var(--box-shadow);
}

.modal .modal-wrapper .modal-content .modal-header .title {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 600;
}

.modal .modal-wrapper .modal-content .close.icon-action {
    margin-left: auto;
    color: var(--link-color);
    font-size: 18px;
    border: 1px solid var(--link-color);
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal .modal-wrapper .modal-content .close.icon-action:hover {
    transform: scale(1.1);
}

.modal .modal-wrapper .modal-content .modal-body {
    padding: 25px;
    max-height: 500px;
    position: relative;
    overflow-y: auto;
}

.modal .modal-wrapper .modal-content .tabs-wrapper {
    padding: 0 3px;
    border-bottom: 1px solid var(--main-border-color);
}

.modal .modal-wrapper .modal-content .tabs-wrapper .tabs {
    border-bottom: none;
}

.modal .modal-wrapper .modal-content.two-factor {
    max-width: 400px !important;
}

.modal .modal-wrapper .modal-content.two-factor .modal-body {
    padding: 50px;
}

.modal .modal-wrapper .modal-content.two-factor.setup-two-factor .modal-body {
    max-height: 600px;
}

.modal .modal-wrapper .modal-content.two-factor.setup-two-factor .modal-body:after {
    content: " ";
    top: 0;
    left: 0;
    z-index: -1;
    height: 200px;
    width: 100%;
    background: var(--main-bg-color);
    border-radius: 0 0 100% 100%/0 0 30% 30%;
    position: absolute;
}

.modal .modal-wrapper .modal-content.two-factor .modal-body .qr-code {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.modal .modal-wrapper .modal-content.two-factor .modal-body .qr-code .qr {
    width: 150px;
    padding: 10px;
    background: #fff;
    border-radius: var(--border-radius);
}

.modal .modal-wrapper .modal-content.two-factor .modal-body .qr-code .code {
    font-size: 14px;
    font-weight: 600;
}

.modal .modal-wrapper .modal-content.two-factor .modal-header {
    height: 120px;
    background: var(--main-bg-color);
    border-radius: 0 0 100% 100%/0 0 30% 30%;
    position: relative;
}

.modal .modal-wrapper .modal-content.two-factor .icon-wrapper {
    text-align: center;
    font-size: 120px;
    flex: 1;
    margin-bottom: -80px;
    color: var(--main-accent-text-color);
}

.modal .modal-wrapper .modal-content.two-factor .close {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 1;
}

.modal .modal-wrapper .modal-content.two-factor .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.2;
    color: var(--main-accent-text-color);
    text-align: center;
}

.modal .modal-wrapper .modal-content.two-factor .description {
    font-size: 16px;
    line-height: 1.4;
    color: var(--placeholder-color);
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
}

.modal .modal-wrapper .modal-content.two-factor .submit-wrapper {
    margin-top: 50px;
}

.modal .modal-wrapper .modal-content.two-factor .submit-wrapper .button-wrapper {
    margin-right: 25px;
}

.modal .modal-wrapper .modal-content.two-factor .submit-wrapper .additional-links {
    font-size: 14px;
    margin-left: auto;
}

.modal .modal-wrapper .modal-content.two-factor .submit-wrapper .additional-links a {
    color: var(--main-text-color);
}

.modal .modal-wrapper .modal-content.two-factor .submit-wrapper .additional-links a:hover {
    color: var(--main-accent-color);
    text-decoration: underline;
}

.modal .modal-wrapper .modal-content.filters {
    max-width: 500px !important;
}

.modal .modal-wrapper .modal-content .modal-footer {
    padding: 25px;
    background: var(--bg-light-grey);
    border-radius: 0 0 10px 10px;
    position: relative;
}

.modal .modal-wrapper .modal-content .modal-footer:before {
    content: "";
    display: block;
    width: 80%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -40%;
    height: 1px;
    background: radial-gradient(ellipse at center, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%);
}

.modal .modal-wrapper .modal-content.modal-favorites {
    max-width: 300px !important;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-body .favorites.list {
    max-height: 200px;
    overflow-y: auto;
    padding: 20px 18px;
    margin: -12px -18px;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-body .favorites.list .item {
    line-height: 0;
    margin-bottom: 18px;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-body .favorites.list .item:last-child {
    margin-bottom: 0;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-body .favorites.list .item .check {
    border-radius: 7px;
    -webkit-box-sizing: initial;
    -moz-box-sizing: initial;
    box-sizing: initial;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-body .favorites.list .item .checkmark .label-text {
    font-size: 16px;
    font-weight: 600;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-footer .create-favorite-list {
    display: flex;
    align-items: flex-end;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-footer .create-favorite-list .input-group {
    margin-right: 10px;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-footer .create-favorite-list .input-group:last-child {
    margin-right: 0;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-footer .create-favorite-list .input-group label {
    font-size: 12px;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-footer .create-favorite-list .input-group .input-control {
    padding: 4px 12px;
    font-size: 14px;
    margin-right: 10px;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-footer .create-favorite-list .input-group .button {
    padding: 0;
    font-size: 14px;
    min-width: 40px;
    height: 31px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.modal .modal-wrapper .modal-content.modal-favorites .modal-footer .create-favorite-list .input-group .button .icon {
    align-self: center;
}

.modal .modal-wrapper .modal-content .form-centered .proof-label-wrapper {
    font-size: 16px;
    margin-bottom: 5px;
}

.modal .modal-wrapper .modal-content .form-centered .proof-label-wrapper .information {
    margin-right: 3px;
}

.modal .modal-wrapper .modal-content .form-centered .proof-label-wrapper .label-control {
    font-size: 16px;
}

.tabs {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--main-border-color);
}

.tabs .tab .tab-link,
.tabs .tab .tab-details {
    padding: 15px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
    color: var(--main-text-color);
    font-weight: 600;
    white-space: normal;
}

.tabs .tab .tab-details {
    color: var(--placeholder-color);
    padding: 0 15px;
    height: 50px;
}

.tabs .tab .tab-link:hover {
    color: var(--color-blue);
    border-bottom: 1px solid transparent;
}

.tabs .tab .tab-link.active {
    color: var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
}

.tabs .tab .tab-link.comments,
.action-wrapper .navigation .nav-item .comments {
    height: 35px;
    border: 1px solid var(--main-border-color);
    color: var(--placeholder-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: var(--border-radius);
    margin-right: 15px;
    position: relative;
}

.tabs .tab .tab-link.comments:hover,
.action-wrapper .navigation .nav-item .comments:hover {
    color: var(--main-accent-color);
    border: 1px solid var(--main-accent-color)
}

.tabs .tab .tab-link.comments.has-bullet:after,
.action-wrapper .navigation .nav-item .comments.has-bullet:after {
    height: 15px;
    min-width: 15px;
    top: -5px;
    right: -5px;
    font-size: 8px;
}

.tabs-content-wrapper {
    position: relative;
    display: block;
}

.tabs-content-wrapper .tab-content {
    display: none;
}

.tabs-content-wrapper .tab-content.active {
    display: block;
}

.separator {
    display: flex;
    align-items: center;
}

.separator:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 5px;
    background: var(--main-text-color);
    border-radius: 50%;
    line-height: 1;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--main-border-color);
    margin: 0 0 25px 0;
    padding: 0;
}

.swal2-container {
    z-index: 9999999 !important;
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
    background: rgba(0, 0, 0, .75) !important;
}

.swal2-styled.swal2-confirm {
    background-color: var(--main-accent-color) !important;
    border-radius: var(--border-radius) !important;
}

.swal2-styled.swal2-cancel {
    background-color: var(--button-cancel-bg-color) !important;
    border-radius: var(--border-radius) !important;
}

.swal2-popup {
    max-width: 400px !important;
    border-radius: var(--border-radius) !important;
}

.swal2-html-container {
    color: var(--main-text-color) !important;
}

.swal2-styled {
    -webkit-transition: all 0.15s ease-in-out !important;
    -moz-transition: all 0.15s ease-in-out !important;
    -o-transition: all 0.15s ease-in-out !important;
    -ms-transition: all 0.15s ease-in-out !important;
    transition: all 0.15s ease-in-out !important;
    border-radius: var(--border-radius) !important;
}

.digits {
    display: flex;
    align-items: center;
}

.digits .digit {
    min-width: 30px;
    height: 60px;
    font-size: 24px;
    text-align: center;
    margin: 0 3px;
    border: none;
    border-bottom: 2px solid var(--main-border-color);
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}

.digits .digit:focus {
    border-bottom: 2px solid var(--main-accent-color);
}

.two-factor-wrapper {
    padding: 25px;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
}

.two-factor-wrapper .qr-code {
    text-align: center;
}

.two-factor-wrapper .qr-code img {
    max-width: 250px;
    width: 100%;
}

.two-factor-wrapper .code {
    font-size: 12px;
    font-weight: 600;
    margin: 5px 0 15px 0;
    text-align: center;
}

.two-factor-wrapper .digits {
    max-width: 250px;
    margin: 0 auto 25px auto;
}

.two-factor-wrapper .submit-wrapper {
    margin-bottom: 0;
}

.two-factor-wrapper .submit-wrapper .button-wrapper {
    margin: 0 auto;
}

.two-factor-wrapper .title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.answer-wrapper {
    position: relative;
}

.answer-wrapper .answer {
    resize: none;
    height: 46px;
    padding-right: 86px;
    border: 1px solid var(--main-border-color);
    line-height: 1;
}

.answer-wrapper .answer:focus {
    border: 1px solid var(--main-border-focus-color);
}

.answer-wrapper .actions {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    align-items: center;
}

.answer-wrapper .actions .upload {
    cursor: pointer;
    margin-right: 10px;
    padding: 5px;
    line-height: 0;
    color: var(--input-placeholder-color);
    opacity: .4;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.answer-wrapper .answer:focus + .actions .upload {
    opacity: .6;
}

.answer-wrapper .actions .upload:hover {
    opacity: 1 !important;
}

.answer-wrapper .actions .send {
    border: none;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    border-radius: 10px;
    background: var(--main-border-color);
    font-size: 16px;
    cursor: pointer;
    color: var(--input-placeholder-color);
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
    opacity: .4;
}

.answer-wrapper .answer:focus + .actions .send {
    opacity: .6;
}

.answer-wrapper .actions .send:hover {
    opacity: 1 !important;
}

.answer-upload-wrapper .file-upload {
    padding: 15px;
    background: var(--main-border-color);
    color: var(--main-accent-text-color);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1;
    margin-top: 15px;
    opacity: .4;
    -webkit-transition: all 0.15s ease-in;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -ms-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;
}

.answer-upload-wrapper .file-upload:hover {
    opacity: .8;
}

.answer-upload-wrapper .file-upload .name {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-size: 16px;
}

.answer-upload-wrapper .file-upload .name .icon {
    margin-right: 10px;
}

.answer-upload-wrapper .file-upload .cancel {
    margin-left: auto;
    color: var(--color-red);
    line-height: 0;
}

.answer-upload-wrapper .file-upload .cancel:hover {
    transform: scale(1.2);
}

.answer-upload-wrapper .file-upload:last-child {
    margin-bottom: 0;
}

.columns {
    display: flex;
    flex-direction: column;
}

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

.columns.wrapper .row {
    flex: 1 0 100%;
}

.columns .row .column {
    flex: 1;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row [class*="col-"] {
    position: relative;
    width: 100%;
    flex-grow: 1;
    max-width: 100%;
    flex-basis: 0;

}

.columns .row .col-auto {
    flex: 0;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-3 {
    flex: 0 0 auto;
    width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
}

.columns .row .col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-6 {
    flex: 0 0 auto;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-9 {
    flex: 0 0 auto;
    width: 75%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
    padding-right: 15px;
    padding-left: 15px;
}

.columns .row .col-12 {
    flex: 0 0 auto;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.dropdown-container {
    position: relative;
}

.dropdown-container .dropdown-wrapper {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    padding: 25px;
    position: absolute;
    min-width: 200px;
    max-width: 300px;
    right: 0;
    top: auto;
    z-index: 999993;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.9);
    -webkit-transform: translateY(10px) scale(.9);
    -moz-transform: translateY(10px) scale(.9);
    -o-transform: translateY(10px) scale(.9);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.dropdown-container .dropdown-wrapper.show {
    display: inline-block;
    transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    visibility: visible;
    opacity: 1;
}

.dropdown-container .dropdown-wrapper .close {
    font-size: 18px;
    color: var(--link-color);
    margin-left: auto;
    line-height: 0;
}

.dropdown-container .dropdown-wrapper .close:hover {
    transform: scale(1.2);
}

.dropdown-container .dropdown-wrapper .dropdown-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    white-space: nowrap;
    padding: 0;
    color: var(--title-color);
}

.dropdown-container .dropdown-wrapper .dropdown-header .dropdown-title {
    font-size: 14px;
    font-weight: 400;
    position: relative;
    color: var(--title-color);
}

.dropdown-container .dropdown-wrapper .dropdown-header .close-dropdown {
    padding-left: 15px;
    margin-left: auto;
    display: flex;
}

.dropdown-container .dropdown-wrapper .dropdown-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--main-border-color);
    max-height: 300px;
    position: relative;
    overflow-y: auto;
}

.dropdown-container .dropdown-wrapper .dropdown-content .navigation {
    justify-content: start !important;
    flex-direction: column !important;
    align-items: start !important;
    padding: 0;
    margin: 0;
}

.dropdown-container .dropdown-wrapper .dropdown-content .navigation .nav-link {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

table {
    width: 100%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    box-sizing: content-box;
}

.dataTables_wrapper {
    padding-top: 15px;
}

.dataTables_wrapper .dataTables_length {
    padding: 0 25px 15px 25px;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_length select {
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
    color: var(--main-text-color);
    height: auto;
    padding: 4px 30px 4px 8px;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_length select:focus {
    border: 1px solid var(--main-border-focus-color);
}

.dataTables_wrapper .dataTables_filter {
    padding: 0 25px 15px 25px;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_filter input {
    display: block;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
    color: var(--main-accent-text-color);
    height: auto;
    padding: 4px 8px;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border: 1px solid var(--main-border-focus-color);
}

.dataTables_wrapper .dataTables_info {
    padding: 23px 25px 15px 25px;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate {
    padding: 15px 25px 15px 25px;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: transparent;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
    color: var(--main-accent-text-color);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    background: transparent;
    border: 1px solid var(--main-border-focus-color);
    color: var(--main-accent-text-color) !important;
    box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--main-border-color);
    border: 1px solid var(--main-border-color);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    border: 1px solid var(--main-border-color);
    background: var(--main-border-color);
}

table.dataTable {
    clear: none;
}

table.dataTable .empty.show {
    min-height: 300px;
    flex-direction: column;
}

table.dataTable .empty.show .illustration {
    font-size: 62px;
    margin-bottom: 16px;
    color: var(--main-accent-color);
    line-height: 0;
}

table.dataTable .empty.show .title {
    font-weight: 500;
    font-size: 22px;
}

table.table-bordered {
    border-left: 1px solid var(--main-border-color);
    border-right: 1px solid var(--main-border-color);
}

table.dataTable.no-footer {
    border-bottom: none;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 15px 25px;
    text-align: left;
    border-bottom: 1px solid var(--main-border-color);
    border-top: 1px solid var(--main-border-color);
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: 15px 25px;
    border-bottom: 1px solid var(--main-border-color);
}

table.dataTable tfoot th, table.dataTable tfoot td {
    padding: 15px 25px;
    border-top: 2px solid var(--main-border-color);
    border-bottom: 1px solid var(--main-border-color);
}

table.dataTable .navigation {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    padding: 0;
    margin: 0;
}

table.dataTable .navigation .dropdown {
    font-size: 20px;
    min-width: 25px;
    display: flex;
    justify-content: center;
}

table.dataTable .navigation .dropdown-container .dropdown-wrapper {
    top: 0;
}

table.dataTable .navigation .dropdown-container .dropdown-wrapper .navigation {
    gap: 8px;
}

table.dataTable .navigation .dropdown-container .dropdown-wrapper .navigation .nav-link {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

table.dataTable .navigation .dropdown-container .dropdown-wrapper .navigation .nav-link .icon {
    min-width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

table.dataTable .navigation .badge.dropdown {
    min-width: 70px;
    justify-content: center;
    font-size: 12px;
    display: inline-flex;
}

table.dataTable .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-bg-color);
    border-radius: var(--border-radius);
    width: 32px;
    height: 32px;
    font-size: 14px;
}

table.dataTable .btn:hover {
    background: var(--main-bg-secondary-color);
}

.table-bordered .dataTables_wrapper {
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
}

table.dataTable .action {
    display: flex;
    align-items: center;
    gap: 6px;
}

.daterangepicker {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
    z-index: 999999;
}

.daterangepicker:before {
    content: none;
}

.daterangepicker:after {
    content: none;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid var(--main-border-color);
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
    background-color: var(--selected-bg-color);
    color: #fff;
}

.daterangepicker td.available:hover span, .daterangepicker th.available:hover span {
    border-color: #fff;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: var(--selected-bg-color);
}

.daterangepicker .ranges li {
    color: var(--title-color);
}

.daterangepicker .ranges li:hover {
    background-color: var(--selection-bg-color);
}

.daterangepicker .ranges li.active {
    background-color: var(--selected-bg-color);
}

.daterangepicker.show-calendar .drp-buttons {
    border-top: 1px solid var(--main-border-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.daterangepicker .drp-buttons .drp-selected {
    font-weight: 600;
}

.daterangepicker .drp-buttons .btn {
    border-radius: var(--border-radius);
    border: none;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 3px 15px;
    cursor: pointer;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.daterangepicker .drp-buttons .btn.cancelBtn {
    color: #fff;
    background: var(--button-cancel-bg-color);
}

.daterangepicker .drp-buttons .btn.cancelBtn:hover {
    background: var(--button-cancel-bg-hover-color);
}

.daterangepicker .drp-buttons .btn.applyBtn {
    color: #fff;
    background: var(--button-apply-bg-color);
}

.daterangepicker .drp-buttons .btn.applyBtn:hover {
    color: #fff;
    background: var(--button-apply-bg-hover-color);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    border-radius: var(--border-radius);
}

.daterangepicker td.start-date {
    border-radius: var(--border-radius) 0 0 var(--border-radius) !important;
}

.daterangepicker td.end-date {
    border-radius: 0 var(--border-radius) var(--border-radius) 0 !important;
}

.daterangepicker td.start-date.end-date {
    border-radius: var(--border-radius) !important;
}

.daterangepicker td.in-range {
    border-radius: 0;
    background: var(--selection-bg-color);
}

.daterangepicker td.active {
    background: var(--selected-bg-color);
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    padding: 1px 5px;
    border: 1px solid var(--main-border-color);
}

.daterangepicker select.monthselect:focus, .daterangepicker select.yearselect:focus {
    border: 1px solid var(--main-border-focus-color);
}

.select2-container {
    outline: none;
    z-index: 999999;
    width: 100% !important;
}

.modal-wrapper .select2-container {
    z-index: 999999;
}

.select2-container .selection,
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    outline: none;
}

.select2-container .select2-selection__rendered {
    outline: none;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: var(--main-accent-text-color);
    height: auto;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: var(--border-radius);
}

.select2-container .select2-selection {
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
}

.select2-container .select2-selection--single {
    height: auto;
    display: flex;
    align-items: center;
    min-height: 54px;
}

.select2-container .select2-selection--multiple {
    min-height: 54px;
}

.select-count + .select2-container .select2-selection--multiple {
    height: 54px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    line-height: normal;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: relative;
    margin-left: auto;
    top: 0;
    right: 15px;
}

.select2-dropdown {
    border: none;
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
}

.select2-container--open .select2-dropdown {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 15px;
}

.select2-container--default .select2-results > .select2-results__options {
    border-radius: 0;
}

.select2-results__option:last-child {
    border-radius: 0;
}

.select2-container--default .select2-search--dropdown {
    padding: 0;
    margin-bottom: 7px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--main-border-focus-color);
    color: var(--main-accent-text-color);
    font-size: 16px;
    border-radius: var(--border-radius);
    padding: 7px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--selected-bg-color);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: var(--main-bg-color);
    color: var(--main-text-color);
    border-radius: var(--border-radius);
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: var(--placeholder-color);
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--button-apply-bg-color);
    color: #fff;
    border-radius: var(--border-radius);
}

.select2-results__option {
    color: var(--title-color);
    font-size: 16px;
    padding: 7px;
    margin-bottom: 3px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-size: 16px;
    color: var(--main-text-color);
    line-height: 1.4;
}

.select2-container .select2-search.select2-search--inline {
    display: none;
}

.select2-container--default .select2-results__option--selected {
    background: var(--button-disabled-bg-color);
    color: var(--secondary-placeholder-color);
    border-radius: var(--border-radius);
}

.select2-results .select2-results__message {
    text-align: center;
    font-size: 16px;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple {
    border: 1px solid var(--main-border-focus-color);
    transition: all .15s ease-in-out;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid var(--main-border-focus-color);
    transition: all .15s ease-in-out;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    margin: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: transparent;
    border: 1px solid var(--main-border-color);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: 1px solid var(--main-border-color);
}

.select2-container .select2-selection--multiple {
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
    padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    position: relative;
    margin-top: 0;
    order: 2;
    margin-right: -15px;
    height: auto;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background: transparent;
}

.placeholder {
    font-size: 14px;
}

.font-small {
    font-size: 12px !important;
    gap: 4px;
}

main.dashboard-wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
}

nav.navigation-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 15px 25px 25px 25px;
    min-width: 270px;
    max-width: 270px;
    width: 100%;
    z-index: 1000;
    height: 100vh;
    /*overflow-y: auto;*/
    background: var(--secondary-bg-color);
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

nav.navigation-wrapper .logo-wrapper {
    line-height: 1;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
}

nav.navigation-wrapper .logo-wrapper .logo {
    height: 30px;
    width: 100px;
    background: url("../images/logo-white.svg");
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
}

nav.navigation-wrapper .logo-wrapper .toggle-navigation {
    margin-left: auto;
    font-size: 24px;
    color: var(--secondary-text-color);
}

nav.navigation-wrapper .logo-wrapper .toggle-navigation:hover {
    color: #ffffff;
}

nav.navigation-wrapper .logo-wrapper .toggle-menu {
    margin-left: auto;
    font-size: 24px;
    color: var(--secondary-text-color);
}

nav.navigation-wrapper .logo-wrapper .toggle-menu:hover {
    color: #ffffff;
}

nav.navigation-wrapper .logo-wrapper .action-wrapper {
    margin-left: auto;
    display: flex;
    align-items: center;
}

nav.navigation-wrapper .logo-wrapper .action {
    color: var(--secondary-text-hover-color);
    font-size: 20px;
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg-submenu-color);
}

nav.navigation-wrapper .logo-wrapper .action:hover {
    background: var(--secondary-bg-hover-color);
}

nav.navigation-wrapper .logo-wrapper .action.has-bullet:after {
    content: attr(data-number);
    height: 16px;
    font-size: 10px;
    min-width: 8px;
    top: -1px;
    right: -1px;
}

nav.navigation-wrapper .menu-wrapper {
    overflow: auto;
    height: 100%;
    max-height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 -15px;
    padding: 0 15px;
}

nav.navigation-wrapper .navigation {
    padding: 0;
    margin: 0;
}

nav.navigation-wrapper .navigation .nav-title {
    margin-top: 20px;
    padding: 10px 0;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--placeholder-color);
    letter-spacing: var(--small-text-letter-spacing);
}

nav.navigation-wrapper .navigation .nav-item {
    margin-bottom: 5px;
}

nav.navigation-wrapper .navigation .nav-item .nav-link {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-text-color);
    letter-spacing: var(--small-text-letter-spacing);
}

nav.navigation-wrapper .navigation .nav-item .nav-link:after {
    content: "\e902";
    color: var(--secondary-placeholder-color);
    margin-left: auto;
    font-family: 'icons';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

nav.navigation-wrapper .navigation .nav-item .nav-link.has-bullet:after {
    font-family: 'Nunito', 'Montserrat', sans-serif;
    content: attr(data-number);
    color: var(--secondary-text-hover-color);
    position: relative;
    bottom: 0;
    line-height: 0;
    font-weight: 700;
}

nav.navigation-wrapper .navigation .nav-item .nav-link .icon {
    margin-right: 7px;
    width: 25px;
}

nav.navigation-wrapper .navigation .nav-item .nav-link:hover {
    background: var(--secondary-bg-hover-color);
    color: var(--secondary-text-hover-color);
    border-radius: var(--border-radius);
}

nav.navigation-wrapper .navigation .nav-item .nav-link:hover:after {
    color: var(--secondary-text-color);
}

nav.navigation-wrapper .navigation .nav-item .nav-link.has-bullet:hover:after {
    color: var(--secondary-text-hover-color);
}

nav.navigation-wrapper .navigation .nav-item .navigation {
    padding: 0;
    margin: 0;
}

nav.navigation-wrapper .navigation .nav-item .active {
    background: var(--secondary-bg-hover-color);
    color: var(--secondary-text-hover-color);
    border-radius: var(--border-radius);
}

nav.navigation-wrapper .navigation .nav-item .active:after {
    color: var(--secondary-text-color);
}

nav.navigation-wrapper .navigation .nav-item .collapse.active:after {
    color: var(--secondary-text-color);
    -webkit-transform: rotate(90deg); /* Safari and Chrome */
    -moz-transform: rotate(90deg); /* Firefox */
    -ms-transform: rotate(90deg); /* IE 9 */
    -o-transform: rotate(90deg); /* Opera */
    transform: rotate(90deg);
}

nav.navigation-wrapper .navigation .nav-item .active ~ .navigation {
    height: auto !important;
    visibility: visible !important;
}

nav.navigation-wrapper .navigation .nav-item .nav-link.has-bullet.open:after {
    color: var(--secondary-text-hover-color);
    -webkit-transform: rotate(0deg); /* Safari and Chrome */
    -moz-transform: rotate(0deg); /* Firefox */
    -ms-transform: rotate(0deg); /* IE 9 */
    -o-transform: rotate(0deg); /* Opera */
    transform: rotate(0deg);
}

nav.navigation-wrapper .navigation .nav-item .nav-link.open:after {
    color: var(--secondary-text-color);
    -webkit-transform: rotate(90deg); /* Safari and Chrome */
    -moz-transform: rotate(90deg); /* Firefox */
    -ms-transform: rotate(90deg); /* IE 9 */
    -o-transform: rotate(90deg); /* Opera */
    transform: rotate(90deg);
}

nav.navigation-wrapper .navigation .nav-item .navigation .nav-link:after {
    content: none;
}

nav.navigation-wrapper .navigation .nav-item .navigation .nav-link.has-bullet:after {
    content: attr(data-number);
}

nav.navigation-wrapper .navigation .nav-item .navigation .nav-link:hover {
    background: var(--secondary-bg-submenu-color);
}

nav.navigation-wrapper .logged-user-wrapper {
    margin-top: auto;
}

nav.navigation-wrapper #alertView + .logged-user-wrapper {
    margin-top: initial;
}

nav.navigation-wrapper .logged-user {
    display: flex;
    align-items: center;
    padding: 15px 15px;
    border-radius: var(--border-radius);
    margin-top: auto;
    background: var(--secondary-bg-submenu-color);
    line-height: 1;
    color: var(--secondary-text-color);
    letter-spacing: var(--small-text-letter-spacing);
}

nav.navigation-wrapper .logged-user:hover {
    background: var(--secondary-bg-hover-color);
}

nav.navigation-wrapper .logged-user.is-visible {
    background: var(--secondary-bg-hover-color);
    color: var(--secondary-text-hover-color);
}

nav.navigation-wrapper .logged-user.is-visible:after {
    color: var(--secondary-text-color) !important;
    content: "\e911";
}

nav.navigation-wrapper .logged-user:after {
    content: "\e900";
    color: var(--secondary-placeholder-color);
    font-size: 18px;
    width: 20px;
    text-align: center;
    margin-left: auto;
    font-family: 'icons';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

nav.navigation-wrapper .logged-user:hover:after {
    color: var(--secondary-text-color);
}

nav.navigation-wrapper .logged-user.has-bullet:after {
    font-family: 'Nunito', 'Montserrat', sans-serif;
    content: "!";
    color: var(--secondary-text-hover-color);
    position: relative;
    bottom: 0;
    right: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 0;
}

nav.navigation-wrapper .logged-user .avatar-wrapper {
    margin-right: 10px;
    line-height: 0;
}

nav.navigation-wrapper .logged-user .avatar-wrapper .avatar {
    width: 28px;
    height: 28px;
    display: inline-block;
    border-radius: 4px;
}

nav.navigation-wrapper .logged-user .name {
    margin-right: 15px;
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 120px;
    width: 120px;
    overflow: hidden;
}

nav.navigation-wrapper .logged-user:hover {
    color: var(--secondary-text-hover-color);
}

nav.navigation-wrapper .logged-user:hover .icon {
    color: var(--secondary-text-color);
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper {
    width: 100%;
    bottom: 100%;
    margin-bottom: 5px;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .dropdown-content {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    overflow: initial;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item .nav-link {
    padding: 7px 0;
    color: var(--placeholder-color);
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item .nav-link:after {
    color: var(--button-disabled-bg-color);
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item .nav-link:hover {
    background: transparent;
    border-radius: 0;
    color: var(--placeholder-hover-color);
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item .nav-link:hover:after {
    color: var(--placeholder-hover-color);
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item .nav-link.has-bullet:after {
    color: #fff;
    content: "!";
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item .nav-link.has-bullet:hover:after {
    color: #fff;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item .nav-link.active {
    background: transparent;
    border: initial;
    color: inherit;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item .nav-link.active:hover {
    color: var(--placeholder-hover-color);
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-title {
    margin-top: 0;
    padding-top: 0;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .border-top {
    margin-top: 7px;
    padding-top: 7px;
    border-top: 1px solid var(--main-border-color);
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item:last-child {
    margin-bottom: 0;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item:first-child .nav-link {
    padding-top: 0;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .navigation .nav-item:last-child .nav-link {
    padding-bottom: 0;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .user-information {
    background: var(--main-bg-color);
    padding: 25px;
    margin: -25px -25px 25px -25px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    text-align: center;
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .user-information .name {
    margin-bottom: 5px;
    word-break: break-word;
    line-height: 1.2;
    font-weight: 400;
    font-size: 14px;
    color: var(--placeholder-color);
}

nav.navigation-wrapper .logged-user-wrapper .dropdown-wrapper .user-information .balance {
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

nav.navigation-wrapper .display-minified {
    display: none;
}

nav.navigation-wrapper.minified {
    min-width: 70px;
    max-width: 70px;
    padding: 15px;
}

nav.navigation-wrapper.minified .display-minified {
    display: flex;
    flex-direction: column;
}

nav.navigation-wrapper.minified .logo-wrapper {
    justify-content: center;
}

nav.navigation-wrapper.minified .logo-wrapper .logo {
    width: 30px;
    height: 30px;
}

nav.navigation-wrapper.minified .logo-wrapper .toggle-navigation {
    display: none;
}

nav.navigation-wrapper.minified .navigation .nav-title {
    display: none;
}

nav.navigation-wrapper.minified .logged-user {
    padding: 15px 0;
    color: var(--secondary-text-hover-color);
    text-align: center;
    justify-content: center;
    margin-top: initial;
}

nav.navigation-wrapper.minified .logged-user:after {
    font-size: 16px;
    color: var(--secondary-text-hover-color);
    margin-left: initial;
    text-align: center;
}

nav.navigation-wrapper.minified .logged-user .avatar-wrapper {
    display: none;
}

nav.navigation-wrapper.minified .logged-user .name {
    display: none;
}

nav.navigation-wrapper.minified .navigation .nav-item .nav-link:after {
    content: none;
}

nav.navigation-wrapper.minified .navigation .nav-item .nav-link {
    justify-content: center;
    padding: 15px 0;
    width: 100%;
    text-align: center;
}

nav.navigation-wrapper.minified .navigation .nav-item .nav-link .icon {
    margin-right: 0;
}

nav.navigation-wrapper.minified .navigation .nav-item .nav-link .title {
    display: none;
}

section.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--main-bg-color);
    overflow-y: auto !important;
    height: 100vh !important;
}

header.header-wrapper {
    padding: 15px 50px;
    background: var(--header-bg-color);
    display: flex;
    align-items: center;
    top: 0;
    z-index: 1000;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    letter-spacing: var(--small-text-letter-spacing);
}

header.header-wrapper .search-wrapper,
nav.navigation-wrapper .search-wrapper {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin-right: 15px;
}

header.header-wrapper .search-wrapper .input-control,
nav.navigation-wrapper .search-wrapper .input-control {
    padding-right: 77px;
    background: var(--main-bg-color);
    border: none;
    color: var(--placeholder-color);
    height: 45px;
    font-size: 14px;
}

header.header-wrapper .search-wrapper .input-control:focus,
nav.navigation-wrapper .search-wrapper .input-control:focus {
    border: none;
    background: var(--main-bg-secondary-color);
    color: var(--placeholder-hover-color);
}

header.header-wrapper .search-wrapper .input-control:focus::placeholder,
nav.navigation-wrapper .search-wrapper .input-control:focus::placeholder {
    color: var(--placeholder-hover-color);
    opacity: 1;
}

header.header-wrapper .search-wrapper .input-control:focus:-ms-input-placeholder,
nav.navigation-wrapper .search-wrapper .input-control:focus:-ms-input-placeholder {
    color: var(--placeholder-hover-color);
}

header.header-wrapper .search-wrapper .input-control:focus::-ms-input-placeholder,
nav.navigation-wrapper .search-wrapper .input-control:focus::-ms-input-placeholder {
    color: var(--placeholder-hover-color);
}

header.header-wrapper .search-wrapper .input-control:focus ~ .button,
nav.navigation-wrapper .search-wrapper .input-control:focus ~ .button {
    background: var(--placeholder-color);
}

header.header-wrapper .search-wrapper .button,
nav.navigation-wrapper .search-wrapper .button {
    position: absolute;
    right: 6px;
    width: auto;
    top: 6px;
    font-size: 14px;
    padding: 0;
    height: 33px;
    min-width: 65px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--button-disabled-bg-color);
}

header.header-wrapper .search-wrapper .button:hover,
nav.navigation-wrapper .search-wrapper .button:hover {
    background: var(--button-disabled-hover-bg-color);
}

header.header-wrapper .search-wrapper .input-control:focus ~ .button:hover,
nav.navigation-wrapper .search-wrapper .input-control:focus ~ .button:hover {
    background: var(--placeholder-hover-color);
}

nav.navigation-wrapper .search-wrapper {
    margin-bottom: 25px;
}

nav.navigation-wrapper .search-wrapper .button {
    min-width: 45px;
    max-width: 45px;
}

header.header-wrapper .actions-wrapper {
    margin-left: auto;
    display: flex;
    align-items: center;
}

header.header-wrapper .actions-wrapper .company-selection {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 6px;

}

header.header-wrapper .actions-wrapper .company-selection .name {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: left;
    gap: 6px;
}

header.header-wrapper .actions-wrapper .company-selection .name .icon {
    margin: 0;
}

header.header-wrapper .actions-wrapper .company-selection .name .placeholder {
    font-size: 12px;
    color: var(--placeholder-color);
}

header.header-wrapper .actions-wrapper .company-selection .icon {
    font-size: 14px;
    margin-left: 5px;
}

header.header-wrapper .actions-wrapper .company-selection .icon-pre {
    font-size: 18px;
}

header.header-wrapper .actions-wrapper .company-selection .change-selection {
    font-size: 18px;
    color: var(--placeholder-color);
    background: var(--main-bg-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    min-height: 30px;
    border-radius: var(--border-radius);
    margin-left: 16px;
    position: relative;
}

header.header-wrapper .actions-wrapper .company-selection .change-selection:hover {
    background: var(--main-bg-secondary-color);
    color: var(--placeholder-hover-color);
}

header.header-wrapper .actions-wrapper .company-selection .change-selection:before {
    height: 100%;
    width: 1px;
    content: " ";
    background: var(--main-border-color);
    position: absolute;
    left: -11px;
}

header.header-wrapper .actions-wrapper .company-selection .settings {
    font-size: 18px;
    background: var(--button-cancel-bg-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    min-height: 30px;
    border-radius: var(--border-radius);
}

header.header-wrapper .actions-wrapper .company-selection .settings:hover {
    background: var(--button-cancel-bg-hover-color);
}

header.header-wrapper .actions-wrapper .company-selection .change-selection .icon,
header.header-wrapper .actions-wrapper .company-selection .settings .icon {
    margin: 0;
}

header.header-wrapper .actions-wrapper .toggle-menu-action {
    font-size: 18px;
    color: var(--placeholder-color);
    background: var(--main-bg-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    min-height: 45px;
    border-radius: var(--border-radius);
    margin-left: 16px;
    position: relative;
}

header.header-wrapper .actions-wrapper .toggle-menu-action .toggle-menu {
    line-height: 1;
}

header.header-wrapper .actions-wrapper .toggle-menu-action .icon {
    font-size: 18px;
    margin: 0;
}

.hidden {
    display: none !important;
}

#contentView {
    display: flex;
    flex: 1;
}

.content-wrapper {
    padding: 50px 0 0 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.content-wrapper.no-padding {
    padding: 0;
}

.empty {
    display: none;
}

.empty.show {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.empty.has-background {
    background: var(--background-blue-light);
    border-radius: var(--border-radius);
    padding: 15px;
}

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

.empty .illustration {
    width: 200px;
    margin-bottom: 25px;
}

.empty .title {
    font-size: 24px;
    color: var(--main-accent-color);
    margin-bottom: 10px;
}

.empty .action a {
    display: inline-flex;
    align-items: center;
    color: var(--main-text-color);
    gap: 8px;
}

.empty .action a:hover {
    color: var(--main-text-hover-color);
}

.has-sidebar {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.aside-modal-wrapper {
    position: fixed;
    width: 0;
    height: 100%;
    top: 0;
    right: -300px;
    z-index: 999999;
    visibility: hidden;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #fff;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.aside-modal-wrapper.show {
    width: 300px;
    right: 0;
    visibility: visible;
}

.aside-modal-wrapper .aside-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    position: relative;
}

.aside-modal-wrapper .aside-content .aside-header {
    padding: 15px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    background: #fff;
    min-height: 76px;
    z-index: 999991;
}

.aside-modal-wrapper .aside-content .aside-header .title {
    font-size: 18px;
    color: var(--title-color);
    font-weight: 600;
}

.aside-modal-wrapper .aside-content .aside-header .close {
    font-size: 24px;
    color: var(--main-accent-color);
    margin-left: auto;
    line-height: 0;
}

.aside-modal-wrapper .aside-content .aside-header .close:hover {
    transform: scale(1.2);
}

.aside-modal-wrapper .aside-content .aside-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.aside-modal-wrapper .aside-content .aside-body .empty {
    margin-top: auto;
}

.aside-modal-wrapper .aside-content .aside-body .empty .message {
    margin: 0;
}

.aside-modal-wrapper .aside-content .aside-body .comment {
    padding: 15px;
    border-radius: var(--border-radius);
    background: var(--main-border-color);
    color: var(--main-accent-text-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.aside-modal-wrapper .aside-content .aside-body .comment .comment-meta {
    display: flex;
    font-size: 12px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main-border-sidebar-color);
    color: var(--placeholder-color);
    flex-direction: column;
}

.aside-modal-wrapper .aside-content .aside-body .comment .comment-meta .separator:before {
    color: var(--placeholder-color)
}

.aside-modal-wrapper .aside-content .aside-body .comment .content {
    line-height: 1.2;
}

.aside-modal-wrapper .aside-content .aside-body .comment .downloads {
    margin-top: 15px;
}

.aside-modal-wrapper .aside-content .aside-body .comment .downloads .navigation {
    padding: 0;
    margin: 0;
}

.aside-modal-wrapper .aside-content .aside-body .comment .downloads .nav-item {
    margin-bottom: 5px;
}

.aside-modal-wrapper .aside-content .aside-body .comment .downloads .nav-link {
    display: inline-flex;
    align-items: center;
    color: var(--main-text-color);
    text-decoration: none;
}

.aside-modal-wrapper .aside-content .aside-body .comment .downloads .nav-link .icon {
    margin-right: 3px;
}

.aside-modal-wrapper .aside-content .aside-body .comment .downloads .nav-link:hover {
    color: var(--main-accent-color);
}

.aside-modal-wrapper .aside-content .aside-body .answer-form-wrapper {
    padding: 15px;
    margin: auto 0 0 0;
    border-radius: var(--border-radius);
    background: var(--secondary-bg-color);
    min-height: 76px;
    height: auto;
}

.aside-modal-wrapper .aside-content .aside-body .answer-form-wrapper .answer {
    border: transparent !important;
    font-size: 14px;
}

.aside-modal-wrapper .aside-content .aside-body .answer-form-wrapper .file-upload {
    background: var(--secondary-bg-hover-color);
    color: var(--secondary-text-color);
    opacity: 1;
}

.aside-modal-wrapper .aside-content .aside-body .answer-form-wrapper .file-upload:hover {
    opacity: 1;
    color: var(--secondary-text-hover-color);
}

.aside-modal-wrapper .aside-content .aside-body .switch-wrapper .description {
    margin-left: 0;
    margin-top: 15px;
}

.aside-modal-wrapper .aside-content .aside-body .information {
    margin-bottom: 15px;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
    padding: 15px;
}

.aside-modal-wrapper .aside-content .aside-body .information .placeholder {
    font-size: 14px;
    color: var(--main-accent-color);
    display: flex;
    align-items: center;
}

.aside-modal-wrapper .aside-content .aside-body .information .placeholder .icon {
    margin-right: 3px;
}

.aside-modal-wrapper .aside-content .aside-body .information .insight {
    font-size: 26px;
    font-weight: 700;
    color: var(--main-accent-color);
    display: flex;
    align-items: center;
}

.aside-modal-wrapper .aside-content .aside-body .information .insight.medium {
    font-size: 22px;
}

.aside-modal-wrapper .aside-content .aside-body .information .insight.dark-color {
    color: var(--color-dark-blue);
}

.aside-modal-wrapper .aside-content .aside-body .information .insight .icon {
    margin-right: 5px;
}

.aside-modal-wrapper .aside-content .aside-body .information .title {
    color: var(--title-color);
    font-size: 18px;
    display: flex;
    align-items: center;
}

.aside-modal-wrapper .aside-content .aside-body .information .title .icon {
    margin-right: 5px;
}

.aside-modal-wrapper .aside-content .aside-body .information .description {
    font-size: 16px;
    color: var(--main-text-color);
}

.aside-modal-wrapper .aside-content .aside-body .information ul {
    list-style: initial;
    padding: 0 30px;
    font-size: 16px;
    margin: 15px 0;
    color: var(--main-text-color);
}

.aside-modal-wrapper .aside-content .aside-body .information ul:last-child {
    margin-bottom: 0;
}

.card .aside-modal-wrapper {
    position: relative;
    right: 0;
    visibility: visible;
    width: 100%;
    z-index: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.card .aside-modal-wrapper .aside-content {
    height: 500px;
    min-height: 100%;
    max-height: 100%;
}

.card .aside-modal-wrapper .aside-content.height-auto {
    height: auto !important;
    min-height: auto !important;
    max-height: initial !important;
}

.details-section {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.details-section .placeholder {
    font-size: 14px;
    color: var(--main-accent-color);
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 4px;
    font-weight: 500;
    margin-top: 5px;
}

.details-section .title {
    font-size: 24px;
    color: var(--title-color);
}

.details-section .action-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.details-section .action-wrapper .navigation {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.details-section .action-wrapper .nav-items .button {
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-section .button {
    width: auto;
    min-height: var(--button-height);
    background: var(--button-cancel-bg-color);
    margin-left: auto;
}

.details-section .button:hover {
    width: auto;
    background: var(--button-cancel-bg-hover-color);
}

.details-section .filters {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -7px;
}

.details-section .filters:last-child {
    margin-right: 0;
}

.details-section .filters .filter {
    position: relative;
    padding: 0 7px;
}

.details-section .filters .filter .input-control,
.details-section .filters .filter .select2 {
    min-width: 240px !important;
}

.details-section .filters .filter .select2-container .select2-selection--single,
.sidebar .filters .filter .select2-container .select2-selection--single {
    min-height: 54px;
}

.details-section .filters .filter .select2-container .select2-selection,
.sidebar .filters .filter .select2-container .select2-selection {
    border: none;
}

.details-section .filters .filter .input-control {
    border: none;
}

.details-section .filters .filter:last-child {
    margin-right: 0;
}

section.auth-wrapper {
    margin: 100px 0;
}

section.auth-wrapper .container {
    width: 600px;
}

section.auth-wrapper .auth-box-wrapper {
    box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -o-box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%;
}

section.auth-wrapper .auth-box-wrapper .input-selection-wrapper {
    max-height: 266px;
    position: relative;
    height: 100%;
    overflow: auto;
    margin: 0 -16px;
    padding: 0 16px;
}

section.auth-wrapper .auth-box-wrapper .input-selection-wrapper.has-fader div:last-child {
    margin-bottom: 38px;
}

.fader {
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 75%);
    height: 38px;
    width: 100%;
    margin-top: -38px
}

section.auth-wrapper .header-wrapper {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

section.auth-wrapper .header-wrapper .logo {
    height: 40px;
    margin-bottom: -6px;
}

section.auth-wrapper .header-wrapper .details-wrapper {
    margin-left: auto;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--main-text-color);
}

section.auth-wrapper .wrapper {
    display: flex;
}

section.auth-wrapper .wrapper .content {
    padding: 25px;
    background: #fff;
    width: 100%;
    position: relative;
}

section.auth-wrapper .wrapper .content .title-wrapper {
    padding-top: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--main-border-color);
}

section.auth-wrapper .wrapper .content .title-wrapper h1 {
    font-size: 28px;
    line-height: 1.2;
}

section.auth-wrapper .wrapper .content .description {
    font-size: 20px;
    margin-bottom: 25px;
}

section.auth-wrapper .wrapper .content .input-wrapper {
    margin-bottom: 15px;
}

section.auth-wrapper .wrapper .content .submit-wrapper {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

section.auth-wrapper .wrapper .content .checkbox-wrapper .checkmark .check {
    border-radius: var(--border-radius);
    -webkit-box-sizing: initial;
    -moz-box-sizing: initial;
    box-sizing: initial;
}

section.auth-wrapper .wrapper .content .checkbox-wrapper .checkmark .label-text {
    font-size: 16px;
}

section.auth-wrapper .wrapper .content .password-box {
    padding: 15px;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

section.auth-wrapper .wrapper .content .password-box .input-wrapper:last-child {
    margin-bottom: 0;
}

section.auth-wrapper .wrapper .content .submit-wrapper .button-wrapper {
    margin-right: 25px;
}

section.auth-wrapper .wrapper .content .submit-wrapper .button-wrapper .button {
    padding: 7px 25px;
    font-size: 16px;
    font-weight: 600;
}

section.auth-wrapper .wrapper .content .submit-wrapper .additional-links {
    font-size: 14px;
    margin-left: auto;
}

section.auth-wrapper .wrapper .content .submit-wrapper .additional-links a {
    color: var(--main-text-color);
}

section.auth-wrapper .wrapper .content .submit-wrapper .additional-links a:hover {
    color: var(--main-accent-color);
    text-decoration: underline;
}

section.auth-wrapper .wrapper .sidebar {
    width: 300px;
    min-width: 300px;
    padding: 25px;
    background: var(--secondary-bg-color);
    display: flex;
    flex-direction: column;
}

section.auth-wrapper .wrapper .sidebar .item {
    font-size: 16px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 15px 0;
}

section.auth-wrapper .wrapper .sidebar .item .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.2;
    color: var(--secondary-text-hover-color);
}

section.auth-wrapper .wrapper .sidebar .item .item-description {
    margin-bottom: 25px;
    color: var(--secondary-text-color);
}

section.auth-wrapper .wrapper .sidebar .item .button {
    font-size: 16px;
    background: var(--button-apply-bg-color);
    font-weight: 600;
    border: none;
    color: #fff;
}

section.auth-wrapper .wrapper .sidebar .item .button:hover {
    background: var(--button-apply-bg-hover-color);
}

section.auth-wrapper .message-wrapper {
    text-align: center;
}

section.auth-wrapper .message-wrapper .icon-wrapper {
    display: inline-flex;
    padding: 15px;
    border-radius: 50%;
    background: var(--secondary-bg-color);
    margin-bottom: 25px;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;

}

section.auth-wrapper .message-wrapper .icon-wrapper .icon {
    font-size: 32px;
    line-height: 0;
}

section.auth-wrapper .message-wrapper .action {
    display: inline-flex;
    margin-top: 25px;
}

section.auth-wrapper .message-wrapper .action .button .icon {
    margin-right: 7px;
}

.modal .modal-wrapper .modal-content .modal-body.list-wrapper {
    max-height: 400px;
    overflow-x: scroll;
    padding: 0;
}

.table-wrapper {
    position: relative;
    max-width: 100%;
}

.table-wrapper .table {
    text-align: left;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
}

.table-wrapper .table tr td,
.table-wrapper .table tr th {
    padding: 15px 25px;
    text-align: left;
    border-bottom: 1px solid var(--main-border-color);
    border-top: 1px solid var(--main-border-color);
}

.table-wrapper .table tr:first-child td,
.table-wrapper .table tr:first-child th {
    border-top: none;
}

.table-wrapper .table tr:last-child td {
    border-bottom: none;
}

.table-wrapper .table tfoot tr:first-child td {
    border-top: 1px solid var(--main-border-color);
}

.table-wrapper .dataTables_wrapper .dataTables_length {
    padding: 0 25px 15px 0;
}

.table-wrapper .dataTables_wrapper .dataTables_filter {
    padding: 0 0 15px 25px;
}

.table-wrapper .dataTables_wrapper .dataTables_info {
    padding: 23px 25px 15px 0;
}

.table-wrapper .dataTables_wrapper .dataTables_paginate {
    padding: 15px 0 15px 25px;
}

.table .account-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table .account-name .avatar-wrapper {
    line-height: 1;
}

.table .account-name .avatar-wrapper .avatar {
    width: 28px;
    height: 28px;
    display: inline-block;
    border-radius: var(--border-radius);
}

.table .account-name .details .name {
    font-weight: 600;
    line-height: 1;
}

footer.footer-wrapper {
    margin-bottom: 25px;
    margin-top: auto;
    border-top: 1px solid var(--body-border-color);
}

footer.footer-wrapper .legal-details-wrapper {
    font-size: 15px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    color: var(--placeholder-color);
}

footer.footer-wrapper .legal-details-wrapper .links {
    margin-left: auto;
}

footer.footer-wrapper .legal-details-wrapper .links .menu {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 33px;
}

footer.footer-wrapper .legal-details-wrapper .links .menu .menu-item {
    margin-left: 30px;
    position: relative;
    align-items: center;
    display: flex;
}

footer.footer-wrapper .legal-details-wrapper .links .menu .menu-item:before {
    content: "/";
    font-size: 24px;
    font-weight: 400;
    position: absolute;
    left: -18px;
    color: var(--body-border-color);
}

footer.footer-wrapper .legal-details-wrapper .links .menu .menu-item:first-child:before {
    content: none;
}

footer.footer-wrapper .legal-details-wrapper .links .menu .menu-item .menu-link {
    color: var(--placeholder-color);
}

footer.footer-wrapper .legal-details-wrapper .links .menu .menu-item .menu-link:hover {
    color: var(--placeholder-hover-color);
}

.rating-wrapper {
    margin: 50px 0;
}

.rating-wrapper .rating-title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5px;
    color: var(--placeholder-color);
}

.rating-wrapper .rating-input {
    position: relative;
    text-align: center;
    direction: rtl;
    display: flex;
    justify-content: center;
}

.rating-wrapper .rating-input .radio {
    display: none;
}

.rating-wrapper .rating-input > label {
    padding: 0;
    margin: 0;
    position: relative;
    width: 32px;
    font-size: 24px;
    cursor: pointer;
    color: var(--placeholder-color);
}

.rating-wrapper .rating-input > label:hover,
.rating-wrapper .rating-input > label:hover ~ label,
.rating-wrapper .rating-input > input.radio:checked ~ label {
    color: transparent;
}

.rating-wrapper .rating-input > label:hover:before,
.rating-wrapper .rating-input > label:hover ~ label:before,
.rating-wrapper .rating-input > input.radio:checked ~ label:before,
.rating-wrapper .rating-input > input.radio:checked ~ label:before {
    content: "\e982";
    font-weight: 900;
    font-family: 'icons';
    position: absolute;
    left: 0;
    color: var(--color-yellow);
    width: 32px;
    line-height: 1.2;
}

.customers-overview {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    max-height: 250px;
}

.customers-overview .item {
    margin-bottom: 25px;
    padding: 25px;
    background: var(--main-bg-color);
    border-radius: var(--border-radius);
}

.customers-overview .item .navigation {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.customers-overview .item .title {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 500;
}

.customers-overview .item .detail {
    color: var(--placeholder-color);
    font-size: 14px;
}

.icon-linkedin-square.colored {
    color: #2867B2 !important;
}

.icon-facebook-square.colored {
    color: #4267B2 !important;
}

.icon-twitter-square.colored {
    color: #1DA1F2 !important;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.do-spin {
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}

.modal .modal-wrapper .modal-content.modal-attribute {
    max-width: 600px !important;
}

.modal .modal-wrapper .modal-content.modal-attribute #json-editor,
.modal .modal-wrapper .modal-content.modal-attribute #raw-editor {
    display: none;
}

.modal .modal-wrapper .modal-content.modal-attribute #json-editor.active,
.modal .modal-wrapper .modal-content.modal-attribute #raw-editor.active {
    display: flex;
    flex-direction: column;
}

.jse--output {
    margin: 18px 0 30px 0;
    position: relative;
    min-height: 100px;
    outline: 1px solid var(--main-border-color);
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.jse--output .jse--save,
.jse--output .jse--cancel {
    position: relative;
    z-index: 99;
}

.jse--output .jse--row {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    gap: 5px;
}

.jse--output .jse--row.jse--row-object {
    flex-wrap: wrap;
}

.jse--output .jse--row.jse--row-object .jse--delete {
    margin-left: auto;
}

.jse--output .jse--delete {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    margin-left: auto;
}

.jse--output .jse--row.jse--add {
    font-weight: bold;
    background: var(--background-blue-light);
    flex-wrap: wrap;
    padding: 5px;
}

.jse--output .jse--row.jse--add .jse--plus {
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 0 !important;
    width: 30px;
    height: 30px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jse--output .jse--typeof {
    font-size: 14px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    width: auto;
}

.jse--output input {
    background-color: #ffffff;
    margin: 0;
    max-width: 200px;
    width: 100%;
    line-height: 30px;
    height: 30px;
    padding: 0 15px;
    border: 1px solid var(--main-border-color);
}

.jse--output input[type=checkbox] {
    width: 25px;
    max-width: initial;
    height: 30px;
    flex: 1;
}

.jse--output .jse--value {
    font-style: italic;
}

.jse--output input.jse--key {
    font-weight: bold;
}

.jse--output input[type=checkbox].jse--value__new {
    margin: 0 5px;
}

.jse--output .jse--row-object > .jse--row,
.jse--output .jse--row--array > .jse--row {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid var(--main-border-color);
    order: 4;
    width: 100%;
    flex: 1 1 100%;
}

.jse--output .jse--save, .jse--output .jse--cancel {
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
    width: auto;
    font-weight: 400;
    background-color: var(--button-cancel-bg-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--button-main-text-color);
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -ms-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.jse--output .jse--save {
    background-color: var(--button-apply-bg-color);
}

.jse--output .jse--save:hover {
    background-color: var(--button-apply-bg-hover-color);
}

.jse--output .jse--cancel {
    background-color: var(--button-cancel-bg-color);
}

.jse--output .jse--cancel:hover {
    background-color: var(--button-cancel-bg-hover-color);
}

.chart-accounts-subscriptions {
    margin-top: -120px;
}

.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {
    background: var(--secondary-bg-hover-color) !important;
}

.apexcharts-tooltip {
    background: var(--secondary-bg-color) !important;
}

.chart-sparkline .apexcharts-svg {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.ms-container .ms-list {
    border: 1px solid var(--main-border-color);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.ms-container .ms-list.ms-focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border-color: var(--main-border-focus-color);
}

.ms-container .search-input {
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border: 1px solid var(--main-border-color);
    border-radius: var(--border-radius);
    color: var(--main-accent-text-color);
    height: auto;
    padding: 7px 7px;
    font-size: 16px;
    margin-bottom: 16px;
}

.ms-container .search-input:focus {
    border: 1px solid var(--main-border-focus-color);
}

.ms-container .ms-optgroup-label {
    padding: 10px;
    color: var(--title-color);
    font-size: 16px;
    font-weight: 500;
}

.ms-container .ms-selectable li.ms-elem-selectable, .ms-container .ms-selection li.ms-elem-selection {
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--main-border-color);
    padding: 10px;
}

.ms-container .ms-selectable li.ms-hover, .ms-container .ms-selection li.ms-hover {
    background: var(--color-blue);
}

.counted-input {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    box-sizing: border-box;
}

.char-counter {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.invoice-number-wrapper .label-control {
    width: 100%;
}

.invoice-number-wrapper .label-control a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.inputs-container-duplicate .input-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.inputs-container-duplicate .input-wrapper .button{
    height: 56px;
    width: 56px;
}

@media only screen and (min-width: 920px) {
    .hide-desktop {
        display: none !important;
    }
}

@media only screen and (max-width: 920px) {
    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: flex !important;
        flex-direction: column;
    }

    section.auth-wrapper {
        margin: 25px 0;
    }

    section.auth-wrapper .container {
        width: 100%;
        padding: 0 25px;
    }

    .swal2-popup {
        width: 100% !important;
        max-width: 32em;
    }

    .is-sticky {
        position: relative !important;
        z-index: 1;
    }

    .navigation-backdrop {
        inset: 0;
        overflow: hidden;
        position: fixed;
        width: 100%;
        background: transparent;
        transition: background-color .2s ease-in;
        z-index: -1;
        height: 100dvh;
        min-height: 100dvh;
    }

    .navigation-backdrop.show {
        background: hsla(0, 0%, 96%, .88);
        transition: background-color .3s ease-in;
        z-index: 100;
    }

    nav.navigation-wrapper {
        transform: translateX(-100%);
        transition: transform .3s ease-out;
        z-index: 101;
        position: fixed;
        overflow: hidden;
        min-width: 290px;
        max-width: 290px;
        height: 100% !important;
        min-height: 100dvh;
    }

    nav.navigation-wrapper.show {
        transform: translateX(0);
        transition: transform .3s ease-in;
        box-shadow: 0 0.1875rem 0.875rem rgba(0, 0, 0, .1);
    }

    header.header-wrapper {
        padding: 15px 25px;
    }

    header.header-wrapper .logo-wrapper {
        line-height: 1;
        display: flex;
        align-items: center;
    }

    header.header-wrapper .logo-wrapper .logo {
        height: 30px;
        width: 100px;
        background: url("../images/logo-dark.svg");
        background-size: cover;
        background-repeat: no-repeat;
        display: inline-block;
    }

    .columns .row [class*="col-"] {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .columns .row .column {
        flex: 1 1 100%;
    }

    .customers-overview {
        margin-top: 25px;
    }

    .card.full-height {
        height: auto;
    }

    .card:last-child {
        margin-bottom: 30px;
    }

    .empty.show {
        padding: 25px;
    }

    .details-section {
        flex-direction: column;
    }

    .details-section .action-wrapper {
        margin-left: 0;
        margin-top: 15px;
    }

    .container.has-sidebar {
        padding: 0 25px;
        flex-direction: initial;
        gap: 25px;
    }

    .has-sidebar .sidebar {
        height: auto;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin-top: 0;
        border-radius: var(--border-radius);
    }

    .has-sidebar section.content {
        width: 100%;
        margin-top: 0;
    }

    .has-sidebar .sidebar nav.navigation-wrapper {
        transform: translateX(0) !important;
        transition: transform .3s ease-in;
        box-shadow: none;
        position: relative;
        padding: 25px;
        z-index: 1;
        height: auto;
        min-height: auto;
    }

    .has-sidebar .sidebar nav.navigation-wrapper .navigation .nav-title {
        margin-top: 0;
    }

    .mobile-details-section {
        margin-bottom: 0;
        margin-top: 25px;
    }

    .mobile-details-section .title {
        text-align: center;
    }

    .mobile-details-section .placeholder {
        justify-content: center;
        text-align: center;
    }

    .mobile-details-section .placeholder .icon {
        display: none;
    }

    .card .form-wrapper {
        padding: 0;
    }

    table.dataTable .navigation {
        position: relative;
    }

    table.dataTable .navigation .dropdown-container .dropdown-wrapper {
        left: auto !important;
        min-width: 200px !important;
        right: 0;
        margin: 0;
    }

    .card .card-body .body-wrapper {
        padding: 15px;
    }

    .card .card-body .insights.insights-inline {
        flex-direction: column !important;
        align-items: initial;
        padding: 25px;
    }

    .card .card-body .insights .item {
        margin-bottom: 0;
    }

    .card .card-header.card-header-filters {
        flex-direction: column;
    }

    .card .card-header .filters {
        flex-wrap: wrap;
    }

    .card .card-header .filters .filter {
        flex: 1 0 100%;
    }

    .card .card-header form {
        width: 100%;
    }

    .card .card-header .form-right-align {
        margin-left: 0;
    }

    .card .card-header .filters .submit-wrapper {
        width: 100%;
    }

    .card .card-header .filters .submit-wrapper .button-wrapper {
        width: 100%;
    }

    .card .card-header .filters .submit-wrapper .button {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .container {
        padding-right: 25px;
        padding-left: 25px;
    }

    .modal.show .modal-wrapper {
        padding: 15px;
    }

    .modal .modal-wrapper .modal-content .modal-header {
        flex-direction: column;
    }

    .modal .modal-wrapper .modal-content .modal-header .title {
        align-self: normal;
    }

    .modal .modal-wrapper .modal-content .modal-header .close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .modal .modal-wrapper .modal-content {
        max-height: 100%;
        height: auto;
    }

    .modal .modal-wrapper .submit-wrapper {
        margin-top: 16px;
    }

    .modal .modal-wrapper .modal-content .modal-body .input-selection-wrapper {
        max-height: 200px;
    }

    .dropdown-container .dropdown-wrapper {
        left: 0 !important;
        top: auto !important;
        min-width: auto;
        width: calc(100% - 30px) !important;
        margin: 0 15px;
    }

    .dropdown-container {
        position: initial !important;
    }

    .tabs {
        overflow: auto;
        max-width: 100%;
    }

    .tabs .tab {
        width: 100%;
        min-width: fit-content;
    }

    footer.footer-wrapper .legal-details-wrapper {
        justify-content: center;
        text-align: center;
    }

    .dataTables_wrapper {
        overflow: auto;
        max-width: 100%;
    }

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

@media only screen and (min-width: 500px) and (max-width: 920px) {
}

@media only screen and (min-width: 921px) and (max-width: 1023px) {
}

@media only screen and (min-width: 921px) and (max-width: 1295px) {

}