/*
    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: 99999;
  overflow: hidden;
  -webkit-transform: translate3d(0,0,0);
}
#cboxWrapper {
  max-width: none;
}
#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%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  display: block;
  max-width: none;
  margin: auto;
  border: 0;

  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  -webkit-box-sizing: content-box                                                                                                                                                                                                                   ;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.8;
}
#colorbox {
  outline: 0;
}
#cboxTopLeft,
#cboxTopRight,
#cboxBottomLeft,
#cboxBottomRight,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxTopCenter,
#cboxBottomCenter {
  display: none;
}

.cboxIframe {
  background: #ffffff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #cccccc;
}
#cboxLoadedContent {
  margin-bottom: 0;
}
#cboxTitle {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  color: #949494;
  text-align: center;
}
#cboxCurrent {
  position: absolute;
  left: 58px;
  bottom: 4px;
  color: #949494;
}



/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  overflow: visible;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  right: 30px;
  bottom: 4px;
  color: #0092ef;
}
#cboxPrevious {
  position: absolute;
  left: 0;
  bottom: 0;
}
#cboxPrevious:hover {
  background-position: -75px -25px;
}
#cboxNext {
  position: absolute;
  left: 27px;
  bottom: 0;
}
#cboxNext:hover {
  background-position: -50px -25px;
}
#cboxClose {
  position: fixed;
  top: 10px;
  right: 0;
  width: 80px;
  height: 80px;
  background: url(../images/pop-closeBt.jpg) center center no-repeat;
  background-size: 100%;
  text-indent: -9999999px;
  white-space: nowrap;
  overflow: hidden;
}
#cboxClose:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  #cboxClose {
    width: 40px;
    height: 40px;
  }
}
