@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

.new_member_join {
    width: 100%;
    max-width: 466px;
    margin: 40px auto;
    font-family: 'pretendard', sans-serif;
}

.new_member_join .join_title {
    font-size: 30px;
    font-weight: 600;
    color: #111;
}

.new_member_join .type_toggle_btn_wrap {
    position: relative;
  background-color: #ededed;
  border-radius: 51px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
  margin: 40px 0 24px;
  box-sizing: border-box;
}

.new_member_join .type_toggle_btn_wrap::before{
    content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: 44px;
  background-color: #111;
  border-radius: 58px;
  transition: all 0.5s ease;
  z-index: 0;
}

.new_member_join .type_toggle_btn_wrap .type_toggle_btn {
    position: relative;
  flex: 1;
  text-align: center;
  z-index: 1;
  height: 44px;
  line-height: 44px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  border-radius: 58px;
  transition: color 0.5s ease;
  cursor: pointer;
}

.new_member_join .type_toggle_btn_wrap .type_toggle_btn.active {
    color: #fff;
}
.type_toggle_btn_wrap.business-active::before {
  transform: translateX(100%);
}

.new_member_join .join_procedures {
    color: #2B398F;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 40px;
}
.new_member_join .join_procedures > a {
    display: flex;
    align-items: center;
    font-size:15px;
    font-weight: 500;
}

.new_member_join .content_slider_wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.new_member_join .content_slider_wrap .content_slider_inner {
    display: flex;
    width: 200%;
    transition: transform 0.5s ease-in-out;
}

.join_guide {
    width: 50%;
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
    overflow:hidden;
}

.join_guide.active {
    display: block;
}

.join_guide .guide_list {
    list-style: disc;
    padding-left: 20px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    word-break: keep-all;
}

.join_guide .guide_list > li:last-of-type {
    list-style: none;
    color: #555;
}

.join_guide .guide_list > li:last-of-type > a {
    display: inline-flex;
    align-items: center;
    color: #2B398F;
    font-size: 15px;
}

.join_guide .btn_wrap a {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: #111;
    color: #fff;
    height: 52px;
    border-radius: 27px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 40px;
}

.join_guide .btn_wrap a > img {
    filter: invert(100%) brightness(100%);
    margin-left: 8px;
}

.join_guide .business_type_dsec {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.business_type_select_wrap {
    margin-top: 20px;
}

.business_type_select_wrap .business_type_select {
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 20px 24px;
    box-sizing: border-box;
}

.business_type_select_wrap .business_type_select.selected{
    border: 1px solid #2B398F;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.16);
}

.business_type_select_wrap .business_type_select.distribution {
    margin-top: 20px;
}

.business_type_select_wrap .business_type_select .business_type_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

.business_type_select_wrap .business_type_select .business_type_title input[type='checkbox'].new_chk {
    width: 20px;
    height: 20px;
    margin: 0;
}
.business_type_select_wrap .business_type_select .business_type_title input[type='checkbox'].new_chk:focus{
    outline: none;
    box-shadow: none; 
}
.business_type_select .business_type_detail {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.business_type_select.institution .business_type_detail span {
    color: #555;
    font-size: 15px;
    display: block;
}

.business_type_select.distribution .business_type_detail ul {
    list-style: disc;
    padding-left: 20px;
}

.business_type_select.distribution .business_type_detail .distribution_notsale {
    color: #2B398F;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.join_guide.business_type .btn_wrap > a.disabled {
    opacity: 0.4;
}

/* 회원 유형별 가입 절차 안내 모달 */
.basic_modal.member_type_guide_modal .basic_modal_body {
    display: flex;
    flex-direction: column;
    gap:20px;
}
.basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide{
    width:579px;
    border:1px solid #ddd;
    border-radius: 16px;
    padding:24px;
    box-sizing: border-box;
}

.basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide .member_type_txt{
    font-size: 18px;
    font-weight:600;
    color:#111;
}

.basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide .document_guide{
    background-color: #F1F7FF;
    border-radius: 12px;
    color:#333;
    font-size:16px;
    font-weight:500;
    padding:12px 16px;
    box-sizing: border-box;
    margin:16px 0;
}

.basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide ul{
    font-size:16px;
    font-weight:500;
    color:#555;
    line-height: 1.8;
    list-style: disc;
    padding-left:20px;
}
.basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide .member_level_guide{
    border-top:1px solid #ddd;
    padding-top:16px;
    margin-top:16px;
}
.basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide .member_level_guide ul{
    list-style: none;
    padding:0;
}
.basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide .member_level_guide ul > li{
    display: flex;
}
.basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide .member_level_guide ul > li + li{
    margin-top:8px;
}
.basic_modal.member_type_guide_modal .level_label{
    padding:0 10px;
    box-sizing: border-box;
    color:#fff;
    font-size:15px;
    font-weight:500;
    margin-right: 10px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.basic_modal.member_type_guide_modal .level_label.A{
    background-color: #0DB4C0;
}
.basic_modal.member_type_guide_modal .level_label.B{
    background-color: #0F6CD7;
}
.level_label.C{
    background-color: #653BE1;
}

/* 유통업체 회원 구매 불가 품목 모달 */
.basic_modal.distribution_notsale_modal .basic_modal_body {
    display: flex;
    flex-direction: column;
    gap:24px;
}
.basic_modal.distribution_notsale_modal .basic_modal_body > div{
    width:579px;
}
.basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_guide > ul{
    list-style: disc;
    padding-left:20px;
    font-size: 16px;
    font-weight:500;
    color:#555;
}

.basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap{
    border:1px solid #ddd;
    border-radius: 16px;
    padding:24px;
    box-sizing: border-box;
    height:512px;
    overflow-y:overlay;
}

/* 스크롤바 스타일 */
.basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap::-webkit-scrollbar {
    width: 15px;
}
.basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap::-webkit-scrollbar-thumb {
    height: 30%;
    background-color: #999; 
    border-radius: 15px;
    background-clip: padding-box;
    border: 5.5px solid transparent;
}

.basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap::-webkit-scrollbar-track {
    background-color: transparent;
}

.basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap .distribution_notsale_list_title{
    font-size: 18px;
    color:#111;
    margin-bottom:24px;
    font-weight: 600;
}

.basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap > ul {
    list-style: disc;
    padding-left:20px;
    line-height: 1.8;
    color:#333;
    font-size:16px;
    font-weight:500;
}

.join_step{
    font-family: 'pretendard', sans-serif;
    width:466px;
    padding:40px 0 120px;
    margin: 0 auto;
}
.join_step .join_step_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.join_step .join_step_title .title{
    font-size: 30px;
    font-weight:600;
    color:#111;
}
.join_step .join_step_title .step{
    font-size:16px;
    font-weight:500;
    color:#555;
    background-color: #F6F6F6;
    padding:4px 12px;
    box-sizing: border-box;
    border-radius: 30px;
}
.join_step .join_step_title .step span.current{
    color:#2B398F;
    font-size:16px;
}
.service_agree .input_wrap {
    display: flex;
    width:calc(100% - 30px);
}
.service_agree .input_wrap input[type='checkbox'].new_chk{
    width:20px;
    height:20px;
    margin-top:2px;
}


.service_agree .input_wrap input[type='checkbox'].new_chk + label{
    display: flex;
    width:calc(100% - 55px);
    color:#111 !important;
    cursor: pointer;
    margin-right: 0;
}

.service_agree .input_wrap label span{
    display: block;
    font-size:16px;
    font-weight:500;
}
.service_agree .input_wrap label span:first-of-type{
    width:30px;
}
.service_agree .input_wrap label span:last-of-type{
    width:calc(100% - 30px);
}

.service_agree .input_wrap label span.essential{
    color:#2B398F;
    margin-right: 6px;
}
.service_agree .input_wrap label span.option{
    color:#777;
    margin-right: 6px;
}
.service_agree_list{
    border-top:1px solid #ddd;
    margin-top:24px;
    padding-top:24px;
}
.service_agree_list > li{
    display: flex;
    justify-content: space-between;
}

.service_agree_list > li + li{
    margin-top:32px;
}
.service_agree_list > li a.view_content{
    font-size: 15px;
    font-weight:500;
    color:#555;
    text-decoration: underline;
}
.join_step .btn_wrap{
    margin-top:40px;
}
.join_step .btn_wrap a{
    display: block;
    width:100%;
    border-radius: 27px;
    font-size:16px;
    font-weight: 600;
    text-align: center;
    height:52px;
    line-height: 52px;
    padding:0;
    box-sizing: border-box;
}
.service_agree_list > li:last-of-type .input_wrap{
    flex-wrap: wrap;
}
.service_agree_list > li .input_wrap .input_option_wrap{
    width:100%;
    display: flex;
    gap:42px;
    align-items: center;
    padding-left:25px;
    padding-top:24px;
    box-sizing: border-box;
}

.service_agree .input_wrap .input_option_wrap input[type='checkbox'].new_chk + label{
    width:auto;
    color:#555 !important;
}

.service_agree_list > li .input_wrap .input_option{
    display: flex;
    align-items: center;
}

input[type='checkbox'].new_chk.not_bg{
    border:none;
}

input[type='checkbox'].new_chk.not_bg:before{
    border: solid #BDBDBD;
    border-width: 0 2px 2px 0;
}

input[type='checkbox'].new_chk.not_bg:checked{
    background-color:transparent;
}

input[type='checkbox'].new_chk.not_bg:checked:before{
    border: solid #2B398F;
    border-width: 0 2px 2px 0;
}

.join_step .mobile_identification div{
    display: flex;
    justify-content: center;
}
.mobile_identification_img{
    padding-top:20px;
}
.mobile_identification_desc_title{
    font-size: 24px;
    font-weight:600;
    color:#111;
    margin-top:24px;
    margin-bottom:16px;
}
.mobile_identification_desc_txt{
    font-size:16px;
    font-weight: 500;
    color:#555;
    padding-bottom: 40px;
}

.join_form_guide .join_form_guide_title{
    font-size:18px;
    font-weight: 600;
    color:#111;
    margin-bottom:12px;
}
.join_form_guide .join_form_guide_desc{
    padding:20px 23px;
    box-sizing: border-box;
    font-size:16px;
    font-weight: 500;
    color:#555;
    background-color: #F6F6F6;
    border-radius: 12px;
    margin-bottom:24px;
}
.join_input_wrap + .join_input_wrap{
    margin-top:32px;
}
.join_input_wrap .join_title{
    font-size: 14px;
    font-weight: 500;
    color:#333;
    margin-bottom: 6px;
}

.join_input_wrap .join_title .essential{
    text-indent: -999em;
    display: inline-block;
    width:4px;
    height:4px;
    border-radius: 4px;
    background-color: #2B398F;
}
.join_input_wrap input.new_input_type{
    width:100%;
    font-size:16px;
    font-weight:500;
    color:#111;
    padding:0 16px;
}
.join_input_wrap input.hidden{
    display: none;
}
.join_input_wrap input.new_input_type.disabled{
    background-color: #F6F6F6;
    opacity: 0.4;
}
.join_input_wrap input.new_input_type.join_id{
    width:calc(100% - 110px);
}
.join_input_wrap .join_input{
    display: flex;
    justify-content: space-between;
}
.join_input a.id_chk{
    display: block;
    width:100px;
    height:44px;
    line-height: 44px;
    text-align: center;
    background-color: #F6F6F6;
    border-radius: 24px;
    font-size:16px;
    font-weight:600;
    color:#333;
}
.join_input_wrap .join_input_desc{
    margin-top:6px;
    font-size:14px;
    font-weight:500;
    color:#999;
}
.join_input.radio{
    gap:10px;
    padding:0;
}
.gender_raio_style + label{
    width:50%;
    height:44px;
    line-height: 44px;
    text-align: center;
    border:1px solid #ddd;
    border-radius: 24px;
    font-size:16px;
    font-weight:500;
    color:#111;
    cursor: pointer;
}
.gender_raio_style:checked + label{
    color:#2b398f;
    border-color:#2b398f;
}
.join_input_wrap.email .join_input{
    flex-direction: column;
    gap:10px;
}
.join_input_wrap.email .join_input .join_input_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.join_input_wrap.email .join_input .join_input_inner .new_input_type[type="text"]{
    width:47%;
}
.join_input_wrap.email .join_input .join_input_inner span{
    color:#333;
    font-size: 16px;
    font-weight: 500;
}
.join_input_wrap.email .join_input .join_input_inner .new_select{
    width:100%;
    border-radius: 22px;
    padding-right:45px;
}
.join_input_wrap.email .join_input .join_input_inner .new_select.nice-select:after{
    right:20px;
}

.join_input_wrap.address .join_input + .join_input{
    margin-top:10px;
}

.join_input_wrap.address .join_input a.postcode_search{
    background-color: #F6F6F6;
    border-radius: 24px;
    color:#333;
    width:130px;
    height: 44px;
    line-height: 44px;
    font-size:16px;
    font-weight: 600;
    text-align: center;
}

.join_input_wrap.address input.join_address1_1,
.join_input_wrap.address input.join_address2_1{
    width:calc(100% - 140px);
}
.join_input.tell{
    align-items: center;
}
.join_input.tell .new_input_type{
    width:30%;
}
.join_input.tell span{
    font-size:16px;
    font-weight: 500;
    color:#333;
}

.join_complet_title{
    font-size: 24px;
    font-weight: 600;
    color:#111;
    margin-top:40px;
}
.join_complet_txt{
    font-size:18px;
    font-weight: 600;
    color:#333;
    margin-top:40px;
    margin-bottom: 12px;
}
.qualification_confirm_guide{
    font-size: 15px;
    font-weight:500;
    color:#555;
}

.join_complet_content div{
    display: flex;
    justify-content: center;
}
.join_complet_img{
    padding-top:20px;
}
.btn_wrap.join_complet{
    display: flex;
    justify-content: center;
    gap:10px;
}
.btn_wrap.join_complet a{
    display: block;
    width:50%;
}
.business_identification .business_identification_title{
    font-size: 18px;
    font-weight: 600;
    color:#111;
    margin-bottom: 24px;
}
.business_identification .join_input_wrap + .join_input_wrap{
    margin-top:24px;
}
.join_input_wrap .join_input.business_num{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:6px;
}

.join_input_wrap .join_input.business_num span{
    font-size: 16px;
    font-weight: 500;
    color:#333;
}
.business_identification_desc{
    background-color: #F6F6F6;
    border-radius: 12px;
    padding:20px;
    box-sizing: border-box;
    margin-top:40px;
}
.business_identification_desc ul{
    list-style: disc;
    font-size: 16px;
    font-weight:500;
    color:#555;
    padding-left:20px;
}
.business_identification_desc ul > li + li{
    margin-top:8px;
}
.join_form.institution .join_form_guide{
    margin-bottom: 40px;
}
.join_form.institution .join_form_guide .join_form_guide_desc{
    color:#111;
    font-size:18px;
    font-weight: 600;
    margin-bottom:16px;
}
.join_form.institution .join_form_guide .join_form_guide_desc_small{
    font-size:16px;
    font-weight:500;
    color:#2B398F;
}
.institution_join_title{
    font-size: 18px;
    font-weight:600;
    color:#111;
    margin-bottom: 32px;
}

.institution_join_title.part_line{
    margin-top:40px;
    padding-top:32px;
    border-top:1px solid #ddd;
}
.join_input_wrap.institution_classification .new_select{
    width:100%;
    border-radius: 22px;
    padding-right: 45px;
}
.join_input_wrap.institution_classification .join_input .new_select.nice-select:after{
    right:20px;
}

.join_input_wrap .new_select.nice-select{
    font-size: 16px;
    font-weight:500;
    color:#111;
}
.join_input_wrap.chk_responsibility .join_input{
    justify-content: normal;
}
.join_input_wrap.chk_responsibility .join_input label{
    color:#111;
}

.join_input .file_add_box{
    width:100%;
    display: flex;
    justify-content: space-between;
    padding-right:100px;
}
.join_input .file_add_box input#FileTxt{
    width:100%;
}
.join_input .file_add_box .btn_file{
    right:0;
    left:inherit;
    width:100px;
    height:44px;
    line-height: 44px;
    font-size: 16px;
    font-weight:600;
    color:#333;
    text-align: center;
    background-color: #F6F6F6;
    border-radius: 24px;
}

.mobile_identification_modal .basic_modal_body .join_input_wrap{
    width:579px;
}
.mobile_identification_modal .basic_modal_body .join_input_wrap:first-of-type{
    margin-top:16px;
}
.mobile_identification_modal .basic_modal_body .join_input_wrap .join_title{
    font-size: 18px;
    font-weight: 600;
    color:#111;
}
.mobile_identification_modal .basic_modal_body .join_input{
    display: flex;
    justify-content: normal;
    align-items: center;
}
.mobile_identification_modal .basic_modal_body .join_input.tell{
    display: flex;
    justify-content: space-between;
    gap:12px;
}
.mobile_identification_modal .basic_modal_body .join_input.verification{
    gap:20px;
    margin-bottom: 12px;
}
.mobile_identification_modal .basic_modal_body .join_input.tell .identification_btn{
    display: flex;
    width:130px;
    height:44px;
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    background-color: #F6F6F6;
    color:#111;
    font-size:16px;
    font-weight:600;
}
.mobile_identification_modal .basic_modal_body .join_input.tell .join_input_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:6px;
}
.mobile_identification_modal .basic_modal_body .join_input.tell input.new_input_type{
    width:33.333%
}

.join_input .verification_num{
    position: relative;
}
.join_input .verification_num  input.new_input_type{
    width:300px;
    padding-right: 70px;
}
.join_input .verification_num .time_limit{
    position: absolute;
    display: flex;
    right:16px;
    top:0;
    height:44px;
    align-items: center;
    color:#2b398f;
    font-size:16px;
    font-weight: 500;
}
.join_input .verification_desc{
    font-size: 16px;
    font-weight: 500;
    color:#777;
    display: flex;
    align-items: center;
}
.join_input .verification_desc > a{
    margin-left:6px;
}

.alert_modal.mobile_identification_confirm_modal .basic_modal_header{
    padding: 40px 20px 0 20px;
    box-sizing: border-box;
    justify-content: normal;
    font-size: 18px;
    font-weight: 600;
}
.alert_modal.mobile_identification_confirm_modal .basic_modal_body{
    padding:16px 20px 40px 20px;
    box-sizing: border-box;
    font-size:16px;
    font-weight: 500;
    color:#555;
    margin-bottom: 0;
}
.alert_modal.mobile_identification_confirm_modal .basic_modal_footer{
    justify-content: flex-end;
}
.alert_modal.mobile_identification_confirm_modal .basic_modal_footer a{
    border-radius: 24px;
} 

#newModal.join .basic_modal_content{
	width:auto;
	max-width:inherit;
}

@media (max-width:680px){
    .new_member_join{
        margin:24px auto;
        padding:0 20px;
        box-sizing: border-box;
    }
    .new_member_join .join_title{
        font-size:24px;
    }
    .basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide{
        width:100%;
        padding:20px;
    }
    .basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide .member_type_txt{
        font-size:16px;
    }
    .basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide .document_guide{
        font-size: 14px;
    }
    .basic_modal.member_type_guide_modal .basic_modal_body .member_type_guide ul{
        font-size: 14px;
    }
    .basic_modal.member_type_guide_modal .level_label{
        font-size:12px;
    }
    
    .basic_modal.distribution_notsale_modal .basic_modal_body > div{
        width:100%;
    }
    .basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap{
        padding:20px;
    }
    .basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_guide > ul{
        font-size: 14px;
    }
    .basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap .distribution_notsale_list_title{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .basic_modal.distribution_notsale_modal .basic_modal_body .distribution_notsale_list_wrap > ul{
        font-size: 14px;
    }
    .join_step{
        width:100%;
        padding:0 20px;
        box-sizing: border-box;
        margin-top:24px;
    }
    .join_step .join_step_title .title{
        font-size: 24px;
    }
    .service_agree_list > li .input_wrap .input_option_wrap{
        flex-direction: column;
        gap:16px;
        align-items: normal;
    }
    .mobile_identification_modal .basic_modal_body .join_input_wrap{
        width:100%;
    }
    .mobile_identification_modal .basic_modal_body .join_input.tell{
        flex-direction: column;
    }
    .mobile_identification_modal .basic_modal_body .join_input.tell .join_input_inner{
        width:100%;
    }
    .mobile_identification_modal .basic_modal_body .join_input.tell .identification_btn{
        width:100%;
    }
    .mobile_identification_modal .basic_modal_body .join_input_wrap:first-of-type{
        margin-top:0;
    }
    .mobile_identification_modal .basic_modal_body .join_input.verification{
        flex-direction: column;
        align-items: normal;
        gap:12px;
    }
    .join_input .verification_num input.new_input_type{
        width:100%;
    }
    .edu_modal.workshop.join .basic_modal_footer{
        border-top:none;
    }
}