#ScrollPane {
  position: relative;
  width: 100%;
  height: 100%;
}
.scr,
.pane {
  position: relative;
  width: 100%;
  height: 100%;
}

.horiz {
  position: relative;
  width: 100%;
  height: 100%;
}
.horiz .spane {
  overflow: hidden;
  font-size: 0;
  position: relative;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}
.horiz .pane {
  display: inline-block;
  width: 100%;
}
.ct {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1000px) and (orientation: landscape) {
  .ct {
    justify-content: flex-start;
  }
}
.an .ct {
  transform: translate3D(0, 20px, 0) rotateX(90deg) scale(0.5);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.38, 1.47);
}
.left,
.right {
  overflow: hidden;
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
}
.left {
  width: 55%;
}
.right {
  width: 45%;
  left: 55%;
}

@media (max-width: 576px) or (orientation: portrait) {
  .ct {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .left,
  .right {
    overflow: hidden;
    display: block;
    position: relative;
    height: 100vh;
  }

  .left {
    width: 100%;
    width: 100%;
    height: 100vh;
  }
  .right {
    width: 100%;
    left: 0%;
    right: 0%;
  }
}

@media (max-width: 1000px) and (orientation: landscape) {
  .left {
    width: 43%;
  }
  .right {
    width: 53%;
    left: 45%;
  }
}

.an.visible .ct {
  transform: translate3D(0, 0, 0) scale(1);
  opacity: 1;
}
#Helper {
  position: fixed;
  background: #ffffff;
  bottom: 0;
  left: 0;
  padding: 5px;
  z-index: 3000;
  font-size: 12px;
  color: #1e1e1e;
}
