.sv-splash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.sv-splash-logo {
  width: 20%;
  height: auto;
  will-change: transform;
}

.svg-path1 {
  fill: none;
  animation: fillInPath1 1s 1s ease-in-out forwards;
}

.svg-path {
  fill: none;
  animation: fillInPath 1s 1s ease-in-out forwards;
}


@keyframes fillInPath {
  0% {
    fill: rgba(28, 116, 212, 0);
  }

  20% {
    fill: rgba(28, 116, 212, 0.2);
  }

  80% {
    fill: rgba(28, 116, 212, 0.7);
  }

  100% {
    fill: rgb(28, 116, 212);
  }
}

@keyframes fillInPath1 {
  0% {
    fill: rgba(196, 28, 92, 0);
  }

  20% {
    fill: rgba(196, 28, 92, 0.2);
  }

  80% {
    fill: rgba(196, 28, 92, 0.7);
  }

  100% {
    fill: rgb(196, 28, 92);
    stroke-width: 1;
  }
}

.loading-bar-container {
  width: 480px;
  max-width: 480px;
  height: 6px;
  background-color: rgba(25, 118, 210, 0.2);
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: fadeIn 0.5s 2s ease-in-out forwards;
}

.loading-bar {
  width: 30%;
  height: 100%;
  background-color: rgb(25, 118, 210);
  border-radius: 16px;
  position: absolute;
  animation: loading 2s 4s cubic-bezier(0.65, 0.05, 0.36, 1) infinite alternate;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    left: 0;
  }

  100% {
    left: 70%;
  }
}
