.consent-popup {
    position: fixed;
    background-size: cover;
    background-image: url('https://herbalxchange.com/wp-content/uploads/2024/01/shop-flash-deal-background.svg');
    background-color: #f5f5f5;
    padding: 15px;
    border: 1px solid #22B573;
    border-radius: 20px;
    display: none;
    z-index: 1001;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 10px -1px rgba(0,0,0,.3),0 2px 50px 2px rgba(0,0,0,.2);
}
.consent-popup-content {
    text-align: center;
    height: 100%;
}
.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: block;
    z-index: 1000;
    backdrop-filter: saturate(180%) blur(5px);
}
#consent-row {
    height: 100%;
    width: 100%;
    display: flex;
}
#consent-row > .consent-column:nth-child(1) {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#consent-row > .consent-column:nth-child(2) {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.consent-column:nth-child(1) img {
    width: 70%;
}
.consent-column h2 {
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
    font-size: 45px;
    color: #000000;
    text-shadow: 0.08em 0.08em 0.08em #FFFFFF;
    padding-bottom: 10px;
    line-height: 1em;
    font-weight: 500;
}
.consent-column p {
    color: #0B8457;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
    font-size: 25px;
}
#consent-accept {
    cursor: pointer;
    padding: 0.3em 1em;
    color: #FFFFFF;
    border-width: 0px;
    border-radius: 10px;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
    background-color: #22b573;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7em;
    width: fit-content;
    margin: 20px auto 0px;
}
.consent-cancel-button {
    color: #0B8457;
    border-width: 0px;
    border-radius: 10px;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
    background-color: #fcff6d;
    padding: 0.3em 1em;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7em;
    display: block;
    width: fit-content;
    margin: 30px auto 0px;
    text-decoration: none;
}
#consent-accept:hover,
.consent-cancel-button:hover {
    opacity: 0.7;
}
@media (max-width: 980px) {
    .consent-popup {
        width: 90% !important;
        height: fit-content;
    }
    #consent-row {
        flex-direction: column !important;
        align-items: center !important;
    }
    .consent-column {
        width: 100% !important;
    }
    .consent-column:nth-child(1) img {
        width: 30% !important;
        margin-bottom: 20px !important;
    }
}
