/* 계약 시작하기 */

/* 계약 헤더 */
.start_header{
    width: 100%;
    height: 70px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #b2b2b2;
    position: fixed; 
    top: 0;
    z-index: 10;
}
.back_btn_wrap{
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}
.back_btn{
    border-radius: 5px;
    padding: 8px 16px ;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #2A3B56;
    border: 1px solid #2A3B56;
    background-color: #ffffff;
}
.back_btn:hover{
    transition: background-color 0.3s;
    background-color:#2a3b5617;
}
.back_btn img{
    margin-right: 10px;
}
.ri_btn_wrap{
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}


.step_wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
    height: 70px;
}

.step_list{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.step_list p{
    color: #B2B2B2;
    font-size: 16px;
    font-weight: 400;
}
.step_list.active p{
    color: #3B6FC1;
}
.step_list .step_num{
    border-radius: 50%;
    border: 1px solid #B2B2B2;
    background-color: none;
    color: #B2B2B2;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}
.step_list.active .step_num{
    border: 1px solid #3B6FC1;
    background-color: #3B6FC1;
    color: #ffffff;
}

.inner_step_list{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.step_num_r{
    border-radius: 50%;
    border: 1px solid #EF3A49;
    background-color: #fff;
    color: #EF3A49;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}
.step_num_b{
    border-radius: 50%;
    border: 1px solid #268AFF;
    background-color: #fff;
    color: #268AFF;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}
.step_num_g{
    border-radius: 50%;
    border: 1px solid #509F4E;
    background-color: #fff;
    color: #509F4E;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}



/* 계약 시작 본문 */
.start_wrap{
    width: 100%;
    padding-top: 70px;
    background-color: #FAFAFA;
}
.start_wrap2{
    padding: 150px 0 90px;
}
.start_inner{
    max-width: 1000px;
    width: 100%;
    margin: 20px auto 0;
}
.start_inner2{
    width: 100%;
    margin: auto;
    padding: 0;

    display: flex;
    flex-direction: row;
    justify-content: space-between;

    height: calc(100% - 70px); /* 전체 높이에서 헤더(70px)와 푸터(70px)를 제외한 영역 */
    margin-bottom: 70px; /* 푸터 높이만큼 마진 */
    overflow: hidden;
}

.start_wrap h2{
    font-size: 18px;
    font-weight: 500;
    color: #2D2D2D;
}
.upload_area{
    width: 100%;
    height: 150px;
    border-radius: 6px;
    border: 2px dashed #EAEAEA;
    background-color: #FAFBFC;
    cursor: pointer;
}
.upload_before, .upload_after{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.blue_border_btn{
    background-color: #fff;
    box-sizing: border-box;
    display: inline-block;
    padding: 8px 12px;
    color: #2A3B56;
    border: 1px solid #2A3B56;
    border-radius: 5px;
    font-weight: 500;
}
.blue_border_btn:hover{
    transition: background-color 0.3s;
    background-color: #FAFBFC;
}
.blue_border_btn img{
    margin-right: 10px;
}
.upload_area p{
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: #666666;
}

.delete_btn{
    padding: 10px;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-items: center;

}
.delete_btn img{
    margin-left: 6px;
}
.upload_after button.btn_blue_full{
    padding: 10px 20px;
    min-width: 180px;
    border-radius: 5px;

}
.sample_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 924px;
}
.sample_box{
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.sample_img_box{
    position: relative;
    display: block;
}
.sample_hover{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    display: none;

}
.sample_box:hover .sample_img_box img{
    filter: brightness(0.8);

}
.sample_box:hover .sample_hover{
    display: flex;
    transition: all 0.3 ease;
}
.sample_box img{
    max-width: 200px;
    width:100%;
}
.sample_box p{
    font-size: 14px;
    line-height: 1.2;

}
h3.sm_tit{
    color: #2D2D2D;
    font-size: 16px;
    font-weight: 500;
}
.column_cont .subtltie{
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    margin-top: 15px;
    color: #666666;
}
.start_step2{
    background-color: #666666;
    min-height: 100vh;
    height:100%;

}
.start_step2 .start_inner{
    max-width: 530px;
    width: 100%;
    height:100%;
    background-color: #C8C8C8 ;
    margin: 40px auto 100px;
    border-radius: 6px;
    padding: 28px;
}
.start_step2 h2 {
    font-size: 14px;
    font-weight: 600;
    color: #2D2D2D;
}

.start_step2 .radio_wrap label{
    font-size: 14px;
}

.start_step3{
    background-color: #EAEAEA;
    min-height: 100vh;
    height:100%;
}



/* 서명영역지정 */

.start_page_header{
    width: auto;
    display: inline-block;
    height: 60px;
    background-color: #F7F7F7;
    border: 1px solid #EAEAEA;
    border-radius: 30px;
    position: fixed; 
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 0 32px ;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) ;
}


.start_page_header_pagenation{
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.start_page_now{
    border: 1px solid #EAEAEA;
    padding: 8px 12px;
    color: #666666;
    border-radius: 5px;
    font-weight: 500;
    background-color: #fff;
    width: auto;
    display: inline-block;
    max-width: 42px;
    text-align: center;
}



.contract_notice_txt{
    font-size: 14px;
    color: #2D2D2D;
    font-weight: 600;
}

.tit_num_wrap{
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
gap: 12px;
}
.tit_num{
display: inline-block;
border-radius: 6px;
background-color: #eaeaea;
padding: 4px 8px;
color: #666666;
font-weight: 500;
font-size: 13px;
}

.add_area{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 30px 0;
    cursor: pointer;
    border: 2px dashed #EAEAEA;
    background-color: #FAFBFC;
}
.add_area .add_btn{
    display: flex;
    align-items: center;
    font-size: 16px;

    flex-direction: column;
    color: #2A3B56;
    font-weight: 500;
    gap: 16px;
}

.add_area .add_btn.sm_add_btn{
    flex-direction: row;
    color: #666666;
    font-size: 16px;
   }

.dripdorp_wrap{
    position: absolute;
    top: 50%;
    right:-70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-50%);
    gap: 16px;
}



.border_btn_cont_3{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #F8F8F8;
    border: 1px solid #EAEAEA;
    justify-content: space-between;
    border-radius: 5px;
}
.border_btn{
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    background-color: #F8F8F8;
    border-right: 1px solid #EAEAEA;
    width: 33%;
    justify-content: center;

}
.border_btn:last-child{
    border-right: none;
    
}
.border_btn_cont_2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #F8F8F8;
    border: 1px solid #EAEAEA;
    justify-content: space-between;
    border-radius: 5px;
}
.border_btn_cont_2 .border_btn{
width: 50%;
}
.input_border_btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    background-color: #F8F8F8;
    border-left: 1px solid #EAEAEA;
    width: 20%;
    justify-content: center;
    top: 0px;
    right: 0px;
    box-sizing: border-box;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: inset 0px -1px 0px #EAEAEA;
    padding: 12px 20px;
}
.input_border_select{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 20px;
    background-color: #F8F8F8;
    border-right: 1px solid #EAEAEA;
    width: 20%;
    justify-content: center;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    z-index: 1;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 56px;
    height: 39px;
}



.border_btn_input{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #EAEAEA;
    
}
.border_btn_input input{
        border: none !important;
        /* width: 78% !important; */
}



.sm_question{
    width: 14px;
    height: 14px;
}


.start_footer{
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: #FFFFFF;
    z-index: 10;
    bottom: 0;
    padding: 12px;
    border-top: 1px solid #B2B2B2;

}

.btn_cont_2{
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 10px;
}
.start_footer button{
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;

}



.more_select_wrap .more_menu_popup{
    position: absolute;
    top: 35px;
    left: 0;
    right:unset;
    min-width: 100px;
    border-radius: 5px;
}
.more_select_popup li{
padding: 12px ;
box-sizing: border-box;
text-align: center;
border-bottom: 1px solid #EAEAEA;
}



/* 드롭다운 메뉴 스타일 시작*/

.c_start_dropdown {
    position: relative;
    display: block;
    width: 100%;
  }
  .c_start_drop_inner{
    width: 100%;
}
  .c_start_dropdown_btn_wrap {
    min-width : 240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 14px;
    background-color: #fff;
    border: 1px solid #EAEAEA;
    border-top: none;
  }
  /* 색상 변경되는 영역  */
 
  .c_start_member_list,
  .start_inner2_right_m .c_start_dropdown_btn_wrap.c_start_member_list{
    border-left: 4px solid #6A5ACD;
    background-color: hsla(248, 53%, 58%, 0.1);
 }
  
.step_num_color{
    border: 1px solid #6A5ACD;
    background-color: #6A5ACD;
  /* 색상 변경되는 영역  끝*/

  border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #fff;
}
.start_inner2_right_m .c_start_member_list{
    width: 100%;
    display: flex;
    border-radius: 5px;
    border-top: 1px solid #EAEAEA;
}
.start_inner2_right_m .c_start_dropdown_btn_wrap{
    min-width: unset;
}
  .c_start_dropdown_text {
    margin-right: 10px;
    font-size: 15px;
  }
  

  
  /* 드롭다운 메뉴 내용 스타일 */
  .c_start_dropdown_content_wrap {
    display: none;
    /* position: absolute; */
    font-size: 14px;
    background-color: white;
    /* min-width : 220px; */
    border: 1px solid #eaeaea;
    /* box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2); */
    box-sizing: border-box;
    padding: 10px;
    z-index: 1;
  }
  
  .c_start_dropdown_content_wrap a {
    padding: 12px 16px;
    margin-top: 5px;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    text-decoration: none;
    display: block;
    color: black;
  }
 
 
  .c_start_dropdown_content_wrap a:hover,
  .c_start_dropdown_content_wrapa.ative,
  .active.open-signibox,  .active.open-textbox{
    background-color: #f1f1f1;
    font-weight: 500;
    color: #2A3B56;
  }

  .c_start_dropdown_content_wrap.ative{

  }
  .c_start_dropdown_content_wrap .group_1d,
  .c_start_dropdown_content_wrap .group_1d a{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .c_start_dropdown_content_wrap .group_2d,
  .c_start_dropdown_content_wrap .group_2d a{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;;
    gap: 10px;
  }
  .c_start_dropdown_content .group_2d_ac.active a{
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #FAFAFA;
  }
  .c_start_dropdown_content_wrap .group_3d,
  .c_start_dropdown_content_wrap .group_3d a{
    width: 100%;
    flex-direction: row;
    display: flex;
    align-items:center;
    justify-content: space-between;;
    gap: 10px;
    margin-top: 0;

  }
  .c_start_dropdown_content_wrap .group_3d a{
    border: none;
    border-top: 1px solid #EAEAEA;
    border-radius: 0;
      }

  .c_start_dropdown_content_wrap .group_4d,
  .c_start_dropdown_content_wrap .group_4d a{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;;
    gap: 10px;
  }
  .c_start_dropdown_content_wrap .group_4d a{
background-color: #FAFAFA;
color: #666666;
padding-left: 10px;

  }
  .c_start_dropdown_arrow {
    display: inline-block;
    width: 7px;
    height: 4px;
    background-image: url('../img/start_drop_arr.svg');
    background-repeat: no-repeat;
    background-position:center;
    transition: transform 0.3s ease;
    padding: 10px;
}
 
  /* 드롭다운이 열렸을 때 */



  .c_start_dropdown_content_wrap {
    display: none;
  }
  
  .c_start_dropdown_content_wrap.show {
    display: block;
    border-top: none ;
    padding-bottom: 15px;
  }
  .c_start_dropdown_btn.active  
  .c_start_dropdown_arrow {
    transform: rotate(180deg); /* 화살표 방향 바꾸기 */
  }

/* 드롭다운 메뉴 스타일 끝*/



.start_inner2_left_m{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤 */
    background-color: #fff;
    /* margin:20px 0 0 30px; */
    height: 100vh;
    border-right: 1px solid #EAEAEA;
    transition: all 0.3s;
    z-index: 10;
    position: fixed;
    left: 0;
    top: 70px;
    padding-bottom: 150px;
}

.start_inner2_right_m{
    display: flex;
    flex-direction: column;
    width: 240px;
    height: 100%;
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤 */
    background-color: #fff;
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤 */
    /* margin:20px 0 0 30px; */
    height: 100vh;
    border-left: 1px solid #EAEAEA;
    transition: all 0.3s;
    z-index: 10;
    position: fixed;
    padding-bottom: 150px;
    right: 0;
    top: 70px;
    width: 300px; /* 필요에 따라 조정 */
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.start_inner2_right{
    display: flex;
    flex-direction: column;
    width: 240px;
    height: 100%;
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤 */
    background-color: #fff;
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤 */
    /* margin:20px 0 0 30px; */
    height: 100vh;
    border-left: 1px solid #EAEAEA;
    transition: all 0.3s;
    z-index: 10;
    position: fixed;
    padding-bottom: 150px;
    right: 0;
    top: 70px;
    width: 300px; /* 필요에 따라 조정 */
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}
.start_inner2_right_m.active {
    transform: translateX(0);
    opacity: 1;
  }
.start_inner2_center_m{
    width: 100%;
    height: 100%;
    text-align: center;
}
.start_inner2_right_m_title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 14px;
    background-color: #fff;
    border-bottom: 1px solid #EAEAEA;
    color: #2A3B56;
    font-weight: 500;
    
    
}
.start_inner2_right_m_title div{
    display: flex;
    gap: 15px;
    flex-direction: row;
    align-items: center;
}

.start_inner2_right_m .c_start_dropdown_content_wrap{
    box-shadow: none;
    margin-bottom: 0;
    border-left: none;
    padding-bottom: 10px;

}
.start_inner2_right_m .c_start_dropdown_btn_wrap{
    border-left: none;
    background-color: #f8f8f8;
}
.start_inner2_right_m select,
.start_inner2_right_m input[type="text"],
.start_inner2_right_m .input_txt_wrap,
.start_inner2_right_m textarea{
    width: 100%;
    height: 37px;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    margin-bottom: 10px;
    padding-left: 10px;
    font-family: "Pretendard";
}
.start_inner2_right_m input[type="text"]:last-child{
    margin-bottom: 0px;

}
.start_inner2_right_m textarea{
    height: 100px;
    padding: 10px;
    Resize: none;
}
.input_txt_wrap{
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.start_inner2_right_m select:last-child{
    /* margin-bottom: 0 */
}

.c_start_dropdown_select_flex{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.c_start_dropdown_checkbox{
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.c_start_dropdown_checkbox:hover{
    background-color: #f8f8f8;
}

.c_start_dropdown_h2{
    font-weight: 500;
    margin-bottom: 10px;
}

.c_start_dropdown_xy_wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
}
.c_start_dropdown_xy_wrap .input_txt_wrap{
    font-size: 13px;
}
.c_start_dropdown_xy{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.c_start_dropdown_xy p{
    color: #666;
    width: 50%;
    text-align: center;
}
.c_start_dropdown_xy div{
    width: 50%;
}
.c_start_dropdown_xy .input_txt_wrap{
    text-align: center;
}
.c_start_dropdown_color {
    width: 32px;
    height: 34px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent;
    margin-bottom: 10px;
	border: none;
  }
.c_start_dropdown_color::-webkit-color-swatch {
	border-radius: 50%;
	border: none;
  }
.c_start_dropdown_boder_btn{
    padding: 2px 0 2px 10px;
    font-size: 14px;
    color: #2d2d2d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    border: 1px solid #EAEAEA;
    margin-bottom: 10px;
}
.c_start_dropdown_file{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid #eaeaea;
    margin: 10px;
}
.c_start_dropdown_tit{
    border-bottom: 1px solid #EAEAEA;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #FAFAFA;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.mass_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 20px;
    border-left: 4px solid #EF3A49;
    border-bottom: 1px solid #EAEAEA;
}
.mass_sender{
height: 100%;
min-height: 50vh;

}
.mass_list h2{
 font-size: 14px;
 font-weight: 500;
 line-height: 1.2;   
 color: #2D2D2D;
}
.mass_list p{
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;   
    color: #666666;
}
.serch_list_wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #EAEAEA;
    max-height: 400px;
    overflow-y: auto;
}
.mass_sender_list{
    padding: 14px 20px;
    width: 100%;
    border-bottom: 1px solid #EAEAEA;
}
.mass_sender_list:hover, .mass_sender_list.active{
background-color: #F8F8F8;
}
.mass_sender_list:hover p, .mass_sender_list.active p{
    color: #2D2D2D;
    }
.mass_sender_list:last-child{
    border-bottom: none;
}

.mass_sender input[type=text].search_txt{
    border: 1px solid #EAEAEA;
    margin-top: 6px;
    padding: 10px 20px;
}
.mass_sender .search_btn{
    margin-top: 8px;
}
.border_btn {
    padding: 12px 20px;
}

input[type="datetime-local"], .ex_c_wrap_form_wrap input[type="number"] {
    border: 1px solid #DCDCDC;
    padding: 10px;
    border-radius: 5px;
}
input[type="datetime-local"], .ex_c_wrap_form_wrap input[type="number"], .border_btn_input input    {
    font-family: "Pretendard";
}


.start_set_btn{
    padding: 8px 12px 10px;
    border-radius: 5px;
    background-color: #fafafa;
    border: 1px solid #DCDCDC;
    color: #666;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.ex_c_wrap_contract_wrap .start_set_btn{
    min-width: 82px;
}

.start_set_btn,
.start_wrap .external_contract_wrap .ex_c_wrap_contract_wrap .ex_c_wrap_contract_wrap_btn button {
    padding: 9px 12px;
}

.start_step4 .external_contract_wrap .ex_c_wrap_contract_wrap .ex_c_wrap_contract_wrap_txt p{
    color:#2d2d2d;
    font-size: 14px;
}
.start_step4 .ex_c_wrap_form_wrap p{
    color:#666666;
    font-size: 14px;
}


.external_contract_wrap .ex_c_wrap_form_wrap input[type="text"], .external_contract_wrap .ex_c_wrap_form_wrap input[type="date"], .external_contract_wrap .ex_c_wrap_form_wrap textarea, .external_contract_wrap .ex_c_wrap_form_wrap select{
    font-family: "Pretendard";
}

.start_step4 .icon_list img{
width: 12px;
height: 12px;
}
.start_step4 .icon_list p,
.start_step4 p {
    color:#666666;
    font-size: 14px;
    font-weight: 400;
}
.start_step4 p.bk_txt{
    color: #2D2D2D;
} 
.border_btn_cont_1 .border_btn{
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
}


.sel_type_btn {
    display: flex;
    margin-bottom: 20px;
}

.sel_type_btn a{
    width: 25%;
    border-right: 1px solid #EAEAEA;
    background-color: #fff;
    padding: 24px;
}
.sel_type_btn_active,
.sel_type_btn a:hover{
    width: 25%;
    background-color: #2A3B56 !important;
    color: #fff;

}
.sel_type_btn a:first-child{
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.sel_type_btn a:last-child{
    border: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.sel_type_btn a div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}



.sign_list_wrap{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sign_list_li{
    padding: 4px 16px;
    border-radius: 5px;
    width: 100%;
    background-color: #f8f8f8;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 14px;
    min-height: 42px;
    position: relative;
    }

.sign_list_round{
    border-radius: 15px;
    padding: 6px 11px;
    color: #fff;
    font-size: 13px;
    background-color: #666666;
}
.sign_list_number{
    color: #fff;
    border-radius: 50%;
    border: 1px solid  #666666;
    font-size: 13px;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
}
#masstemple .sign_list_li p{
    max-width: 40%;
}
.sign_list_li h2{
    font-weight: 400;
    color: #2D2D2D;
    }
 
.sign_list_li input[type="text"], .sign_list_li input[type="email"]{
    height: 32px;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    padding-left: 10px;
    font-family: "Pretendard";
}


.s_toggle_label{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2d2d2d;
    padding-top: 10px;
    font-weight: 500;
}
.check_box_wrap{
 display: flex;
 flex-direction: row;
 align-self: center;
 justify-content: center;
 gap: 10px;

}
.check_box_wrap label{
    font-size: 14px;
    font-weight: 600;
    color: #2D2D2D;
}
.plus_btn_wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
}
.plus_btn_wrap button{
    border: none;
}
.plus_btn_wrap button:first-child{
    border-right: 1px solid #DCDCDC;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.plus_btn_wrap button:last-child{
    border-left: 1px solid #DCDCDC;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.plus_btn_wrap p{
    width: 60px;
    height: 100%;
    text-align: center;
}

#masstemple {
    
}

@media (max-width: 1024px) {
    .start_wrap .external_contract_wrap .ex_c_wrap_contract_wrap {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
  
    #masstemple .start_wrap .contents_container,  #masstemple .content .contents_container {
        min-width: 400px;
    }
}



