.circle-loader {
  margin-bottom: 3.5em;
  border: 2px solid rgba(255, 255, 255, 0.40);
  border-left-color: #0f0;
  animation: loader-spin 1.2s infinite linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  width: 4em;
  height: 4em;
}
.load-complete {
  -webkit-animation: none;
  animation: none;
  border-color: #0f0;
  transition: border 3000ms ease-out;
}
.checkmark {
  display: none;
}
.checkmark.draw:after {
  animation-duration: 3000ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
  opacity: 1;
  height: 2em;
  width: 1em;
  transform-origin: left top;
  border-right: 3px solid #0f0;
  border-top: 3px solid #0f0;
  content: '';
  left: 0.8em;
  top: 2em;
  position: absolute;
}
@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 1em;
    opacity: 1;
  }
  40% {
    height: 2em;
    width: 1em;
    opacity: 1;
  }
  100% {
    height: 2em;
    width: 1em;
    opacity: 1;
  }
}
