@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Blinker:wght@100;200;300;400;600;700;800;900&family=Noto+Sans+KR:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap');

/* 일정관리 시작 */
/* 타이틀 */
.sm_comm_tit {
  width: 100%;
  height: 18px;
  display: flex;
  align-items: center;
  border-left: 3px solid #CF4F00;
  margin-top: 20px;
}

.sm_comm_tit h1 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-left: 5px;
}

.sm_comm_tit button {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: #ccc;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  cursor: pointer;
}

.sm_comm_tit button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

/* 일정관리 섹션 시작 */
.cbn_comm_section {
  /* width: 1610px; */
  width: calc(100% - 7px);
  height: 100vh;
  margin-top: 20px;
}

/* 일정관리 검색조건 */
.cbn_comm_terms {
  /* width: 1390px; */
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.cbn_comm_terms_top {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} 

.cc_terms_line1 {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}

/* 검색조건 법인 */
.corporate_section {
  width: 268px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
}

.corporate_tit {
  width: 118px;
  height: 28px;
  border-radius: 10px;
  background: #FFEDE2;
  line-height: 28px;
}

.corporate_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.corporate_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.corporate_section select:focus option
{
  background: #333;
  color: #fff;
}

.corporate_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 검색조건 공유분류 */
.sm_shse_section {
  width: 598px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  margin-left: 25px;
}

.sm_shse_tit {
  width: 120px;
  height: 28px;
  border-radius: 10px;
  background: #FFEDE2;
  line-height: 28px;
}

.sm_shse_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sm_shse_state_area {
  width: 450px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
  margin-top: 1px;
  margin-right: 5px;
}

/* 개인일정 */
.sm_shse_p_sch {
  width: 78px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 기본 스타일 */
.sm_shse_p_sch>.check_box {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
  user-select: none;
  margin-top: 5px;
}

.sm_shse_p_sch>.check_box>i {
  display: none;
}

/* 체크 상태일 때 변경될 스타일 */
.sm_shse_p_sch>.check_box.active {
  background: #007BDF;
  border: 1px solid #007BDF;
}

/* 체크 상태일 때 아이콘 표시 */
.sm_shse_p_sch>.check_box.active>i {
  font-size: 12px;
  color: #fff;
  display: block; 
}

.sm_shse_p_sch>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
}

/* 회사일정 */
.sm_shse_co_sch {
  width: 78px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 기본 스타일 */
.sm_shse_co_sch>.check_box {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
  user-select: none;
  margin-top: 5px;
}

.sm_shse_co_sch>.check_box>i {
  display: none;
}

/* 체크 상태일 때 변경될 스타일 */
.sm_shse_co_sch>.check_box.active {
  background: #007BDF;
  border: 1px solid #007BDF;
}

/* 체크 상태일 때 아이콘 표시 */
.sm_shse_co_sch>.check_box.active>i {
  font-size: 12px;
  color: #fff;
  display: block; 
}

.sm_shse_co_sch>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
}

/* 부서일정 */
.sm_shse_de_sch {
  width: 78px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 기본 스타일 */
.sm_shse_de_sch>.check_box {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
  user-select: none;
  margin-top: 5px;
}

.sm_shse_de_sch>.check_box>i {
  display: none;
}

/* 체크 상태일 때 변경될 스타일 */
.sm_shse_de_sch>.check_box.active {
  background: #007BDF;
  border: 1px solid #007BDF;
}

/* 체크 상태일 때 아이콘 표시 */
.sm_shse_de_sch>.check_box.active>i {
  font-size: 12px;
  color: #fff;
  display: block; 
}

.sm_shse_de_sch>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
}

/* 임원일정 */
.sm_shse_m_sch {
  width: 76px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 기본 스타일 */
.sm_shse_m_sch>.check_box {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
  user-select: none;
  margin-top: 5px;
}

.sm_shse_m_sch>.check_box>i {
  display: none;
}

/* 체크 상태일 때 변경될 스타일 */
.sm_shse_m_sch>.check_box.active {
  background: #007BDF;
  border: 1px solid #007BDF;
}

/* 체크 상태일 때 아이콘 표시 */
.sm_shse_m_sch>.check_box.active>i {
  font-size: 12px;
  color: #fff;
  display: block; 
}

.sm_shse_m_sch>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
}

/* 전체일정 */
.sm_shse_a_sch {
  width: 78px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 기본 스타일 */
.sm_shse_a_sch>.check_box {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
  user-select: none;
  margin-top: 5px;
}

.sm_shse_a_sch>.check_box>i {
  display: none;
}

/* 체크 상태일 때 변경될 스타일 */
.sm_shse_a_sch>.check_box.active {
  background: #007BDF;
  border: 1px solid #007BDF;
}

/* 체크 상태일 때 아이콘 표시 */
.sm_shse_a_sch>.check_box.active>i {
  font-size: 12px;
  color: #fff;
  display: block; 
}

.sm_shse_a_sch>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
}

/* 검색버튼 */
.search_btn>button {
  border: none;
  background: #333;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 25px;
}

.search_btn>button:hover {
  background: #CF4F00;
  transition: background-color 0.3s ease;
}

.search_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 등록버튼 */
.sign button {
  width: 70px;
  height: 30px;
  border: none;
  border-radius: 10px;
  background: #CF4F00;
  cursor: pointer;
  margin-left: 10px;
}

.sign button:hover {
  background: #007BDF;
  transition: background-color 0.3s ease;
}

.sign button p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

.cc_terms_line2 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sch_terms_pnt_btns {
  width: 240px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 이전버튼 */
.sch_mng_prev_btn>button {
  border: none;
  background: #A5A5A5;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_prev_btn>button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.sch_mng_prev_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 다음버튼 */
.sch_mng_next_btn>button {
  border: none;
  background: #A5A5A5;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_next_btn>button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.sch_mng_next_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 오늘버튼 */
.sch_mng_today_btn>button {
  border: none;
  background: #333;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_today_btn>button:hover {
  background: #007BDF;
  transition: background-color 0.3s ease;
}

.sch_mng_today_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

.sch_terms_mwdl_btns {
  width: 230px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 월 버튼 */
.sch_mng_m_btn button {
  border: none;
  background: #333;
  width: 50px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_m_btn button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.sch_mng_m_btn button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 주 버튼 */
.sch_mng_w_btn button {
  border: none;
  background: #A5A5A5;
  width: 50px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_w_btn button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.sch_mng_w_btn button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 일 버튼 */
.sch_mng_d_btn button {
  border: none;
  background: #A5A5A5;
  width: 50px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_d_btn button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.sch_mng_d_btn button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 목록 버튼 */
.sch_mng_list_btn button {
  border: none;
  background: #A5A5A5;
  width: 50px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_list_btn button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.sch_mng_list_btn button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_main_section {
  width: 100%;
  height: 590px;
  margin-top: 10px;
}

.sch_mng_main_tit {
  width: 100%;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sch_mng_main_tit>h1 {
  color: #333;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}

.sch_mng_cal_section {
  width: 100%;
  height: 534px;
  margin-top: 12px;
  border-top: 1px solid #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.sch_mng_cal_tit_section {
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}

ul.sch_mng_cal_dt_tit {
  width: 100%;
  height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul.sch_mng_cal_dt_tit>li {
  width: 220px;
  height: 26px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sch_mng_cal_sun>p {
  color: #FF0000;
}

.sch_mng_cal_sat>p {
  color: #007CC9;
}

.sch_mng_cal_main_section {
  width: 100%;
  height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

ul.sch_mng_cal_w {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul.sch_mng_cal_w>li {
  width: 218px;
  height: 88px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

ul.sch_mng_cal_w>li:hover {
  background: #fff4d4;
  transition: background-color 0.3s ease;
}

.sch_mng_cal_num_txt {
  width: 198px;
  height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.sch_mng_date_num {
  width: 100%;
  height: 2%px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sch_mng_txt {
  width: 100%;
  height: 45px;
  cursor: pointer;
  z-index: 300;
}

.sch_mng_txt>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}

.sch_mng_date_num_nomal>p {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.sch_mng_date_num_last {
  color: #AEAEAE;
  font-size: 16px;
  font-weight: 400;
}

.sch_mng_date_num_sun {
  color: #F00;
  font-size: 16px;
  font-weight: 400;
}

.sch_mng_date_num_sun_last>p {
  color: #FF9F9F;
  font-size: 16px;
  font-weight: 400;
}

.sch_mng_date_num_sat {
  color: #007CC9;
  font-size: 16px;
  font-weight: 400;
}

.sch_mng_date_num_sat_last>p {
  color: #83CFFF;
  font-size: 16px;
  font-weight: 400;
}

ul.sch_mng_cal_w>li.sch_mng_cal_today {
  border: 1px solid #FFAD7A;
  background: #FFEDE2;
}

/* 일정등록 보기 모달 배경 */
.sch_mng_sv_modal_bg {
  position: fixed; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 9998; 
  display: none; 
}

.sch_mng_sv_modal_bg.on {
  display: block;
}

/* 공지자선택 팝업 */
.sch_mng_sv_modal {
  width: 846px;
  height: 748px;
  position: fixed; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
  align-items: center;
  z-index: 99999;
  display: none;
  flex-direction: column;
}

.sch_mng_sv_modal.on {
  display: flex;
  flex-direction: column;
}

.sch_mng_sv_modal_top {
  width: 808px;
  height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.sch_mng_sv_modal_tit {
  width: 91px;
  height: 26px;
  display: flex;
  align-items: center;
  border-left: 3px solid #CF4F00;
}

.sch_mng_sv_modal_tit h1 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-left: 5px;
}

.sch_mng_sv_modal_main {
  margin-top: 20px;
  width: 810px;
  height: 642px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.sch_mng_sv_modal_line1 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 일정 등록 보기 검색조건 법인 */
.sch_mng_sv_modal_corporate_section {
  width: 387px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
}

.sch_mng_sv_modal_corporate_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sv_modal_corporate_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sv_modal_corporate_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.sch_mng_sv_modal_corporate_section select:focus option
{
  background: #333;
  color: #fff;
}

.sch_mng_sv_modal_corporate_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 검색조건 보기 구분 */
.sch_mng_sv_modal_se_section {
  width: 395px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
}

.sch_mng_sv_modal_se_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sv_modal_se_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sv_modal_line2 {
  width: 100%;
  height: 30px;
}

/* 검색조건 보기 공유분류 */
.sch_mng_sv_modal_s_se_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
}

.sch_mng_sv_modal_s_se_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sv_modal_s_se_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* 라디오버튼 */
.sch_mng_sv_modal_s_se_radio_btn {
  width: 330px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
  margin-top: 3px;
}

.sch_mng_sv_modal_s_se_radio_btn>input {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.sch_mng_sv_modal_s_se_radio_btn>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

.sch_mng_sv_modal_line3 {
  width: 100%;
  height: 30px;
}

.sch_mng_sv_reading_section {
  width: 808px;
  height: 30px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  position: relative;
}

.sch_mng_sv_reading_tit {
  width: 150px;
  height: 30px;
  background: #eee;
  border-radius: 10px;
}

.sch_mng_sv_reading_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
}

.reading {
  width: 210px;
  height: 19px;
  display: flex;
  margin-left: 15px;
}

.reading p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}

.reading_big {
  width: 100px;
  height: 19px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.reading_mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  height: 19px;
  cursor: pointer;
}

.reading_mid i {
  font-size: 13px;
  color: #333;
}

.reading_mid:hover i {
  color: #CF4F00;
  transition: color 0.3s ease;
}

.reading_popup {
  width: 733px;
  height: 762px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
}


.reading_popup.on {
  display: flex;
}

.r_popup_top {
  width: 663px;
  height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.r_popup_tit {
  width: 108px;
  height: 26px;
  display: flex;
  align-items: center;
  border-left: 3px solid #CF4F00;
}

.r_popup_tit h1 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-left: 5px;
}

.r_popup_close {
  color: #333;
  font-size: 23px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.r_popup_close:hover i {
  color: #CF4F00;
  transition: color 0.3s ease;
}

.r_popup_search_btn {
  width: 663px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.r_popup_search_section {
  width: 228px;
  height: 30px;
  border-radius: 10px;
  background: #FFEDE2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.r_popup_search_tit {
  width: 28px;
  height: 18px;
  margin-left: 12px;
  line-height: 18px;
}

.r_popup_search_tit>p {
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.r_popup_search_section select {
  height: 22px;
  border: none;
  background: none;
  margin-right: 12px;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.r_popup_search_section select:focus option 
{
  background: #333;
  color: #fff;
}

.r_popup_btn_section button {
  width: 100px;
  height: 30px;
  border-radius: 10px;
  background: #333;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.r_popup_btn_section button.all_set:hover, 
.r_popup_btn_section button.set_het:hover,
.r_popup_btn_section button.set_com:hover
{
  background: #CF4F00;
  transition: background-color 0.3s ease;
}

.r_popup_main {
  width: 663px;
  height: 561px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.r_popup_main_lt {
  width: 283px;
  height: 561px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.r_popup_main_lt_top {
  width: 100%;
  height: 218px;
}

.r_popup_main_lt_bottom {
  width: 100%;
  height: 323px;
}

.r_popup_main_lt_top {
  width: 100%;
  height: 218px;
}

.notice_sub_menu {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice_sub_bar {
  width: 243px;
  height: 30px;
  border-radius: 10px;
  background: #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice_sub_bar select {
  border: none;
  background: none;
}

.notice_sub_bar select#se_code {
  margin-left: 12px;
}

.notice_sub_bar select#se_nm {
  margin-right: 12px;
}

.notice_sub_bar select#se_se_code {
  margin-left: 12px;
}

.notice_sub_bar select#select_nm {
  margin-right: 12px;
}

.b_menu_side_btn>button {
  width: 30px;
  height: 30px;
  border: none;
  background: #a5a5a5;
  border-radius: 5px;
  cursor: pointer;
}

.b_menu_side_btn>button>i {
  color: #fff;
}

.b_menu_side_btn>button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.b_menu_side_modal {
  width: 172px;
  height: 404px;
  position: fixed;
  transform: translate(-83%, 2%); 
  background: #fff;
  display: none;
  border-radius: 20px;
  border: 1px solid #eee;
  align-items: center;
  z-index: 9999;
  justify-content: center;
}

.b_menu_side_modal.on {
  display: flex;
  flex-direction: column;
}

.menu_side_section {
  width: 134px;
  height: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul.menu_side_list {
  width: 100%;
  height: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.menu_side_list li {
  cursor: pointer;
}

ul.menu_side_list li p {
  color: #AAA;
  font-size: 15px;
  font-weight: 500;
}

ul.menu_side_list li:hover p {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

ul.article_menu li {
  color: #aaa;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}

ul.article_menu li i {
  font-size: 15px;
  color: #aaa;
  margin-right: 15px;
  cursor: pointer;
}

.notice_list_scroll {
  box-sizing: content-box; 
  margin-right: 8px; 
  margin-top: 10px;
  height: 180px;
  position: relative;
  overflow-y: auto; 
  overflow-x: hidden;
}

.r_popup_main_lt_bottom>.notice_list_scroll {
  height: 285px;
}

.notice_sub_menu {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice_sub_bar {
  width: 243px;
  height: 30px;
  border-radius: 10px;
  background: #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice_sub_bar select {
  border: none;
  background: none;
}

.notice_sub_bar select#se_code {
  margin-left: 12px;
}

.notice_sub_bar select#se_nm {
  margin-right: 12px;
}

.notice_sub_bar select#se_se_code {
  margin-left: 12px;
}

.notice_sub_bar select#select_nm {
  margin-right: 12px;
}

.m_menu_side_btn>button {
  width: 30px;
  height: 30px;
  border: none;
  background: #a5a5a5;
  border-radius: 5px;
  cursor: pointer;
}

.m_menu_side_btn>button>i {
  color: #fff;
}

.m_menu_side_btn>button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.m_menu_side_modal {
  width: 172px;
  height: 404px;
  position: fixed;
  transform: translate(-83%, 2%); 
  background: #fff;
  display: none;
  border-radius: 20px;
  border: 1px solid #eee;
  align-items: center;
  z-index: 9999;
  justify-content: center;
}

.m_menu_side_modal.on {
  display: flex;
  flex-direction: column;
}

.menu_side_section {
  width: 134px;
  height: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul.menu_side_list {
  width: 100%;
  height: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.menu_side_list li {
  cursor: pointer;
}

ul.menu_side_list li p {
  color: #AAA;
  font-size: 15px;
  font-weight: 500;
}

ul.menu_side_list li:hover p {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.notice_list_scroll {
  box-sizing: content-box; 
  margin-right: 8px; 
  margin-top: 10px;
  height: 180px;
  position: relative;
  overflow-y: auto; 
  overflow-x: hidden;
}

.r_popup_main_lt_bottom>.notice_list_scroll {
  height: 285px;
}

.notice_list {
  width: 243px;
  /* width: 91%; */
  table-layout: fixed;
  border-collapse: collapse;
}

.notice_list tbody tr {
  background: #fff;
  border-radius: 10px;
  padding: 0;
  height: 30px;
  scroll-snap-align: start;
  cursor: pointer;
  
}

.notice_list tbody tr.odd:hover {
  background: #FBF4EF;
  transition: background-color 0.3s ease;
}

.notice_list tbody tr.even {
  background: #F6F6F6;
}

.notice_list tbody tr.even:hover {
  background: #FBF4EF;
  transition: background-color 0.3s ease;
}

.notice_list tbody tr td {
  height: 30px;
  line-height: 30px; 
  padding: 0; 
}

.notice_list td {
  overflow: hidden;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.notice_list td.title2_list:hover, td.writer2_list:hover, td.check_list:hover {
  font-weight: 600;
}

.notice_list tbody tr td.num_list {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.notice_list tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.r_popup_main_rt {
  width: 340px;
  height: 561px;
}

.r_popup_main_rt>.notice_sub_menu {
  width: 100%;
}

.r_popup_main_rt>.notice_sub_menu>.notice_sub_bar {
  width: 300px;
  display: flex;
  justify-content: center;
}

.r_popup_main_rt>.notice_list_scroll {
  display: flex;
  justify-content: center;
}

.r_popup_main_rt>.notice_list_scroll>p {
  color: #333;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  width: 150px;
  height: 16px;
}

.notice_sub_menu {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice_sub_bar {
  width: 243px;
  height: 30px;
  border-radius: 10px;
  background: #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice_sub_bar select {
  border: none;
  background: none;
}

.notice_sub_bar select#se_code {
  margin-left: 12px;
}

.notice_sub_bar select#se_nm {
  margin-right: 12px;
}

.notice_sub_bar select#se_se_code {
  margin-left: 12px;
}

.notice_sub_bar select#select_nm {
  margin-right: 12px;
}

.s_menu_side_btn>button {
  width: 30px;
  height: 30px;
  border: none;
  background: #a5a5a5;
  border-radius: 5px;
  cursor: pointer;
}

.s_menu_side_btn>button>i {
  color: #fff;
}

.s_menu_side_btn>button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.s_menu_side_modal {
  width: 172px;
  height: 404px;
  position: fixed;
  transform: translate(-83%, 2%); 
  background: #fff;
  display: none;
  border-radius: 20px;
  border: 1px solid #eee;
  align-items: center;
  z-index: 9999;
  justify-content: center;
}

.s_menu_side_modal.on {
  display: flex;
  flex-direction: column;
}

.menu_side_section {
  width: 134px;
  height: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul.menu_side_list {
  width: 100%;
  height: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.menu_side_list li {
  cursor: pointer;
}

ul.menu_side_list li p {
  color: #AAA;
  font-size: 15px;
  font-weight: 500;
}

ul.menu_side_list li:hover p {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

ul.article_menu {
  margin-top: 10px;
  width: 95px;
  height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.article_menu li {
  color: #aaa;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}

ul.article_menu li i {
  font-size: 15px;
  color: #aaa;
  margin-right: 15px;
  cursor: pointer;
}

.notice_list_scroll {
  box-sizing: content-box; 
  margin-right: 8px; 
  margin-top: 10px;
  height: 180px;
  position: relative;
  overflow-y: auto; 
  overflow-x: hidden;
}

.r_popup_main_lt_bottom>.notice_list_scroll {
  height: 285px;
}

.r_bottom_btn {
  width: 655px;
  height: 30px;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.r_bottom_btn_check_close {
  width: 150px;
  height: 30px;
  display: flex;
  justify-content: space-between;
}

.r_bottom_btn_check_close>button {
  border: none;
  border-radius: 10px;
  width: 70px;
  height: 30px;
  background: #333;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: width 0.05s ease-in-out, background-color 0.3s ease-in-out;
}

.r_bottom_btn_check_close>button.r_check_btn:hover {
  background: #007BDF;
  transition: background-color 0.3s ease;
}

.r_bottom_btn_check_close>button.r_close_btn:hover {
  background: #FF0000;
  width: 75px;
  transition: background-color 0.3s ease;
}

.sch_mng_sv_modal_line4 {
  width: 100%;
  height: 30px;
}

/* 검색조건 보기 제목 */
.sch_mng_sv_modal_tit_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.sch_mng_sv_modal_tit_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sv_modal_tit_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sv_modal_tit_section>input {
  width: 626px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  margin-left: 15px;
}

.sch_mng_sv_modal_line5 {
  width: 100%;
  height: 30px;
}

/* 검색조건 보기 장소 */
.sch_mng_sv_modal_place_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.sch_mng_sv_modal_place_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sv_modal_place_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sv_modal_place_section>input {
  width: 626px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  margin-left: 15px;
}

.sch_mng_sv_modal_line6 {
  width: 100%;
  height: 30px;
}

.sch_mng_sv_modal_line7 {
  width: 100%;
  height: 100px;
}

/* 검색조건 보기 내용 */
.sch_mng_sv_modal_smstit_section {
  width: 808px;
  height: 98px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.sch_mng_sv_modal_smstit_tit {
  width: 150px;
  height: 98px;
  border-radius: 10px;
  background: #eee;
  line-height: 98px;
}

.sch_mng_sv_modal_smstit_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sv_modal_smstit_section>input {
  width: 626px;
  height: 78px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  margin-left: 15px;
}

.sch_mng_sv_modal_bottom {
  width: 100%;
  height: 30px;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sch_mng_sv_modal_bottom_btns {
  width: 230px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 저장버튼 */
.sch_mng_sv_modal_save_btn>button {
  border: none;
  background: #333;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_sv_modal_save_btn>button:hover {
  background: #007BDF;
  transition: background-color 0.3s ease;
}

.sch_mng_sv_modal_save_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 삭제버튼 */
.sch_mng_sv_modal_delete_btn>button {
  border: none;
  background: #333;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 10px;
}

.sch_mng_sv_modal_delete_btn>button:hover {
  background: #FF0000;
  transition: background-color 0.3s ease;
  width: 75px;
}

.sch_mng_sv_modal_delete_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 닫기버튼 */
.sch_mng_sv_modal_close_btn>button {
  border: none;
  background: #333;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 10px;
}

.sch_mng_sv_modal_close_btn>button:hover {
  background: #FF0000;
  transition: background-color 0.3s ease;
  width: 75px;
}

.sch_mng_sv_modal_close_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_txt_in {
  position: relative;
}

.sch_mng_txt_in .sch_mng_txt_in_hover {
  display: none;
  position: absolute;
  bottom: 100%;
  margin-bottom: 45px;
  padding: 10px;
  z-index: 10;
  width: 300px;
  height: 126px;
}

.sch_mng_txt_in:hover .sch_mng_txt_in_hover {
  display: block;
}

.smti_tit_section {
  width: 298px;
  height: 23px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  align-items: center;
}

.smti_tit_tit {
  width: 60px;
  height: 23px;
  border-radius: 10px;
  background: #FFEDE2;
  line-height: 23px;
}

.smti_tit_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.smti_tit_section>p {
  color: #333;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}

.smti_dt_section {
  width: 298px;
  height: 23px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  align-items: center;
  margin-top: 3px;
}

.smti_dt_tit {
  width: 60px;
  height: 23px;
  border-radius: 10px;
  background: #FFEDE2;
  line-height: 23px;
}

.smti_dt_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.smti_dt_section>p {
  color: #333;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}

.smti_place_section {
  width: 298px;
  height: 23px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  align-items: center;
  margin-top: 3px;
}

.smti_place_tit {
  width: 60px;
  height: 23px;
  border-radius: 10px;
  background: #FFEDE2;
  line-height: 23px;
}

.smti_place_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.smti_place_section>p {
  color: #333;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}

.smti_con_section {
  width: 298px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  align-items: center;
  margin-top: 3px;
}

.smti_con_tit {
  width: 60px;
  height: 40px;
  border-radius: 10px;
  background: #FFEDE2;
  line-height: 40px;
}

.smti_con_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.smti_con_section>p {
  color: #333;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}


/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */
/* ------------------------------------------------------ */

/* 일정등록 모달 배경 */
.sch_mng_sign_modal_bg {
  position: fixed; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 200%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 9998; 
  display: none; 
}

.sch_mng_sign_modal_bg.on {
  display: block;
}

/* 공지자선택 팝업 */
.sch_mng_sign_modal {
  width: 846px;
  height: 748px;
  position: fixed; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
  align-items: center;
  z-index: 99999;
  display: none;
  flex-direction: column;
}

.sch_mng_sign_modal.on {
  display: flex;
  flex-direction: column;
}

.sch_mng_sign_modal_top {
  width: 808px;
  height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.sch_mng_sign_modal_tit {
  width: 91px;
  height: 26px;
  display: flex;
  align-items: center;
  border-left: 3px solid #CF4F00;
}

.sch_mng_sign_modal_tit h1 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-left: 5px;
}

.sch_mng_sign_modal_close>i {
  color: #333;
  font-size: 23px;
  border: none;
  background: none;
  cursor: pointer;
}

.sch_mng_sign_modal_close>i:hover {
  color: #CF4F00;
  transition: color 0.3s ease;
}

.sch_mng_sign_modal_main {
  margin-top: 20px;
  width: 810px;
  height: 642px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.sch_mng_sign_modal_line1 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 일정 등록 보기 검색조건 법인 */
.sch_mng_sign_modal_corporate_section {
  width: 387px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
}

.sch_mng_sign_modal_corporate_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_corporate_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sign_modal_corporate_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.sch_mng_sign_modal_corporate_section select:focus option
{
  background: #333;
  color: #fff;
}

.sch_mng_sign_modal_corporate_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 검색조건 구분 */
.sch_mng_sign_modal_se_section {
  width: 395px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
}

.sch_mng_sign_modal_se_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_se_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* 라디오버튼 */
.as_radio_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.as_radio_btn>input {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.as_r_group_n {
  margin-left: 15px;
}

.as_radio_btn>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

.sch_mng_sign_modal_line2 {
  width: 100%;
  height: 30px;
}

/* 검색조건 공유분류 */
.sch_mng_sign_modal_s_se_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
}

.sch_mng_sign_modal_s_se_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_s_se_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* 라디오버튼 */
.sch_mng_sign_modal_s_se_radio_btn {
  width: 330px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
  margin-top: 3px;
}

.sch_mng_sign_modal_s_se_radio_btn>input {
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.sch_mng_sign_modal_s_se_radio_btn>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

/* 2025.08.20. 열람범위 수정 시작 */
.scas_section {
  width: 240px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 25px;
}

.scas_tit {
  width: 70px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scas_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.scas_nm_icon_section {
  width: 165px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scas_nm_section {
  width: 124px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 8px;
}

.scas_nm1 {
  width: 90px;
  height: 20px;
}

.scas_nm1>p {
  color: #333;
  font-size: 13px;
  line-height: 20px;
}

.scas_nm2 {
  width: 25px;
  height: 20px;
}

.scas_nm2>p {
  color: #333;
  font-size: 13px;
  line-height: 20px;
}

.scas_nm_icon_section i {
  font-size: 13px;
  color: #333;
  line-height: 20px;
  cursor: pointer;
}

.scas_nm_icon_section:hover i {
  color: #CF4F00;
  transition: color 0.3s ease;
}
/* 2025.08.20. 열람범위 수정 종료 */

.sch_mng_sign_modal_line3 {
  width: 100%;
  height: 30px;
}

/* 검색조건 제목 */
.sch_mng_sign_modal_tit_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.sch_mng_sign_modal_tit_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_tit_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sign_modal_tit_section>input {
  width: 626px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  margin-left: 15px;
}

.sch_mng_sign_modal_line4 {
  width: 100%;
  height: 30px;
}

/* 검색조건 장소 */
.sch_mng_sign_modal_place_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.sch_mng_sign_modal_place_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_place_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sign_modal_place_section>input {
  width: 626px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  margin-left: 15px;
}

.sch_mng_sign_modal_line5 {
  width: 100%;
  height: 30px;
}

/* 검색조건 일시 */
.sch_mng_sign_modal_date_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.sch_mng_sign_modal_date_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_date_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.smd_calendar {
  width: 650px;
  height: 22px;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: -5px;
}

.smd_calendar p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  padding-left: 10px;
  margin-right: 10px;
}

.period_calendar_prev>input {
  width: 250px;
  height: 20px;
  border: 1px solid #FFAD7A;
  margin-left: 25px;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  border-radius: 3px;
}

.period_calendar_prev>input:focus {
  outline: none;
}

.period_calendar_prev,
.period_calendar_next
{
  width: 106px;
  height: 22px;
  display: flex;
  align-items: center;
}

.period_calendar_prev>input,
.period_calendar_next>input
{
  width: 88px;
  height: 22px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.period_calendar_prev>i,
.period_calendar_next>i 
{
  color: #aaa;
  font-size: 13px;
  margin-left: 6px;
  cursor: pointer;
  z-index: 20;
}

.period_calendar_prev:hover>i,
.period_calendar_next:hover>i 
{
  color: #CF4F00;
  transition: color 0.3s ease;
}

.ne_e_calendar_prev,
.ne_e_calendar_next
{
  width: 300px;
  height: 208px;
  background: #333;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
  position: absolute;
  top: 30px;
  right: 100px;
  z-index: 30;
}

.ne_e_calendar_next {
  position: absolute;
  top: 30px;
  left: 10px;
}

.ne_e_calendar_prev.on,
.ne_e_calendar_next.on
{
  display: flex;
}

.calendar_top {
  width: 207px;
  height: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.calendar_top i {
  font-size: 11px;
  color: #ccc;
}

.calendar_top select {
  height: 19px;
  background: #333;
  color: #fff;
}

.calendar_yyyymm {
  width: 135px;
  height: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar_m,
.calendar_y 
{
  width: 56px;
  height: 19px;
}

.calendar_main {
  width: 90%;
  height: 159px;
  margin-top: 10px;
}

.calendar_main .week ul {
  width: 93%;
  display: flex;
  justify-content: space-between;
  margin-left: 5px;
}

.calendar_main .week ul li {
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
}

.sch_day {
  margin-top: 8px;
}

.sch_day .calendar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  gap: 4px;
}

.sch_day .calendar .day {
  width: calc(100% / 7 - 4px); 
  height: 25px;
  color: #FFF;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}

.sch_day .calendar .day:hover {
  background: #fff !important;
  color: #333 !important;
  font-weight: 700 !important;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.sch_day .calendar .day.empty {
  visibility: hidden;
  pointer-events: none;
}

.smd_calendar #smd_calendar_hh
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 40px;
}

.smd_calendar select:focus option
{
  background: #333;
  color: #fff;
}

.smd_calendar select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.smd_calendar #smd_calendar_mm
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 10px;
}

.smd_calendar #smd_calendar_hh_n
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.smd_calendar #smd_calendar_mm_n
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 10px;
}

/* 분개전표 체크박스 */
.smd_ad_section {
  width: 80px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
}

.smd_ad_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

/* 기본 스타일 */
.check_box {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; 
  user-select: none;
}

.check_box>i {
  display: none;
}

/* 체크 상태일 때 변경될 스타일 */
.check_box.active {
  background: #007BDF;
  border: 1px solid #007BDF;
}

/* 체크 상태일 때 아이콘 표시 */
.check_box.active>i {
  font-size: 12px;
  color: #fff;
  display: block; 
}

.sch_mng_sign_modal_line6 {
  width: 100%;
  height: 100px;
}

/* 검색조건 내용 */
.sch_mng_sign_modal_smstit_section {
  width: 808px;
  height: 98px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.sch_mng_sign_modal_smstit_tit {
  width: 150px;
  height: 98px;
  border-radius: 10px;
  background: #eee;
  line-height: 98px;
}

.sch_mng_sign_modal_smstit_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sign_modal_smstit_section>input {
  width: 626px;
  height: 78px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff;
  margin-left: 15px;
}

.sch_mng_sign_modal_line7 {
  width: 100%;
  height: 30px;
}

/* 일정 등록 보기 검색조건 법인 */
.sch_mng_sign_modal_form_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
}

.sch_mng_sign_modal_form_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_form_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sign_modal_form_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.sch_mng_sign_modal_form_section select:focus option
{
  background: #333;
  color: #fff;
}

.sch_mng_sign_modal_form_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.sch_mng_sign_modal_line8 {
  width: 100%;
  height: 30px;
}

/* 검색조건 일정 설정 */
.sch_mng_sign_modal_set_section {
  width: 808px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
  align-items: center;
}

.sch_mng_sign_modal_set_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_set_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.sch_mng_sign_modal_set_section>.check_box {
  margin-left: 15px;
}

.sch_mng_sign_modal_set_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 10px;
}

.sch_mng_sign_modal_line9 {
  width: 100%;
  height: 30px;
}

/* 검색조건 일정구분 */
.sch_mng_sign_modal_shcse_section {
  width: 100%;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex;
}

.sch_mng_sign_modal_shcse_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #eee;
  line-height: 28px;
}

.sch_mng_sign_modal_shcse_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.as_r_group_nn {
  margin-left: 38px;
}

/* 검색조건 반복설정 */
.sch_mng_sign_modal_rs_section {
  width: 100%;
  height: 160px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #EEEEEE;
  display: flex; 
  align-items: center; 
}

.sch_mng_sign_modal_rs_tit {
  width: 150px;
  height: 160px;
  border-radius: 10px;
  background: #eee;
  line-height: 160px;
  flex: 0 0 150px;  
}

.sch_mng_sign_modal_rs_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.repeat_set_radio {
  width: 500px;
  height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 15px;
}

.repeat_set {
  margin-left: 0;
}

.repeat_set_y {
  margin-left: 15px;
}

.sch_mng_sign_modal_bottom {
  width: 100%;
  height: 30px;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sch_mng_sign_modal_bottom_btns {
  width: 150px;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 저장버튼 */
.sch_mng_sign_modal_save_btn>button {
  border: none;
  background: #333;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
}

.sch_mng_sign_modal_save_btn>button:hover {
  background: #007BDF;
  transition: background-color 0.3s ease;
}

.sch_mng_sign_modal_save_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 닫기버튼 */
.sch_mng_sign_modal_close_btn>button {
  border: none;
  background: #333;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 10px;
}

.sch_mng_sign_modal_close_btn>button:hover {
  background: #FF0000;
  transition: background-color 0.3s ease;
  width: 75px;
}

.sch_mng_sign_modal_close_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* ----------------------------------------------------- */
.sch_mng_sign_modal_line10 {
  width: 100%;
  height: 162px;
}

.repeat_set_section {
  width: 483px;
  height: 117px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.repeat_set_week_section {
  width: 100%;
  height: 22px;
  display: flex;
  align-items: center;
}

.week_radio_check {
  width: 66px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5px;
}

.week_radio_check>input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.week_radio_check>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

.repeat_set_week_section select {
  width: 64px;
  height: 22px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 22px;
}

.repeat_set_week_section select:focus option {
  background: #333;
  color: #fff;
}

.repeat_set_week_section select option {
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.repeat_set_week_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
}

.repeat_set_month_section {
  width: 100%;
  height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.repeat_set_month_section_lt {
  width: 218px;
  height: 100%;
  display: flex;
  justify-content: flex-start;
}

.month_radio_check {
  width: 66px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5px;
}

.month_radio_check>input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.month_radio_check>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

.repeat_set_month_select {
  width: 100%;
  height: 22px;
  display: flex;
  align-items: center;
}

.repeat_set_month_select select {
  width: 64px;
  height: 22px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 22px;
}

.repeat_set_month_select select:focus option {
  background: #333;
  color: #fff;
}

.repeat_set_month_select select option {
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.repeat_set_month_select>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
}

.repeat_set_month_section_rt {
  width: 257px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.repeat_set_month_section_rt_top {
  width: 100%;
  height: 22px;
  display: flex;
  align-items: center;
}

.date_radio_check {
  width: 66px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5px;
}

.date_radio_check>input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.date_radio_check>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

.repeat_set_month_section_rt_top select {
  width: 60px;
  height: 22px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 8px;
}

.repeat_set_month_section_rt_top select:focus option {
  background: #333;
  color: #fff;
}

.repeat_set_month_section_rt_top select option {
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.repeat_set_month_section_rt_top>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
}

.repeat_set_month_section_rt_bottom {
  width: 100%;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.repeat_set_month_day_top {
  width: 100%;
  height: 22px;
  display: flex;
  align-items: center;
}

.day_radio_check {
  width: 66px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 5px;
}

.day_radio_check>input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.day_radio_check>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

.repeat_set_month_day_top select {
  width: 60px;
  height: 22px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 8px;
}

.repeat_set_month_day_top select:focus option {
  background: #333;
  color: #fff;
}

.repeat_set_month_day_top select option {
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.repeat_set_month_day_top>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
}

.repeat_set_month_day_bottom {
  width: 100%;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.repeat_set_month_day_bottom>p {
  color: #888;
  font-size: 12px;
  font-weight: 400;
}

.view_repeat_set_week_section {
  margin-bottom: 15px;
}

.repeat_set_radio {
  display: flex;
  gap: 10px;
  min-width: 0;     
  width: auto;    
  height: auto;     
  margin-left: 15px;
}
