:root {
    --text14: 14px;
    --text70: 70px;
    --text30: 30px;
    --black-color: #101010;
    --purple-color: #4341DE;
    --gray-color: #F0F0F0;
    --cyan-color: #37BFA7;
    --grey-opa02: rgba(240, 240, 240, .2);
    --purple-opa08: rgba(67, 65, 222, .8);
    --black-opa02: rgba(16, 16, 16, .2);
    --black-opa04: rgba(16, 16, 16, .4);
    --radius50: 50px;
    --radius30: 50px;
    --gap20: 20px;
    --gap10: 10px;
}

@font-face {
    font-family: "AeonikPro";
    font-style: normal;
    font-weight: 400;
    src: local("AeonikPro"),
    url("../fonts-new/AeonikPro-Regular.woff2") format("woff2"),
    url("../fonts-new/AeonikPro-Regular.woff") format("woff")
}

body {
    font-family: "AeonikPro", "Arial", sans-serif;
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: black;
    text-align: left;
    background-color: #fff;

    min-height: 100vh;
    display: flex;
    /*flex-direction: column;*/
}

.isDesktop {
    display: block !important;
}

.isMobile {
    display: block;
}

@media screen and (max-width: 991.98px) {
    .isDesktop {
        display: none !important;
    }
}

@media screen and (min-width: 992px) {
    .isMobile {
        display: none !important;
    }
}

.hide-labels label {
    display: none;
}

.control-label {
    display: none;
}

#passError {
    display: none;
}

.form-group {
    margin-bottom: 0;
}

.hide-more-md {
    display: none;
}

.error.mt-1 {
    position: absolute;
    left: 0;
    bottom: -16px;
}

.label-hide {
    display: none;
}

.form-group .error {
    width: 100%;
}

body .ui-datepicker {
    display: none;
    opacity: 0;
}

.p-b-60 {
    padding-bottom: 60px !important;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.form-report-custom select {
    position: absolute;
    left: -10000px;
    z-index: -100;
    opacity: 0;
}

.overlay-main {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--purple-opa08);
    z-index: 2;

    display: none;
    opacity: 0;
}

/*общий класс контента без левого сайдбара*/
/*.az-content-body {*/
.content-main {
    width: calc(100%);
    background: var(--purple-color);
    overflow: hidden;

    z-index: 1;
}

/*фильтр оверлея*/
.az-navbar-backdrop {
    background-color: var(--purple-opa08)
}

/*верхнаяя часть экрана*/
.half-height-window {
    position: relative;
    height: 50vh;
    display: flex;
    flex-direction: column;
    padding: 40px 40px 20px;
}

/*контейнер с оверлеем нижней части*/
.second-window-container {
    position: relative;
    height: 100%;
}

/*нижняя часть экрана НЕ ЧЕРНАЯ*/
.second-window {
    padding: 40px 0 80px;
    margin: 0 40px;
    height: 100%;
    position: relative;

    display: none;
}

.second-window.active {
    display: block;
}

.second-window-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    /*bottom: 0;*/
    background: var(--black-color);

    /*изначально слой скрыт*/
    z-index: 1;
    opacity: 0;
}

/*нижнаяя часть экрана ЧЕРНАЯ*/
.second-window-black {
    padding: 40px 0 160px;
    margin: 0;
    background-color: var(--black-color);
    color: var(--gray-color);
}

.second-window-black-padding {
    padding: 40px 40px 160px;
}

/*нижнаяя часть экрана БЕЛАЯ*/
.second-window-white {
    padding: 40px 0 160px;
    margin: 0;
    background-color: white;
    color: var(--black-color);
}


/*чтобы убрать бутстраповские минусовые марджины*/
.table-big-item {
    margin: 0;
}

/*--------двойная кнопка СВИТЧЕР, работает по ID, стили в классах--------------------------*/
.switcher-offsets {
    margin: 0 40px 20px;
}

/*----------------------------------------------------*/

.df-center-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.df-center-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.df-column-end {
    display: flex;
    flex-direction: column;
    align-items: end;
}


.relative-and-index {
    position: relative;
    z-index: 1;
}



/*--------------------ТОЛЬКО мой SELECT----------------------------------------*/

.customSelectWrapper {
    cursor: pointer;
}

#reportsSelectArrow {
    pointer-events: none;
    z-index: 2;
}

#reportsSelectArrow.active {
    pointer-events: initial;
    z-index: 4;
}

.select-arrow {
    pointer-events: none;
    z-index: 2;
}

.select-arrow.active {
    pointer-events: initial;
    z-index: 4;
}

.reports-select-wrap {
    position: relative;
}

.reports-select-inner {
    position: absolute;
    right: 15px;
    top: 20px;
    margin: 0;
    list-style-type: none;
    padding: 50px 30px 40px 20px;
    background-color: white;
    border: 1px solid white;
    border-radius: 30px;
    width: 100%;
    cursor: pointer;

    z-index: 3;
    overflow: hidden;
    transform: scale(0);
    transform-origin: top right;
    transition: all .2s ease-out;
}

.reports-select-inner.active {
    transform: scale(1);
    right: 0;
    top: 0;
}

.dropdown-label {
    font-size: 20px;
    padding: 0 0 20px 0;
    margin: 0 10px 30px;
    border-bottom: 1px solid var(--black-opa02);
}

.reports-select-inner .dropdown-link {
    display: flex;
    justify-content: flex-start;
    padding: 0 10px 0;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--purple-color);
    white-space: normal;
    border-radius: var(--radius30);
    transition: color .3s ease;
}

.reports-select-inner .dropdown-link.active {
    background-color: var(--purple-color);
    color: var(--gray-color);
}

.reports-select-inner .dropdown-link:hover {
    color: var(--cyan-color);
}
.reports-select-inner .dropdown-link.active:hover {
    color: var(--gray-color);
}


.reports-select-wrap button {
    padding: 0 15px;
    color: var(--gray-color);
    background-color: transparent;
    border: 1px solid var(--gray-color);
    border-radius: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;

    width: 60px;
    opacity: 0;
}

.reports-select-wrap svg {
    overflow: auto;
    /*z-index: 4#;*/
}

.reports-select-inner {

}

.opacityTrue {
    opacity: 1 !important;
}

/*-------------------------- Страница аплоада документов --------------------------------*/

.document-person-form .anim-line {
    background-color: var(--gray-color) !important;
}

.document-person {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.document-person .form-group {
    opacity: 0;
}

.document-person_item span {
    color: var(--gray-color);
}

.document-person_header {
    margin-bottom: 20px;
    padding-bottom: 4px;
    color: var(--gray-color);
}

.document-person_uploaded-file {
    max-height: 200px;
    max-width: 200px;
}

.document-person_uploaded-file img {
    max-height: 200px;
    max-width: 200px;
    object-fit: contain;
}

.jsUploadDocuments label {
    cursor: pointer;
}



/*--------------------------МЕДИА-МОБИЛКИ < md --------------------------------*/

@media (max-width: 991.98px) {
    .hide-less-md {
        display: none;
    }

    .hide-more-md {
        display: inline-block;
    }

    .half-height-window {
        height: auto;
        padding: 70px 15px 20px;
    }

    .second-window {
        margin: 0 15px;
        padding: 20px 0 60px;
    }

    .second-window-black, .second-window-white {
        padding: 20px 0 60px;
        margin: 0;
    }

    .second-window-black-padding {
        padding: 20px 20px 60px;
    }

    .switcher-offsets {
        margin: 0 15px 10px;
    }

    .document-person {
        flex-direction: column;
        align-items: unset;
    }

    .document-person_left {
        margin-bottom: 20px;
    }
}

/*по высоте*/
@media (max-height: 1100px) {
    .half-height-window {
        height: auto;
    }
}



/*-------------------------------------ТУТ АККАУНТ ИНФО СТИЛИ----------------------------------------------*/

/*.selected-menu-view-wrapper {*/
/*    overflow: scroll !important;*/
/*}*/

/*.reports-main-table {*/
/*    overflow: hidden;*/
/*}*/
.reports-main-table_body {
    overflow: hidden;
}

a.button-white span {
    text-align: center;
}

a.button-gray {
    background-color: #393939 !important;
    border: 1px solid #393939;

}

a.button-gray span {
    color: var(--gray-color) !important;
}

#element::-webkit-scrollbar {
    display: none;
}


.account-black-wrapper {
    position: relative;
    background-color: var(--black-color);
    width: 100%;
    padding: 40px 40px 160px;

    overflow-y: auto;
    height: 100%;
}

.section-toggle {
    /*border-top: 1px solid var(--grey-opa02);*/
    padding-top: 30px;
    padding-bottom: 80px;
    position: relative;
}

.section-toggle-mt-auto {
    border-top: none;
    margin-top: auto;
    padding-bottom: 0;
}

.withdraw-method {
    scrollbar-width: none;
}

.buttons-wrapper {
    display: flex;
    overflow: scroll;
    scrollbar-width: none;
}

.buttons-wrapper::-webkit-scrollbar {
    /*width: 0;*/
}

.buttons-wrapper::-webkit-scrollbar {
    display: none;
}

.button {
    min-width: 50px;
    height: 60px;
    font-size: 16px;
    padding: 0;
    background-color: transparent;
    border: 1px solid var(--gray-color);
    border-radius: var(--radius50);
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;

    /*width: 60px;*/
    opacity: 0;
    overflow: hidden;
}

.button a {
    padding: 0;
    color: var(--gray-color);
    white-space: nowrap;
    line-height: 60px;
    width: 100%;

    opacity: 0;
    /*width: 0;*/
}

.button.active {
    border: none;
    background-color: var(--purple-color);
}

.button.active-white {
    border: none;
    background-color: var(--gray-color);
    color: var(--purple-color);
}

.button.active-white a {
    color: var(--purple-color);
}

.button-first {
    margin-right: 20px;
}

.button-two {
    margin-left: 20px;
    margin-right: auto;
}

.button-last-wrap {
    width: 190px;
    /*margin-left: 10px;*/
}

.button-three {
    margin-left: 10px;
}

.account-black-wrapper input {
    border: none !important;
}

.reportsMain {
    overflow: auto;
}

/*.account-black-wrapper {*/
/*    overflow-y: scroll;*/
/*}*/

@media (max-width: 991.98px) {
    /*.content-main {*/
    /*    overflow: auto;*/
    /*    position: relative;*/
    /*}*/

    /*.reportsMain {*/
    /*    overflow: auto;*/
    /*    height: 100%;*/
    /*}*/

    .az-header {
        width: 100%;
    }

    .account-black-wrapper {
        padding: 70px 15px 60px;
        /*overflow-y: scroll;*/
    }

    .buttons-wrapper {
        overflow: scroll;
    }

    .button {
        height: 50px;
        font-size: 14px;
        white-space: nowrap;
    }

    .button-first {
        margin-right: 10px;
    }

    .button a {
        line-height: 50px;
        padding: 15px 20px;
    }

    .button-two {
        margin-left: 10px;
    }
}


.footer-links {
    z-index: 1;
    position: absolute;
    bottom: 20px;
    left: 15px;
    /*color: darkorange;*/
}

.footer-links a {
    color: var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
}

/*.form-input-error{*/
/*    display:none;*/
/*    color:red;*/
/*}*/
/*.span-red{*/
/*    color:red;*/
/*}*/

.emptyError {
    text-align: left;
    margin-top: 6px;
    color: red;
    font-size: 12px;
    font-family: Raleway, sans-serif;
    display: inline-block;
    clear: both;
    width: 100%;
    font-weight: 500;
    position: absolute;
    left: 0;
    bottom: -16px;

    opacity: 0;
}

/*.some-form__hint {*/
/*    z-index: 1;*/
/*    opacity: 0;*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    margin-top: -6px;*/
/*    padding: 0 12px;*/
/*    width: 100%;*/
/*    background: #f45a57;*/
/*    color: #fff;*/
/*    font-size: 12px;*/
/*    line-height: 1.333333;*/
/*    -webkit-transition: all .3s ease;*/
/*    -o-transition: all .3s ease;*/
/*    transition: all .3s ease;*/
/*}*/

.emailConfirmHasError .emptyError {
    opacity: 1;
}

.formGroupValidateHasError .emptyError {
    opacity: 1;
}
.formGroupValidateAgreeTrue .emptyError {
    opacity: 1;
}

.no-banks-alert {
    display: flex;
    flex-direction: column;
    color: var(--gray-color);
}

.no-banks-alert a {
    color: var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
    width: max-content;
}

.export-links a {
    color: rgba(240, 240, 240, .4);
    border-bottom: 1px solid rgba(240, 240, 240, .4);
    font-size: 12px;
}

.export-links a:hover {
    color: var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
}

.export-report:first-child {
    margin-bottom: 4px;
}


/*-------------------------------загрузки-------------------------------*/
.download-hide-link {
    color: var(--gray-color);
    width: 100%;
    display: flex;
}

.download-hide-link:hover {
    color: var(--cyan-color);
}
@media (min-width: 991.98px) {
    .download-hide-link {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .download-text {
        display: none;
    }
}

/*.form-group:hover {*/
/*    border: 1px solid red;*/
/*    transition: all .5s;*/
/*}*/


/*.reportsMain::-webkit-scrollbar {*/
/*    background-color: red;*/
/*    width: 16px;*/
/*    height: 16px;*/
/*    z-index: 9999999;*/
/*}*/

/*.reportsMain::-webkit-scrollbar-thumb {*/
/*    background: greenyellow;*/
/*    border-radius: 16px;*/
/*    box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, 0.25),*/
/*    inset -2px -2px 2px rgba(0, 0, 0, 0.25);*/
/*}*/

/*.reportsMain::-webkit-scrollbar-track {*/
/*    background: darkred;*/
/*}*/












