/* =========================================
   상단 검색 영역
========================================= */
.ap_extra_search{
    margin:15px 0 20px;
    max-width:100%;
    padding:0;
    background:transparent;
    border:none;
    box-shadow:none;
    font-family:'Pretendard',sans-serif;

    /* 폰트 50% 확대 */
    font-size:70%;

    /* 전체 왼쪽 정렬 */
    text-align:left;
}

/* =========================================
   메뉴 그룹
========================================= */
.ap_extra_search .remote_group{
    border-bottom:1px solid rgba(0,0,0,0.06);
    padding:8px 0;
}

.ap_extra_search .remote_group:last-child{
    border-bottom:none;
}

/* =========================================
   대메뉴
========================================= */
.ap_extra_search .remote_title{
    width:100%;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    color:#222;
    user-select:none;
    transition:.15s;
    letter-spacing:-0.2px;
    text-align:left;
}

/* hover */
.ap_extra_search .remote_title:hover{
    color:#000;
}

/* 펼침 아이콘 */
.ap_extra_search .remote_title:after{
    content:'+';
    font-size:18px;
    color:#888;
    transition:.2s;
}

/* 열림 상태 */
.ap_extra_search .remote_group.active .remote_title:after{
    content:'−';
    color:#111;
}

/* =========================================
   소메뉴 영역
========================================= */
.ap_extra_search .remote_value{
    display:none;
    padding-top:10px;
    padding-bottom:5px;
    text-align:left;
}

/* 펼침 */
.ap_extra_search .remote_group.active .remote_value{
    display:block;
}

/* =========================================
   버튼 리스트
========================================= */
.ap_extra_search .exForm ul{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0;
    padding:0;
    line-height:1;
    justify-content:flex-start;
}

/* li */
.ap_extra_search .exForm li{
    list-style:none;
    display:inline-block;
}

/* =========================================
   버튼 디자인
========================================= */
.ap_extra_search .exForm li label{
    display:flex;
    align-items:center;
    justify-content:center;
    height:25px;
    padding:0 8px;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:0;
    background:rgba(0,0,0,0.03);
    font-size:13px;
    font-weight:500;
    color:#444;
    cursor:pointer;
    white-space:nowrap;
    transition:all .15s ease;
}

/* hover */
.ap_extra_search .exForm li label:hover{
    background:#111827;
    border-color:#111827;
    color:#fff;
}

/* input 숨김 */
.ap_extra_search input[type=radio],
.ap_extra_search input[type=checkbox]{
    display:none;
}

/* 선택 상태 */
.ap_extra_search input:checked + label{
    background:#111827;
    border-color:#111827;
    color:#fff;
}

/* =========================================
   입력창
========================================= */
.ap_extra_search input[type=text]{
    width:100%;
    height:44px;
    padding:0 14px;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:0;
    background:rgba(0,0,0,0.03);
    font-size:16px;
    box-sizing:border-box;
    transition:.15s;
    text-align:left;
}

.ap_extra_search input[type=text]:focus{
    outline:none;
    border-color:#111827;
    background:#fff;
}

/* 날짜 */
.ap_extra_search .exForm .date{
    width:220px;
    height:44px;
}

/* =========================================
   하단 버튼
========================================= */
.ap_extra_search .regist{
    margin-top:20px;
    display:flex;
    gap:12px;

    /* 왼쪽 정렬 */
    justify-content:flex-start;
}

/* 버튼 */
.ap_extra_search .regist button{
    min-width:180px;
    height:54px;
    padding:0 24px;
    border:none;
    border-radius:1;
    background:#111827;
    color:#fff;

    /* 버튼 글씨 더 크게 */
    font-size:17px;

    font-weight:700;
    cursor:pointer;
    transition:.15s;
}

/* hover */
.ap_extra_search .regist button:hover{
    background:#000;
}

/* 초기화 */
.ap_extra_search .regist button:last-child{
    background:rgba(0,0,0,0.06);
    color:#333;
}

.ap_extra_search .regist button:last-child:hover{
    background:rgba(0,0,0,0.12);
}

/* =========================================
   모바일
========================================= */
@media screen and (max-width:533px){

    .ap_extra_search .exForm .date{
        width:100%;
    }

    .ap_extra_search .regist{
        flex-direction:column;
        align-items:flex-start;
    }

    .ap_extra_search .regist button{
        width:100%;
    }

}