<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;display=swap");

:root {
    --primary-color: rgb(49, 115, 243);
    --light-color: rgba(246, 247, 249, 1);
    --grey-color: rgba(192, 192, 192, 1);
    --bg-color-main: #0D0D0F;
    --bg-color-card: #1A181E;
    /* Р¦РІРµС‚ РєР°СЂС‚РѕС‡РµРє */
    --bg-color-gradient-primary: linear-gradient(180.00deg, rgb(26, 24, 30), rgb(39, 37, 44) 100%);
    --bg-color-gradient-second: linear-gradient(180.00deg, rgb(254, 191, 86), rgb(152, 114, 51) 100%);
    --bg-color-btn: #FFCC02;
    --on-surface: #E1E1E1;
    /* РўРµРєСЃС‚ */
    --on-surface-variant: #B2B2B2;
    --container: #262429;
    --container-high: #2F2D31;
    --container-low: #211F25;
    --on-primary: #332F1F;

    --on-surface-variant-2: #A1A4A7;

    --outline: #302F34;
    --outline-variant: #48464B;
}

/* РћР±РЅРѕРІР»СЏРµРј СЃС‚РёР»Рё РґР»СЏ html */
html {
    position: fixed;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

/* РћР±РЅРѕРІР»СЏРµРј СЃС‚РёР»Рё РґР»СЏ body */
body {
    background: var(--bg-color-main);
    max-width: 400px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin: 0 auto;
    box-sizing: border-box;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* РґР»СЏ РїР»Р°РІРЅРѕРіРѕ СЃРєСЂРѕР»Р»Р° РЅР° iOS */
    position: relative;
    padding-bottom: 80px;

    /* РЈР±РёСЂР°РµРј СЃРєСЂРѕР»Р»Р±Р°СЂС‹ */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
}

a {
    text-decoration: none;
    color: currentColor;
    cursor: pointer;
}

ul {
    list-style: none;
    padding-left: 0;
}

input {
    border: none;
    background-color: var(--light-color);
    color: rgba(138, 138, 138, 1);
    width: 100%;
    border-radius: 10px;
    padding: 11px 18px;
}

input:focus {
    outline: none;
}

/* Р—Р°РјРµРЅРёРј СЃСѓС‰РµСЃС‚РІСѓСЋС‰РёР№ СЃС‚РёР»СЊ РґР»СЏ button */
button {
    /* РЎР±СЂРѕСЃ Рє РґРµС„РѕР»С‚РЅС‹Рј Р·РЅР°С‡РµРЅРёСЏРј */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* РћСЃС‚Р°РІРёРј С‚РѕР»СЊРєРѕ СЃС‚РёР»СЊ РґР»СЏ РѕС‚РєР»СЋС‡РµРЅРЅРѕР№ РєРЅРѕРїРєРё */
button:disabled {
    background: #383640;
    cursor: not-allowed;
    color: var(--on-surface);
}

/* РћСЃРЅРѕРІРЅРѕР№ РєРѕРЅС‚РµР№РЅРµСЂ */
.container {
    padding: 0 16px;
    padding-top: 12px;
    margin: 0 auto;
    width: calc(100% - 32px);
}

/* РЎРµС‚РєР° */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

/* Р­Р»РµРјРµРЅС‚С‹ РЅР° РІСЃСЋ С€РёСЂРёРЅСѓ */
.grid-full {
    grid-column: 1 / -1;
}

/* Р­Р»РµРјРµРЅС‚С‹ РЅР° 2 РєРѕР»РѕРЅРєРё */
.grid-half {
    grid-column: span 2;
}

/* Р­Р»РµРјРµРЅС‚С‹ РЅР° 3 РєРѕР»РѕРЅРєРё */
.grid-three {
    grid-column: span 3;
}

/* Р­Р»РµРјРµРЅС‚ РЅР° 1 РєРѕР»РѕРЅРєСѓ */
.grid-quarter {
    grid-column: span 1;
}

.loading {
    background-color: black;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 100vh;
    align-items: center;
    justify-items: center;
    z-index: 999999;
}

.block-center {
    display: grid;
    justify-content: center;
    justify-items: center;
}

.active {
    color: var(--primary-color);
}

.mt-19 {
    margin-top: 19px;
}

.mt-14 {
    margin-top: 14px;
}

.mt-42 {
    margin-top: 42px;
}

.mt-17 {
    margin-top: 17px;
}

.mt-6 {
    margin-top: 6px;
}

.mt-31 {
    margin-top: 10px;
}

summary {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

summary::after {
    content: url(../../images/app/plus.svg);
}

summary &gt; span {
    border-bottom: 1px dashed var(--primary-color);
    color: var(--primary-color);
}

details {
    padding: 15px 21px 17px 19px;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 13px;
}

details &gt; p {
    margin-top: 13px;
    font-weight: 300;
    font-size: 11px;
}

details[open] &gt; summary:after {
    content: url(../../images/app/minus.svg);
}

.input-control &gt; input.fio {
    width: 100%;
    font-size: 13px;
    border-radius: 10px;
}

.section-stretcher {
    padding-bottom: 250px;
}

/* РћР±РЅРѕРІР»СЏРµРј СЃС‚РёР»Рё РґР»СЏ РѕСЃРЅРѕРІРЅС‹С… РєРѕРЅС‚РµР№РЅРµСЂРѕРІ */
main.container {
    height: calc(100% - 12px);
    display: flex;
    flex-direction: column;
}

/* РЎРµС‚РєР° */
main.container &gt; .grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}

/* РЎС‚РёР»Рё РґР»СЏ СЃС‚СЂР°РЅРёС† (sections) */
.page {
    display: none;
    height: 100%;
    overflow-y: auto;
    flex: 1;
}

/* РџРѕРєР°Р·С‹РІР°РµРј Р°РєС‚РёРІРЅСѓСЋ СЃС‚СЂР°РЅРёС†Сѓ */
.page.active {
    display: flex;
    flex-direction: column;
}

/* РЎРїРµС†РёС„РёС‡РЅС‹Рµ СЃС‚РёР»Рё РґР»СЏ СЃС‚СЂР°РЅРёС†С‹ РёСЃС‚РѕСЂРёРё */
.page-history {
    display: flex;
    flex-direction: column;
}

.page-history .container_center_block {
    flex: 1;
    display: flex;
    flex-direction: column;

    height: 92%;
}

.page-friends {
    flex-direction: column;
}

.page-history .grid {
    flex: 1;
}

.page-history .history {
    flex: 1;
    overflow-y: auto;
}

.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-surface-variant);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    min-height: 48px;
}
</pre></body></html>