.modal-popup {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;

    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-popup.active {
    display: flex;
}

.modal-popup__close {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
}
.modal-popup__close svg {
    fill: white;
}

.modal-popup__inner video {
    width: 100%;
}
.modal-popup__inner iframe {
    width: 100%;
    height: 70vh;
}
