// Button for toggling viewer modal
// ==================================================

.viewer-button {
  position: absolute;
  top: -50px;
  right: -50px;
  z-index: 9999;

  overflow: hidden;

  width: 100px;
  height: 100px;

  @include bg-color($color-black, .5);
  border-radius: 50%;

  cursor: pointer;

  &:before {
    position: absolute;
    bottom: 12px;
    left: 20px;
  }
}
