/* Loader Wrapper */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Loader Image */
#loader {
  position: relative;
  z-index: 1001;
  animation: fadeInOut 2s infinite;
}

/* Animation */
@keyframes fadeInOut {
  0%, 100% {
      opacity: 0.3;
  }
  50% {
      opacity: 1;
  }
}

/* Loader Sections */
.loader-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  transition: all 0.7s ease-in-out;
  background: #fff;
}

.section-left {
  left: 0;
}

.section-right {
  right: 0;
}

/* Hide Loader */
.loaded #loader-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loaded .loader-section {
  width: 0;
}