.loader {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: 6;
  animation: hideLoader .1s ease 6.2s forwards;
}

.loader-left {
  width: 50%;
  background-color: #1A1C26;
  position: relative;
  animation: splashLeft 1.2s ease-in-out 5s forwards;
}

.loader-right {
  width: 50%;
  background-color: #1A1C26;
  position: relative;
  animation: splashRight 1.2s ease-in-out 5s forwards;
}

.loader-left::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  height: 0;
  border-right: 2px solid #fff;
  animation: centerLine 5s ease-in-out forwards;
}

@keyframes centerLine {
  0%, 20% {
    height: 0;
  } 
  60% {
    height: 50%;
    border-right-color: #fff;
  }
  80% {
    height: 45%;
    border-right-color: #F2A000;
  }
  92% {
    opacity: 1;
    border-right-color: #fff;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes splashLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1000px);
    display: none;
  }
}

@keyframes splashRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(1000px);
    display: none;
  }
}

@keyframes hideLoader {
  from {
    z-index: 6;
  }
  to {
    z-index: -1;
  }
}