/* Lytebox styles for tsmartin website (white theme) */

/* OUTER OVERLAY */
#lbOverlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  cursor: pointer;
}

/* LYTEBOX CONTAINER */
#lbCenter, #lbBottomContainer {
  position: absolute;
  z-index: 9999;
  overflow: hidden;
  background-color: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid #fff;
  border-radius: 5px;
}

/* IMAGE */
#lbImage {
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 10px solid #fff;
}

/* HIDE SHOW WATERMARK */
#lbWatermark {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: url('../public/lytebox/watermark-desktop.png') no-repeat;
}

/* NAVIGATION BUTTONS */
#lbPrev, #lbNext {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
}
#lbPrev { background: url('../public/lytebox/lytebox-prev-white.png') no-repeat left center; }
#lbNext { background: url('../public/lytebox/lytebox-next-white.png') no-repeat right center; }

/* CLOSE BUTTON */
#lbClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url('../public/lytebox/close-white.png') no-repeat center;
}

/* LOADING INDICATOR */
#lbLoading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  background: url('../public/lytebox/loading-white.gif') no-repeat center;
  transform: translate(-50%, -50%);
}

/* BOTTOM CONTAINER (CAPTION, NAVIGATION) */
#lbBottomContainer {
  background-color: #fff;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 10px;
}
#lbCaption { margin-bottom: 5px; }
#lbNumber { font-size: 12px; color: #666; }