#consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 8rem;
    background-color: #000000ea;
    transition: opacity 1s ease;
    display: flex;
    width: 100%;
    /* justify-content: center; */
    align-items: center;
    z-index: 999999;
}
#consent-popup.hidden {
    opacity: 0;
}
#consent-popup p {
    font-size: 1.7rem;
    width: 85%;
    color: #ffffff;
}
#consent-popup a {
    padding: 10px 20px;
    border: 1px solid rgb(255, 255, 255);
    font-size: 1.5rem;
    border-radius: 4px;
    color: #ffffff;
}
#consent-popup a:hover {
    color: #000000;
    background-color: #ffffff;
}

@media only screen and (max-width: 767px) {
    #consent-popup { 
        padding: 2rem .7rem;
    } 
    #consent-popup p {
        font-size: 1.4rem;
    }
    #consent-popup a {
        padding: 15px 10px;
        font-size: 1.3rem;
    }
}