.video-player-popup {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}
.video-player-popup:hover .preview-video {
    -webkit-transform: scale(1.11);
    -moz-transform: scale(1.11);
    -ms-transform: scale(1.11);
    -o-transform: scale(1.11);
    transform: scale(1.11);
}
.preview-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: center/cover no-repeat;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    display: none;
}
.popup.popup-active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.popup .overlay-popup {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}
.popup .inner-popup {
    --container: 1234px;
    position: relative;
    z-index: 2;
    width: -webkit-calc(100% - 48px);
    width: -moz-calc(100% - 48px);
    width: calc(100% - 48px);
    max-width: var(--container);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 24px;
    background-color: #fff;
}
.popup .close-popup {
    position: absolute;
    bottom: 100%;
    right: 0;
    padding: 0;
    font-size: 60px;
    height: 40px;
    color: var(--white);
    line-height: 0;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}
.popup .close-popup:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.video-player-popup .play-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border: 3px solid var(--white);
    padding: 0;
    background-color: var(--transparent);
    border-radius: 20px;
    overflow: hidden;
    font-size: 0;
}
.video-player-popup .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.video-player-popup .play-button:before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(/wp-content/uploads/2025/03/icon-play-white.svg) center /
        contain no-repeat;
    margin-left: 5px;
} /* <= MOBILE */
@media all and (max-width: 600px) {
    .popup .inner-popup {
        padding: 16px;
    }
    .popup .inner-popup {
        width: 100%;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
    }
}
