/**
 * 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;
}
#cboxTitle {
  margin: 0;
}
#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: #000;
}
#colorbox {
  outline: 0;
}
  #cboxWrapper {
    background: #000;
  }
    #cboxContent {
      background: #000;
      overflow: hidden;
    }
      #cboxError {
        padding: 50px;
        border: 1px solid #ccc;
      }
      #cboxTitle {
        position: absolute;
        background: rgba(0, 0, 0, 0.7);
        bottom: 0;
        left: 0;
        color: #fff;
        width: 100%;
        padding: 20px 25px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
      }
      #cboxCurrent {
        position: absolute;
        top: 0;
        right: 50px;
        padding: 25px 32px;
        color: #807e76;
        width: 38px;
        height: 22px;
        background: url(../images/count.png) no-repeat;
      }
      #cboxPrevious {
        position: absolute;
        top: 38%;
        left: 5px;
        background: url(../images/arrows.png) no-repeat 0px 0px;
        width: 102px;
        height: 102px;
        text-indent: -9999px;
      }
      #cboxPrevious:hover {
        background-position: -102px 0px;
      }
      #cboxNext {
        position: absolute;
        top: 38%;
        right: 5px;
        background: url(../images/arrows.png) no-repeat 0px -102px;
        width: 102px;
        height: 102px;
        text-indent: -9999px;
      }
      #cboxNext:hover {
        background-position: -102px -102px;
      }
      #cboxLoadingOverlay {
        background: #fff;
      }
      #cboxLoadingGraphic {
        background: url(../images/loading_animation.gif) no-repeat center center;
      }
      #cboxClose {
        position: absolute;
        top: 0;
        right: 0;
        background: url(../images/close.png) no-repeat;
        width: 70px;
        height: 70px;
        text-indent: -9999px;
      }
      #cboxClose:hover {
        background-position: -69px 0px;
      }
