.cookie-banner {
    background: #000;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
    font-size: large;
    font: inherit;
    color: #fff;
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.banner-text {
    max-width: 1800px;
    text-align: left;
}

.cookie-banner-link {
    color: #fff;
    text-decoration: underline 1px;
    text-underline-offset: 0.25em;
}

.cookie-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 15px;
}

.accept-button {
    cursor: pointer;
    outline: none;
    font-weight: 400;
    text-align: center;
    padding: 0.25rem 0;
    background: #1e52f3;
    color: #fff;
    display: block;
    border: none;
    font: inherit;
    width: 120px;
}

.accept-button:hover, .accept-button:focus {
    background-color: white;
    color: #1e52f3;
}

.accept-button:focus-visible {
    outline: #D3BDEF dotted 2px;
    outline-offset: 3px;
}

.decline-button {
    cursor: pointer;
    outline: none;
    font-weight: 400;
    text-align: center;
    padding: 0.25rem 0;
    background-color: #999;
    display: inline;
    border: none;
    font: inherit;
    width: 120px;
}

.decline-button:hover, .decline-button:focus {
    background-color: white;
    color: #000;
}

.more-info-button {
    cursor: pointer;
    outline: none;
    margin-left: 30px;
    font-weight: 400;
    text-align: center;
    padding: 0.5% 1%;
    background-color: #999;
    letter-spacing: 1.5px;
    display: inline;
    border: none;
    font: inherit;
}

.more-info-button:hover, .more-info-button:focus {
    background-color: white;
    color: #000;
}

@media (max-width: 1024px) {
    .cookie-banner {
        flex-direction: column;
    }

    .cookie-banner-buttons {
        flex-direction: row;
        width: 100%;
    }

    .accept-button {
        width: auto;
        flex-grow: 1;
    }

    .decline-button {
        width: auto;
        flex-grow: 1;
    }
}

@media (max-width: 400px) {
    .cookie-banner {
        font-size: medium;
        padding: 4%;
    }

    .buttons {
        padding: 1.5%;
    }

    .accept-button {
        letter-spacing: 1px;
    }

    .more-info-button {
        letter-spacing: 1px;
    }
}

