.external-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.external-modal-contents {
    background-color: transparent;
    padding: 15px;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    width: 1600px;
    height: 900px;
    max-width: 95vw;
    max-height: 95vh;
    margin-top: -100px;
}

.external-video-contents {
    background-color: transparent;
    padding: 15px;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    width: 1450px;
    height: 870px;
    max-width: 95vw;
    max-height: 95vh;
    margin-top: -100px;
}

.external-modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 10px

}

.external-modal-header .close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 5px 10px;
}

.external-modal-iframe-wrapper {
    flex-grow: 1;
    display: flex;
}

#external-page-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.no-disp {
    display: none !important;
}