
/*!
 * three-dots - v0.2.1
 * CSS loading animation made by single element.
 * https://nzbin.github.io/three-dots/
 *
 * Copyright (c) 2018 nzbin
 * Released under MIT License
 */
@charset "UTF-8";
/**
 * ==============================================
 * Dot Elastic
 * ==============================================
 */
.dot-elastic {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-elastic 1s infinite linear;
  animation: dot-elastic 1s infinite linear;
}

.dot-elastic::before, .dot-elastic::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-elastic::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-elastic-before 1s infinite linear;
  animation: dot-elastic-before 1s infinite linear;
}

.dot-elastic::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-elastic-after 1s infinite linear;
  animation: dot-elastic-after 1s infinite linear;
}

@-webkit-keyframes dot-elastic-before {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1.5);
  }
  50% {
    transform: scale(1, 0.67);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes dot-elastic-before {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1.5);
  }
  50% {
    transform: scale(1, 0.67);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes dot-elastic {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 1.5);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes dot-elastic {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 1.5);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes dot-elastic-after {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.67);
  }
  75% {
    transform: scale(1, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes dot-elastic-after {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.67);
  }
  75% {
    transform: scale(1, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  box-shadow: 9999px 0 0 -5px;
  -webkit-animation: dot-pulse 1.5s infinite linear;
  animation: dot-pulse 1.5s infinite linear;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}

.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  -webkit-animation: dot-pulse-before 1.5s infinite linear;
  animation: dot-pulse-before 1.5s infinite linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  -webkit-animation: dot-pulse-after 1.5s infinite linear;
  animation: dot-pulse-after 1.5s infinite linear;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

@-webkit-keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px;
  }
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px;
  }
}

@-webkit-keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px;
  }
}

@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px;
  }
}

@-webkit-keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px;
  }
}

@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px;
  }
}

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-flashing 1s infinite linear alternate;
  animation: dot-flashing 1s infinite linear alternate;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-flashing 1s infinite alternate;
  animation: dot-flashing 1s infinite alternate;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-flashing 1s infinite alternate;
  animation: dot-flashing 1s infinite alternate;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes dot-flashing {
  0% {
    background-color: #21A0D2;
  }
  50%,
  100% {
    background-color: #ebe6ff;
  }
}

@keyframes dot-flashing {
  0% {
    background-color: #21A0D2;
  }
  50%,
  100% {
    background-color: #ebe6ff;
  }
}

/**
 * ==============================================
 * Dot Collision
 * ==============================================
 */
.dot-collision {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
}

.dot-collision::before, .dot-collision::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-collision::before {
  left: -10px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-collision-before 2s infinite ease-in;
  animation: dot-collision-before 2s infinite ease-in;
}

.dot-collision::after {
  left: 10px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-collision-after 2s infinite ease-in;
  animation: dot-collision-after 2s infinite ease-in;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes dot-collision-before {
  0%,
  50%,
  75%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-15px);
  }
}

@keyframes dot-collision-before {
  0%,
  50%,
  75%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-15px);
  }
}

@-webkit-keyframes dot-collision-after {
  0%,
  50%,
  75%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(15px);
  }
}

@keyframes dot-collision-after {
  0%,
  50%,
  75%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(15px);
  }
}

/**
 * ==============================================
 * Dot Revolution
 * ==============================================
 */
.dot-revolution {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
}

.dot-revolution::before, .dot-revolution::after {
  content: '';
  display: inline-block;
  position: absolute;
}

.dot-revolution::before {
  left: 0;
  top: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  transform-origin: 5px 20px;
  -webkit-animation: dot-revolution 1.4s linear infinite;
  animation: dot-revolution 1.4s linear infinite;
}

.dot-revolution::after {
  left: 0;
  top: -30px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  transform-origin: 5px 35px;
  -webkit-animation: dot-revolution 1s linear infinite;
  animation: dot-revolution 1s linear infinite;
}

@-webkit-keyframes dot-revolution {
  0% {
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 0, 0);
  }
}

@keyframes dot-revolution {
  0% {
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 0, 0);
  }
}

/**
 * ==============================================
 * Dot Carousel
 * ==============================================
 */
.dot-carousel {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  -webkit-animation: dot-carousel 1.5s infinite linear;
  animation: dot-carousel 1.5s infinite linear;
}

@-webkit-keyframes dot-carousel {
  0% {
    box-shadow: 9984px 0 0 -1px #21A0D2, 9999px 0 0 1px #21A0D2, 10014px 0 0 -1px #21A0D2;
  }
  50% {
    box-shadow: 10014px 0 0 -1px #21A0D2, 9984px 0 0 -1px #21A0D2, 9999px 0 0 1px #21A0D2;
  }
  100% {
    box-shadow: 9999px 0 0 1px #21A0D2, 10014px 0 0 -1px #21A0D2, 9984px 0 0 -1px #21A0D2;
  }
}

@keyframes dot-carousel {
  0% {
    box-shadow: 9984px 0 0 -1px #21A0D2, 9999px 0 0 1px #21A0D2, 10014px 0 0 -1px #21A0D2;
  }
  50% {
    box-shadow: 10014px 0 0 -1px #21A0D2, 9984px 0 0 -1px #21A0D2, 9999px 0 0 1px #21A0D2;
  }
  100% {
    box-shadow: 9999px 0 0 1px #21A0D2, 10014px 0 0 -1px #21A0D2, 9984px 0 0 -1px #21A0D2;
  }
}

/**
 * ==============================================
 * Dot Typing
 * ==============================================
 */
.dot-typing {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  -webkit-animation: dot-typing 1.5s infinite linear;
  animation: dot-typing 1.5s infinite linear;
}

@-webkit-keyframes dot-typing {
  0% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  16.667% {
    box-shadow: 9984px -10px 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  33.333% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  50% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px -10px 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  66.667% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  83.333% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px -10px 0 0 #21A0D2;
  }
  100% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
}

@keyframes dot-typing {
  0% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  16.667% {
    box-shadow: 9984px -10px 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  33.333% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  50% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px -10px 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  66.667% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
  83.333% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px -10px 0 0 #21A0D2;
  }
  100% {
    box-shadow: 9984px 0 0 0 #21A0D2, 9999px 0 0 0 #21A0D2, 10014px 0 0 0 #21A0D2;
  }
}

/**
 * ==============================================
 * Dot Windmill
 * ==============================================
 */
.dot-windmill {
  position: relative;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  transform-origin: 5px 15px;
  -webkit-animation: dot-windmill 2s infinite linear;
  animation: dot-windmill 2s infinite linear;
}

.dot-windmill::before, .dot-windmill::after {
  content: '';
  display: inline-block;
  position: absolute;
}

.dot-windmill::before {
  left: -8.66px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
}

.dot-windmill::after {
  left: 8.66px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
}

@-webkit-keyframes dot-windmill {
  0% {
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotateZ(720deg) translate3d(0, 0, 0);
  }
}

@keyframes dot-windmill {
  0% {
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotateZ(720deg) translate3d(0, 0, 0);
  }
}

/**
 * ==============================================
 * Dot Bricks
 * ==============================================
 */
.dot-bricks {
  position: relative;
  top: 8px;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  box-shadow: 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  -webkit-animation: dot-bricks 2s infinite ease;
  animation: dot-bricks 2s infinite ease;
}

@-webkit-keyframes dot-bricks {
  0% {
    box-shadow: 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  }
  8.333% {
    box-shadow: 10007px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  }
  16.667% {
    box-shadow: 10007px -16px 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  }
  25% {
    box-shadow: 10007px -16px 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2;
  }
  33.333% {
    box-shadow: 10007px 0 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2;
  }
  41.667% {
    box-shadow: 10007px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2;
  }
  50% {
    box-shadow: 10007px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2;
  }
  58.333% {
    box-shadow: 9991px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2;
  }
  66.666% {
    box-shadow: 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2;
  }
  75% {
    box-shadow: 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2;
  }
  83.333% {
    box-shadow: 9991px -16px 0 0 #21A0D2, 10007px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2;
  }
  91.667% {
    box-shadow: 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2;
  }
  100% {
    box-shadow: 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  }
}

@keyframes dot-bricks {
  0% {
    box-shadow: 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  }
  8.333% {
    box-shadow: 10007px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  }
  16.667% {
    box-shadow: 10007px -16px 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  }
  25% {
    box-shadow: 10007px -16px 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2;
  }
  33.333% {
    box-shadow: 10007px 0 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2;
  }
  41.667% {
    box-shadow: 10007px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2;
  }
  50% {
    box-shadow: 10007px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2;
  }
  58.333% {
    box-shadow: 9991px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2;
  }
  66.666% {
    box-shadow: 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2, 9991px -16px 0 0 #21A0D2;
  }
  75% {
    box-shadow: 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2;
  }
  83.333% {
    box-shadow: 9991px -16px 0 0 #21A0D2, 10007px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2;
  }
  91.667% {
    box-shadow: 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px -16px 0 0 #21A0D2;
  }
  100% {
    box-shadow: 9991px -16px 0 0 #21A0D2, 9991px 0 0 0 #21A0D2, 10007px 0 0 0 #21A0D2;
  }
}

/**
 * ==============================================
 * Dot Floating
 * ==============================================
 */
.dot-floating {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-floating 3s infinite cubic-bezier(0.15, 0.6, 0.9, 0.1);
  animation: dot-floating 3s infinite cubic-bezier(0.15, 0.6, 0.9, 0.1);
}

.dot-floating::before, .dot-floating::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-floating::before {
  left: -12px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-floating-before 3s infinite ease-in-out;
  animation: dot-floating-before 3s infinite ease-in-out;
}

.dot-floating::after {
  left: -24px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-floating-after 3s infinite cubic-bezier(0.4, 0, 1, 1);
  animation: dot-floating-after 3s infinite cubic-bezier(0.4, 0, 1, 1);
}

@-webkit-keyframes dot-floating {
  0% {
    left: calc(-50% - 5px);
  }
  75% {
    left: calc(50% + 105px);
  }
  100% {
    left: calc(50% + 105px);
  }
}

@keyframes dot-floating {
  0% {
    left: calc(-50% - 5px);
  }
  75% {
    left: calc(50% + 105px);
  }
  100% {
    left: calc(50% + 105px);
  }
}

@-webkit-keyframes dot-floating-before {
  0% {
    left: -50px;
  }
  50% {
    left: -12px;
  }
  75% {
    left: -50px;
  }
  100% {
    left: -50px;
  }
}

@keyframes dot-floating-before {
  0% {
    left: -50px;
  }
  50% {
    left: -12px;
  }
  75% {
    left: -50px;
  }
  100% {
    left: -50px;
  }
}

@-webkit-keyframes dot-floating-after {
  0% {
    left: -100px;
  }
  50% {
    left: -24px;
  }
  75% {
    left: -100px;
  }
  100% {
    left: -100px;
  }
}

@keyframes dot-floating-after {
  0% {
    left: -100px;
  }
  50% {
    left: -24px;
  }
  75% {
    left: -100px;
  }
  100% {
    left: -100px;
  }
}

/**
 * ==============================================
 * Dot Fire
 * ==============================================
 */
.dot-fire {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  box-shadow: 9999px 22.5px 0 -5px #21A0D2;
  -webkit-animation: dot-fire 1.5s infinite linear;
  animation: dot-fire 1.5s infinite linear;
  -webkit-animation-delay: -.85s;
  animation-delay: -.85s;
}

.dot-fire::before, .dot-fire::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
}

.dot-fire::before {
  box-shadow: 9999px 22.5px 0 -5px #21A0D2;
  -webkit-animation: dot-fire 1.5s infinite linear;
  animation: dot-fire 1.5s infinite linear;
  -webkit-animation-delay: -1.85s;
  animation-delay: -1.85s;
}

.dot-fire::after {
  box-shadow: 9999px 22.5px 0 -5px #21A0D2;
  -webkit-animation: dot-fire 1.5s infinite linear;
  animation: dot-fire 1.5s infinite linear;
  -webkit-animation-delay: -2.85s;
  animation-delay: -2.85s;
}

@-webkit-keyframes dot-fire {
  1% {
    box-shadow: 9999px 22.5px 0 -5px #21A0D2;
  }
  50% {
    box-shadow: 9999px -5.625px 0 2px #21A0D2;
  }
  100% {
    box-shadow: 9999px -22.5px 0 -5px #21A0D2;
  }
}

@keyframes dot-fire {
  1% {
    box-shadow: 9999px 22.5px 0 -5px #21A0D2;
  }
  50% {
    box-shadow: 9999px -5.625px 0 2px #21A0D2;
  }
  100% {
    box-shadow: 9999px -22.5px 0 -5px #21A0D2;
  }
}

/**
 * ==============================================
 * Dot Spin
 * ==============================================
 */
.dot-spin {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: transparent;
  color: transparent;
  box-shadow: 0 -18px 0 0 #21A0D2, 12.72984px -12.72984px 0 0 #21A0D2, 18px 0 0 0 #21A0D2, 12.72984px 12.72984px 0 0 rgba(152, 128, 255, 0), 0 18px 0 0 rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 0 rgba(152, 128, 255, 0), -18px 0 0 0 rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 0 rgba(152, 128, 255, 0);
  -webkit-animation: dot-spin 1.5s infinite linear;
  animation: dot-spin 1.5s infinite linear;
}

@-webkit-keyframes dot-spin {
  0%,
  100% {
    box-shadow: 0 -18px 0 0 #21A0D2, 12.72984px -12.72984px 0 0 #21A0D2, 18px 0 0 0 #21A0D2, 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  12.5% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 0 #21A0D2, 18px 0 0 0 #21A0D2, 12.72984px 12.72984px 0 0 #21A0D2, 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  25% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 0 #21A0D2, 12.72984px 12.72984px 0 0 #21A0D2, 0 18px 0 0 #21A0D2, -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  37.5% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 0 #21A0D2, 0 18px 0 0 #21A0D2, -12.72984px 12.72984px 0 0 #21A0D2, -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  50% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 0 #21A0D2, -12.72984px 12.72984px 0 0 #21A0D2, -18px 0 0 0 #21A0D2, -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  62.5% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 0 #21A0D2, -18px 0 0 0 #21A0D2, -12.72984px -12.72984px 0 0 #21A0D2;
  }
  75% {
    box-shadow: 0 -18px 0 0 #21A0D2, 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 0 #21A0D2, -12.72984px -12.72984px 0 0 #21A0D2;
  }
  87.5% {
    box-shadow: 0 -18px 0 0 #21A0D2, 12.72984px -12.72984px 0 0 #21A0D2, 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 0 #21A0D2;
  }
}

@keyframes dot-spin {
  0%,
  100% {
    box-shadow: 0 -18px 0 0 #21A0D2, 12.72984px -12.72984px 0 0 #21A0D2, 18px 0 0 0 #21A0D2, 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  12.5% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 0 #21A0D2, 18px 0 0 0 #21A0D2, 12.72984px 12.72984px 0 0 #21A0D2, 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  25% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 0 #21A0D2, 12.72984px 12.72984px 0 0 #21A0D2, 0 18px 0 0 #21A0D2, -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  37.5% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 0 #21A0D2, 0 18px 0 0 #21A0D2, -12.72984px 12.72984px 0 0 #21A0D2, -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  50% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 0 #21A0D2, -12.72984px 12.72984px 0 0 #21A0D2, -18px 0 0 0 #21A0D2, -12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0);
  }
  62.5% {
    box-shadow: 0 -18px 0 -5px rgba(152, 128, 255, 0), 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 0 #21A0D2, -18px 0 0 0 #21A0D2, -12.72984px -12.72984px 0 0 #21A0D2;
  }
  75% {
    box-shadow: 0 -18px 0 0 #21A0D2, 12.72984px -12.72984px 0 -5px rgba(152, 128, 255, 0), 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 0 #21A0D2, -12.72984px -12.72984px 0 0 #21A0D2;
  }
  87.5% {
    box-shadow: 0 -18px 0 0 #21A0D2, 12.72984px -12.72984px 0 0 #21A0D2, 18px 0 0 -5px rgba(152, 128, 255, 0), 12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), 0 18px 0 -5px rgba(152, 128, 255, 0), -12.72984px 12.72984px 0 -5px rgba(152, 128, 255, 0), -18px 0 0 -5px rgba(152, 128, 255, 0), -12.72984px -12.72984px 0 0 #21A0D2;
  }
}

/**
 * ==============================================
 * Dot Falling
 * ==============================================
 */
.dot-falling {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  box-shadow: 9999px 0 0 0 #21A0D2;
  -webkit-animation: dot-falling 1s infinite linear;
  animation: dot-falling 1s infinite linear;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}

.dot-falling::before, .dot-falling::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-falling::before {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-falling-before 1s infinite linear;
  animation: dot-falling-before 1s infinite linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.dot-falling::after {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-falling-after 1s infinite linear;
  animation: dot-falling-after 1s infinite linear;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

@-webkit-keyframes dot-falling {
  0% {
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 9999px 0 0 0 #21A0D2;
  }
  100% {
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dot-falling {
  0% {
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 9999px 0 0 0 #21A0D2;
  }
  100% {
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@-webkit-keyframes dot-falling-before {
  0% {
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 9984px 0 0 0 #21A0D2;
  }
  100% {
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dot-falling-before {
  0% {
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 9984px 0 0 0 #21A0D2;
  }
  100% {
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@-webkit-keyframes dot-falling-after {
  0% {
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 10014px 0 0 0 #21A0D2;
  }
  100% {
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

@keyframes dot-falling-after {
  0% {
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%,
  50%,
  75% {
    box-shadow: 10014px 0 0 0 #21A0D2;
  }
  100% {
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
}

/**
 * ==============================================
 * Dot Stretching
 * ==============================================
 */
.dot-stretching {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  transform: scale(1.25, 1.25);
  -webkit-animation: dot-stretching 2s infinite ease-in;
  animation: dot-stretching 2s infinite ease-in;
}

.dot-stretching::before, .dot-stretching::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-stretching::before {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-stretching-before 2s infinite ease-in;
  animation: dot-stretching-before 2s infinite ease-in;
}

.dot-stretching::after {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #21A0D2;
  color: #21A0D2;
  -webkit-animation: dot-stretching-after 2s infinite ease-in;
  animation: dot-stretching-after 2s infinite ease-in;
}

@-webkit-keyframes dot-stretching {
  0% {
    transform: scale(1.25, 1.25);
  }
  50%,
  60% {
    transform: scale(0.8, 0.8);
  }
  100% {
    transform: scale(1.25, 1.25);
  }
}

@keyframes dot-stretching {
  0% {
    transform: scale(1.25, 1.25);
  }
  50%,
  60% {
    transform: scale(0.8, 0.8);
  }
  100% {
    transform: scale(1.25, 1.25);
  }
}

@-webkit-keyframes dot-stretching-before {
  0% {
    transform: translate(0) scale(0.7, 0.7);
  }
  50%,
  60% {
    transform: translate(-20px) scale(1, 1);
  }
  100% {
    transform: translate(0) scale(0.7, 0.7);
  }
}

@keyframes dot-stretching-before {
  0% {
    transform: translate(0) scale(0.7, 0.7);
  }
  50%,
  60% {
    transform: translate(-20px) scale(1, 1);
  }
  100% {
    transform: translate(0) scale(0.7, 0.7);
  }
}

@-webkit-keyframes dot-stretching-after {
  0% {
    transform: translate(0) scale(0.7, 0.7);
  }
  50%,
  60% {
    transform: translate(20px) scale(1, 1);
  }
  100% {
    transform: translate(0) scale(0.7, 0.7);
  }
}

@keyframes dot-stretching-after {
  0% {
    transform: translate(0) scale(0.7, 0.7);
  }
  50%,
  60% {
    transform: translate(20px) scale(1, 1);
  }
  100% {
    transform: translate(0) scale(0.7, 0.7);
  }
}

/**
 * ==============================================
 * Experimental: Gooey Effect
 * Dot Gathering
 * ==============================================
 */
.dot-gathering {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: black;
  color: transparent;
  margin: -1px 0;
  filter: blur(2px);
}

.dot-gathering::before, .dot-gathering::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: -50px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: black;
  color: transparent;
  opacity: 0;
  filter: blur(2px);
  -webkit-animation: dot-gathering 2s infinite ease-in;
  animation: dot-gathering 2s infinite ease-in;
}

.dot-gathering::after {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

@-webkit-keyframes dot-gathering {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  35%,
  60% {
    opacity: 1;
    transform: translateX(50px);
  }
  100% {
    opacity: 0;
    transform: translateX(100px);
  }
}

@keyframes dot-gathering {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  35%,
  60% {
    opacity: 1;
    transform: translateX(50px);
  }
  100% {
    opacity: 0;
    transform: translateX(100px);
  }
}

/**
 * ==============================================
 * Experimental: Gooey Effect
 * Dot Hourglass
 * ==============================================
 */
.dot-hourglass {
  position: relative;
  top: -15px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: black;
  color: transparent;
  margin: -1px 0;
  filter: blur(2px);
  transform-origin: 5px 20px;
  -webkit-animation: dot-hourglass 2.4s infinite ease-in-out;
  animation: dot-hourglass 2.4s infinite ease-in-out;
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.dot-hourglass::before, .dot-hourglass::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: black;
  color: transparent;
  filter: blur(2px);
}

.dot-hourglass::before {
  top: 30px;
}

.dot-hourglass::after {
  -webkit-animation: dot-hourglass-after 2.4s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
  animation: dot-hourglass-after 2.4s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
}

@-webkit-keyframes dot-hourglass {
  0% {
    transform: rotateZ(0deg);
  }
  25% {
    transform: rotateZ(180deg);
  }
  50% {
    transform: rotateZ(180deg);
  }
  75% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes dot-hourglass {
  0% {
    transform: rotateZ(0deg);
  }
  25% {
    transform: rotateZ(180deg);
  }
  50% {
    transform: rotateZ(180deg);
  }
  75% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes dot-hourglass-after {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(30px);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes dot-hourglass-after {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(30px);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

/**
 * ==============================================
 * Experimental: Gooey Effect
 * Dot Overtaking
 * ==============================================
 */
.dot-overtaking {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: transparent;
  color: black;
  margin: -1px 0;
  box-shadow: 0 -20px 0 0;
  filter: blur(2px);
  -webkit-animation: dot-overtaking 2s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
  animation: dot-overtaking 2s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
}

.dot-overtaking::before, .dot-overtaking::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: transparent;
  color: black;
  box-shadow: 0 -20px 0 0;
  filter: blur(2px);
}

.dot-overtaking::before {
  -webkit-animation: dot-overtaking 2s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
  animation: dot-overtaking 2s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.dot-overtaking::after {
  -webkit-animation: dot-overtaking 1.5s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
  animation: dot-overtaking 1.5s infinite cubic-bezier(0.2, 0.6, 0.8, 0.2);
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

@-webkit-keyframes dot-overtaking {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes dot-overtaking {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

/**
 * ==============================================
 * Experimental: Gooey Effect
 * Dot Shuttle
 * ==============================================
 */
.dot-shuttle {
  position: relative;
  left: -15px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: black;
  color: transparent;
  margin: -1px 0;
  filter: blur(2px);
}

.dot-shuttle::before, .dot-shuttle::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: black;
  color: transparent;
  filter: blur(2px);
}

.dot-shuttle::before {
  left: 15px;
  -webkit-animation: dot-shuttle 2s infinite ease-out;
  animation: dot-shuttle 2s infinite ease-out;
}

.dot-shuttle::after {
  left: 30px;
}

@-webkit-keyframes dot-shuttle {
  0%,
  50%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-45px);
  }
  75% {
    transform: translateX(45px);
  }
}

@keyframes dot-shuttle {
  0%,
  50%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-45px);
  }
  75% {
    transform: translateX(45px);
  }
}

/**
 * ==============================================
 * Experimental: Emoji
 * Dot Bouncing
 * ==============================================
 */
.dot-bouncing {
  position: relative;
  height: 10px;
  font-size: 10px;
}

.dot-bouncing::before {
  content: '⚽🏀🏐';
  display: inline-block;
  position: relative;
  -webkit-animation: dot-bouncing 1s infinite;
  animation: dot-bouncing 1s infinite;
}

@-webkit-keyframes dot-bouncing {
  0% {
    top: -20px;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  34% {
    transform: scale(1, 1);
  }
  35% {
    top: 20px;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    transform: scale(1.5, 0.5);
  }
  45% {
    transform: scale(1, 1);
  }
  90% {
    top: -20px;
  }
  100% {
    top: -20px;
  }
}

@keyframes dot-bouncing {
  0% {
    top: -20px;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  34% {
    transform: scale(1, 1);
  }
  35% {
    top: 20px;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    transform: scale(1.5, 0.5);
  }
  45% {
    transform: scale(1, 1);
  }
  90% {
    top: -20px;
  }
  100% {
    top: -20px;
  }
}

/**
 * ==============================================
 * Experimental: Emoji
 * Dot Rolling
 * ==============================================
 */
.dot-rolling {
  position: relative;
  height: 10px;
  font-size: 10px;
}

.dot-rolling::before {
  content: '⚽';
  display: inline-block;
  position: relative;
  transform: translateX(-25px);
  -webkit-animation: dot-rolling 3s infinite;
  animation: dot-rolling 3s infinite;
}

@-webkit-keyframes dot-rolling {
  0% {
    content: '⚽';
    transform: translateX(-25px) rotateZ(0deg);
  }
  16.667% {
    content: '⚽';
    transform: translateX(25px) rotateZ(720deg);
  }
  33.333% {
    content: '⚽';
    transform: translateX(-25px) rotateZ(0deg);
  }
  34.333% {
    content: '🏀';
    transform: translateX(-25px) rotateZ(0deg);
  }
  50% {
    content: '🏀';
    transform: translateX(25px) rotateZ(720deg);
  }
  66.667% {
    content: '🏀';
    transform: translateX(-25px) rotateZ(0deg);
  }
  67.667% {
    content: '🏐';
    transform: translateX(-25px) rotateZ(0deg);
  }
  83.333% {
    content: '🏐';
    transform: translateX(25px) rotateZ(720deg);
  }
  100% {
    content: '🏐';
    transform: translateX(-25px) rotateZ(0deg);
  }
}

@keyframes dot-rolling {
  0% {
    content: '⚽';
    transform: translateX(-25px) rotateZ(0deg);
  }
  16.667% {
    content: '⚽';
    transform: translateX(25px) rotateZ(720deg);
  }
  33.333% {
    content: '⚽';
    transform: translateX(-25px) rotateZ(0deg);
  }
  34.333% {
    content: '🏀';
    transform: translateX(-25px) rotateZ(0deg);
  }
  50% {
    content: '🏀';
    transform: translateX(25px) rotateZ(720deg);
  }
  66.667% {
    content: '🏀';
    transform: translateX(-25px) rotateZ(0deg);
  }
  67.667% {
    content: '🏐';
    transform: translateX(-25px) rotateZ(0deg);
  }
  83.333% {
    content: '🏐';
    transform: translateX(25px) rotateZ(720deg);
  }
  100% {
    content: '🏐';
    transform: translateX(-25px) rotateZ(0deg);
  }
}

/*# sourceMappingURL=three-dots.css.map */


/*!
 * snack.css - v2.5.3
 * A minimal CSS framework for web.
 * https://snack-ui.github.io/snack/
 *
 * Copyright (c) 2017 nzbin
 * Released under MIT License
 */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.5;
}

a {
  color: #348fe2;
  text-decoration: none;
}

a:hover, a:active {
  text-decoration: underline;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

pre {
  display: block;
  font-size: .875em;
  border-radius: .2rem;
  overflow: auto;
}

code {
  padding: .2rem .4rem;
  font-size: .875em;
  color: #bd0500;
  background-color: #fff0f0;
  border-radius: .2rem;
}

kbd {
  padding: .2rem .4rem;
  font-size: .875em;
  color: #fff;
  background-color: #333;
  border-radius: .2rem;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: .25;
}

hr:not([size]) {
  height: 1px;
}

h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
  line-height: 1.125;
}

h1, .h1 {
  font-size: 36px;
}


h2,
.h2 {
  font-size: 30px;
}


h3,
.h3 {
  font-size: 24px;
}


h4,
.h4 {
  font-size: 20px;
}


h5,
.h5 {
  font-size: 16px;
}


h6,
.h6 {
  font-size: 14px;
}

small, .small {
  font-size: .875em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  position: relative;
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 576px) {
  .col {
    flex: 1 0 0%;
  }
  .col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-offset-1 {
    margin-left: 8.33333%;
  }
  .col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-offset-2 {
    margin-left: 16.66667%;
  }
  .col-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-offset-3 {
    margin-left: 25%;
  }
  .col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-offset-4 {
    margin-left: 33.33333%;
  }
  .col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-offset-5 {
    margin-left: 41.66667%;
  }
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-offset-6 {
    margin-left: 50%;
  }
  .col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-offset-7 {
    margin-left: 58.33333%;
  }
  .col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-offset-8 {
    margin-left: 66.66667%;
  }
  .col-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-offset-9 {
    margin-left: 75%;
  }
  .col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-offset-10 {
    margin-left: 83.33333%;
  }
  .col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-offset-11 {
    margin-left: 91.66667%;
  }
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-offset-12 {
    margin-left: 100%;
  }
  .cols-10 > .col-1 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .cols-10 > .col-offset-1 {
    margin-left: 10%;
  }
  .cols-10 > .col-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .cols-10 > .col-offset-2 {
    margin-left: 20%;
  }
  .cols-10 > .col-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .cols-10 > .col-offset-3 {
    margin-left: 30%;
  }
  .cols-10 > .col-4 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .cols-10 > .col-offset-4 {
    margin-left: 40%;
  }
  .cols-10 > .col-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .cols-10 > .col-offset-5 {
    margin-left: 50%;
  }
  .cols-10 > .col-6 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .cols-10 > .col-offset-6 {
    margin-left: 60%;
  }
  .cols-10 > .col-7 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .cols-10 > .col-offset-7 {
    margin-left: 70%;
  }
  .cols-10 > .col-8 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .cols-10 > .col-offset-8 {
    margin-left: 80%;
  }
  .cols-10 > .col-9 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .cols-10 > .col-offset-9 {
    margin-left: 90%;
  }
  .cols-10 > .col-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cols-10 > .col-offset-10 {
    margin-left: 100%;
  }
}

.row.g-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.row.g-0 > [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.row.g-4 {
  margin-left: -2px !important;
  margin-right: -2px !important;
}

.row.g-4 > [class*="col"] {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.row.g-8 {
  margin-left: -4px !important;
  margin-right: -4px !important;
}

.row.g-8 > [class*="col"] {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.row.g-12 {
  margin-left: -6px !important;
  margin-right: -6px !important;
}

.row.g-12 > [class*="col"] {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.row.g-16 {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.row.g-16 > [class*="col"] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.row.g-20 {
  margin-left: -10px !important;
  margin-right: -10px !important;
}

.row.g-20 > [class*="col"] {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.row.g-24 {
  margin-left: -12px !important;
  margin-right: -12px !important;
}

.row.g-24 > [class*="col"] {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.row.g-28 {
  margin-left: -14px !important;
  margin-right: -14px !important;
}

.row.g-28 > [class*="col"] {
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.row.g-32 {
  margin-left: -16px !important;
  margin-right: -16px !important;
}

.row.g-32 > [class*="col"] {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.media-left {
  padding-right: 1rem;
}

.media-right {
  padding-left: 1rem;
}

.media-heading {
  margin-top: 0;
  margin-bottom: .5rem;
}

.media-content {
  font-size: .875rem;
}

.avatar {
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
}

.avatar img {
  display: block;
}

.btn {
  display: inline-block;
  padding: .25rem .75rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  line-height: 1.5;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
}

.btn:hover, .btn:focus, .btn:active {
  text-decoration: none;
}

.btn.default {
  color: #fff;
  background-color: #b6c2c9;
}

.btn.default:hover {
  background-color: #a7b6be;
}

.btn.default:focus {
  background-color: #a7b6be;
  box-shadow: 0 0 0 0.25rem rgba(182, 194, 201, 0.5);
}

.btn.default:active {
  background-color: #a7b6be;
}

.btn.primary {
  color: #fff;
  background-color: #348fe2;
}

.btn.primary:hover {
  background-color: #2083dd;
}

.btn.primary:focus {
  background-color: #2083dd;
  box-shadow: 0 0 0 0.25rem rgba(52, 143, 226, 0.5);
}

.btn.primary:active {
  background-color: #2083dd;
}

.btn.info {
  color: #fff;
  background-color: #49b6d6;
}

.btn.info:hover {
  background-color: #34aed1;
}

.btn.info:focus {
  background-color: #34aed1;
  box-shadow: 0 0 0 0.25rem rgba(73, 182, 214, 0.5);
}

.btn.info:active {
  background-color: #34aed1;
}

.btn.success {
  color: #fff;
  background-color: #84b547;
}

.btn.success:hover {
  background-color: #77a340;
}

.btn.success:focus {
  background-color: #77a340;
  box-shadow: 0 0 0 0.25rem rgba(132, 181, 71, 0.5);
}

.btn.success:active {
  background-color: #77a340;
}

.btn.danger {
  color: #fff;
  background-color: #ff5b57;
}

.btn.danger:hover {
  background-color: #ff423e;
}

.btn.danger:focus {
  background-color: #ff423e;
  box-shadow: 0 0 0 0.25rem rgba(255, 91, 87, 0.5);
}

.btn.danger:active {
  background-color: #ff423e;
}

.btn.warning {
  color: #fff;
  background-color: #f59c1a;
}

.btn.warning:hover {
  background-color: #eb900a;
}

.btn.warning:focus {
  background-color: #eb900a;
  box-shadow: 0 0 0 0.25rem rgba(245, 156, 26, 0.5);
}

.btn.warning:active {
  background-color: #eb900a;
}

.btn.inverted {
  color: #fff;
  background-color: #2d353c;
}

.btn.inverted:hover {
  background-color: #22282d;
}

.btn.inverted:focus {
  background-color: #22282d;
  box-shadow: 0 0 0 0.25rem rgba(45, 53, 60, 0.5);
}

.btn.inverted:active {
  background-color: #22282d;
}

.btn.link {
  color: #348fe2;
  background-color: transparent;
  border-color: transparent;
}

.btn.link:hover {
  color: #1c75c7;
  text-decoration: underline;
  background-color: transparent;
}

.btn.link:focus {
  color: #1c75c7;
  text-decoration: underline;
  background-color: transparent;
  box-shadow: 0 0 0 0.25rem rgba(52, 143, 226, 0.5);
}

.btn.link:active {
  color: #1c75c7;
  text-decoration: underline;
  background-color: transparent;
}

.btn.outline {
  background-color: transparent;
}

.btn.outline.default {
  color: #b6c2c9;
  border-color: #b6c2c9;
}

.btn.outline.default:hover {
  color: #fff;
  background-color: #b6c2c9;
}

.btn.outline.default:focus {
  color: #fff;
  background-color: #b6c2c9;
}

.btn.outline.default:active {
  color: #fff;
  background-color: #b6c2c9;
}

.btn.outline.primary {
  color: #348fe2;
  border-color: #348fe2;
}

.btn.outline.primary:hover {
  color: #fff;
  background-color: #348fe2;
}

.btn.outline.primary:focus {
  color: #fff;
  background-color: #348fe2;
}

.btn.outline.primary:active {
  color: #fff;
  background-color: #348fe2;
}

.btn.outline.info {
  color: #49b6d6;
  border-color: #49b6d6;
}

.btn.outline.info:hover {
  color: #fff;
  background-color: #49b6d6;
}

.btn.outline.info:focus {
  color: #fff;
  background-color: #49b6d6;
}

.btn.outline.info:active {
  color: #fff;
  background-color: #49b6d6;
}

.btn.outline.success {
  color: #84b547;
  border-color: #84b547;
}

.btn.outline.success:hover {
  color: #fff;
  background-color: #84b547;
}

.btn.outline.success:focus {
  color: #fff;
  background-color: #84b547;
}

.btn.outline.success:active {
  color: #fff;
  background-color: #84b547;
}

.btn.outline.danger {
  color: #ff5b57;
  border-color: #ff5b57;
}

.btn.outline.danger:hover {
  color: #fff;
  background-color: #ff5b57;
}

.btn.outline.danger:focus {
  color: #fff;
  background-color: #ff5b57;
}

.btn.outline.danger:active {
  color: #fff;
  background-color: #ff5b57;
}

.btn.outline.warning {
  color: #f59c1a;
  border-color: #f59c1a;
}

.btn.outline.warning:hover {
  color: #fff;
  background-color: #f59c1a;
}

.btn.outline.warning:focus {
  color: #fff;
  background-color: #f59c1a;
}

.btn.outline.warning:active {
  color: #fff;
  background-color: #f59c1a;
}

.btn.outline.inverted {
  color: #2d353c;
  border-color: #2d353c;
}

.btn.outline.inverted:hover {
  color: #fff;
  background-color: #2d353c;
}

.btn.outline.inverted:focus {
  color: #fff;
  background-color: #2d353c;
}

.btn.outline.inverted:active {
  color: #fff;
  background-color: #2d353c;
}

.btn.fluid {
  display: block;
  width: 100%;
}

.btn.pill {
  border-radius: 9999px;
}

.btns {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btns > .btn {
  position: relative;
  float: left;
  border-radius: 0;
  margin-left: -2px;
}

.btns > .btn:first-child {
  margin-left: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.btns > .btn:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.btns.vertical > .btn {
  position: relative;
  display: block;
  float: none;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-top: -2px;
}

.btns.vertical > .btn:first-child {
  margin-top: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.btns.vertical > .btn:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

input[type="file"] {
  display: block;
}

textarea {
  resize: vertical;
}

label {
  display: inline-block;
  margin-bottom: .25rem;
}

.form-control {
  display: block;
  width: 100%;
  min-height: 2.25rem;
  padding: .25rem .5rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background-color: #fff;
  background-clip: padding-box;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.form-control:focus {
  outline: 0;
  border-color: #348fe2;
  box-shadow: 0 0 0 0.25rem rgba(52, 143, 226, 0.25);
}

.form-control[disabled] {
  cursor: not-allowed;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-label {
  padding-top: .25rem;
  padding-bottom: .25rem;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1rem;
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline input[type="file"],
.form-inline .form-group {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

.checkbox,
.radio {
  position: relative;
  display: block;
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: 1.5rem;
}

.checkbox label,
.radio label {
  position: relative;
  display: inline-block;
  min-height: 1.5rem;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.checkbox.disabled label,
.radio.disabled label {
  cursor: not-allowed;
}

.checkbox.inline,
.radio.inline {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 1rem;
  vertical-align: middle;
  font-weight: 400;
}

.checkbox input[type="checkbox"],
.radio input[type="radio"] {
  position: absolute;
  margin-top: .25rem;
  margin-left: -1.5rem;
}

fieldset[disabled] .form-control,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio label {
  cursor: not-allowed;
}

.form-text {
  margin-top: .25rem;
  font-size: .875em;
  color: #777;
}

table {
  background: transparent;
  border-spacing: 0;
  border-collapse: collapse;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.5;
}

.table th {
  padding: .75rem .5rem;
}

.table td {
  padding: .5rem;
}

.table > thead {
  background-color: rgba(100, 100, 150, 0.04);
}

.table > thead > tr > th,
.table > thead > tr > td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.table > tfoot {
  background-color: rgba(100, 100, 150, 0.04);
}

.table > tfoot > tr > th,
.table > tfoot > tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.table > tbody > tr + tr > th,
.table > tbody > tr + tr > td {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.table.rounded {
  max-width: none;
  border-collapse: separate;
  border-radius: 6px;
}

.table.bordered {
  border: 2px solid rgba(0, 0, 0, 0.12);
}

.table.bordered > thead > tr > th + th,
.table.bordered > thead > tr > td + td,
.table.bordered > tbody > tr > th + th,
.table.bordered > tbody > tr > td + td,
.table.bordered > tfoot > tr > th + th,
.table.bordered > tfoot > tr > td + td {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.table.striped > tbody > tr:nth-of-type(2n + 2) {
  background-color: rgba(100, 100, 150, 0.04);
}

.table.hover > tbody > tr:hover {
  background-color: rgba(100, 100, 150, 0.04);
}

.table-overflow {
  min-height: .01%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.box {
  padding: .5rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.25rem;
  background-color: #fff;
}

.boxes {
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  margin-bottom: 1rem;
}

.boxes > .box {
  border-width: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.boxes > .box:first-child {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}

.boxes > .box:last-child {
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.boxes > .box.box-header {
  background-color: rgba(100, 100, 150, 0.04);
}

.boxes > .box.box-body {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.boxes > .box.box-footer {
  background-color: rgba(100, 100, 150, 0.04);
}

.boxes .box + .box {
  border-top-width: 1px;
}

.boxes .boxes {
  margin-bottom: 0;
}

.boxes.transparent {
  background-color: transparent;
}

.boxes.transparent .box {
  background-color: transparent;
}

.boxes.inverted {
  color: #fff;
  background-color: #2d353c;
  border-color: rgba(0, 0, 0, 0.88);
}

.boxes.inverted .box {
  background-color: #2d353c;
  border-color: rgba(0, 0, 0, 0.88);
}

.boxes.secondary {
  border-width: 0;
}

.boxes.secondary > .box {
  border-width: 1px;
  border-radius: 0.25rem;
}

.boxes.secondary > .box.box-header {
  background-color: transparent;
  margin-bottom: 0;
  border-width: 0;
  border-radius: 0 !important;
}

.boxes.secondary > .box.box-body {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.boxes.secondary > .box.box-footer {
  background-color: transparent;
  border-width: 0;
  border-radius: 0 !important;
}

.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.bg-default {
  background-color: #b6c2c9 !important;
}

.bg-primary {
  background-color: #348fe2 !important;
}

.bg-info {
  background-color: #49b6d6 !important;
}

.bg-success {
  background-color: #84b547 !important;
}

.bg-danger {
  background-color: #ff5b57 !important;
}

.bg-warning {
  background-color: #f59c1a !important;
}

.bg-inverted {
  background-color: #2d353c !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border-default {
  border-color: #b6c2c9 !important;
}

.border-primary {
  border-color: #348fe2 !important;
}

.border-info {
  border-color: #49b6d6 !important;
}

.border-success {
  border-color: #84b547 !important;
}

.border-danger {
  border-color: #ff5b57 !important;
}

.border-warning {
  border-color: #f59c1a !important;
}

.border-inverted {
  border-color: #2d353c !important;
}

.border-transparent {
  border-color: transparent !important;
}

.text-default {
  color: #b6c2c9 !important;
}

.text-primary {
  color: #348fe2 !important;
}

.text-info {
  color: #49b6d6 !important;
}

.text-success {
  color: #84b547 !important;
}

.text-danger {
  color: #ff5b57 !important;
}

.text-warning {
  color: #f59c1a !important;
}

.text-inverted {
  color: #2d353c !important;
}

.text-white {
  color: #fff !important;
}

.text-muted {
  color: #777 !important;
}

/*# sourceMappingURL=snack.css.map */