       	.fullscreen-container {
  			display: none;
 			position: fixed;
  			top: 0;
  			bottom: 0;
  			left: 0;
  			right: 0;
  			background: rgba(90, 90, 90, 0.1);
  			z-index: 9999;
		}
       	.loader {
		  position: absolute;
  		  left: 50%;
 		  top: 50%;
 		  margin: -75px 0 0 -75px;
  		  border: 20px solid #f3f3f3; /* Light grey */
 		  border-top: 20px solid #006f9b; /* Blue */
 		  border-bottom: 20px solid #006f9b;
 		  border-left: 20px solid #006f9b; 
  		  border-radius: 100%;
  		  width: 120px;
  		  height: 120px;
  		  animation: spin 2s linear infinite;
		}
		
		@keyframes spin {
 		   0% { transform: rotate(0deg); }
 		   100% { transform: rotate(360deg); }
		}