.anim-wrapper {
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  user-select: none;
  opacity: 1;
  transition: opacity 2s ease-in-out;
  z-index: 10000000;
  pointer-events: none;
  overflow: hidden;
  background: white;
}

.lottie-wrapper {
  width: 100vw;
  height: auto;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 10000001;
  mix-blend-mode: multiply;
  pointer-events: none;
  max-width: 854px;
  max-height: 480px;
}

.lottie-wrapper:before {
  content: "";
  width: 100vw;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000002 !important;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

#lottie {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  mix-blend-mode: multiply;
  pointer-events: none;
}
