@import url(https://fonts.googleapis.com/css?family=Lato);html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Lato', sans-serif;
}

a {
  color: rgb(0, 157, 165);
}

#container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#slider {
  align-items: center;
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
}

#slider::before, #slider::after {
  content: '';
  border: solid 1px white;
  box-shadow: 0 0 1px #000;
  flex-grow: 1;
}

#handle {
  align-items: center;
  background: rgba(0, 157, 165, .8);
  border: solid 2px white;
  border-radius: 50%;
  box-shadow: 0 0 1px #000;
  display: flex;
  height: 40px;
  width: 40px;
  z-index: 1;
}

#handle:hover {
  transform: scale(1.1);
  transition: all 100ms ease-in-out;
  cursor: pointer;
}

.arrow {
  height: 20px;
  width: 20px;
  fill: white;
}

#wrapperA, #wrapperB {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

img {
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

#logo {
  position: absolute;
  left: calc(100% * 0.05);
  top: calc(100% * 0.05);
  width: 100px;
}

#logo svg {
  filter: drop-shadow(1px 1px 1px #666);
}

.noSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#error {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,.8);
  color: white;
  z-index: 1;
  padding: 20px;
  display: none;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

#dates {
  justify-content: space-between;
  color: white;
  display: flex;
  position: absolute;
  left: calc(100% * 0.05);
  right: calc(100% * 0.05);
  bottom: calc(100% * 0.05);
}

.date {
  text-shadow: 1px 1px 3px #333;
}

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