.separador-circle{
	margin-top: 5%;
	margin-left: 34%;
	margin-bottom: 5%;
}

.circle,
.circle-border {
  width: 120px;
  height: 120px;
  border-radius: 80%;
}

.circle {
  z-index: 1;
  position: relative;
  background: white;
  transform: scale(1);
  animation: success-anim 700ms ease;
}

.circle-border {
  z-index: 0;
  position: absolute;
  transform: scale(1.3);
  animation: circle-anim 400ms ease;
  background: #268a37;	
}

@keyframes success-anim {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes circle-anim {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1.3);
  }
}

.acierto::before,
.acierto::after {
  content: "";
  display: block;
  height: 4px;
  background: #268a37;
  position: absolute;
}

.acierto::before {
  width: 87px;
  top: 52%;
  left: 23%;
  transform: rotateZ(126deg);
  border-radius: 10px;
}

.acierto::after {
  width: 27px;
  top: 72.5%;
  left: 22%;
  transform: rotateZ(-124deg);
  border-radius: 10px;
}

.error::before,
.error::after {
  content: "";
  display: block;
  height: 4px;
  background: #268a37;
  position: absolute;
}

.error::before {
  width: 80px;
  top: 48%;
  left: 16%;
  transform: rotateZ(50deg);
}

.error::after {
  width: 80px;
  top: 48%;
  left: 16%;
  transform: rotateZ(-50deg);
}

.loader {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: block;
	margin:15px auto;
	position: relative;
	color: #268a37;
	box-sizing: border-box;
	animation: animloader 2s linear infinite;
}


@keyframes animloader {
	0% {
	  box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
	}
	25% {
	  box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 2px;
	}
	50% {
	  box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 2px,  -38px 0 0 -2px;
	}
	75% {
	  box-shadow: 14px 0 0 2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
	}
	100% {
	  box-shadow: 14px 0 0 -2px,  38px 0 0 2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
	}
}