@charset "UTF-8";





/********** 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 .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_body .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_top_container .modal_wrapper  .modal_container .modal_body .table {
    width:100%;
    border: 0;
    border-spacing: 0px;
    border-collapse: collapse; 
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table thead {
    background-color: #E2E2E2;
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table thead tr {
    border-top: 1px solid #BFBFBF;
    border-bottom: 1px solid #BFBFBF;
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table thead tr th {
    background-color: #E2E2E2;
    height: 33px;
    font-weight: 500;
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table thead tr th.center {
    text-align: center;    
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table thead tr th.left {
    text-align: left;    
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table tbody tr {
    border-bottom: 1px solid #BFBFBF;
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table tbody tr td {
    height: 61px;
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table tbody tr td.center {
    text-align: center;    
}

.modal_top_container .modal_wrapper  .modal_container .modal_body .table tbody tr td.left {
    text-align: left;    
}




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





/********** 계정 추가 step 1 modal CSS **********/
#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_info_box {
    width: 100%; /* 너비 조정 가능 */
    padding: 10px 0;
}

/* 정보 패널의 기본 스타일 */
#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_info_box .info-panel {
    display: flex; /* 아이콘과 내용을 가로로 나열 */
    align-items: flex-start; /* 아이콘과 내용이 위쪽 정렬되도록 함 */
    padding: 15px; /* 내부 여백 */
    border-radius: 8px; /* 모서리 둥글게 */
    
    /* 배경색: 이미지와 유사한 옅은 파란색/하늘색 */
    background-color: #e6f7ff; /* 매우 옅은 파란색 */
    /* 테두리: 배경색보다 약간 진한 파란색 테두리를 추가하여 명확하게 할 수 있습니다. */
    /* border: 1px solid #91d5ff; */
}

/* 정보 아이콘 컨테이너 */
#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_info_box .info-icon {
    flex-shrink: 0; /* 내용이 줄어들 때 아이콘은 크기를 유지 */
    margin-right: 15px; /* 아이콘과 내용 사이의 간격 */
    
    /* 아이콘 스타일링 - 이미지의 파란색 원 모양 */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1890ff; /* 파란색 원 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 아이콘 심볼 (흰색 'i' 모양) */
#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_info_box .info-icon .icon-symbol {
    color: white; /* 흰색 'i' */
    font-size: 14px; /* 'i' 크기 */
    font-weight: bold;
    line-height: 1;
}

/* 정보 내용 텍스트 스타일 */
#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_info_box .info-content {
    color: #333; /* 텍스트 색상 */
    font-size: 14px; /* 텍스트 크기 */
    line-height: 1.5;
}


#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap {
    margin-bottom: 35px;
    padding: 0 28px;
    box-sizing: border-box;
}
@media screen and (max-width: 1050px) {
    #store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap {
        padding: 0;
    }
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .account_info_group {
    margin-bottom: 20px;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .input_group.terms_row {
    width: 100%;
    display: flex;
    align-items: center;
    gap:5px;
    min-height: 30px;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .input_group.terms_row:last-child {
    margin-bottom: 0;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .input_group.terms_row .input_label {
    flex-grow: 1;
    margin-bottom: 0px !important;
    display: flex;
    align-items: center; /* 배지와 텍스트 높이 맞춤 */
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .input_group.terms_row .input_label .required_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* 중요: 배지가 찌그러지지 않게 설정 */
    flex-shrink: 0; 
    white-space: nowrap; 
    
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    color: #00bfa5;
    background-color: #e0f2f1;
    border-radius: 4px;
    margin-right: 4px;
    
    /* 높이 고정으로 더 깔끔하게 */
    height: 18px; 
    line-height: 1;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .input_group.terms_row .terms_view_btn {
    display: flex; 
    justify-content: center; 
    align-items: center;
    width: auto; /* 고정 너비(38px)를 해제 */
    padding: 0 10px; /* 글자 길이에 맞춰 여백 생성 */
    height: 27px;
    white-space: nowrap; /* 글자가 버튼 안에서 줄바꿈되지 않게 함 */
    color: #000; 
    font-size: 13px; /* 글자가 많아졌으므로 살짝 줄이면 깔끔합니다 */
    font-weight: 400;
    border: 1px solid #DEE1E4; 
    border-radius: 2px; 
    background-color: #FFF;
    cursor: pointer;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .btn_area {
    display: flex; justify-content: space-around; margin-bottom: 15px;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .add_btn {
    width: 160px; height: 50px;
    color: #FFF; font-size: 14px; font-weight: 400;
    border-radius: 6px;
    background-color: #29C4BE;
    cursor: pointer;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .no_account_btn {
    display: none;
    width: 160px; height: 50px;
    color: #FFF; font-size: 14px; font-weight: 400;
    border-radius: 6px;
    background-color: #29C4BE;
    cursor: pointer;
}


@media screen and (max-width: 1050px) {
    #store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .input_group {
        width: 100%;
    }

    #store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .input_group.terms_row .input_label {
        word-break: keep-all;
    }
}


#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap {
    display: flex; justify-content: center; align-items: center;
    width: 15px; height: 15px;
    border-radius: 50%; border: 1px solid #101010;
    color: #101010; font-size: 13px; font-weight: 400;
    position: relative;
    margin-left: 5px;
    margin-top: 4px;
    cursor: pointer;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap .more_hidden_box {
    display: none;
    width: 207px;
    position: absolute; left: calc(50% - 20px); bottom: 28px;
    background-color: #fff;
    border-radius: 6px; border: 1px solid #707070; box-sizing: border-box;
    padding: 5px 10px;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap .more_hidden_box::after {
    content: '';
    display: block;
    width: 8px; height: 8px;
    position: absolute; bottom: -5px; left: calc(50% - 87px);
    background-color: #fff;
    border: 1px solid #707070; border-top: 0; border-left: 0;
    transform: rotate(45deg);
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap:hover .more_hidden_box {
    display: block;
}

#store_account_add_modal_wrap .store_account_add_modal .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap .more_btn:hover~.more_hidden_box {
    display: block;
}

/********** 계정 추가 step 1 modal CSS END **********/





/********** 계정 이메일 2차인증 modal **********/
#store_account_add_email_auth .email_auth_step_box {
    display: none;
}

#store_account_add_email_auth .email_auth_step_box.on {
    display: block;
}

#store_account_add_email_auth #email_auth_step_1 .email_send_info_text {
    margin-bottom: 10px;
    color: #000; font-size: 16px; font-weight: 400; letter-spacing: -0.48px; text-align: center;
}

#store_account_add_email_auth #email_auth_step_1 .email_select_box {
    margin-bottom: 20px;
}

#store_account_add_email_auth #email_auth_step_1 .email_select_box .email_box {
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 5px;
}

#store_account_add_email_auth #email_auth_step_1 .email_select_box .email_box:last-child {
    margin-bottom: 0;
}

#store_account_add_email_auth #email_auth_step_1 .email_select_box .email_box .radio_btn {
    margin-right: 5px;
}

#store_account_add_email_auth #email_auth_step_1 .email_select_box .email_box .radio_label {
    color: #000; font-size: 16px; font-weight: 400; letter-spacing: -0.48px;
}

#store_account_add_email_auth #email_auth_step_2 .email_send_info_text {
    margin-bottom: 10px;
    color: #000; font-size: 16px; font-weight: 400; letter-spacing: -0.48px; text-align: center;
}

#store_account_add_email_auth .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;
}
/********** 계정 이메일 2차인증 modal END **********/





/********** 계정 문자 2차인증 modal **********/
#store_account_add_sms_auth .sms_auth_step_box {
    display: none;
}

#store_account_add_sms_auth .sms_auth_step_box.on {
    display: block;
}

#store_account_add_sms_auth #sms_auth_step_1 .sms_send_info_text {
    margin-bottom: 10px;
    color: #000; font-size: 16px; font-weight: 400; letter-spacing: -0.48px; text-align: center;
}

#store_account_add_sms_auth #sms_auth_step_1 .sms_select_box {
    margin-bottom: 10px;
}

#store_account_add_sms_auth #sms_auth_step_1 .sms_select_box .sms_box {
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 5px;
}

#store_account_add_sms_auth #sms_auth_step_1 .sms_select_box .sms_box:last-child {
    margin-bottom: 0;
}

#store_account_add_sms_auth #sms_auth_step_1 .sms_select_box .sms_box .radio_btn {
    margin-right: 5px;
}

#store_account_add_sms_auth #sms_auth_step_1 .sms_select_box .sms_box .radio_label {
    color: #000; font-size: 16px; font-weight: 400; letter-spacing: -0.48px;
}

#store_account_add_sms_auth #sms_auth_step_2 .sms_auth_number_input_box {
    max-width: 360px;
    margin: 0 auto 10px;
}

#store_account_add_sms_auth #sms_auth_step_2 .step_info_text {
    margin-bottom: 5px;
    color: #000; font-size: 16px; font-weight: 400; letter-spacing: -0.48px; text-align: center;
}

#store_account_add_sms_auth #sms_auth_step_2 #sms_auth_timer_time {
    margin-bottom: 10px;
    color: #000; font-size: 16px; font-weight: 400; text-align: center;
}

#store_account_add_sms_auth .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;
}

#store_account_add_sms_auth .request_btn.off {
    display: none;
}
/********** 계정 문자 2차인증 modal END **********/




/********** 문자 2차인증 modal **********/
#store_account_add_sms_second_auth .sms_auth_number_input_box {
    max-width: 360px;
    margin: 0 auto 10px;
}

#store_account_add_sms_second_auth .step_info_text {
    margin-bottom: 5px;
    color: #000; font-size: 16px; font-weight: 400; letter-spacing: -0.48px; text-align: center;
}

#store_account_add_sms_second_auth #sms_auth_timer_time {
    margin-bottom: 10px;
    color: #000; font-size: 16px; font-weight: 400; text-align: center;
}

#store_account_add_sms_second_auth .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;
}

#store_account_add_sms_second_auth .request_btn.off {
    display: none;
}
/********** 계정 문자 2차인증 modal END **********/



/********** 계정 OTP 2차인증 modal **********/
#store_account_add_otp_auth .modal_wrapper .modal_container .otp_value_input_group {
    max-width: 320px;
    margin: 0 auto 10px;
}

#store_account_add_otp_auth .modal_wrapper .modal_container .info_link_box {
    margin-bottom: 10px;
    color: #f00; font-size: 14px; font-weight: 500; text-align: center;
}

#store_account_add_otp_auth .modal_container .modal_body .store_info_box {
    width: 100%; /* 너비 조정 가능 */
    max-width: 320px;
    padding: 10px 0;
    margin: auto;
}

/* 정보 패널의 기본 스타일 */
#store_account_add_otp_auth .modal_container .modal_body .store_info_box .info-panel {
    display: flex; /* 아이콘과 내용을 가로로 나열 */
    align-items: flex-start; /* 아이콘과 내용이 위쪽 정렬되도록 함 */
    padding: 15px; /* 내부 여백 */
    border-radius: 8px; /* 모서리 둥글게 */
    
    /* 배경색: 이미지와 유사한 옅은 파란색/하늘색 */
    background-color: #e6f7ff; /* 매우 옅은 파란색 */
    /* 테두리: 배경색보다 약간 진한 파란색 테두리를 추가하여 명확하게 할 수 있습니다. */
    /* border: 1px solid #91d5ff; */
}

/* 정보 아이콘 컨테이너 */
#store_account_add_otp_auth .modal_container .modal_body .store_info_box .info-icon {
    flex-shrink: 0; /* 내용이 줄어들 때 아이콘은 크기를 유지 */
    margin-right: 15px; /* 아이콘과 내용 사이의 간격 */
    
    /* 아이콘 스타일링 - 이미지의 파란색 원 모양 */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1890ff; /* 파란색 원 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 아이콘 심볼 (흰색 'i' 모양) */
#store_account_add_otp_auth .modal_container .modal_body .store_info_box .info-icon .icon-symbol {
    color: white; /* 흰색 'i' */
    font-size: 14px; /* 'i' 크기 */
    font-weight: bold;
    line-height: 1;
}

/* 정보 내용 텍스트 스타일 */
#store_account_add_otp_auth .modal_container .modal_body .store_info_box .info-content {
    color: #333; /* 텍스트 색상 */
    font-size: 14px; /* 텍스트 크기 */
    line-height: 1.5;
}


/********** 계정 OTP 2차인증 modal END **********/





/********** 판매자 정보 오류 팝업 CSS **********/
#store_account_re_auth_wrap {
    display: none;
    width: 100%; height: 100%;
    position: fixed; top: 0; left: 0; z-index: 9;
    background-color: rgba(0, 0, 0, 0.3);
}

#store_account_re_auth_wrap.on {
    display: block;
}

#store_account_re_auth_wrap .store_account_re_auth_modal {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 477px;
}

@media screen and (max-width: 1050px) {
    #store_account_re_auth_wrap .store_account_re_auth_modal {
        width: calc(100% - 50px); min-width: 320px;
    }
}



#store_account_re_auth_wrap .store_account_re_auth_modal .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;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container {
    background-color: #FFF;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .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) {
    #store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_header {
        height: 55px;
    }
}





#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body {
    padding: 20px;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .store_logo_box {
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: 24px;
    margin-bottom: 10px;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .store_logo_box .store_logo {
    display: block;
    height: 100%;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .store_id_info_box {
    margin-bottom: 27px;
    color: #606060; font-size: 20px; font-weight: 400; letter-spacing: -0.6px; text-align: center;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .info_text_1 {
    margin-bottom: 20px;
    color: #000000; font-size: 16px; font-weight: 400; letter-spacing: -0.48px; text-align: center;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .password_value {
    max-width: 285px;
    margin: 0 auto 34px;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .submit_btn {
    display: flex; justify-content: center; align-items: center;
    width: 160px; height: 50px;
    margin: 0 auto;
    color: #FFF; font-size: 14px; font-weight: 400;
    border-radius: 6px;
    background-color: #29C4BE;
    cursor: pointer;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .input_group .input_label .hover_action_wrap {
    display: flex; justify-content: center; align-items: center;
    width: 15px; height: 15px;
    border-radius: 50%; border: 1px solid #101010;
    color: #101010; font-size: 13px; font-weight: 400;
    position: relative;
    margin-left: 5px;
    margin-top: 4px;
    cursor: pointer;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .input_group .input_label .hover_action_wrap .more_hidden_box {
    display: none;
    width: 207px;
    position: absolute; left: calc(50% - 100px); bottom: 28px;
    background-color: #fff;
    border-radius: 6px; border: 1px solid #707070; box-sizing: border-box;
    padding: 5px 10px;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .input_group .input_label .hover_action_wrap .more_hidden_box::after {
    content: '';
    display: block;
    width: 8px; height: 8px;
    position: absolute; bottom: -5px; left: calc(50% - 8px);
    background-color: #fff;
    border: 1px solid #707070; border-top: 0; border-left: 0;
    transform: rotate(45deg);
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .input_group .input_label .hover_action_wrap:hover .more_hidden_box {
    display: block;
}

#store_account_re_auth_wrap .store_account_re_auth_modal .modal_container .modal_body .input_group .input_label .hover_action_wrap .more_btn:hover~.more_hidden_box {
    display: block;
}
/********** 판매자 정보 오류 팝업 CSS END **********/


/********** 계정 OTP QRCode 업로드 modal START **********/


#store_account_add_otp_secret .modal_wrapper .modal_container .modal_body .info_box {
    padding: 10px 20px;
}

#store_account_add_otp_secret .modal_wrapper .modal_container .modal_body .info_box .small {
    font-size: 13px;
}

#store_account_add_otp_secret .modal_wrapper .modal_container .modal_body .otp_value_input_group {
    width: 100%;
    max-width: 500px;
}

#store_account_add_otp_secret .modal_wrapper .modal_container .modal_body .input_value_box.write {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border: 1.5px solid #86d8d8;
    border-radius: 12px;
    background-color: #fff;
    cursor: pointer;
}

/* 파일 선택 시 보더 색상 변경 효과 */
#store_account_add_otp_secret .modal_wrapper .modal_container .modal_body .input_value_box.write.has-file {
    border-color: #4ebaba;
    background-color: #f0fdfd;
}

#store_account_add_otp_secret .modal_wrapper .modal_container .modal_body .upload_text {
    font-size: 15px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 파일명이 길면 ... 처리 */
    margin-right: 10px;
}

#store_account_add_otp_secret .modal_wrapper .modal_container .modal_body .input_value_box.write input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

#store_account_add_otp_secret .modal_wrapper .modal_container .modal_body .small_info {
    margin-top: 10px;
    font-size: 13px;
    color: #a36b4f;
}

/********** 계정 OTP QRCode 업로드 modal END **********/


/********** 은행 출금 동의 modal START **********/

#store_account_add_bank_auth .modal_container .modal_body .store_account_add_data_wrap {
    margin-bottom: 35px;
    padding: 0 28px;
    box-sizing: border-box;
}

#store_account_add_bank_auth .modal_container .modal_body .store_account_add_data_wrap .account_info_group {
    margin-bottom: 20px;
}

#store_account_add_bank_auth .modal_container .modal_body .store_info_box {
    width: 100%; /* 너비 조정 가능 */
    padding: 10px 0;
}

/* 정보 패널의 기본 스타일 */
#store_account_add_bank_auth .modal_container .modal_body .store_info_box .info-panel {
    display: flex; /* 아이콘과 내용을 가로로 나열 */
    align-items: flex-start; /* 아이콘과 내용이 위쪽 정렬되도록 함 */
    padding: 15px; /* 내부 여백 */
    border-radius: 8px; /* 모서리 둥글게 */
    
    /* 배경색: 이미지와 유사한 옅은 파란색/하늘색 */
    background-color: #e6f7ff; /* 매우 옅은 파란색 */
    /* 테두리: 배경색보다 약간 진한 파란색 테두리를 추가하여 명확하게 할 수 있습니다. */
    /* border: 1px solid #91d5ff; */
}

/* 정보 아이콘 컨테이너 */
#store_account_add_bank_auth .modal_container .modal_body .store_info_box .info-icon {
    flex-shrink: 0; /* 내용이 줄어들 때 아이콘은 크기를 유지 */
    margin-right: 15px; /* 아이콘과 내용 사이의 간격 */
    
    /* 아이콘 스타일링 - 이미지의 파란색 원 모양 */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #1890ff; /* 파란색 원 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 아이콘 심볼 (흰색 'i' 모양) */
#store_account_add_bank_auth .modal_container .modal_body .store_info_box .info-icon .icon-symbol {
    color: white; /* 흰색 'i' */
    font-size: 14px; /* 'i' 크기 */
    font-weight: bold;
    line-height: 1;
}

/* 정보 내용 텍스트 스타일 */
#store_account_add_bank_auth .modal_container .modal_body .store_info_box .info-content {
    color: #333; /* 텍스트 색상 */
    font-size: 14px; /* 텍스트 크기 */
    line-height: 1.5;
}

#store_account_add_bank_auth .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap {
    display: flex; justify-content: center; align-items: center;
    width: 15px; height: 15px;
    border-radius: 50%; border: 1px solid #101010;
    color: #101010; font-size: 13px; font-weight: 400;
    position: relative;
    margin-left: 5px;
    margin-top: 4px;
    cursor: pointer;
}

#store_account_add_bank_auth .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap .more_hidden_box {
    display: none;
    width: 207px;
    position: absolute; left: calc(50% - 20px); bottom: 28px;
    background-color: #fff;
    border-radius: 6px; border: 1px solid #707070; box-sizing: border-box;
    padding: 5px 10px;
}

#store_account_add_bank_auth .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap .more_hidden_box::after {
    content: '';
    display: block;
    width: 8px; height: 8px;
    position: absolute; bottom: -5px; left: calc(50% - 87px);
    background-color: #fff;
    border: 1px solid #707070; border-top: 0; border-left: 0;
    transform: rotate(45deg);
}

#store_account_add_bank_auth .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap:hover .more_hidden_box {
    display: block;
}

#store_account_add_bank_auth .modal_container .modal_body .store_account_add_data_wrap .account_info_group .input_label .hover_action_wrap .more_btn:hover~.more_hidden_box {
    display: block;
}


#store_account_add_bank_auth .modal_container .modal_body .btn_area {
    display: flex; justify-content: space-around; margin-bottom: 15px; 
}

#store_account_add_bank_auth .modal_container .modal_body .add_btn {
    width: 160px; height: 50px;
    color: #FFF; font-size: 14px; font-weight: 400;
    border-radius: 6px;
    background-color: #29C4BE;
    cursor: pointer;
}

/********** 은행 출금 동의 modal END **********/


/********** 자동 선정산 중지 팝업 modal START **********/

/* 해당 모달 컨테이너 내부의 요소만 조절하도록 스코프 제한 */

#store_auto_prepay_off .modal_title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #101010;
    margin-bottom: 25px;
    margin-top: 10px;
}

/* 섹션 공통 */
#store_auto_prepay_off .survey_section {
    margin-bottom: 24px;
}

#store_auto_prepay_off .section_label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #101010;
    margin-bottom: 10px;
}

#store_auto_prepay_off .section_label .optional {
    color: #606060;
    font-weight: 500;
    font-size: 14px;
}

/* 서비스 만족도 (별점) */
#store_auto_prepay_off .rating_box {
    background-color: #F2F4F6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

#store_auto_prepay_off .rating_stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

#store_auto_prepay_off .rating_stars input[type="radio"] {
    display: none;
}

#store_auto_prepay_off .rating_stars label {
    font-size: 42px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.2s ease;

    /* 굵기 1.5px로 #C9C9C9 색상의 테두리를 생성 */
    -webkit-text-stroke: 1px #C9C9C9;
}

#store_auto_prepay_off .rating_stars input[type="radio"]:checked ~ label,
#store_auto_prepay_off .rating_stars label:hover,
#store_auto_prepay_off .rating_stars label:hover ~ label {
    color: #29C4BE;
    -webkit-text-stroke: 0px #29C4BE;
}

#store_auto_prepay_off .rating_labels {
    display: flex;
    justify-content: center;
    padding: 0;
    font-size: 13px;
    color: #333333;
    font-weight: 500;
    /* max-width: 278px; */
    gap: 191px;
}

/* 추가 불편사항 (Textarea) */
#store_auto_prepay_off .textarea_wrap {
    position: relative;
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
}

#store_auto_prepay_off .textarea_wrap textarea {
    width: 100%;
    height: 140px;
    border: none;
    resize: none;
    font-size: 14px;
    outline: none;
    color: #333333;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
}

#store_auto_prepay_off .textarea_wrap textarea::placeholder {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    color: #333333;
}

#store_auto_prepay_off .char_count {
    position: absolute;
    bottom: 12px;
    right: 15px;
    font-size: 12px;
    color: #8D8D8D;
}

/* 하단 버튼 영역 */
#store_auto_prepay_off .btn_area {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

#store_auto_prepay_off .btn_area button {
    flex: 1;
    height: 50px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

#store_auto_prepay_off .btn_close {
    background-color: #ffffff;
    border: 1px solid #29C4BE;
    color: #29C4BE;
}

#store_auto_prepay_off .btn_request {
    background-color: #29C4BE;
    border: none;
    color: #ffffff;
}

#store_auto_prepay_off .btn_area button:hover {
    opacity: 0.9;
}

/********** 자동 선정산 중지 팝업 modal END **********/