/* Override Lightbox2 caption style */


.lb-data .lb-details {
    width: 100%;
    float: left;
    text-align: left;
    line-height: 1.1em;
}
    
.lb-data .lb-caption {
    font-family: system-ui, sans-serif;
    padding:10px;
    padding-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3em;
    display: block;
    width: 100%;

}
    
.lb-data .lb-close {
    position: absolute;
    top: 20px;
    right: 40px;
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    text-align: right;
    outline: 0;
    filter: alpha(Opacity=70);
    opacity: .7;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
}
    
.lb-close {
    background: url(../images/close.png) top right no-repeat;
    z-index: 9999; /* higher than .lb-next */
}
    
.lb-next {
    width: 64%; /* or reduce this if needed */
    height: 64px; /* match the icon height */
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    position: absolute;
    background: url(../images/next.png) right center no-repeat;
    background-size: 64px 64px; /* adjust to match your icon */
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 9998; /* slightly lower than close button */
}
    
    
.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999;
    text-align: center;
}    