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, strong, sub, sup, tt, var, b, u, i, 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
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    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
}

*, *::after, *::before {
    box-sizing: border-box;
    padding: 0;
    margin:0
}

body {
    font-family: "Golos Text", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    background: #000;
    color:#fff
}

.wrapper {
    overflow: hidden;
    min-height: 100vh;
    padding:40px 16px
}

@media screen and (max-width: 480px) {
    .wrapper {
        padding:0 0 40px 0
    }
}

.container {
    max-width: 578px;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    background: linear-gradient(255.05deg, #282828 3.88%, #232323 100%);
    display: flex;
    flex-direction:column
}

@media screen and (max-width: 480px) {
    .container {
        border-radius:0px
    }
}

.header {
    padding: 32px;
    position:relative
}

@media screen and (max-width: 480px) {
    .header {
        padding:32px 16px
    }
}

.header__back {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #000;
    box-shadow: 0px 8px 16px rgba(255, 255, 255, .06), 0px 0px 10px rgba(255, 255, 255, .2);
    border-radius: 44px;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    left: -22px;
    top:28px
}

.header__logo {
    height:44px
}

.info {
    padding:0 32px 32px 32px
}

@media screen and (max-width: 480px) {
    .info {
        padding:0 16px 32px 16px
    }
}

.info__title {
    word-break: break-all;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 16px;
    display:block
}

@media screen and (max-width: 480px) {
    .info__title {
        font-size:26px
    }
}

.info__value {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight:600
}

.info__label {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom:16px
}

.info__alert {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    color: #c5c5c5;
    gap:8px
}

.info__expiration {
    margin-top:32px
}

.expiration {
    display: flex;
    background: #141414;
    border-radius: 16px;
    gap: 16px;
    padding: 16px;
    align-items:center
}

.expiration__label {
    display: block;
    color:#c5c5c5
}

.expiration__time {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color:#3ac270
}

.footer {
    background: #141414;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 24px 24px;
    gap:16px
}

@media screen and (max-width: 480px) {
    .footer {
        border-radius: 0;
        padding:32px 16px
    }
}

.select {
    position: relative;
    transition: all .3s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select:none
}

.select__value {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 0 16px;
    cursor: pointer;
    transition:all 100ms ease-in-out
}

.select__value span {
    display: inline-flex;
    align-items: center;
    gap:8px
}

.select__value span img {
    width: 24px;
    height:24px
}

.select__chevron {
    transition: transform 200ms ease-in-out;
    width: 24px;
    height: 24px;
    color:#fff
}

.select__options {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
    overflow: auto;
    position: absolute;
    z-index: 111;
    top: 100%;
    left: 0;
    right: 0;
    background: #242424;
    border-radius:0 0 12px 12px
}

.select__option {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    transition: background 300ms ease-in-out;
    cursor:pointer
}

.select__option:hover {
    background:#474747
}

.select__option img {
    width: 24px;
    height:24px
}

.select_disabled {
    opacity: .5;
    pointer-events:none
}

.select_active .select__value {
    border-radius: 12px 12px 0 0;
    border-bottom:1px solid rgba(255, 255, 255, 0)
}

.select_active .select__chevron {
    transform:rotate(-180deg)
}

.select_active .select__options {
    max-height: 250px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-top:none
}

.btn {
    height: 56px;
    color: #000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    padding: 18px 24px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 10px;
    border: none;
    width: 100%;
    font-family:inherit
}

.btn:disabled {
    cursor: default;
    opacity:.36
}

.page-footer {
    padding: 24px 10px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #747474;
    font-size: 14px;
    line-height:20px
}

.page-footer__aml {
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 8px;
    color:inherit
}

.page-footer__text {
    margin-bottom:16px
}

.page-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:16px
}

.page-footer__links a {
    display: block;
    text-decoration: none;
    color:inherit
}

.expired {
    background: #5d2f31;
    margin: 0 32px 32px 32px;
    width: calc(100% - 64px);
    color: #fff;
    padding: 12px 12px 12px 48px;
    border-radius: 12px;
    position:relative
}

@media screen and (max-width: 480px) {
    .expired {
        margin: 0 16px 32px 16px;
        width:calc(100% - 32px)
    }
}

.expired__icon {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #ff3d4d;
    width: 24px;
    height:24px
}

.expired__title {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height:24px
}

.expired__text {
    font-weight: 400;
    letter-spacing: -0.12px;
    font-size: 16px;
    line-height: 24px
}
/*# sourceMappingURL=main.css.map */
