#app {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}

header, footer {
  position: relative;
  height: 0px;
  background: #0E0B19;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}
header.visible, footer.visible {
  opacity: 1;
}
header > .container, footer > .container {
  position: relative;
}

header.visible {
  height: 75vh;
  height: calc(100vh - 15em);
}
header canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 256px;
  max-width: 70vh;
  max-width: calc(100vh - 20em);
}

main {
  flex: 1;
  background: #141121;
}
main > .container {
  position: relative;
  height: 100%;
}
main > .container > section {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.5s ease-in-out, opacity 0.35s ease-in-out;
  opacity: 0;
}
main > .container > section.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
main > .container > section.active ~ section {
  transform: translate3d(100%, 0, 0);
}

.intersect-top {
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 999;
  transform: translateY(-50%);
}

.intersect-bottom {
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index: 999;
  transform: translateY(50%);
}

#file-select {
  position: absolute;
  top: 2em;
  left: 2em;
  right: 2em;
  bottom: 2em;
  z-index: 1;
  color: #e0dded;
  background: transparent;
  border: 4px dashed #282243;
  border-radius: 1em;
  cursor: pointer;
}
#file-select .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

footer.visible {
  height: 80vh;
  height: calc(100vh - 10em);
}
footer .crop-container {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
footer .crop-container img {
  width: 100%;
  height: 100%;
}
footer .cr-slider-wrap {
  position: absolute;
  bottom: 0px;
  width: 100% !important;
  z-index: 99;
  transform: translateY(-50%);
}

canvas,
img {
  image-rendering: optimizeQuality;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

.color-slider {
  position: relative;
  height: 1em;
  border-radius: 0.2em;
  height: 15px;
  margin: 0 0 -3px 7px;
  background: linear-gradient(to right, red, yellow, lime, aqua, blue, fuchsia, #ff0004);
}
.color-slider input[type=range] {
  position: absolute;
  bottom: 0px;
  width: 100%;
  transform: translateY(50%);
}

/*# sourceMappingURL=app.css.map */
