@charset "utf-8";
/* CSS Document */

​/* Custom button design */
.fancybox-toolbar .fancybox-button {
  background: transparent;
  color: #333;
}

.fancybox-toolbar .fancybox-button:hover:not([disabled]) {
  background: rgba(223, 223, 223, 0.5);
  color: #c11c95;
}

.fancybox-navigation .fancybox-button:before {
  display: none;
}

.fancybox-navigation .fancybox-button {
  color: #444 !important;
  padding: 7px;
  z-index: 99996;
}


/* Make close button a bit bigger */
.fancybox-button--close {
  padding: 7px;
}

/* Change background color */
.fancybox-bg {
  background: #eee;
}

/* Hide caption initially */
.caption {
  display: none;
}

/* Change position and design of caption area */
.fancybox-caption-wrap {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 300px;
  padding-top: 40px;
  z-index: 99996;
  background: #eee;
  box-shadow: 0 0 20px #888;
  
  /* Make caption clickable */
  pointer-events: all;
  
  /* Hide next to right edge */
  transform: translate3d(320px, 0, 0);
}

/* Overwrite the default animation */
.fancybox-show-caption .fancybox-caption-wrap,
.fancybox-caption-wrap {
  transition: transform .2s;
}

/* Reveal caption */
.fancybox-show-caption.fancybox-vertical-caption .fancybox-caption-wrap {
  transform: translate3d(0, 0, 0);
}

/* Styling of caption content */
.fancybox-caption {
  height: 100%;
  padding: 0;
  border: 0;
  color: #222;
  overflow: auto;
}

.fancybox-caption a {
  color: #333;
}

.fancy-nav a {
  text-decoration: none;
  font-weight: normal;
  font-size: 20px;
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #444;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 18px;
  text-align: center;
  -moz-user-select: none;
  user-select: none;
  vertical-align: baseline;
}