@charset "utf-8";

/* color */

:root {
    --main-text: #282A2D;
    --main-color: #276EF1;
    --blue-bg: #EDF5FF;
    --sub-text: #909090;
    --gray-bg: #F7F8FB;
    --navy-color: #2E4C84;
    --sub-blue: #4E82E2;
    --hover-color: #194597;
    --gra01-blue: linear-gradient(180deg, #FFFFFF 0%, #D2E2FF 100%);
}

/* 모달 */

.modal{
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    z-index: 999;
}

.modal .modal_wrap{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.show{
    display: block;
}

.modal_evt{
    display: block;
    transition: all 0.2s;
}

.modal_evt .modal_wrap{
    opacity: 1;
    transition: all 0.2s;
}

.modal_evt .modal_wrap .content{
    opacity: 1;
    transition: all 0.2s;
}

/* payback_lookup */

.container.lookup {
    width: 100%;
}

/* section01 */

.lookup .sec01 {
    background-color: var(--blue-bg);
}

.lookup .sec01_con {
    max-width: 120rem;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 0;
}

.lookup .sec01 h1 {
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
}

.lookup .sec01 .search_bar {
    display: flex;
    align-items: center;
    max-width: 80rem;
    width: 100%;
    height: 6rem;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid var(--main-color);
    margin: 0 auto 2rem;
    padding: 0 2rem 0 2.8rem;
}

/* select */

.mb4 {
    margin-bottom: 0.4rem;
}
.mb6 {
    margin-bottom: 0.6rem;
}

.lookup .select_wrap {
    position: relative;
    max-width: 13.9rem;
    width: 100%;
    height: 2.4rem;
    background: url(../img/ico-btm-arrow.svg) calc(100%) center no-repeat;
    background-size: 2.4rem;
    cursor: pointer;
}

.lookup .select_wrap .label {
    display: flex;
    align-items: center;
    width: inherit;
    height: inherit;
    border: 0 none;
    outline: 0 none;
    background: transparent;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
}

.lookup .select_wrap .label img {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.4rem;
}

.lookup .select_wrap .optionList {
    position: absolute; 
    top: 30px;
    left: 0;
    z-index: 1;
    width: 100%;
    background: #fff;
    list-style-type: none;
    border-radius: 8px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-height: 0;
    transition: .2s;
}

.lookup .select_wrap.active .optionList {
    max-height: 22.8rem;
    padding: 1.2rem;
}

.lookup .select_wrap .optionItem {
    max-width: 100%;
    height: 3.6rem;
    font-size: 1.8rem;
    line-height: 1.8rem;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transition: .1s;
    text-align: center;
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.lookup .select_wrap .optionItem img {
    width: 2.4rem;
    height: 2.4rem;
}

.lookup .select_wrap .optionItem:hover {
    background: #EDF5FF;
}

/* input */

.lookup .input_uid {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    max-width: 60.7rem;
    width: 100%;
    padding-left: 3rem;
    border: none;
    outline: 0 none;
    font-size: 1.6rem;
}

.lookup .input_uid::placeholder {
    font-size: 1.6rem;
    color: var(--sub-text);
}

.lookup .sec01 .rec_exchange {
    display: flex;
    align-items: flex-start;
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
}

.lookup .sec01 .rec_exchange .title {
    font-size: 1.6rem;
    padding: 1rem 3.5rem 1rem 2.8rem;
}

.lookup .sec01 .rec_exchange ul {
    max-width: 33.6rem;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.8rem;
}

.lookup .sec01 .rec_exchange ul .keyword {
    font-size: 1.6rem;
    color: var(--main-color);
    width: 10rem;
    height: 3.6rem;
    border-radius: 30px;
    background-color: #FFFFFF;
    text-align: center;
    padding: 1rem 0;
    cursor: pointer;
}

/* section02 */

.lookup .sec02-01 {
    display: none;
}
.lookup .sec02-02 {
    display: block;
}
.lookup .sec02-03 {
    display: none;
}

.lookup .sec02 {
    max-width: 120rem;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 0;
}

.lookup .sec02 .box_flex {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.lookup .sec02 .box_flex .box01 {
    max-width: 36.4rem;
    width: 100%;
    border-radius: 8px;
    padding: 4rem 0;
    box-shadow: 0px 5px 20px rgba(40, 42, 45, 0.05);
    border: 0.5px solid #DDDDDD;
}

.lookup .sec02 .box_flex .box01 .box_title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.lookup .sec02 .box_flex .box01 .box_con {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
}

.lookup .txt_flex {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
}

.lookup .txt_flex .info_txt {
    font-size: 1.6rem;   
    font-weight: 400;
}

.lookup .sec02-02 .check_blue_btn {
    display: block;
    margin: 0 auto;
}

.lookup .sec02-03 h3 {
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
}

.lookup .sec02-03 .sub_txt {
    font-size: 1.8rem;
    line-height: 2.7rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.lookup .sec02-03 .check_blue_btn.kakao {
    background-color: #FEE500;
    display: flex;
    align-items: center;
    color: #191600;
    gap: 1rem;
    justify-content: center;
    margin: 0 auto;
}

.lookup .sec02-03 .check_blue_btn.kakao:hover {
    background-color: #CAB600;
}

/* section03 */

.lookup .sec03 {
    background-color: #FAFBFF;
}

.lookup .sec03_con {
    max-width: 120rem;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 0;
}

.lookup .sec03 h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 4.16rem;
    text-align: center;
    margin-bottom: 2rem;
}

.lookup .sec03 .txt_flex {
    margin-bottom: 6rem;
}

.lookup .txt_flex .info_txt.gray {
    color: #909090;
}

.lookup .sec03 img.update {
    max-width: 81.2rem;
    width: 100%;
    margin: 0 auto;
}

/* section04 */

.lookup .sec04 {
    max-width: 120rem;
    width: 100%;
    margin: 0 auto;
    padding: 10rem 0;
}

.lookup .sec04 h2 {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6rem;
}

.lookup .sec04 .box {
    padding: 5.2rem 7rem;
    cursor: pointer;
}

.lookup .sec04 .inner_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lookup .sec04 .box .question {
    font-size: 2.2rem;
}

.lookup .sec04 .box.on .question {
    color: var(--main-color);
}

.lookup .sec04 .box .answer_box::before {
    display: block;
    content: '';
    width: 100%;
    height: 0.1rem;
    background-color: #E1E4EE;
    margin: 3.6rem 0;
}

.lookup .sec04 .box .answer_box {
    display: none;
}
.lookup .sec04 .box .answer_box.on {
    display: block;
}

.lookup .sec04 .box .answer_box p {
    font-size: 1.6rem;
    line-height: 2.4rem;
}

/* section05 */

.lookup .sec05 {
    background-color: var(--gray-bg);
}

.lookup .sec05_con {
    max-width: 120rem;
    width: 100%;
    margin: 0 auto;
    padding: 5.6rem 0;
    text-align: center;
}

.lookup .sec05_con p {
    font-size: 2.2rem;
    line-height: 2.86rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* 모달1 */

.lookup_popup {
    max-width: 47.8rem;
    width: 100%;
    padding: 3.2rem 3rem;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(40, 42, 45, 0.05);
    border-radius: 10px;
}

/* 체크박스 */

input[class="checkbox"] {
    display: none;
}
  
.checkbox_wrap {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.checkbox_wrap input[class="checkbox"] + label {
    display: inline-block;
    width: 4.8rem;
    height: 4.8rem;
    background: url(../img/ico-checkbox-off.svg);
    /* border-radius: 4px; */
    cursor: pointer;
    transition: .2s;
}

.checkbox_wrap input[class="checkbox"]:checked + label {
    background: url(../img/ico-checkbox-on.svg);
    border: none;
}

.checkbox_wrap .cb_txt {
    font-size: 1.8rem;
    color: #808080;
    font-weight: 700;
    cursor: pointer;
}

.lookup_popup .title_flex {
    position: relative;
    margin-bottom: 4rem;
}

.lookup_popup .title_flex h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
}

.lookup_popup .title_flex img {
    position: absolute;
    top: -0.4rem;
    right: 0;
    cursor: pointer;
}

.lookup_popup .application h1 {
    font-size: 2.6rem;
    line-height: 3.38rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.lookup_popup .popup_box {
    width: 100%;
    border-radius: 8px;
    background-color: #F7F8FB;
    margin-bottom: 3rem;
    padding: 2rem;
}

.lookup_popup .application .popup_box .checkbox_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lookup_popup .application .popup_box .checkbox_flex img {
    cursor: pointer;
}

.lookup_popup .popup_btn {
    width: 100%;
    padding: 1.9rem 0;
    border-radius: 8px;
    background-color: var(--main-color);
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
}

.lookup_popup .popup_btn:hover {
    background-color: var(--hover-color);
}

/* 모달2 */

.lookup_popup .uid_error .title_flex {
    margin-bottom: 3rem;
}

.lookup_popup .uid_error .title_flex h2 {
    font-weight: 800;
}

.lookup_popup .uid_error .txt01 {
    font-size: 1.8rem;
    line-height: 2.34rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.lookup_popup .uid_error .txt02 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

/* 모달3 */

.lookup_popup .refund_guide .title_flex {
    margin-bottom: 2rem;
}

.lookup_popup .refund_guide .title_flex img {
    position: absolute;
    top: -0.4rem;
    left: 0;
}

.lookup_popup .gray_txt {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.34rem;
    color: #808080;
    height: 26.7rem;
    overflow-y: scroll;
}

/* 모달4 */

.lookup_popup .terms .title_flex {
    margin-bottom: 2rem;
}

.lookup_popup .terms .title_flex img {
    position: absolute;
    top: -0.4rem;
    left: 0;
}

/* 모바일 */

@media (max-width:1199px) {
    .lookup .sec01_con {
        padding: 8rem 2rem;
    }

    .lookup .sec02 {
        padding: 8rem 2rem;
    }

    .lookup .sec03_con {
        padding: 8rem 2rem;
    }

    .lookup .sec04 {
        padding: 10rem 2rem;
    }
}

@media (max-width:768px) {
    .lookup .sec01_con {
        padding: 7rem 1.6rem;
    }

    .lookup .sec01 h1 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .lookup .sec01 .search_bar {
        height: 4.4rem;
        padding: 0 2rem 0 1.8rem;
        margin: 0 auto 1.2rem;
    }
    
    /* select */

    .lookup .select_wrap .label {
        font-size: 1.6rem;
        font-weight: 700;
    }

    .lookup .select_wrap .optionItem {
        font-size: 1.6rem;
        line-height: 1.6rem;
    }

    /* input */

    .lookup .input_uid {
        padding-left: 2rem;
        font-size: 1.4rem;
    }

    .lookup .input_uid::placeholder {
        font-size: 1.4rem;
    }

    .lookup .sec01 .rec_exchange {
        gap: 1.4rem;
    }
    
    .lookup .sec01 .rec_exchange .title {
        font-size: 1.4rem;
        padding: 0.9rem 0 0.9rem 1.8rem;
    }
    
    .lookup .sec01 .rec_exchange ul {
        gap: 0.8rem;
    }
    
    .lookup .sec01 .rec_exchange ul .keyword {
        font-size: 1.4rem;
        width: 9.8rem;
        height: 3.2rem;
        padding: 0.9rem 0;
    }

    .lookup .sec02 {
        padding: 5rem 1.6rem;
    }

    .lookup .sec02 .box_flex {
        flex-direction: column;
        margin-bottom: 3rem;
    }

    .lookup .sec02 .box_flex .box01 {
        padding: 3rem 0;
    }

    .lookup .sec02 .box_flex .box01 .box_title {
        font-size: 1.6rem;
    }

    .lookup .sec02 .box_flex .box01 .box_con {
        font-size: 2.4rem;
    }

    .lookup .txt_flex {
        align-items: flex-start;
    }

    .lookup .txt_flex .info_txt {
        font-size: 1.4rem;   
        line-height: 1.82rem;
    }

    .lookup .sec02-03 h3 {
        font-size: 2rem;
    }

    .lookup .sec02-03 .sub_txt {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }

    .lookup .sec03_con {
        padding: 5rem 1.6rem;
    }

    .lookup .sec03 h2 {
        font-size: 2.2rem;
        line-height: 2.86rem;
    }

    .lookup .sec03 .txt_flex {
        margin-bottom: 4rem;
    }

    .lookup .sec03 img.update {
        max-width: 34.4rem;
    }

    .lookup .sec04 {
        padding: 7rem 1.6rem;
    }

    .lookup .sec04 h2 {
        font-size: 2.2rem;
        margin-bottom: 4rem;
    }

    .lookup .sec04 .box {
        padding: 3.2rem 3.6rem;
        cursor: pointer;
    }

    .lookup .sec04 .box .question {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }

    .lookup .sec04 .box .answer_box::before {
        margin: 1.6rem 0;
    }

    .lookup .sec05_con {
        padding: 5rem 0;
    }

    .lookup .sec05_con p {
        font-size: 1.6rem;
        line-height: 2.08rem;
    }

    /* 모달 */

    .lookup_popup {
        margin: 0 1.6rem;
        padding: 2.4rem 1.6rem;
    }

    .lookup_popup .title_flex {
        margin-bottom: 3.2rem;
    }
    
    .lookup_popup .title_flex h2 {
        font-size: 1.8rem;
    }

    .lookup_popup .title_flex img {
        width: 2.4rem;
    }

    .lookup_popup .application h1 {
        font-size: 2.2rem;
        line-height: 2.86rem;
        margin-bottom: 1.4rem;
    }

    .lookup_popup .popup_box {
        margin-bottom: 2rem;
        padding: 1.6rem;
    }

    .checkbox_wrap .cb_txt {
        font-size: 1.6rem;
    }
    
    .lookup_popup .popup_btn {
        padding: 1.7rem 0;
        font-size: 1.6rem;
        font-weight: 700;
    }

    .lookup_popup .uid_error .txt01 {
        font-size: 1.6rem;
        line-height: 2.08rem;
        margin-bottom: 3rem;
    }

    .lookup_popup .uid_error .txt02 {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }

    .lookup_popup .gray_txt {
        font-size: 1.6rem;
        line-height: 2.08rem;
    }
}

@media (max-width:500px) {
    .lookup .sec01 .rec_exchange ul {
        max-width: 20.4rem;
    }
}