﻿/*---Colors---*/
/*White*/
/*Gray*/
/*Blue*/
/*Cyan*/
/*---Font---*/
/*---Text---*/
/*---Placeholder---*/
/*---Button---*/
/*---Header menu---*/
/*---Sub menu---*/
/*---Left panel toolbar*/
/*---Modal---*/
/*---Context menu---*/
/*---Admin panel---*/
.spinner {
  position: fixed;
  top: 40%;
  left: 50%;
  margin-top: -20px;
  margin-left: -10px;
  z-index: 99998;
}
.spinner .bounce1,
.spinner .bounce2 {
  background-color: #337ab7;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation: sk-bounce 1.4s infinite ease-in-out;
  -moz-animation: sk-bounce 1.4s infinite ease-in-out;
  -ms-animation: sk-bounce 1.4s infinite ease-in-out;
  -o-animation: sk-bounce 1.4s infinite ease-in-out;
  animation: sk-bounce 1.4s infinite ease-in-out;
  width: 40px;
  height: 40px;
  opacity: 0.6;
  top: 20%;
  position: absolute;
  z-index: 99999;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.7s;
  -moz-animation-delay: -0.7s;
  -ms-animation-delay: -0.7s;
  -o-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}