.modalConsent {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.modalConsentOverlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
    background: rgba(255,255,255,1);
    pointer-events: auto;
    color: #000;
    padding: 15px 2%;
}

.modalConsentOverlay p {
    width: 60%;
}

.modalConsentOverlay .buttonSet {
   display: flex;
    justify-content: center;
    align-items: center; 
}

.modalConsentOverlay .buttonSet .btnReject {
    background: none;
    border: 0;
    color: #000;
    font-size: 1rem;
    font-weight: normal;
    filter: none;
    min-width: 150px;
    cursor: pointer;
    font-family: roc-grotesk-condensed, sans-serif;
}
.modalConsentOverlay .buttonSet .btnAccept {
    background-color: #a19958;
    color: white;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    min-width: 150px;
    filter: none;
    cursor: pointer;
    transition: 0.2s all;
    font-family: roc-grotesk-condensed, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.modalConsentOverlay .buttonSet .btnAccept:hover {
    background: #006938;
}

@media (max-width: 639px) {

    .modalConsentOverlay { 
        flex-direction: column;
        padding: 15px 3%;
    }

    .modalConsentOverlay .buttonSet {
        flex-direction: column;
    }

    .modalConsentOverlay .buttonSet .btnAccept {
        order: 1;
        width: 100%;
    }

    .modalConsentOverlay .buttonSet .btnReject {
        order: 2;
        width: 100%;
        margin-top: 0.5rem;
    }

    .modalConsentOverlay p {
        font-size: 14px;
        width: 100%;
        margin-bottom: 1rem;
    }

}