#gaConsentPopup {
    position: fixed;
    display: flex;
    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;
    right: 0;
    width: 98.4vw;
    background-color: #5252bde3;
    color: white;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

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

#consentButtons {
    display: flex;
    width: 100%;
    gap: 10px;
}

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

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

#consentApproveBtn {
    background-color: #C84343;
}

#consentApproveBtn:hover {
    background-color: #ee4c4c;
}

#gaConsentPopup a {
    color: white;
}

#consentDesc a {
    text-decoration: underline;
}

#consentDesc {
    display: block;
}

#consentDesc p {
    font-size: 1.05em;
    line-height: 180%;
    margin-bottom: 0;
}

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

    #gaConsentPopup {
        width: auto;
    }

    #consentButtons {
        flex-direction: column;
    }

    #gaConsentPopup button {
        width: 100%;
    }

}