/* =========================================================
 * Quick Search Alert Popup - 강제 중앙정렬/레이어 고정
 * (서브/메인 CSS 차이로 left로 붙는 문제를 완전 차단)
 * ========================================================= */

/* ===== Quick Search Alert : overlay only ===== */
#pop_quick_search_alert {
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;

    /* 배경 딤(원하면 조절) */
    background: rgba(0, 0, 0, .5) !important;

    /* 기존 CSS에서 hidden/opacity 걸리는 것 방지 */
    visibility: visible !important;
    opacity: 1 !important;
}

/*  pop_wrap은 fixed 금지. 중앙정렬은 flex로 */
#pop_quick_search_alert .pop_wrap {
    /*position: absolute !important; /* 또는 relative 가능 */
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    visibility: visible !important;
}

/* 팝업 박스 */
#pop_quick_search_alert .pop_in {
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;

    /* 필요하면 */
    transform: none !important; /* 좌측 튐 방지용 (기존 transform이 있으면) */
}