img[src*="/images/OnePhoto/"] {
    cursor: zoom-in;
    max-width: 100%;
    height: auto;
}

#op-viewer {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    overflow: hidden;
}

#op-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.92);
}

#op-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    max-width: none;
    max-height: none;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
    transition: transform .12s ease-out;
}

#op-close {
    position: absolute;
    right: 20px;
    top: 20px;

    width: 50px;
    height: 50px;

    border: 0;
    border-radius: 50%;

    font-size: 32px;
    cursor: pointer;

    background: rgba(255,255,255,.15);
    color: #fff;

    z-index: 10;
}

#op-image {
    cursor: grab;
}

#op-image.dragging {
    cursor: grabbing;
}