/*
///////////////////////////////////////////////////////////////////////////////
//
//  GALLERIA V1.5
//  Viewer
//
///////////////////////////////////////////////////////////////////////////////
*/

.viewer_modal{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  /* left: calc( -100% - 55px); */
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  user-select: none;
  z-index: 6;

  transition: all .5s;
  background: rgba(89,88,87,0.9);
  /* #281a14 */
  /* opacity: 0; */
}
.viewer_modal.clicked{
  transition: all .5s;
  /* left: 0px; */
  opacity: 1;
}
.viewer_viewer{
  display: block;
  position: relative;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
}
.viewer_caption{
  user-select: none;
  color: #c1e4e9;
}


.viewer_media{
  display: none;
  position: relative;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
  opacity: 1 !important;
}
.viewer_shutter{
  display: block !important;
}
.viewer_icon_close{
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.viewer_icon_previous{
  display: block;
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
}
#viewer_previous,
#viewer_next{
  font-size: 40px;
  opacity: 0.7;
}
.viewer_icon_next{
  display: block;
  position: absolute;
  top: calc(50% - 20px);
  right: 0;
}
.viewer_button_hidden{
  display: none !important;
}
.viewer_icon{
  box-sizing: border-box;
  display: inline-block;
  width: 37px;
  height: 40px;
  padding: 5px 0px 0px 0px;
  text-align: center;
  overflow: hidden;
  font-size: 30px;
  color: #c1e4e9;
  transition: .1s;
  opacity: 0.7;
}
.viewer_icon:active{
  color: #44617b;
}
.viewer_icon:hover{
  color: #c8c2c6 !important;
}
