/* LOADER LOGIN */
.lds-ellipsis {
	position: absolute;
	top:223px;
	width: 100px;
	left:50%;
	margin-left: -32px;
	height: 0px;
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;	
	display: none;
}
.lds-ellipsis div {
	position: absolute;
	top: 0px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #A767C1;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
	left: 6px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

/* LOADER HEADER */

.lds-hourglass {
  position: absolute;
  top:-2px;
  width: 30px;
  height: 30px;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 6px;
  box-sizing: border-box;
  border: 13px solid #A767C1;
  border-color: #A767C1 transparent #A767C1 transparent;
  animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}

/* LOADER NEW CTC */

.lds-ellipsisdos {
  position: absolute;
  top:79px;
  width: 100px;
  left:50%;
  margin-left: -38px;
  height: 0px;
  -webkit-transition:all 0.3s ease-in-out;
  -moz-transition:all 0.3s ease-in-out;
  -ms-transition:all 0.3s ease-in-out;
  -o-transition:all 0.3s ease-in-out; 
  display: none;
}
.lds-ellipsisdos div {
  position: absolute;
  top: 0px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #029DCA;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsisdos div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsisdos1 0.6s infinite;
}
.lds-ellipsisdos div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsisdos2 0.6s infinite;
}
.lds-ellipsisdos div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsisdos2 0.6s infinite;
}
.lds-ellipsisdos div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsisdos3 0.6s infinite;
}
@keyframes lds-ellipsisdos1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsisdos3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsisdos2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
