@charset "UTF-8";

:root {
    --color-grey: #989898;
    --color-lightgrey: #FAFAFA;
    --color-blue: #4261EF;
    --color-lightblue: #F3F7FE;
    --color-black: #383838;
    --color-white: #ffffff;
    --color-bg-primary: #4261EF;
    --color-bg-secondary: #E8EEFD;
    --color-bg-dark: #383838;
    --font1: "HelveticaNeue", sans-serif;
    --font2: "Manrope", serif;
    --font3: "Rubik", serif;
    --border: 1px solid var(--color-grey);
    --access: #F3F7FE;
    --success: #EEF5E2;
    --denial: #FBF7F2
}

.air-datepicker-cell.-day-.-other-month-,
.air-datepicker-cell.-year-.-other-decade- {
    color: var(--adp-color-other-month)
}

.air-datepicker-cell.-day-.-other-month-:hover,
.air-datepicker-cell.-year-.-other-decade-:hover {
    color: var(--adp-color-other-month-hover)
}

.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade- {
    color: var(--adp-color-other-month)
}

.-selected-.air-datepicker-cell.-day-.-other-month-,
.-selected-.air-datepicker-cell.-year-.-other-decade- {
    color: #fff;
    background: var(--adp-background-color-selected-other-month)
}

.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade- {
    background: var(--adp-background-color-selected-other-month-focused)
}

.-in-range-.air-datepicker-cell.-day-.-other-month-,
.-in-range-.air-datepicker-cell.-year-.-other-decade- {
    background-color: var(--adp-background-color-in-range);
    color: var(--adp-color)
}

.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade- {
    background-color: var(--adp-background-color-in-range-focused)
}

.air-datepicker-cell.-day-.-other-month-:empty,
.air-datepicker-cell.-year-.-other-decade-:empty {
    background: 0 0;
    border: none
}

.air-datepicker-cell {
    border-radius: var(--adp-cell-border-radius);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1
}

.air-datepicker-cell.-focus- {
    background: var(--adp-cell-background-color-hover)
}

.air-datepicker-cell.-current- {
    color: var(--adp-color-current-date)
}

.air-datepicker-cell.-current-.-focus- {
    color: var(--adp-color)
}

.air-datepicker-cell.-current-.-in-range- {
    color: var(--adp-color-current-date)
}

.air-datepicker-cell.-disabled- {
    cursor: default;
    color: var(--adp-color-disabled)
}

.air-datepicker-cell.-disabled-.-focus- {
    color: var(--adp-color-disabled)
}

.air-datepicker-cell.-disabled-.-in-range- {
    color: var(--adp-color-disabled-in-range)
}

.air-datepicker-cell.-disabled-.-current-.-focus- {
    color: var(--adp-color-disabled)
}

.air-datepicker-cell.-in-range- {
    background: var(--adp-cell-background-color-in-range);
    border-radius: 0
}

.air-datepicker-cell.-in-range-.-focus-,
.air-datepicker-cell.-in-range-:hover {
    background: var(--adp-cell-background-color-in-range-hover)
}

.air-datepicker-cell.-range-from- {
    border: 1px solid var(--adp-cell-border-color-in-range);
    background-color: var(--adp-cell-background-color-in-range);
    border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius)
}

.air-datepicker-cell.-range-to- {
    border: 1px solid var(--adp-cell-border-color-in-range);
    background-color: var(--adp-cell-background-color-in-range);
    border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0
}

.air-datepicker-cell.-range-to-.-range-from- {
    border-radius: var(--adp-cell-border-radius)
}

.air-datepicker-cell.-selected- {
    color: #fff;
    border: none;
    background: var(--adp-cell-background-color-selected)
}

.air-datepicker-cell.-selected-.-current- {
    color: #fff;
    background: var(--adp-cell-background-color-selected)
}

.air-datepicker-cell.-selected-.-focus- {
    background: var(--adp-cell-background-color-selected-hover)
}

.air-datepicker-body {
    -webkit-transition: all var(--adp-transition-duration) var(--adp-transition-ease);
    -o-transition: all var(--adp-transition-duration) var(--adp-transition-ease);
    transition: all var(--adp-transition-duration) var(--adp-transition-ease)
}

.air-datepicker-body.-hidden- {
    display: none
}

.air-datepicker-body--day-names {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (var(--adp-day-cell-width))[7];
    grid-template-columns: repeat(7, var(--adp-day-cell-width));
    margin: 8px 0 3px
}

.air-datepicker-body--day-name {
    color: var(--adp-day-name-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: .8em
}

.air-datepicker-body--day-name.-clickable- {
    cursor: pointer
}

.air-datepicker-body--day-name.-clickable-:hover {
    color: var(--adp-day-name-color-hover)
}

.air-datepicker-body--cells {
    display: -ms-grid;
    display: grid
}

.air-datepicker-body--cells.-days- {
    -ms-grid-columns: (var(--adp-day-cell-width))[7];
    grid-template-columns: repeat(7, var(--adp-day-cell-width));
    grid-auto-rows: var(--adp-day-cell-height)
}

.air-datepicker-body--cells.-months- {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: var(--adp-month-cell-height)
}

.air-datepicker-body--cells.-years- {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: var(--adp-year-cell-height)
}

.air-datepicker-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--adp-border-color-inner);
    min-height: var(--adp-nav-height);
    padding: var(--adp-padding);
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.-only-timepicker- .air-datepicker-nav {
    display: none
}

.air-datepicker-nav--action,
.air-datepicker-nav--title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.air-datepicker-nav--action {
    width: var(--adp-nav-action-size);
    border-radius: var(--adp-border-radius);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.air-datepicker-nav--action:hover {
    background: var(--adp-background-color-hover)
}

.air-datepicker-nav--action:active {
    background: var(--adp-background-color-active)
}

.air-datepicker-nav--action.-disabled- {
    visibility: hidden
}

.air-datepicker-nav--action svg {
    width: 32px;
    height: 32px
}

.air-datepicker-nav--action path {
    fill: none;
    stroke: var(--adp-nav-arrow-color);
    stroke-width: 2px
}

.air-datepicker-nav--title {
    border-radius: var(--adp-border-radius);
    padding: 0 8px
}

.air-datepicker-nav--title i {
    font-style: normal;
    color: var(--adp-nav-color-secondary);
    margin-left: .3em
}

.air-datepicker-nav--title:hover {
    background: var(--adp-background-color-hover)
}

.air-datepicker-nav--title:active {
    background: var(--adp-background-color-active)
}

.air-datepicker-nav--title.-disabled- {
    cursor: default;
    background: 0 0
}

.air-datepicker-buttons {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column
}

.air-datepicker-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: var(--adp-btn-color);
    border-radius: var(--adp-btn-border-radius);
    cursor: pointer;
    height: var(--adp-btn-height);
    border: none;
    background: #ffffff
}

.air-datepicker-button:hover {
    color: var(--adp-btn-color-hover);
    background: var(--adp-btn-background-color-hover)
}

.air-datepicker-button:focus {
    color: var(--adp-btn-color-hover);
    background: var(--adp-btn-background-color-hover);
    outline: 0
}

.air-datepicker-button:active {
    background: var(--adp-btn-background-color-active)
}

.air-datepicker-button span {
    outline: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.air-datepicker-time {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content 1fr;
    -ms-grid-columns: max-content 1fr;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    grid-column-gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 0 var(--adp-time-padding-inner)
}

.-only-timepicker- .air-datepicker-time {
    border-top: none
}

.air-datepicker-time--current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 14px;
    text-align: center
}

.air-datepicker-time--current-colon {
    margin: 0 2px 3px;
    line-height: 1
}

.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
    line-height: 1;
    font-size: 19px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    position: relative;
    z-index: 1
}

.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after {
    content: "";
    background: var(--adp-background-color-hover);
    border-radius: var(--adp-border-radius);
    position: absolute;
    left: -2px;
    top: -3px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 0
}

.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after {
    opacity: 1
}

.air-datepicker-time--current-ampm {
    text-transform: uppercase;
    -ms-flex-item-align: end;
    align-self: flex-end;
    color: var(--adp-time-day-period-color);
    margin-left: 6px;
    font-size: 11px;
    margin-bottom: 1px
}

.air-datepicker-time--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    height: 17px;
    background: -webkit-gradient(linear, left top, right top, from(var(--adp-time-track-color)), to(var(--adp-time-track-color))) left 50%/100% var(--adp-time-track-height) no-repeat;
    background: -o-linear-gradient(left, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
    background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat
}

.air-datepicker-time--row:first-child {
    margin-bottom: 4px
}

.air-datepicker-time--row input[type=range] {
    background: 0 0;
    cursor: pointer;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    -webkit-appearance: none
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid var(--adp-time-track-color);
    background: #fff;
    cursor: pointer;
    -webkit-transition: background var(--adp-transition-duration);
    transition: background var(--adp-transition-duration);
    margin-top: calc(var(--adp-time-thumb-size)/ 2 * -1)
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
    display: none
}

.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
    border-color: var(--adp-time-track-color-hover)
}

.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
    border-color: var(--adp-time-track-color-hover)
}

.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
    border-color: var(--adp-time-track-color-hover)
}

.air-datepicker-time--row input[type=range]:focus {
    outline: 0
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
    background: var(--adp-cell-background-color-selected);
    border-color: var(--adp-cell-background-color-selected)
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
    background: var(--adp-cell-background-color-selected);
    border-color: var(--adp-cell-background-color-selected)
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
    background: var(--adp-cell-background-color-selected);
    border-color: var(--adp-cell-background-color-selected)
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid var(--adp-time-track-color);
    background: #fff;
    cursor: pointer;
    -moz-transition: background var(--adp-transition-duration);
    transition: background var(--adp-transition-duration)
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid var(--adp-time-track-color);
    background: #fff;
    cursor: pointer;
    -ms-transition: background var(--adp-transition-duration);
    transition: background var(--adp-transition-duration)
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
    border: none;
    height: var(--adp-time-track-height);
    cursor: pointer;
    color: #000000;
    background: #000000
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
    border: none;
    height: var(--adp-time-track-height);
    cursor: pointer;
    color: #000000;
    background: #000000
}

.air-datepicker-time--row input[type=range]::-ms-track {
    border: none;
    height: var(--adp-time-track-height);
    cursor: pointer;
    color: #000000;
    background: #000000
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower {
    background: #000000
}

.air-datepicker-time--row input[type=range]::-ms-fill-upper {
    background: #000000
}

.air-datepicker {
    --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --adp-font-size: 14px;
    --adp-width: 246px;
    --adp-z-index: 100;
    --adp-padding: 4px;
    --adp-grid-areas: "nav" "body" "timepicker" "buttons";
    --adp-transition-duration: .3s;
    --adp-transition-ease: ease-out;
    --adp-transition-offset: 8px;
    --adp-background-color: #fff;
    --adp-background-color-hover: #f0f0f0;
    --adp-background-color-active: #eaeaea;
    --adp-background-color-in-range: rgba(92, 196, 239, .1);
    --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
    --adp-background-color-selected-other-month-focused: #8ad5f4;
    --adp-background-color-selected-other-month: #a2ddf6;
    --adp-color: #4a4a4a;
    --adp-color-secondary: #9c9c9c;
    --adp-accent-color: #4eb5e6;
    --adp-color-current-date: var(--adp-accent-color);
    --adp-color-other-month: #dedede;
    --adp-color-disabled: #aeaeae;
    --adp-color-disabled-in-range: #939393;
    --adp-color-other-month-hover: #c5c5c5;
    --adp-border-color: #dbdbdb;
    --adp-border-color-inner: #efefef;
    --adp-border-radius: 4px;
    --adp-border-color-inline: #d7d7d7;
    --adp-nav-height: 32px;
    --adp-nav-arrow-color: var(--adp-color-secondary);
    --adp-nav-action-size: 32px;
    --adp-nav-color-secondary: var(--adp-color-secondary);
    --adp-day-name-color: #ff9a19;
    --adp-day-name-color-hover: #8ad5f4;
    --adp-day-cell-width: 1fr;
    --adp-day-cell-height: 32px;
    --adp-month-cell-height: 42px;
    --adp-year-cell-height: 56px;
    --adp-pointer-size: 10px;
    --adp-poiner-border-radius: 2px;
    --adp-pointer-offset: 14px;
    --adp-cell-border-radius: 4px;
    --adp-cell-background-color-hover: var(--adp-background-color-hover);
    --adp-cell-background-color-selected: #5cc4ef;
    --adp-cell-background-color-selected-hover: #45bced;
    --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
    --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
    --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
    --adp-btn-height: 32px;
    --adp-btn-color: var(--adp-accent-color);
    --adp-btn-color-hover: var(--adp-color);
    --adp-btn-border-radius: var(--adp-border-radius);
    --adp-btn-background-color-hover: var(--adp-background-color-hover);
    --adp-btn-background-color-active: var(--adp-background-color-active);
    --adp-time-track-height: 1px;
    --adp-time-track-color: #dedede;
    --adp-time-track-color-hover: #b1b1b1;
    --adp-time-thumb-size: 12px;
    --adp-time-padding-inner: 10px;
    --adp-time-day-period-color: var(--adp-color-secondary);
    --adp-mobile-font-size: 16px;
    --adp-mobile-nav-height: 40px;
    --adp-mobile-width: 320px;
    --adp-mobile-day-cell-height: 38px;
    --adp-mobile-month-cell-height: 48px;
    --adp-mobile-year-cell-height: 64px;
    background: var(--adp-background-color);
    border: 1px solid var(--adp-border-color);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border-radius: var(--adp-border-radius);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (-webkit-max-content)[4];
    -ms-grid-rows: (max-content)[4];
    grid-template-rows: repeat(4, -webkit-max-content);
    grid-template-rows: repeat(4, max-content);
    grid-template-areas: var(--adp-grid-areas);
    font-family: var(--adp-font-family), sans-serif;
    font-size: var(--adp-font-size);
    color: var(--adp-color);
    width: var(--adp-width);
    position: absolute;
    -webkit-transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), -webkit-transform var(--adp-transition-duration) var(--adp-transition-ease);
    transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), -webkit-transform var(--adp-transition-duration) var(--adp-transition-ease);
    -o-transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
    transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
    transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease), -webkit-transform var(--adp-transition-duration) var(--adp-transition-ease);
    z-index: var(--adp-z-index)
}

.air-datepicker:not(.-custom-position-) {
    opacity: 0
}

.air-datepicker.-from-top- {
    -webkit-transform: translateY(calc(var(--adp-transition-offset) * -1));
    -ms-transform: translateY(calc(var(--adp-transition-offset) * -1));
    transform: translateY(calc(var(--adp-transition-offset) * -1))
}

.air-datepicker.-from-right- {
    -webkit-transform: translateX(var(--adp-transition-offset));
    -ms-transform: translateX(var(--adp-transition-offset));
    transform: translateX(var(--adp-transition-offset))
}

.air-datepicker.-from-bottom- {
    -webkit-transform: translateY(var(--adp-transition-offset));
    -ms-transform: translateY(var(--adp-transition-offset));
    transform: translateY(var(--adp-transition-offset))
}

.air-datepicker.-from-left- {
    -webkit-transform: translateX(calc(var(--adp-transition-offset) * -1));
    -ms-transform: translateX(calc(var(--adp-transition-offset) * -1));
    transform: translateX(calc(var(--adp-transition-offset) * -1))
}

.air-datepicker.-active-:not(.-custom-position-) {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1
}

.air-datepicker.-active-.-custom-position- {
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

.air-datepicker.-inline- {
    border-color: var(--adp-border-color-inline);
    -webkit-box-shadow: none;
    box-shadow: none;
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.air-datepicker.-inline- .air-datepicker--pointer {
    display: none
}

.air-datepicker.-is-mobile- {
    --adp-font-size: var(--adp-mobile-font-size);
    --adp-day-cell-height: var(--adp-mobile-day-cell-height);
    --adp-month-cell-height: var(--adp-mobile-month-cell-height);
    --adp-year-cell-height: var(--adp-mobile-year-cell-height);
    --adp-nav-height: var(--adp-mobile-nav-height);
    --adp-nav-action-size: var(--adp-mobile-nav-height);
    position: fixed;
    width: var(--adp-mobile-width);
    border: none
}

.air-datepicker.-is-mobile- * {
    -webkit-tap-highlight-color: #000000
}

.air-datepicker.-is-mobile- .air-datepicker--pointer {
    display: none
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
    -webkit-transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
    -ms-transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
    transform: translate(-50%, calc(-50% + var(--adp-transition-offset)))
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.air-datepicker.-custom-position- {
    -webkit-transition: none;
    -o-transition: none;
    transition: none
}

.air-datepicker-global-container {
    position: absolute;
    left: 0;
    top: 0
}

.air-datepicker--pointer {
    --pointer-half-size: calc(var(--adp-pointer-size) / 2);
    position: absolute;
    width: var(--adp-pointer-size);
    height: var(--adp-pointer-size);
    z-index: -1
}

.air-datepicker--pointer:after {
    content: "";
    position: absolute;
    background: #fff;
    border-top: 1px solid var(--adp-border-color-inline);
    border-right: 1px solid var(--adp-border-color-inline);
    border-top-right-radius: var(--adp-poiner-border-radius);
    width: var(--adp-pointer-size);
    height: var(--adp-pointer-size);
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.-top-center- .air-datepicker--pointer,
.-top-left- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^=top] .air-datepicker--pointer {
    top: calc(100% - var(--pointer-half-size) + 1px)
}

.-top-center- .air-datepicker--pointer:after,
.-top-left- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^=top] .air-datepicker--pointer:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.-right-bottom- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer,
[data-popper-placement^=right] .air-datepicker--pointer {
    right: calc(100% - var(--pointer-half-size) + 1px)
}

.-right-bottom- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-top- .air-datepicker--pointer:after,
[data-popper-placement^=right] .air-datepicker--pointer:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.-bottom-center- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^=bottom] .air-datepicker--pointer {
    bottom: calc(100% - var(--pointer-half-size) + 1px)
}

.-bottom-center- .air-datepicker--pointer:after,
.-bottom-left- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^=bottom] .air-datepicker--pointer:after {
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg)
}

.-left-bottom- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-top- .air-datepicker--pointer,
[data-popper-placement^=left] .air-datepicker--pointer {
    left: calc(100% - var(--pointer-half-size) + 1px)
}

.-left-bottom- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-top- .air-datepicker--pointer:after,
[data-popper-placement^=left] .air-datepicker--pointer:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.-bottom-left- .air-datepicker--pointer,
.-top-left- .air-datepicker--pointer {
    left: var(--adp-pointer-offset)
}

.-bottom-right- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer {
    right: var(--adp-pointer-offset)
}

.-bottom-center- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer {
    left: calc(50% - var(--adp-pointer-size)/ 2)
}

.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer {
    top: var(--adp-pointer-offset)
}

.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer {
    bottom: var(--adp-pointer-offset)
}

.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer {
    top: calc(50% - var(--adp-pointer-size)/ 2)
}

.air-datepicker--navigation {
    grid-area: nav
}

.air-datepicker--content {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: var(--adp-padding);
    grid-area: body
}

.-only-timepicker- .air-datepicker--content {
    display: none
}

.air-datepicker--time {
    grid-area: timepicker
}

.air-datepicker--buttons {
    grid-area: buttons
}

.air-datepicker--buttons,
.air-datepicker--time {
    padding: var(--adp-padding);
    border-top: 1px solid var(--adp-border-color-inner)
}

.air-datepicker-overlay {
    --adp-overlay-background-color: rgba(0, 0, 0, .3);
    --adp-overlay-transition-duration: .3s;
    --adp-overlay-transition-ease: ease-out;
    --adp-overlay-z-index: 99;
    position: fixed;
    background: var(--adp-overlay-background-color);
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0;
    -webkit-transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
    -o-transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
    transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
    -webkit-transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
    -o-transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
    transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
    z-index: var(--adp-overlay-z-index)
}

.air-datepicker-overlay.-active- {
    opacity: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
    -o-transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
    transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s
}

@font-face {
    font-family: HelveticaNeue;
    src: url(../fonts/HelveticaNeueRoman.woff2) format("woff2"), url(../fonts/HelveticaNeueRoman.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: fontello;
    src: url(../fonts/fontello.woff2?90065180) format("woff2"), url(../fonts/fontello.woff?90065180) format("woff");
    font-weight: 400;
    font-style: normal
}

[class*=" icon-"]:before,
[class^=icon-]:before {
    font-family: fontello;
    font-style: normal;
    font-weight: 400;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-cog:before {
    content: "\e800"
}

.icon-calendar:before {
    content: "\e801"
}

.icon-left-open-big:before {
    content: "\e802"
}

.icon-down-open-big:before {
    content: "\e803"
}

.icon-right-open-big:before {
    content: "\e804"
}

.icon-plus:before {
    content: "\e805"
}

.icon-logout-my:before {
    content: "\e80f"
}

.icon-close-f:before {
    content: "\e818"
}

.icon-globe:before {
    content: "\e81f"
}

.icon-right:before {
    content: "\e820"
}

.icon-hash:before {
    content: "\e821"
}

.icon-copy:before {
    content: "\e822"
}

.icon-file-csv:before {
    content: "\e824"
}

.icon-euro:before {
    content: "\e825"
}

.icon-check:before {
    content: "\e826"
}

.icon-attach:before {
    content: "\e827"
}

.icon-telegram:before {
    content: "\e828"
}

.icon-euro-1:before {
    content: "\f153"
}

.icon-dollar:before {
    content: "\f155"
}

.icon-right-small:before {
    content: "󨀠"
}

* {
    position: relative;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    color: var(--color-black);
    font-family: var(--font1);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2
}

body.overflow {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

img {
    display: inline-block;
    max-width: 100%;
    border: none;
    outline: 0
}

.link {
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.link:hover {
    opacity: .8
}

.link--blue {
    color: var(--color-blue)
}

.link--underline:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-blue);
    content: ""
}

.container {
    max-width: 1440px;
    padding: 0 140px;
    margin: 0 auto
}

.text-align-right {
    text-align: right
}

.chip {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    font-family: var(--font3);
    font-size: 14px;
    border-radius: 20px
}

.chip--dark {
    background-color: var(--color-black);
    color: var(--color-white)
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.tabs-value {
    display: none
}

.tabs-value.active {
    display: block
}

.label-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 4px
}

.label-item {
    padding: 4px 6px;
    font-size: 9px;
    color: var(--color-white);
    border-radius: 2px
}

.label--lightblue {
    background-color: #a6ccdf
}

.label--green {
    background-color: #73a76a
}

.label--yellow {
    background-color: #e5e78b
}

.label--lightbrown {
    background-color: #c2b9a2
}

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

.labels p {
    margin-right: 20px
}

.labels .label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    padding: 0;
    border-radius: 2px;
    cursor: pointer
}

.pagination {
    display: inline-flex;
    align-items: center
}

.pagination ul {
    display: inline-flex;
    align-items: center;
    margin: 0 20px
}

.main-ui-pagination-pages-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination ul li {
    margin: 0 5px;
    padding: 0 5px
}

.main-ui-pagination-arrow.main-ui-pagination-next {
    margin-left: 15px;
}

.main-ui-pagination-arrow.main-ui-pagination-prev {
    margin-right: 15px;
}

.main-ui-pagination-page {
    padding: 0 5px
}

.pagination ul li.pagination__current-page::after,
.main-ui-pagination-active::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-blue);
    content: "";
    width: 100%;
}

.tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.tab__top {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 50px 0 30px;
    background-color: var(--color-white);
    border-radius: 20px 20px 0 0
}

.tab__top .icon {
    margin-right: 20px
}

.tab__top .icon.icon_taboola {
    margin-right: 0;
    margin-left: -10px;
}

.tab__top .title {
    font-family: var(--font3)
}

.tab__top i {
    position: absolute;
    bottom: 0;
    right: 0
}

.tab__top i:after,
.tab__top i:before {
    position: absolute;
    bottom: 0;
    content: ""
}

.tab__top i:before {
    width: 25px;
    height: 25px;
    background-color: var(--color-white)
}

.tab__top i:after {
    width: 50px;
    height: 50px;
    background-color: var(--color-lightblue);
    border-radius: 50%
}

.tab__content {
    padding: 25px 20px;
    background-color: var(--color-white);
    border-radius: 0 20px 20px
}

.tab__content ul {
    padding-left: 30px
}

.tab__content ul li {
    margin-bottom: 1em
}

.tab__content ul li:last-child {
    margin-bottom: 0
}

.alert {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 23px 37px;
    line-height: 1;
    border-radius: 20px;
    font-family: var(--font2)
}

.alert--green {
    background-color: #81ac7a;
    color: var(--color-white)
}

.alert--md {
    padding: 10px 32px;
    font-size: 12px
}

input,
select,
textarea {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: var(--color-white);
    font-family: var(--font3);
    font-size: 14px;
    font-weight: 400;
    border: var(--border);
    border-radius: 5px;
    outline: 0
}

input[type=checkbox],
input[type=file],
input[type=radio],
select[type=checkbox],
select[type=file],
select[type=radio],
textarea[type=checkbox],
textarea[type=file],
textarea[type=radio] {
    display: none
}

textarea {
    height: 132px;
    padding: 15px;
    resize: none
}

.form__group {
    margin-bottom: 10px
}

.form__group:last-child {
    margin-bottom: 0
}

.flex .form__group {
    margin-bottom: 0
}

.form__select-current.open .icon {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg)
}

.form__select-current.open input {
    border-bottom: none;
    border-radius: 5px 5px 0 0
}

.form__select-current input {
    padding-left: 10px;
    padding-right: 10px;
    border: none
}

.form__select-current input:hover {
    cursor: pointer
}

.form__select-current {
    position: relative;
    border: var(--border);
    border-radius: 5px;
    overflow: hidden
}

.form__select-current::after {
    content: '';
    width: 50px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #ffffff;
    background: linear-gradient(-90deg, #ffffff 0%, #ffffff 70%, #ffffff 100%);
    z-index: 1;
}

.form__select-current.open {
    border-bottom: none;
    border-radius: 5px 5px 0 0
}

.form__select-current .icon {
    z-index: 2;
}

.block-nowrap {
    white-space: nowrap
}

.form__select-current .icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform .1s linear;
    transition: transform .1s linear;
    -o-transition: transform .1s linear;
    transition: transform .1s linear, -webkit-transform .1s linear;
    pointer-events: none
}

.form__select-current .icon-down-open-big {
    right: 12px
}

.form__select-list {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: var(--color-white);
    border: var(--border);
    border-top: none;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    max-height: 350px;
    overflow-y: auto;
}

.form__select-item {
    padding: 0 10px;
    line-height: 40px;
    -webkit-transition: background .3s ease-in-out;
    -o-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
    cursor: pointer
}

.form__select-item:hover {
    background-color: var(--color-lightgrey)
}

.form__input .icon {
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--color-grey);
    z-index: 1
}

.form__input .form-input {
    padding-left: 30px
}

.form__checkbox input:checked+label,
.form__radio input:checked+label {
    color: var(--color-black)
}

.form__checkbox input:checked+label .icon,
.form__radio input:checked+label .icon {
    font-size: 8px;
    border-color: var(--color-black);
    color: var(--color-white);
    background: var(--color-black);
}

.form__checkbox input+label .icon.icon-check:before,
.form__radio input+label .icon.icon-check:before {
    display: none;
}

.form__checkbox input:checked+label .icon.icon-check:before,
.form__radio input:checked+label .icon.icon-check:before {
    font-weight: bold;
    display: block;
}

.form__checkbox label,
.form__radio label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 30px;
    color: var(--color-grey);
    font-size: 12px;
    cursor: pointer
}

.form__checkbox label .icon,
.form__radio label .icon {
    position: absolute;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #c2c2c2;
    border-radius: 50%;
    font-size: 0;
    color: var(--color-grey)
}

.form__checkbox label .link,
.form__radio label .link {
    margin: 0 4px
}

.form__checkbox label {
    color: var(--color-black)
}

.form__checkbox label .icon {
    font-size: 8px
}

.form__checkbox label {
    gap: 0 3px;
}

.form__checkbox_policy a {
    color: var(--color-blue);
}

.form__file label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: var(--color-white);
    font-family: var(--font3);
    font-size: 14px;
    font-weight: 400;
    border: var(--border);
    border-radius: 5px
}

.form__file label:after {
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: fontello;
    font-size: 16px;
    color: var(--color-grey);
    content: "\e827"
}

.form__file label .filename {
    display: none
}

.form__block {
    margin-bottom: 30px
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.form__block:last-child {
    margin-bottom: 0 !important
}

.form__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.form__bottom p {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px
}

.form__bottom p .icon {
    display: block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    background-color: var(--color-blue);
    border-radius: 50%
}

.form-label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px
}

.form-label.form-label_noindent {
    margin-bottom: 0
}

#full_refund {
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: block;
}

.form__group_full-refund {
    display: flex;
    gap: 10px;
    align-items: center
}

.flex .form__group.form__group_full-refund {
    margin-bottom: 15px
}

.form__group_full-refund .form-label {
    margin-bottom: 0
}

.service__text p {
    line-height: 1.3
}

.form__group_comission {
    margin-top: 10px
}

.service__balance-block_withdraw {
    min-width: 330px
}

.form-label .icon {
    position: absolute;
    right: 4px;
    bottom: 0;
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-blue);
    border-radius: 50%
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.flex.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

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

.flex.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end
}

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

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

.flex.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%
}

.row--md {
    gap: 10px
}

.row-centered {
    justify-content: center
}

.row.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.readonly {
    user-select: none;
}

html[lang=ru] .form__group_long-placeholder input::placeholder{
    font-size: 14px;
    white-space: pre-wrap;
    transform: translate(0, -9px);
}

.card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 230px;
    height: 100px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 10px;
    border: 1px solid transparent
}

.card.hover {
    cursor: pointer
}

.card.active,
.card.hover:hover {
    border-color: var(--color-grey)
}

.card__icon,
.card__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 50%
}

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

.card__logo span {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    background-color: var(--color-lightgrey);
    font-family: var(--font2);
    font-weight: 500;
    font-size: 14px;
    border-radius: 12px
}

.card__icon {
    overflow: hidden;
    padding: 0;
    border: var(--border)
}

.card__icon img {
    object-fit: cover
}

.card__title {
    font-family: var(--font3);
    font-weight: 500
}

.card__text {
    font-family: var(--font3);
    font-size: 12px;
    color: var(--color-grey)
}

.heading {
    font-family: var(--font3)
}

.heading-1 {
    font-size: 21px
}

.page__header {
    margin-bottom: 20px;
    line-height: 48px
}

.page__header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.page__header .menu__item {
    display: inline-block;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 30px;
    line-height: 1.3
}

.unread-menu-mobile {
    position: absolute;
    top: -17px;
    right: -8px;
}

.page__header .menu__item:last-child {
    margin-right: 0 !important
}

.page__header .menu__link {
    top: 0;
    font-family: var(--font3);
    color: var(--color-grey);
    line-height: 1.3;
}

.page__header .menu__link.active {
    top: 0;
    font-size: 21px;
    color: var(--color-blue)
}

.page__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.page__top .icon {
    margin-right: 20px
}

.page__filter {
    margin-bottom: 20px
}

.page__filter .btn-filter {
    position: absolute;
    top: -40px;
    right: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page__filter .btn-filter .icon {
    margin-left: 18px;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}

.page__filter .btn-filter.open .icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.page__filter .form {
    display: none;
    padding: 15px 15px 20px;
    background-color: var(--color-white);
    border-radius: 20px
}

.page__filter .form.show {
    display: block
}

.page__filter .form-label {
    margin-bottom: 0;
    font-size: 14px
}

.page__filter .form-input--date {
    width: 120px;
    padding-left: 10px
}

.page__filter .form__group {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 0
}

.page__filter .form__button {
    margin-top: 10px
}

.page__filter .form .flex {
    gap: 8px 15px
}

.page__filter .form .flex.md {
    gap: 10px
}

.page__filter .form .input-wrap .icon {
    position: absolute;
    right: 7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: var(--font3);
    pointer-events: none
}

.page__table .table-wrapper {
    margin: 0 -50px 20px;
    border-radius: 10px;
    overflow-x: auto;
    -webkit-box-shadow: 0 0 24px 0 rgba(66, 97, 239, .2);
    box-shadow: 0 0 24px 0 rgba(66, 97, 239, .2);
    background-color: var(--color-white)
}

.page__table .table {
    min-width: 900px;
    border-radius: 10px
}

.page__table .table .thead {
    padding: 0 40px 0 0;
    background-color: #383838;
    color: var(--color-white);
    border-radius: 10px 10px 0 0
}

.page__table .table .thead .tr__inner {
    height: 45px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.page__table .table .thead .td {
    font-size: 10px
}

.page__table .table .thead .td.td_checkbox {
    width: 40px
}

.page__table .table .thead .td:nth-child(2) {
    width: 20%
}

.page__table .table .tbody {
    padding: 0 40px
}

.page__table .table .tbody .tr {
    padding-top: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-lightgrey)
}

.page__table .table .tbody .tr:last-child {
    border-bottom: none
}

.page__table .table .tbody .td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.page__table .table .tbody .td:first-child {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.page__table .table .tbody .td .icon {
    font-size: 10px
}

.page__table .table .tbody .td .icon--active {
    color: var(--color-blue)
}

.page__table .table .tbody .td .icon--unactive {
    color: var(--color-grey)
}

.page__table .table .tbody .td .icon-check {
    position: absolute;
    left: -30px;
    top: -7px
}

.page__table .table .tbody .td ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.page__table.support__table .tbody .tr .td:last-child li {
    display: flex;
    gap: 3px;
    align-items: center
}

.page__table .table .tbody .td ul li {
    margin-right: 14px;
    white-space: nowrap
}

.page__table .table .tbody .td ul li:last-child {
    margin-right: 0
}

.page__table .table .tbody .td ul li .icon-right {
    margin-right: 4px;
    color: var(--color-blue);
    font-size: 10px;
    display: flex;
    gap: 3px
}

.service__table .form-reclaim-show.icon-right::before,
.service__table .icon-right::before {
    content: url('/images/status-icons/appeal-application.svg');
}

.form-reclaim-show.icon-right.status-rejected::before {
    content: url('/images/status-icons/appeal-rejected.svg');
    margin-top: -1px;
}

.form-reclaim-show.icon-right.status-approved::before {
    content: url('/images/status-icons/appeal-approved.svg');
    margin-top: 1px;
}

.form-reclaim-show.icon-right.status-in-progress::before {
    --size: 9px;
    content: "";
    display: block;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    background: #F9BB0A;
}

.page__table .table .tr {
    padding: 0 12px
}

.page__table .table .tr__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px
}

.page__table .table .tr__bottom {
    margin-top: 12px
}

.page__table .table .td {
    width: 10%;
    font-size: 12px;
    text-align: center
}

.page__table .table .td-2 {
    width: 20%
}

.page__table .table .td-3 {
    width: 30%
}

.page__inner {
    padding: 24px 34px 55px;
    background-color: var(--color-lightblue);
    border-radius: 20px
}

.page-access .page__inner {
    background-color: var(--access)
}

.page-success .page__inner {
    background-color: var(--success)
}

.page-denial .page__inner {
    background-color: var(--denial)
}

.page-support .page__inner {
    padding-bottom: 32px
}

.page__bottom {
    margin-top: 18px;
    padding: 30px 34px 40px;
    background-color: var(--color-lightblue);
    border-radius: 20px
}

.page__bottom.hide {
    display: none
}

.page__message {
    text-align: center
}

.page__message .heading {
    margin-bottom: 10px
}

.page__message .text {
    max-width: 580px;
    margin: 0 auto 20px;
    font-size: 12px;
    font-family: var(--font2)
}

.page__message .btn {
    min-width: 142px
}

.page__image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 866px;
    width: 80%;
    border-radius: 20px;
    overflow: hidden
}

.page__image .image {
    height: 100%
}

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

.page__image p {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.page__image p img {
    width: 148px;
    height: 93px
}

img[src=""] {
    display: none
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding: 0 15px;
    min-width: 135px;
    height: 45px;
    background-color: transparent;
    font-family: var(--font3);
    font-size: 14px;
    border: 1px solid transparent;
    outline: 0;
    border-radius: 23px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer
}

.btn .icon {
    margin-right: 19px
}

.btn .icon--image {
    width: 18px;
    margin-right: 10px
}

.btn .icon--image img {
    display: block
}

.btn-md {
    height: 40px
}

.btn-sm {
    width: 110px
}

.btn-primary {
    background-color: var(--color-bg-primary);
    border-color: var(--color-bg-primary);
    color: var(--color-white)
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-blue)
}

.btn-primary.disabled,
.btn-secondary {
    background-color: var(--color-bg-secondary);
    border-color: var(--color-bg-secondary);
    color: var(--color-blue)
}

.btn-secondary:hover {
    border-color: var(--color-bg-primary);
    background-color: transparent
}

.btn-dark {
    background-color: var(--color-bg-dark);
    border-color: var(--color-bg-dark);
    color: var(--color-white)
}

.btn-dark:hover {
    border-color: var(--color-bg-dark);
    background-color: transparent;
    color: var(--color-black)
}

.btn-border {
    border-color: var(--color-bg-primary);
    color: var(--color-blue)
}

.btn-border:hover {
    background-color: var(--color-bg-primary);
    color: var(--color-white)
}

.btn-link {
    width: auto;
    height: auto;
    padding: 0;
    color: var(--color-blue)
}

.accordion-list .accordion-item {
    margin-bottom: 10px
}

.accordion-list .accordion-item:last-child {
    margin-bottom: 0
}

.accordion-item {
    background-color: var(--color-white);
    border-radius: 10px
}

.accordion-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 48px;
    padding-left: 15px;
    padding-right: 20px;
    font-family: var(--font3);
    cursor: pointer
}

.accordion-title .icon {
    color: var(--color-grey);
    -webkit-transition: -webkit-transform .3s linear;
    transition: transform .3s linear;
    -o-transition: transform .3s linear;
    transition: transform .3s linear, -webkit-transform .3s linear
}

.accordion-title.open .icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.accordion-content {
    display: none;
    padding: 0 15px 20px;
    font-size: 12px;
    color: var(--color-grey)
}

.accordion-content strong {
    font-family: -apple-system, BlinkMacSystemFont, var(--font1);
    font-weight: bold; 
}

.open .accordion-content {
    display: block
}

.accordion-content p {
    max-width: 845px
}

.accordion-content p a {
    text-decoration: underline
}

.accordion-content ul li a {
    color: #5361f0;
}
.accordion-content ol li a {
    color: #5361f0;
}

.accordion-content ol {
    margin-left: 13px;
    margin-top: 5px;
}

.accordion-content ol {
    list-style-type: none;
    padding-left: 0;
}

.accordion-content .ads_circle {
    list-style-type: circle;
    padding-left: 30px;
}

.btn.btn-primary.btn-accept-invite.invite-yes {
    gap: 16px;
}

.support-list-block {
    display: table;
    padding-top: 10px;
    margin-bottom: 20px;
}

#altasib-support-main-table {
    margin-bottom: 20px;
}

#ticket_add {
    margin-bottom: 30px;
}

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

.status:before {
    flex: none;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    content: ""
}

.status--active:before {
    background-color: #81AC7A
}

/* Последний ответ от клиента */
.status--unactive:before {
    background-color: #D8D8D8
}

/* Закрыто */
.status--archive:before {
    background-color: #F1EA51
}

.status--cancelled:before {
    background-color: #ff7b93
}

.status--close:before {
    background-color: #D8D8D8
}

.status--red:before {
    background-color: #DE3B3BB2
}

/* Последний ответ от техподдержки */
.status--brown:before {
    background-color: #F1EA51
}

/* Временно отложено */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(244, 244, 244, .25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10
}

.overlay.overlay_no-touch {
    pointer-events: none
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    max-width: 515px;
    width: 90%;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    pointer-events: auto;
    z-index: 20
}

.popup .close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--color-grey);
    z-index: 1
}

.popup__title {
    margin-bottom: 25px;
    text-align: center;
    font-size: 21px
}

.popup__text {
    margin-bottom: 20px;
    text-align: center
}

.account_popup__content,
.popup__content {
    text-align: center
}

.popup__content .form .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 142px;
    margin-left: auto
}

.form__select-list .form__select-item {
    text-align: left;
}

.smartfilter.form.filter .form__select-current[data-role="currentOption"]+.form__select-list {
    font-size: 13px
}

.smartfilter.form.filter .form__select-list .form__select-item {
    white-space: nowrap;
}

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

.popup-request .alert {
    font-family: var(--font3)
}

.popup-request input {
    padding-left: 13px
}

.popup-login {
    padding: 267px 0 0;
    background: url(../img/auth.jpg) center top no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0 0 24px 0 rgba(66, 97, 239, .2);
    box-shadow: 0 0 24px 0 rgba(66, 97, 239, .2)
}

.popup-login .popup__inner {
    background-color: var(--color-white);
    padding: 30px;
    margin-left: -1px;
    margin-right: -1px;
    border-radius: 20px
}

.popup-login .form input {
    padding-left: 10px;
    font-family: var(--font1)
}

.popup-login .form-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup-recovery .form__block {
    margin-bottom: 20px
}

.popup-recovery-success .popup__content p {
    font-size: 12px;
    font-family: var(--font2)
}

.popup-verification .form__block {
    margin-bottom: 20px
}

.popup-request.popup-add-tt-google .form__group .btn.btn-send {
    margin: 20px auto 0;
}

.main__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.main__top .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.main__top .tabs__item:first-child a i:first-child {
    left: 0;
    top: 100%
}

.main__top .tabs__item:first-child a i:first-child:after {
    display: none
}

.main__top .tabs__item:first-child a i:first-child:before {
    width: 100%;
    height: 100%
}

.page-contact .main__top .tabs__item:first-child a,
.page-faq .main__top .tabs__item:first-child a,
.page-home .main__top .tabs__item:first-child a,
.page-news .main__top .tabs__item:first-child a,
.page-support .main__top .tabs__item:first-child a {
    border-radius: 20px 0 0
}

.page-contact .main__top .tabs__item:last-child a,
.page-faq .main__top .tabs__item:last-child a,
.page-home .main__top .tabs__item:last-child a,
.page-news .main__top .tabs__item:last-child a,
.page-support .main__top .tabs__item:last-child a {
    border-radius: 0 20px 0 0
}

.page-contact .main__top .tabs__item:last-child a i:last-child:after,
.page-faq .main__top .tabs__item:last-child a i:last-child:after,
.page-home .main__top .tabs__item:last-child a i:last-child:after,
.page-news .main__top .tabs__item:last-child a i:last-child:after,
.page-support .main__top .tabs__item:last-child a i:last-child:after {
    background-color: #fff !important
}

.main__top .tabs__link {
    display: block;
    padding: 14px 42px 19px;
    font-family: var(--font3);
    font-size: 12px;
    color: var(--color-grey);
    border-radius: 20px 20px 0 0
}

.main__top .tabs__link.active {
    background-color: var(--color-lightblue);
    color: var(--color-black)
}

.page-access .main__top .tabs__link.active {
    background-color: var(--access);
    color: var(--color-blue)
}

.page-success .main__top .tabs__link.active {
    background-color: var(--success);
    color: var(--color-blue)
}

.page-denial .main__top .tabs__link.active {
    background-color: var(--denial);
    color: var(--color-blue)
}

.main__top .tabs__link.active i {
    display: block
}

.main__top .tabs__link span {
    z-index: 1
}

.main__top .tabs__link i {
    display: none;
    position: absolute;
    bottom: 0;
    content: "";
    width: 40px;
    height: 40px;
    pointer-events: none
}

.main__top .tabs__link i:after,
.main__top .tabs__link i:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-lightblue);
    content: ""
}

.main__top .tabs__link i:after {
    background-color: #fff;
    border-radius: 50%
}

.page-contact .main__top .tabs__link i:after,
.page-faq .main__top .tabs__link i:after,
.page-news .main__top .tabs__link i:after,
.page-support .main__top .tabs__link i:after {
    background-color: var(--color-lightblue)
}

.page-home .main__top .tabs__link i:after {
    background-color: #000106 !important
}

.main__top .tabs__link i:before {
    width: 50%;
    height: 50%;
    bottom: 0
}

.page-access .main__top .tabs__link i:before {
    background-color: var(--access)
}

.page-success .main__top .tabs__link i:before {
    background-color: var(--success)
}

.page-denial .main__top .tabs__link i:before {
    background-color: var(--denial)
}

.page-home .main__top .tabs__link i:before {
    background-color: #000106 !important
}

.main__top .tabs__link i:first-child {
    left: -40px
}

.main__top .tabs__link i:first-child:before {
    right: 0
}

.main__top .tabs__link i:last-child {
    right: -40px
}

.main__top .tabs__link i:last-child:before {
    left: 0
}

.page-contact .main__top .tabs__link i,
.page-faq .main__top .tabs__link i,
.page-home .main__top .tabs__link i,
.page-news .main__top .tabs__link i,
.page-support .main__top .tabs__link i {
    display: block
}

.page-contact .main__top .tabs__link,
.page-faq .main__top .tabs__link,
.page-news .main__top .tabs__link,
.page-support .main__top .tabs__link {
    background-color: var(--color-lightblue);
    color: var(--color-black);
    border-radius: 0
}

.page-home .main__top .tabs__link {
    background-color: #000106;
    color: var(--color-white);
    border-radius: 0
}

.main__top .amounts {
    gap: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.main__top .wallet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--font3)
}

.main__top .wallet:last-child {
    margin-right: 0 !important
}

.main__top .wallet .score {
    margin-right: 4px;
    font-size: 12px;
}

.main__top .wallet .score.active {
    display: flex;
    align-items: center;
    gap: 2px
}

.main__top .wallet .score .copy {
    cursor: pointer
}

.main__top .wallet .id {
    cursor: pointer;
    display: inline-block;
    width: 17px;
    height: 12px;
    line-height: 12px;
    background-color: var(--lightgrey);
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    color: var(--color-grey)
}

.main__top .btn-menu {
    display: none;
    margin-left: 30px
}

.main__top .nav {
    margin-right: 0
}

.person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.person__photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 23px;
    height: 23px;
    margin-right: 13px;
    background-color: var(--color-lightblue);
    border-radius: 50%;
    font-family: var(--font2);
    font-weight: 700;
    color: var(--color-blue);
    text-transform: uppercase
}

.person__name {
    font-size: 12px
}

.chat__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 12px
}

.chat__item:last-child {
    margin-bottom: 0
}

.chat__item.answer {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.chat__person {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.chat__person .person {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.chat__person .person__photo {
    margin-right: 0;
    margin-bottom: 10px;
    background-color: var(--color-blue);
    color: var(--color-white)
}

.chat__content {
    padding-left: 12px
}

.answer .chat__content {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    padding-left: 0;
    padding-right: 12px
}

.chat__text {
    max-width: 490px;
    padding: 20px;
    margin-bottom: 14px;
    background-color: var(--color-white);
    border-radius: 5px
}

.chat__date {
    font-size: 11px;
    color: var(--color-grey)
}

.answer .chat__date {
    text-align: right
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px
}

.nav .btn-menu-close {
    display: none
}

.nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-size: 12px;
    color: var(--color-grey)
}

.nav .menu__item {
    margin-right: 30px
}

.nav .menu__item:last-child {
    margin-right: 0 !important
}

.nav .menu__link {
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.nav .menu__link.active {
    font-size: 18px;
    color: var(--color-blue)
}

.header {
    padding-top: 30px;
    padding-bottom: 20px
}

.header .btn-menu {
    display: none
}

.header .lang {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-grey)
}

.header .lang .icon {
    margin-right: 7px;
    font-size: 14px
}

.header .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--color-grey)
}

.header .profile__username {
    margin-right: 30px
}

.header .profile__settings {
    margin-right: 18px
}

.header .profile_not-authorized .nav .menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .profile_not-authorized .nav .menu .unread,
.header .profile_not-authorized+.header__logo .unread-menu-mobile {
    display: none
}

.header .profile__auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px
}

.header .profile__auth a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 50px
}

.header .profile__auth a:last-child {
    margin-right: 0
}

.header .profile__auth a .icon {
    display: none;
    margin-left: 10px;
    font-size: 16px
}

.page-home .header .profile__auth a {
    margin-right: 30px;
    font-family: var(--font3);
    color: var(--color-black)
}

.page-home .header .profile__auth a.btn-login {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 0
}

.page-home .header .profile__auth a.btn-login .icon {
    display: block
}

.header .person__name {
    text-transform: lowercase
}

.header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.footer {
    font-size: 14px;
    font-family: var(--font2);
    color: var(--color-grey)
}

.footer .flex {
    height: 122px
}

.footer .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media screen and (min-width: 980px) and (max-width: 1200px) {
    .footer .menu {
        max-width: 400px;
        flex-wrap: wrap;
        gap: 5px;
    }
}

@media screen and (max-width: 470px) {
    .footer .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
}

.footer .menu__item {
    margin-right: 20px
}

.footer .menu__item:last-child {
    margin-right: 0
}

.footer .menu__link {
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.footer .menu__link:hover {
    opacity: .8
}

.footer .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, calc(-50% - 11px), 0);
    transform: translate3d(-50%, calc(-50% - 11px), 0);
    margin-bottom: 11px
}

.footer .copyright {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, calc(-50% + 11px), 0);
    transform: translate3d(-50%, calc(-50% + 11px), 0);
    font-family: var(--font1);
    font-size: 12px;
    opacity: .7;
    text-align: center
}

.footer .copyright br {
    display: none
}

.footer__links span {
    margin: 0 4px
}

.footer__right .link {
    display: inline-block;
    margin-top: 10px
}

.finance__top {
    margin-bottom: 20px
}

.finance__top .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.finance__top .menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    margin-right: 30px
}

.finance__top .menu__item:last-child {
    margin-right: 0
}

.finance__top .menu__link {
    top: 3px;
    font-family: var(--font3);
    color: var(--color-grey)
}

.finance__top .menu__link.active {
    top: 0;
    font-size: 21px;
    color: var(--color-blue)
}

.finance__funds-step {
    display: none
}

.finance__funds-step.active {
    display: block
}

.finance__funds-heading {
    margin-bottom: 20px
}

.finance__funds-content {
    margin-bottom: 23px
}

.finance__funds-content .input-wrap span {
    position: absolute;
    right: 7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: var(--font3)
}

.finance__funds-content .input-wrap-hash span {
    right: 14px;
    font-size: 18px;
    cursor: pointer
}

.finance__funds-content .input-wrap--lg {
    max-width: 705px;
    width: 100%
}

.finance__funds-content .fund-list {
    gap: 16px
}

.finance__funds-content .fund-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 230px;
    height: 100px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer
}

.finance__funds-content .fund-item.active,
.finance__funds-content .fund-item:hover {
    border-color: var(--color-grey)
}

.finance__funds-content .fund-item__logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    /*background-color:var(--color-blue);*/
    border-radius: 50%
}

.finance__funds-content .fund-item__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 50%
}

.finance__funds-content .fund-item__logo span {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 22px;
    padding: 0 8px;
    background-color: var(--color-lightgrey);
    font-family: var(--font2);
    font-weight: 500;
    font-size: 12px;
    border-radius: 12px
}

.finance__funds-content .fund-item__title {
    font-family: var(--font3);
    font-weight: 500
}

.finance__funds-content .fund-details {
    display: none
}

.finance__funds-content .fund-details.show {
    display: block
}

.finance__funds-content .fund-details__top {
    margin-bottom: 22px
}

.finance__funds-content .fund-details__top .fund-item {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.finance__funds-content .fund-details__description {
    padding-left: 20px;
    word-break: break-word
}

.finance__funds-content .fund-details__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.service__form-column {
    display: flex;
    gap: 45px;
}

.finance__funds-content .fund-details__content .flex {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 20px
}

.finance__funds-content .fund-details__content.has-wallet .flex {
    width: 230px
}

.finance__funds-content .fund-details__content.has-wallet .fund-details__item {
    margin-right: 0;
    margin-bottom: 9px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.finance__funds-content .fund-details__content.has-wallet .fund-details__item:last-child {
    margin-bottom: 0
}

.finance__funds-content .fund-details__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 230px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.finance__funds-content .fund-details__item:last-child {
    margin-right: 0
}

.finance__funds-content .fund-details__item label {
    margin-right: 7px;
    font-size: 12px
}

.finance__funds-content .fund-details__item p {
    color: var(--color-blue);
    font-size: 14px;
    font-family: var(--font3)
}

.finance__funds-content .fund-details__item .input-wrap input {
    width: 135px
}

.finance__funds-content .fund-details__item-commission {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.finance__funds-content .fund-details__item-wallet {
    max-width: 681px;
    margin-bottom: 19px;
    padding-left: 11px;
    background-color: var(--color-white);
    border: var(--border);
    border-radius: 5px
}

.finance__funds-content .fund-details__item-wallet label {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-family: var(--font3);
    font-size: 14px;
    text-transform: uppercase;
    z-index: 1
}

.finance__funds-content .fund-details__item-wallet .input-wrap {
    width: 100%
}

.finance__funds-content .fund-details__item-wallet .input-wrap input {
    width: 100%;
    padding-left: 0;
    border: none
}

.finance__funds-content .fund-details__item-wallet .input-wrap span {
    right: 12px;
    cursor: pointer
}

.finance__funds-content .fund-details__text {
    margin-bottom: 30px;
    word-break: break-word
}

.finance__funds-content .fund-details__code {
    width: 98px;
    height: 98px;
    padding: 10px;
    background-color: var(--color-white);
    border: var(--border);
    border-radius: 10px
}

.finance__funds-content .fund-details-wallet {
    margin-left: 46px
}

.finance__funds-content .fund-details-wallet p {
    font-size: 12px
}

.finance__funds-content .fund-details-form {
    max-width: 455px;
    width: 100%
}

.finance__funds-content .fund-details-form .amount {
    font-size: 18px
}

.finance__funds-content .fund-details-form .commission {
    font-size: 12px;
    font-family: var(--font3)
}

.finance__funds-content .fund-details-form .form__group .chip {
    position: absolute;
    left: calc(100% + 10px);
    bottom: 0
}

.finance__funds-content .fund-top-up .fund-details__content {
    display: block
}

.finance__funds-content .fund-top-up .fund-details__description {
    font-family: var(--font3)
}

.finance__funds-bottom p {
    margin-top: 35px;
    font-family: var(--font2);
    font-size: 12px;
    line-height: 1.3
}

.finance__filter .form__group {
    width: calc(33.3% - 10px)
}

.finance__history .btn .icon {
    font-size: 20px
}

.finance__exchange .form {
    max-width: 650px;
    padding: 30px;
    margin-bottom: 26px;
    background-color: var(--color-white);
    border-radius: 20px
}

.finance__exchange .form__input .icon::before {
    vertical-align: middle;
    color: #383838
}

.finance__exchange .form p span {
    font-size: 24px
}

.finance__exchange .form .rate {
    font-size: 12px
}

.finance__exchange .form__select input,
.finance__exchange .form__select-item {
    text-transform: uppercase;
}

.form__rates {
    margin-left: 10px
}

.finance__exchange .form .icon-arrows {
    width: 18px;
    height: 14px;
    margin: 0 10px;
    background: url(../img/icons/arrows.svg) center no-repeat;
    background-size: contain
}

.finance__exchange .form .icon-right {
    font-size: 10px;
    color: var(--color-grey)
}

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

.finance__exchange .form__select {
    width: 105px
}

.finance__exchange .form__input input {
    width: 210px;
    padding-left: 37px
}

.finance__exchange .form__input .icon {
    position: absolute;
    left: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 1
}

.finance__exchange .flex {
    margin-bottom: 14px
}

.finance__exchange .flex:last-child {
    margin-bottom: 0
}

.finance__exchange .btn {
    width: 172px
}

.finance__exchange .form .btn .icon-right {
    color: var(--color-white)
}

.finance__exchange .form .btn:hover .icon-right {
    color: var(--color-blue)
}

.form__select {
    cursor: pointer
}

.services__top {
    margin-bottom: 23px;
    line-height: 48px
}

.services .page__inner {
    padding-bottom: 46px
}

.service .page__inner {
    padding-bottom: 24px
}

.service .form .labels {
    margin-top: 20px
}

.service .form .labels input:checked+.label {
    -webkit-box-shadow: 0 0 10px 0 rgba(66, 97, 239, .4);
    box-shadow: 0 0 10px 0 rgba(66, 97, 239, .4)
}

.service__table .table .td {
    width: 8%
}

.service__table .table .td:first-child {
    width: 22%
}

.service__table .table .td:last-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.service__table .highlighted {
    margin-right: 16px;
    display: flex;
    gap: 3px
}

.service__table .buttons .btn {
    width: auto;
    height: 36px;
    padding: 0 10px
}

.service__table .pagination {
    /*  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) */
}

.form-text_md {
    font-size: 13px;
}

.service__top .card-accounts {
    width: auto
}

.service__top .card-accounts .card__title {
    margin-bottom: 3px;
    font-size: 12px;
    line-height: 1
}

.service__top .card-accounts .card__title .current {
    font-size: 38px
}

.service__top .card-accounts .card__title .total {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-grey)
}

.service__top .card-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    background: url(../img/pattern-card.jpg) center no-repeat;
    background-size: cover;
    color: var(--color-white);
    cursor: pointer
}

.service__top .card-add .card__icon {
    width: auto;
    height: auto;
    margin-right: 0;
    padding: 0;
    font-size: 32px;
    border: none
}

.service__top .card-add .card__title {
    font-size: 16px;
    font-weight: 400
}

.service__appeals .page__filter,
.service__archive .page__filter {
    margin-bottom: 30px
}

.service__appeals .page__filter .form,
.service__archive .page__filter .form {
    padding-bottom: 15px;
    border-radius: 10px
}

.service__appeals .page__filter .form__group:last-child,
.service__archive .page__filter .form__group:last-child {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0
}

.service__appeals .page__table .table .td,
.service__archive .page__table .table .td {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.service__appeals .page__table .table .td:first-child,
.service__archive .page__table .table .td:first-child {
    width: 20%
}

.service__appeals .page__table .pagination,
.service__archive .page__table .pagination {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.service__appeals .page__table .table .td:first-child {
    width: 10%
}

.service-account__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px
}

.service-account__top.mb-md {
    margin-bottom: 20px
}

.service-account__top .icon {
    margin-right: 20px
}

.service-account__top span {
    margin-left: 15px;
    font-family: var(--font1);
    font-size: 12px;
    color: var(--color-grey)
}

.service-account__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px
}

.service-account__left {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.service-account__left .labels {
    margin-bottom: 15px
}

.service-account__left .form {
    margin-bottom: 20px
}

.service-account__left .form:last-child {
    margin-bottom: 0
}

.service-account__left .form__block,
.service-account__left .form__content,
.service-account__left .form__title {
    margin-bottom: 20px
}

.service-account__left .form__button {
    text-align: right
}

.service-account__left .form-service-account .row {
    gap: 20px
}

.service-account__left .form-service-account .form__group {
    width: 160px;
    margin-bottom: 0
}

.service-account__left .form-service-account .form__group:last-child {
    margin-right: 0
}

.service-account__left .form-service-account .form__group-amount {
    width: auto;
    text-align: right
}

.service-account__left .form-service-account .form__group-amount .title {
    font-family: var(--font3);
    font-size: 18px
}

.service-account__left .form-service-account .form__group-amount .text {
    font-size: 12px;
    color: var(--color-grey)
}

.service-account__left .form-service-account .form__title {
    margin-bottom: 10px
}

.service-account__left .form-service-account .form-input {
    font-family: var(--font1)
}

.service-account__right {
    width: 550px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.service-account__right .tab__content {
    font-size: 12px;
    width: 100%;
}

.service-account__bottom {
    margin-top: 30px
}

.message .page__inner {
    padding-top: 60px;
    padding-bottom: 60px
}

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

.support__header .menu {
    margin-right: 36px
}

.support__header .menu__item {
    margin-right: 50px
}

.support__header .btn {
    margin-left: auto;
    white-space: nowrap
}

.support__header .btn .icon {
    margin-left: 10px;
    margin-right: 0
}

.support__header .alert {
    margin-right: 20px;
    line-height: 1.2;
    text-align: center;
    flex: none;
    max-width: 590px;
}

.support__table .table-wrapper {
    margin-bottom: 32px
}

.support__table .table {
    min-width: 600px
}

.support__table .table .tbody {
    padding-left: 32px;
    padding-right: 32px
}

.support__table .table .tbody .tr {
    padding-bottom: 18px
}

.support__table .table .tbody .td:nth-child(2) {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 22%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left
}

.support__table .table .tr {
    padding-left: 0;
    padding-right: 0
}

.support__table .table .td {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.support__table .table .td:last-child {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.support__form .form input,
.support__form .form textarea {
    padding-left: 8px
}

.support__form .form textarea {
    padding-top: 8px
}

.support__form .form__group {
    max-width: 705px
}

.support__form .form__group.col-12 {
    max-width: 100%
}

.support__chat {
    margin-bottom: 30px
}

.contact .page__inner {
    height: 353px
}

.contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.contact-item__title {
    margin-bottom: 8px;
    font-size: 12px
}

.contact-item__text {
    font-family: var(--font3)
}

.service__table .google-accounts__btns-block .highlighted {
    margin-right: 0;
}

.google-accounts__btns-block {
    gap: 20px;
    flex-wrap: wrap;
}

.news .page__inner {
    padding-bottom: 30px
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1455px) {
    .news-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .news-item {
        width: 350px;
    }
}

.news-item:hover .news-item__image {
    -webkit-box-shadow: 0 0 24px 0 rgba(66, 97, 239, .2);
    box-shadow: 0 0 24px 0 rgba(66, 97, 239, .2)
}

.news-item__image {
    height: 200px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden
}

.news-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.news-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: var(--font3)
}

.news-item__title .icon {
    margin-right: 10px;
    font-size: 10px;
    color: var(--color-blue)
}

.news-pagination {
    text-align: center
}

.article__content {
    max-width: 700px;
    font-size: 12px;
    font-family: var(--font2);
    line-height: 1.4
}

.auth .page__image {
    width: 50%
}

.auth .page__content {
    width: 50%;
    padding-right: 30px
}

.auth .page__content .form {
    max-width: 455px
}

.auth .page__content .form .row .form__group {
    width: calc(50% - 8px);
    margin-bottom: 0
}

.auth .page__content .form input {
    padding-left: 10px
}

.auth .page__content .form__bottom {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.profile .page__inner {
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
}

.profile__status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 70px;
    margin-bottom: 30px;
    padding: 0 70px;
    border-radius: 10px;
    color: var(--color-white);
    background-size: cover
}

.profile__status .account,
.profile__status .deposit {
    font-size: 12px
}

.profile__status .account span,
.profile__status .deposit span {
    font-family: var(--font3);
    font-size: 21px
}

.profile__status--basic {
    background: url(../img/status/basic.png) center no-repeat #4261ef;
    background-size: cover;
    color: var(--color-white)
}

.profile__status--standard {
    background: url(../img/status/standard.png) center no-repeat #88d498;
    background-size: cover;
    color: #383838;
}

.profile__status--silver {
    background: url(../img/status/silver-1.png) center no-repeat #f5f0f6;
    background-size: cover;
    color: #383838;
}

.profile__status--gold {
    background: url(../img/status/gold.png) center no-repeat #e2c044;
    background-size: cover;
    color: #383838;
}

.profile__status--platinum {
    background: url(../img/status/platinum-1.png) center no-repeat #ccc;
    background-size: cover;
    color: #383838;
}

.profile__status--titanium {
    background: url(../img/status/titanium.png) center no-repeat #90e0ef;
    background-size: cover;
    color: #383838;
}

.profile__status--exclusive {
    background: url(../img/status/exclusive.png) center no-repeat #700353;
    background-size: cover;
    color: var(--color-white)
}

.profile__status--unlimited {
    background: url(../img/status/unlimited.png) center no-repeat #201a23;
    background-size: cover;
    color: var(--color-white)
}

.profile__table .table-wrapper {
    padding: 20px 48px 40px
}

.profile__table .table-wrapper .note {
    font-family: var(--font2);
    font-size: 12px
}

.profile__table .table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    color: #171717
}

.profile__table .table .tr {
    padding: 0;
    border-radius: 10px;
    background-size: cover
}

.profile__table .table .tr:first-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.profile__table .table .tr:first-child .td {
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 36px;
    text-align: right
}

.profile__table .table .tr:last-child .td {
    width: 55px
}

.profile__table .table .tr.active .td {
    border-bottom: none
}

.profile__table .table .tr.active .td:first-child {
    font-weight: 700
}

.profile__table .table .tr.active.status-basic {
    background: url(../img/status/card-basic.png) center no-repeat #4261ef;
    color: var(--color-white)
}

.profile__table .table .tr.active.status-standard {
    background: url(../img/status/card-standard.png) center no-repeat #88d498
}

.profile__table .table .tr.active.status-silver {
    background: url(../img/status/card-silver-1.png) center no-repeat #f5f0f6
}

.profile__table .table .tr.active.status-gold {
    background: url(../img/status/card-gold.png) center no-repeat #e2c044
}

.profile__table .table .tr.active.status-platinum {
    background: url(../img/status/card-platinum-1.png) center no-repeat #ccc
}

.profile__table .table .tr.active.status-titanium {
    background: url(../img/status/card-titanium.png) center no-repeat #90e0ef
}

.profile__table .table .tr.active.status-exclusive {
    background: url(../img/status/card-exclusive.png) center no-repeat #700353;
    color: var(--color-white)
}

.profile__table .table .tr.active.status-unlimited {
    background: url(../img/status/card-unlimited.png) center no-repeat #201a23;
    color: var(--color-white);
    background-size: cover;
}

.profile__table .table .td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 44px;
    width: 80px;
    border-bottom: 1px solid #e5e5e5
}

.profile__table .table .td:last-child {
    border-bottom: none
}

.profile__table .table .status-unlimited .td {
    width: auto;
    padding: 0 10px;
}

.profile__table .table .td .symbol,
.profile__table .table .td .text,
.profile__table .table .td .value {
    display: none;
}

.profile__table .table .td .text {
    text-transform: lowercase;
}

@media (max-width: 1220px) {
    .profile__table .table .status-unlimited .td {
        padding-left: 0
    }

    .profile__table .table .td .value {
        display: block
    }

    .profile__table .table .td .value-desktop {
        display: none
    }

    .profile__status {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 1fr 15px 1fr;
        -ms-grid-columns: 1fr 1fr;
        grid-template: 1fr 1fr/1fr 1fr;
        row-gap: 15px;
        height: auto;
        padding: 20px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right center;
    }

    .profile__status .heading {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-row: 1/3;
    }

    .profile__status .account span,
    .profile__status .deposit span {
        font-size: 18px;
    }

    .profile__table {
        margin-left: -20px;
        margin-right: -20px;
    }

    .profile__table .table-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .profile__table .table {
        min-width: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .profile__table .table .tr {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 1fr 15px 1fr;
        -ms-grid-columns: 1fr 1fr;
        grid-template: 1fr 1fr/1fr 1fr;
        row-gap: 15px;
        height: auto;
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid #e5e5e5;
        border-radius: 0;
    }

    .profile__table .table .tr:nth-child(2) {
        border-top: none;
    }

    .profile__table .table .tr:last-child {
        display: none;
    }

    .profile__table .table .tr:first-child {
        display: none;
    }

    .profile__table .table .tr.active {
        background: 0 0 !important;
        color: var(--color-black) !important;
    }

    .profile__table .table .td {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
        width: auto;
        border-bottom: none;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }

    .profile__table .table .td:first-child {
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1/2;
        -ms-grid-row: 1;
        -ms-grid-row-span: 2;
        grid-row: 1/3;
        font-weight: 400 !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .profile__table .table .td .symbol,
    .profile__table .table .td .value {
        font-family: var(--font3);
        font-size: 18px;
    }

    .profile__table .table .td .value {
        margin-right: 4px;
    }

    .profile__table .table .td .symbol,
    .profile__table .table .td .text {
        display: block;
    }

    .profile__form .form .row .form__group {
        width: 100%;
    }

    .profile__form .form__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .profile__form .form__bottom .btn {
        width: 100%;
    }

    .profile__form .form__bottom .form__group {
        margin-bottom: 20px;
    }

    .profile__form .form__bottom p {
        margin-top: 10px;
    }

    .profile__status .heading,
    .profile__table .table .td:first-child {
        font-size: 18px;
    }
}

.popup__top-text {
    margin-bottom: 15px
}

.popup.popup-add-tiktok-res .center-button {
    margin-top: 15px
}

.profile__form {
    padding-bottom: 30px
}

.profile__form .form {
    max-width: 530px
}

.profile__form .form .row {
    gap: 10px
}

.profile__form .form .row .form__group {
    width: calc(50% - 5px);
    margin-bottom: 0
}

.profile__form .form__bottom {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.profile__form .form__bottom .form__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0
}

.profile__form .form__bottom p {
    color: rgba(56, 56, 56, .5)
}

.home .page__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 544px;
    background: url(../img/home.png) center no-repeat;
    background-size: cover
}

.home .page__inner p {
    max-width: 615px;
    font-family: var(--font3);
    font-size: 40px;
    color: var(--color-white);
    text-align: center
}

.home .page__inner .btn {
    position: absolute;
    right: 34px;
    bottom: 32px
}

.spinner-image {
    margin-top: 10px
}

.token-copy-image {
    cursor: pointer;
    width: 15px;
    height: auto;
    margin-bottom: 13px;
    margin-left: 5px;
}

.token-copy-image.token-copy-image_indent {
    margin-bottom: 5px;
    margin-left: 0
}

.table.table-all-accounts .spinner-image {
    width: 16px;
    height: auto
}

.btn-login::after {
    transition: width .4s ease-in-out;
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-blue);
    content: "";
    width: 0
}

.btn-signup::after,
.nav .menu__link::after {
    transition: width .4s ease-in-out;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-blue);
    content: "";
    width: 0
}

.btn-login.active::after,
.btn-signup.active::after {
    width: 100%
}

.btn-login:hover::after,
.btn-signup:hover::after,
.nav .menu__link:hover::after {
    width: 100%;
}

button.form-checkbox__detailed-account {
    border: none;
    background: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #383838
}

.table-all-accounts button.form-checkbox__detailed-account {
    font-size: 13px;
    font-family: var(--font1);
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.form__captcha .captcha {
    transform: scale(0.82) !important;
}

.form__checkbox.zapros-checkboxes input[type=radio] {
    display: block;
    opacity: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.link-hover-underlined {
    cursor: pointer;
    border: none;
    background: none;
}

.link-hover-underlined::after {
    transition: width .4s ease-in-out;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-blue);
    content: "";
    width: 0;
}

.link-hover-underlined.link-hover-underlined_sm::after {
    height: 1px
}

.link-hover-underlined:hover::after {
    width: 100%;
}

.icon-plus.btn-add-label {
    cursor: pointer
}

.block-break-word {
    word-break: break-word;
}

.pay-form__col-mobile {
    display: flex;
    align-items: center;
}

.form__label-text {
    font-weight: 500;
    max-width: 150px;
    margin-right: 20px;
}

.form__label-text_sm {
    font-weight: 500;
    max-width: 100px;
    margin-right: 20px;
}

.form__label-comission {
    font-weight: 500;
    margin-left: auto;
}

.bx-viewer-overlay .bx-viewer-cap-wrap .bx-viewer-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bx-viewer-overlay {
    z-index: 5 !important;
}

.altasib-support-button-cancel {
    background-color: #ff7668;
    border-radius: 2px;
    color: #fff !important;
    cursor: pointer;
    display: inline-block !important;
    font-size: 12px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    margin: 10px 10px 5px 10px;
    min-width: 103px;
    padding: 0 12px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    margin-left: -12px;
}

.centered-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px
}

.text-lg {
    font-size: 18px
}

.centered-column .btn {
    padding: 0 25px
}

.text-center {
    text-align: center;
    justify-content: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.service__archive .service__filter .row .form__group.form__group_flex:first-child {
    flex: none
}

.service__archive .service__filter .row .form__group.form__group_flex:last-child {
    flex: 1
}

.service__archive .service__filter .row .form__group.form__group_flex .form__select-current {
    height: 40px
}

.accounts-info {
    background: #fff;
    margin: 24px -68px 0;
    padding: 0 0 40px 0;
    position: relative;
    border-radius: 20px;
    position: relative;
}

.accounts-info::after {
    content: '';
    position: absolute;
    bottom: -0;
    left: 0;
    width: 100%;
    height: 30px;
    background: #fff
}

.accounts-info__block {
    background-color: #4261EF;
    border-radius: 20px;
    padding: 25px 30px;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    column-count: 2;
    column-gap: 60px;
}

.accounts-info__block p {
    margin-bottom: 10px;
    break-inside: avoid;
}

.accounts-info__sum {
    break-inside: avoid;
}

.accounts-info__block ul {
    list-style-type: disc;
    margin-bottom: 10px;
    break-inside: avoid;
    margin-left: 14px;
}

.accounts-info__block a {
    text-decoration: underline;
}

.accounts-info__block a:hover {
    text-decoration: none;
}

.accounts-info__block strong {
    font-weight: bold
}

.page__inner {
    padding-bottom: 0
}

.google-accounts__btns-block {
    z-index: 1;
}

.field-telegram {
    width: 455px;
    height: 50px;
    padding: 15px;
    resize: none;
}

@media (max-width:640px) {
    .accounts-info {
        margin: 30px 0 0;
        padding: 0
    }

    .accounts-info::after {
        display: none;
    }

    .page.services .page__bottom {
        padding: 20px 20px 0
    }

    .accounts-info__block {
        padding: 20px;
        column-count: 1;
        column-gap: 0;
    }
}

@media (min-width:640px) {
    .page.services .page__bottom::before {
        content: '';
        position: absolute;
        top: -30px;
        left: 0;
        width: 100%;
        height: 30px;
        background: var(--color-lightblue);
        border-radius: 20px;
        margin: 0 0 0 -28px;
    }

    .page.services .page__bottom::after {
        content: '';
        position: absolute;
        top: -30px;
        right: 0;
        width: 100%;
        height: 30px;
        background: var(--color-lightblue);
        border-radius: 20px;
        margin: 0 -28px 0 0;
    }
}

@media (min-width:640px) and (max-width:1024px) {
    .page.services .page__bottom::before {
        margin: 0 0 0 -68px;
    }

    .page.services .page__bottom::after {
        margin: 0 -68px 0 0;
    }
}

@media (max-width:600px) {
    .service__archive .service__filter .row {
        flex-direction: column;
        margin-bottom: 15px
    }
}

@media (max-width:1280px) {
    .container {
        padding-left: 40px;
        padding-right: 40px
    }

    .main__top .tabs__link {
        padding-left: 30px;
        padding-right: 30px
    }

    .service-account__right {
        width: 450px
    }
}

@media (max-width:1220px) {
    .profile__form .form__bottom .form__group {
        margin-bottom: 20px
    }
}

@media (max-width:1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px
    }

    .page__table .table .thead .td.td_checkbox {
        padding-left: 0
    }

    .page__filter {
        margin-left: 0;
        margin-right: 0
    }

    .page__table .table .thead .td:nth-child(2) {
        width: 16%
    }

    .page__table .table-wrapper {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .page__table .table .tbody,
    .page__table .table .thead {
        padding: 0
    }

    .page__table .table .tbody .td .icon-check {
        position: relative;
        left: 0;
        margin-right: 10px;
        top: 0
    }

    .page__image {
        width: 70%
    }

    .main__top .amounts {
        margin-left: 0;
        position: relative;
        top: unset;
        left: unset;
        transform: none;
    }

    .main__top .btn-menu {
        display: block
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background-color: rgba(0, 0, 0, .25);
        z-index: 100
    }

    .nav.open {
        display: block
    }

    .nav .btn-menu-close {
        display: block;
        position: absolute;
        top: 60px;
        right: 10px;
        z-index: 1
    }

    .nav .menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        width: 250px;
        display: block;
        margin-right: 0;
        padding-top: 120px;
        padding-right: 40px;
        background-color: var(--color-white);
        border-radius: 20px 0 0 20px;
        text-align: right;
        color: var(--color-black)
    }

    .nav .menu__item {
        margin-right: 0;
        margin-bottom: 20px;
        line-height: 48px;
        font-size: 18px
    }

    .nav .menu__item:last-child {
        margin-bottom: 0
    }

    .finance__filter .form__group {
        width: calc(50% - 10px)
    }

    .service__table .pagination {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-left: auto;
        margin-right: auto;
    }

    .service__filter .btn-filter {
        position: relative;
        top: 0;
        right: 0
    }

    .service__filter .filter {
        margin-top: 10px
    }

    .service-account__top span {
        display: block;
        margin-left: 0
    }

    .service-account__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column-reverse
    }

    .service-account__right {
        width: 100%
    }

    .support__header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .support__table .table .tr {
        padding-left: 16px;
        padding-right: 16px
    }

    .auth .page__image {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 20px
    }

    .auth .page__content {
        width: 100%;
        padding-right: 0
    }

    .auth .page__content .form {
        max-width: 100%
    }

    .main__top .amounts {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px
    }

    .main__top .btn-menu {
        display: none
    }

    .header .btn-menu {
        display: block
    }

    .header__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .header__logo {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        margin-top: 40px
    }
}

@media screen and (max-width: 980px) {
    .footer .flex {
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .footer .logo {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-bottom: 30px
    }

    .footer .copyright {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-bottom: 10px;
        opacity: 1
    }

    .footer .copyright br {
        display: block
    }

    .footer__right {
        margin-bottom: 30px;
        text-align: center
    }

    .footer {
        padding-top: 50px;
        padding-bottom: 60px
    }
}

@media (max-width:800px) {
    .main__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .main__top .tabs {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        margin-top: 30px
    }

    .person__photo {
        margin-right: 0
    }

    .header .profile__username {
        margin-right: 16px
    }

    .header .person__name {
        display: none
    }

    .finance__funds-content .fund-details__content.has-wallet {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .finance__funds-content .fund-details__content.has-wallet .flex {
        width: 100%
    }

    .finance__funds-content .fund-details-wallet {
        margin-left: 0;
        margin-top: 20px
    }

    .finance__filter .form__group {
        width: 100%
    }

    .service__form-column {
        flex-direction: column;
        gap: 0
    }

    .form__group_column-mobile {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form__group__wrap .form__label.form__label_comission-udst-pn {
        width: 100%;
        margin-left: 20px;
    }

    .form__group_udst-pn .form__label.form__label_row-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 0;
        width: 100%;
    }

    .form__group_udst-pn .form__label-text {
        max-width: 130px;
    }
}

@media (max-width:740px) {
    .google-accounts__btns-block {
        flex-direction: column;
        gap: 10px;
    }

    .field-telegram {
        width: 100%;
    }
}

@media (max-width:640px) {
    .card {
        width: 168px;
        min-height: 74px;
        height: auto;
        padding: 14px
    }

    .card__icon,
    .card__logo {
        width: 44px;
        height: 44px
    }

    .service__balance-block_withdraw {
        min-width: 100%
    }

    .google-accounts__btns-block .buttons {
        display: flex;
        gap: 10px;
    }

    .page__header .menu__item {
        margin-right: 20px
    }

    .popup .close {
        top: 15px;
        right: 15px
    }

    .page__bottom,
    .page__inner {
        padding-left: 20px;
        padding-right: 20px;
        margin-left: -20px;
        margin-right: -20px
    }

    .page__image {
        position: relative;
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px
    }

    .main__top .tabs__item:first-child a i:first-child {
        left: -40px;
        top: auto;
        bottom: -6px
    }

    .main__top .tabs__item:first-child a i:first-child:after {
        display: block;
        background-color: #fff
    }

    .page-home .main__top .tabs__item:first-child a i:first-child:after {
        background-color: #fff !important
    }

    .main__top .tabs__item:first-child a i:first-child:before {
        width: 50%;
        height: 50%
    }

    .pay-form__col-mobile {
        flex-direction: column;
        align-items: flex-start;
    }

    #capitalist_pay_form .form__group__wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    #wire_pay_form .form__group__wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .finance__funds-content .alert {
        padding: 0 0 25px
    }

    .form__group.pay-form__col-mobile .form__group .form__label {
        display: flex;
        justify-content: space-between;
        width: 100%
    }

    .service__form-inner-block .form__group .form__label {
        margin-right: 0
    }

    .form__label-text,
    .form__label-text_sm {
        max-width: 100%
    }

    .form__group__wrap .form__label.form__label_row-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 0;
        width: 100%;
    }

    .form__label-comission {
        margin-left: 0
    }

    .form__group_wide-mobile {
        width: 100%
    }

    .footer__links {
        font-size: 12px
    }

    .finance__funds-content .fund-list {
        gap: 12px
    }

    .finance__funds-content .fund-item {
        width: 168px;
        height: 74px;
        padding: 14px
    }

    .finance__funds-content .fund-item__logo {
        width: 44px;
        height: 44px
    }

    .finance__funds-content .fund-details__top {
        display: block
    }

    .finance__funds-content .fund-details__description {
        padding-left: 0;
        margin-top: 20px
    }

    .finance__funds-content .fund-details__content .flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .finance__funds-content .fund-details-form .form__group .chip {
        position: relative;
        left: 0;
        margin-top: 10px
    }

    .finance__funds-content .fund-details-form .form .flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .finance__funds-content .fund-details-form .form .flex .form__group {
        width: 100%;
        margin-bottom: 10px
    }

    .finance__funds-content .fund-details-form .form .flex .form__group:last-child {
        margin-bottom: 0;
        margin-left: auto
    }

    .finance__exchange .form {
        width: auto
    }

    .finance__exchange .form p {
        margin-top: 10px
    }

    .finance__exchange .form .icon-arrows {
        margin: 10px 0;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .finance__exchange .form .icon-right {
        display: none
    }

    .finance__exchange .form__group {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .finance__exchange .form__input,
    .finance__exchange .form__input input,
    .finance__exchange .form__select {
        width: 100%
    }

    .finance__exchange .flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .support__header .menu {
        margin-right: 20px
    }

    .contact .page__inner {
        height: auto
    }

    .contact-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .auth .page__content .form .row {
        gap: 10px
    }

    .auth .page__content .form .row .form__group,
    .profile__form .form .row .form__group {
        width: 100%
    }

    .profile__form .form__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .profile__form .form__bottom .btn {
        width: 100%
    }

    .profile__form .form__bottom p {
        margin-top: 10px
    }
}

@media (max-width:420px) {
    .auth .page__content .form__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .auth .page__content .form__bottom .btn {
        width: 100%
    }

    .auth .page__content .form__captcha {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: center;
        align-content: center;
        margin-bottom: 10px
    }

    .auth .page__content .form__captcha p {
        margin-left: 10px
    }

    .popup__content .form .btn {
        width: 100%
    }

    .popup {
        padding: 30px 20px
    }
}

@media screen and (max-width: 1390px) and (min-width: 1120px) {
    .nav .menu__item {
        margin-right: 0;
    }

    .nav .menu {
        gap: 18px;
    }
}

@media screen and (max-width: 1120px) and (min-width: 1024px) {
    .nav .menu__item {
        margin-right: 0;
    }

    .nav .menu {
        gap: 10px;
    }
}

@media screen and (max-width: 1080px) and (min-width: 1024px) {
    .text-sm {
        font-size: 12px
    }
}

@media screen and (max-width: 900px) {
    .pagination ul {
        flex-wrap: wrap;
        gap: 7px 0;
    }

    .finance-pagination-block {
        flex-direction: column;
        gap: 20px
    }
}


.popup.popup-add-motive .form-add-acc .form__group input {
    min-height: 50px;
    padding-left: 15px;
}

.popup.popup-add-motive .form-add-acc .btn-send {
    margin-top: 20px;
}

.popup.popup-arch .form-arch .form__group_buttons,
#popupArch-all #form-arch-all .form__group_buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.label-list-wrapper_top {
    margin-bottom: 10px;
}

@media screen and (max-height: 720px) {
    .popup.popup-add-motive {
        position: absolute;
    }
}

.limits__content {
    text-align: center;
}

.limits__bottom {
    text-align: center;
}

.limits {
    padding-top: 2rem;
    gap: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.limits .limits__content .heading {
    text-align: center
}

.form__group.form__group-amount {
    min-width: 65px;
}

.btn.btn-primary.form-arch_detail-acc {
    background-color: #F9BB0A;
    border: 0;
    border-radius: 20px;
    height: 35px;
    min-width: 118px;
    gap: 8px;
    margin-top: 17px;
    font-family: Manrope, sans-serif;
}

.btn.btn-primary.form-arch_detail-acc:hover {
    background-color: rgba(249, 187, 10, .8);
    color: #fff;
}

.fa-solid.fa-trash-can {
    width: 12px;
    height: 12px;
}

.form-arch-show__title {
    text-transform: capitalize;
    font-size: 10px;
}

.page-header>.menu__link.tabs__link:first-of-type {
    color: --color-blue;
}

