.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #FFF;
}

.loader {  
  position: absolute;  
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  border: 16px solid transparent;
  border-top: 16px solid #cfdf3d;
  border-bottom: 16px solid #101870;
  border-radius: 50%;	  
  animation: spin 2s ease infinite;
}

@keyframes spin {	
	100% { transform: rotate(360deg); }
	0% { transform: rotate(0deg); }
}