/**
 * jQuery Enhanced Lightbox plugin
 * This jQuery plugin is based on jQuery lightBox 0.5 by Leandro Vieira (http://leandrovieira.com/projects/jquery/lightbox/).
 * @name jquery-enlightbox.js
 * @author Eduardo Morais - http://www.eduardomorais.com
 * @version 1.1
 * @date February 19, 2012
 * @category jQuery plugin
 * @copyright (c) 2011-2012 Eduardo Morais, based on the work of Leandro Vieira Pinho (leandrovieira.com)
 * @license CCAttribution-ShareAlike 3.0 Unported - http://creativecommons.org/licenses/by-sa/3.0/
 * @example Visit http://www.eduardomorais.com/code/lightbox/ for more informations about this jQuery plugin
 */

#jquery-overlay {
    z-index: 1900;
    width: 100%;
    height: 50rem;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
}

#jquery-lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    text-align: center;
    line-height: 0;
    padding-bottom: 12rem;
}

#jquery-lightbox a img {
    border: none;
}

#lightbox-container-image-box {
    position: relative;
    width: 24rem;
    height: 24rem;
    margin: 0 auto;
    box-shadow: 4px 6px 24px rgba(0, 0, 0, .3);
}

#lightbox-container-image {
    padding: 5px 0;
}

#lightbox-loading {
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

#lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    cursor: crosshair;
}

#lightbox-container-image-box>#lightbox-nav {
    left: 0;
}

#lightbox-nav a {
    outline: none;
}

#lightbox-nav-btnPrev, #lightbox-nav-btnNext, #lightbox-nav-btnZoom {
    height: 100%;
    zoom: 1;
    display: block;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    cursor: crosshair;
}

#lightbox-nav-btnPrev {
    width: 25%;
    left: -50px;
    position: absolute;
}

#lightbox-nav-btnZoom {
    width: 50%;
    left: 25%;
    position: absolute;
}

#lightbox-nav-btnNext {
    width: 25%;
    right: -50px;
    position: absolute;
}

#lightbox-container-image #lightbox-image {
    border: 1px solid var(--emcor-lighten-slighter);
}

#lightbox-container-image-data-box {
    background-color: #111;
    background-color: var(--emcor-footer-bg-grad);
    opacity: 0.97;
    overflow: auto;
    width: 100%;
    padding: 0 5px;
    position: fixed;
    z-index: 1001;
    bottom: 0;
}

#lightbox-container-image-data {
    padding: 10px 0 30px 0;
    color: var(--emcor-body-text);
    margin: 0 auto;
    min-width: 24rem;
}

#lightbox-container-image-data #lightbox-image-details {
    width: 100%;
    text-align: left;
}

#lightbox-image-details-caption {
    display: block;
    max-width: 80ch;
    font-size: 1.3rem;
    line-height: 1.5;
    padding-bottom: 10px;
}

#lightbox-image-details-caption a {
    border-bottom: 2px dotted var(--emcor-lighten-slight);
}

#lightbox-image-details-caption a:hover {
    color: var(--emcor-links-hover);
    border-bottom: transparent;
}

#lightbox-image-details-caption .lightbox-title {
    font-family: var(--em-fonts-sans);
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 1.6;
    display: block;
    padding-bottom: 10px;
}

#lightbox-image-details-currentNumber {
    display: block;
    clear: left;
    font-size: 1.2rem;
    line-height: 1.4;
    padding-bottom: 10px;
    color: var(--emcor-lighten-strong);
}

#lightbox-secNav-btnClose {
    width: 48px;
    float: right;
    padding-bottom: 0.7em;
    opacity: 0.4;
    position: relative;
    bottom: 32px;
}

#lightbox-secNav-btnClose:hover {
    opacity: 1;
}
