/* 팝업 기본 */
.popup {width: 100%; height: 100vh; background: rgba(0,0,0,.3); position: fixed; z-index: 1001; top: 0; display: none; padding: 15px;}

.popup_box {background: var(--g100); border-radius: 30px; padding: 15px; max-height: calc(100vh - 30px); overflow: auto; width: calc(100% - 30px); position: absolute; display: grid; gap: 15px; top: 50%; transform: translateY(-50%);}
.popup_box.w_1200 {max-width: 1200px;}
.popup_box.w_900 {max-width: 900px;}
.popup_box.w_600 {max-width: 600px;}
.popup_box.w_300 {max-width: 300px;}

.popup_close_btn {position: absolute; top: 15px; right: 15px;}

.popup_tit {}
.popup_tit:first-of-type {padding-right: 60px;}

/* 전체 검색 팝업 */
.dp_popup_search {}

.popup_search {}
.popup_search .popup_search_box {display: flex; width: 100%;}
.popup_search .popup_search_input {width: 100%; height: 40px; background: var(--g300); border-radius: 20px 0 0 20px; padding: 10px 20px; color: var(--g700); border: 0; font-size: 16px;}
.popup_search .popup_search_submit {width: 40px; height: 40px; background: var(--g300);  border-radius: 0 20px 20px 0; padding: 5px; color: var(--g700); border: 0; display: flex; align-items: center; justify-content: center;}
.popup_search .popup_search_submit img {width: 20px;}