html, body {
  padding: 0;
  margin: 0;
  background: #000;
  width: 100vw;
  height: 100vh;
}

.wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.container {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.content {
  position: relative;
}

.main-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.main-background-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}

.main-background {
  max-height: 100vh;
  min-height: 200px;
  max-width: 100vw;
  min-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

.controls {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.controls .navigation {
}

.controls .navigation i {
  font-size: 24px;
  color: #FFFFFF;
}

.location-selector {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: inline-block;
}
.location-selector select {
  background: none;
  color: #FFFFFF;
  border: 0 none;
  -webkit-appearance: initial;
  font-size: 14px;
  outline: 0 none;
}

.marker {
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  color: #FFFFFF;
  font-size: 12px;
}
.credit {
  position: absolute;
  bottom: 1rem;
  right: 0rem;
  color: #FFFFFF;
  font-size: 9px;
  transform: rotate(-90deg) translate(50%, 50%);
  width: 100px;
}

.download {
  
}

.slick-slide {
  width: 100vw;
  height: 100vh;
}
/*.slick-slide.slick-current.slick-active {
  display: flex;
}*/
.slick-slide img {
  max-height: 100vh;
  min-height: 100vh;
  max-width: 100vw;
  min-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  border: 0 none;
  outline: 0 none;
}

.slick-arrow {
  position: absolute;
  top: 0;
  width: 10vw;
  height: 100vh;
  opacity: 0;
  content: '';
  z-index: 1;
  padding: 0;
  margin: 0;
  border: 0 none;
  background: transparent;
  color: transparent;
  font-size: 0;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}

@media only screen and (max-width: 480px) {
  .location-selector {
    height: 24px;
    width: 24px;
  }
  .location-selector select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    position: relative;
    background: transparent;
    color: transparent;
    border: 0 none;
    border-radius: 0;
    height: 100%;
    width: 100%;
  }
  .location-selector:after {
    font-family: FontAwesome;
    content: "\f0c9";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #FFF;
    font-size: 24px;
    pointer-events: none;
    user-select: none;
  }
}
