/* pc */

/* ==================================== 주소검색 ==================================== */
.edk_addr_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    height: 100vh;
    display: none;
}

.edk_addr_wrap.active {
    display: block;
}

.edk_addr_wrap .dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
}

.edk_addr_wrap .edk_popup_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    width: 100%;
    max-width: 500px;
}

.edk_addr_wrap .edk_popup_box .edk_popup_addr_head {
    padding: 5px;
    text-align: right;
}

.edk_addr_wrap .edk_popup_box .edk_popup_addr_head>i {
    font-size: 30px;
    color: #888;
    cursor: pointer;
}

.edk_addr_wrap .edk_popup_box #edk_popup_addr {
    width: 100%;
}

.edk_addr_wrap .edk_popup_box #edk_popup_addr>div {
    width: 100% !important;
}

/* ==================================== 주소검색 end ==================================== */


/* ==================================== 기본 팝업 ==================================== */
.popup_container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 500;
}

.popup_container.active {
    display: block;
}

.popup_container .dim {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 501;
    background-color: #000;
    opacity: 0.3;
}

.popup_container .popup_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    z-index: 502;
    width: calc(100% - 32px);
    max-height: calc(100% - 100px);
    overflow-y: auto;
}

.popup_container .popup_center.popup_size_xs {
    max-width: 343px;
}

.popup_container .popup_center.popup_size_sm {
    max-width: 556px;
}

.popup_container .popup_center.popup_size_md {
    max-width: 748px;
}

.popup_container .popup_center.popup_size_lg {
    max-width: 940px;
}

.popup_container .popup_center.popup_size_xl {
    max-width: 1116px;
}

.popup_container .popup_center .popup_head {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup_container .popup_center .popup_head>h2 {
    font-size: 18px;
    font-weight: 700;
}

.popup_container .popup_center .popup_head .btn_close {
    max-width: 30px;
    cursor: pointer;
}

.popup_container .popup_center .popup_body {
    padding: 16px;
}

/* ==================================== 기본 팝업 end ==================================== */


/* ==================================== swal ==================================== */
.swal2-icon {
    margin: 25px auto 0 !important;
    font-size: 7px !important;
}

.custom_swal_popup {
    max-width: 343px !important;
    min-height: 182px;
}

.swal2-html-container {
    margin: 0 !important;
    overflow: visible !important;
    padding: 25px 20px !important;
    font-size: 16px !important;
    /* text-align: center !important; */
}

/* 버튼 감싼 클래스 */
.edk_custom_action {
    margin: 0 !important;
    width: 100% !important;
    border-top: 1px solid #E1E1E1 !important;
    border-radius: 0 !important;
}

.custom_alert_icon {
    max-width: 20px;
    margin-bottom: 18px;
}

.custom_alert_text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 8px;
}

.custom_alert_text:last-child {
    margin-bottom: 0;
}

.custom_alert_btn {
    padding: 17px !important;
    background-color: transparent !important;
    color: #0085FF !important;
    width: 50% !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
}

/* 두개일때 */
.custom_alert_btn.btn_default {
    border-right: 1px solid #E1E1E1 !important;
}

/* 확인 버튼 하나만 있을때 */
.custom_alert_btn.btn_only {
    width: 100% !important;
}


.swal2-popup .swal2-styled.swal2-confirm:focus {
    box-shadow: none !important;
}

/* ==================================== swal end ==================================== */

/* 팝업 버튼 공통 */
.popup_container .btn_wrap .btn_default {
    font-weight: 400;
    font-size: 16px;
    padding: 16px 0;
}

.popup_container .btn_wrap .btn_close {
    background-color: #f3f3f3;
    color: #777;

}

/* ==================================== 관리자 팝업 ==================================== */

.edk_admin_popup {
    border: 1px solid #ccc;
    position: fixed;
    top: 50%;
    /* left: 50%; */
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}

.edk_admin_popup.Sm {
    width: 380px;
    aspect-ratio: 1/1;
}

.edk_admin_popup.Md {
    width: 420px;
    aspect-ratio: 1/1.38;
}

.edk_admin_popup.Lg {
    width: 600px;
    height: 635px;
    aspect-ratio: 1/1;
}

.edk_admin_popup.active {
    display: block;
}

.edk_admin_popup .pop_section {
    width: 100%;
    height: calc(100% - 35px);
    background-color: antiquewhite;
    overflow-y: hidden
}

.edk_admin_popup .pop_section>p {
    font-size: 0;
}

.edk_admin_popup .pop_section>p>a {
    display: block;
}

.edk_admin_popup .pop_section img {
    max-width: 100%;
    object-fit: fill;
}

.edk_admin_popup .pop_bottom {
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px 10px;
    padding: 0 5px;
    border-top: 1px solid #ccc;
    background-color: #fff;
}


.edk_admin_popup .pop_bottom .option_checke_input {
    display: flex;
    align-items: center;
}

.edk_admin_popup .pop_bottom .option_checke_input .edk_custom_checkbox+label {
    font-size: 14px;
}

.edk_admin_popup .pop_bottom .option_checke_input .edk_custom_checkbox+label:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.edk_admin_popup .pop_bottom .option_checke_input .edk_custom_checkbox+label::after {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.edk_admin_popup .pop_bottom button {
    background-color: transparent;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.edk_admin_popup .popup_close_top {
    background: url(/static/app_www/base/img/icon_close.png) no-repeat center/contain;
    background-color: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* ==================================== 관리자 팝업 end ==================================== */


/* ==================================== popup custom - 좌석배치도 ==================================== */
.popup_container .popup_center.popup_size_630 {
    max-width: 630px;
    padding: 30px 24px 24px;
}

.popup_container.popup_seater .popup_head {
    padding: 0;
    margin-bottom: 24px;
    display: block;
}

.popup_container.popup_seater .popup_head>h2 {
    font-size: 20px;
    text-align: center;
    color: #222;
}

.popup_container.popup_seater .popup_body {
    padding: 0;
}

.popup_container.popup_seater .popup_body>div:not(:last-of-type) {
    margin-bottom: 24px;
}

.popup_container.popup_seater .popup_body .text_area {
    text-align: center;
    font-size: 14px;
}

.popup_container.popup_seater .popup_body .text_area .color_text {
    color: var(--red-color);
    font-size: 12px;
}

.popup_container.popup_seater .popup_body .img_wrapper {
    overflow: hidden;
    height: 240px;
}

.popup_container.popup_seater .popup_body .img_wrapper img {
    object-fit: contain;
    object-position: center;
    height: 100%;
    cursor: pointer;
}

.popup_seater .swiper-button-prev,
.popup_seater .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
}

.popup_seater .swiper-button-next,
.popup_seater .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px);
}

.popup_seater .swiper-button-next:after,
.popup_seater .swiper-button-prev:after {
    font-size: 30px;
}

.popup_seater .img_thumb {
    overflow: hidden;
    height: 100px;
    cursor: pointer;
    border-radius: 5px;
}

.popup_seater .img_thumb img {
    object-fit: contain;
    object-position: center;
    height: 100%;
}

.popup_seater .img_thumb.myseat_thumb_active {
    border: 1px solid var(--main-color);
}

/* ==================================== popup custom - 좌석배치도 end ==================================== */

/* ==================================== popup custom - 이미지 미리보기 ==================================== */
.popup_container.popup_img_viewer {
    z-index: 501;
}

.popup_container.popup_img_viewer .POPUPIMGVIEWER {
    display: flex;
}

.popup_container.popup_img_viewer .btn_close {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    color: #666;
}


/* ==================================== popup custom - 이미지 미리보기 end ==================================== */

/* ==================================== popup custom - 여객/공항 선택 공통 ==================================== */
.popup_container.popup_hub_transportation .popup_center {
    height: 803px;
}

.popup_container.popup_hub_transportation .popup_head {
    padding: 0;
}

.popup_container.popup_hub_transportation .popup_head .select_hub {
    padding: 16px;
    text-align: center;
    width: 50%;
    border-top: 1px solid #e3e3e3;
    border-bottom: 2px solid var(--main-color);
    font-size: 20px;
    font-weight: 700;
    color: #222;
    cursor: pointer;
}

.popup_container.popup_hub_transportation .popup_head .select_hub.hub_airport {
    border-left: 1px solid #e3e3e3;
    border-top-left-radius: 10px;
}

.popup_container.popup_hub_transportation .popup_head .select_hub.hub_boat {
    border-right: 1px solid #e3e3e3;
    border-top-right-radius: 10px;
}

.popup_container.popup_hub_transportation .popup_head .select_hub.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.popup_container.popup_hub_transportation .popup_body {
    padding: 0;
    height: calc(100% - 61px);
}

.popup_container.popup_hub_transportation .popup_body .img_wrapper {
    height: 210px;
    overflow: hidden;
}

.popup_container.popup_hub_transportation .popup_body .img_wrapper img {
    object-fit: cover;
}

.popup_container.popup_hub_transportation .popup_body .content_area {
    height: calc(100% - 290px);
    overflow-y: auto;
    background-color: #f6f6f6;
    margin-bottom: 24px;
}

.popup_container.popup_hub_transportation .popup_body .content_area .hub_list {
    display: flex;
    gap: 15px 18px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 11px;
}

.popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item {
    width: calc((100% - 18px)/2);
    padding: 15px 16px;
    background-color: #fff;
    border-radius: 10px;
    min-height: 72px;
    cursor: pointer;
}

.popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item span {
    display: block;
    font-weight: 500;
}


.popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item .title_text {
    font-size: 14px;
    color: #222;
    margin-bottom: 4px;
}

.popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item .sub_text {
    font-size: 12px;
    color: #777;
}

.popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item:hover,
.popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item.active {
    background-color: var(--main-color);
}

.popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item:hover span,
.popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item.active span {
    color: #fff;
}

.popup_container.popup_hub_transportation .popup_body .btn_wrap {
    padding: 0 14px;
}

/* ==================================== popup custom - 여객/공항 선택 공통 end ==================================== */

/* ==================================== popup custom - 여객/공항 선택 여객선터미널 목록 ==================================== */
.popup_container.popup_hub_transportation .content_area.hub_boat .hub_list .list_line_area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
}

.popup_container.popup_hub_transportation .content_area.hub_boat .hub_list .list_line_area .line_prev,
.popup_container.popup_hub_transportation .content_area.hub_boat .hub_list .list_line_area .line_next {
    width: calc((100% - 90px) / 2);
    height: 1px;
    background-color: #BDBDBD;
}

.popup_container.popup_hub_transportation .content_area.hub_boat .hub_list .list_line_area .line_text {
    font-size: 14px;
    color: #222;
}

/* ==================================== popup custom - 여객/공항 선택 여객선터미널 목록 end ==================================== */

/* ==================================== popup custom - 수화물 안내 ==================================== */
.popup_container.popup_baggage .popup_head {
    flex-wrap: wrap;
    padding: 24px 14px;
}

.popup_container.popup_baggage .popup_head h2 {
    font-size: 18px;
    margin-bottom: 24px;
}

.popup_container.popup_baggage .popup_head .sub_text {
    width: 100%;
    font-size: 14px;
    color: #777;
}

.popup_container.popup_baggage .popup_body {
    padding: 0 14px 24px;
}

.popup_container.popup_baggage .popup_body .btn_wrap {
    margin-top: 24px;
}


/* ==================================== popup custom - 수화물 안내 end ==================================== */

/* ==================================== popup custom - 날짜 선택 ==================================== */

.popup_container.popup_date .popup_head {
    justify-content: center;
    padding: 30px 24px 0;
}

.popup_container.popup_date .popup_body {
    padding: 10px 24px 24px;
}

.popup_container.popup_date .popup_body .btn_wrap {
    margin-top: 24px;
}

.popup_date .ui-widget-header {
    border: 0px solid #dddddd;
    background: #fff;
}

.popup_date .ui-datepicker .ui-datepicker-header {
    padding: 10px 0;
    margin-bottom: 20px;
}

.popup_date .ui-state-default,
.popup_date .ui-widget-content .ui-state-default,
.popup_date .ui-widget-header .ui-state-default,
.popup_date .ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 0px solid #c5c5c5;
    background-color: transparent;
    font-weight: normal;
    color: #454545;
    text-align: center;
    padding: 5px;
}

.popup_date .ui-datepicker .ui-datepicker-title {
    margin: 0 0em;
    line-height: 16px;
    text-align: center;
    font-size: 20px;
    padding: 0px;
    font-weight: 400;
}

.popup_date .ui-datepicker {
    display: block;
    background-color: #fff;
    border-radius: 4px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    /* margin-bottom: 24px; */
    padding: 0;
    width: 100%;

}

.popup_date .ui-widget.ui-widget-content {
    border: 0px solid #eee;
}

.popup_date #datepicker:focus>.ui-datepicker {
    display: block;
}

.popup_date .ui-datepicker-prev,
.popup_date .ui-datepicker-next {
    cursor: pointer;
}

.popup_date .ui-datepicker .ui-datepicker-prev,
.popup_date .ui-datepicker .ui-datepicker-next {
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    overflow: hidden;
}

.popup_date .ui-datepicker .ui-datepicker-prev:after,
.popup_date .ui-datepicker .ui-datepicker-next:after {
    display: block;
    content: "";
    padding-bottom: 100%;
}

.popup_date .ui-datepicker .ui-datepicker-prev .ui-icon,
.popup_date .ui-datepicker .ui-datepicker-next .ui-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    margin: 0;
}

.popup_date .ui-datepicker .ui-datepicker-prev {
    left: calc(50% - 70px);
}

.popup_date .ui-datepicker .ui-datepicker-next {
    right: calc(50% - 70px);
}

.popup_date .ui-datepicker-next {
    float: right;
}

.popup_date .ui-datepicker-next .ui-icon {
    background-image: url("/static/app_www/base/img/icon_calendar_arrow_right.png");
}

.popup_date .ui-datepicker-prev .ui-icon {
    background-image: url("/static/app_www/base/img/icon_calendar_arrow_left.png");
}

.popup_date .ui-state-disabled {
    cursor: auto;
    color: hsla(0, 0%, 80%, 1);
}

.popup_date .ui-datepicker-title {
    text-align: center;
    padding: 10px;
    font-weight: 100;
    font-size: 20px;
}

.popup_date .ui-datepicker-calendar {
    width: 100%;
}

.popup_date .ui-datepicker table {
    border: 1px solid #E1E1E1;
    margin: 0;
}

.popup_date .ui-datepicker-calendar>thead {
    border-bottom: 1px solid #E1E1E1;
}

.popup_date .ui-datepicker-calendar>thead>tr>th {
    font-size: 16px !important;
    padding: 5px;
    font-weight: 400;
}

.popup_date .ui-datepicker-calendar>tbody>tr>td>a {
    color: #000;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-decoration: none;

}

.popup_date .ui-datepicker-calendar>tbody>tr>.ui-state-disabled:hover {
    cursor: auto;
    background-color: #fff;
}

.popup_date .ui-datepicker-calendar>tbody>tr>td {
    border-radius: 100%;
    width: 44px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
    font-weight: 100;
    text-align: center;
    /* font-size: 12px; */
}

.popup_date .ui-datepicker-calendar>tbody>tr>td:hover {
    background-color: transparent;
    opacity: 0.6;
}

.popup_date .ui-widget-header .ui-state-hover,
.popup_date .ui-state-focus,
.popup_date .ui-widget-content .ui-state-focus,
.popup_date .ui-widget-header .ui-state-focus,
.popup_date .ui-button:hover,
.popup_date .ui-button:focus {
    border: 0px solid #cccccc;
    background-color: transparent;
    font-weight: normal;
    color: #2b2b2b;
    padding: 5px;
}

.popup_date .ui-widget-header .ui-icon {
    background-size: cover;
}

.popup_date .ui-icon-circle-triangle-e {
    background-position: left top;
    background-size: 36px;
}

.popup_date .ui-icon-circle-triangle-w {
    background-position: -0px -0px;
    background-size: 36px;
}

.popup_date .ui-datepicker-calendar>tbody>tr>td:first-child a {
    color: red !important;
}

.popup_date .ui-datepicker-calendar>tbody>tr>td:last-child a {
    color: #0099ff !important;
}

.popup_date .ui-datepicker-calendar>thead>tr>th:first-child {
    color: red !important;
}

.popup_date .ui-datepicker-calendar>thead>tr>th:last-child {
    color: #0099ff !important;
}

.popup_date .ui-state-hover,
.popup_date .ui-widget-content .ui-state-hover,
.popup_date .ui-datepicker-calendar .ui-state-active {
    border: 0px;
    background: #D0E3FF;
    border-radius: 50%;
    padding: 5px;
}

.popup_date .inp {
    padding: 10px 10px;
    background-color: #f1f1f1;
    border-radius: 4px;
    border: 0px;
}

.popup_date .inp:focus {
    outline: none;
    background-color: #eee;
}

/* ==================================== popup custom - 날짜 선택 end ==================================== */

/* ==================================== popup custom - 시간 선택 ==================================== */
.popup_time_select .popup_center {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 16px 24px;
    max-height: calc(100% - 46px);
}

.popup_time_select .popup_center .popup_head {
    justify-content: center;
    padding: 8px 20px 20px;
}

.popup_time_select .popup_center .popup_head>h2 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.popup_time_select .popup_center .popup_body {
    padding: 0;
}

.popup_time_select .popup_center .popup_body .view_time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    margin-bottom: 20px;
}

.popup_time_select .popup_center .popup_body .view_time span {
    font-size: 20px;
    font-weight: 500;
    color: #222;
}

.popup_time_select .popup_center .popup_body .view_time .time_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 1px;
}

.popup_time_select .popup_center .popup_body .swiper_select_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_time_select .popup_center .popup_body .swiper_select_icon.swiper_select_icon_bottom {
    margin-bottom: 24px;
}

.popup_time_select .popup_center .popup_body .swiper_select_icon>div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_time_select .popup_center .popup_body .swiper_select_icon>div>img {
    max-width: 20px;
    cursor: pointer;
}

.popup_time_select .popup_center .popup_scroll_container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    position: relative;
}

.popup_time_select .popup_center .popup_scroll_container .swiper-line {
    display: block;
    width: 100%;
    height: 50px;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    position: absolute;
}

.popup_time_select .popup_center .popup_scroll_container .am-pm-swiper {
    max-height: 100px;
    overflow: visible;
}

.popup_time_select .popup_center .popup_scroll_container .swiper {
    height: 100%;
    width: 50%;
}

.popup_time_select .popup_center .popup_scroll_container .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #777;
}

.popup_time_select .popup_center .popup_scroll_container .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    color: #222;
}

.popup_time_select .popup_center .popup_body .time_btn_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup_time_select .popup_center .popup_body .time_btn_area>button {
    width: calc(50% - 7px);
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
    padding: 15px 0;
}

.popup_time_select .popup_center .popup_body .time_btn_area .btn_time_confirm {
    background-color: #1A67E2;
    color: #FFF;
}

.popup_time_select .popup_center .popup_body .time_btn_area .btn_time_cancel {
    background-color: #F3F3F3;
    color: #777777;
}

/* ==================================== popup custom - 시간 선택 end ==================================== */

/* ==================================== popup custom - 예약 목적 ==================================== */
.popup_container.popup_reserve_purpose .popup_center .popup_head {
    flex-wrap: wrap;
    padding: 30px 24px 24px;
    text-align: center;
}

.popup_container.popup_reserve_purpose .popup_center .popup_head h2 {
    width: 100%;
    font-size: 20px;
    margin-bottom: 12px;
}

.popup_container.popup_reserve_purpose .popup_center .popup_head .sub_text {
    width: 100%;
    color: #777;
    font-size: 14px;
}

.popup_container.popup_reserve_purpose .popup_center .popup_body {
    padding: 0 24px 30px;
}

.popup_container.popup_reserve_purpose .popup_center .popup_body .purpose_list {
    margin-bottom: 24px;
}

.popup_container.popup_reserve_purpose .popup_center .popup_body .purpose_list .select_item {
    background-color: #F6F6F6;
    padding: 16px;
    border-radius: 10px;
    cursor: pointer;
}

.popup_container.popup_reserve_purpose .popup_center .popup_body .purpose_list .select_item:not(:last-child) {
    margin-bottom: 14px;
}

.popup_container.popup_reserve_purpose .popup_center .popup_body .purpose_list .select_item.active {
    background-color: var(--main-color);
    color: #fff;
}

.popup_container.popup_reserve_purpose .popup_center .popup_body .purpose_list .select_item .title_text {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: #222;
    font-weight: 500;
}

.popup_container.popup_reserve_purpose .popup_center .popup_body .purpose_list .select_item .content_text {
    font-size: 14px;
    font-weight: 600;
    color: #777;
}

.popup_container.popup_reserve_purpose .popup_center .popup_body .purpose_list .select_item.active .title_text,
.popup_container.popup_reserve_purpose .popup_center .popup_body .purpose_list .select_item.active .content_text {
    color: inherit;
}

/* ==================================== popup custom - 예약 목적 end ==================================== */

/* ==================================== popup custom - 현금영수증  ==================================== */
.popup_container.popup_receipt .text_wrap {
    margin-bottom: 30px;
    word-break: keep-all;
}

.popup_container.popup_receipt .text_wrap>p:not(:last-child) {
    margin-bottom: 10px;
}

.popup_container.popup_receipt .text_wrap .text_bold {
    font-weight: 700;
}

/* ==================================== popup custom - 현금영수증 end ==================================== */



/* tablet */
@media screen and (max-width: 1023px) {}

/* mobile */
@media screen and (max-width: 767px) {

    .edk_admin_popup {
        transform: translate(0, -55%);
    }

    .edk_admin_popup.Sm {
        width: calc(100% - 48px);
        max-width: 380px;
    }

    .edk_admin_popup.Md {
        width: calc(100% - 32px);
    }

    .edk_admin_popup.Lg {
        width: calc(100% - 16px);
    }

    /* popup custom - 좌석배치도 */
    .popup_container .popup_center.popup_size_630 {
        padding: 24px 14px;
    }

    .popup_container.popup_seater .popup_head>h2 {
        font-size: 18px;
    }

    .popup_container.popup_seater .popup_body .img_wrapper {
        height: 130px;
    }

    .popup_seater .swiper-button-next:after,
    .popup_seater .swiper-button-prev:after {
        font-size: 20px;
    }

    .popup_seater .img_thumb {
        height: 80px;
    }

    /* popup custom - 이미지 미리보기 */
    .popup_container.popup_img_viewer .popup_center {
        width: 100%;
    }

    .popup_container.popup_img_viewer .btn_close {
        top: 0;
        right: 0;
        font-size: 22px;
    }

    /* popup custom - 여객/공항 선택 공통 */
    .popup_container.popup_hub_transportation .popup_center {
        height: 580px;
        padding: 0;
        border-radius: 10px;
    }

    .popup_container.popup_hub_transportation .popup_head .select_hub {
        padding: 12px;
        border-top: none;
        font-size: 18px;
    }

    .popup_container.popup_hub_transportation .popup_head .select_hub.hub_airport {
        border-left: none;
    }

    .popup_container.popup_hub_transportation .popup_head .select_hub.hub_boat {
        border-right: none;
    }

    .popup_container.popup_hub_transportation .popup_body {
        height: calc(100% - 50px);

    }

    .popup_container.popup_hub_transportation .popup_body .img_wrapper {
        height: 127px;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area {
        height: calc(100% - 231px);
        background-color: #fff;
        padding: 24px 14px 0;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list {
        gap: 14px;
        padding: 0;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list:not(:last-of-type) {
        margin-bottom: 24px;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item {
        width: 100%;
        padding: 12px 16px;
        background-color: #F6F6F6;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item:hover:not(.active) {
        background-color: #f6f6f6;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item span {
        font-weight: 400;
    }


    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item .title_text {
        font-size: 16px;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item:hover:not(.active) .title_text {
        color: #222;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item .sub_text {
        font-size: 14px;
    }

    .popup_container.popup_hub_transportation .popup_body .content_area .hub_list .list_item:hover:not(.active) .sub_text {
        color: #777;
    }
}