#wait {}
#wait .grey_box {
    padding:0 50px 150px;
    border-radius:0 0 50px 50px;
}
#wait .wait_cont {
    display: flex;
    flex-direction:column;
    gap:30px;
}
#wait .wait_cont .sub_con_title {
    height:150px;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
    justify-content:center;
    position: relative;
    z-index: 2;
}
#wait .wait_cont .sub_con_title::before {
    content:'';
    width:300px;
    height:100%;
    border-radius:0 0 9999px 9999px;
    background-color:#fff;
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    z-index:-1;
}
#wait .wait_cont .sec_title {
    font-size:1.33em;
    font-weight:700;
    text-align:center;
    padding:15px 10px;
}
#wait .wait_cont .white_box {
    border-radius:30px;
}
#wait .wait_cont .white_box p + p {
    margin-top:10px;
}
#wait .wait_cont .use_part {
    position: relative;
    z-index: 1;
}
#wait .wait_cont .use_part::before {
    content:'';
    width:216px;
    height:216px;
    background-image:url(../img/wait_bg.png);
    background-repeat:no-repeat;
    background-position: center center;
    position:absolute;
    left: 10px;
    top: -145px;
    z-index: -1;
}

#wait_board {}
#wait_board #wait_search {
    display:flex;
    align-items:center;
    padding: 50px;
    border:5px solid #D7EDFF;
    gap: 50px;
    box-shadow: 0px 5px 10px 5px rgba(49, 84, 114, 0.20);
    border-radius:30px;
    margin:0 50px;
    background-color:#fff;
    position: relative;
    top: -85px;
}
#wait_board #wait_search .search_box {
    display:flex;
    align-items:center;
    gap:30px;
    flex:1;
}
#wait_board #wait_search .search_box p,
#wait_board #wait_search .search_box label {
    font-size:1em;
    font-weight:600;
    width:80px;
    text-align:center;
}
#wait_board #wait_search .search_box input {
    flex:1;
    height:55px;
    border:1px solid #ddd;
    border-radius:5px;
    padding:15px;
    font-size:1em;
    font-weight:400;
    color:#444;
}
#wait_board #wait_search .wait_search_btn {
    width:200px;
    height:55px;
    background-color:#004F90;
    border:1px solid #004F90;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:1.22em;
    font-weight:700;
    color:#fff;
    padding:0 20px;
}
#wait_board #wait_search .wait_search_btn:hover {
    background-color:#fff;
    color:#004F90;
}

.business .contact_box {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    background-color:#D7EDFF;
    border-radius:9999px;
    padding:10px;
    gap:10px;
    width: fit-content;
    margin-left: auto;
    margin-top:80px;
}
.business .contact_box span {
    font-size:1em;
    font-weight:500;
    font-family: 'S-CoreDream';
    padding:0 20px;
    display:block;
}
.business .contact_box p {
    border-radius:999px;
    background-color:#fff;
    padding:10px 20px;
}
.no-data {
    height: 200px;
    text-align: center;

}

/* ********* 반응형 미디어쿼리 css ******** */
@media (max-width:1440px) {
    #wait .wait_cont .use_part::before {
        width:160px;
        height:160px;
        background-size:100% 100%;
        top:-100px;
    }

    #wait_board #wait_search {
        gap:30px;
        padding:30px;
    }
    #wait_board #wait_search .search_box {
        gap:10px;
    }
}
@media (max-width:1200px) {
    #wait_board #wait_search {
        gap:20px;
    }
    #wait_board #wait_search .search_box {
        gap:5px;
    }
}
@media (max-width:1024px) {
    #wait .grey_box {
        padding:0 30px 150px;
    }
    #wait .wait_cont .use_part::before  {
        display:none;
    }
    #wait_board #wait_search {
        margin:0 30px;
    }

}
@media (max-width:991px) {
    #wait_board #wait_search {
        flex-direction:column;
    }
    #wait_board #wait_search .search_box {
        width:100%;
    }
}
@media (max-width:768px) {
    #wait .wait_cont .sub_con_title {
        padding:0;
    }
    #wait .wait_cont .sub_con_title::before {
        max-width:300px;
        width:90%;
    }
}
@media (max-width:640px) {
    #wait .grey_box {
        padding-right:20px;
        padding-left:20px;
    }

    #wait_board #wait_search {
        margin:0;
    }
    #wait_board #wait_search .search_box {
        flex-direction:column;
    }
    #wait_board #wait_search .search_box input {
        width:100%;
    }

    .business .contact_box {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 30px;
        text-align: center;
    }
    .business .contact_box p {
        width:100%;
    }
}