#imagelightbox {
    cursor: pointer;
    position: fixed;
    z-index: 10000;
    -ms-touch-action: none;
    touch-action: none;
    max-height: 80%;
    border: 2px solid #fff;
}

.overlay-colorize + button + button + #imagelightbox {
    border: 0 none;
}

#imagelightbox-overlay {
    background-color: rgba(26, 26, 26, .95);
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.imagelightbox-caption {
    text-align: center;
    color: #fff;
    position: fixed;
    z-index: 10000;
    left: 0;
    right: 0;
    bottom: 5%;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 7px;
    font-family: "lektonregular", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.imagelightbox-arrow {
    width: 65px;
    height: 40px;
    background-color: transparent;
    vertical-align: middle;
    position: fixed;
    z-index: 10001;
    bottom: 5%;
    border: 0 none;
    outline: none !important;
}

.imagelightbox-arrow-left {
    left: 33.333%;
}

.imagelightbox-arrow-right {
    right: 33.333%;
}

.imagelightbox-arrow:before {
    width: 50px;
    height: 35px;
    content: '';
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.imagelightbox-arrow-left:before {
    background-image: url(../img/chevron-left.svg)
}

.imagelightbox-arrow-right:before {
    background-image: url(../img/chevron-right.svg);
}

.overlay-colorize + button:before {
    background-image: url(../img/chevron-left-black.svg)
}

.overlay-colorize + button + button:before {
    background-image: url(../img/chevron-right-black.svg);
}

#imagelightbox-overlay, #imagelightbox {
    -webkit-animation: fade-in .3s ease-in;
    animation: fade-in .3s ease-in
}

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

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

@media only screen and (max-width: 992px) {

    .imagelightbox-arrow-left {
        left: 3%;
    }

    .imagelightbox-arrow-right {
        right: 3%;
    }
}

#imagelightbox-overlay.overlay-colorize {
    background: rgba(222, 219, 215, 0.95);
}