#video {}

#video .video__holder {
    border-radius: 15px;
    overflow: hidden;
    max-height: 710px;
}

#video .wp-video {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    overflow: hidden;
}

#video .wp-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 100%;
    max-width: 100%;
}

#video .mejs-container *,
#video .mejs-container {
    max-height: 710px;
    max-width: 1530px;
}

#video .mejs-container-fullscreen .mejs-container,
#video .mejs-container-fullscreen .mejs-container *, #video .mejs-container-fullscreen .mejs-container{
    max-width: 100% !important;
    max-height: 100% !important;
}

.mejs-container-fullscreen .mejs-mediaelement, .mejs-container-fullscreen video,
.mejs-container-fullscreen .mejs-controls {
    max-width: 100% !important;
    max-height: 100% !important;
}

#video .mejs-container .mejs-controls {
    background-color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

#video .mejs-container:hover .mejs-controls {
    opacity: 1;
}

