.consent_popup {
    position: fixed;
    height: 100dvh;
    width: 100dvw;
    background-color: rgba(0,0,0,0.8);
    top: 0;
    left: 0;
    box-sizing: border-box;
    z-index: 9999999;
    display: none;
}

.consent_popup_container {
    width: 56rem;
    max-width: calc(100% - 2rem);
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #b1b2b3;
    box-sizing: border-box;
    max-height: calc(100dvh - 2rem);
    overflow: auto;
}

@media screen and (max-width: 28rem) {
    .consent_popup_container {
        padding: 1rem;
    }
}

.consent_popup_details {
    display: none;
}

.consent_popup_container h2,
.consent_popup_container h3 {
    font-family: MerriweatherRegular,Arial,Tahoma,Verdana,Helvetica,sans-serif;
    font-weight: bold;
}

.consent_popup_container p {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.consent_popup_container a {
    font-weight: bold;
    color: #009a3b;
    transition: color .3s ease;
    text-decoration: underline;
    cursor: pointer;
}

.consent_popup_container a:hover,
.consent_popup_container a:focus {
    font-weight: bold;
    color: #006e2c;
    transition: color .3s ease;
}

.consent_popup_buttons {
    display: table;
    margin: 2rem auto 0;
    text-align: center;
}

.consent_popup_container .consent_popup_decline,
.consent_popup_container .consent_popup_accept {
    display: inline-block;
    padding: 12px 24px;
    position: relative;
    background: #009a3b;
    background-color: rgb(0, 154, 59);
    font-family: SourceSansSemiBold,Arial,Tahoma,Verdana,Helvetica,sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 8px;
    border-top-right-radius: 0;
    transition: background-color .3s ease;
    margin: 0 0.5rem 1rem;
    cursor: pointer;
    text-decoration: none;
}

.consent_popup_container button:hover,
.consent_popup_container .consent_popup_accept:hover,
.consent_popup_container button:focus,
.consent_popup_container .consent_popup_accept:focus {
    text-decoration: none;
    background-color: #006e2c;
    color: #fff;
    outline: none;
    transition: background-color .3s ease;
}

.consent_link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 9999998;
}

@media screen and (max-width: 500px) and (min-width: 401px) {
    .consent_link {
        top: 4rem;
    }
}

.consent_link_show {
    font-weight: bold;
    color: #009a3b;
    transition: color .3s ease;
    text-decoration: underline;
    cursor: pointer;
}

.consent_link_show:hover,
.consent_link_show:focus {
    color: #006e2c;
    transition: color .3s ease;
}

.consent_popup_container .consent_cookie_box {
    margin-top: 1rem;
    background-color: #F8F8F8;
    padding: 1rem;
    display: none;
}

.consent_popup_container .consent_cookie_box table td {
    padding: 0.5rem 0;
    vertical-align: baseline;
}

.consent_popup_container .consent_cookie_box table td:first-child {
    padding-right: 2rem;
}