@keyframes blink {
  0% {
    opacity: .2;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: .2;
  }
}

body {
  font-size: 14px
}

.loading-full-page {
  background-color: #FFFFFF;
  font-family: 'Roboto', sans-serif;
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  left: 0;
  right: 0;
}

.text-center {
  text-align: center;
}

.icon-snapon-logo {
  font-size: 2em;
  font-display: block;
}

.loading-dots {
  text-align: center;
  margin-top: 15px;
}

.loading-dots span {
  background-color: #e80b0b;
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 8px;
  margin-right: 10px;
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.loading-dots span:nth-child(2) {
  animation-delay: .2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: .4s;
}