.uvideo {
    width: 100%;
    height: 600px;
}
.uvideo .preview {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
}
.uvideo .preview > * {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.uvideo .uvideo-play {
    z-index: 1;
    color: #d22234;
    font-size: 30px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: white;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    cursor: pointer;
}
.uvideo .uvideo-play > * {
    z-index: 500;
}
.uvideo .uvideo-play i {
	margin-left: 3px 0 0 7px;
}
.uvideo .uvideo-play::before {
    display: block;
    z-index: 4;
    content: "";
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.9;
    animation: pulse 2s infinite; 
}
.uvideo-theater {
    position: fixed;

    display:flex;flex-direction: column;justify-content: center;align-items: center;

    top:0;left:0;
    width: 100vw;
    height:100vh;
    background: #000000de;
    z-index: 10;
}
.uvideo-theater.disabled {
    display: none;
}
.uvideo-theater > * {
    width: 60%;
    height: 55%;
    z-index: 15;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}



.uvideo .fas {
    margin-right: 0px !important;
}








