.empl-arch-single figure {
    width: 660px;
    max-width: 100%;
    cursor: pointer;
}

#empl-arch-lb {
    display: none;
}

#empl-arch-lb.empl-arch-lb-active {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.empl-arch-lb-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.empl-arch-lb-content img {
    display: none;
    opacity: 0;
}

.empl-arch-lb-content img.empl-arch-lb-img-active {
    display: block;
    animation-name: empl-arch-fade-full;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-duration: .3s;
}

.empl-arch-lb-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #141414;
    opacity: 0;
}

#empl-arch-lb .empl-arch-lb-overlay {
    animation-name: empl-arch-fade;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-duration: .3s;
}

.empl-arch-lb-ctrl {
    position: static;
}

.empl-arch-lb-ctrl-left, .empl-arch-lb-ctrl-right, .empl-arch-lb-ctrl-close {
    display: block;
    position: absolute;
    height: 40px;
    width: 40px;
    border-radius: 0;
    z-index: 100;
    padding: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #141414;
    opacity: 0;
}

#empl-arch-lb .empl-arch-lb-ctrl-left, #empl-arch-lb .empl-arch-lb-ctrl-right, #empl-arch-lb .empl-arch-lb-ctrl-close {
    animation-name: empl-arch-fade-full;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-duration: .3s;
}

.empl-arch-lb-ctrl-close {
    top: 0;
    right: 30px;
    background-image: url(/wp-content/plugins/wps-lightbox/img/ctrlClose.png);
}

.empl-arch-lb-ctrl-right {
    top: 50%;
    margin-top: -20px;
    right: 30px;
    background-image: url(/wp-content/plugins/wps-lightbox/img/ctrlArrRight.png);
    background-size: auto 50%;
}

.empl-arch-lb-ctrl-left {
    top: 50%;
    margin-top: -20px;
    left: 30px;
    background-image: url(/wp-content/plugins/wps-lightbox/img/ctrlArrLeft.png);
    background-size: auto 50%;
}

@keyframes empl-arch-fade {
    from {
        opacity: 0;
    }
    to {
        opacity: .8;
    }
}

@keyframes empl-arch-fade-full{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}