.ce-modal {
    display: none;
    position: fixed;
    padding: 1.25rem;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

.ce-modal > .modal-wrapper {
    position: relative;
    display: flex;
    width: min(90%, 1600px);
    height: fit-content;
    margin: auto;
}

.ce-modal .close {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    font-size: 3rem;
    padding: 0 0.5rem;
}

.ce-modal .close:after{
    display: inline-block;
    content: "\00d7";
}

.ce-modal video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}