.mx-video-consent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #12222f;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.mx-video-consent::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(9, 22, 32, 0.65);
}

.mx-video-consent.is-loaded {
    background: none;
    display: block;
}

.mx-video-consent.is-loaded::before {
    display: none;
}

.mx-video-consent iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.mx-video-consent__inner {
    position: relative;
    max-width: 34rem;
    padding: 1.5rem;
    text-align: center;
}

.mx-video-consent__text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mx-video-consent__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: 2rem;
    background-color: #e2001a;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.mx-video-consent__button:hover,
.mx-video-consent__button:focus {
    background-color: #b80015;
    color: #fff;
}

.mx-video-consent__note {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    opacity: 0.75;
}

.mx-video-consent__note a {
    color: inherit;
    text-decoration: underline;
}

