:root {
    --primary-background: #1c1c1e;
    --secondary-background: #2c2c2e;

    --primary-white: #f2f2f7;
    --secondary-white: #e5e5ea;
    --teritiary-white: #D1D1D6;
    --focus-white: #ffffff;

    --primary-black: #3c3c3e;



    --gray: #4D4D56;

    --blue: #20607F;
    --green: #3F603F;
    --orange: #ff9f0a;
    --yellow: #FFD639;

    --success: #41F3AE;
    --warning: #FF1A61;

    --s-border: 6px;
    --default-border: 12px;
    --l-border: 24px;
    --max-border: 100px;
}

body {
    margin: 3px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: var(--teritiary-white);
    color: var(--primary-black);
}

.container.default {
    width: 100%;
    min-width: 812px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1920px) {
    .container.default {
        min-width: 1024px;
        max-width: 50%;
    }
}

@media screen and (min-width: 1440px) {
    .container.default {
        min-width: 1024px;
        max-width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .container.default {
        min-width: 728px;
        max-width: 90%;
    }
}

@media screen and (max-width: 767px) {
    .container.default {
        min-width: auto;
        max-width: 100%;
    }
}

@media screen and (max-width: 478px) {
    .container.default {
        max-width: 100%
    }
}

.content-wrapper.default {
    margin: 3px 0px;
    border-radius: var(--s-border);
    background-color: var(--primary-white);
    overflow: hidden;
}

.section.default {
    padding: 24px;
}

@media screen and (max-width: 767px) {
    .section.default {
        padding: 12px;
    }
}

.section.flat {
    padding: 0px;
}

.section.footer {
    padding: 24px;
}

@media screen and (max-width: 767px) {
    .section.footer {
        padding: 12px;
    }
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.h1.showcase {
    font-weight: 900;
    margin-bottom: 6px;
    font-size: 56px;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .h1.showcase {
        font-size: 48px;
    }
}

@media only screen and (max-width: 478px) {
    .h1.showcase {
        font-size: 40px;
    }
}

.h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
}

.h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
}

.tb.xl {
    font-size: 28px;
}

.tb.l {
    font-size: 24px;
}

.tb.m {
    font-size: 18px;
}

.tb {
    font-size: 16px;
}

.tb.xl.center {
    font-size: 28px;
    text-align: center;
}

.tb.l.center {
    font-size: 24px;
    text-align: center;
}

.tb.m.center {
    font-size: 18px;
    text-align: center;
}

.tb.center {
    font-size: 16px;
    text-align: center;
}

.bold-span {
    font-weight: 700;
}

.red-span {
    color: var(--warning);
}

.highlight-span.green {
    background-color: var(--green);
    color: var(--primary-tan);
    padding: 0px 3px;
}

.highlight-span.blue {
    background-color: var(--blue);
    color: var(--primary-tan);
    padding: 0px 3px;
}

.highlight-span.orange {
    background-color: var(--orange);
    color: var(--primary-tan);
    padding: 0px 3px;
}

.highlight-span.yellow {
    background-color: var(--yellow);
    color: var(--primary-tan);
    padding: 0px 3px;
}

.button {
    margin-top: 12px;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    min-width: 120px;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .button {
        font-size: 14px !important;
        min-width: 30px !important;
        padding: 7px 15px !important;
        line-height: 1.43 !important;
    }
}

/* Loader (3 bouncing dots) */
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 72px; /* keeps space reserved while loading */
}

.loader .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.2s infinite ease-in-out;
}

.loader .dot.orange { background: var(--orange); animation-delay: 0s; }
.loader .dot.blue   { background: var(--blue);   animation-delay: 0.15s; }
.loader .dot.green  { background: var(--green);  animation-delay: 0.3s; }

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.6; }
    40% { transform: translateY(-8px); opacity: 1; }
}

/* Screen-reader-only utility */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}