/* #Loading {
	top:50%;
	left:50%;
	position: absolute;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	z-index:100;
} */

@-webkit-keyframes ball-beat {
	50% {
		opacity: 0.2;
		-webkit-transform: scale(0.75);
		transform: scale(0.75); }

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1); }
}

@keyframes ball-beat {
	50% {
		opacity: 0.2;
		-webkit-transform: scale(0.75);
		transform: scale(0.75); }

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1); }
}

.ball-beat > div {
	background-color: #279fcf;
	width: 1rem;
	height: 1rem;
	border-radius: 100% !important;
	margin: 2px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	display: inline-block;
	-webkit-animation: ball-beat 0.7s 0s infinite linear;
	animation: ball-beat 0.7s 0s infinite linear;
}

.ball-beat > div:nth-child(2n-1) {
	-webkit-animation-delay: 0.35s !important;
	animation-delay: 0.35s !important;
}

/* 2 */
.circle {

  height: 0.35rem;
  width: 0.35rem;
  border-radius: 50%;
  display: inline-block;
  transform: scale(0);
  animation: bulge 2s infinite ease-in-out;
}

.circle::after {
  position: absolute;
  display: inline-block;
  content: '';
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: inherit;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(1);
  animation: blow 2s infinite ease-in-out;
}

.circle:nth-child(1) {
  background-color: #FFF;
  animation-delay: 0s;
}

.circle2 {

  height: 0.35rem;
  width: 0.35rem;
  border-radius: 50%;
  display: inline-block;
  transform: scale(0);
  animation: bulge 3s infinite ease-in-out;
}

.circle2::after {
  position: absolute;
  display: inline-block;
  content: '';
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: inherit;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(1);
  animation: blow 3s infinite ease-in-out;
}

.circle2:nth-child(1) {
  background-color: #FFF;
  animation-delay: 0s;
}


@keyframes bulge {
	0% {
		opacity: 0.5;
	  transform: scale(0.75);
	}
  50% {
	  opacity: 1;
    transform: scale(1);
  }
  100% {
	  opacity: 0.5;
    transform: scale(0.75);
  }
}


@keyframes blow {
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.5;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}