#loading-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height: 100px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loader-div{
    width:30px;
    height: 30px;
    background-color: transparent;
    border-top:solid 4px white;
  border-left:solid 4px white;
  border-bottom:solid 4px white;
    border-right:solid 4px transparent;
    border-radius:50%;
    z-index: 999999999;
    animation:loader 0.8s infinite forwards linear;
}
@-webkit-keyframes loader{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
  }
  @keyframes loader{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
  }