* {
    margin: 0;
    padding: 0;
}

.video-content {
    background: #000000;
    width: 100%;
    /* max-height: 50vh!important; */
    overflow: hidden;
    position: relative;
}
.video-video-content{
    width: 100%!important;
    height: 100%!important;
    position: relative;
}

.video-content .video-controls {
    height: 60px;
    width: calc(100% - 60px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 30px;
    background: #000000;
    opacity: 1;
    transition: 1s;
    color: #fff;
}

.video-content .video-controls .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.video-content .video-controls .top .left,
.video-content .video-controls .top .right,
.video-content .video-controls .top .right .split-screen-cont {
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.video-content .video-controls .top .right .split-screen-cont {
    position: relative;
    transition: 0.5s;
}

.video-content .video-controls .top img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.video-content .video-controls .top .left #play-btn {
    margin-right: 10px;
}

.video-content .video-controls .top #videoTimeCont{
    color: #ffffff;
    font-size: 14px;
}
.video-content .video-controls .top #screen-btn {
    margin-left: 20px;
}
.video-content .video-controls .top .right .split-screen-cont .split-screen-main{
    position: absolute;
    width: 100px;
    height: 0;
    padding: 10px;
    bottom: 20px;
    background: rgba(46,50,61,0.6);
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    text-align: center;
    display: none;
}
.video-content .video-controls .top .split-screen-cont:hover .split-screen-main{
    height: auto;
    display: block;
}
.video-content .video-controls .top .right .split-screen-cont .split-screen-main .split-screen-item{
    padding: 5px 0;
    cursor: pointer;
}
.video-content .video-controls:hover {
    opacity: 1;
}

.video-content .video-controls .bottom {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.video-content .video-controls .bottom .progress {
    width: 100%;
    height: 4px;
    background: #767373;
}

.video-content .video-controls .bottom .progress .progress-bar {
    position: relative;
    width: 0;
    height: 100%;
    background: rgb(216, 216, 216);
}

.video-content .video-controls .bottom .progress .progress-bar .progress-thumb {
    position: absolute;
    top: 50%;
    right: -8px;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 4px solid #38f;
    border-radius: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    box-shadow: 0 0 10px rgb(139, 139, 139);
}

.video-content .video-controls:hover ~ .side-video {
    opacity: 1;
    bottom: 60px;
}

.video-content #main-video {
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.video-content .side-video {
    position: absolute;
    width: 20% !important;
    transition: 1s;
}

.video-content .side-video:nth-of-type(2) {
    top: 0;
    left: 0;
}

.video-content .side-video:nth-of-type(3) {
    top: 0;
    right: 0;
}

.video-content .side-video:nth-of-type(4) {
    bottom: 60px;
    left: 0;
}

.video-content .side-video:nth-of-type(5) {
    bottom: 60px;
    right: 0;
}