/* Modal video */
.modal-video {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.6);
}

.inner-modal-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(0, 0, 0, 0.7);
    padding: 0 30px 30px 30px;
    position: relative;
    height: inherit;
}

.modal-video .close-button-row {
    display: flex;
    width: 100%;
    justify-content: end;
    align-items: end;
    padding: 15px 0 10px 0;
}

.modal-video .close-button-row .close-modal-video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.modal-video .close-button-row .close-modal-video img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-video-player {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95%;
}

.modal-video-player > iframe {
    height: inherit;
    width: 100%;
    border: none;
}
