body {
    padding: 0;
    margin: 0;
    background:#1e305c;
}

.jw-rightclick { display: none !important; }

#jwplayer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
}
      
 

#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: #0c111f
}

.overflow, .circle-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.overflow {
    z-index: 9998;
    width: 100vw;
    height: 100vh;
}

.circle-line {
    z-index: 9999;
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.circle-blue,.circle-red,.circle-green,.circle-yellow{
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    margin: 8px;
}

.circle-blue {
    background-color: #0F90FA;
    animation: movingUp 0.5s infinite alternate;
  
}

.circle-red {
    background-color: #E62E1E;
    animation: movingUp 0.5s 0.2s infinite alternate;
   
}

.circle-green {
    background-color: #34A853;
    animation: movingUp 0.5s .5s infinite alternate;
    
  
}

.circle-yellow {
    background-color: #FBBC04;
    animation: movingUp 0.5s .7s infinite alternate;
    
}

/* CSS ANIMATION */

@keyframes movingUp {
    from {
    
        top: 0px;
        
    }

    to {
        
        top: -30px;
    }
}