.bigweb-loader {
	top:100px;
	position: absolute;
	height:100px; 
	width:100%; 
	z-index: 99; 
	float: left;
}

.bigweb-loader-icon {
  position: fixed;
  left:48%;
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #777777; /* Blue */
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
