@charset "UTF-8";

/*========================== reset.css ==========================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, time {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

a, input, select, textarea {
    outline: none;
}

img, input {
    border: none;
    height: auto;
    max-width: 100%;
}

button, a.button {
    border: 0;
    cursor: pointer;
    outline: none;
    padding: 0;
}
a.button {
    display: block;
    padding: 9px;
}

input[type=submit], button[type=submit] {
    cursor: pointer;
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("/fonts/Roboto-Bold/Roboto-Bold.woff") format("woff"),
        url("/fonts/Roboto-Bold/Roboto-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("/fonts/roboto-regular/roboto-regular.woff") format("woff"),
        url("/fonts/roboto-regular/roboto-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    src: url("/fonts/Roboto-SemiBold/Roboto-SemiBold.woff") format("woff"),
        url("/fonts/Roboto-SemiBold/Roboto-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: AzeretMono;
    font-display: swap;
    src: url("/fonts/AzeretMono-Bold/AzeretMono-Bold.woff") format("woff"),
        url("/fonts/AzeretMono-Bold/AzeretMono-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}


* {
    box-sizing: border-box;
}

:root {
    --font-family: Roboto;
    --second-family: AzeretMono;
    --brs: .5rem;
    --bone: #fff5e0;
    --dark-grey: #333;
    --dark-grey-hover: #575454;
    --light-grey: #eceae6;
    --blue: #2995ae;
    --green: #104a55;
    --green-hover: #02272e;
    --context-grey: #777;
    --grey-border: #ccc6c6;
    --orange: #ff9442;
    --orange-hover: #d0630f;
    --black: #021518;
    --middle-grey: #d9d9d9;
    --white: #f2f1ee;
    --placeholder: #b0b0b0;
}

html {
    font-size: 16px;
}

html[lang="el"] {
    font-size: 17px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    background: var(--light-grey);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;

    @media (max-width: 630px) {
        font-size: .81rem;
    }
}

input {
    font-family: var(--font-family);
}

button {
    font-family: var(--font-family);
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: .4s;
}

h1, .h1 {
    color: var(--green);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(17px, 2vw, 24px);
    line-height: 145%;
}

h6, .h6 {
    color: var(--dark-grey);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
}

.orange-btn {
    align-items: center;
    background: var(--orange);
    border-radius: var(--brs);
    color: var(--dark-grey);
    display: inline-flex;
    font-weight: 600;
    font-size: 1rem;
    justify-content: center;
    line-height: 150%;
    padding: .5rem;
    text-align: center;
    transition: .4s;
}

.orange-btn:disabled {
    background: var(--placeholder);
    cursor: not-allowed;
}

.orange-btn:hover {
    background: var(--orange-hover);
    color: var(--white);
}

.orange-btn--icon {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: .5rem;
    text-align: center;
}

.orange-btn--icon svg {
    height: 1.25rem;
    stroke: #333333;
    transition: .4s;
    width: 1.25rem;
}

.orange-btn--icon:hover svg {
    stroke: var(--white);
}

.blue-btn {
    background: var(--green);
    border-radius: var(--brs);
    color: var(--bone);
    font-size: 1rem;
    font-weight: 600;
    padding: .5rem;
    text-align: center;
    transition: .4s;
}

.blue-btn:hover {
    background: var(--green-hover);
}

.green-btn {
    align-items: center;
    background: var(--green);
    border-radius: var(--brs);
    color: var(--bone);
    display: inline-flex;
    font-weight: 600;
    font-size: .93rem;
    justify-content: center;
    line-height: 133%;
    text-align: center;
}

.wrapper {
    margin: 0 auto;
    max-width: 90rem;
    width: 100%;
}

.breadcrumbs {
    display: flex;
    gap: .5rem;
    margin-top: 1.25rem;
}

.breadcrumbs li {
    color: #888;
    font-size: .9375rem;
    line-height: 133%;
}

.breadcrumbs li:before {
    content: '/';
    margin-right: .5rem;
}

.breadcrumbs li:first-child:before {
    display: none;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 68.5rem;
    width: 100%;
}

@media (max-width: 1260px) {
    .container {
        max-width: 62.5rem;
    }
}

@media (max-width: 1030px) {
    .container {
        max-width: 50rem;
    }
}

@media (max-width: 830px) {
    .container {
        max-width: 37.5rem;
    }
}

@media (max-width: 630px) {
    .container {
        padding-right: 1rem;
        padding-left: 1rem;
        max-width: 100%;
    }
}

.header {
    background: #fff;
    padding-bottom: .875rem;
    padding-top: .875rem;
}

.header__container {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.logo {
    display: block;
    max-width: 7.43rem;
    width: 100%;
}

.logo img {
    display: block;
}

.header__right {
    align-items: center;
    display: flex;
    gap: 1.5rem;
}

.support-link {
    background: url(../images/headphones.svg) no-repeat left center;
    color: var(--dark-grey);
    font-size: .875rem;
    line-height: 143%;
    padding-left: 2rem;
}

.support-link:hover {
    color: var(--dark-grey-hover);
}

.log-in {
    background: url(../images/log-out.svg) no-repeat left center;
    color: var(--dark-grey);
    font-size: .9375rem;
    line-height: 133%;
    padding-left: 2rem;
}

.log-in:hover {
    color: var(--dark-grey-hover);
}

.header-phone {
    background: url(../images/icon_user.svg) no-repeat left center;
    color: var(--dark-grey);
    font-size: .875rem;
    font-weight: 600;
    line-height: 143%;
    padding-left: 2rem;
}

.title-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
}

.currency {
    align-items: center;
    display: flex;
    font-size: .875rem;
    gap: .5rem;
    line-height: 143%;
}

.currency__img {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.currency__grey {
    color: var(--context-grey);
    text-transform: uppercase;
}

.currency__val {
    color: var(--green);
    font-weight: 600;
}

.transaction-attention {
    background: #DEE3DB;
    border-radius: 12px;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding: 1.25rem;
}
.transaction-attention .title {
    font-weight: bold;
    display: block;
}
.transaction-attention .button-block {
    float: right;
    margin-top: -15px;
    margin-right: 15px;
}
.transaction-attention .orange-btn {
    padding: 8px 40px;
}
.transaction-attention .message {
    margin-top: 10px;
}

.index-withdrawal-attention {
    background: #eefae8;
    border: 1px solid #8fcf7d;
    border-radius: 6px;
    color: #557907;
}

.index-withdrawal-attention .title {
    color: #3f650b;
}

.two-inputs__wrap.is-invalid {
    background: #fffaf3;
    border-color: #d8b179;
    box-shadow: 0 0 0 2px rgba(216, 177, 121, .16);
}

.two-inputs__wrap.is-invalid .two-inputs__currency {
    color: #806448;
}

.buy-amount-adjustment__message {
    max-width: 620px;
    margin: 0 auto 28px;
    color: #6d6d6d;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.buy-amount-adjustment__values {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    max-width: 650px;
    margin: 0 auto 30px;
}

.buy-amount-adjustment__values > div {
    padding: 20px;
    border: 1px solid #dedbd8;
    border-radius: 12px;
    background: #f8f7f5;
    text-align: center;
}

.buy-amount-adjustment__values span {
    display: block;
    margin-bottom: 7px;
    color: #777;
    font-size: 14px;
}

.buy-amount-adjustment__values strong {
    color: #0e5360;
    font-size: 25px;
    line-height: 1.2;
}

.buy-amount-adjustment__arrow {
    color: #239ab2;
    font-size: 30px;
    line-height: 1;
    text-align: center;
}

.buy-amount-adjustment__suggested {
    border-color: #a9d9e2 !important;
    background: #edf7f8 !important;
}

.buy-amount-adjustment__buttons {
    justify-content: center;
    gap: 16px;
}

@media (max-width: 640px) {
    .buy-amount-adjustment__values {
        grid-template-columns: 1fr;
    }

    .buy-amount-adjustment__arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .buy-amount-adjustment__buttons {
        flex-direction: column-reverse;
    }
}


.transaction {
    background: #ede3d9;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding: 1.25rem;
}

.transaction__circle {
    align-items: center;
    background: #f5f5f4;
    border-radius: 50%;
    display: flex;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 2.875rem;
    justify-content: center;
    width: 2.875rem;
}

.transaction__circle img {
    height: 1.25rem;
    width: 1.25rem;
}

.transaction__item {
    font-size: .875rem;
    line-height: 143%;
}

.transaction__item--grid {
    display: grid;
    grid-column-gap: 1.25rem;
    grid-template-columns: 2.875rem 1fr;
}

@media (max-width: 1030px) {
    .transaction {
        grid-template-columns: repeat(3, 1fr);
    }
    .transaction__item:nth-child(2) {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }
    .transaction__item {
        font-size: .8125rem;
    }

    .transaction__item:last-child {
        grid-row: 1 / 2;
        grid-column: 3 / 5;
        margin-left: auto;
    }
}

@media (max-width: 630px) {
    .transaction {
        gap: .75rem;
    }
    .transaction__item--grid {
        display: block;
    }
    .transaction__circle {
        display: none;
    }
}

.transaction__item--grid .transaction__title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.transaction__item--grid .transaction__val {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.transaction__title {
    align-items: center;
    color: var(--context-grey);
    display: flex;
    gap: 0.25rem;
}

.transaction__title > .help,
.two-inputs__label > .help {
    display: inline-flex;
    flex: 0 0 1.0625rem;
}

.transaction__val {
    align-items: center;
    color: var(--green);
    display: flex;
    font-weight: 600;
    gap: .5rem; 
    margin-top: 2px;

}
.transaction__val .coin-image {
    width: 24px;
    height: 24px;
}


.transaction__blue-btn {
    width: 11.25rem;
}

@media (max-width: 630px) {
    .transaction__blue-btn {
        font-size: .9375rem;
        width: 7.5rem;
    }
}

.help {
    border-radius: 50%;
    cursor: pointer;
    height: 1.0625rem;
    width: 1.0625rem;
}

.help img {
    display: block;
}

@media (hover:hover) {

    .help:hover:after {
        background: var(--bone);
        border-radius: var(--brs);
        color: var(--dark-grey);
        content: attr(data-title);
        line-height: 150%;
        max-width: 20rem;
        padding: .5rem 1rem;
        position: absolute;
        width: 100%;
        z-index: 1;
    }
}

@media (max-width: 1260px) {

    @media (hover:hover) {
    
        .help:hover:after {
            max-width: 15rem;
        }
    }
}

@media (max-width: 1030px) {
    
    @media (hover:hover) {
    
        .help:hover:after {
            right: 6rem;
        }
    }
}

.search-form {
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    border-radius: var(--brs);
    margin-top: 1.25rem;
    position: relative;
}

.search-form__input {
    background: transparent;
    color: var(--dark-grey);
    display: block;
    font-size: .875rem;
    height: 3.125rem;
    padding: 0 .875rem;
    transition: .4s;
    width: 100%;
}

.search-form__input::placeholder {
    opacity: 1;
}

.search-form__input::placeholder,
.search-form__input::-webkit-input-placeholder,
.search-form__input::-moz-placeholder,
.search-form__input:-ms-input-placeholder,
.search-form__input::-ms-input-placeholder {
    color: var(--grey-border);
}


.search-btn {
    background: transparent;
    height: 1.125rem;
    width: 1.125rem;
}

.search-btn svg {
    display: block;
    fill: var(--green);
    height: 1.125rem;
    width: 1.125rem;
}

.search-form__search-btn {
    position: absolute;
    right: 1.19rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.atm-empty-state {
    align-items: center;
    background: #eff8fa;
    border: 1px solid #b9dce5;
    border-radius: .75rem;
    display: flex;
    flex-direction: column;
    margin-top: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
}

.atm-empty-state__icon {
    align-items: center;
    background: #d9f0f4;
    border-radius: 50%;
    display: flex;
    height: 3rem;
    justify-content: center;
    margin-bottom: .75rem;
    width: 3rem;
}

.atm-empty-state__icon img {
    height: 1.5rem;
    width: 1.5rem;
}

.atm-empty-state h2 {
    color: var(--green);
    font-size: 1.25rem;
    margin: 0 0 .65rem;
}

.atm-empty-state p {
    color: var(--context-grey);
    line-height: 1.5;
    margin: 0 auto .5rem;
    max-width: 44rem;
}

.atm-empty-state__action {
    color: var(--black) !important;
    font-weight: 600;
}

.atm-empty-state__button {
    margin-top: 1rem;
}

.work-table {
    margin-top: 1.25rem;
    width: 100%;
}

@media (max-width: 1030px) {
    .work-table thead {
        display: none;
    }
}



.work-table th {
    color: #888;
    font-size: .875rem;
    line-height: 143%;
    padding-bottom: .75rem;
    text-align: left;
}

.work-table th:first-child {
    padding-left: 1.25rem;
}

.work-table tbody tr:nth-child(odd) {
    background: #f5f5f4;
}

.work-table tbody tr {
    transition: background-color .15s ease;
}



.work-table td {
    line-height: 150%;
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
    vertical-align: middle;
}

.work-table td:first-child {
    padding-left: 1.25rem;
}

.work-table td:last-child {
    padding-right: 1.25rem;
}



.work-table__address {
    color: var(--context-grey);
    font-size: .875rem;
}

.atm-search-highlight {
    background: rgba(255, 148, 66, .32);
    border-radius: .2rem;
    box-decoration-break: clone;
    color: inherit;
    font: inherit;
    padding: .05em .12em;
    -webkit-box-decoration-break: clone;
}

.work-table__link {
    color: var(--orange);
    font-weight: 600;
}

.atm-working-hours {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .375rem;
    min-width: 0;
    width: 100%;
    vertical-align: middle;
}

.atm-working-hours__calendar {
    display: inline-flex;
    width: 1.875rem;
    height: 1.875rem;
    flex: 0 0 1.875rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6e0e8;
    border-radius: .375rem;
    background: #fff;
    color: var(--orange);
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.atm-working-hours__calendar:hover,
.atm-working-hours__calendar:focus,
.atm-working-hours__calendar.is-active {
    border-color: var(--orange);
    background: rgba(255, 148, 66, .08);
    color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 148, 66, .16);
    outline: none;
}

.atm-working-hours__calendar-icon {
    width: 1rem;
    height: 1rem;
}

.atm-working-hours-tooltip {
    position: absolute;
    z-index: 10020;
    min-width: 13.75rem;
    max-width: min(20rem, calc(100vw - 1.25rem));
    padding: .875rem 1rem;
    border: 1px solid #d6e0e8;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 1rem 2.5rem rgba(15, 35, 52, .18);
    color: var(--dark-grey);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.55;
    white-space: pre-line;
}

.atm-working-hours__status {
    white-space: nowrap;
}

.atm-working-hours__status--open {
    color: var(--orange);
}

.atm-working-hours__status--closed {
    color: var(--context-grey);
}

.atm-working-hours__next {
    box-sizing: border-box;
    color: var(--context-grey);
    flex: 0 0 100%;
    font-size: .8125rem;
    font-weight: 500;
    padding-left: 2.25rem;
    white-space: nowrap;
}

.atm-working-hours__status--closing-soon,
.atm-working-hours__status--opening-soon {
    color: var(--orange);
}

.work-table__time {
    color: var(--dark-grey);
}

.work-table__orange-btn {
    margin-left: auto;
    width: 11.25rem;
}

.work-table__row {
    align-items: center;
    display: flex;
    gap: .375rem;
}

.work-table__banknotes {
    color: var(--dark-grey);
}

.work-table__availability {
    min-width: 0;
}

.work-table--atm-selection {
    table-layout: fixed;
}

.work-table--atm-selection th:nth-child(1),
.work-table--atm-selection td:nth-child(1) {
    width: 28%;
}

.work-table--atm-selection th:nth-child(2),
.work-table--atm-selection td:nth-child(2) {
    width: 24%;
}

.work-table--atm-selection th:nth-child(3),
.work-table--atm-selection td:nth-child(3) {
    width: 48%;
}

.work-table--atm-selection .work-table__availability {
    flex: 1 1 auto;
}

.work-table--atm-selection .work-table__banknotes {
    white-space: nowrap;
}

.work-table__buy-limit {
    display: inline-flex;
    max-width: 100%;
    margin-top: .5rem;
    padding: 4px .6875rem;
    border: 1px solid #30912d;
    border-radius: 6px;
    background: #eefae8;
    color: #557907;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.35;
    white-space: nowrap;
}

@media (max-width: 1030px) {
    .work-table--atm-selection {
        table-layout: auto;
    }

    .work-table--atm-selection th:nth-child(1),
    .work-table--atm-selection td:nth-child(1),
    .work-table--atm-selection th:nth-child(2),
    .work-table--atm-selection td:nth-child(2),
    .work-table--atm-selection th:nth-child(3),
    .work-table--atm-selection td:nth-child(3) {
        width: auto;
    }

    .work-table--atm-selection .work-table__banknotes {
        white-space: normal;
    }

    .work-table__buy-limit {
        white-space: normal;
    }

    .work-table tbody tr {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 1.25rem;
    }

    .work-table tbody td {
        display: block;
        padding-bottom: 0;
        padding-top: 0;
        text-align: left;
    }

    .work-table td:first-child {
        padding-left: 0;
    }

    .work-table td:last-child {
        padding-right: 0;
    }

    .work-table tbody td:nth-child(3) {
        grid-column: 1 / -1;
    }

    .--flex-column {
        align-items: flex-start;
        flex-direction: column;
    }

    .work-table__orange-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

.blue-btn--center {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.25rem;
    padding: .5rem 3rem;
}

.map {
    border-radius: .75rem;
    margin-top: 1.25rem;
    overflow: hidden;
}

.atm-map {
    position: relative;
    min-height: 20rem;
    border: 1px solid #d8e1e8;
    border-radius: .75rem;
    background: #dce7ec;
    overflow: hidden;
}

.atm-map__surface {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.atm-map.is-empty .atm-map__surface {
    display: none;
}

.work-table tbody tr.is-map-highlighted {
    background: #ffe7cf;
}

.footer {
    background: var(--black);
    margin-top: 2.5rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.footer-menu {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.footer-menu__item {
    font-weight: 600;
    font-size: .875rem;
}

.footer-menu__link {
    color: var(--bone);
}

.footer-menu__link:hover {
    color: #fff;
}

.footer-contacts {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    line-height: 143%;
    margin-top: 1.25rem;
}

.footer-mail, .footer-phone, .footer-tg {
    color: var(--middle-grey);
    padding-left: 2.25rem;
}

.footer-mail:hover,
.footer-phone:hover,
.footer-tg:hover {
    color: var(--bone);
}

.footer-phone {
    background: url(../images/phone-icon.svg) no-repeat left center;
}

.footer-mail {
    background: url(../images/mail-icon.svg) no-repeat left center;
}

.footer-tg {
    background: url(../images/tg-icon.svg) no-repeat left center;
}

.footer-copy {
    color: var(--context-grey);
    font-size: 0.75rem;
    line-height: 133%;
    margin-top: 1.25rem;
    text-align: center;
}

.footer-regulation {
    margin-left: auto;
    margin-right: auto;
    max-width: 68ch;
}

@media (max-width: 1030px) {
    .footer-menu {
        gap: 2rem;
    }
}

@media (max-width: 830px) {
    .footer-menu {
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 630px) {
    .footer-contacts {
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }
}

.overlay {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: none;
    inset: 0;
    position: fixed;
    z-index: 90;
}

.popup {
    background: var(--light-grey);
    border-radius: var(--brs);
    display: none;
    left: 50%;
    overflow: hidden;
    position: fixed;
    max-width: 33.625rem;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 91;
}

.popup__header {
    background: var(--green);
    padding: 0.75rem;
    position: relative;
}

.popup__logo {
    display: block;
    margin: 0 auto;
    width: 6rem;
}

.close-btn {
    cursor: pointer;
    display: block;
    fill: var(--bone);
    height: 1rem;
    width: 1rem;
}

.popup__close-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.popup__content {
    padding: 1.5rem;
    padding-bottom: 2.5rem;
}

.popup__title {
    color: var(--green);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 133%;
    text-align: center;
}

.myform__label {
    color: var(--context-grey);
    display: block;
    font-size: .875rem;
    line-height: 143%;
    margin-top: 1.5rem;
}

.myform__input {
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    border-radius: var(--brs);
    display: block;
    font-size: 1rem;
    height: 3.25rem;
    padding: 0 1rem;
    width: 100%;
}

.myform__orange-btn {
    display: table;
    margin: 1.5rem auto 0;
    width: 15rem;
}

.auth-remember {
    margin-top: 1rem;
}

.auth-remember__label {
    align-items: center;
    color: var(--dark-grey);
    cursor: pointer;
    display: inline-flex;
    font-size: .875rem;
    font-weight: 600;
    gap: .55rem;
    line-height: 1.4;
}

.auth-remember__input {
    accent-color: var(--blue);
    cursor: pointer;
    flex: 0 0 auto;
    height: 1.05rem;
    margin: 0;
    width: 1.05rem;
}

.auth-remember__input:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.auth-remember__note {
    color: var(--context-grey);
    font-size: .75rem;
    line-height: 1.4;
    margin-left: 1.6rem;
    margin-top: .2rem;
}

.popup__footer {
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.popup__link {
    color: var(--blue);
}

.popup__create {
    color: var(--context-grey);
}

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

.account-list {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 1.5rem;
}

.account-list__item {
    display: flex;
    font-size: .875rem;
    gap: .5rem;
}

@media (min-width: 1031px) {
    .account-list__item--transaction-limit {
        white-space: nowrap;
    }
}

@media (max-width: 1030px) {
    .account-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .account-list__item:first-child {
        flex-direction: column;
        grid-column: 1 / -1;
    }
}

.account-list__gray {
    color: var(--context-grey);
}

.account-list__str {
    color: var(--green);
    font-weight: 600;
}

.convert-box__wrap {
    display: flex;
    justify-content: center;
}

.convert-box__orange-btn {
    display: table;
    height: 3.25rem;
    margin: 1rem auto 0;
    width: 15rem;
}

.convert-box {
    background: var(--white);
    border: 1px solid var(--green);
    border-radius: .75rem;
    color: var(--context-grey);
    padding: 1.25rem;
}

@media (max-width: 1030px) {
    .convert-box {
        margin-top: 3rem;
    }
}

.tabs {
    background: var(--light-grey);
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    padding: .375rem;
}

.tabs__item {
    border-radius: .5rem;
    font-weight: 600;
    line-height: 150%;
    min-width: 9.25rem;
    text-align: center;
}

@media (max-width: 630px) {
    .tabs__item {
        font-size: .93rem;
    }
}

.tabs__item.is-active .tabs__link {
    background: var(--green);
    color: var(--bone);
}

.tabs__link {
    background: transparent;
    border-radius: .5rem;
    color: var(--green);
    display: block;
    padding: .5rem;
    transition: .4s;
}

.custom-select {
    position: relative;
}

.custom-select__val {
    background: #f5f5f4 url(../images/chevron-bottom.svg) no-repeat right 1.375rem center;
    cursor: pointer;
    padding-right: 3rem !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select__item {
    cursor: pointer;
    transition: .4s;
}

.custom-select__item:hover, .custom-select__item.is-active {
    background: var(--white-hover);
}

.custom-select__val, .custom-select__item {
    align-items: center;
    border: 1px solid var(--grey-border);
    border-radius: .5rem;
    display: flex;
    grid-gap: .75rem;
    line-height: 150%;
    overflow: hidden;
    padding: .875rem 1rem;
}

@media (max-width: 630px) {
    .custom-select__val, .custom-select__item {
        padding: .625rem;
    }
}

.custom-select__name {
    color: #144753;
    font-weight: 600;
}

@media (max-width: 630px) {
    .custom-select__name {
        font-size: .93rem;
    }
}

.custom-select__grey {
    color: var(--context-grey);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 630px) {
    .custom-select__grey {
        font-size: .68rem;
    }
}

.convert-box__text {
    color: var(--context-grey);
    font-size: .875rem;
    line-height: 143%;
    margin-top: 1rem;
}

.first-section__container {
    align-items: center;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1030px) {
    .first-section__container {
        display: block;
    }
}

.custom-select__choose {
    background: var(--white);
    border: 1px solid var(--grey-border);
    display: none;
    left: 0;
    max-height: 12.5rem;
    overflow-y: auto;
    padding: .5rem;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
}

.custom-select__choose .custom-select__item + .custom-select__item {
    margin-top: .625rem;
}

.two-inputs {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
}

.two-inputs__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.two-inputs__label {
    align-items: center;
    display: flex;
    font-size: .875rem;
    gap: .25rem;
}

.two-inputs__wrap {
    border: 1px solid var(--grey-border);
    border-radius: .5rem;
    margin-top: .25rem;
    position: relative;
}

.two-inputs__input {
    background: transparent;
    color: var(--dark-grey);
    display: block;
    height: 3.25rem;
    padding: 1rem;
    padding-right: 3rem;
    text-align: left;
    width: 100%;
}

@media (max-width: 630px) {
    .two-inputs__input {
        height: 2.5rem;
    }
}

.two-inputs__currency {
    color: var(--green);
    font-size: .875rem;
    font-weight: 600;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase;
}

.info {
    background: var(--white);
    border-radius: var(--brs);
    padding: 1.25rem;
}

.info__header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.change-btn {
    background: rgba(41, 149, 174, 0.12) url(../images/routing-icon.svg) no-repeat left 12px center;
    border: 1px solid rgba(41, 149, 174, 0.2);
    border-radius: .5rem;
    font-weight: 600;
    line-height: 143%;
    padding: .25rem .75rem .25rem 2.5rem;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.change-btn:hover,
.change-btn:focus-visible {
    background-color: rgba(41, 149, 174, 0.22);
    border-color: rgba(41, 149, 174, 0.46);
    box-shadow: 0 4px 14px rgba(41, 149, 174, 0.16);
    color: #1b7f94;
}

.change-btn:active {
    background-color: rgba(41, 149, 174, 0.3);
    box-shadow: none;
}

.contacts-list {
    margin-top: 1rem;
    min-width: 0;
}

.contacts-list__item {
    min-width: 0;
    padding-left: 1.75rem;
}

.contacts-list__item + .contacts-list__item {
    margin-top: 1rem;
}

.contacts-list__title {
    color: var(--context-grey);
    font-size: .875rem;
    line-height: 143%;
}

.contacts-list__strong {
    color: var(--green);
    font-weight: 600;
    line-height: 150%;
    min-width: 0;
    overflow-wrap: anywhere;
}

.contacts-list__strong a {
    color: var(--orange);
}

.atm-directions-link {
    align-items: center;
    display: inline-flex;
    gap: .625rem;
    justify-content: center;
    line-height: 1.25;
    padding: .75rem 1.25rem;
    width: fit-content;
}

.atm-directions-link__icon {
    fill: none;
    flex: 0 0 1.375rem;
    height: 1.375rem;
    stroke: currentColor;
    width: 1.375rem;
}

.atm-directions-link--address {
    margin-top: .75rem;
}

.--address {
    background: url(../images/location.svg) no-repeat left top;
}

.--working {
    background: url(../images/working-icon.svg) no-repeat left top;
}

.--banknotes {
    background: url(../images/banknotes-icon.svg) no-repeat left top;
}

.--wallet {
    background: url(../images/empty-wallet-change.svg) no-repeat left top;
}

.--cash {
    background: url(../images/cash-icon.svg) no-repeat left top;
}

.--coins {
    background: url(../images/coin-icon.svg) no-repeat left top;
}

.row {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.25rem;
}

.row .convert-box {
    margin-top: 0;
}

.choose-address {
    margin-top: 1.25rem;
}

.checkboxes-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1rem;
}

.checkboxes-grid__label {
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    border-radius: var(--brs);
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 1.25rem;
    position: relative;
    transition: .4s;
}

.checkboxes-grid__item,
.checkboxes-grid__label {
    min-width: 0;
}

.checkboxes-grid__label:after {
    background: transparent;
    border: 2px solid var(--grey-border);
    border-radius: .25rem;
    box-sizing: border-box;
    content: '';
    height: 1.5rem;
    opacity: 1;
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    transition: .4s;
    width: 1.5rem
}

.checkboxes-grid__top {
    align-items: center;
    display: flex;
    gap: .5rem;
}

.checkboxes-grid__input {
    display: none;
}

.checkboxes-grid__input:checked + .checkboxes-grid__label {
    border: 1px solid var(--orange);
}

.checkboxes-grid__input:checked + .checkboxes-grid__label::after {
    background: rgba(255, 148, 66, .2) url(../images/tick.svg) center / 1.125rem no-repeat;
    border-color: var(--orange);
}

.checkboxes-grid__img {
    width: 1.5rem;
}

.checkboxes-grid__name {
    color: var(--green);
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}

.checkboxes-grid__bottom {
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 143%;
    margin-top: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.checkboxes-grid__verif {
    background: var(--green);
    border-radius: .25rem;
    color: var(--bone);
    font-weight: 500;
    font-size: .75rem;
    padding: .125rem .5rem;
}

.checkboxes-grid__gray {
    color: var(--context-grey);
    font-size: .875rem;
    line-height: 143%;
    margin-top: .25rem;
}

.wallet-address {
    align-items: center;
    background: #dae6e6;
    border: 1px solid #b7d6db;
    border-radius: var(--brs);
    color: var(--blue);
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: .75rem;
    justify-content: center;
    line-height: 150%;
    min-height: 11rem;
}

#wallets-container {
    height: 100%;
    min-width: 0;
}

.wallet-empty {
    align-items: center;
    background: rgba(218, 230, 230, .28);
    border: 1px dashed #c9dcdf;
    border-radius: var(--brs);
    box-sizing: border-box;
    color: var(--context-grey);
    display: flex;
    flex-direction: column;
    gap: .4rem;
    height: 100%;
    justify-content: center;
    min-height: 11rem;
    padding: 1.5rem;
    text-align: center;
}

.wallet-empty__icon {
    background: rgba(39, 153, 181, .1);
    border-radius: 50%;
    box-sizing: border-box;
    fill: none;
    height: 2.25rem;
    margin-bottom: .25rem;
    padding: .45rem;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 2.25rem;
}

.wallet-empty__title {
    color: var(--green);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.4;
}

.wallet-empty__note {
    font-size: .78rem;
    line-height: 1.45;
    max-width: 24rem;
}

.mycheckbox {
    align-items: center;
    color: var(--dark-grey);
    display: flex;
    font-size: .875rem;
    justify-content: center;
    line-height: 143%;
    margin-top: 1.25rem;
}

.mycheckbox__label {
    padding-left: 1.5rem;
    position: relative;
}

.mycheckbox__label::after {
    background: #F5F5F4;
    border: 1px solid #777;
    border-radius: .25rem;
    content: '';
    height: 1rem;
    left: 0;
    position: absolute;
    transition: .4s;
    width: 1rem;
}

.mycheckbox__label::before {
    border-bottom: 1px solid var(--bone);
    border-left: 1px solid var(--bone);
    content: '';
    height: .3125rem;
    left: .25rem;
    opacity: 0;
    position: absolute;
    top: .25rem;
    transform: rotate(-45deg);
    transition: .4s;
    width: .56rem;
    z-index: 2;
}

.mycheckbox a {
    font-weight: 600;
}

.mycheckbox__label {
    cursor: pointer;
    display: block;
}

.mycheckbox__input {
    display: none;
}

.mycheckbox__input:checked + .mycheckbox__label::before {
    opacity: 1;
}

.mycheckbox__input:checked + .mycheckbox__label::after {
    background: var(--blue);
    border-color: var(--blue);
}

.info-icon {
    fill: var(--context-grey);
    height: 1.06rem;
    width: 1.06rem;
}

@media (max-width: 1030px) {
    .row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .checkboxes-grid {
        gap: .5rem;
        grid-template-columns: 1fr;
    }
    .wallet-address {
        background: var(--green);
        border: none;
        color: var(--bone);
        display: table;
        font-size: .93rem;
        line-height: 133%;
        margin: auto;
        min-height: 0;
        padding: .375rem .625rem;
    }
    #wallets-container {
        height: auto;
    }
    .wallet-empty {
        min-height: 7rem;
        padding: 1rem;
    }
    .wallet-address__img {
        display: none;
    }
    .checkboxes-grid__label {
        padding: 1rem;
    }
}

@media (max-width: 830px) {
    .account-list {
        grid-column-gap: .25rem;
        grid-row-gap: .5rem;
    }
    .account-list__item:not(:first-child) {
        flex-direction: column;
        text-align: center;
    }
    .convert-box {
        padding: 1rem;
    }
}

@media (max-width: 630px) {
    .log-in, .support-link, .header-phone {
        font-size: 0;
        height: 1.25rem;
        width: 1.25rem;
    }
    .logo {
        margin-left: auto;
        margin-right: auto;
    }
    .header__right {
        gap: 1.25rem;
    }
}

.qr-wrap {
    background: var(--white);
    border: 1px solid var(--green);
    border-radius: .75rem;
    padding: 2.5rem 1.25rem 1.25rem;
}

.qr-code__img {
    aspect-ratio: 1 / 1;
    display: block;
    margin: 0 auto;
    max-width: 15.125rem;
    width: 100%;
}

.qr-wrap__title {
    color: var(--green);
    font-weight: 600;
    line-height: 150%;
    margin-top: 1.25rem;
    text-align: center;
}

.qr-wrap__orange {
    color: var(--orange);
    font-weight: 600;
    font-size: .875rem;
    line-height: 143%;
    margin-top: .25rem;
    text-align: center;
}

.secur {
    align-items: center;
    background: #dee3db;
    border-radius: .75rem;
    display: flex;
    font-size: .875rem;
    justify-content: space-between;
    line-height: 143%;
    margin-top: 1.25rem;
    padding: .75rem 1.25rem;
}

.secur__left {
    color: var(--context-grey);
}

.secur__right {
    color: var(--green);
    font-weight: 600;
    margin: auto;
}

.qr-wrap__btns {
    display: flex;
    gap: 2px;
    margin-top: 1.25rem;
}

.qr-wrap__btns .orange-btn {
    border-radius: 0;
    flex-grow: 1;
}

.instructions {
    background: #dee3db;
    border-radius: .75rem;
    color: var(--dark-grey);
    line-height: 150%;
    padding: 1.25rem;
}

.list-numeric {
    counter-reset: item;
    margin-top: 1rem;
}

.list-numeric li {
    margin-bottom: .75rem;
    padding-left: 2rem;
    position: relative;
}

.list-numeric li::before {
    content: counter(item) '. ';
    counter-increment: item;
    left: 0;
    position: absolute;
    top: 0;
}

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

.white-box {
    background: var(--white);
    border-radius: .75rem;
    margin-top: 1.25rem;
    padding: 1.25rem;
}

.contacts-box {
    background: var(--white);
    border-radius: .75rem;
    display: grid;
    grid-template-columns: 1fr 32.5rem;
    margin-top: 1.25rem;
    padding: 1.25rem;
}

.contacts-box .info {
    background: transparent;
    padding: 0;
}

.contacts-box__map {
    border-radius: .75rem;
    overflow: hidden;
}

.row__col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.row__col-group {
    background: var(--white);
    border-radius: .75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
}

.row__col-group .info {
    padding: 0;
}

.qr-wrap__grey {
    color: var(--context-grey);
    margin-top: 1.25rem;
    text-align: center;
}

.timer {
    align-items: center;
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: .25rem;
}

.timer__item {
    background: var(--middle-grey);
    border-radius: .5rem;
    color: var(--blue);
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 133%;
    padding: .25rem .75rem;
}

.separator {
    color: var(--context-grey);
    font-weight: 600;
    font-size: 1.06rem;
}

.code-sent {
    background: #ede3d9;
    border-radius: .75rem;
    color: var(--dark-grey);
    line-height: 150%;
    margin-top: 1.25rem;
    padding: .75rem 1.25rem;
    text-align: center;
}

.cash {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.25rem;
}

.cash__item {
    text-align: center;
}

.cash__strong {
    color: var(--green);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 133%;
    text-transform: uppercase;
}

.cash__desc {
    color: var(--context-grey);
    font-size: .875rem;
    line-height: 143%;
}

.pagination {
    display: flex;
    font-size: .875rem;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.125rem;
}

.pagination__link, .pagination__item {
    color: var(--green);
    font-weight: 600;
}

.pagination__link.is-active, .pagination__link:hover {
    color: var(--orange);
}

.pagination__link svg {
    fill: var(--green);
    height: .875rem;
    transition: .4s;
    width: .44rem;
}

.pagination__link:hover svg {
    fill: var(--orange);
}

.iti {
    display: block;
}

.popup--full {
    max-width: 60rem;
}

.popup__article {
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 150%;
    max-height: 24.75rem;
    margin-top: 1.5rem;
    overflow-y: auto;
    padding: .75rem;
}

.popup__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.popup__btns .orange-btn, .popup__btns .green-btn {
    height: 3.25rem;
    width: 15rem;
}

@media (max-width: 1030px) {
    .contacts-box {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }
    .contacts-box__map {
        margin-top: 0.75rem;
    }
    .white-box {
        margin-top: 1rem;
    }
    .row__col {
        flex-direction: column-reverse;
    }
    .row__col .contacts-box__map {
        margin-top: 0;
    }
    .row__col-group {
        flex-direction: column-reverse;
    }
    .popup--full {
        max-width: 90%;
    }
}

@media (max-width: 630px) {
    .secur {
        flex-direction: column;
        gap: .5rem;
    }
    .qr-wrap__btns .orange-btn {
        font-size: .81rem;
    }
    .qr-wrap__btns .orange-btn svg {
        display: none;
    }
    .qr-wrap__btns .orange-btn:first-child {
        border-radius: .5rem 0 0 .5rem;
    }
    .qr-wrap__btns .orange-btn:last-child {
        border-radius: 0 .5rem .5rem 0;
    }
    .instructions {
        font-size: .93rem;
        padding: 1rem;
    }
    .list-numeric li {
        margin-bottom: .75rem;
    }
    .qr-wrap {
        padding: 1rem;
    }
    .qr-code__img {
        max-width: 10rem;
    }
    .qr-wrap__btns, .secur, .qr-wrap__title {
        margin-top: 1rem;
    }
    .cash {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }
    .cash__item {
        align-items: center;
        display: flex;
        flex-direction: row-reverse;
        gap: 3rem;
        justify-content: space-between;
    }
    .cash__strong {
        font-size: 1.25rem;
        white-space: nowrap;
    }
    .cash__desc {
        text-align: left;
    }
    .popup__article {
        height: 21.43rem;
        margin-top: .75rem;
        padding: .75rem;
    }
    .popup__btns .orange-btn, .popup__btns .green-btn {
        flex-grow: 1;
        height: 2.5rem;
        width: auto
    }
    .popup__btns {
        margin-top: .75rem;
    }
}
/*
.iti__arrow {
    position: absolute;
    right: 12px;
}*/

.iti__country-container {
    color: var(--context-grey);
    padding: 0;
}

.iti__country-container:after {
    background: var(--grey-border);
    border-radius: .25rem;
    content: '';
    height: 1.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    z-index: 2;
}

.iti__selected-country-primary {
    gap: .75rem;
}

#popup-auth .iti__arrow {
    display: none;
}

.iti__tel-input {
    padding-left: 7rem !important;
}

.iti__selected-country {
    padding-right: .75rem;
    width: 7rem;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
    background: transparent;
}

.rate-item {
    padding-bottom: 0;
    padding-left: 0;
    padding-top: 0;
}

.select2-selection {
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    overflow: hidden;
}

.selected-wrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-dropdown {
    left: 0;
    position: absolute;
    right: 0;
    z-index: 3;
}

.option .rate-item {
    padding-left: 10px;
}

@media (max-width: 480px) {
    .rate-item__meta {
        font-size: .875rem;
    }
}

#popup-auth .login-error {
    text-align: center;
}
#popup-auth .login-error span{
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 19px;
    text-align: center;
    background: #a2493f;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding: 9px 14px;
    border-radius: 7px;
}

#popup-auth .myform__input.invalid {
    border: 1px solid #a2493f;
}

#atm-work-table tr.is-current {
    background: rgba(0, 0, 0, 0.04);
}

#popup-atm-select {
    max-width: 72rem;
    width: calc(100vw - 2rem);
}

#popup-atm-select .popup__content {
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
}

#atm-work-table {
    table-layout: fixed;
}

#atm-work-table th:nth-child(1),
#atm-work-table td:nth-child(1) {
    width: 30%;
}

#atm-work-table th:nth-child(2),
#atm-work-table td:nth-child(2) {
    width: 25%;
}

#atm-work-table th:nth-child(3),
#atm-work-table td:nth-child(3) {
    width: 45%;
}

#atm-work-table .work-table__row {
    align-items: flex-start;
}

#atm-work-table .atm-working-hours {
    flex-wrap: wrap;
    row-gap: .25rem;
}

#atm-work-table .work-table__orange-btn {
    width: 9.5rem;
}

#atm-work-table .work-table__address,
#atm-work-table .work-table__banknotes {
    overflow-wrap: anywhere;
}

#atm-work-table .work-table__banknotes {
    flex: 1 1 auto;
    white-space: nowrap;
}

@media (max-width: 1030px) {
    #popup-atm-select {
        max-width: 90%;
        width: 90%;
    }

    #atm-work-table {
        table-layout: auto;
    }

    #atm-work-table th:nth-child(1),
    #atm-work-table td:nth-child(1),
    #atm-work-table th:nth-child(2),
    #atm-work-table td:nth-child(2),
    #atm-work-table th:nth-child(3),
    #atm-work-table td:nth-child(3) {
        width: auto;
    }

    #atm-work-table .work-table__banknotes {
        white-space: normal;
    }
}
.form-message-box {
    display: none;
    margin-top: 20px;
    margin-bottom: 16px;
    text-align: center;
    padding: 14px 16px;
}

.process-form-message {
    border-radius: var(--brs);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: fit-content;
}

.form-message-box--error {
    background: #f3dede;
    border: 1px solid #dfb1b1;
    color: #a2493f;
}

.form-message-box--success {
    background: #dcefe0;
    border: 1px solid #afd0b7;
    color: #2f7a43;
}

#atm-work-table tr.is-current {
    background: rgba(0, 0, 0, 0.04);
}

#form-submit.is-loading {
    opacity: .7;
    pointer-events: none;
}
#wallets-container {
    display: contents;
}

.receipt-access-box {
    display: block;
    position: static;
    transform: none;
    left: auto;
    top: auto;
    max-width: 33.625rem;
    margin: 1.25rem auto 0;
}

.receipt-access-box__text {
    margin-top: 1rem;
    text-align: center;
    color: var(--context-grey);
    line-height: 150%;
}

.receipt-access-box__text--small {
    margin-top: .75rem;
}

#receipt-phone-form .login-error {
    text-align: center;
}

#receipt-phone-form .login-error span {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 19px;
    text-align: center;
    background: #a2493f;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding: 9px 14px;
    border-radius: 7px;
}

.receipt-share-popup__text {
    margin-top: 1rem;
    text-align: center;
    color: var(--context-grey);
    line-height: 150%;
}

.receipt-share-popup__field {
    margin-top: 1rem;
}

.receipt-share-popup__btns {
    margin-top: 1.5rem;
}

#receipt-share-url {
    cursor: pointer;
}

@media (max-width: 630px) {
    .receipt-share-popup__btns {
        flex-direction: column;
    }

    .receipt-share-popup__btns .orange-btn,
    .receipt-share-popup__btns .green-btn {
        width: 100%;
    }
}
.receipt-share-textarea {
    min-height: 7.5rem;
    resize: none;
    padding-top: .75rem;
    padding-bottom: .75rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-all;
    overflow-wrap: anywhere;
}
.receipt-email-checkbox {
    margin-top: 1rem;
}
#receipt-email[readonly] {
    background-color: #e7e7e7;
    color: #667085;
    cursor: not-allowed;
    border: 1px solid #ccc;

    background-image: linear-gradient(transparent, transparent), repeating-linear-gradient(
            45deg,
            rgba(0,0,0,0.02),
            rgba(0,0,0,0.02) 4px,
            transparent 4px,
            transparent 8px
    );

}

#receipt-email[readonly]::placeholder {
    color: #98a2b3;
}

.terms-page {
    margin-top: 1.25rem;
    margin-bottom: 2.5rem;
}

.terms-page .title-header {
    align-items: flex-start;
    display: block;
    margin-bottom: 1rem;
}

.terms-page__box {
    background: var(--white);
    border-radius: .75rem;
    padding: 1.75rem;
}

.terms-page__text,
.terms-page__list,
.terms-page__item,
.terms-page__box p,
.terms-page__box li {
    color: #4f5b5d;
    font-size: 1rem;
    line-height: 1.72;
}

.terms-page__text,
.terms-page__box p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.terms-page__list {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    padding-left: 1.35rem;
}

.terms-page__list--unordered {
    list-style: disc;
}

.terms-page__list--ordered {
    list-style: decimal;
}

.terms-page__item + .terms-page__item {
    margin-top: .625rem;
}

.terms-page__box h2,
.terms-page__box h3,
.terms-page__box h4 {
    color: var(--green);
    font-weight: 600;
    line-height: 1.32;
    margin-top: 1.75rem;
    margin-bottom: .75rem;
}

.terms-page__box h2 {
    font-size: 1.25rem;
}

.terms-page__box h3 {
    font-size: 1.125rem;
}

.terms-page__box h4 {
    font-size: 1rem;
}

.terms-page__box a {
    color: #3f5f66;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(63, 95, 102, .35);
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
    transition: color .15s ease, text-decoration-color .15s ease;
}

.terms-page__box p,
.terms-page__box li,
.terms-page__box a {
    overflow-wrap: anywhere;
}

.terms-page__box a:hover {
    color: var(--green);
    text-decoration-color: rgba(16, 74, 85, .65);
}

.terms-page__box strong,
.terms-page__box b {
    color: var(--dark-grey);
    font-weight: 600;
}

.terms-page__box table {
    border: 1px solid #d8d2c8;
    border-collapse: separate;
    border-radius: .5rem;
    border-spacing: 0;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    width: 100%;
}

.terms-page__box td,
.terms-page__box th {
    border: 0;
    border-bottom: 1px solid #ded9d0;
    border-right: 1px solid #ded9d0;
    color: #4f5b5d;
    font-size: .9375rem;
    line-height: 1.55;
    padding: .875rem 1rem;
    text-align: left;
    vertical-align: top;
}

.terms-page__box th {
    background: #ece8df;
    color: var(--green);
    font-weight: 600;
}

.terms-page__box td {
    background: #fbfaf8;
}

.terms-page__box tr:nth-child(even) td {
    background: #f4f2ed;
}

.terms-page__box tr:last-child td,
.terms-page__box tr:last-child th {
    border-bottom: 0;
}

.terms-page__box td:last-child,
.terms-page__box th:last-child {
    border-right: 0;
}

.terms-page__box td:first-child,
.terms-page__box th:first-child {
    width: 28%;
}

@media (max-width: 630px) {
    .terms-page {
        margin-top: 1rem;
    }

    .terms-page__box {
        padding: 1rem;
    }

    .terms-page__text,
    .terms-page__list,
    .terms-page__item,
    .terms-page__box p,
    .terms-page__box li {
        font-size: .9375rem;
        line-height: 1.65;
    }

    .terms-page__box h2 {
        font-size: 1.2rem;
    }

    .terms-page__box h3 {
        font-size: 1.08rem;
    }

    .terms-page__box h4 {
        font-size: 1rem;
    }

    .terms-page__box table {
        display: block;
        overflow-x: auto;
    }

    .terms-page__box td,
    .terms-page__box th {
        min-width: 10rem;
        padding: .75rem;
    }
}

/* Legal and compliance pages */
.terms-page.legal-page {
    margin-bottom: 3rem;
    margin-top: 1.5rem;
}

.legal-page__hero {
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 148, 66, .17), transparent 12rem),
        linear-gradient(135deg, #123f48 0%, var(--green) 68%, #195d69 100%);
    border-radius: 1rem;
    box-shadow: 0 .75rem 2rem rgba(16, 74, 85, .12);
    color: #fff;
    overflow: hidden;
    padding: 1.5rem 1.75rem 0;
    position: relative;
}

.legal-page__heading {
    align-items: center;
    display: flex;
    gap: 1rem;
    padding-bottom: 1.35rem;
}

.legal-page__icon {
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: .75rem;
    display: inline-flex;
    flex: 0 0 3rem;
    height: 3rem;
    justify-content: center;
}

.legal-page__icon svg {
    fill: none;
    height: 1.6rem;
    stroke: #ffc08d;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 1.6rem;
}

.legal-page__eyebrow {
    color: #ffc08d;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.3;
    margin-bottom: .2rem;
    text-transform: uppercase;
}

.legal-page__title {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
}

.legal-page__documents {
    display: flex;
    gap: .25rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.legal-page__document-link {
    border-bottom: .1875rem solid transparent;
    color: rgba(255, 255, 255, .76);
    flex: 0 0 auto;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.35;
    padding: .8rem .85rem .7rem;
    white-space: nowrap;
}

.legal-page__document-link:hover,
.legal-page__document-link.is-active {
    color: #fff;
}

.legal-page__document-link.is-active {
    border-bottom-color: var(--orange);
}

.legal-page__layout {
    align-items: start;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 14rem minmax(0, 1fr);
    margin-top: 1.25rem;
}

.legal-page__layout--without-toc {
    grid-template-columns: 1fr;
}

.legal-page__toc {
    background: #f7f6f3;
    border: 1px solid #dcd7ce;
    border-radius: .75rem;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    position: sticky;
    top: 1rem;
}

.legal-page__toc-title {
    border-bottom: 1px solid #ded9d0;
    color: var(--green);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .045em;
    line-height: 1.3;
    padding: 1rem 1rem .8rem;
    text-transform: uppercase;
}

.legal-page__toc-links {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    padding: .5rem;
}

.legal-page__toc-link {
    border-left: .125rem solid transparent;
    border-radius: 0 .35rem .35rem 0;
    color: #667174;
    font-size: .8125rem;
    font-weight: 500;
    line-height: 1.35;
    padding: .5rem .6rem;
}

.legal-page__toc-link:hover,
.legal-page__toc-link.is-active {
    background: rgba(16, 74, 85, .07);
    border-left-color: var(--orange);
    color: var(--green);
}

.legal-page__toc-link--sub {
    font-size: .75rem;
    padding-left: 1.15rem;
}

.legal-page .terms-page__box {
    background: #f7f6f3;
    border: 1px solid #ded9d0;
    border-radius: .875rem;
    box-shadow: 0 .4rem 1.25rem rgba(51, 51, 51, .045);
    min-width: 0;
    padding: 2rem 2.25rem 2.5rem;
}

.legal-page__article > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 74ch;
}

.legal-page__article > table {
    max-width: 100%;
}

.legal-page .terms-page__text,
.legal-page .terms-page__box p {
    margin-bottom: 1.05rem;
}

.legal-page__article > p:first-child,
.legal-page .legal-page__document-title {
    color: var(--green);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 1.4rem;
}

.legal-page .legal-page__metadata {
    background: #ece8df;
    border-radius: .4rem;
    color: #687174;
    display: table;
    font-size: .8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: .45rem .7rem;
}

.legal-page .legal-page__document-title strong,
.legal-page .legal-page__metadata strong,
.legal-page .legal-page__section-heading strong {
    color: inherit;
}

.legal-page .legal-page__section-heading {
    color: var(--green);
    font-weight: 600;
    line-height: 1.32;
    margin-bottom: .75rem;
}

.legal-page .terms-page__box h2,
.legal-page .terms-page__box h3,
.legal-page .terms-page__box h4,
.legal-page__section-heading {
    scroll-margin-top: 1rem;
}

.legal-page .terms-page__box h2,
.legal-page__section-heading {
    border-top: 1px solid #ded9d0;
    font-size: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.35rem;
}

.legal-page .terms-page__box h3,
.legal-page__section-heading--sub {
    font-size: 1.125rem;
}

.legal-page .legal-page__section-heading--sub {
    border-top: 0;
    padding-top: 0;
}

@media (max-width: 830px) {
    .legal-page__layout {
        display: block;
    }

    .legal-page__toc {
        margin-bottom: 1rem;
        max-height: none;
        position: static;
    }

    .legal-page__toc-links {
        display: grid;
        gap: .15rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: 13rem;
    }

    .legal-page__toc-link--sub {
        padding-left: .6rem;
    }
}

@media (max-width: 630px) {
    .terms-page.legal-page {
        margin-top: 1rem;
    }

    .legal-page__hero {
        border-radius: .75rem;
        padding: 1.1rem 1rem 0;
    }

    .legal-page__heading {
        gap: .75rem;
        padding-bottom: 1rem;
    }

    .legal-page__icon {
        flex-basis: 2.65rem;
        height: 2.65rem;
    }

    .legal-page__title {
        font-size: 1.35rem;
    }

    .legal-page__document-link {
        font-size: .8125rem;
        padding: .7rem .65rem .6rem;
    }

    .legal-page__layout {
        margin-top: 1rem;
    }

    .legal-page__toc-title {
        padding: .8rem .85rem .65rem;
    }

    .legal-page__toc-links {
        display: flex;
        flex-direction: row;
        gap: .3rem;
        max-height: none;
        overflow-x: auto;
        padding: .45rem;
    }

    .legal-page__toc-link,
    .legal-page__toc-link--sub {
        border: 1px solid #ded9d0;
        border-left-width: 1px;
        border-radius: .35rem;
        flex: 0 0 auto;
        max-width: 14rem;
        padding: .45rem .6rem;
    }

    .legal-page__toc-link:hover,
    .legal-page__toc-link.is-active {
        border-color: var(--orange);
    }

    .legal-page .terms-page__box {
        border-radius: .75rem;
        padding: 1.25rem 1rem 1.75rem;
    }

    .legal-page .terms-page__box h2,
    .legal-page__section-heading {
        font-size: 1.2rem;
    }

    .legal-page .terms-page__box h3,
    .legal-page__section-heading--sub {
        font-size: 1.08rem;
    }
}

.work-table__orange-btn.is-disabled,
.work-table__orange-btn:disabled {
    background: #d5d5d5;
    border-color: #c9c9c9;
    color: #888;
    cursor: not-allowed;
    opacity: .8;
}
