/**
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
/*
 * Loading Dots
 * Can we use pseudo elements here instead :after?
 */
.loader-inner .text div {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #007DB6;
    border-radius: .6em;
    animation: loader-inner 1s infinite alternate;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.loader-inner div:nth-of-type(2) {
  background: #008FB2;
  animation-delay: 0.2s;
}
.loader-inner div:nth-of-type(3) {
  background: #009B9E;
  animation-delay: 0.4s;
}
.loader-inner div:nth-of-type(4) {
  background: #00A77D;
  animation-delay: 0.6s;
}
.loader-inner div:nth-of-type(5) {
  background: #00B247;
  animation-delay: 0.8s;
}
.loader-inner div:nth-of-type(6) {
  background: #5AB027;
  animation-delay: 1.0s;
}
.loader-inner div:nth-of-type(7) {
  background: #A0B61E;
  animation-delay: 1.2s;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@keyframes loader-inner {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}