@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg: #010101;
    --card: #ffffff;
    --text: #121d33;
    --muted: #677184;
    --muted-soft: #b1b8c7;
    --surface: #f0f2f7;
    --surface-strong: #e7edf8;
    --primary: #65a5ff;
    --primary-strong: #0c6cf2;
    --primary-soft: #edf4ff;
    --error: #d93b30;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body, textarea, button, input, select {
    font-family: var(--font);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 24px 24px 120px;
    min-height: 100vh;
    color: var(--text);
    background-color: var(--bg);
    overflow-y: auto;
}

img {
    -webkit-user-drag: none;
    user-select: none;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
    box-sizing: border-box;
}

.caf,
[hidden] {
    display: none !important;
}

.cbs {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ca2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0 0 40px 0;
    width: 100%;
    max-width: 472px;
}

.cc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ca3 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    width: 100%;
}

.ca {
    width: 100%;
    max-width: 472px;
    background: var(--card);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.cbd {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.cbd.cah {
    display: flex;
    min-height: 467px;
    gap: 24px;
    animation: screenFadeIn 0.2s ease-out;
}

@keyframes screenFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.cbh {
    padding: 24px 24px 0;
}

.cbi {
    padding-bottom: 48px;
}

.cbn {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.cbn > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cbl {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #121d33;
}

.cbm,
.cbk {
    text-align: center;
}

.cbj {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #677184;
}

.cbh > .cbj {
    margin-top: 24px;
}

.cbg {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(217, 59, 48, 0.08);
    color: var(--error);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
}

.cbg.can {
    display: block;
}

.c2 {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.cu {
    margin-top: 24px;
}

.cv {
    margin-top: 0;
}

.cy {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #121d33;
}

.cw,
.c3 {
    width: 100%;
    border: 1px solid transparent;
    color: var(--text);
    background: var(--surface);
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.cw {
    position: relative;
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: #121d33;
    outline: none;
    border: 1px solid transparent;
    background: var(--surface);
    transition: border-color 0.15s ease;
}

.c0 {
    position: relative;
    display: flex;
    align-items: center;
}

.cx {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    background: var(--surface);
    color: #121d33;
    outline: none;
}

.cx:focus {
    border: 1px solid #0C6CF2;
    background: var(--surface);
    outline: none;
}

.cz {
    position: absolute;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
}

.cw::placeholder,
.cx::placeholder,
.c3::placeholder {
    color: var(--muted-soft);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.c3 {
    height: 120px;
    padding: 12px 16px;
    border-radius: 16px;
    resize: none;
    outline: none;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.c1 {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #677184 50%),
        linear-gradient(135deg, #677184 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.cw:focus,
.c3:focus,
.c1:focus {
    border: 1px solid #0C6CF2;
    outline: none;
    background: var(--surface);
    box-shadow: none;
}

.cw.cak,
.c3.cak,
.c1.cak,
.cx.cak {
    border-color: var(--error);
    background: var(--surface);
}

.ct {
    min-height: 18px;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--error);
    opacity: 0;
    transition: opacity 0.12s ease;
}

.ct.can {
    opacity: 1;
}

.ct.cam {
    color: #1f8a5b;
}

#two-factor-resend-sms.cai {
    color: #98a1b2;
    cursor: default;
    pointer-events: none;
}

#two-factor-resend-sms.cai:hover {
    opacity: 1;
}

.cbe {
    display: grid;
    gap: 16px;
    padding: 12px 24px 24px;
}

.cbf {
    gap: 16px;
}

.cbe > .ca6:first-child,
.cbe > .cbo:first-child {
    margin-top: 4px;
}

.ca6,
.cbo,
.cbw,
.cag,
.cb,
.ca5,
.cau,
.cap {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ca6,
.cbo {
    height: 48px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: background-color 0.15s ease, opacity 0.15s ease;
}

.ca6 {
    background: #0c6cf2;
    color: #ffffff;
}

.cbo {
    height: 50px;
    background: var(--primary-soft);
    color: var(--primary-strong);
}

.ca6:hover:not(.caj):not(:disabled) {
    background: #0a5ac9;
}

.ca6:disabled {
    opacity: 1;
    background: #65a5ff;
    cursor: not-allowed;
}

.cbo:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.ca6.caj {
    background: #65a5ff;
    cursor: not-allowed;
}

.ca6.cal {
    background: #65a5ff;
    cursor: not-allowed;
}

.ca6.cal .cd,
.cbo.cal .cd {
    display: none;
}

.ce {
    width: 26px;
    height: 26px;
    display: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: spin 1s linear infinite;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 16 17'><path fill='%23ffffff' d='M2.343 14.157A8 8 0 0 1 4.368 1.372l1.126 2.21a5.52 5.52 0 0 0-1.397 8.821z'/></svg>");
}

.cbo .ce {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 16 17'><path fill='%230c6cf2' d='M2.343 14.157A8 8 0 0 1 4.368 1.372l1.126 2.21a5.52 5.52 0 0 0-1.397 8.821z'/></svg>");
}

.ca6.cal .ce,
.cbo.cal .ce {
    display: inline-block;
}

.cax {
    margin: 0;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: var(--muted);
}

#open-import-wallet {
    margin-top: 0;
}

.cbw {
    justify-self: center;
    padding: 0;
    color: #0c6cf2;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: opacity 0.15s ease, transform 0.1s ease;
}

.cbw:hover {
    opacity: 0.7;
}

.cbx {
    justify-self: start;
    margin-top: 8px;
}

.cby {
    font-size: 16px;
    font-weight: 600;
}

.cb {
    display: inline-flex;
    width: 36px;
    height: 29px;
    align-items: center;
    justify-content: center;
    padding: 1px 6px;
    border-radius: 0;
    color: var(--text);
}

.cbh > .cb {
    margin-top: -24px;
    margin-left: -24px;
    margin-bottom: 24px;
}

.cbh > .ca6 {
    width: 100%;
    margin-top: 16px;
}

.cag {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.ca7 {
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 0;
}

.ca7 svg {
    width: 24px;
    height: 24px;
}

.ca4 {
    position: relative;
}

.ca4 .cw {
    padding-right: 70px;
}

.ca5 {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #121d33;
    background: none;
    opacity: 0.3;
    font-size: 14px;
    font-weight: 600;
}

.ca5:hover {
    opacity: 0.6;
}

.cn {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    min-height: 300px;
}

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

.co {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cq {
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: spin 1s linear infinite;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 16 17'><path fill='%23f0f2f7' d='M16 8.5a8 8 0 1 1-16 0 8 8 0 0 1 16 0m-13.52 0a5.52 5.52 0 1 0 11.04 0 5.52 5.52 0 0 0-11.04 0'/><path fill='%230c6cf2' d='M2.343 14.157A8 8 0 0 1 4.368 1.372l1.126 2.21a5.52 5.52 0 0 0-1.397 8.821z'/></svg>");
}

.cr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.cr .cb {
    margin-bottom: 0;
}

.ci {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    color: #0c6cf2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
}

.cg {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 32px;
}

.ch {
    display: grid;
    grid-template-areas: "stack";
    margin-bottom: 20px;
}

.cf {
    width: 66px;
    height: 66px;
    grid-area: stack;
    overflow: hidden;
    border-radius: 100px;
    background: #f0f2f7;
    display: grid;
    place-content: center;
}

.cl {
    display: none;
    width: 30px;
    height: 30px;
    grid-area: stack;
    place-self: end;
    place-content: center;
    box-sizing: content-box;
    border-radius: 100px;
    margin-bottom: -4px;
    margin-right: -4px;
    border: 3px solid #fff;
    background: #fff;
    line-height: 1;
}

.cl svg {
    display: block;
}

.cl.can {
    display: grid;
}

.cj {
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #677184;
    text-align: center;
}

.cj strong {
    color: #121d33;
    font-weight: 600;
}

.ck {
    color: #121d33;
    font-weight: 500;
}

.cm {
    flex-shrink: 0;
}

#resend-email-button {
    background: transparent;
    border: 1px solid #dde1ec;
    color: var(--primary-strong);
}

#resend-email-button:hover:not(:disabled),
#resend-email-button:focus:not(:disabled),
#resend-email-button:active:not(:disabled) {
    background: var(--primary-soft);
    border: 1px solid var(--primary-strong);
}

#resend-email-button:disabled,
#resend-email-button.cal {
    background: #f0f2f7;
    border-color: transparent;
    color: rgba(12, 108, 242, 0.45);
}

#resend-email-button.cal .cm {
    display: none !important;
}

#resend-email-button.cal .cd {
    display: none !important;
    opacity: 0 !important;
}

.cay {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.cay.caz {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ca0 {
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    outline: none;
    padding: 0;
    transition: border-color 0.15s ease;
}

.ca0:focus {
    border: 1px solid #0C6CF2;
    background: var(--surface);
    box-shadow: none;
}

.ca0.cak {
    border-color: var(--error);
    background: #ffffff;
}

.ca8 {
    position: fixed;
    right: 0;
    bottom: 14px;
    display: flex;
    align-items: center;
    height: 62px;
    width: 78px;
    background: transparent;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15), 0 4px 14px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: width 0.3s ease;
    z-index: 200;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.ca8:hover {
    width: 320px;
    border-radius: 4px 0 0 4px;
}

.ca9 {
    background: #3b65f6;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cbb {
    flex-shrink: 0;
    width: 78px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 0;
    margin-left: 0;
}

.ca9 {
    flex: 1;
    padding: 0 18px 0 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease 0.05s;
    font-size: 14px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 400;
}

.ca8:hover .ca9 {
    opacity: 1;
}

.cbc {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

.cbc strong {
    font-weight: 700;
    color: #ffffff;
}

.cba {
    display: none;
}

.cbq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 0;
    padding: 24px 16px 12px;
}

.security-key-subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #677184;
    text-align: center;
    max-width: 360px;
}

.cbp {
    position: relative;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbr {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #0C6CF2;
    opacity: 0;
    animation: keyPulse 1.8s ease-out infinite;
}

@keyframes keyPulse {
    0%   { transform: scale(0.85); opacity: 0.6; }
    60%  { opacity: 0.15; }
    100% { transform: scale(1.25); opacity: 0; }
}

.security-key-hint {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #677184;
    text-align: center;
    max-width: 320px;
}

.cbz {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #677184;
    text-align: center;
    flex-wrap: wrap;
}

.cb0 {
    border: none;
    background: none;
    padding: 0;
    color: #0c6cf2;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.cb0:hover {
    opacity: 0.75;
}

.caa {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.c8 {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #121d33;
}

.c8:hover {
    opacity: 0.7;
}

.cae {
    flex: 1;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #121d33;
}

.cad {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.85;
    margin-right: -4px;
}

.cab {
    color: #98a1b2;
    background: #DFE3EB;
    cursor: default;
    pointer-events: none;
}

.cac {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
}

.cac .cy {
    margin-bottom: 0;
}

.c9 {
    border: none;
    background: none;
    padding: 0;
    color: #0c6cf2;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
}

.c9:hover {
    opacity: 0.75;
}

.cbt {
    width: 48px;
    height: 48px;
    margin: 10px auto 16px;
    border-radius: 50%;
    background: rgba(12, 108, 242, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbu {
    width: 100%;
    max-width: 360px;
    height: 4px;
    margin: 24px auto 0;
    border-radius: 999px;
    background: var(--surface);
    overflow: hidden;
}

.cbv {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--primary-strong);
    transition: width 2.8s linear;
}

.ca1 {
    margin-top: auto;
    margin-bottom: 1px;
    padding: 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 400;
}

.c4 {
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.c4 a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    font-weight: 500;
    line-height: 18px;
}

.c5 {
    display: grid;
    grid-template-columns: 1fr min-content max-content;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.8);
}

.c6 {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    font-weight: 400;
}

.c7 {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.cao {
    position: relative;
}

.cau {
    min-height: 24px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    font-size: 12px;
    line-height: 24px;
    font-weight: 500;
}

.cav {
    font-size: 12px;
    line-height: 1;
}

.cat {
    position: absolute;
    left: 0;
    bottom: calc(100% + 8px);
    width: 172px;
    padding: 8px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: rgba(5, 24, 61, 0.25) 0 4px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    animation: popoverFadeIn 0.15s ease-out;
    transform-origin: bottom left;
}

@keyframes popoverFadeIn {
    from { opacity: 0; transform: translateY(4px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.cap {
    width: 100%;
    min-height: 44px;
    padding: 10px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    text-align: left;
    color: #121D33;
    background: #ffffff;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.12s ease;
}

.cap:hover {
    background: #f0f2f7;
}

.cas {
    display: inline;
    white-space: nowrap;
}

.cap.cah,
.cap.cah:hover {
    background: #ECF5FE;
}

.car {
    font-size: 18px;
    line-height: 1;
    margin-right: 6px;
}

.caq {
    display: none;
}

.cap.cah .caq {
    display: inline-flex;
}

.hello-again-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 24px;
}

.hello-again-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f0f2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hello-again-identifier {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--primary-strong);
    word-break: break-all;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 560px) {
    body {
        padding: 24px 16px 120px;
    }

    .ca2 {
        padding: 0;
    }

    .ca3 {
        padding: 0;
    }

    .ca {
        border-radius: 16px;
    }

    .cbd,
    .cbd.cah {
        min-height: unset;
    }

    .cbh {
        padding: 24px 24px 0;
    }

    .cbe {
        padding: 24px 24px 28px;
    }

    .cbl {
        font-size: 20px;
        line-height: 30px;
    }

    .cbj {
        font-size: 16px;
        line-height: 24px;
    }

    .cu {
        margin-top: 24px;
    }

    .cx,
    .ca6,
    .cbo {
        min-height: 48px;
        font-size: 16px;
    }

    .cx {
        padding: 0 18px;
    }

    .cw {
        min-height: 46px;
        font-size: 16px;
    }

    .c3 {
        height: 120px;
        padding: 12px 16px;
    }

    .ca0 {
        font-size: 18px;
    }

    .ca1 {
        padding: 0 14px 20px;
    }

    .c5 {
        justify-content: center;
    }

    .cat {
        width: min(250px, calc(100vw - 24px));
    }
}
