#imagelightbox{
    position: fixed;
    z-index: 9999;

    -ms-touch-action: none;
    touch-action: none;
}
#imagelightbox-overlay {

    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.imagelightbox-arrow {
    width: 3.75em;
    height: 7.5em;
    background-color: #000;
    background-image: url(/box/img/angle-left-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    vertical-align: middle;
    display: none;
    position: fixed;
    z-index: 10001;
    top: 50%;
    margin-top: -3.75em;
    border: none;

}
.imagelightbox-arrow-right {
    right: 0;
    background-image: url(/box/img/angle-right-white.svg);
    background-size: 20px;
}
#imagelightbox-loading, #imagelightbox-overlay, #imagelightbox-close, #imagelightbox-caption, #imagelightbox-nav, .imagelightbox-arrow {
    -webkit-animation: fade-in .25s linear;
    animation: fade-in .25s linear;
}


#imagelightbox-close{
width: 2.5em; /* 40 */
height: 2.5em; /* 40 */
text-align: left;
background-color: #000;

position: fixed;
z-index: 10002;
top: 0; /* 40 */
right: 0; /* 40 */
border: none;
-webkit-transition: color .3s ease;
transition: color .3s ease;
}
#imagelightbox-close:hover,
#imagelightbox-close:focus { background-color: #ed4047; }

#imagelightbox-close:before,
#imagelightbox-close:after{
    width: 2px;
    background-color: #fff;
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 50%;
    margin-left: -1px;
}
#imagelightbox-close:before{
    -webkit-transform: rotate( 45deg );
    -ms-transform: rotate( 45deg );
    transform: rotate( 45deg );
}
#imagelightbox-close:after{
    -webkit-transform: rotate( -45deg );
    -ms-transform: rotate( -45deg );
    transform: rotate( -45deg );
}

@-webkit-keyframes fade-in{
    from    { opacity: 0; }
    to      { opacity: 1; }
}
@keyframes fade-in{
    from    { opacity: 0; }
    to      { opacity: 1; }
}