.uvideo {
    min-width: 300px;
    min-height: 300px;
}
.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: #4acdbc;
    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: 5px;
}
.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 1s 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: 1000;
}
.uvideo-theater.disabled {
    display: none;
}
.uvideo-theater > * {
    width: 60%;
    height: 60%;
    z-index: 15;
}
.uvideo-close {
    min-width: 16px;
    min-height: 16px;
    height: 10%;
    width: 7%;
    position: absolute;
    right: 5%;
    top: 5%;
    cursor: pointer;
}
.uvideo-close::before,
.uvideo-close::after {
    height: 5px;
    width: 100%;
    content: "";
    display: block;
    position: absolute;
    background: white;
    top: 50%;
    left: 0;
}
.uvideo-close::before { transform: rotate(45deg) translateY(-50%); }
.uvideo-close::after { transform: rotate(-45deg) translateY(-50%); }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@media only screen and (max-width: 768px) {
	.uvideo-close {
		top: 15%;
		width: 12%;
	}
	.uvideo {
		max-width: 100%;
	}
	.uvideo-theater video { width: 95%; height: auto; }
}
