body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0
}

iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.consent_container {
    display: grid;
    place-items: center;
    color: #303030;
    font-family: BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
    visibility: hidden;
}

.consent_container>* {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.consent_container--active {
    visibility: visible;
}

.consent_container__background-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    filter: blur(3px);
    z-index: -1;
}

.consent_container__overlay {
    width: 50%;
    max-width: 625px;
    background-color: #FFFFFF;
    padding: 24px 24px 12px;
    border-radius: 8px;
    box-shadow: 0 5px 26px 0px rgb(0 0 0 / 22%), 0 20px 28px 0px rgb(0 0 0 / 30%);
    box-sizing: border-box;
}

.consent_container__headline {
    font-size: 1.125em;
    font-weight: 700;
}

.consent_container__accept-button {
    background: #0045A5;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
}

.consent_container__accept-button:hover,
.consent_container__accept-button:focus {
    background: #003072;
}