/* BACKDROP */
.portfolio-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* MODAL */
.portfolio-popup-modal {
    width: 60vw;
    max-width: 1200px;
    height: 92vh;

    background: #fff;

    overflow-y: auto;
    overflow-x: auto;

    position: relative;

    border-radius: 16px;
}
/* IMAGE */
.portfolio-popup-image {
    display: block;

    width: min(1600px, 100%);
    height: auto;

    margin: 0 auto;
}
/* CLOSE */
.portfolio-popup-close {
    position: fixed;
    top: 25px;
    right: 30px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    z-index: 9999999;
    line-height: 1;
}

/* THUMB */
.portfolio-popup-trigger {
    cursor: pointer;
    transition: transform .3s ease;
}

.portfolio-popup-trigger:hover {
    transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 768px) {

    .portfolio-popup-overlay {
        padding: 10px;
    }

    .portfolio-popup-modal {
        width: 100%;
        height: 95vh;
        border-radius: 10px;
    }

}