/* Cookie Banner */
.cookie-banner {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    -webkit-backdrop-filter: blur(2.5rem);
    backdrop-filter: blur(2.5rem);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.cookie-content {
    background-color: var(--grey);
    border-radius: 24rem;
    padding: 40rem;
    max-width: 520rem;
    width: calc(100% - 40rem);
    font-family: 'Oak Sans';
}

.cookie-content h3 {
    font-size: 24rem;
    font-weight: 600;
    color: var(--black);
    padding-bottom: 16rem;
}

.cookie-content p {
    font-size: 16rem;
    font-weight: 400;
    color: var(--black);
    padding-bottom: 24rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    padding-bottom: 24rem;
}

.cookie-options label {
    font-size: 16rem;
    display: flex;
    gap: 10rem;
    align-items: center;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12rem;
}

.cookie-buttons button {
    border: none;
    border-radius: 40rem;
    padding: 10rem 20rem;
    font-size: 16rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

#cookieAcceptAll {
    background-color: var(--darkGreen);
    color: var(--lightGreen);
}

#cookieAcceptAll:hover {
    background-color: var(--lightGreen);
    color: var(--darkGreen);
}

#cookieSave {
    background-color: var(--purple);
    color: var(--pink);
}

#cookieSave:hover {
    background-color: var(--pink);
    color: var(--purple);
}

#cookieDecline {
    background-color: var(--black);
    color: var(--white);
}

#cookieDecline:hover {
    opacity: 0.8;
}
