/**
 * Colorbox Core Style:
 * The following CSS is consistent between example themes and should not be altered.
 */
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**
 * These elements are buttons, and may need to have additional
 * styles reset to avoid unwanted base styles.
 */
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
  cursor: pointer;
}
/**
 * Avoid outlines on :active (mouseclick),
 * but preserve outlines on :focus (tabbed navigating)
 */
#cboxPrevious:active, #cboxNext:active, #cboxClose:active, #cboxSlideshow:active {
  outline: 0;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* Reset box sizing to content-box if theme is using border-box. */
#colorbox, #cboxContent, #cboxLoadedContent {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Colorbox module default style:
 * The styles are ordered & tabbed in a way that represents
 * the nesting of the generated HTML.
 */
#cboxOverlay {
  background-color: rgba(0,0,0,0.8);
  opacity: 1 !important;
}
#colorbox {
  outline: 0;
}
#cboxWrapper {
  background: #000;
  background: transparent;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}
#cboxTopLeft {
	width: 0px;
	height: 0px;
}
#cboxTopCenter {
  height: 0px;
}
#cboxTopRight {
  width: 0px;
  height: 0px;
}
#cboxBottomLeft {
  width: 0px;
  height: 0px;
}
#cboxBottomCenter {
	height: 0px;
}
#cboxBottomRight {
  width: 0px;
  height: 0px;
}
#cboxMiddleLeft {
	width: 0px;
}
#cboxMiddleRight {
	width: 0px;
}
#cboxContent {
  background: #fff;
	background: transparent;
  overflow: hidden;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
	  margin-bottom: 0px;
	  overflow: hidden !important;
}
#cboxTitle {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  bottom: 0px;
  left: 0;
  color: #FFF;
  width: 100%;
  padding: 4px 12px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  text-align: center;
}
#cboxCurrent {
  position: fixed;
  bottom: 50px;
  left: 0px;
  font-size: 2em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  padding: 0px;
  color: #fff;
  text-align: center;
  width: 100%;
}
.cboxSlideshow_on #cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 30px;
  background: url(images/controls.png) no-repeat -75px -50px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -101px -50px;
}
.cboxSlideshow_off #cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 30px;
  background: url(images/controls.png) no-repeat -25px -50px;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -49px -50px;
}
#cboxPrevious {
  position: fixed;
  top: 82px;
  right: 0px;
  background: url(images/cbox-prev.svg) no-repeat center rgba(0,0,0,0.5);
  width: 80px;
  height: 80px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: center;
  background-color: rgba(0,0,0,0.7);
}
#cboxNext {
  position: fixed;
  top: 164px;
  right: 0px;
  background: url(images/cbox-next.svg) no-repeat center rgba(0,0,0,0.5);
  width: 80px;
  height: 80px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: center;
  background-color: rgba(0,0,0,0.7);
}
#cboxLoadingOverlay {
  background: #fff;
}
#cboxLoadingGraphic {
  background: url(images/loading_animation.gif) no-repeat center center;
}
#cboxClose {
  position: fixed;
  top: 0;
  right: 0;
  background: url(images/cbox-close.svg) no-repeat center rgba(0,0,0,0.5);
  width: 80px;
  height: 80px;
  text-indent: -9999px;

}
#cboxClose:hover {
  background-position: center;
  background-color: rgba(0,0,0,0.7);
}
#cboxClose,
#cboxNext,
#cboxPrevious {
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  transition-property: all;
  transition-duration: 0.3s;
}