* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Inter;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}
input,
textarea {
    background-color: #f8fafd;
    border: 2px solid #e7ecf3;
    border-radius: 10px;
    font-size: 16px;
    padding: 20px;
    resize: none;
    width: 100%;
}
input:focus,
textarea:focus {
    border: 2px solid #a7ccff;
}
.disable--selection {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    -webkit-user-select: none;
    user-select: none;
}
.general-wrapper {
    margin: 0 auto;
    max-width: 800px;
    padding: 20px 20px 60px;
}
@media screen and (max-width: 450px) {
    .general-wrapper {
        padding: 20px 10px 60px;
    }
}
.position-center__absolute {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.position-center__fixed {
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
}
.text-overflow-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
}
.ui__alert-modal {
    background: red;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px #26248340;
    left: 50%;
    max-width: 450px;
    padding: 60px 30px;
    position: fixed;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 20px);
    z-index: 99;
}
.ui__alert-modal .quit {
    font-size: 27px;
    position: absolute;
    right: 20px;
    top: 10px;
}
.ui__alert-modal .alert-container__info--city {
    font-size: 28px;
    font-weight: 500;
}
.ui__alert-blur {
    -webkit-backdrop-filter: brightness(0.5);
    backdrop-filter: brightness(0.5);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 98;
}
.ui__background--cover {
    background-size: cover;
}
.ui__background--contain,
.ui__background--cover {
    background-position: 50%;
    background-repeat: no-repeat;
}
.ui__background--contain {
    background-size: contain;
}
.ui__circle-radius {
    border-radius: 50%;
}
.ui__cols {
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
}
.ui__common-scrollbar::-webkit-scrollbar-track {
    background: #e0e0e0;
}
.ui__common-scrollbar::-webkit-scrollbar-thumb {
    background: #949494;
    border-radius: 14px;
}
.ui__common-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.ui__display-align-bottom {
    align-items: flex-end;
    display: flex;
}
.ui__display-align-center {
    align-items: center;
    display: flex;
}
.ui__display-justify-between {
    display: flex;
    justify-content: space-between;
}
.ui__display-center {
    align-items: center;
    display: flex;
    justify-content: center;
}
.ui__display-inline > * {
    display: inline;
}
.ui__overflow-hidden {
    overflow: hidden;
}
.ui__rows {
    display: flex;
    flex: 0 1 auto;
}
.index-page {
    position: relative;
}
.index-page__menu {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 10;
}
.index-page__menu--icon span {
    background-color: #909090;
    border-radius: 10px;
    height: 4px;
    margin-bottom: 5px;
    width: 30px;
}
.index-page__menu--nav {
    background-color: #21201f;
    border-radius: 7px 0 7px 7px;
    position: absolute;
    right: 0;
    white-space: nowrap;
}
.index-page__menu--nav > * {
    border-bottom: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    padding: 15px 10px;
    text-decoration: none;
}
.index-page__menu--nav > :first-child {
    border-radius: 7px 0 0 0;
}
.index-page__menu--nav > :last-child {
    border-radius: 0 0 7px 7px;
}
.index-page__menu--nav > .active,
.index-page__menu--nav > :hover {
    background-color: #615f5c;
}
.index-page__header--logo {
    max-width: 180px;
}
.index-page__header--info {
    color: #1d232e;
    font-size: 23px;
    font-weight: 500;
    margin-top: 30px;
    text-align: center;
}
.index-page__buttons {
    margin: 50px auto 0;
    max-width: 100%;
}
.index-page__buttons .buttons-wrapper {
    margin: 30px 0 40px;
}
@media screen and (max-width: 450px) {
    .index-page__buttons .buttons-wrapper {
        flex-direction: column;
        margin: 30px 0;
    }
    .index-page__buttons .buttons-wrapper .button + .button {
        margin-top: 10px;
    }
}
.index-page__buttons .info {
    margin: 0 0 20px;
}
.index-page__buttons .info.center {
    margin: -20px 0 0;
    text-align: center;
}
.index-page__buttons .info a {
    color: #007fff;
    font-size: 18px;
    text-decoration: none;
    text-decoration: initial;
}
@media (hover: hover) {
    .index-page__buttons .info a:hover {
        text-decoration: underline;
    }
}
.index-page__buttons .button {
    margin-block: 30px;
    width: 100%;
}
.index-page__buttons .button.addresses .notification {
    background-color: #007fff;
}
.index-page__buttons .title {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 50px;
    text-align: center;
    text-decoration: underline;
}
.index-page__login {
    margin-top: 50px;
}
.index-page .version {
    bottom: 0;
    color: #8c8c8c;
    font-size: 14px;
    left: 50%;
    position: absolute;
    text-align: center;
    transform: translate(-50%);
}
.header-go-back {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}
.header-go-back__arrow {
    cursor: pointer;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
}
.header-go-back__title {
    font-weight: 500;
}
.therms__content > * + * {
    margin-top: 20px;
}
.therms__content--item {
    padding-left: 20px;
}
.therms__content--item .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-left: -20px;
}
.therms__content--item li {
    margin-left: 20px;
}
.therms__content--item ol {
    list-style-type: lower-alpha;
}
.button {
    background-color: #007fff;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    margin-top: 10px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    width: fit-content;
}
@media (hover: hover) {
    .button:hover {
        background-color: #1386fa;
    }
}
.button.red {
    background-color: #eb2027;
}
@media (hover: hover) {
    .button.red:hover {
        background-color: #f02a2a;
    }
}
.button.white {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
    margin: 0 20px;
    max-height: 60px;
    max-width: 210px;
    min-height: 60px;
}
.button.white svg {
    height: 40px;
    margin: 0 15px 0 -25px;
    min-height: 40px;
    min-width: 80px;
    width: 80px;
}
.button.white:hover {
    background-color: #21201f;
    color: #fff;
}
.button.white:hover:first-child svg {
    filter: invert(1);
}
.button a,
.button span {
    padding: 16px 32px;
}
.button a {
    color: #fff;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.button .notification {
    background: #eb2027;
    border: 2px solid #fff;
    font-size: 12px;
    font-weight: 500;
    height: 23px;
    left: 30px;
    position: absolute;
    width: 23px;
}
.button.inactive {
    filter: grayscale(1);
    opacity: 0.4;
    pointer-events: none;
}
.support__title {
    margin-top: 60px;
}
.support__input {
    margin-top: 20px;
    width: 100%;
}
.support__input--title {
    margin-bottom: 15px;
    margin-left: 5px;
}
.support__input textarea {
    height: 220px;
}
.support__content {
    margin: 0 auto;
    width: calc(100% - 20px);
}
.support .button {
    margin-top: 40px;
    max-width: 130px;
    width: 100%;
}
.res-message {
    border: 1px solid;
    border-radius: 5px;
    left: 50%;
    opacity: 0;
    padding: 5px 20px;
    position: fixed;
    transform: translate(-50%);
    z-index: 1000;
}
.res-message--success {
    background-color: #dff2bf;
    border-color: #b2d880;
    color: #4f8a10;
}
.res-message--error {
    background-color: #ffbaba;
    border-color: red;
    color: #d8000c;
}
table {
    border-collapse: collapse;
    width: 100%;
}
table td,
table th {
    border: 1px solid #ddd;
    padding: 8px;
}
table th {
    background-color: #f2f2f2;
    text-align: left;
}
table tr:nth-child(odd) {
    background-color: #fff;
}
table tr:nth-child(2n) {
    background-color: #f2f2f2;
}
.no_content {
    font-size: 30px;
    font-weight: 500;
    margin-top: 40px;
    text-align: center;
}
