/* Lightbox Stilleri */
.metex-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.metex-lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.metex-lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.metex-lightbox-close:hover,
.metex-lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

.metex-lightbox-prev,
.metex-lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.metex-lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.metex-lightbox-prev {
    left: 0;
}

.metex-lightbox-prev:hover,
.metex-lightbox-next:hover {
    background-color: rgba(0,0,0,0.8);
}