
@keyframes loaderWheel-hex {
  0% { opacity: 1 }
  100% { opacity: 0 }
}
.loaderWheel-hex div {
    left: 54px;
    top: 19px;
    position: absolute;
    animation: loaderWheel-hex linear 0.6211180124223602s infinite;
    background: aquamarine;
    width: 92px;
    height: 22px;
    border-radius: 0px / 0px;
    transform-origin: 46px 81px;
}.loaderWheel-hex div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.8333333333333334s;
  background: aquamarine;
}.loaderWheel-hex div:nth-child(2) {
  transform: rotate(60deg);
  animation-delay: -0.6666666666666666s;
  background: aquamarine;
}.loaderWheel-hex div:nth-child(3) {
  transform: rotate(120deg);
  animation-delay: -0.5s;
  background: aquamarine;
}.loaderWheel-hex div:nth-child(4) {
  transform: rotate(180deg);
  animation-delay: -0.3333333333333333s;
  background: aquamarine;
}.loaderWheel-hex div:nth-child(5) {
  transform: rotate(240deg);
  animation-delay: -0.16666666666666666s;
  background: aquamarine;
}.loaderWheel-hex div:nth-child(6) {
  transform: rotate(300deg);
  animation-delay: 0s;
  background: aquamarine;
}
.loaderWheel-spinner-hex {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
  background: none;
}
.loaderWheel-hex {
  width: 50%;
  height: 50%;
  position: relative;
  transform: translateZ(0) scale(.3);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.loaderWheel-hex div { box-sizing: content-box; }

