.wrapper{
		display:none;
		}
.loading-screen{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
	z-index:1;
}

.logo{
  width: 200px;
}
.loading-bar{
  width: 250px;
  height: 6px;
  background: #e8e9f3;
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}

.loading-bar::before{
  content: "";
  width: 125px;
  height: 8px;
  background: #FF5A5F;
  position: absolute;
  left: -34px;
  animation: pinkbar 1.5s infinite ease;
}

@keyframes pinkbar {
  50%{
    left: 196px;
  }
} 