html,
body {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-body {
  display: flex;
  justify-content: space-evenly;

}

.p1 {
  height: 3em;
  width: 3em;
  border-radius: 50%;
  background-color: #F6A214;
  animation: loading-animation 2s infinite;
}

.p2 {
  height: 3em;
  width: 3em;
  border-radius: 50%;
  margin-left: 0.5em;
  margin-right: 0.5em;
  background-color: #239DD8;
  animation: loading-animation 2s 333ms infinite;
}

.p3 {
  height: 3em;
  width: 3em;
  border-radius: 50%;
  background-color: #7AB93E;
  animation: loading-animation 2s 666ms infinite;
}

/* Hidden iframe used for web PDF printing (no inline style attributes needed) */
.hiddenPrintFrame {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  padding: 0;
  margin: 0;
  left: -9999px;
  top: 0;
  overflow: hidden;
}

@keyframes loading-animation {

  25% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(-20px)
  }

  75% {
    transform: translateY(0px)
  }

}
