/*--- Container Styles ---*/
div.sys-loading {
	position: absolute;
	display: none;
    z-index: 1100;

    top: 0px;
    left: 0px;
	width: 100%;
	height: 100%;
	min-height: 80px;

	box-sizing: border-box;
}

div.sys-loading.sys-loading-inline {
	position: relative;
	display: block;
}

div.sys-loading-smog {
	position: absolute;
    z-index: 1101;    

    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;

    background-color: rgba(255, 255, 255, 0.3);
}

div.sys-loading-icon {
    position: absolute;    
    z-index: 1102;

	width: 90px;
    height: 58px;

    background-color:#f0f0f0;
    border:1px solid #ccc;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;

    -webkit-box-shadow: 0 1px 3px rgba(51, 51, 51, 0.2);
    -moz-box-shadow: 0 1px 3px rgba(51, 51, 51, 0.2);
    box-shadow: 0 1px 3px rgba(51, 51, 51, 0.2);

    text-align:center;
}

div.sys-loading.sys-loading-inline div.sys-loading-icon {
	position: relative;

	top: 10px;
	margin-left: auto;
	margin-right: auto;
}

/*--- Spinner Styles ---*/
.spinner {
  width: 70px;
  height: 18px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}