
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
			transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
			transform: scale(0.1);
			
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
			transform: scale(1);
    opacity: 1; } }
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
			transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
			transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
			transform: scale(1);
    opacity: 1; } }

.loading > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.4, 0.58, 0.28, 0.98);
          animation: scale 0.75s -0.24s infinite cubic-bezier(0.4, 0.58, 0.28, 0.98);
		  animation: scale 0.75s -0.24s infinite cubic-bezier(0.4, 0.58, 0.28, 0.98);		  }

.loading > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.4, 0.58, 0.28, 0.98);
          animation: scale 0.75s -0.12s infinite cubic-bezier(0.4, 0.58, 0.18, 0.98);
		  animation: scale 0.75s -0.12s infinite cubic-bezier(0.4, 0.58, 0.18, 0.98);
		  
		  }

.loading > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.4, 0.68, 0.28, 0.98);
          animation: scale 0.75s 0s infinite cubic-bezier(0.4, 0.68, 0.28, 0.98);
		  animation: scale 0.75s 0s infinite cubic-bezier(0.4, 0.68, 0.28, 0.98);

		  }

.loading > div {
  background-color: #74D400;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
		  animation-fill-mode: both;
  display: inline-block; }

