@charset "UTF-8";
/* CSS Document */

/*App-style Top Bar (Back)*/
.app-topbar {
        position: sticky;
        top: 0;
        z-index: 9999;
        padding-top: max(env(safe-area-inset-top), 10px);
        height: calc(52px + max(env(safe-area-inset-top), 10px));
        background: #ffffff;
        color: #0f172a;
        display: flex;
        align-items: flex-end;
        border-bottom: 1px solid rgba(15, 23, 42, .08);
    }

    .app-topbar-inner {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 10px 12px 12px;
    }

    .app-back-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: #ffffff;
        color: #0f172a;
        border: 1px solid rgba(15, 23, 42, .12);
        box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
        -webkit-tap-highlight-color: transparent;
        transition: transform .06s ease, background .2s ease;
        cursor: pointer;
    }

    .app-back-btn:active {
        transform: scale(.96);
    }

    .app-top-title {
        font: 600 16px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
        letter-spacing: .2px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }



/*레이어팝업*/

.wrap {
        width: 100%;
        margin: 0 auto;
        padding: 16px 0;
    }

    .toolbar {
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 10px
    }

    .btn {
        padding: 8px 12px;
        border: 1px solid #ddd;
        background: #fff;
        border-radius: 6px;
        cursor: pointer
    }

    .btn:hover {
        background: #f7f7f7
    }

    .muted {
        color: #777;
        font-size: 13px
    }

    .chip {
        padding: 6px 10px;
        border: 1px solid #e5e5e5;
        border-radius: 999px;
        background: #fafafa
    }

    .sep {
        width: 1px;
        height: 20px;
        background: #eee;
        margin: 0 6px
    }

    #map {
        width: 100%;
        height: 700px;
        position: relative
    }

    #lock-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        z-index: 10
    }

    #popup {
        position: absolute;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, .72);
        color: #fff;
        padding: 10px 16px;
        border-radius: 8px;
        display: none;
        z-index: 20
    }

    #layer-popup {
        position: fixed;
        inset: 0;
        display: none;
        z-index: 9999;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .35);
    }

    #layer-card {
        width: 480px;
        max-width: 92vw;
        max-height: 88vh;
        background: #fff;
        border-radius: 12px;
        overflow: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
    }

    #layer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        border-bottom: 1px solid #eee;
        background: #fafafa
    }

    #layer-close {
        border: 0;
        background: transparent;
        font-size: 18px;
        cursor: pointer
    }

    #layer-body {
        padding: 14px 12px;
        position: relative;
    }

    .layer-body {
        width: 100%;
        height: 50vh;
    }

    #memoFrame {
        width: 100%;
        height: 100%;
        display: none;
        border: 0;
    }

    #prebizBox {
        display: none;
    }

    .prebiz-wrap {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 12px;
        align-items: center;
        margin-bottom: 12px;
    }

    .prebiz-logo {
        width: 64px;
        height: 64px;
        border-radius: 10px;
        object-fit: cover;
        border: 1px solid #eee;
    }

    .prebiz-title {
        font-weight: 700;
        font-size: 16px;
    }

    .prebiz-sub {
        font-size: 13px;
        color: #666;
        margin-top: 4px;
    }

    .prebiz-section {
        padding: 12px;
        border: 1px solid #eee;
        border-radius: 10px;
        margin-bottom: 10px;
        background: #fafafa;
    }

    .prebiz-section h4 {
        margin: 0 0 6px;
        font-size: 14px;
    }

    .prebiz-actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .btn-ghost,
    .btn-primary {
        padding: 10px 14px;
        border-radius: 10px;
        cursor: pointer;
        border: 1px solid #ddd;
        background: #fff;
    }

    .btn-primary {
        border-color: #2f6bff;
        background: #3f77ff;
        color: #fff;
        width: 100%;
    }

    .btn-primary:hover {
        background: #2f6bff;
    }

    @media (max-width: 640px) {
        .layer-body {
            height: 85vh;
        }
    }

    .card {
        width: 170px;
        min-height: 58px;
        border-radius: 16px;
        padding: 8px;
        background: #fff;
        border: 2px solid #ccc;
        display: flex;
        gap: 8px;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, .07)
    }

    .card.me {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        justify-content: center;
        border: 3px solid #adf81e
    }

    .avatar {
        width: 58px;
        height: 58px;
        border-radius: 8px;
        object-fit: cover
    }

    .meta {
        display: flex;
        flex-direction: column;
        gap: 4px
    }

    .nick {
        font-weight: 700;
        width: 70px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .male {
        border-color: #b1d8fd
    }

    .female {
        border-color: #facacb
    }

    .dist {
        font-size: 12px;
        color: #555
    }

    .row {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap
    }

    .grow {
        flex: 1
    }

    .progress {
        height: 10px;
        background: #f1f1f1;
        border-radius: 999px;
        overflow: hidden;
        min-width: 160px
    }

    .bar {
        height: 100%;
        background: #4a89ff;
        width: 0%
    }

    .stat {
        font-size: 12px;
        color: #666
    }

    /* 예약 목록 스타일 */
    .reserve-list-header,
    .reserve-item {
        display: grid;
        grid-template-columns: 64px 1fr 64px 120px;
        gap: 10px;
        align-items: center;
    }

    .reserve-list-header {
        padding: 6px 8px;
        color: #334155;
        font-weight: 700;
        font-size: 13px;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 6px;
    }

    .reserve-item {
        padding: 8px;
        border: 1px solid #eee;
        border-radius: 10px;
        background: #fff;
        margin-bottom: 8px;
    }

    .reserve-item img {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        object-fit: cover;
    }

    .reserve-num {
        text-align: center;
        color: #475569;
    }

    .reserve-nick {
        font-weight: 700;
    }

    .reserve-date {
        font-size: 12px;
        color: #666;
        white-space: nowrap;
        text-align: right;
    }

    .reserve-empty {
        padding: 16px;
        text-align: center;
        color: #666;
        background: #fff;
        border: 1px dashed #e5e7eb;
        border-radius: 10px;
    }

    .paging-center {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
    }




/*입력폼*/

    /*참여요청*/
    fieldset img {
        border-radius: 10px;
    }

    fieldset input {
        border-radius: 10px;
        border: 0;
    }

    .quick_form {
        background: #333;
        overflow: hidden;
        position: relative;
    }

    .quick_form:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: url("/theme/henallte/design/form_consult/bg_form.jpg") center center no-repeat;
        background-attachment: fixed !important;
        background-position: 50% 50%;
        background-size: cover !important;
        opacity: 0.2;
        position: absolute;
        top: 0;
        left: 0;
        animation: grow infinite alternate ease-in-out 8s;
    }

    .form-group {
        overflow: hidden;
    }



    .send_request_list_left {

        float: right;
        display: block;
        overflow: hidden;
        width: 65%;
        padding: 30px 0;
    }


    ul.send_request {
        float: none;
        display: inline-block;
        width: 100%;
    }

    ul.send_request.center {
        float:right;
    }

    ul.send_request.last {
        display: block;
        width: 100%;
        background: #f8f8f8;
        padding: 0;
        overflow: hidden;
        margin-top: 20px;
    }


    ul.send_request-margin {
        float: right !important;
        margin: 0 !important;
    }



    @media(max-width:1200px) {

        .send_request_list_left {

            float: none;
            display: block;
            overflow: hidden;
            width: 100%;
            padding: 30px 0;
        }

        ul.send_request-margin {
            margin: 0 !important;
        }
        
    }




    .send_request_list {
        float: right;
        display: block;
        overflow: hidden;
        width: 35%;
        height: 282px;
        margin: 0px auto 0;
        padding: 30px;
        background: #eef9fd;
    }

    ul.send_request label {
        margin-top: 0;
        font-size: 90%;
        font-weight: 100;
        color: #0292c6;
        float: right;
    }

    ul.send_request li {
        display: block;
        width: 100%;
        height: auto;
        padding: 0px 0 0 0px;
        color: #777;
        border: 0px solid #ddd !important;
        margin-bottom: 5px;
        position: relative;
    }
    ul.send_request li.code{width:100%; float:none;}
    ul.send_request li.file{width:100%; float:none;}
    ul.send_request li.short_text{display:inline-block; width:100%; margin-bottom:10px;}
    ul.send_request li.short_text:nth-child(1){ 
float:none;
    }
    ul.send_request li.short_text:nth-child(3){ 
float:none;
    }
    
    
    ul.send_request li span.field {
        position: absolute;
        right: 10px;
        top: 25px;
        font-size: 80%;
        color: #f80;
    }

    ul.send_request.last li {
        border: 0 !important;
    }

    ul.send_request li .dropdown li {
        border: 0 !important;
    }

    ul.send_request {text-align: center;}
    ul.send_request li {display:inline-block;}
    ul.send_request li:nth-child(1) {

    }

    ul.send_request li:nth-child(2) {

    }
    ul.send_request li:nth-child(3) {

    }
    
    ul.send_request li input,
    ul.send_request li select,
    .henal-select .select-items div,
    .henal-select .select-items div,
    .select-selected,
    ul.send_request li textarea {
        font-size: 110% !important;
    }

    ul.send_request li select {

        margin-bottom: 3px;
        border: 1px solid #555;
        border-radius: 0 !important;
        height: 48px !important;
        background: #fff;
        padding: 6px;

    }

    ul.send_request li input.frm_file {
        margin: 5px 0 !important;
        width: 100%;
        border-radius: 5px;
    }

    ul.send_request li span.title {
        clear: both;
        margin-right: 0px;
        font-weight: 600 !important;
        font-size: 90%;
        width: 28% !important;
        height: 35px;
        line-height: 35px;
        display: inline-block;
        float: left !important;
        font-family: 'BMDOHYEON';
        color: #ddd;
    }

    ul.send_request li span.title:before {
        content: '';
        display: block;
        margin-top: 1px;
        padding-top: 0;
        width: 100%;
        border-top: 1px solid #777;
    }

    ul.send_request li span.title:after {
        content: '';
        display: block;
        margin-bottom: 5px;
        padding-bottom: 5px;
        width: 40px;
        border-top: 0px solid #252a62;
    }


    ul.send_request li input.text-underline {
        display: block;
        width: 100% !important;
        height: auto !important;
        line-height: 100% !important;
        margin-bottom: 0px !important;
        border-radius: 10px;
        color: #222 !important;
        padding: 10px;
        font-size: 120% !important;
        background:#fff;
    }




    ul.send_request li .answer {
        display: inline-block;
        padding-right: 5px;
        font-size: 80%;
        color: #ddd;
    }

    ul.send_request li .answer input {
        float: left;
        margin-right: 5px !important;
        margin-top: 7px !important;
    }

    ul.send_request li input {
        margin-left: 0px;
        margin: 0 !important;
        width: 190px;
        height: 59px;
    }

    ul.send_request li input:nth-child(1) {}
    
    
    
    ul.buttons {display:inline-block; width:100%; float:none; }
    
    @media(max-width:1200px){
        ul.buttons {width:100%; float:none;}
    }
    @media(max-width:768px){
        ul.send_request {
        float: none;
        display: block;
        width: 100%;
    }
        ul.buttons {display:block; width:100%; float:none;}
        
        
    }
    
    ul.buttons li input.main_more {
        position: relative;
        display: block;
        height: auto;
        color: #fff;
        background:#f30;
        text-align: center;
        font-weight: bold;
        font-size: 130%;
        width: 100%;
        border: 0;
        padding: 10px 0;
        border-radius: 10px;
        margin-top: 30px !important;
    }

    ul.buttons li input.main_more:hover {
        background: #222;
        color: #fff;
    }

    ul.send_request li .henal-select {
        display: block;
        width: 100%;
        height: auto;
    }

    .henal-select-radio {
        float: right;
        width: 70%;
        height: 35px;
        line-height: 35px;
        margin: 1px 0;
    }

    ul.send_request li textarea {
        width: 100%;
        height: 130px !important;
        border-radius: 10px;
        margin: 5px 0;
        color: #777 !important;
        background: #fff !important;
        padding: 20px;
        margin-top: 0;
    }

    #captcha legend {border:0;}

    .henal-select .select-items div,
    .select-selected {
        padding: 0 5px !important;
    }

    .henal-select .select-selected {
        display: block;
        width: 100% !important;
        height: 48px !important;
        line-height: 48px !important;
        margin: 1px 0px !important;
        border-bottom: 3px solid #333 !important;
        color: #333 !important;
        background: #fff !important;
    }



    @media(max-width:1200px) {
        ul.send_request li {
            width: 100% !important;
        }

        ul.send_request li span.title {
            float: left;
            width: 25%;
            font-size: 85%;
        }

        ul.send_request li input.text-underline {
            float: right;
            width: 70%;
        }

        ul.send_request.center {
            margin: 0 0px;
        }


    }


    .frm_input2 {
        display: inline-block;
        height: 35px !important;
        line-height: 35px;
        padding: 3px;
        border: 0 !important;
        border-bottom: 0px solid #ddd !important;
    }

    .frm_input2.email {
        width: 30% !important;
        float: right;
    }

    .frm_input2:hover,
    .frm_input2:focus {
        border-color: #d29948;
        outline: none;
        box-shadow: none;
    }

    .btn-submit {
        width: 100%;
        background-color: #d89b4e;
        color: #fff;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 5px;
        text-transform: uppercase;
        border-radius: 3px;
        margin-top: 5px;
        border-bottom: 3px solid #a56617;
        box-shadow: none;
        padding: 10px;
    }

    .btn-submit:hover,
    .btn-submit:focus {
        color: #fff;
        outline: none;
        box-shadow: none;
        opacity: .8;
    }

    textarea.frm_input2 {
        background: #f2f2f2;
        color: #333;
        line-height: inherit;
    }

    input:-webkit-autofill,
    textarea:-webkit-autofill,
    select:-webkit-autofill {
        background-color: #333 !important;
    }

    @media(max-width:1200px) {
        ul.send_request li.short_text:nth-child(3){    
        margin-left: 0px;
    }
        
        ul.send_request {
            padding: 0px;
            width: 100%;
            float: none;
        }

        .send_request_list {
            width: 100%;
            float: none;
        }

    }

    .list_consult {
        width: 30%;
        float: right;
    }

    .form_consult {
        padding-bottom: 0px;
        
    }

    @media(max-width:1100px) {
        .form_consult {
            padding: 0 0px;
        }

    }

    .price_box {
        padding: 50px 0;
    }
    
    #captcha{width:100%;}
    #captcha #captcha_img {float:left; margin-right:5px;}
    #captcha #captcha_info {
        color: #333;
            font-size: 90% !important;
        letter-spacing: -1px;
    }
    #captcha #captcha_mp3 {float:right;}
    
    h2.tit_consult{font-size:160%; padding-bottom:15px; line-height:100%; padding-bottom:10px; color:#333; font-family: 'WavvePADO-Regular' !important;}
    .description{padding-bottom:20px; padding:5px 10px; background:#fff3f3;
    overflow:hidden;
    }
    .train{
        display:block;
        width:100%;
        overflow: hidden;
    white-space: nowrap;
    animation: slide 10s linear infinite; /* 속도 조절 가능 (10초) */
        color:#f30;
    }
    @keyframes slide {
    0% {
        transform: translateX(100%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}



#prebizCertSection .bizcert{display:none}
.bizcert-status.warn{color:#f30;}
.main_wrap {max-width:95%;}