
/*!
 * three-dots - v0.1.2
 * CSS loading animation made by single element.
 * https://github.com/nzbin/three-dots#readme
 *
 * Copyright (c) 2018 nzbin
 * Released under MIT License
 */
@charset "UTF-8";

/**
 * ==============================================
 * Dot Falling
 * ==============================================
 */
.dot-falling {
  position: relative;
  left: -9999px;
  width: 3px;
  height: 3px;
  border-radius: 5px;
  background-color: #111111;
  color: #111111;
  box-shadow: 9999px 0 0 0 #111111;
  animation: dotFalling 1s infinite linear;
  animation-delay: .1s;

  top: 4px;
}

.dot-falling::before, .dot-falling::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-falling::before {
  width: 3px;
  height: 3px;
  border-radius: 5px;
  background-color: #111111;
  color: #111111;
  animation: dotFallingBefore 1s infinite linear;
  animation-delay: 0s;
}

.dot-falling::after {
  width: 3px;
  height: 3px;
  border-radius: 5px;
  background-color: #111111;
  color: #111111;
  animation: dotFallingAfter 1s infinite linear;
  animation-delay: .2s;
}

@keyframes dotFalling {
  0% {
    box-shadow: 9999px -15px 0 0 rgba(17, 17, 17, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 9999px 0 0 0 #111111;
  }
  100% {
    box-shadow: 9999px 15px 0 0 rgba(17, 17, 17, 0);
  }
}

@keyframes dotFallingBefore {
  0% {
    box-shadow: 9984px -15px 0 0 rgba(17, 17, 17, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 9984px 0 0 0 #111111;
  }
  100% {
    box-shadow: 9984px 15px 0 0 rgba(17, 17, 17, 0);
  }
}

@keyframes dotFallingAfter {
  0% {
    box-shadow: 10014px -15px 0 0 rgba(17, 17, 17, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 10014px 0 0 0 #111111;
  }
  100% {
    box-shadow: 10014px 15px 0 0 rgba(17, 17, 17, 0);
  }
}
