.cookie-consent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1.6rem;
    padding: 3vw 3.5vw;
    height: 35vh;
    width: 37vw;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 99;
    border: none;
    box-shadow: 1vw -0.5vw 2vw rgba(34, 5, 73, 0.2), -1vw -0.5vw 2vw rgba(34, 5, 73, 0.2);
    background-image: url('/static/vectors/cookie.svg');
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center left;
}

.enter {
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.exit {
    transform: translateX(-40vw);
    transition: transform 0.5s ease;
}

.remove {
    display: none;
    visibility: hidden;
}

.cookie-consent p {
    color: var(--grey);
    font-size: 1.1rem;
}

.cookie-consent h6 {
    color: var(--yellow);
    font-family: Lato, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.8rem;
    letter-spacing: 0.03rem;
    cursor: default;
    margin-bottom: 2vh;
}

.cookie-btn {
    width: 15rem;
    background-color: var(--yellow);
    padding: 2vh 2vw;
    color: white;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03rem;
    border: none;
    border-radius: 0.6rem;
    transition: letter-spacing 250ms ease, opacity 250ms ease;
    cursor: pointer;
}

.cookie-btn:hover {
    opacity: 0.85;
    letter-spacing: 0.05rem;
    transition: letter-spacing 250ms ease, opacity 250ms ease;
}

.cookie-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cookie-links a {
    color: var(--yellow);
    font-size: 1.1rem;
    font-weight: 600;
}

@media (orientation: portrait) {

    .cookie-consent {
        border-radius: 2rem;
        padding: 8vw 9vw;
        height: 30vh;
        width: 90vw;
        position: fixed;
        bottom: 5vw;
        left: 5vw;
        border: none;
        box-shadow: 3vh -2vh 10vh #2205494d, -3vh -2vh 10vh rgba(34, 5, 73, 0.3);
    }
    
    .exit {
        transform: translateX(-100vw);
    }
    
    .remove {
        display: none;
        visibility: hidden;
    }
    
    .cookie-consent p {
        font-size: 1.8rem;
    }
    
    .cookie-consent h6 {
        font-size: 3rem;
    }
    
    .cookie-btn {
        width: 22rem;
        padding: 2vh 2vw;
        font-size: 1.7rem;
    }
    
    .cookie-links a {
        font-size: 1.7rem;
    }
}