@CHARSET "UTF-8";

@-webkit-keyframes loading-rotate {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes loading-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes loading-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading {
  opacity: .8;
  display: block;
  border-radius: 50%;

  font-size: 20px;
  width: .25em;
  height: .25em;

  box-shadow:
    0 -.4em       0 0 rgba(0,0,0,1),
    -.28em -.28em 0 0 rgba(0,0,0,.75),
    -.4em 0       0 0 rgba(0,0,0,.50),
    -.28em .28em  0 0 rgba(0,0,0,.25)
  ;

  -webkit-animation: .85s loading-rotate steps(8) infinite;
  -moz-animation: .85s loading-rotate steps(8) infinite;
  animation: .85s loading-rotate steps(8) infinite;
}

.loading-container{
	position: absolute;
	top: 45%;
	left: 50%;
	width: 150px;
	height: 100px;
	z-index: 300000;
}

.loading-label{
	margin: 15px 0 0 -50%;
	float: left;
	text-align: center;
	width: 100%;
}
