<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 14px;
}

/* grid */

.grid {
    width: 1280px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .grid {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .grid {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .grid {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .grid {
        width: 1140px;
    }
}

@media (max-width: 575px) {
    .grid {
        width: 94%;
    }
}

html {
    width: 100%;
    height: 100%;
}

body {
    background: #010101;
}

/* header */

.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.header_authentication a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom right, #4d4000, #4d4000);
    box-shadow: 0 6px 22px 0 rgba(5, 109, 218, .3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    padding: 0 30px;
    height: 40px;
    font-size: 13px;
    margin-left: 10px;
}

.header_authentication a:last-child {
    background-image: linear-gradient(80deg, #F419C4 -8%, #F419C4 93%);
    box-shadow: 0 6px 18px 0 rgba(14, 161, 81, .3)
}

@media (max-width: 370px) {
    .header_authentication a:last-child {
        display: none;
    }
}

/* promo */

.promo {
    margin: 40px 0;
}

.promo_wrap {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid #512d0a;
    padding: 25px 0 15px;
    border-radius: 30px;
    background: #ffdd01;
}

@media (min-width: 650px) {
    .promo_wrap {
        width: 400px;
        margin: 0 auto;
    }
}

.text_top-part {
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.text_middle-part {
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
}

.text_bottom-part {
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    margin: 15px 0 30px;
}

.promo_wrap a {
    background: #4d4000;
    border-radius: 8px;
    width: 180px;
    font-size: 12px;
    padding: 8px 0;
    text-decoration: none;
    font-weight: 300;
}

.promo_wrap a span {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    margin-bottom: 3px;
}

.promo_wrap a * {
    line-height: 1;
}

/* main table */

.main-table {
    margin: 0 0 40px;
    border-radius: 16px 16px 0 0;
    background: #172034;
    background-image: linear-gradient(to right, #4d4000, #101729, #121a2c, #151d30, #4d4000);
}

/* content */

.content section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 16px;
    background: #172034;
    background-image: linear-gradient(to right, #4d4000, #101729, #121a2c, #151d30, #4d4000);
}

.content h1,
.content h2,
.content h3 {
    font-size: 28px;
    line-height: 1.3;
    color: #ffdd01;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 24px;
}

.content h3 {
    font-size: 20px;
}

.content p {
    line-height: 1.4;
    margin-bottom: 15px;
}

.content ul,
.content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content ul li,
.content ol li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.content ul li::marker,
.content ol li::marker {
    color: #ffb129;
}







.content blockquote {
    /* background: #022946; */
    background: #ffb129;
    padding: 30px 40px;
    border-radius: 6px;
    margin-bottom: 25px;
    position: relative;
}

.content blockquote::before {
    content: '';
    background: url(quote-left.svg) no-repeat;
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    position: absolute;
    top: 5px;
    left: 5px;
}

.content blockquote::after {
    content: '';
    background: url(quote-right.svg) no-repeat;
    display: inline-block;
    width: 28px;
    height: 28px;
    background-size: contain;
    position: absolute;
    right: 5px;
    bottom: 5px;
}

.content blockquote * {
    font-weight: 500;
    color: #151515;
}

.content mark {
    background: #64b8fb;
    color: #000;
}

.main-table_wrap h1 {
    margin: 30px 0;
    text-align: center;
    color: #ffdd01;
    font-size: 20px;
}

.content .image-center {
    text-align: center;
}

.content .responsive-table,
.main-table_wrap {
    overflow-x: auto;
    margin-bottom: 25px;
}

.content .image-center img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.content table,
.main-table table {
    width: 100%;
    border-collapse: collapse;
}

.content table tr td,
.main-table table tr td {
    border: 1px solid #ffdd01;
    padding: 8px;
    line-height: 1.4;
}

.main-table table tr td:first-child {
    min-width: 160px;
}

.content table tr th {
    font-weight: 500;
    color: #64b8fb;
    padding: 0 5px 10px;
}

/* footer */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer small {
    margin: 0;
    padding: 0 0 20px;
}

.download-apps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px 0 0;
}

.working-mirror {
    width: 400px;
    margin: 40px auto;
}

.working-mirror .top-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
    background: #12192b;
    padding: 6px 15px;
}

.working-mirror .circles-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
}

.working-mirror .circle {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #ffe45b;
    border-radius: 50%;
    margin: 0 3px;
    line-height: 8px;
}

.adress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #161f33;
    border-radius: 3px;
    padding: 6px 50px;
    width: 100%;
    margin: 0 25px;
}

.adress-bar span {
    display: inline-block;
    width: 100px;
    color: #0d79db;
    font-size: 13px;
    line-height: 13px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.working-mirror .bottom-part {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-top: #e2e6e7;
    background: #141b2e;
    min-height: 200px;
}

.working-mirror .bottom-part img {
    margin-top: 10px;
}

.bottom-part .link {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 6px;
    background: #0661cc;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.working-mirror .bottom-part p {
    margin: 10px 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.working-mirror .bottom-part ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.working-mirror .bottom-part ul li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #90abc2;
    font-size: 13px;
    color: #90abc2;
    margin: 0 0 15px;
}

@media (max-width: 450px) {
    .working-mirror {
        width: calc(100% - 30px);
        margin: 40px 15px;
    }
    .working-mirror .bottom-part {
        text-align: center;
        padding: 0 15px;
    }
    .adress-bar {
        padding: 6px 30px;
        margin: 0 15px;
    }
    .working-mirror .bottom-part p {
        line-height: 1.3;
    }
}

.slots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 0;
    flex-wrap: wrap;
}

.slots_item {
    margin: 15px 0;
}

.slots_item img {
    height: 36px;
}

@media (max-width: 800px) {
    .slots_item {
        width: 50%;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .slots_item img {
        height: 28px;
    }
}

.intro-text {
    padding-top: 25px;
    text-align: center;
}
.intro-text h1 {
    margin-bottom: 25px;
    font-size: 31px;
    color: #ffe45b;
}
.intro-text p {
    line-height: 1.6;
    font-size: 16px;
}</pre></body></html>