.video-expand {
    display: flex;
    justify-content: center;
    align-items: center;

}

.video-expand__wrap {
    width: 1200px;
    transition: 2000ms;
    overflow: hidden;
    border-radius: 12px;
}

.video-expand__wrap.video-expand__wrap--full {
    width: 100%;
    border-radius: 0px;
}

.video-expand__file {
    max-width: 100%;
    position: relative;
}

.video-expand__file video-js.video-js.vjs-fluid:not(.vjs-audio-only-mode) {
    padding-top: 56.25%;
}

button.video-expand__cover, .video-expand__cover{position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 5;}
.video-expand__cover video{width: 100%; height: 100%;}

.video-expand__cover::before{
    content:"\f04b";
    font-family: 'Font Awesome 6 Sharp'; 
    position: absolute; 
    width: 100px; 
    height: 100px; 
    border-radius: 100%; 
    background: rgba(255, 255, 255, 0.19);
    box-shadow: 0.5px 0.5px 0.5px 0px rgba(0, 0, 0, 0.25) inset, -0.5px -0.5px 0.5px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(27px); 
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    transition: 300ms;
}
.video-expand__cover:hover::before{
    background: rgba(255, 255, 255, 0.75);
    color: #fff;
}

.video-expand.is-playing .video-expand__cover{
    display: none;
}

@media screen and (max-width: 39.9375em) {
    .video-expand {
        height: auto !important;
    }

    .video-expand__wrap {
        padding: 0 20px;
        width: 100%;
    }

    .video-expand__wrap.video-expand__wrap--full {
        border-radius: 12px;
    }

    .video-expand__cover::before{
        width: 75px; 
        height: 75px; 
        font-size: 1.5rem;
    }

}

@media screen and (min-width: 40em) and (max-width: 1200px) {
    .video-expand {
        height: auto !important;
    }

    .video-expand__wrap {
        padding: 0 8.338%;
        width: 100%;
    }

    .video-expand__wrap.video-expand__wrap--full {
        border-radius: 12px;
    }
}

@media screen and (max-width: 1200px) {
    .video-expand__file {
        border-radius: 12px;
        overflow: hidden;
    }
}