@font-face {
    font-family: "Roboto Condensed";
    src: url("/fonts/roboto-condensed/RobotoCondensed-Variable-v3.008.woff2")
        format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url("/fonts/roboto-condensed/RobotoCondensed-Italic-Variable-v3.008.woff2")
        format("woff2");
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --store-container-width: 1240px;
    --store-radius-small: 4px;
    --store-radius: 10px;
    --store-shadow: 0 12px 32px rgba(33, 42, 49, 0.08);
}

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

html {
    min-width: 320px;
    color: var(--store-text);
    background: var(--store-white);
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--store-text);
    background: var(--store-white);
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--store-yellow);
    outline-offset: 3px;
}

.store-container {
    width: min(100% - 48px, var(--store-container-width));
    margin-inline: auto;
}

.store-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: var(--store-radius-small);
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.store-button--primary {
    color: var(--store-white);
    background: var(--store-red-action);
}

.store-button--primary:hover:not(:disabled) {
    background: var(--store-red-hover);
}

.store-button--dark {
    color: var(--store-white);
    background: var(--store-dark);
}

.store-button:disabled {
    color: var(--store-white);
    background: #999999;
    cursor: not-allowed;
}

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

.store-error {
    max-width: 620px;
    padding-block: 70px;
}

.store-error__code {
    margin: 0;
    color: var(--store-yellow);
    font-size: 74px;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 2px var(--store-dark);
}

.store-error h1 {
    margin: 15px 0 28px;
    color: var(--store-dark);
}

@media (max-width: 640px) {
    .store-container {
        width: min(100% - 28px, var(--store-container-width));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
