#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.95);
}
#cboxContent {
  background: #fff;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.cboxPhoto {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto !important;
}
#cboxClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: url('../img/share/btn-close.svg') no-repeat center/contain;
  text-indent: -9999px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity .15s linear;
}
#cboxClose:hover { opacity: 0.5; }
#colorbox img:focus,
#colorbox:focus,
#cboxLoadedContent:focus {
  outline: none !important;
}