:root {
    font-size: 62.5%;
    font-family: "Open Sans", sans-serif;
    --blue: #0080dd;
    --red: #ff0000;
    --almost-white: #fafafa;
    --lightgrey: #bebebe;
    --grey: #8e8e8e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-banner {
    width: 100vw;
    height: 40px;
    background-color: #8d30ff;
    color: #fff;
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    overflow: hidden;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 1;
    will-change: transform;
    contain: layout paint size;
    display: none;
    align-items: center;
}

.marquee {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 200px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.marquee__item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-width: max-content;
    padding-inline: 12px;
}

.banner-link {
    color: #fff;
    text-decoration: none;
}

.banner-link:hover {
    text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
    .top-banner {
        --reduced-motion: 1;
    }
}

body {
    padding-top: 4.5rem;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container h2 {
    font-size: 2.5rem;
}

.container h1 {
    font-size: 2.5rem;
}

.second-heading {
    margin-bottom: 2rem;
}

.info-box {
    background-color: var(--almost-white);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    font-size: 1.1rem;
    color: var(--grey);
    transition: all 250ms linear;
    max-width: 40rem;
}

.sbirkobox {
    display: flex;
    padding: 1rem;
    width: 35rem;
    margin-bottom: 1rem;
}

.zasilkovna-vyzvednuti {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    width: 35rem;
    margin-bottom: 1rem;
}

.zasilkovna-adresa {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    width: 35rem;
    margin-bottom: 2rem;
}

.main-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.secondary-text {
    font-size: 1.1rem;
    color: var(--lightgrey);
}

.warning-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--red);
    margin-top: 1rem;
}

.logo {
    width: 6rem;
    margin-top: 0.5rem;
    margin-bottom: 4rem;
}

.info-logo-box {
    margin-right: 0.5rem;
}

.info-logo {
    width: 2rem;
}

.logo-sbirkobox-box {
    margin-right: 0.5rem;
    padding-top: 0.5rem;
}

.logo-sbirkobox {
    width: 3rem;
}

.logo-zasilkovna-vyzvednuti-box {
    margin-right: 0.5rem;
}

.logo-zasilkovna-vyzvednuti {
    width: 3rem;
}

.logo-zasilkovna-adresa-box {
    margin-right: 0.5rem;
}

.logo-zasilkovna-adresa {
    width: 3rem;
}

.box-border {
    border: 1px solid var(--lightgrey);
    border-radius: 1rem;
    cursor: pointer;
    outline: none;
}

.clicked-box {
    border: 1px solid var(--blue);
    box-shadow: 0 0 0 1px var(--blue);
    border-radius: 1rem;
    cursor: pointer;
    outline: none;
}

.continue-button {
    width: 35rem;
    padding: 1.2rem;
    border-radius: 1rem;
    border: none;
    outline: none;
    color: #fff;
    background-color: var(--lightgrey);
    transition: all 250ms;
    margin-bottom: 2rem;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
}

footer {
    width: 35rem;
    text-align: center;
    color: var(--lightgrey);
    font-size: 1.1rem;
}

footer .contact {
    color: var(--lightgrey);
    font-size: 1.1rem;
    text-decoration: none;
}

.blue {
    background-color: var(--blue);
}

.blue-border {
    border: 1px solid var(--blue);
}