* { cursor: none; }

html, body , #slides, .photo, .image {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background: #000;
}

#statusPause {
  position: absolute;
  z-index: 100;
  display: inline-block;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 5px;
  color: #fff;
  text-shadow: 0 0 5px #000;
  padding: 0 5px 0 8px;
  margin: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.hide {
  display: none!important;
}

#debug {
  position: absolute;
  top: 0;
  z-index: 9999;
}

#slides {
  text-align: center;
}

.photo {
  opacity: 0;
  position: absolute;
  /* CSS animation defined in JS */
}

.photo .bg-css3blur,
.photo .bg-svgblur {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.photo .bg-css3blur {
  background-size: cover;
  background-position: 50% 50%;
  filter: blur(20px) opacity(0.5);
  height: 100%;
  width: 100%;
  transform: scale(1.05);
}

.photo .bg-svgblur {
  filter: opacity(0.5);
}

.photo.portrait .image img {
  height: 100%;
}

.photo .exif {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 5px 8px;
  opacity: .5;
  font-size: 80%;
}

.photo .map {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
}

.photo .map img {
  vertical-align: middle;
}

.visible {
  opacity: 1;
}

.fadeIn {
  opacity: 1;
  z-index: 10;
}