.iviz-star-container  {
    display: none;
  }
.iviz-star-load .iviz-star-container {
  position: fixed;
  top:0;
  left: 0;
  width: 100vw;
  height: 0;
  overflow: visible;
  display: block;
  z-index: 100000000000000000000;

}
.iviz-star-load .iviz-star-container .iviz-star {
  background-color: #FFEF00;
  width: 20px;
  height: 20px;
  position: fixed;
  z-index: 100000000000000000000;
  opacity: 0;
  clip-path: polygon(50% 0%, 80% 100%, 0 40%, 100% 40%, 20% 100%);
  background-size: contain;
}
@keyframes spin {
    0%   {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}
  }
@keyframes spinsmall {
    0%   {transform: rotate(0deg) scale(0.7)}
    100% {transform: rotate(360deg) scale(0.7)}
  }
@keyframes spinbig {
    0%   {transform: rotate(0deg) scale(1.2)}
    100% {transform: rotate(360deg) scale(1.2)}
  }
@keyframes opacity {
    0%   {opacity:1}
    60%   {opacity:1}
    100% {opacity: 0}
  }
  @keyframes opacityfast {
      0%   {opacity:1}
      90%   {opacity:1}
      100% {opacity: 0}
    }
    @keyframes opacityslow {
        0%   {opacity:1}
        40%   {opacity:1}
        100% {opacity: 0}
      }
.iviz-star-load .iviz-star-container .iviz-star.big {
  tranform: scale(1.2);
  -webkit-animation:spinbig 1s ease-in 1, opacityfast 0.3s linear 1;
  -moz-animation:spinbig 1s ease-in 1, opacityfast 0.3s linear 1;
  animation:spinbig 1s ease-in 1, opacityfast 0.3s linear 1;
}
.iviz-star-load .iviz-star-container .iviz-star.medium {
  tranform: scale(1);
  -webkit-animation:spin 1s ease-in 2, opacity 0.6s linear 1;
  -moz-animation:spin 1s ease-in 2, opacity 0.6s linear 1;
  animation:spin 1s ease-in 2, opacity 0.6s linear 1;
}
.iviz-star-load .iviz-star-container .iviz-star.small {
  tranform: scale(0.7);
  -webkit-animation:spinsmall 0.5s ease-in 3, opacityslow 0.9s linear 1;
  -moz-animation:spinsmall 0.5s ease-in 3, opacityslow 0.9s linear 1;
  animation:spinsmall 0.5s ease-in 3, opacityslow 0.9s linear 1;
}
