.myfh-loading-animation {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
}
.myfh-spinnerDiv {
  position: sticky;
  top: 50%;
  left: 0;
  width: 100%;
}
.myfh-spinner {
  font-size: 0;
  /* removes the automatically added whitespaces, because they are measured by font-size */
  text-align: center;
}
.myfh-spinner > div {
  margin: 0px 4px;
  width: 50px;
  height: 50px;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
  animation: bouncedelay 1.4s infinite ease-in-out both;
}
.myfh-spinner .myfh-bounce1 {
  -webkit-animation-delay: -0.64s;
  animation-delay: -0.64s;
  background-color: #66d2f0;
}
.myfh-spinner .myfh-bounce2 {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s;
  background-color: #66c09d;
}
.myfh-spinner .myfh-bounce3 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #ffe466;
}
.myfh-spinner .myfh-bounce4 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #ff9643;
}
.myfh-spinner .myfh-bounce5 {
  background-color: #f3668d;
}
