#rgpd-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    z-index: 9999;
    align-items: baseline;
}

#rgpd-popup button {
    background-color: #733daf;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#rgpd-popup button:hover {
    background-color: #3c2555;
}


@media screen and (max-width: 768px) {
    #rgpd-popup {
    display: block;
    }
    
    #rgpd-popup button {
        margin-left: 2rem;
    }
}
