﻿.lightboxWrp {
    position: fixed;
    top: 0;
    right:0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(81, 81, 81, 0.87);
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}
.lbOverlay {
    position: absolute;
    top: 0;
    right:0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.lightbox {
    position: absolute;
    top: 50%;
    left:50%;
    z-index:2;
    width: calc(100% - 2em);
    max-width: 900px;
    max-height: calc(100vh - 2em);
    padding: 2em;
    background-color:#f4f4f4;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translate(-50%, -50%);
}
.lbStaffItem {
    display: none;
}

/*---------- REVEAL LIGHTBOX ----------*/

.lightboxWrp.active{
    opacity: 1;
    visibility: visible;
}
.staffContent {
    padding: 1em 3em;
}
.staffContent, .staffContenth3 {
    text-align: center;
}
.staffContent p {
    text-align: left;
}
.fa-times-circle {
    font-size: 2em;
}