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

.loading-scr {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #f5f5f5;
}

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

.load-bar::before {
  content: '';
  width: 75px;
  height: 2px;
  position: absolute;
  left: -34px;
  background: #ff5a70;
  animation: loadBar 1.5s infinite ease;
}

/*-- load bar animation CSS--*/
@keyframes loadBar {
  50% {
    transform: translateX(120px);
  }
}
