.fulshearLightbox {
  cursor: pointer;
}

.fulshearLightboxContainer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 5%;
  padding-bottom: 5%;
  z-index: 100;
}
  .fulshearLightboxOverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2B4560;
    filter: alpha(opacity=90);
    opacity: 0.9;
  }

  .fulshearLightboxContent {
    background-color: #fff;
    max-width: 80%;
    max-height: 100%;
    margin: 0 auto;
    overflow: auto;
    position: relative;
  }

    .fulshearLightboxClose {
      position: absolute;
      top: 0;
      right: 0;
      background: #333;
      color: #fff;
      width: 30px;
      line-height: 30px;
      text-align: center;
      cursor: pointer;
    }
    .fulshearLightboxContent .video-container {
      margin-bottom: 0;
    }

/* Album Gallery */
.albumGallery {
  background: #000;
  text-align: center;
  position: relative;
}
  .albumGallery .item {
    display: none;
  }

  .albumGallery .item.show {
    display: block;
  }
  .albumGallery nav i {
    position: fixed;
    top: 50%;
    left: 0;
    font-size: 60px;
    color: #394526;
    background: rgba(255,255,255,0.5);
    border-radius: 100%;
    width: 150px;
    height: 150px;
    line-height: 150px;
    margin: -75px 0 0 -75px;
    text-align: right;
    padding-right: 35px;
    cursor: pointer;
  }
  .albumGallery nav i:last-child {
    left: auto;
    right: 0;
    margin: -75px -75px 0 0;
    text-align: left;
    padding: 0 0 0 35px;
  }