.pixpick-slider img {
    position: relative;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.pixpick-slider img:hover {
    opacity: 0.75;
}

/* Lightbox */
.pixpick-lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.pixpick-lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 10px black;
}

.pixpick-lightbox-overlay.active {
    display: flex;
}

.pixpick-lightbox-nav {
    color: white;
    font-size: 3rem;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pixpick-lightbox-nav.prev {
    left: 10px;
}

.pixpick-lightbox-nav.next {
    right: 10px;
}
.pixpick-lightbox-counter {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
}
