.popup-global {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.popup-box img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 17px;
}

.popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #000 !important;
    color: #fff !important;
    font-size: 20px;
    cursor: pointer;
    line-height: 0;
    padding: 12px 10px 15px;
}