.cookie-consent-layer {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 77;
    left: 0;
    background-color: #0006;
}

.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    padding: 2rem;
    width: calc(100vw - 4rem);
    left: 0;
    background-color: var(--color-contrast-weak);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.cookie-consent > button {
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    background-color: var(--color-emphasized-max);
    border: 0;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    color: black;
}

.cookie-consent > button:nth-child(2n) {
    background-color: var(--color-button-secondary-darker);
}