#loadingBoxIcon{
  width: 100%;
  height: 100%;
  background-color: white;
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0px;
  padding: 0px;

}

#loadingIcon{
   width: 64px;
   height: 64px;
   display: flex;
   justify-content: center;
   align-items: center;
   animation: loadingIcon 0.5s linear infinite;
}

@keyframes loadingIcon {
  from {
     transform: rotate(0deg);

  }
  to {

     transform: rotate(360deg);


  }
}
