*{
  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;
}

.logo{
  width: 100px;
  height: 100px;
}

.loading-bar{
  width: 130px;
  height: 2px;
  background: #cfcfcf;
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}

.loading-bar::before{
  content: '';
  width: 68px;
  height: 2px;
  background: #000000;
  position: absolute;
  left: -34px;
  animation: greenbar 1.5s infinite ease;
}

@keyframes greenbar{
  50%{
    left: 96px;
  }
}