@charset "UTF-8";





b {
    font-weight: 500;
}

b.high {
    font-weight: 700;
}

.display-m {
    display: none;
}

#container {
    padding: 112px 0;
    background-color: #F2F4F6;
    min-width: 1042px;
}

#store_container {
    display: block;
    width: 1042px;
    margin: 0 auto;
}

#container .title {
    font-size: 17px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
}

.card-box {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    display: flex;
    padding: 20px 0px 20px 0px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    /* 반응형 대응 */
}

.form-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 20px 0px 20px;
    flex-wrap: wrap;
}

.form-label {
    font-weight: 600;
    font-size: 16px;
    margin-right: 20px;
    min-width: 100px;
    display: flex;
}


.btn-small {
    padding: 0px 10px;
    margin-right: 10px;
    font-size: 13px;
    color: #29C4BE;
    border: 1px solid #29C4BE;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.btn-refresh {
    font-size: 13px;
    color: #333;
    cursor: pointer;
}

.divider {
    border: 0; /* 모든 테두리 0px */
    border-top: 1px solid #e5e5e5;
    margin: 0px 24px;
    width: 100%;
}

.store-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
    margin-top: 7px;
}

.store-row {
    display: flex;
    align-items: center;
    gap: 12px;

}

.store-info-row {
    font-size:14px;
    color:#101010;
}

/* 업체명 div 스타일 */
.store-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid #29C4BE;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    padding: 4px 0;
    background-color: white;
}

.store-name .store-title {
    font-weight: bold;
    font-size: 15px;
    color: #000;
}

.store-name .store-id {
    font-weight: 400;
    font-size: 13px;
    color: #666;
}

/* 금액 입력 input 스타일 */
.store-amount {
    border: 1px solid #29C4BE;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0px;
    background-color: white;
}

.store-amount .store-amount-input {
    border: none;
    outline: none;
    text-align: right;
    font-weight: bold;
    font-size: 16px;
    width: 80%;
}

/* 이용 가능액 박스 */
.available-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F2F4F6;
    padding: 13px 0px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    box-sizing: border-box;
    border-width: 1px;
    border-style: solid;   /* 추가 */
    border-color: #C9C9C9;
}

.available-box span {
    margin-left: 16px;
    margin-right: 16px;
    color: #333;
    font-size: 14px;
    
}


/* 1/3씩 넓이 분배 */
.store-name,
.store-amount,
.available-box {
    flex: 1;
    max-width: 33.33%;
    box-sizing: border-box;
}

.summary-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0px 20px;
}

.summary-row .summary-label {
    flex: 1;
    max-width: 33.33%;
    font-weight: bold;
    font-size: 16px;
    box-sizing: border-box;
}

.summary-row .summary-amount {
    flex: 1;
    max-width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
    border: 3px solid #29C4BE;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
}

.summary-row .summary-amount .summary-amount-input {
    border: none;
    outline: none;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
    width: 80%;
    box-sizing: border-box;
}

.summary-row .summary-submit {
    flex: 1;
    max-width: 33.33%;
    padding: 13px 0px;
    background-color: #27c6c6;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.summary-submit:hover {
    background-color: #1aa5a5;
}

/* 1/3씩 넓이 분배 */
.summary-label,
.summary-amount,
.summary-submit {
    flex: 1;
    max-width: 33.33%;
    box-sizing: border-box;
}

.card-box-2 {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    display: flex;
    padding: 60px 0px 20px 0px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    /* 반응형 대응 */
}


.info-text {
    flex: 1 1 0;
    text-align: center;
}

.info-text img {
    width: 115px;
    margin-bottom: 20px;
}

.info-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0px 20px 10px;
}

.highlight {
    font-weight: 700;
    color: #000;
}

.desc-box {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding-left: 0;
    display: flex;
    justify-content: center;
}

.desc-box .align-center {
    max-width: 330px;
    word-break: keep-all
}

.desc-box .align-center.large {
    max-width: 830px;
    word-break: keep-all
}

.vertical-line {
    width: 1px;
    background-color: #D9D9D9;
    height: 230px;
}

.horizontal-line {
    display: none;
    width: 90%;
    background-color: #D9D9D9;
    height: 1px;
    margin: 40px auto;
}

.info-text-gray {
    width: 100%;
    padding: 25px;
    margin: 25px 25px 0px 25px;
    background-color: #F2F4F6;
}

.info-text-gray .desc-box {
    display: block;
    color: #555;
    font-size: 15px;
    line-height: 1;
    list-style: none;

}

.info-text-gray .desc-box li {
    font-size: 15px;
    color: #555;
    line-height: 1.2;
    margin-bottom: 6px;
    padding-left: 10px;
    position: relative;
}

.info-text-gray .desc-box li::before {
    content: '•';
    font-size: 10px;
    color: #888;
    position: absolute;
    top: 0.25em;
    /* ✅ 수직 정렬 핵심 */
    left: 0;
    line-height: 1;
}

.info-text-gray h5 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
}

.store_info {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px;
    width: 48px;
    height: 24px;
    background: #E0E0E0;
    border-radius: 20px;
    cursor: pointer;
}

.store_info.on {
    background: #29C4BE;
}

.store_info span {
    width: 22px;
    height: 22px;
    background: #FFFFFF;
    box-shadow: 1px 1px 2px rgba(102, 102, 102, 0.2);
    border-radius: 50%;
    margin-left:1px;
}

.store_info span.on {
    margin-left:25px;
}


@media screen and (max-width: 1050px) {
    #container {
        min-width: 350px;
        padding: 55px 0;
        background-color: #DDE0E3;
    }

    #store_container {
        display: block;
        width: auto;
        margin: 10px;
    }

    #container .title {
        margin-bottom: 5px;
        font-weight: 1000;
    }

    .info-title {
        font-size: 18px;
    }

    .info-text-gray {
        width: auto;
        margin-top: 40px;
    }

    .card-box {
        display: block;
    }

    .form-row {
        width: auto;
        margin: 0px 20px 20px 20px;
    }

    .store-group {
        width: auto;
        padding: 0px;
        margin: 0px 20px 20px 20px;
    }

    .store-row {
        display: block;
        margin-bottom: 15px;
    }

    /* 1/3씩 넓이 분배 */
    .store-name,
    .store-amount,
    .available-box {
        flex: 1;
        max-width: 100%;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    
    .divider {
        width: auto;
        margin: 0px 20px 20px 20px;
    }

    .summary-row {
        width: auto;
        display: block;
        margin-bottom: 15px;
    }

    .summary-row .summary-label,
    .summary-row .summary-amount,
    .summary-row .summary-submit {
        flex: 1;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    .card-box-2 {
        display: block;
    }

    .vertical-line {
        display: none;
    }

    .horizontal-line {
        display: block;
    }



}

@media screen and (max-width: 400px) {
    #container {
        min-width: 350px;
    }

    .desc-box .align-center, .desc-box .align-center.large {
        max-width: 240px;
    }

    .info-title {
        font-size: 16px;
        letter-spacing: -0.05em;
    }
}


/* 공통 스타일 */
.disabled {
    background-color: #F2F4F6;
}

.no-display {
    display: none;
}


/********** modal common CSS **********/
.modal_top_container {
    display: none;
    width: 100%; height: 100%;
    position: fixed; top: 0; left: 0; z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
}

.modal_top_container.on {
    display: block;
}

.modal_top_container .modal_wrapper {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 477px;
}
@media screen and (max-width: 1050px) {
    .modal_top_container .modal_wrapper {
        width: calc(100% - 50px); max-height: calc(100% - 50px);
    }
}

.modal_top_container .modal_wrapper .close_btn {
    display: flex; justify-content: center; align-items: center;
    width: 22px; height: 22px;
    background: url('/img/path_3.png') 50% no-repeat; background-size: 16px;
    position: absolute; right: 0; top: -33px;
    text-indent: -99999px;
    cursor: pointer;
}
@media screen and (max-width: 1050px) {
    .modal_top_container .modal_wrapper .close_btn {
        top: 18px; right: 20px;
    }
}

.modal_top_container .modal_wrapper .modal_container {
    background-color: #FFF;
}
@media screen and (max-width: 1050px) {
    .modal_top_container .modal_wrapper .modal_container {
        max-height: calc(100vh - 50px);
        overflow-x: hidden;
        overflow-y: auto;
    }
}

.modal_top_container .modal_wrapper .modal_container .modal_header {
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: 70px;
    background-color: #29C4BE;
    color: #FFF; font-size: 20px; font-weight: 400; letter-spacing: -0.6px;
}
@media screen and (max-width: 1050px) {
    .modal_top_container .modal_wrapper .modal_container .modal_header {
        height: 55px;
    }
}

.modal_top_container .modal_wrapper .modal_container .modal_body {
    padding: 20px;
    box-sizing: border-box;
}
@media screen and (max-width: 1050px) {
    .modal_top_container .modal_wrapper .modal_container .modal_body {
        max-height: calc(100% - 55px);
        overflow-y: auto;
    }
}

.modal_top_container .modal_wrapper .modal_container .modal_body .content {
    text-align: center;
    padding: 0px 10px 0px 10px;
    font-size: 15px;
}

.modal_top_container .modal_wrapper .modal_container .modal_body .content .button_box {
    text-align: center;
    padding: 25px 0px 5px 0px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.modal_top_container .modal_wrapper .modal_container .modal_body .content .button_box .request_btn_2 {
    display: flex; justify-content: center; align-items: center;
    width: 100%; max-width: 190px; height: 44px;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid #29C4BE;
    color: #29C4BE; font-sizE: 14px; font-weight: 400; text-align: center;
    cursor: pointer;
}

@media screen and (max-width: 520px) {
    .modal_top_container .modal_wrapper .modal_container .modal_body .content .button_box {
        display: block;
    }

    .modal_top_container .modal_wrapper .modal_container .modal_body .content .info br {
        display: none;
    }

    .modal_top_container .modal_wrapper .modal_container .modal_body .content .button_box .request_btn_2 {
        max-width: 250px;
        margin-bottom: 15px;
    }
}


.modal_top_container .modal_wrapper .modal_container .modal_body .store_logo_box {
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: 35px;
    margin-bottom: 20px;
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .store_logo_box .store_logo {
    display: block;
    height: 100%;
}

.modal_top_container .modal_wrapper  .modal_container .modal_footer {
    padding-bottom: 60px;
}

.modal_top_container .modal_wrapper  .modal_container .modal_footer .request_btn {
    display: flex; justify-content: center; align-items: center;
    width: 100%; max-width: 160px; height: 50px;
    margin: 0 auto;
    background-color: #29C4BE;
    border-radius: 6px;
    color: #FFF; font-sizE: 14px; font-weight: 400; text-align: center;
    cursor: pointer;
}



/********** modal common CSS END **********/