
/* 2026-07-14 (주)파이브센스_FIVESENSES.Corp. 검색 오버레이 기본 규칙 복구.
   shop-search-mobile 에는 있으나 busi 에는 누락되어 .m_search_box 가 display:block(div 기본)으로
   헤더 li.element_box 안에 펼쳐져 모바일 헤더 높이가 폭증하던 회귀 수정.
   JS(widget.php)가 display:none 을 전제로 fadeIn/토글하므로 기본 숨김+풀스크린 오버레이가 정상 상태. */
.m_header .container_fix .m_search_box {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 150;
}
.at-header.fixed .m_header .m_search_box {
    top: 0;
}
.m_header .container_fix .m_search_box.no_banner {
    top: 0;
}

/* busi-search-mobile 검색 오버레이 아이콘 img→인라인 SVG 전환 (2026-07-09) */
.m_header .container_fix .m_search_box .search_top .search_btn svg.search_svg {
    height: 22px;
    width: auto;
    color: #1f1f1f;
    display: block;
}
.m_header .container_fix .m_search_box .search_top .close_btn svg.close_svg {
    height: 16px;
    width: auto;
    color: #919191;
    display: block;
}
