/* top_dome.inc, top.inc 둘다 들어가는 브라우저 전체적용된 css
   - 국내선은 top_dome.inc / 국제선은 top.inc로 적용됨 */


input:read-only {
    background-color: #e5e5e5;
    cursor: no-drop;
}

input:read-only:hover, input:read-only:focus {
    border: 1px solid #e5e5e5;
}

/* -----------------------------
        nice-select
----------------------------- */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 0px;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    color: var(--input-color);
    display: block;
    float: left;
    font-family: 'Pretendard', 'NotoKR', sans-serif !important;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    /* width: auto; */
    width: 100%;
    height: 50px;
    line-height: 50px;    
}

.nice-select:hover {
    border-color: #979797;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #979797;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: var(--input-color);
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    width: 100%;
    background-color: #fff;
    border-radius: 0px;
    border: solid 1px #bbbbbb;
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    font-weight: 500;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    max-height: 300px;
    overflow-y: auto;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 500;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: 700;
    color: var(--primary);
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}


/* -----------------------------
          공통
----------------------------- */
header .inner .page_logo {
    width: 116px;
    height: 50px;
    cursor: pointer;
}

header .mo_info, header.type3 .mo_info, header.type2 .mo_info {
    display: none;
}

header .inner .page_logo img {
    height: inherit;
}

.inp_base:disabled:hover, .inp_base:disabled {
    padding: 6px 14px;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    cursor: no-drop;
}

.page_main .item_notice  {
    padding: 60px 0;
}

.page_main .item_notice .box_wrap  {
    flex-direction: column;
}

.page_main .item_notice .box_wrap .bw {
    font-size: 14px;
    display: flex;
    box-sizing: border-box;
    padding: 10px;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    justify-content: space-between;
}

.page_main .item_notice .bw .tit {
    width: calc(100% - 90px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;    
}

.page_main .item_notice .bw .date {
    width: 90px;
    text-align: right;
}

.page_main .item_notice .it_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.page_main .item_notice .it_top h2 {
    margin-bottom: 0;
}

.page_main .item_notice .it_top .it_btn {
    cursor: pointer;
    box-sizing: border-box;
    padding: 3px 10px;
    border: 1px solid #aaa;
    border-radius: 12px;
    background: #fff;
}

main .searchForm {
    position: relative;
}

.page_main .searchForm .btn_num {
    content: '';
    min-width: 82px;
    position: absolute;
    right: 0;
    top: -40px;
}

.page_main .searchForm .btn_num .bnum {
    cursor: pointer;
    border: 2px solid rgb(255 255 255 / 80%);
    box-sizing: border-box;
    padding: 5px 16px;
    border-radius: 8px;
    background: rgb(0 91 184);
    color: #ffffff;
}



/* -----------------------------
            멤버
----------------------------- */

.findMember .form.find_id .joinCheck {
    width: 100%;
}

.findMember .find_result .fr_box {
    width: 100%;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
}

.findMember .find_result .tit {
    width: 25%;
    font-weight: 600;
    color: initial;
}

.findMember .find_result .txt {
    border: 1px solid #e5e5e5;
    width: calc(100% - 25%);
    height: inherit;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 20px;
}

.findMember .form.find_pw .input_id .inp_base:hover, .findMember .form.find_pw .input_id .inp_base:focus {
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.layer_wrap .cont_box .layer_tit svg {
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: absolute;
    top: -10px;
    right: -5px;
    cursor: pointer;    
}

.page_join .fixed_box .fix_input {
    width: 75%;
    background-color: #f5f5f5;
    line-height: initial;
    display: flex;
    align-items: center;
    cursor: no-drop;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    padding: 11px 15px;
}

.page_join .fixed_box .fix_input:hover {
    border-color: #e5e5e5;
}

.page_join .join .cus_select li {
    margin-bottom: 0;
}

.page_join .identify .iden_btn {
    background: var(--primary);
    color: var(--white);
    width: 76%;
    box-sizing: border-box;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
/*    display: none;*/
}

.page_join .identify.idf_2 {
    justify-content: flex-end;
    width: 100%;
    margin-top: -30px;
}

.page_join .identify .iden_box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.page_join .identify .iden_box .iden_form {
    width: 75%;
    box-sizing: border-box;
    padding: 20px;
    background: #f3f3f3;
}

.page_join .identify .iden_box .iden_form .if_num {
    display: flex;
    margin-bottom: 5px;
}

.page_join .identify .iden_box .iden_form .if_num input {
    width: calc(100% - 100px);
    margin-right: 5px;
}

.page_join .identify .iden_box .iden_form .if_num .txt {
    width: 100px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    cursor: pointer;
}

.page_join .identify .iden_box .iden_form .if_num.on .txt {
    cursor: default;
}

.page_join .identify .iden_box .iden_form .if_num.on input:hover, .page_join .identify .iden_box .iden_form .if_num.on input:focus {
    border: 1px solid #e5e5e5;
}

.page_join .identify .iden_box .iden_form .if_input {
    position: relative;
}

.page_join .identify .iden_box .iden_form .if_input .txt {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
}

.page_join .identify .iden_box .iden_form .if_confirm {
    text-align: center;
    margin: 10px 0 0 0;
    color: var(--red);
}

.page_no_result {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    font-size: 16px;
    line-height: 1.4;
}

.page_no_result .tit {
    font-size: 22px;
    margin: 10px 0;
    font-weight: 600;
}

.page_no_result .sub_tit {
    text-align: center;
}

.page_no_result .nor_btn {
    background: var(--primary);
    color: #fff;
    box-sizing: border-box;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
}


header.type1 .inner .page_logo .pl_b, header.type3 .inner .page_logo .pl_w, header.type2 .inner .page_logo .pl_w  {
	display: none;
}

header.type3 .inner .page_logo .pl_b, header.type1 .inner .page_logo .pl_w {
	display: block;
}



/* -----------------------------
             팝업
----------------------------- */
.layer_popup {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    transform: translateX(-50%);
    left: 50%;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0px;
    z-index: 1000;
}

.layer_popup .layer_cont {
    width: 94%;
    max-width: 470px;
    position: absolute;
    bottom: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    box-sizing: border-box;
    box-shadow: 0px 8px 10px 10px rgb(0 0 0 / 8%);
    padding-top: 30px;
    border-radius: 10px;
    height: auto;
    max-height: 90%;
}

.layer_popup .layer_cont .la_tit {
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    color: var(--black);
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}
.layer_popup .layer_cont .la_tit.col{
    flex-direction: column;
}
.layer_popup .layer_cont .la_tit .lat_mid{
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.4;
}
.layer_popup .layer_cont .la_tit .close {
    width: 32px;
    height: 32px;
    position: absolute;
    top: -10px;
    right: 10px;
    cursor: pointer;
}
.layer_popup .layer_cont .la_card{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.layer_popup .layer_cont .la_card .la_card_li{
    border: 1px solid var(--primary);
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
}
.layer_popup .layer_cont .la_card .la_card_li:hover,.layer_popup .layer_cont .la_card .la_card_li.on:hover{
    background-color: #95c9ff;
}
.layer_popup .layer_cont .la_card .la_card_li.on{
    background-color: #cde6ff;
}
.layer_popup .layer_cont .la_card .la_card_li .la_card_p{
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}
.layer_popup .layer_cont .la_card .la_card_li .la_card_info{
    color: #000;
}
.layer_popup .layer_cont .cont {
    margin: 0 auto;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px;
}

.layer_popup .layer_cont .la_cont {
    max-height: calc(90vh - 70px);
    box-sizing: border-box;
    padding: 10px 0 30px;
    overflow: auto;
}

.layer_popup .la_cont .lac_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.layer_popup .la_cont .lac_box.lac_fail_box{
    gap: 12px;
}
.layer_popup .la_cont .lac_box .lac_box_h3{
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.5;
}
.layer_popup .la_cont .lac_box .lac_txt{
    /*margin-bottom: 8px;*/
}
.layer_popup .la_cont .lac_box .lac_call{
    display: flex;
    align-items: center;
    gap: 8px;
}
.layer_popup .la_cont .lac_box .lac_call:before{
    content: url("../images/common/callcenter.png");
    display: inline-block;height: 16px;
    width: 16px;
}
.layer_popup .la_cont .lac_box .failed_box{
    background-color: #F7F7F7;
    padding: 16px 30px;
    margin-top: 8px;
}
.layer_popup .la_cont .lac_box .failed_box li{
    list-style-type: disc;
    margin-bottom: 8px;
    line-height: 1.4;
}
.layer_popup .la_cont .lac_box .failed_box .ti{
    list-style: none;text-indent: -16px;
}
/* .layer_popup .la_cont .lac_box, .layer_popup .la_cont .lac_btn .lacb {
    width: 70%;
} */

.layer_popup .la_cont .lac_box .lacb_check {
    display: flex;
    align-items: center;
    width: 70%;
    justify-content: space-between;
    margin-bottom: 23px;
}

.layer_popup .la_cont .lac_box .lacb_input {
    width: 100%;
}

.layer_popup .la_cont .lac_box .lacb_input .lb_info {
    font-size: 16px;
    margin-bottom: 20px;
}


.layer_popup .la_cont .lac_box .lacb_info {
    display: flex;
    align-items: center;
    margin: 15px 0 0;
    opacity: 0.8;
    text-align: left;
    width: 100%;
}

.layer_popup .la_cont .lac_box .i_info {
    content: "";
    background-image: url(../images/i_info.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5px;
    background-color: #eee;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px solid #ababab;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 5px;
}


.layer_popup .la_cont .lac_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.layer_popup .la_cont .lac_btn a{
    width: 100%;
}

.layer_popup .la_cont .lac_btn .lacb {
    box-sizing: border-box;
    padding: 16px 20px;
    background: var(--black);
    color: var(--white);
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 10px;
    flex: 1;    
}
.layer_popup .la_cont .lac_btn .lacb.disabled{
    background: #bbb;
}
.layer_popup .la_cont .lac_btn .lacb:last-child {
    margin-right: 0;
}

.layer_popup.popup_st_1 .lac_btn .co_primary {
    background: var(--primary);
}

.layer_popup.popup_st_1 .lac_box .lacb_input .inb_1 {
    margin-bottom: 10px;
}

.popup_cancle .la_cont .lacb_price {
    width: 100%;
}

.popup_cancle .la_cont .lacb_price .box {
    padding: 24px 20px;
    background: var(--white);
    margin-bottom: 10px;
}

.popup_cancle .la_cont .lacb_price .box h4 {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.popup_cancle .la_cont .lacb_price .box h4 div {
    padding-left: 6px;
    color: rgb(0 0 0 / 60%);
    font-weight: 400;
}

.popup_cancle .la_cont .lacb_price .box h4 div span {
    color: var(--primary);
    font-weight: 500;
    margin-left: 4px;
}

.popup_cancle .la_cont .lacb_price .payment_fee .area01 {
    padding-bottom: 14px;
}

.popup_cancle .la_cont .lacb_price .payment_fee .area01 ul {
    display: flex;
    justify-content: space-between;
    height: 24px;
    line-height: 24px;
    color: rgba(0 0 0 / 60%);
}

.popup_cancle .la_cont .lacb_price .payment_fee .area01 ul:first-child {
    font-weight: 600;
    color: var(--black);
}

.popup_cancle .la_cont .lacb_price .payment_fee .area01 ul li:first-child {
    color: var(--black)
}

.popup_cancle .la_cont .lacb_price .payment_fee .area01 ul li:last-child {
    text-align: right;
    color: var(--black);
}

.popup_cancle .la_cont .lacb_price .payment_fee .area02 {
    border-top: 1px dashed rgb(0 0 0 / 10%);
}

.popup_cancle .la_cont .lacb_price .payment_fee .area02 ul {
    display: flex;
    justify-content: end;
    flex-direction: column;
    padding: 10px 0
}

.popup_cancle .la_cont .lacb_price .payment_fee .area02 ul li {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: end;
    height: 26px;
    line-height: 26px;
}

.popup_cancle .la_cont .lacb_price .payment_fee ul li .sign {
    margin: 0 6px;
    color: rgb(0 0 0 / 46%);
}

.popup_cancle .la_cont .lacb_price .payment_fee ul li .count {
    color: #3eaec5;
}

.popup_cancle .la_cont .lacb_price .payment_fee ul li .countPrice {
    color: #3eaec5;
}

.popup_cancle .la_cont .lacb_price .payment_fee .total_price {
    border-top: 1px solid rgb(0 0 0 / 60%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    line-height: 60px;
}

.popup_cancle .la_cont .lacb_price .payment_fee .total_wrap .total_2 .total_price:first-child {
    margin-top: 20px;
    border-style: dashed;
    border-color: rgba(0,0,0,0.3);
}

.popup_cancle .la_cont .lacb_price .payment_fee .total_price p {
    font-weight: 500;
    color: var(--black);
}

.popup_cancle .la_cont .lacb_price .payment_fee .total_price p:last-child {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: -0.4px;
}

.popup_cancle .la_cont .lacb_price .airNoti {
    background-color: rgb(0 0 0 / 2.6%);
    padding: 10px;
    margin-bottom: 10px;
}

.popup_cancle .la_cont .lacb_price .airNoti p {
    width: 100%;
    font-size: 13px;
    color: red;
    word-break: keep-all;
    position: relative;
    padding: 0 0 0 10px;
    line-height: 20px;
}

.popup_cancle .la_cont .lacb_price .airNoti p:after {
    content: '·';
    float: left;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    top: 0px;
    left: 0px;
}

.popup_cancle .la_cont .lacb_price .payment_method {
    height: 30px;
    color: rgba(0 0 0 / 60%);
}

.popup_cancle .la_cont .lacb_price .payment_method::after {
    display: block;
    content: '';
    clear: both;
}

.popup_cancle .la_cont .lacb_price .btn_area .btn_type_basic {
    width: 30%;
    margin: 0 auto;
}

.popup_cancle .la_cont .lacb_price .total_wrap .total_price {
    height: auto;
    border-top: 0;
    line-height: 1.8;    
}

.popup_cancle .la_cont .lacb_price .total_wrap .total_price:first-child {
    border-top: 1px solid rgb(0 0 0 / 60%);
    padding-top: 20px; 
}

.popup_cancle .la_cont .lacb_price .total_wrap .total_price.tp_1 p:last-child {
    color: var(--primary);
}

.popup_cancle .la_cont .lacb_price .total_wrap .total_price.tp_2 p:last-child {
    color: var(--red);
}

.popup_cancle .la_cont .lacb_price .total_wrap .total_price.tp_3 p:last-child {
    color: var(--black);
}




/* 결제정보 수정 */

.payment .area01 .cardInfo .form .card_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.payment .area01 .cardInfo .form div {
    margin-bottom: 0;
}

.payment .area01 .cardInfo .form .same_card {
    margin-bottom: 10px;
}

.payment .area01 .cardInfo .form .card_line, .payment .area01 .cardInfo .form .payment_way {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.payment .cardInfo .card_line .select {
    width: inherit;
}

.payment .cardInfo .card_line .ln_2 {
    display: flex;
}

.payment .cardInfo .card_line .ln_2 .select {
    flex: 1;
    margin-right: 10px;
}

.payment .cardInfo .card_line .ln_2 .select:last-child {
    margin-right: 0px;
}

.payment .area01 .cardInfo .form div.card_line ul li:last-child,
.payment .area01 .cardInfo .form .card_wrap div.card_line ul li {
    width: inherit;
}

.payment .area01 .cardInfo .form .card_wrap .card_line li,
.payment .area01 .cardInfo .form.card_wrap div:nth-child(3) ul li {
    flex: 1;
}


/* 메인 수정 */
main .searchForm .area02 .date .after {
    opacity: 1;
}

main .searchForm .area02 .date .before {
    opacity: 0.3;
}

.mem_wrap .alert-notice {
    margin-top: 30px;
}

.radio-area {
    display: flex;
}

.mem_wrap .seat-block {
    margin-right: 10px;
}

.mem_wrap .seat-block:last-child {
    margin-right: 0;
}

.mem_wrap .btn_aply {
    background-color: var(--black);
    color: var(--white);
    height: 50px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px;
}

.book_now .infoArea .addOption .more.open svg {
    transform: rotate(180deg);
}

.payment .area01 .cardInfo .form .card_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.payment .area01 .cardInfo .form .card_box:last-child {
    margin-bottom: 0;
}

.payment .area01 .wrap.cardInfo .price_each {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    font-size: 16px;
}

.payment .wrap .price_each span {
    color: var(--primary);
    font-weight: 700;
}

.payment .area01 .cardInfo .form .btn_same_card {
    color: #303030;
    float: right;
    border: 1px #303030 solid;
    margin: 0 6px 2px 0;
    border-radius: 4px;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    cursor: pointer;
    width: fit-content;
    margin-bottom: 16px;
    margin-bottom: 10px;
}

.payment .area01 .cardInfo .form .btn_same_card.btn_primary {
    background: var(--primary);
    color: var(--white);
    border: transparent;
}


/* -----------------------------------
            공지사항
------------------------------------- */
.page_notice {
    margin: 0 auto;
    padding-bottom: 120px;
}

.page_notice .visual {
    background: var(--primary);
    width: 100%;
    max-width: 1920px;
    height: 288px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;    
}

.page_notice .visual .tit {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    padding-top: 34px;
}

.page_notice .visual .tit p {
    width: 80%;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}

.page_notice .sel_base {
    width: 100%;
    height: 50px;
    outline: none;
    font-family: 'pretendard', sans-serif;
    font-size: 15px;
    color: var(--black);
    line-height: 20px;
    letter-spacing: -0.4px;
    padding: 15px 50px 15px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    outline: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(../../images/temp102/common/sel_arrow_down.svg) calc(100% - 14px) 50%/20px no-repeat;
    background-color: var(--white);
    cursor: pointer;
}

.page_notice .searchArea {
    width: 36%;
    margin: 0 auto;
    margin-top: 40px;
    min-width: 500px;
}

.page_notice .notice_list {
    width: 100%;
    max-width: 1220px;
    margin: 50px auto 0;
}

.page_notice .notice_list ul li {
    font-size: 16px;
}

.page_notice .notice_list ul:first-child {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-between;
}

.page_notice .notice_list ul:first-child li {
    color: var(--black);
    height: 50px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
}

.page_notice .notice_list ul:first-child li:first-child {
    width: 15%;
    text-align: center;
}

.page_notice .notice_list ul:first-child li:last-child {
    width: 85%;
}

.page_notice .notice_list ul:last-child {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.page_notice .notice_list ul:last-child li {
    display: flex;
    justify-content: space-between;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.page_notice .notice_list ul:last-child li span {
    width: 15%;
    color: var(--gray);
    text-align: center;
    color: var(--black);
}

.page_notice .notice_list ul:last-child li p {
    width: 80%;
    color: var(--black);
    display: flex;
    align-items: center;
    padding-right: 5%;
}

.page_notice .notice_list ul:last-child li p a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.page_notice .notice_list ul:last-child li p a:hover {
    text-decoration: underline;
}

.page_notice .notice_list ul:last-child li .file {
    width: 22px;
    background: url('../images/common/file.svg') 50% 50% / 22px no-repeat;
    padding: 15px;
    opacity: .7;
}

.page_notice .searchArea .search_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.page_notice .searchArea .sebox_select {
    min-width: 150px;
}

.page_notice .searchArea .sebox_input {
    width: calc(100% - 150px - 50px);
    margin-left: 5px;
}

.page_notice .searchArea .sebox_btn {
    margin-left: 5px;
    position: relative;
    width: 50px;
    height: 50px;
    font-size: 0;
    border-radius: 2px;
    background: var(--black);
    cursor: pointer;
    min-width: 50px;
}

.page_notice .searchArea .sebox_btn svg {
    position: absolute;
    fill: var(--white);
    width: 30px;
    height: 30px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.page_notice.noticeView .cont {
    width: 100%;
    max-width: 1220px;
    padding-top: 40px;
    box-sizing: border-box;
    margin: 0 auto;
}

.page_notice.noticeView .cont .area01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--black);
    padding-bottom: 16px;
}

.page_notice.noticeView .cont .area01 .tit {
    text-align: left;
    width: 80%;
    color: var(--black);
    font-size: 26px;
    font-weight: 600;
    line-height: 24px;
    max-height: 52px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: -0.4px;
    margin-bottom: 0;
}

.page_notice.noticeView .cont .area01 .date {
    color: var(--gray);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: -0.2px;
}

.page_notice.noticeView .cont .area02 {
    padding: 40px 0;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.page_notice.noticeView .cont .area02 p {
    line-height: 22px;
    color: var(--gray);
    font-size: 16px;
    text-align: left;
    white-space: pre-line;
}

.page_notice.noticeView .cont .area02 img {
    display: block;
    margin: 0 auto 30px;
}

.page_notice.noticeView .btn_single {
    width: 30%;
}

.page_notice.noticeView .btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.page_notice.noticeView .btn_wrap .btw {
    cursor: pointer;
    width: 100%;
    background: var(--black);
    border-radius: 3px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 50px;
    max-width: 300px;
}

/* 국내선 예약규정 */
.page_air .book_now .infoArea .reservationInfo .terms_area {
    margin-bottom: 0;
}

.page_air .book_now .infoArea .reservationInfo .terms_area h2 {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 12px;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .terms_check {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    padding: 14px 0;
    margin-bottom: 0;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .terms_check:last-child {
    border-bottom: 0
}



.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    margin-bottom: 10px;
    padding: 0 0 10px;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .ti {
    display: none;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_tab {
    width: 20%;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_tab li {
    background: rgb(28 28 28 / 6%);
    border: 2px solid rgb(28 28 28 / 0);
    border-radius: 2px;
    padding: 30px 20px;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--gray);
    cursor: pointer;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_tab li:last-child {
    margin-bottom: 0;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_tab li:hover {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--primary);
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_tab li.selected {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--primary);
    font-weight: 500;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_content {
    width: 76%;
    height: 432px;
    overflow-y: auto;
    padding-right: 10px;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_content h2 {
    font-size: 16px;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_content ul {
    width: 100%;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_content .agree_panel dl {
    display: flex;
    flex-direction: column;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_content .agree_panel dl dt {
    width: 100%;
    color: var(--black);
    line-height: 1.4;
    padding: 8px 0 0;
    font-size: 15px;
}

.page_air .book_now .infoArea .reservationInfo .terms_area .agree_pc .wrap .agree_content .agree_panel dl dd {
    width: 100%;
    color: var(--gray);
    line-height: 1.4;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 300;
}

.air_kor .book_now .terms_area h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: var(--black);
    text-align: left;
    padding-bottom: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--black);
}

.air_kor .book_now .terms_area .terms_check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    padding: 14px 0;
    margin-bottom: 0;
}

.air_kor .book_now .terms_area .terms_check:last-child {
    border-bottom: 0;
}

.air_kor .book_now .terms_area .terms_check .label {
    font-weight: 500;
    font-size: 16px;
}    

.air_kor .book_now .terms_area .terms_check .more {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}        

.air_kor .book_now .terms_area .terms_check .more svg {
    margin-left: 10px;
}

.air_kor .book_now .terms_area .terms_check.all_terms .label {
    font-weight: 600;
}

.air_kor .book_now .terms_area .terms_check.all_terms .label span {
    font-weight: 500;
    margin-left: 5px;
}    

.air_kor .book_now .terms_area .link {
    display: inline-block;
    margin-top: 10px;
    border: 1px solid var(--black);
    border-radius: 7px;
    padding: 4px 10px;
    font-weight: 400;
    font-size: 13px;
}

.air_kor .book_now .infoArea .reservationInfo .info3 {
    margin-bottom: 0;
}

.air_kor .book_now .infoArea .reservationInfo {
    margin-bottom: 80px;
}

/* 내 정보 수정 */
.p_modify .phone .cont {
    display: flex;
    width: 80%;
}

.p_modify .phone .cont .input {
    width: calc(100% - 90px);
}

.p_modify .phone .cont .p_btn {
    background: var(--black);
    color: var(--white);
    box-sizing: border-box;
    padding: 0 10px;
    border-radius: 5px;
    margin-left: 6px;
    cursor: pointer;
    min-width: 84px;
    display: flex;
    align-items: center;
    justify-self: center;
}

.p_modify ul li .unregister {
    box-sizing: border-box;
    padding: 8px 12px;
}

.reservation_confirm .payment_fee .area02 .total_wrap .total_price {
    height: auto;
    border-top: 0;
    line-height: 1.8;    
}

.reservation_confirm .payment_fee .area02 .total_wrap .total_price:first-child {
    border-top: 1px solid rgb(0 0 0 / 60%);
    padding-top: 20px; 
}

.reservation_confirm .payment_fee .area02 .total_wrap .total_price.tp_1 p:last-child {
    color: var(--primary);
}

.reservation_confirm .payment_fee .area02 .total_wrap .total_price.tp_2 p:last-child {
    color: var(--red);
}

.reservation_confirm .payment_fee .area02 .total_wrap .total_price.tp_3 p:last-child {
    color: var(--black);
}



/* ----------------------
        로딩팝업
----------------------*/

.loading-popup {
	position: fixed;
	top: 0px;
	left: 0px;
	background: rgba(0,0,0,0.2);
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
		@keyframes rotate-loading {
			0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
			100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
		}

		@-moz-keyframes rotate-loading {
			0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
			100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
		}

		@-webkit-keyframes rotate-loading {
			0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
			100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
		}

		@-o-keyframes rotate-loading {
			0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
			100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
		}

		@keyframes rotate-loading {
			0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
			100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
		}

		@-moz-keyframes rotate-loading {
			0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
			100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
		}

		@-webkit-keyframes rotate-loading {
			0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
			100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
		}

		@-o-keyframes rotate-loading {
			0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
			100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
		}

		@keyframes loading-text-opacity {
			0%  {opacity: 0}
			20% {opacity: 0}
			50% {opacity: 1}
			100%{opacity: 0}
		}

		@-moz-keyframes loading-text-opacity {
			0%  {opacity: 0}
			20% {opacity: 0}
			50% {opacity: 1}
			100%{opacity: 0}
		}

		@-webkit-keyframes loading-text-opacity {
			0%  {opacity: 0}
			20% {opacity: 0}
			50% {opacity: 1}
			100%{opacity: 0}
		}

		@-o-keyframes loading-text-opacity {
			0%  {opacity: 0}
			20% {opacity: 0}
			50% {opacity: 1}
			100%{opacity: 0}
		}
.loading-container,
.loadingImg {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loadingImg {
	border: 2px solid transparent;
	border-color: transparent var(--white) transparent var(--white);
	-moz-animation: rotate-loading 1.5s linear 0s infinite normal;
	-moz-transform-origin: 50% 50%;
	-o-animation: rotate-loading 1.5s linear 0s infinite normal;
	-o-transform-origin: 50% 50%;
	-webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
	-webkit-transform-origin: 50% 50%;
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loadingImg {
	border-color: transparent #E45635 transparent #E45635;
}
.loading-container:hover .loadingImg,
.loading-container .loadingImg {
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#loading-text {
	-moz-animation: loading-text-opacity 2s linear 0s infinite normal;
	-o-animation: loading-text-opacity 2s linear 0s infinite normal;
	-webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
	animation: loading-text-opacity 2s linear 0s infinite normal;
	color: var(--white)fff;
	font-family: "Helvetica Neue, "Helvetica", ""arial";
	font-size: 10px;
	font-weight: bold;
	margin-top: 45px;
	opacity: 0;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 0;
	width: 100px;
}

/* filter */
.btn_filter {display:none;}
.filter_wrap .cont_box .filter_tab {width:94%; max-width: 94%; margin:30px auto 10px; display: flex; justify-content: start;}
.filter_wrap .cont_box .filter_tab:after {display:block; content:''; clear:both;}
.filter_wrap .cont_box .filter_tab div {border:1px solid rgb(0 0 0 / 30%); border-radius: 25px; padding: 8px 14px; text-align: center; color:var(--gray); margin:0 6px 6px 0; float: left; cursor: pointer;}
.filter_wrap .cont_box .filter_tab div.active {color: var(--primary);}
.filter_wrap .cont_box .filter_tab .reset {color: rgb(0 0 0 / 60%);font-size: 14px; border:1px solid rgb(0 0 0 / 30%)}
.filter_wrap .cont_box .filter_tab .reset:hover {background:rgba(0, 0, 0, .8); border:1px solid rgba(0, 0, 0, .8); color:var(--white);}
.filter_wrap .cont_box .item_list .item {width: 100%;height: 50px;line-height:50px;border-bottom: 1px solid #e5e5e5; position: relative;/*margin-bottom:4px;*/ display: flex; align-items: center; justify-content: space-between;}
.filter_wrap .cont_box .item_list .item .tit {width:70%; font-size: 15px; color:rgb(0 0 0 / 80%);}
.filter_wrap .cont_box .item_list .item .inpBox {border: none; height: 48px; line-height: 48px; text-align: right; margin-right: 40px;width: 185px;font-size:16px;}
.filter_wrap .cont_box .item_list .item .terms_check {font-size: 14px;color: var(--black);font-weight: 600;}
.filter_wrap .cont_box .item_list .item .terms_check input[type="checkbox"] {display: none;}
.filter_wrap .cont_box .item_list .item .terms_check input[type="checkbox"] + label span {width: 24px;height: 24px;margin: -1px 5px 0 0;vertical-align: middle;border:1px solid rgb(0 0 0 / 30%);background:none;border-radius:20px;float: left;}
.filter_wrap .cont_box .item_list .item .terms_check input[type="checkbox"]:checked + label span {background-color:var(--primary);border:1px solid var(--primary);}
.filter_wrap .item_list .inp_check {
    width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
}

.air_kor .box_info {
    padding: 20px;
    box-sizing: border-box;
}

.air_kor .box_info .tit {
    font-weight: 700;
	margin-bottom: 10px;
}

.air_kor .box_info .txt div {
	margin-bottom: 5px;
}

.air_kor .payment .wrap .ti span {
	color: var(--primary);
	font-weight: 700;
}

.air_kor .payment .area01 .cardInfo .form div:nth-child(3) ul li:first-child,
.air_kor .payment .area01 .cardInfo .form div:nth-child(3) ul li:last-child,
.air_kor .payment .area01 .cardInfo .form div:last-child ul li:first-child,
.air_kor .payment .area01 .cardInfo .form div:last-child ul li:last-child, 
.air_kor .payment .area01 .cardInfo .form div:nth-child(3) ul li:nth-child(2) {
	width: auto;
	flex: 1;
}

.air_kor .same_card {
    color: #303030;
    float: right;
    border: 1px #303030 solid;
    margin: 0 6px 2px 0;
    border-radius: 4px;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    cursor: pointer;
	width: fit-content;
}

.air_kor .payment .area_wrap {
    width: 73%;
    max-width: 920px;
}

.air_kor .payment .area01 {
    width: 100%;
    max-width: initial;
}

.air_kor .payment .area02 {
    position: sticky;
    top: 44px;
    width: 26%;
    max-width: 330px;
}

.air_kor .payment .area02 .box {
    padding-bottom: 0;
}

.air_kor .payment .area02 .wrap {
    width: 90%;
    margin: 24px auto;
}

.air_kor .payment .area02 .airInfo .detail dl {
    margin-bottom: 16px;
}

.air_kor .payment .area02 .airInfo .detail dl dt {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.air_kor .payment .area02 .airInfo .detail dl dd {
    display: flex;
    justify-content: start;
}

.air_kor .payment .area02 .airInfo .detail dl dd img {
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

.air_kor .payment .area02 .airInfo .detail dl dd span {
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
    line-height: 22px;
}

.air_kor .payment .area02 .airInfo .detail dl dd span .via {
    color: var(--gray)
}

.air_kor .payment .area02 .airInfo .detail:last-child {
    border-top: 1px solid rgb(0 0 0 / 14%);
    padding-top: 20px;
}

.air_kor .payment .area02 .airInfo .detail ul {
    margin-bottom: 20px;
}

.air_kor .payment .area02 .airInfo .detail ul li:first-child {
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.air_kor .payment .area02 .airInfo .detail ul li:last-child span {
    position: relative;
    margin-left: 10px;
    padding-left: 10px;
    color: #898989;
    font-weight: 200;
    letter-spacing: -0.4px;
}

.air_kor .payment .area02 .airInfo .detail ul li:last-child span::before {
    display: block;
    content: '';
    width: 1px;
    height: 10px;
    background: rgb(0 0 0 / 14%);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.air_kor .payment .area02 .airInfo .detail ul li:last-child span:first-child {
    margin-left: 0;
    padding-left: 0;
}

.air_kor .payment .area02 .airInfo .detail ul li:last-child span:first-child::before {
    display: none;
}

.air_kor .payment .area02 .airInfo .detail .more {
    border: 1px solid rgb(28 28 28 / 30%);
    background: transparent;
    border-radius: 7px;
    padding: 6px 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.air_kor .payment .area02 .airInfo .detail .more:hover {
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white)
}

.air_kor .payment .area02 .boundary {
    border-bottom: 8px solid #f1f1f1;
}

.air_kor .payment .area02 .priceArea .detail:last-child {
    margin-top: 24px;
}

.air_kor .payment .area02 .priceArea .info_wrap {
    position: relative;
}

.air_kor .payment .area02 .priceArea .info_wrap .i_info {
    content: "";
    background-image: url(../images/i_info.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5px;
    background-color: #eee;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px solid #ababab;
    border-radius: 50%;
    cursor: pointer;
}

.air_kor .payment .area02 .priceArea .info_wrap .info_cont {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    width: 150px;
    top: 150%;
    left: 50%;
    margin-left: -130px;
    box-sizing: border-box;
    padding: 10px; 
}

.air_kor .payment .area02 .priceArea .info_wrap.on .info_cont {
    visibility: visible;
}

.air_kor .payment .area02 .priceArea .info_wrap .info_cont:after {
    content: " ";
    position: absolute;
    border-style: solid;
    border-width: 5px;
    bottom: 100%;
    left: 50%;
    margin-left: 52px;
    border-color: transparent transparent black transparent;
}


.air_kor .payment .area02 .priceArea dl {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.air_kor .payment .area02 .priceArea dl dt {
    color: var(--gray)
}

.air_kor .payment .area02 .priceArea dl dd {
    color: var(--black);
}

.air_kor .payment .area02 .totaleArea {
    /* border-top: 1px dashed rgb(0 0 0 / 12%); */
    /* padding-top: 20px; */
    text-align: right;
	border-top: 0;
    padding: 0;	
}

.air_kor .payment .area02 .totaleArea div {
    font-size: 13px;
    color: #8d8d8d;
    margin-bottom: 6px;
    letter-spacing: -0.1px;
    font-weight: 300;
}

.air_kor .payment .area02 .totaleArea .total {
    border-top: 1px solid var(--black);
    padding-top: 22px;
    margin-top: 20px;
}

.air_kor .payment .area02 .totaleArea .total dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.air_kor .payment .area02 .totaleArea .total dl dt {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
}

.air_kor .payment .area02 .totaleArea .total dl dd {
    font-size: 22px;
    font-weight: 500;
    color: var(--red);
    letter-spacing: -0.7px;
}

.air_kor .payment .area02 .totaleArea .total dl dd span {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

.air_kor .payment .area01 .cardInfo .form .cardSelect .sel_base {
    width: 100%;
    margin-right: 0;
}



.finish {
    margin: 110px auto 0;
    max-width: 1220px;
    padding-bottom: 120px;
}

.finish .area01 {
    width: 60%;
    margin: 0 auto 80px;
}

.finish .area01 ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.finish .area01 ul li {
    font-size: 40px;
    color: var(--black);
    font-weight: 600;
    margin-left: 16px;
}

.finish .area01 p {
    text-align: center;
    margin-top: 46px;
    font-size: 18px;
}

.finish .area01 p span {
    color: var(--black);
}

.finish .area02 {
    margin: 0 auto 50px ;
    display: flex;
    justify-content: space-between;
    max-width: 1220px;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid rgb(0 0 0 / 30%);
    padding: 10px 30px;
}

.finish .area02 div:first-child {
    width: 26%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 6%;
}

.finish .area02 div:first-child span {
    width: 33.3%;
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    line-height: 22px;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    letter-spacing: -0.4px;
}

.finish .area02 div:first-child span:first-child {
    text-align: right;
}

.finish .area02 div:first-child span:nth-child(2) {
    max-width: 56px;
    height: 56px;
    margin: 0 26px;
}

.finish .area02 div:first-child span:nth-child(2) svg {
    width: 100%;
    height: 100%;
}

.finish .area02 div:last-child {
    width: 68%;
    display: flex;
    flex-direction: column;
}

.finish .area02 div:last-child ul {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-top: 1px dotted rgb(0 0 0 / 14%);
}

.finish .area02 div:last-child ul:first-child {
    border-top: 0;
}

.finish .area02 div:last-child ul li {
    display: flex;
    align-items: center;
    justify-content: start;
}

.finish .area02 div:last-child ul li span {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    margin-right: 16px;
}

.finish .area02 div:last-child ul li span:last-child {
    font-size: 16px;
    font-weight: 400;
}

.finish .area02 div:last-child ul li span:last-child img {
    width: 16px;
    height: 16px;
}

.finish .area02 div:last-child ul li:last-child {
    margin-top: 4px;
}

.finish .area02 div:last-child ul li:last-child span {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.4px;
}

.finish .area02 div:last-child ul li:last-child span > span {
    color: var(--gray)
}

.finish .area02 div:last-child ul li:last-child span:first-child {
    position: relative;
    margin-right: 8px;
    padding-right: 12px;
}

.finish .area02 div:last-child ul li:last-child span:first-child::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: '/';
}

.finish .area02 div:last-child ul li:last-child span > span::after {
    display: none;
}

.finish .btn_area {
    width: 44%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.finish .btn_area button {
    width: 48%;
    margin: 0 auto;
}



/* 
media="screen and (min-width:1280px)
media="screen and (min-width: 650px) and (max-width: 1279px)
media="screen and (max-width:649px)
*/

@media screen and (max-width: 1279px) {
    h2 {
        margin-bottom: 30px;
    }

    header .inner .page_logo {
        height: 40px;
    }

    
    header .mo_info, header.type2 .mo_info {
        font-weight: 300;
        font-size: 12px;
        position: absolute;
        top: 57px;
        right: 10px;
        display: block;
        margin-right: 2%;
        z-index: 1;
        color: var(--white);
        background-color: var(--black);
        padding: 0.2rem 0.3rem;        
    }

    
    header.type2 .mo_info {
        /* color: initial; */
    }    

    .air_kor .payment .area01 .cardInfo .form div ul {
        flex-direction: column;
    }

    .air_kor .payment .area01 .cardInfo .form div:nth-child(3) ul li:first-child, .air_kor .payment .area01 .cardInfo .form div:nth-child(3) ul li:last-child, .air_kor .payment .area01 .cardInfo .form div:last-child ul li:first-child, .air_kor .payment .area01 .cardInfo .form div:last-child ul li:last-child, .air_kor .payment .area01 .cardInfo .form div:nth-child(3) ul li:nth-child(2) {
        width: inherit;
    }

    .payment .area01 .cardInfo .form .card_line.line_2 ul {
        flex-wrap: wrap;
        flex-direction: row;
    }

    .payment .area01 .cardInfo .form .card_wrap .card_line.line_2 ul li {
        width: calc(50% - 3px);
        flex: none;
        margin-right: 6px;
    }    

    .payment .area01 .cardInfo .form .card_wrap .card_line {
        margin-bottom: 0;
    }    

    .air_kor .payment .area01 .cardInfo .form .card_wrap .card_line.line_2 ul li,
    .payment .area01 .cardInfo .form .card_wrap .card_line.line_2 ul li {
        width: calc(50% - 3px);
        flex: none;
        margin-right: 6px;
    }    

    .payment .area01 .cardInfo .form .card_wrap .card_line.line_2 ul li:nth-child(2n) {
        margin-right: 0;
    }

    .payment .area01 .cardInfo .form div ul li {
        margin-bottom: 6px;
        margin-right: 6px;
    }

    .payment .cardInfo .card_line .ln_2 .select {
        margin-right: 6px;
    }

    .payment .area01 .cardInfo .form div ul {
        flex-direction: column;
    }

	.air_kor .payment .area_wrap {
		width: 100%;
	}

	.air_kor .payment .area01 .cardInfo .form div ul {
		flex-direction: row;
	}

	.air_kor .payment .area01 .cardInfo .form .cardSelect .sel_base {
		margin-bottom: 0;
	}

	.air_kor .payment .area01 .cardInfo .form .same_card {
		margin-bottom: 10px;
	}

	.air_kor .payment .area02 {
		width: 100%;
		max-width: initial;
	}

	.air_kor .payment .area02 .airInfo .detail dl dt {
		width: 100%;
	}

    .air_kor .payment .area_wrap {
        max-width: initial;
    }    


    /* -----------------------------------
                공지사항
    ------------------------------------- */
    .page_notice {
        padding-bottom: 50px;
    }

    .page_notice .visual {
        height: 200px;
    }

    .page_notice .visual .tit {
        font-size: 28px;
    }
    
    .page_notice .searchArea {
        min-width: initial;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        margin: 0;
    }

    .page_notice .searchArea .sebox_select {
        min-width: 20%;
    }

    .page_notice .searchArea .sebox_input {
        width: calc(100% - 20% - 50px);
    }

    .page_notice .notice_list {
        width: 92%;
        margin: 0 auto;
    }

    .page_notice .notice_list ul:first-child li:first-child,
    .page_notice .notice_list ul:last-child li span {
        display: none;
    }

    .page_notice .notice_list ul:last-child li p span {
        display: block;
    }

    .page_notice .notice_list ul:first-child li {
        height: 40px;
        line-height: 40px;
        width: 100%;
    }    

    .page_notice .notice_list ul:last-child li {
        height: 50px;
        line-height: 50px;
    }

    .page_notice .notice_list ul:last-child li p {
        width: 100%;
    }

    .page_notice.noticeView .cont {
        width: 92%;
    }

    .page_notice.noticeView .cont .area01 {
        flex-direction: column;
        align-items: flex-start;
    }

    .page_notice.noticeView .cont .area01 .tit {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .page_notice.noticeView .cont .area02 {
        padding: 20px 0;
    }

    .page_notice.noticeView .cont .area02 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0 auto;
    }

    .page_notice.noticeView .btn_wrap {
        margin-top: 20px;
    }

    .page_notice.noticeView .btn_wrap .btw {
        max-width: 100%;
    }

    /* -----------------------------------
                 팝업
    ------------------------------------- */

    .layer_popup .la_cont .lac_box, .layer_popup .la_cont .lac_btn .lacb {
        width: 100%;
    }


    /* 멤버 */
    .page_join .identify .iden_box .iden_form {
        padding: 10px;
    }    

    /* 내정보 */
    .p_modify .phone .cont {
        width: 100%;
    }

    /* filter */
    .btn_filter {display:flex; align-items:center; justify-content:center; height: 48px; padding:0 26px; border: rgb(35 31 32 / 10%) 1px solid; background: var(--black); border-radius: 30px; cursor: pointer; position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); box-shadow:rgb(0 0 0 / 20.6%) 1px 5.8px 6.8px 2px; z-index: 5;}
    .btn_filter > span { line-height:1.43; font-size:14px; color: var(--white); margin-left: 7px;}
    .btn_filter > svg {fill: var(--white)}
    .filter_wrap .cont_box .filter_tab {width:92%; margin:0 auto 10px; display: flex; justify-content: start; flex-wrap: wrap;}
    .filter_wrap .cont_box .filter_tab:after {display:block; content:''; clear:both;}
    .filter_wrap .cont_box .filter_tab div {border:1px solid rgb(0 0 0 / 30%); border-radius: 25px; padding: 8px 14px; text-align: center; color:rgb(0 0 0 / 60%); margin:0 6px 6px 0; float: left; cursor: pointer;}
    .filter_wrap .cont_box .filter_tab div.active {color: var(--primary);}
    .filter_wrap .cont_box .filter_tab .reset {color: rgb(0 0 0 / 60%);font-size: 14px; border:1px solid rgb(0 0 0 / 30%)}
    .filter_wrap .cont_box .filter_tab .reset:hover {background:rgba(0, 0, 0, .8); border:1px solid rgba(0, 0, 0, .8); color:var(--white);}
    .filter_wrap .cont_box .item_list .item {width: 100%;height: 50px;line-height:50px;border-bottom: 1px solid #e5e5e5; position: relative;/*margin-bottom:4px;*/ display: flex; align-items: center; justify-content: space-between;}
    .filter_wrap .cont_box .item_list .item .tit {width:70%; font-size: 15px; color:rgb(0 0 0 / 80%);}
    .filter_wrap .cont_box .item_list .item .inpBox {border: none; height: 48px; line-height: 48px; text-align: right; margin-right: 40px;width: 185px;font-size:16px; display: none;}
    .filter_wrap .cont_box .item_list .item .terms_check {font-size: 14px;color: var(--black);font-weight: 600;}
    .filter_wrap .cont_box .item_list .item .terms_check input[type="checkbox"] {display: none;}
    .filter_wrap .cont_box .item_list .item .terms_check input[type="checkbox"] + label span {width: 24px;height: 24px;margin: -1px 5px 0 0;vertical-align: middle;border:1px solid rgb(0 0 0 / 30%);background:none;border-radius:20px;float: left;}
    .filter_wrap .cont_box .item_list .item .terms_check input[type="checkbox"]:checked + label span {background-color:var(--primary);border:1px solid var(--primary);}
    .filter_wrap.layer_wrap .cont_box .layer_inner_2 {
        overflow-y: auto;
        height: calc(100% - 51px - 50px - 83px);
    }

    .filter_wrap .cont_box #SearchAir > div {
        /* margin-bottom: 10px;
        padding-bottom: 10px; */
        border-bottom: 1px solid #e5e5e5;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .filter_wrap .cont_box #SearchAir > div:last-child {
        margin-bottom: 0;
        /* border-bottom: none; */
    }

    .filter_wrap.layer_wrap .cont_box .layer_tit svg {
        position: static;
    }


}

@media screen and (max-width:850px){

}

@media screen and (max-width: 649px) {
    .page_main .main_banner .box_wrap {
        flex-direction: column;
    }

    .page_main .main_banner .bw {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .page_no_result {
        min-height: 300px;
    }    

    /* 결제수단 수정 */
    .payment .area01 .cardInfo .form .cardSelect p.bankSelecting {
        margin-bottom: 10px;
    }

    .layer_popup .layer_cont .cont {
        padding: 0 20px;
    }



}


.btn_button {
    width: fit-content;
    border-radius: 4px;
    display: inline-block;
    padding: 6px;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    cursor: pointer;
}