
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid rgba(255, 128, 0, 0.52);
  border-right: 16px solid rgba(64, 255, 0, 0.52);
  border-bottom: 16px solid rgba(0, 0, 255, 0.52);
  border-left: 16px solid 	rgba(255, 255, 0, 0.52);
  width: 60px;
  height: 60px;
  position: fixed;
	left: 43%;
	top: 50%;
	z-index: 10;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
