.tiv-load-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  background-color: #ffffff;
  opacity: 0.8;
}
.tiv-load-container {
  display: flex;
	height: 100vh;
  position: absolute;
  top:50%;
  left:50%;
  width: 1px;
}
.tiv-load-rotation {
  animation: rotation 2.5s infinite ease-in-out;
  position: absolute;
  left: -50px;
  top:-50px;
  width: 100px;
  height: 100px;
  z-index: 99;
}
@keyframes
  rotation {
    0% {
      transform: rotate(0deg);
      width: 100px;
    }
    50% {
      width: 4px;
      left: -2px;
      height: 300px;
      top:-150px;
    }
    100% {
      transform: rotate(359deg);
    }
  }
