/**
* Cookie blocker css
 */
.consent-video.consent-iframe-styles {
    background-color: transparent;
}

.consent-video.consent-hidden {
    visibility: hidden !important;
}

.consent-blocked-content-notice {
    display: none;
}

.consent-placeholder-parent {
    height: inherit;
}

.consent-optin .consent-blocked-content-container .consent-blocked-content-notice, .consent-optin .consent-embed-video .consent-blocked-content-notice, .consent-optout .consent-blocked-content-container .consent-blocked-content-notice, .consent-optout .consent-embed-video .consent-blocked-content-notice {
    display: block;
}

.consent-blocked-content-container, .consent-embed-video {
    animation-name: consent-fadein;
    animation-duration: 600ms;
    background: #FFF;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 10px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: inherit;
    position: relative;
}

.consent-blocked-content-container.gmw-map-cover, .consent-embed-video.gmw-map-cover {
    max-height: 100%;
    position: absolute;
}

.consent-blocked-content-container.consent-video-placeholder, .consent-embed-video.consent-video-placeholder {
    padding-bottom: initial;
}

.consent-blocked-content-container iframe, .consent-embed-video iframe {
    visibility: hidden;
    max-height: 100%;
    border: 0 !important;
}

.consent-blocked-content-container .consent-custom-accept-btn, .consent-embed-video .consent-custom-accept-btn {
    white-space: normal;
    text-transform: initial;
    cursor: pointer;
    position: absolute !important;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 200px;
    font-size: 14px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
 /* Black background with opacity */
    color: #fff;
    text-align: center;
  /*make sure the container is on top of the iframe, but below our cookie notice */
    z-index: 98;
  /*We need some lineheight, for example Builder will force a lineheight of 0*/
    line-height: 23px;
}

.consent-blocked-content-container .consent-custom-accept-btn:focus, .consent-embed-video .consent-custom-accept-btn:focus {
    border: 1px dotted #cecece;
}

.consent-blocked-content-container .consent-blocked-content-notice, .consent-embed-video .consent-blocked-content-notice {
    white-space: normal;
    text-transform: initial;
    position: absolute !important;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
    font-size: 14px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
 /* Black background with opacity */
    color: #fff;
    text-align: center;
  /*make sure the container is on top of the iframe, but below our cookie notice */
    z-index: 98;
  /*We need some lineheight, for example Builder will force a lineheight of 0*/
    line-height: 23px;
}

.consent-blocked-content-container .consent-blocked-content-notice .consent-links, .consent-embed-video .consent-blocked-content-notice .consent-links {
    display: block;
    margin-bottom: 10px;
}

.consent-blocked-content-container .consent-blocked-content-notice .consent-links a, .consent-embed-video .consent-blocked-content-notice .consent-links a {
    color: #fff;
}

.consent-blocked-content-container .consent-blocked-content-notice .consent-blocked-content-notice-body, .consent-embed-video .consent-blocked-content-notice .consent-blocked-content-notice-body {
    display: block;
}

.consent-blocked-content-container div div {
    display: none;
}

.consent-embed-video .consent-placeholder-element {
    width: 100%;
    height: inherit;
}

@keyframes consent-fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}