#gaConsentPopup {
    width: 640px;
    position: fixed;
    display: none;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    box-sizing: border-box;
    margin: 10px;
    padding: 10px 30px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #5252bde3;
    color: white;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 99999;
}

#gaConsentPopup button {
    border-radius: 10px;
    padding-left: 0;
    padding-right: 0;
    width: 50%;
}

#gaConsentPopup p {
    font-size: 0.9em;
    line-height: 150%;
}

#consentButtons {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    height: auto;
}

#consentRejectBtn {
    background-color: transparent;
    border: 1px solid;
}

#consentRejectBtn:hover {
    background-color: #5757b1e3;
}

#gaConsentPopup a {
    color: white;
}


@media only screen and (max-width: 640px) {

    #gaConsentPopup {
        width: auto;
        left: 0;
        transform: none;
        padding: 15px 30px;
    }

    #consentButtons {
        flex-direction: column;
    }

    #gaConsentPopup button {
        width: 100%;
    }

}