.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #000000e7;
    color: #929292;
    padding: 40vh;
    border: none;
    text-align: center;
    font-size: 16px;
    z-index: 0;
    font-family: 'Poppins';
    opacity: 0;
    animation: cookie 0.6s forwards linear 7s;
}

.cookie-popup a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.cookie-popup button{
    background-color: #bda146;
    font-family: 'Albert Sans';
    outline: none;
    border: 1px solid #ffffff;
    margin: 10px 10px;
    padding: 8px 15px;
    font-size: 13px;
    letter-spacing: 1.2px;
    color: #ffffff;
    cursor: pointer;
}

#essential{
    background-color: #969696;
}

#essential:hover{
    background-color: #444444;
    transition: 0.5s;
}

.cookie-popup button:hover{
    background-color: #444444;
    transition: 0.5s;
}

@keyframes cookie {
    0%{opacity: 0; z-index: 9999999999999999999999999999999;}
    100%{opacity: 100%; z-index: 9999999999999999999999999999999;}
}

@media (max-width: 1000px) {
    .cookie-popup {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100vw;
        background-color: #000000e7;
        color: #929292;
        padding: 40vh 10%;
        border: none;
        text-align: center;
        font-size: 12px;
        z-index: 0;
        font-family: 'Poppins';
        opacity: 0;
        animation: cookie 0.6s forwards linear 7s;
    }
    
    .cookie-popup a {
        text-decoration: none;
        color: #ffffff;
        font-weight: bold;
    }
    
    .cookie-popup button{
        background-color: #bda146;
        font-family: 'Albert Sans';
        outline: none;
        border: 1px solid #ffffff;
        margin: 10px 10px;
        padding: 8px 15px;
        font-size: 12px;
        letter-spacing: 1.2px;
        color: #ffffff;
        cursor: pointer;
    }
}