@charset "UTF-8";

/* ==== 출퇴근 관리 ==== */
/* #### 출퇴근 등록 #### */
.cmt_register .main__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 116px 0px;
}

.cmt-register__inner {
  width: 100%;
  max-width: 1230px;
}

.cmt-register__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cmt-register__content .basic-info {
  border-right: none;
}

.cmt-register__content>* {
  flex: 1;
  padding: 0 40px;
}

.cmt-register__content .custom-timepicker {
  width: auto !important;
}

.cmt-register {
  border-left: 1px solid #DCDCDC;
}

.cmt-register__input {
  margin-top: 30px;
}

.select_work-type {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.select_work-type .custom-radio_work {
  flex: 1;
}

.select_work-type .custom-radio_work label {
  width: 100%;
}

.custom-radio_work input[type=radio] {
  display: none;
}

.custom-radio_work input[type=radio]+em {
  display: inline-block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 14px;
  text-align: center;
  min-width: 100px;
}

.custom-radio_work input[type=radio]:checked+em {
  background-color: var(--color-primary);
  color: #fff;
}

.cmt-register__input small {
  color: #B6B6B6;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 11px;
}

.cmt-register__input dl {
  border: 1px solid #DCDCDC;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 46px;
  padding: 0 16px;
  margin-bottom: 16px;
}

.cmt-register__input dl.select {
  padding-right: 0px;
  margin-bottom: 5px;
}

.cmt-register__input dl dt,
.cmt-register__input dl dd {
  font-size: 15px;
  font-weight: 500;
}

.cmt-register__input .custom-datepicker {
  box-shadow: var(--box-shadow6);
}

.cmt-register__input .select-primary {
  height: 38px !important;
  line-height: 38px !important;
  box-shadow: var(--box-shadow6);
  border: none !important;
}

.cmt-register__input .select-primary .option {
  height: 46px;
}

.cmt-register__input .select-primary span.current {
  font-size: 15px;
}

.cmt-register__input input[type=text]::placeholder {
  color: #131313;
}

@media (min-width: 0px) and (max-width: 1300px) {
  .cmt_register .main__container {
    padding: 70px 0;
  }

  .cmt-register__inner {
    width: 100%;
    margin: 0 0px;
  }

  .cmt-register__content {
    flex-direction: column;
    row-gap: 40px;
  }

  .cmt-register {
    border-left: none;
  }

  .cmt-register__content>* {
    width: 100%;
  }
}

@media screen and (max-width:1000px) {
  .cmt_register .main__container {
    padding: 20px;
    padding-top: 12px;
    padding-bottom: 100px;
  }

  .cmt-register__inner {
    background-color: #fff;
    border-radius: 10px;
    padding: 17px 0;
  }

  .cmt-register__content>* {
    padding: 0 12px;
  }

  .cmt-register__input {
    margin-top: 20px;
  }

  .cmt-register__input dl {
    font-size: 14px;
  }

  .cmt-register__input small {
    font-size: 14px;
  }

  .cmt-register__form .btn-area {
    padding-right: 0;
    padding: 0 10px;
  }

  .cmt-register__form .btn-primary {
    width: 100%;
  }

  .cmt-register__inner .btn-area {
    padding-left: 0px;
    padding-right: 0px;
    width: calc(100% - 20px);
    margin: 20px auto;
  }

  .select_work-type {
    gap: 5px;
  }

  .custom-radio_work input[type=radio]+em {
    font-size: 14px;
    height: 38px;
    line-height: 38px;
  }

  .cmt-register__input .select_person {
    width: 63%;
  }

  .cmt-register__input .select-primary {
    width: 100% !important;
  }
}

/* #### 출퇴근 조회 #### */
.cmt-view__inner .no-data__contents {
  margin-top: 20px;
  min-height: 70vh;
}

.cmt-view__content {
  height: calc(100% - 60px);
}

.work__this-week {
  margin-top: 15px;
  background-color: #fff;
  border-radius: 10px;
  padding: 37px 62px;
  border: 1px solid #DCDCDC;
  box-shadow: var(--box-shadow2);
  display: flex;
  align-items: center;
}

.work__this-week>p {
  width: 238px;
  font-size: 24px;
  color: #000;
  margin-right: 50px;
  line-height: 39px;
}

.work__this-week>p>span.time {
  font-weight: 500;
}

.work__this-week .working {
  width: calc(100% - 250px);
  position: relative;
}

.working-bar {
  width: 100%;
  height: 30px;
  background-color: #F1F1F5;
  position: relative;
  border-radius: 15px;
}

.working-state {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 15px;
}

.working-state:after {
  content: '';
  display: inline-block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  top: 50%;
  z-index: 100;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: var(--box-shadow3);
  background: #fff url(../_img/common/icon_work.svg) no-repeat center center / 34px;
}

.work__time-table {
  box-shadow: var(--box-shadow2);
  margin-top: 16px;
  padding: 37px 60px;
}

.cmt-view__content .date__inner,
.sal-calculate__content .date__inner {
  justify-content: space-around;
}

.table-commute .scroll_wrap table {
  min-width: 1800px;
}

.table-commute .scroll_wrap table thead {
  position: sticky;
  top: 0;
  left: 0;
  border-top: 1px solid #DCDCDC;
}

.work__time-table .scroll_wrap {
  overflow-x: auto;
}

.work__time-table .scroll_wrap::-webkit-scrollbar {
  height: 8px;
}

.work__time-table .scroll_wrap::-webkit-scrollbar-thumb {
  height: 30%;
  background: #B6B6B6;
  border-radius: 10px;
}

.work__time-table .scroll_wrap::-webkit-scrollbar-track {
  background: #DCDCDC;
}

.work__time-table .time-table tr th:first-child {
  min-width: 120px;
}

.time-table table.t_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.time-table table.t_table thead th {
  font-size: 15px;
  color: #131313;
  text-align: left;
  height: 50px;
  line-height: 50px;
}

.time-table table.t_table tbody td {
  border: 1px solid #DCDCDC;
  height: 50px;
  line-height: 50px;
}

.time-table table.t_table tbody td span.active {
  display: inline-block;
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  background-color: #E5EEFE;
}

.time-table table.t_table tbody td span.active.rest {
  background-color: #E2E8FA;
}

.date__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.date__inner .day__area {
  display: flex;
  align-items: center;
}

.date__inner .day__area.off>span {
  color: #B6B6B6;
}

.date__inner .day__area.today>span {
  color: var(--color-primary);
}

.date__inner .day__area.today .day {
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
}

.time-table table.t_table tbody td.date .day-week {
  font-size: 15px;
  line-height: 28px;
  padding-right: 9px;
  border-right: 1px solid #DCDCDC;
}

.time-table table.t_table tbody td.date .day {
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
  display: inline-block;
  width: 28px;
  height: 28px;
  text-align: center;
  margin-left: 6px;
}

.time-table table.t_table tbody td.date .time {
  display: inline-block;
  width: 56px;
  height: 28px;
  line-height: 28px;
  background-color: #ECF2FF;
  border-radius: 5px;
  text-align: center;
}

.scroll__wrap {
  height: inherit;
  overflow: auto;
}

.scroll__wrap::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.scroll__wrap::-webkit-scrollbar-thumb {
  background-color: #B6B6B6 !important;
  border-radius: 10px;
}

.scroll__wrap::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #DCDCDC;
}

.time-table .scroll__wrap {
  height: 100%;
}

.m-work__this-week {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow6);
  width: 100%;
  margin-bottom: 12px;
  padding: 31px 17px;
  padding-bottom: 50px;
}

.m-work__this-week>p {
  font-size: 15px;
  color: #000000;
  text-align: center;
}

.m-work__this-week>p.not-work {
  color: #B6B6B6;
}

.m-work__this-week .working {
  width: 100%;
  position: relative;
  margin-top: 16px;
}

.m-work__time-table {
  margin-top: 12px;
}

.work-time__list {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
}

.work-time__list h3.title {
  height: 54px;
  line-height: 54px;
  text-align: center;
  background-color: #ECF2FF;
  font-weight: normal;
}

.work-time__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 18px 20px 40px;
  border-bottom: 1px solid #DCDCDC;
  position: relative;
}

.work-time__item .work-time_checkbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.work-time__item.not-work {
  background-color: #FAFAFA;
}

.work-time__item:last-child {
  border-bottom: none;
}

.work-time__item .work-time {
  min-width: 145px;
  text-align: right;
}

.work-time__item .work-time span.cover,
.work-time__item .work-time span.rest {
  text-align: right;
  display: inline-block;
  padding: 4px 9px;
  border-radius: 3px;
  background-color: #DCDCDC;
  font-size: 12px;
}

.work-time__item .btn_modify-info {
  display: inline-block;
  width: 25px !important;
  height: 25px;
  background: url(../_img/common/icon_write.svg) no-repeat center center / contain;
}

.work-time__item .btn_delete-info.btn_delete {
  display: inline-block;
  width: 25px !important;
  height: 25px;
  background: url(../_img/common/icon_trash.svg) no-repeat center center / contain;
}

.work-time__item em.update {
  display: block;
  margin-top: 8px;
  font-size: 11px;
}

.work-time__wrap {
  display: flex;
  align-items: center;
  row-gap: 10px;
  flex-direction: column;
}

.work-time__wrap.not_salary_job .work-time__input .input {
  gap: 10px;
}

.work-time__item .work-time p {
  color: #979797;
  font-size: 13px;
  line-height: 18px;
}

.work-time__item .time .date {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  background-color: #F5F7FB;
}

.work-time__item .time .date.today {
  background-color: var(--color-primary);
  color: #fff;
}

.work-time__item .time span.day {
  font-size: 12px;
}

.work-time__item .time p,
.work-time__item .time span:not(.day) {
  display: block;
  border-radius: 5px;
  width: 65px;
  height: 22px;
  line-height: 22px;
  background-color: #ECF2FF;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #3D3D3D;
  margin-top: 7px;
}

.work-time__item .time span.cover {
  background-color: #FF7638;
  color: #fff;
}

.work-time__item .time span.rest {
  background-color: #757575;
  color: #fff;
}

.work-time__item .work-time p:first-child {
  margin-bottom: 8px;
}

.work-time__item .work-time p.update {
  margin-top: 6px;
}

.work-time__item .work-time p b {
  color: #131313;
  display: inline-block;
  margin-left: 13px;
  min-width: 83px;
}

@media (min-width: 1000px) and (max-width: 1300px) {
  .work__time-table {
    padding: 35px;
  }

  .move-month {
    justify-content: center;
  }

  .m-work__this-week {
    box-shadow: none;
  }

  .m-work__this-week>p {
    font-size: 18px;
  }
}

@media screen and (max-width:1000px) {
  .cmt-view__inner .no-data__contents {
    margin-top: 12px !important;
    min-height: 70vh;
  }

  .working-bar {
    width: 100%;
    height: 20px;
    background-color: #F1F1F5;
    position: relative;
    border-radius: 15px;
  }

  .working-state {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: 15px;
  }

  .working-state:after {
    content: '';
    display: inline-block;
    width: 38px;
    height: 38px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #fff url(../_img/common/icon_work.svg) no-repeat center center / 23px;
  }

  .working em.min {
    bottom: -24px;
    font-size: 11px;
  }

  .working em.max {
    bottom: -24px;
    font-size: 11px;
  }
}

/* #### 스케줄 확인 #### */
.schd_confirm .main__container {
  padding-top: 46px;
}

@media screen and (max-width:1000px) {
  .schd_confirm .main__container {
    padding-top: 12px;
  }
}

/* ==== 급여 관리 ==== */
/* #### 근무시간 정산 #### */
.sal-calculate__content {
  min-height: 78vh;
}

.sal_calculate .no-data__contents {
  margin-top: 16px;
  min-height: 68vh;
}

.sal-calculate__content .work__time-table {
  padding-top: 80px;
}

.modal.modal-cfrm_cal .modal__inner {
  max-width: 420px;
}

.cfrm-cal__inner {
  text-align: center;
  margin-bottom: 43px;
}

.cfrm-cal__inner p {
  font-size: 24px;
  font-weight: 500;
}

.btn_approval {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

.btn_approval:disabled {
  background-color: #DCDCDC !important;
  color: #979797 !important;
  border: none;
}

.btn_refuse {
  background-color: var(--color-red) !important;
  color: #fff !important;
  border: none !important;
}

@media screen and (max-width:1300px) {
  .sal-calculate__content .move-month+span {
    display: none;
  }

  .modal.modal-cfrm_cal .modal__inner {
    max-width: 90%;
    padding: 30px 0;
  }

  .modal.modal-cfrm_cal .modal__btn {
    justify-content: center;
  }

  .modal.modal-cfrm_cal .modal__btn .btn {
    height: 46px;
    line-height: 46px;
  }

  .cfrm-cal__inner {
    margin-bottom: 20px;
  }

  .cfrm-cal__inner p {
    font-size: 15px;
  }
}

@media screen and (max-width:1000px) {
  .sal-calculate__content>.flex-jsb-ab {
    flex-direction: column;
    row-gap: 8px;
  }

  .sal-calculate__content>.flex-jsb-ab> .move-month {
    padding: 0 16px;
  }
  .sal-calculate__content>.flex-jsb-ab>div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sal-calculate__content>.flex-jsb-ab>div span.mr20 {
    margin-right: 10px;
  }
}

/* #### 이달의 급여 ##### */
.thismonth__content {
  min-height: calc(100% - 56px);
}

.sal_thismonth .no-data__contents {
  margin-top: 16px;
  min-height: 68vh;
}

.paystub__content {
  margin-top: 30px;
  padding: 60px 100px;
  overflow: hidden;
  min-height: 73vh;
}

.paystub__content .title {
  font-size: 24px;
  font-weight: 500;
}

.paystub__content .title span {
  font-weight: 500;
}

@media (min-width:1000px) and (max-width:1300px) {
  .paystub__content {
    padding: 60px 60px;
  }
}

@media screen and (max-width:1000px) {
  .paystub__content {
    border: none;
    padding: 0;
    background-color: #fff;
    margin-top: 12px;
    padding-bottom: 33px;
    min-height: 100%;
  }

  .paystub__content>h3.title {
    height: 54px;
    line-height: 54px;
    background-color: #ECF2FF;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
  }

  .paystub__content .pay-statement__info {
    padding: 20px 12px;
    border-bottom: none;
  }

  .paystub__content .paystub__list {
    padding: 20px 12px;
    margin-top: 0px;
  }
}

/* #### 명세서 조회 #### */
.stmt-view__content {
  min-height: calc(100% - 56px);
}

.stmt_nodata {
  margin-top: 33px !important;
  min-height: 73vh !important;
}

.stmt_nodata img {
  width: 76px !important;
  height: 81px !important;
  object-fit: contain;
}

.stmt__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}

.stmt__header>div {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 10px;
}

.stmt__header span.select-txt {
  font-size: 20px;
}

.stmt-view__content .resultC__item {
  padding: 12px 16px;
}

.stmt-view__content .resultC__item .title {
  font-size: 15px;
}

.modal_pay-statement .modal__content {
  margin-top: 20px;
  overflow: hidden;
}

.modal_pay-statement .modal__inner {
  max-width: 1220px;
  padding: 73px 50px;
}

.modal_pay-statement .total_paystub {
  margin-top: 30px;
  width: 100%;
}

.modal_pay-statement .modal__btn {
  display: none;
}

.modal_pay-statement .paystub__list {
  margin-top: 70px;
}

.modal_pay-statement .paystub__list .paystub__item:nth-child(1) {
  padding-right: 20px;
  border-right: none;
}

.modal_pay-statement .paystub__list .paystub__item:nth-child(2) {
  padding-left: 20px;
}

@media (min-width: 0px) and (max-width: 1300px) {
  .modal_pay-statement .modal__inner {
    max-width: 90%;
    overflow-y: hidden;
  }
}

@media screen and (max-width:1000px) {
  .m_100p {
    width: 100%;
  }

  .stmt-view__content {
    min-height: calc(100% - 56px);
  }

  .stmt_nodata {
    margin-top: 16px !important;
  }

  .stmt__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .stmt__header .select-txt {
    display: none;
  }

  .stmt__header>div {
    width: 100%;
    margin-left: 0px;
  }

  .stmt__header .select-primary {
    width: 100% !important;
    height: 46px !important;
    line-height: 46px !important;
  }

  .stmt__header>span {
    font-size: 11px;
    display: inline-block;
    margin-top: 20px;
    color: #979797;
  }

  .stmt-view__content .resultC__list {
    background-color: #fff;
    margin-top: 10px;
    padding: 12px;
  }

  .modal_pay-statement .modal__inner {
    padding: 0;
  }

  .modal_pay-statement .modal__close {
    display: none;
  }

  .modal_pay-statement .modal__header {
    background-color: #ECF2FF;
    height: 54px;
    line-height: 54px;
    text-align: center;
  }

  .modal_pay-statement .paystub__list {
    margin-top: 36px;
  }

  .modal_pay-statement .modal__content {
    padding: 20px;
    margin-top: 0;
    max-height: 70vh;
    overflow-y: auto;
  }

  .modal_pay-statement .modal__btn {
    padding: 20px;
    display: flex;
  }

  .modal_pay-statement .btn_close--blue {
    background-color: var(--color-primary);
    color: #fff;
  }

  .modal_pay-statement .paystub__list .paystub__item:nth-child(1) {
    padding-right: 0px;
  }

  .modal_pay-statement .paystub__list .paystub__item:nth-child(2) {
    padding-left: 0px;
  }
}

/* ==== 전자계약서 ==== */
/* #### 계약서 조회 #### */
.con-view__inner .no-data__contents {
  min-height: 72vh;
}

.con_view .tbl__result--typeC {
  min-height: 74vh;
}

.con_view .resultC__item .btn {
  transition: 0.35s;
  border-width: 2px;
  height: 46px;
  line-height: 46px;
}

.con_view .resultC__item .btn:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.resultC__item .result__btns {
  display: flex;
  align-items: center;
  gap: 40px;
}

.resultC__item .result__btns .btn_pdf {
  display: none;
}

.result__btns .result__download {
  display: flex;
  gap: 20px;
}

.result__btns .result__download .btn_print {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../_img/common/icon_print.svg) no-repeat center center / cover;
}

.result__btns .result__download .btn_download {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../_img/common/icon_pdf.svg) no-repeat center center / cover;
}

.result__btns .result__download .btn_preview {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../_img/common/icon_preview.svg) no-repeat center center / cover;
}

@media (min-width: 1000px) and (max-width: 1250px) {
  .con_view .tbl__result--typeC {
    padding: 15px;
  }

  .con_view .resultC__list .resultC__item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
  }

  .resultC__item .result__btns {
    width: 100%;
  }

  .con_view .resultC__item .btn {
    width: 100%;
  }
}

@media screen and (max-width:1000px) {
  .con_view .tbl__result--typeC {
    margin-top: 12px;
    border: none;
    padding: 0;
    min-height: 100%;
  }

  .con_view .tbl__result--typeC .resultC__list {
    padding: 0;
  }

  .con_view .resultC__list .resultC__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px;
    border: none;
  }

  .con_view .resultC__list .resultC__item:hover {
    background-color: #fff !important;
  }

  .con_view .resultC__item .result__title h3 {
    font-size: 15px;
  }

  .con_view .resultC__item .result__download {
    display: none;
  }

  .resultC__item .result__btns {
    width: 100%;
    margin-top: 20px;
    flex-direction: column;
    gap: 12px;
  }

  .resultC__item .result__btns .btn_pdf {
    border: 1px solid #DCDCDC;
    color: #131313;
    display: block;
  }

  .resultC__item .result__btns .btn_pdf:hover {
    color: #222;
    background-color: transparent;
  }

  .con_view .resultC__item .btn {
    width: 100%;
    border-width: 1px;
  }
}

/* #### 계약서 요청 #### */
.sign__content {
  margin-top: 32px;
  overflow: hidden;
}

.sign__content canvas.signature-pad {
  max-width: 720px;
  border-radius: 10px;
  border: 1px solid #B6B6B6;
}

.sign__content small {
  font-size: 15px;
  color: #B6B6B6;
  float: right;
  word-break: keep-all;
  display: block;
  margin-top: 3px;
}

.modal_sign .modal__btn {
  margin-top: 32px;
}

.modal_confirm_sign .modal__inner {
  max-width: 400px;
}

/* #### 계약서 요청 상세 #### */
.req-dtl__content h3.title {
  font-size: 24px;
  font-weight: 500;
}

.req-dtl__cnts {
  border-radius: 10px;
  border: 1px solid #DCDCDC;
  margin-top: 15px;
  padding: 40px 100px;
}

.con_req_dtl .btn-area {
  margin-top: 32px;
}

@media screen and (max-width:1000px) {
  .sign__content {
    margin-top: 12px;
  }

  .sign__content small {
    font-size: 13px;
  }

  .sign__content canvas.signature-pad {
    max-width: 100%;
    width: 100%;
    height: 173px;
    border-radius: 10px;
    border: 1px solid #B6B6B6;
  }

  .modal_sign .modal__btn.right {
    width: 100%;
    justify-content: center;
  }

  .modal_sign .modal__btn>* {
    flex: 1;
  }

  .req-dtl__content {
    background-color: #fff;
    margin-top: 0;
    border-radius: 10px;
    padding: 20px;
  }

  .modal_confirm_sign .modal__inner {
    max-width: 90%;
  }

  .req-dtl__content h3.title {
    font-size: 18px;
  }

  .req-dtl__cnts {
    border-radius: 0;
    border: none;
    padding: 0;
  }

  .con_req_dtl .btn-area.right {
    width: 100%;
    justify-content: center;
  }

  .con_req_dtl .btn-area.right>* {
    flex: 1;
  }
}

/* #### 공지사항 #### */
@media (min-width: 1000px) and (max-width: 1300px) {
  .tbl_notice colgroup col:nth-child(1) {
    width: 8% !important;
  }
}

@media screen and (max-width:1000px) {
  .tbl_notice {
    border-radius: 10px;
    background-color: #fff;
    padding: 0 16px !important;
    padding-bottom: 16px !important;
  }

  .tbl_notice tbody tr:last-child td {
    border-bottom: none;
  }

  .tbl_notice colgroup col:nth-child(1),
  .tbl_notice table thead tr th:nth-child(1),
  .tbl_notice table tr td:nth-child(1) {
    display: none;
  }

  .tbl_notice colgroup col:nth-child(3) {
    width: 20% !important;
  }

  .tbl_notice colgroup col:nth-child(4) {
    width: 20% !important;
  }

  .tbl_notice tbody tr th,
  .tbl_notice tbody tr td {
    height: 68px;
    vertical-align: text-top;
  }

  .tbl_notice tbody tr td a.title.ellipsis-line-1 {
    word-break: break-all;
    -webkit-line-clamp: 2;
    line-height: 23px;
    height: 48px;
    margin-right: 9px;
  }

  .tbl_notice table th {
    border-bottom: 2px solid #DCDCDC;
  }
}

@media screen and (max-width:1000px) {
  .tbl_notice tbody tr td a.title.ellipsis-line-1 {
    word-break: break-all;
    -webkit-line-clamp: 2;
    line-height: 23px;
    height: 48px;
    margin-right: 9px;
  }

  .tbl_notice table th {
    border-bottom: 2px solid #DCDCDC;
  }
}

/* #### 콜센터 사용조회 #### */
.call_center .stmt__header>div {
  display: block;
}

.call_center .stmt__header>div>span {
  display: block;
}

.call_center .stmt__header h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

@media screen and (max-width:1000px) {
  .call_center .stmt__header h3 {
    font-size: 18px;
  }

  .call_center .stmt__header>div>span {
    font-size: 13px;
    margin-top: 8px;
  }

  .form_callcenter {
    width: 100%;
  }
}

/* 출퇴근 태그기록 확인 (신규) */
.schd_tag__content {
  width: 100%;
  border: 1px solid #DCDCDC;
  border-radius: 12px;
  padding: 12px;
  min-height: 78vh;
}
.schd_tag-tbl_wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
}

.schd_tag-tbl_wrap .tbl__result--typeA th,
.schd_tag-tbl_wrap .tbl__result--typeA td {
  border: 1px solid #DCDCDC;
}

.schd_tag-tbl_wrap .tbl__result--typeA th {
  height: 40px;
}

.schd_tag-tbl_wrap::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

.schd_tag-tbl_wrap .tbl__result--typeA,
.schd_tag-tbl_wrap .pagination {
  min-width: 1500px;
}

.schd_tag-tbl_wrap .tbl__result--typeA table tr:hover td {
  background-color: #fff;
}

@media screen and (max-width:1000px) {
  .schd_tag__content {
    background-color: #fff;
    min-height: auto;
    padding-bottom: 50px;
  }
}