.first-loading-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  min-height: 90vh;
}

.loading-wrp{
  display: flex;
}

.line{
  width: 5px;
  height: 50px;
  margin: 0 5px;
  border-radius: 30px;
}

.loading-wrp > span:nth-child(even) {
  background-color: #eb0f0f;
  animation: growAnim 0.4s linear infinite alternate-reverse;
}

.loading-wrp > span:nth-child(odd) {
  background-color: #18a058;
  animation: growAnimReverse 0.4s linear infinite alternate-reverse;
}

@keyframes growAnim {
  0% {
    transform: scale(1, 0.3);
    -ms-transform: scale(1, 0.3);
    -webkit-transform: scale(1, 0.3);
    -moz-transform: scale(1, 0.3);
    -o-transform: scale(1, 0.3);
  }
  100% {
    transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
  }
}

@keyframes growAnimReverse {
  from {
    transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
  }
  to {
    transform: scale(1, 0.3);
    -ms-transform: scale(1, 0.3);
    -webkit-transform: scale(1, 0.3);
    -moz-transform: scale(1, 0.3);
    -o-transform: scale(1, 0.3);
  }
}

.first-loading-wrp .title{
  font-size: 28px; 
  font-weight: bold; 
  text-align: center; 
  margin-top: 20px;
}

/* From Uiverse.io by satyamchaudharydev */ 
.loading-new {
 --speed-of-animation: 0.9s;
 --gap: 6px;
 --first-color: #4c86f9;
 --second-color: #49a84c;
 --third-color: #f6bb02;
 --fourth-color: #f6bb02;
 --fifth-color: #2196f3;
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100px;
 gap: 6px;
 height: 100px;
}

.loading-new span {
 width: 10px;
 height: 80px;
 background: var(--first-color);
 animation: scale var(--speed-of-animation) ease-in-out infinite;
}

.loading-new span:nth-child(2) {
 background: var(--second-color);
 animation-delay: -0.8s;
}

.loading-new span:nth-child(3) {
 background: var(--third-color);
 animation-delay: -0.7s;
}

.loading-new span:nth-child(4) {
 background: var(--fourth-color);
 animation-delay: -0.6s;
}

.loading-new span:nth-child(5) {
 background: var(--fifth-color);
 animation-delay: -0.5s;
}

@keyframes scale {
 0%, 40%, 100% {
  transform: scaleY(0.05);
 }

 20% {
  transform: scaleY(1);
 }
}