.media-center-video-popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 14px;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.media-center-video-popup--visible {
    opacity: 1;
    pointer-events: auto;
}
.media-center-video-popup__inner {
    position: relative;
    min-width: 290px;
    max-width: calc(100% - 30px);
    min-height: 200px;
    max-height: 88%;
    padding: 15px;
    background-color: #fff;
    transform: translateY(20px);
    transition: transform .3s;
    overflow: auto;
}
.media-center-video-popup--visible .media-center-video-popup__inner {
    transform: none;
}
.media-center-video-popup__iframe-wrap {
    position: relative;
    height: 0;
    /* 16:9 */
    padding-bottom: 56.25%;
    background: no-repeat 50% 50% url(/typo3conf/ext/mmpackage/Resources/Public/Images/loader.svg);
}
.media-center-video-popup__iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
    overflow: hidden;
}
.media-center-video-popup__text {
    margin-top: 15px;
}
.media-center-video-popup__title {
    font-size: 1.2em;
    margin: 0;
}
.media-center-video-popup__description {
    font-size: 1em;
    margin: 1em 0 0;
}
.media-center-video-popup__close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 0;
    color: #f96915;
    background-color: #fff;
    border-radius: 50%;
}
.media-center-video-popup__close-btn .svg-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    margin: auto;
}

@media ( min-width: 768px ) {
    .media-center-video-popup {
        font-size: 16px;
    }
    .media-center-video-popup__inner {
        min-width: 400px;
        max-width: 720px;
        padding: 20px;
    }
}