.gallery .images {
  position: relative;
  display: flex;
}
.gallery .images .image {
  padding: 0;
}
.gallery .image.active{
  border: 2px solid #aaa;
  background: #fff;
}
.gallery .image .content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#video-container {
  width: 100%;
  margin: 0;
}

#gallery_spin {
  background: white;
}
#reel_spin-reel .reel {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
#reel_spin-reel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#reel_spin.zooming {
  transition: transform .3s ease-in-out;
}

.reel-monitor {
  background: #0007;
  color: #fff;
  bottom: 0;
  top: auto !important;
}

#reel_custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: background .5s linear;
}
#reel_custom:not(.loaded) {
  pointer-events: all;
  cursor: wait;
}
.mini_spin,
.spin_help,
.zoom_help {
  transition: opacity .6s ease-in-out;
  opacity: 0;
}
.mini_spin {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  overflow: hidden;
  border: 1px solid #0003;
  box-shadow: 0 5px 15px #0009;
  padding: 5px;
  background: white;
}
.spin_help,
.zoom_help {
  display: none;
  width: 200px;
  background-color: #444c;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  padding: 15px;
}
#reel_custom.loading { background: #fff9; }
#reel_custom.loading .mini_spin { opacity: 1; }
#reel_custom.loaded { background: transparent; }
#reel_custom.loaded .mini_spin { display: none; }
#reel_custom.opened .mini_spin,
#reel_custom.reeled .mini_spin,
#reel_custom.zoomed .mini_spin { display: none; }
#reel_custom.loaded .spin_help { display: block; }
#reel_custom.opened .spin_help { opacity: 1; }
#reel_custom.reeled .spin_help { opacity: 0; }
#reel_custom.zoomed .spin_help { display: none; }
#reel_custom.zoomed .zoom_help { display: block; opacity: 1; }
#reel_custom.panned .zoom_help { opacity: 0; }

.gallery_button {
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: all !important;
  cursor: pointer;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery_button:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: #fff no-repeat left;
  border-radius: 5px;
}

.advance_button { top: 50%; margin-top: -25px; };
.advance_button.previous { left: 0; }
.advance_button.next { right: 0; }
.advance_button:before { background-image: url(/assets/button_advance.svg); }
.advance_button.previous:before { background-position: left; }
.advance_button.next:before { background-position: right; }

.fullscreen_button { left: 0; top: 0; }
.fullscreen_button:before { background-image: url(/assets/button_fullscreen.svg); }

.fullscreen_gallery .fullscreen_button:before { background-position: right; }
.fullscreen_gallery .fullscreen_button {
  position: fixed;
  z-index: 10001;
}
.fullscreen_gallery, .fullscreen_gallery body {
  pointer-events: none;
  overflow: hidden;
  width: 100vw;
  height: 0;
  padding-top: 100vh;
}
.fullscreen_gallery #gallery_spin {
  width: 100%;
  height: 100%;
}
.fullscreen_gallery .gallery .images,
.fullscreen_gallery .gallery .thumbs {
  pointer-events: all !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}
.fullscreen_gallery .gallery .images {
  height: auto !important;
}
.fullscreen_gallery .gallery .image {
  border: none;
}
.fullscreen_gallery .gallery img {
  max-height: 100%;
}
.fullscreen_gallery .gallery .thumbs {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  overflow: auto !important;
  margin: 0;
  background: #f7f7f7;
}
.fullscreen_gallery .gallery .thumbs .thumb {
  flex-shrink: 0;
}

.portrait.fullscreen_gallery .images { bottom: 130px; }
.landscape.fullscreen_gallery .images { right: 130px; }
.landscape.fullscreen_gallery .gallery .thumbs {
  left: auto;
  width: 130px;
  flex-direction: column;
  padding: 10px 0;
  height: 100%;
}
.portrait.fullscreen_gallery .gallery .thumbs {
  top: auto;
  height: 130px;
  flex-direction: row;
  padding: 0 10px;
  width: 100%;
}
.landscape.fullscreen_gallery .gallery .thumb:before {
  border-top: 5px solid transparent;
  left: auto;
  top: 45px;
  left: -13px !important;
}
.landscape.fullscreen_gallery .gallery .thumb.active:before {
  border-bottom-color: transparent; 
  border-right-color: silver;
}

@media (max-width: 768px) {
  .landscape.fullscreen_gallery .gallery .images { right: 95px; }
  .portrait.fullscreen_gallery .gallery .images { bottom: 95px; }
  .landscape.fullscreen_gallery .gallery .thumbs { width: 95px; }
  .portrait.fullscreen_gallery .gallery .thumbs { height: 95px; }
  .landscape.fullscreen_gallery .gallery .thumb:before { top: 25px; }
}

#slider {
  max-width: 89vw;
}