*{
    margin: 0;
    padding: 0;
  }
  #loader
  {
      position:fixed;
      width:100%;
      height:100vh;
      background: white no-repeat;
      z-index:999999;
  }
  .loading-screen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .loader_logo{
    width: 110px;
    height: 125px;
    margin-right: 30px;
  }
  
  .loading-bar{
    width: 130px;
    height: 2px;
    background: #cfcfcf;
    margin-top: 22px;
    position: relative;
    overflow: hidden;
  }
  
  .loading-bar::before{
    content: '';
    width: 68px;
    height: 2px;
    background:var(--theme-color);
    position: absolute;
    left: -34px;
    animation: colorbar 1.5s infinite ease;
  }
  
  @keyframes colorbar{
    50%{
      left: 96px;
    }
  }