@charset "UTF-8";
@import url(./font.css);
@import url(./login.css);
@import url(./layout.css);
@import url(./variables.css);
@import url(./element.css);
/* @import url(./loading.css); */
@import url(./attribute.css);

.btn-area {
  display: flex;
  align-items: center;
}

.btn-area.right {
  justify-content: flex-end;
}

.btn-area.right>* {
  margin-right: 10px;
}

.btn-area.right>*:last-child {
  margin-right: 0;
}

.btn_area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.btn_area.right {
  justify-content: flex-end;
}

.btn--blue {
  background-color: var(--color-primary);
  color: #fff;
}

.btn--gray {
  background-color: #F1F1F5;
  color: #3D3D3D;
  border: none;
}

.btn--dark-gray {
  background-color: #B6B6B6;
  color: #fff;
  border: none;
}

.btn--red {
  background-color: #fff;
  border: 1px solid #EA2F2F;
  color: #EA2F2F;
  transition: 0.35s;
}

.btn--red:hover {
  background-color: #EA2F2F !important;
  color: #fff;
}

@media screen and (max-width:1000px) {
  .btn-area.right,
  .btn_area.right {
    justify-content: center;
  }

  .btn-area.right>*,
  .btn_area.right>* {
    width: 100%;
  }
}


/* 전화번호, 이메일, 계좌번호 입력 */
.input-tel,
.input-email,
.input-account,
.input-security {
  display: flex;
  gap: 12px;
}

.input-tel,
.input-email,
.input-security {
  align-items: center;
}

.input-security span {
  display: inline-block;
  width: 10px;
  text-align: center;
}

.input-security .input {
  width: calc((100% - 10px) / 2);
}

.input-security .input_oneNum {
  display: flex;
  gap: 10px;
  align-items: center;
}

.input-security .input_oneNum .input {
  width: 50px;
}

.input-security .input_oneNum span {
  letter-spacing: 5px;
}

.input-tel .select-primary,
.input-email .select-primary,
.input-account .select-primary {
  height: 46px !important;
  line-height: 46px !important;
  background-color: #fff;
}

.input-tel .select-primary .option,
.input-email .select-primary .option,
.input-account .select-primary .option {
  height: 46px;
}

.input-tel input[type=tel],
.input-email input[type=email],
.input-account input[type=text] {
  width: 100%;
}

.input-tel .input:not(:first-child) {
  width: calc(100% - 100px);
}

.input-email .input:first-child {
  width: calc(100% - 160px);
}

.input-account .input:last-child {
  width: calc(100% - 131px);
}

@media screen and (max-width:1000px) {
  input[type=text],
  input[type=number],
  input[type=tel],
  input[type=password],
  input[type=email] {
    font-size: 14px;
    height: 42px;
    padding: 0 12px;
  }

  input[type=text]::placeholder,
  input[type=number]::placeholder,
  input[type=tel]::placeholder,
  input[type=password]::placeholder,
  input[type=email]::placeholder {
    font-size: 14px;
  }

  .input-tel,
  .input-email,
  .input-account {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
  }

  .input-email .input:first-child {
    width: 100%;
  }

  .input-account .select-primary {
    width: 100% !important;
  }

  .input-account .input:last-child {
    width: 100%;
  }

  .input-email>span {
    display: none;
  }

  .input-email input {
    width: 100% !important;
  }
}

/* Month(월 이동) */
.move-month {
  display: flex;
  gap: 22px;
  align-items: center;
  background-color: #fff;
}

.move-month span {
  font-size: 24px;
  font-weight: 500;
}

.move-month .btn_prev {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../_img/common/icon_prev.svg) no-repeat center center / contain;
}

.move-month .btn_next {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../_img/common/icon_next.svg) no-repeat center center / contain;
}

.movemonth-picker {
  width: 116px;
}

.movemonth-picker input:read-only {
  background-color: transparent;
  border: none;
}

.ui-monthpicker {
  width: 350px !important;
}

.movemonth-picker input {
  border: none;
  font-size: 24px ;
  font-weight: 500 ;
  text-align: center;
  padding: 0 0 ;
  cursor: pointer;
}

.movemonth-picker input::placeholder {
  color: #313131;
  font-size: 24px;
  font-weight: 500;
}

/* selectMonth (input month 박스) */
.month-picker {
  position: relative;
}

.month-picker:after {
  content: '';
  display: inline-block;
  width: 46px;
  height: 46px;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../_img/common/icon_calendar.svg) no-repeat center center / 16px;
}

.month-picker input {
  border: 1px solid #DCDCDC;
  border-radius: 5px;
  cursor: pointer;
}

.month-picker input::placeholder {
  font-size: 14px;
  font-weight: normal;
  color: #B6B6B6;
}

@media screen and (max-width:1000px) {
  .move-month {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--box-shadow6);
    justify-content: center;
  }

  .move-month .btn_prev {
    width: 16px;
    height: 16px;
  }

  .move-month .btn_next {
    width: 16px;
    height: 16px;
  }

  .movemonth-picker {
    width: 186px;
  }

  .ui-monthpicker {
    width: 186px !important;
  }

  .movemonth-picker input {
    font-size: 15px;
    font-weight: 500;
  }

  .movemonth-picker input::placeholder {
    color: #131313;
    font-size: 15px;
    font-weight: 500;
  }
}

/* typeA : 점주 페이지에서 주로 쓰임 */
/* th가 회색인 테이블 */
.tbl__result--typeA {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin-top: 0px;
  position: relative;
  min-height: calc(100% - 70px);
}

.tbl__result--typeA table {
  width: 100%;
}

.tbl__result--typeA table thead {
  border-bottom: 2px solid #DCDCDC;
}

.tbl__result--typeA table thead th.title {
  text-align: left;
  padding-left: 10px;
}

.tbl__result--typeA table th,
.tbl__result--typeA table td {
  height: 46px;
  font-size: 15px;
  color: #131313;
}

.tbl__result--typeA table th {
  color: #3D3D3D;
  font-weight: normal;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.tbl__result--typeA table thead tr th {
  background-color: #FAFAFA;
  height: 61px;
}

.tbl__result--typeA table td {
  border-bottom: 1px solid #DCDCDC;
  text-align: center;
}

.tbl__result--typeA table td.title {
  text-align: left;
  padding-left: 10px;
  word-break: break-all;
}

.tbl__result--typeA table td span.no {
  font-weight: 500;
}

.tbl__result--typeA table tr:hover td {
  background-color: #ECF2FF;
}

.tbl__result--typeA table td .btns_box {
  justify-content: center;
}

.tbl__result--typeA table td .rest {
  display: inline-block;
  width: 100px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  background-color: #ffecec;
}

.tbl__result--typeA table td .cover {
  display: inline-block;
  width: 100px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  background-color: #EEEEEE;
}

@media screen and (max-width:1000px) {
  .tbl__result--typeA table th,
  .tbl__result--typeA table td {
    font-size: 13px;
    height: 43px;
  }

  .tbl__result--typeA table thead tr th {
    background: transparent;
    height: 40px;
  }

  .tbl__result--typeA table tr:hover td {
    background-color: transparent;
  }
}

/* typeB : 근로자 페이지에서 주로 쓰임 */
/* th가 흰색 테이블 */
.tbl__result--typeB {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin-top: 0px;
  min-height: calc(100% - 70px);
}

.tbl__result--typeB table {
  width: 100%;
}

.tbl__result--typeB table th,
.tbl__result--typeB table td {
  height: 46px;
  font-size: 15px;
  color: #131313;
  text-align: center;
}

.tbl__result--typeB table thead th.title {
  text-align: left;
  padding-left: 30px;
}

.tbl__result--typeB table th {
  color: #3D3D3D;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid #DCDCDC;
}

.tbl__result--typeB table td {
  border-bottom: 1px solid #DCDCDC;
}

.tbl__result--typeB table td span.no {
  font-weight: 500;
}

.tbl__result--typeB table td.title {
  text-align: left;
  word-break: break-all;
}

.tbl__result--typeB table td.title {
  padding-left: 30px;
}

.tbl__result--typeB table tr:hover td {
  background-color: #ECF2FF;
}

@media screen and (max-width:1000px) {
  .tbl__result--typeB table td.title {
    padding-left: 0px;
  }

  .tbl__result--typeB table th {
    border-bottom: 2px solid #DCDCDC;
    height: 50px;
    line-height: 20px;
    font-size: 13px;
  }

  .tbl__result--typeB table td {
    height: 43px;
    line-height: 18px;
    font-size: 13px;
  }

  .tbl__result--typeB table tr:hover td {
    background-color: transparent;
  }
}

/* typeC - 테이블 형태가 아닌 아이템 형태 */
.tbl__result--typeC {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #DCDCDC;
  padding: 20px;
  margin-top: 16px;
  min-height: 74vh;
}

.resultC__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  border-radius: 10px;
  height: 100%;
}

.resultC__item {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #DCDCDC;
  padding: 22px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resultC__item:hover {
  background-color: #ECF2FF;
}

.resultC__item .result__title h3 {
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: #131313;
  margin-bottom: 4px;
}

.resultC__item .result__title span {
  font-size: 15px;
}

@media screen and (max-width:1000px) {
  .tbl__result--typeC {
    border: none;
    padding: 0;
    margin-top: 12px;
    min-height: 100%;
  }

  .resultC__item .result__title h3 {
    font-size: 15px;
  }
}

/* #### Pagination #### */
.pagination {
  width: 100%;
  margin-top: 45px;
  justify-content: center;
}

.pagination>ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.pagination>ul>li>a {
  font-size: 14px;
  font-weight: normal;
  vertical-align: middle;
}

.pagination>ul>li>a.on {
  font-weight: 500;
}

.pagination .btn_prev {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../_img/common/icon_prev.svg) no-repeat center center / contain;
}

.pagination .btn_next {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../_img/common/icon_next.svg) no-repeat center center / contain;
}

@media screen and (max-width:1000px) {
  .pagination {
    margin-top: 30px;
  }

  .pagination>ul {
    max-width: 500px;
    margin: 0 auto;
  }

  .pagination>ul>li>a {
    font-size: 15px;
    color: #B6B6B6;
  }

  .pagination>ul>li>a.on {
    font-weight: 500;
    color: #131313;
  }

  .pagination .btn_prev {
    width: 18px;
    height: 18px;
  }

  .pagination .btn_next {
    width: 18px;
    height: 18px;
  }
}

/* 데이터 없는 경우 */
.no-data__contents {
  margin-top: 62px;
  margin-bottom: 12px;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #E9E9E9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  row-gap: 35px;
  min-height: 56vh;
}

.no-data__contents img {
  width: 100px;
  height: 90px;
  object-fit: contain;
}

.no-data__contents span {
  font-size: 24px;
  color: #DCDCDC;
}

@media screen and (max-width:1000px) {
  .no-data__contents {
    margin-top: 0px;
    width: 100%;
    row-gap: 20px;
    min-height: 56vh;
    border: none !important;
  }

  .no-data__contents img {
    width: 50px;
    height: 40px;
  }

  .no-data__contents span {
    font-size: 15px;
  }
}

/* #### Home #### */
.container.home {
  padding: 0 0 !important;
  position: relative;
}

.home__inner {
  padding: 120px 88px 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 50px;
}

.home__greeting>h2 {
  font-size: 60px;
  font-weight: 600;
}

.home__greeting>h2>span.nm {
  color: var(--color-primary);
  font-weight: 600;
}

.home__greeting>p {
  font-size: 40px;
  line-height: 56px;
  font-weight: 400;
  margin-top: 10px;
}

.home-btn_area {
  margin-top: 22px;
}

.cmt_btns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}



.cmt_btns .btn_cmt_ready {
  display: inline-block;
  width: calc(218px / 2);
  height: 46px;
  line-height: 46px;
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  box-shadow: var(--box-shadow4);
}



.cmt_btns .btn_cmt {
  display: inline-block;
  width: calc(218px / 2);
  height: 46px;
  line-height: 46px;
  background-color: var(--color-gray2);
  color: #fff;
  text-align: center;
  box-shadow: var(--box-shadow4);
}

.worker_cnt {
  display: inline-block;
  width: 630px;
  padding: 10px 4px;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  margin-top: 15px;
  border: 1px solid #ddd;
}

.worker_cnt span {
  font-weight: 500;
  display: block;
}

.btn-home {
  width: 227px;
  height: 46px;
  line-height: 46px;
  border-radius: 5px;
  box-shadow: var(--box-shadow4);
  color: #fff;
  border: none;
}

.home-btn_area .btn-home:nth-child(1) {
  background-color: var(--color-primary);
  position: relative;
  padding-left: 9px;
}

.home-btn_area .btn-home span {
  position: relative;
  color: #fff;
}

.home-btn_area .btn-home:nth-child(1) span:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../_img/common/icon_addInfo.svg) no-repeat center center / cover;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

.home-btn_area .btn-home:nth-child(2) {
  background-color: var(--color-navy);
  position: relative;
  padding-left: 9px;
}

.home-btn_area .btn-home:nth-child(2) span:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../_img/common/icon_commute.svg) no-repeat center center / cover;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

.home-btn_area .btn-home span:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  background: url(../_img/common/icon_home_arrow.svg) no-repeat center center / cover;
}

/* Home 하단 탭 영역 */
.home-tab {
  width: 100%;
}

.home-tabs__btns {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #CDCFD2;
  width: 100%;
  gap: 28px;
}

.home-tabs__btns .tabs__link {
  font-size: 28px;
  font-weight: 400;
  line-height: 48px;
  border-bottom: 4px solid transparent;
  color: #969696;
  cursor: pointer;
}

.home-tabs__btns .tabs__link.on {
  border-bottom: 4px solid #2F73EA;
  color: #131313;
  font-weight: 500;
}

.home-tab__content {
  display: none;
  margin-top: 18px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow1);
  min-height: 250px;
  justify-content: center;
  align-items: center;
  padding: 38px 28px;
}

.home-tab__content.on {
  display: flex;
}

.home-tab__content .no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
}

.home-tab__content .no-data span {
  color: #B6B6B6;
  font-size: 20px;
}

/* 홈 : 공지사항 탭 */
.home-notice__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.home-notice__item .contents {
  width: calc(100% - 120px);
}

.home-notice__item .contents h4.title {
  word-break: break-all;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 2px solid #DCDCDC;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-notice__item .contents p {
  font-size: 16px;
}

.home-notice__item .contents .ellipsis-line-3 {
  height: 79px;
  line-height: 28px;
  margin-top: 20px;
}

.home-notice__item .btn_notice-more {
  min-width: 80px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding-right: 10px;
}

.home-notice__item .btn_notice-more:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/common/icon_arrow_right.svg) no-repeat center center / contain;
}

/* 홈 : 연차관리대장 탭 */
.home-tab__content .tbl_home-dayoff {
  width: 100%;
  min-width: 1400px;
}
.home-tab__content .table_wrap {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}

.home-tab__content .table_wrap::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.tbl_home-dayoff table thead tr th {
  height: 40px;
  border: 1px solid #DCDCDC;
}

.tbl_home-dayoff table tbody tr td {
  border: 1px solid #DCDCDC;
}

@media (min-width: 1000px) and (max-width: 1200px) {
  .home__greeting>h2 {
    font-size: 48px;
  }

  .home__greeting>p {
    font-size: 40px;
    line-height: 53px;
  }
}

@media screen and (max-width:1000px) {
  .home__inner {
    width: 90%;
    min-height: calc(100vh - 40px);
    padding: 0 0;
    padding-top: 86px;
    margin: 0 auto;
    justify-content: center;
    row-gap: 40px;
    padding-bottom: 80px;
    align-items: center;
  }

  .home__greeting {
    width: 100%;
  }

  .home__greeting>h2 {
    font-size: 26px;
    line-height: 37px;
  }

  .home__greeting>p {
    font-size: 17px;
    line-height: 24px;
  }

  .home-btn_area>* {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }

  .cmt_btns .btn_cmt {
    width: calc(50% - 3px)
  }

  .btn-home {
    width: 100%;
  }

  .home-tab__content .no-data span {
    font-size: 14px;
  }

  .home-notice {
    padding-bottom: 0;
    width: 100%;
  }

  .home-tab__content {
    padding: 20px;
    min-height: 200px;
  }

  .home-tab__content .no-data {
    justify-content: center;
    height: 100%;
  }

  .home-notice__item .contents {
    width: 100%;
  }

  .home-notice__item .btn_notice-more {
    display: none;
  }

  .home-notice__item .contents h4.title {
    font-size: 14px;
    border-bottom: none;
    padding-bottom: 0;
    line-height: 19px;
    margin-bottom: 4px;
  }

  .home-notice__item .contents span.date {
    font-size: 12px;
    color: #979797;
  }

  .home-notice__item .contents p {
    font-size: 13px;
  }


  .home-tabs__btns .tabs__link {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
  }

  .tbl_home-dayoff table thead tr th {
    background: #FAFAFA;
  }

  .worker_cnt {
    width: 100%;
  }

  .worker_cnt span {
    font-size: 13px;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: -webkit-fill-available;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  opacity: 0;
}

.modal.open {
  z-index: 1000;
  opacity: 1;
}

.modal__inner {
  background-color: #fff;
  max-width: 800px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.modal__close .btn_modal-close {
  display: inline-block;
  width: inherit;
  height: inherit;
  background: url(../_img/common/icon_model-close.svg) no-repeat center center / cover;
}

.modal__header h3 {
  font-size: 33px;
  font-weight: 500;
}

.modal__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.modal__btn .btn-cancel {
  border: 1px solid transparent;
  background-color: #F1F1F5;
  color: #3D3D3D;
}

.modal__btn .btn-confirm {
  border: 1px solid transparent;
  background-color: var(--color-primary);
  color: #fff;
}

.modal__btn.right {
  justify-content: flex-end;
}

.modal__btn.center {
  justify-content: center;
}

.modal__btn.between {
  justify-content: space-between;
}

@media screen and (max-width:1000px) {
  .modal__inner {
    width: 90%;
    border-radius: 10px;
    padding: 20px;
    overflow: auto;
  }

  .modal__header h3 {
    font-size: 18px;
    font-weight: 500;
  }

  .modal__header p {
    font-size: 14px;
  }

  .modal__btn.right {
    justify-content: center;
  }

  .modal__btn.right>* {
    width: 100%;
  }

  .modal__btn .btn {
    height: 46px;
    line-height: 46px;
  }

  .modal__close {
    top: 20px;
    right: 20px;
  }
}

/* 급여명세서 */
.pay-statement__info {
  display: inline-flex;
  float: right;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #70707030;
}

.pay-statement__info dl {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pay-statement__info dt {
  font-weight: 400;
  color: #3D3D3D;
  font-size: 15px;
}

.pay-statement__info dd {
  font-weight: 500;
  color: #000000;
  font-size: 18px;
  min-width: 120px;
}

.paystub__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 53px;
}

.paystub__list .paystub__item {
  flex: 1;
  min-height: 435px;
  position: relative;
  padding-bottom: 44px;
}

.paystub__list .paystub__item:nth-child(1) {
  padding-right: 80px;
  border-right: 1px solid #DCDCDC;
}

.paystub__list .paystub__item:nth-child(2) {
  padding-left: 80px;
}

.paystub__item h4.title {
  font-size: 18px;
  font-weight: 500;
  color: #131313;
  padding-bottom: 10px;
  border-bottom: 2px solid #DCDCDC;
}

.paystub__item>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paystub__item>div dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17.5px 0 10.5px;
  border-bottom: 1px solid #DCDCDC;
  width: calc(50% - 30px);
}

.paystub__item>div dl dt {
  font-size: 15px;
  color: #3D3D3D;
  display: flex;
}

.paystub__item>div.long {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding-right: 20px;
}

.paystub__item:nth-child(2)>div.long {
  padding-right: 0;
  padding-left: 20px;
}

.paystub__item .tooltip {
  margin-left: 6px;
  position: relative;
}

.paystub__item .tooltip .btn_tooltip {
  display: inline-block;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background: url(../_img/common/icon_question.svg) no-repeat center center/contain;
}

.paystub__item .tooltip .tooltip_txt {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: max-content;
  max-width: 359px;
  border-radius: 6px;
  border: 1px solid #E5E5EC;
  background-color: #767676;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  padding-right: 37px;
  z-index: 100;
}

.paystub__item .tooltip.active .tooltip_txt {
  display: block;
}

.paystub__item .tooltip .btn_close-tooltip {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px; 
  right: 12px;
  background: url(../_img/common/icon_close_tooltip.svg) no-repeat center center/ contain;
}

.paystub__item>div dl dd {
  font-size: 15px;
  color: #3D3D3D;
  font-weight: 500;
}

.paystub__item>div.long dl {
  width: 100%;
}

.total_paystub {
  margin-top: 70px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(50% - 80px);
  float: right;
  padding-bottom: 10px;
  border-bottom: 2px solid #DCDCDC;
}

.total_paystub dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width:1700px) {
  .paystub__content .paystub__list {
    margin-top: 36px;
    flex-direction: column;
    width: 100%;
  }

  .paystub__content .paystub__list .paystub__item {
    width: 100%;
  }

  .paystub__content .paystub__list .paystub__item:nth-child(1) {
    padding-right: 0;
    border-right: none;
  }

  .paystub__content .paystub__list .paystub__item:nth-child(2) {
    padding-left: 0;
    margin-top: 35px;
  }
}

@media screen and (max-width:1400px) {
  .paystub__content .pay-statement__info {
    display: flex;
    flex-direction: row;
    float: none;
    align-items: flex-start;
    gap: 10px;
    margin-top: 40px;
    border: none;
  }

  .paystub__content .pay-statement__info dl {
    gap: 20px;
  }

  .paystub__content .pay-statement__info dd {
    font-size: 15px;
    font-weight: normal;
  }
}

@media screen and (max-width:1000px) {
  .paystub__content .paystub__list {
    margin-top: 0px;
  }

  .pay-statement__info {
    display: flex;
    flex-direction: column;
    float: none;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0;
    border-bottom: none;
  }

  .paystub__content .pay-statement__info {
    margin-top: 0;
    padding: 10px 20px;
  }

  .pay-statement__info dl {
    gap: 20px;
  }

  .pay-statement__info dd {
    font-size: 15px;
    font-weight: normal;
  }

  .modal_pay-statement .total_paystub {
    margin-top: 30px;
    border-bottom: 1px solid #DCDCDC;
    padding-top: 10px;
    border-top: 2px solid #DCDCDC;
  }

  .total_paystub dl {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
  }

  .total_paystub dl dt,
  .total_paystub dl dd {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
  }

  .paystub__list {
    margin-top: 36px;
    flex-direction: column;
  }

  .paystub__list .paystub__item {
    width: 100%;
    min-height: auto;
  }

  .paystub__list .paystub__item:nth-child(1) {
    padding-right: 0;
    border-right: none;
  }

  .paystub__list .paystub__item:nth-child(2) {
    padding-left: 0;
    margin-top: 20px;
  }

  .paystub__item>div {
    flex-direction: column;
  }

  .paystub__item>div:not(.long) {
    display: none;
  }

  .paystub__item>div dl {
    width: 100%;
    border-bottom: none;
    padding: 10px 20px;
  }

  .paystub__item h4.title {
    border-top: 2px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
    padding: 8px 15px;
    position: relative;
    font-size: 16px;
    background-color: #FAFAFA;
  }

  .paystub__item h4.title:after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 10px;
    background: url(../_img/mobile/icon_arrow_down.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: 0.35s;
  }

  .paystub__item h4.title.active:after {
    transform: translateY(-50%) rotate(-180deg);
  }

  .paystub__item>div.long {
    padding: 0;
    border-top: none;
    border-bottom: 1px solid #DCDCDC;
  }

  .paystub__item:nth-child(2)>div.long {
    padding: 0;
  }

  .paystub__item>div.long.bdt {
    border-top: 2px solid #DCDCDC;
  }

  .paystub__item>div.long dl {
    padding: 10px 9px;
    font-size: 16px;
    font-weight: 500;
  }

  .total_paystub {
    width: 95%;
    margin: 10px auto 0;
    padding: 10px;
    justify-content: center;
    float: none;
    border-top: 2px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
  }

  .paystub__item>div dl {
    position: relative;
  }

  .paystub__item .tooltip {
    position: static;
  }

  .paystub__item .tooltip .tooltip_txt {
    max-width: 100%;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
  }
}

/* #### 공통 상세페이지 ####  */
.dtl__title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  word-break: break-all;
  word-wrap: break-word;
}

.dtl__title h4.tit {
  margin-left: 10px;
}

.dtl__title span.date {
  margin-right: 5px;
  min-width: 86px;
}

.dtl__cnts {
  width: 100%;
  margin-top: 16px;
  padding: 32px 30px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #DCDCDC;
  min-height: 342px;
}

.dtl__cnts .cnts {
  width: 100%;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 16px;
  line-height: 22px;
}

.dtl__cnts .cnts img {
  width: 100%;
  max-width: 900px;
}

.dtl__cnts iframe {
  width: 100%;
  max-width: 600px;
  display: block;
}

.dtl__btns {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

@media screen and (max-width:1000px) {
  .dtl__content {
    background-color: #fff;
    border-radius: 10px;
    padding: 12px;
    min-height: 48vh;
    padding-top: 26px;
  }

  .dtl__title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 0px;
  }

  .dtl__title h4 {
    width: 100%;
    padding-left: 10px;
    font-size: 16px;
    padding-bottom: 10px;
    margin-left: 0 !important;
    border-bottom: 1px solid #DCDCDC;
  }

  .dtl__title span.date {
    padding: 12px;
    font-size: 14px;
    color: #B6B6B6;
  }

  .dtl__title span.date:before {
    content: '작성일\00a0\00a0\00a0|\00a0\00a0\00a0';
    color: #3D3D3D;
    font-size: 14px;
  }

  .dtl__cnts {
    margin-top: 0;
    border: none;
    padding: 12px;
    border-radius: 0;
    border-top: 1px solid #DCDCDC;
  }

  .dtl__cnts .cnts {
    font-size: 14px;
    line-height: 20px;
  }

  .dtl__cnts .cnts img {
    width: 100%;
  }

  .dtl__btns {
    padding-right: 0;
    margin-top: 20px;
  }

  .dtl__btns .btn {
    width: 100%;
    height: 46px;
    line-height: 46px;
    border: none;
    box-shadow: var(--box-shadow7);
  }
}

/* #### 동영상 카드 리스트 #### */
.video__list {
  display: flex;
  justify-content: flex-start;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
  min-height: 645px;
}

.video__item {
  min-width: calc(100% / 5 - 22px);
  max-width: calc(100% / 5 - 22px);
  flex: 1;
  border-radius: 10px;
  border: 1px solid #B6B6B6;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-shadow: var(--box-shadow6);
  height: 310px;
}

.video__item .thum {
  width: 100%;
  height: 220px;
}

.video__item .thum img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

.video__item .title {
  margin-top: 12px;
  padding: 0 10px;
  line-height: 22px !important;
  font-size: 15px;
  font-weight: 400;
}

.video__list+.pagination {
  margin-top: 139px;
}

/* #### 동영상 상세페이지 #### */
.video__area {
  max-width: 777px;
  margin: 0 auto;
}

.video__area video {
  width: 100%;
}

.video__area .cnts {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid #DCDCDC;
}

/* 교육자료 & 공지사항 Common */
/* #### Edu Common #### */
.cmnty__inner .no-data__contents {
  margin-top: 0px;
  height: 100%;
  margin-bottom: 0;
  min-height: 65vh;
}

.community-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.community-title .h_edu_icon {
  display: inline-block;
  width: 140px;
  height: 48px;
  margin-left: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  background: url(/_img/owner/h_edu_logo.png) no-repeat center center / contain;
}

.community-title h3 {
  font-size: 24px;
  font-weight: 400;
  margin-left: 10px;
}

.cmnty__contents {
  padding: 30px;
  height: auto;
  min-height: 73vh;
}

.cmnty__contents .h-edu__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

.cmnty__contents .h-edu__logo .h_edu_icon {
  display: inline-block;
  border-radius: 8px;
  width: 400px;
  height: 200px;
  background: url(/_img/owner/h_edu_logo.png) no-repeat center center / contain;
}

.search__form {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 16px;
  padding-left: 10px;
  padding-right: 5px;
}

.search__form>span {
  font-size: 15px;
}

.search__form .search__wrap {
  max-width: 732px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search__form .search__wrap input {
  width: calc(100% - 172px);
}

.search__form .search__wrap .btn {
  width: 160px !important;
  height: 46px;
  line-height: 46px !important;
}

/* 교육자료 & 공지사항 Common */
/* #### Edu Common #### */
@media (min-width: 1500px) and (max-width: 1800px) {
  .cmnty__contents {
    padding: 30px;
  }

  .video__item {
    min-width: calc(100% / 4 - 22px);
    max-width: calc(100% / 4 - 22px);
  }
}

@media (min-width: 1300px) and (max-width: 1550px) {
  .cmnty__contents {
    padding: 30px;
  }

  .video__item {
    min-width: calc(100% / 3 - 22px);
    max-width: calc(100% / 3 - 22px);
  }

  .search__form .search__wrap {
    max-width: 500px;
  }
}

@media (min-width: 1000px) and (max-width: 1300px) {
  .cmnty__contents {
    padding: 30px;
  }

  .search__form {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 0px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .search__form>* {
    margin-bottom: 8px;
  }

  .search__form>span {
    font-size: 11px;
    color: #979797;
  }

  .search__form .search__wrap {
    width: 100%;
    max-width: 100%;
  }

  .search__form .search__wrap input {
    width: 100%;
  }


  .search__form .select-primary {
    width: 100% !important;
    height: 46px !important;
    line-height: 46px !important;
  }

  .video__item {
    min-width: calc(100% / 2 - 22px);
    max-width: calc(100% / 2 - 22px);

  }
}

@media screen and (max-width:1000px) {
  .cmnty__inner .no-data__contents {
    min-height: 83vh;
    margin-top: 12px;
  }

  .community-title>h3 {
    display: none;
  }

  .community-title>.btn {
    width: 100% !important;
    margin-bottom: 8px;
    box-shadow: 0 2px 2px rgb(61, 61, 61, 0.08);
  }

  .cmnty__contents {
    padding: 0px;
    min-height: 100%;
    margin-top: 0px;
  }

  .cmnty__contents .h-edu__logo .h_edu_icon {
    width: 100%;
    height: 150px;
  }

  .cmnty__inner {
    padding: 0 0;
    margin-top: 0;
  }

  .search__form {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 0px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .search__form>* {
    margin-bottom: 8px;
  }

  .search__form>span {
    font-size: 11px;
    color: #979797;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .search__form .search__wrap {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .search__form .search__wrap input {
    width: 100%;
    border: none;
    box-shadow: 0 2px 2px rgb(61, 61, 61, 0.08);
  }

  .search__form .search__wrap .btn {
    flex-basis: 100px;
    flex-shrink: 0;
    height: 42px;
    line-height: 42px !important;
    box-shadow: 0 2px 2px rgb(61, 61, 61, 0.08);
  }

  .search__form .select-primary {
    width: 100% !important;
    height: 46px !important;
    line-height: 46px !important;
    border: none !important;
    box-shadow: 0 2px 2px rgb(61, 61, 61, 0.08);
  }

  /* #### 동영상 교육 #### */
  .video__list {
    min-height: 100%;
  }

  .video__list+.pagination {
    margin-top: 20px;
  }

  .video__item {
    border: none;
    padding: 16px;
    max-width: 500px;
    margin: 0 auto;
  }

  .video-dtl .dtl__cnts {
    padding: 17px 0 0;
  }

  .video__item {
    min-width: calc(100% / 2 - 22px);
    max-width: calc(100% / 2 - 22px);
    height: 317px;
  }
}

@media screen and (max-width:580px) {
  .video__item {
    min-width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* #### 정보수정 #### */
.modify_info .main__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 110px 20px;
}

.modify__inner {
  width: 100%;
}

.modify__content {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

.modify__content>* {
  width: 50%;
  padding: 0 40px;
}

.modal_modify-pwd .modal__header {
  text-align: center;
}

.modal_modify-pwd .modal__header h3 {
  font-size: 24px;
  font-weight: normal;
}

.modal_modify-pwd .modal__inner {
  max-width: 642px;
}

.form_modify-pwd {
  padding-top: 30px;
}

.form_modify-pwd .input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.form_modify-pwd .input.new-pwd input:invalid,
.form_modify-pwd .input.new-pwd.invalid input {
  border: 1px solid var(--color-red);
}

.form_modify-pwd .input label {
  min-width: 120px;
  font-size: 17px;
  line-height: 24px;
}

.form_modify-pwd .err-text {
  margin-left: 147px;
  margin-top: 5px;
}

.form_modify-pwd .input.new-pwd {
  position: relative;
}

.form_modify-pwd .input.new-pwd input {
  background: url(../_img/common/icon_lock.svg) no-repeat center right 10px / 22px 22px;
}

.form_modify-pwd .input.new-pwd.red input {
  background: url(../_img/common/icon_lock--red.svg) no-repeat center right 10px / 22px 22px;
}

.form_modify-pwd .input.new-pwd.green input {
  background: url(../_img/common/icon_lock--green.svg) no-repeat center right 10px / 22px 22px;
}

.form_modify-pwd .input.new-pwd.green:after {
  /* content: '안전'; */
  color: var(--color-green);
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  font-size: 15px;
}

.form_modify-pwd .input.new-pwd.red:after {
  /* content: '사용불가'; */
  color: var(--color-red);
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  font-size: 15px;
}

.modal_modify-pwd .modal__btn {
  margin-top: 32px;
}

.basic-info {
  border-right: 1px solid #DCDCDC;
}

.basic-info h4.tit span {
  display: inline-block;
  transform: translateY(-7px);
}

.modify-info__input {
  margin-top: 30px;
}

.modify-info__input .input_wrap {
  position: relative;
}

.modify-info__input .input_wrap .err-text {
  margin-top: 5px;
}

.modify-info__input dl {
  display: flex;
  align-items: baseline;
  gap: 19px;
  margin-bottom: 20px;
  line-height: 35px;
}

.modify-info__input dl.work-time dd span.time {
  display: block;
}

.modify-info__input dl dt {
  min-width: 140px;
  flex-basis: 140px;
  flex-shrink: 0;
  color: #3D3D3D;
  font-weight: 500;
  font-size: 16px;
}

.modify-info__input dl dd {
  width: calc(100% - 100px);
}

.modify-info__input dl dd>span {
  margin-left: 10px;
  font-size: 14px;
}

.register_file {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.register_file>a {
  color: #3D3D3D;
  text-decoration: underline;
  position: relative;
  padding-right: 21px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.register_file>a:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../_img/common/icon_download.svg) no-repeat center center / contain;
}

.register_file .custom-checkbox input[type=checkbox]+em {
  width: 15px;
  height: 15px;
}

.input.work-dv input {
  width: 100%;
}

.modify__inner .err-text {
  margin-top: 5px;
  line-height: 17px;
  margin-left: 0px;
}

.modify__inner .input.invalid input {
  border: 1px solid var(--color-red);
}

.work-time-item {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.work-time-item span {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

.custom_file {
  display: flex;
  gap: 9px;
  align-items: center;
}

.custom_file .upload-name {
  display: inline-block;
  height: 46px;
  padding: 0 16px;
  border: 1px solid #DCDCDC;
  width: 100%;
  border-radius: 5px;
}

.custom_file .upload-name::placeholder {
  color: #999999;
  font-size: 15px;
}

.custom_file label {
  display: inline-block;
  width: 100%;
  line-height: 46px;
  max-width: 170px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #fff;
  cursor: pointer;
  height: 46px;
}

.custom_file input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

@media screen and (max-width:1400px) {
  .modify_info .main__container {
    padding: 40px 20px;
  }

  .modify__content {
    flex-direction: column;
    padding: 17px 12px;
  }

  .modify__content>* {
    padding: 0 0;
    width: 100%;
  }

  .additional-info {
    border-left: none;
    margin-top: 44px;
  }
}

@media screen and (max-width:1000px) {
  .modify_info .main__container {
    padding: 12px 20px;
  }

  .modify__inner {
    background-color: #fff;
    border-radius: 10px;
    padding-bottom: 50px;
  }

  .modify-info__input {
    margin-top: 40px;
  }

  .modify-info__input input,
  .modify-info__input .select-primary {
    height: 42px !important;
    line-height: 42px !important;
  }

  .modify-info__input dl {
    /* margin-bottom: 12px; */
    gap: 10px;
  }

  .modify-info__input dl dt {
    flex-basis: 90px;
    min-width: auto;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 18px;
  }

  .modify-info__input dl dd {
    width: calc(100% - 90px);
  }

  .additional-info .modify-info__input dl dd .input {
    width: 100%;
  }

  .basic-info {
    border-right: none;
  }

  .modify-info__input dl.tel,
  .modify-info__input dl.address,
  .modify-info__input dl.email,
  .modify-info__input dl.account {
    margin-bottom: 20px;
  }

  .modify-info__input .input-account .input,
  .modify-info__input .input-email .input {
    width: 100%;
  }

  .modify-info__input .input-tel {
    width: 100%;
    display: block;
  }

  .modify-info__input .input-tel .input {
    margin-bottom: 10px;
  }

  .modify-info__input .input-tel .select-primary {
    width: 100% !important;
  }

  .modify-info__input .input-tel>span {
    display: none;
  }

  .modify-info__input dl.address .w130 {
    width: 100px !important;
  }

  .modify-info__input dl.address .input.gap12 {
    gap: 10px;
  }

  .modify-info__input .btn-lg {
    width: 100%;
    font-size: 14px;
    height: 42px;
    line-height: 42px;
  }

  .modify-info__input .input-tel .input {
    width: 100% !important;
  }

  .modify-info__input dl dd>span {
    display: block;
    text-align: right;
  }

  .input-email .select-primary {
    width: 100% !important;
  }

  .input.work-dv input {
    width: 100%;
  }

  .modify__inner .btn-area {
    width: 95%;
    margin: 0 auto;
    margin-top: 0px;
    padding-right: 0;
    justify-content: center !important;
    margin-top: 50px;
  }

  .modify__inner .btn-area>* {
    width: 100%;
  }

  .modal_modify-pwd .modal__inner {
    max-width: 90%;
  }

  .modal_modify-pwd .modal__header h3 {
    font-size: 18px;
  }

  .form_modify-pwd {
    padding: 15px 0;
  }

  .form_modify-pwd .input {
    margin-bottom: 16px !important;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 8px;
  }

  .form_modify-pwd .input label {
    font-size: 14px;
  }

  .form_modify-pwd .input input {
    height: 42px;
    line-height: 42px;
  }

  .form_modify-pwd .input input::placeholder {
    /* font-size: 10px; */
    color: #979797;
  }

  .form_modify-pwd .input.new-pwd.green:after {
    content: none;
  }

  .form_modify-pwd .input.new-pwd.red:after {
    content: none;
  }

  .modal_modify-pwd .modal__btn {
    justify-content: center;
  }

  .modal_modify-pwd .modal__btn>* {
    width: 100%;
  }

  .custom_file label {
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    max-width: 90px;
  }

  .register_file>span {
    display: none;
  }

  .register_file>a {
    max-width: calc(100% - 96px);
    font-size: 13px;
  }

  .register_file .custom-checkbox {
    font-size: 12px;
  }
}

@media screen and (max-width:580px) {
  .modify-info__input dl {
    flex-direction: column;
    row-gap: 7px;
    margin-bottom: 16px;
  }

  .modify-info__input dl dt {
    flex-basis: auto;
  }

  .modify-info__input dl dd {
    width: 100%;
  }

  .modify-info__input dl dd>span {
    text-align: left;
    margin-left: 0;
  }

  .modify-info__input .input-tel {
    display: flex;
    width: auto;
    align-items: center;
    gap: 5px;
  }

  .modify-info__input .input-tel .input {
    width: calc((100% / 3) - 5px) !important;
    margin-bottom: 0;
  }
}

/* #### 스케줄 확인 #### */
.schd-confirm__inner .no-data__contents {
  min-height: 68vh;
  margin-top: 20px;
}

.schd-confirm__content {
  padding: 10px 0px;
}

.schd_confirm .move-month {
  justify-content: center;
}

.schd_confirm .no-data__contents {
  margin-top: 32px;
}

.calendar_legend {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
  column-gap: 20px;
}

.calendar_legend.left {
  justify-content: flex-start;
}

.calendar_legend>div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.calendar_legend .legned {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.schd-calendar__wrap {
  overflow-x: auto;
  padding-bottom: 12px;
}

.schd-calendar__wrap .scroll_wrap::-webkit-scrollbar {
  height: 5px;
}

.schd-calendar__wrap .scroll_wrap::-webkit-scrollbar-thumb {
  height: 30%;
  background: #B6B6B6;
  border-radius: 10px;
}

.schd-calendar__wrap .scroll_wrap::-webkit-scrollbar-track {
  background: #DCDCDC;
}

.schd-calendar__wrap .schd-calendar {
  /* 수정 1770px - >1300px*/
  min-width:1300px;
}

.schd-calendar {
  width: 100%;
  display: block;
  margin-top: 50px;
}

.schd-calendar ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5px;
  width: 100%;
  margin-bottom: 5px;
}

.schd-calendar ul li {
  /* 수정 */
  min-width: 210px;
  width: calc(100% / 7);
  height: auto;
  min-height: 190px;
  border: 1px solid #DCDCDC;
  padding: 10px;
  position: relative;
}

.schd-calendar ul li.disabled {
  background-color: #FAFAFA;
}

.schd-calendar ul li>span.day {
  color: #3D3D3D;
  font-size: 23px;
  line-height: 32px;
}

.schd-calendar ul li>span.day.today {
  color: #fff;
  background-color: #2F73EA;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  width: 33px;
  height: 33px;
  line-height: 32px;
}

.schd-calendar ul li strong.overfive {
  position: absolute;
  right: 9px;
  top: 11px;
  background-color: #E5EEFE;
  border-radius: 20px;
  text-align: center;
  font-size: 12px;
  display: inline-block;
  width: 46px;
  height: 23px;
  line-height: 23px;
}

.schd-calendar ul li em.holiday-txt {
  color: #979797;
  font-size: 15px;
  display: inline-block;
  padding-left: 4px;
}

.schd-calendar ul li span.day.holiday,
.schd-calendar ul li span.day.sunday {
  color: #EA2F2F;
}

.schd-calendar ul li span.day.holiday em {
  font-size: 14px;
  color: #979797;
  margin-left: 7px;
  display: inline-block;
}

.schd-calendar ul li .workers {
  margin-top: 11px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
}

/* .schd-calendar ul li .workers>span {
  display: inline-block;
  text-align: center;
  width: 50%;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  font-weight: 500;
  position: relative;
  cursor: default;
} */

.schd-calendar ul li .workers .worker_time {
  display: flex;
  gap: 12px;
  align-items: center;
}

.schd-calendar ul li .workers .worker_time>span {
  display: inline-block;
  text-align: center;
  width: 50%;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  font-weight: 500;
  position: relative;
  cursor: default;
  /* 수정 */
  font-size: 13px;
}

.schd-calendar ul li .workers .worker_time> p {
  text-align: center;
  width: 50%;
  /* 수정 */
  font-size: 13px;
}

span.s-month {
  background-color: #E7FBE2;
}

span.s-day {
  background-color: #FAE1E5;
}

span.s-hour {
  background-color: #FAF1E2;
}

span.s-free {
  background-color: #E2E0EE;
}

.schd-calendar ul li .workers span .tooltip {
  position: absolute;
  top: 50%;
  right: -160px;
  transform: translateY(-50%);
  display: inline-block;
  width: 178px;
  height: 44px;
  line-height: 40px;
  background: url(../_img/worker/tooltip.png) no-repeat center center;
  background-size: 178px 44px;
  z-index: 100;
  display: none;
  text-align: center;
  vertical-align: middle;
}

.schd-calendar ul li .workers span .tooltip>span {
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 170px;
  margin-left: 7px;
}

.schd-calendar ul li .workers span:hover .tooltip {
  display: inline-block;
}

.schd-calendar ul li .btn-more {
  position: absolute;
  bottom: 3px;
  right: 10px;
  display: inline-block;
  width: 17px;
  height: 14px;
  background: url(../_img/worker/icon_more.svg) no-repeat center center / contain;
}

.schd-calendar ul.day-week li {
  padding: 0;
  background-color: #E9E9E9;
  text-align: center;
  border: 1px solid #DCDCDC;
  color: #979797;
  font-weight: 500;
  line-height: 42px;
  height: 42px;
  min-height: auto;
}

.modal_schdule_person .modal__inner {
  max-width: 660px;
  overflow-x: hidden;
  padding-bottom: 50px;
}

.modal_schdule_person .sched-person__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.modal_schdule_person .modal__content {
  margin-top: 60px;
}

.modal_schdule_person.confirm .modal__content {
  margin-top: 20px;
}

.modal_schdule_person .modal__header span {
  font-size: 20px;
  display: inline-block;
  margin-top: 10px;
}

.sched-person__list .sched-person__item {
  height: 46px;
  line-height: 46px;
  border-radius: 5px;
  background-color: #E7FBE2;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  cursor: default;
}

.sched-person__list .sched-person__item .tooltip {
  position: absolute;
  top: 37px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 178px;
  height: 50px;
  line-height: 40px;
  background: url(../_img/common/tooltip.png) no-repeat center center;
  background-size: 178px 50px;
  z-index: 100;
  display: none;
  text-align: center;
  vertical-align: middle;
}

.sched-person__list .sched-person__item .tooltip span {
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 170px;
  margin-top: 3px;
  /* margin-left: 7px; */
}

.sched-person__list .sched-person__item:hover .tooltip {
  display: inline-block;
}

.sched-person__list .sched-person__item.s-month {
  background-color: #E7FBE2;
}

.sched-person__list .sched-person__item.s-day {
  background-color: #FAE1E5;
}

.sched-person__list .sched-person__item.s-hour {
  background-color: #FAF1E2;
}

.sched-person__list .sched-person__item.s-free {
  background-color: #E2E0EE;
}

.mobile_schd-calendar {
  display: none;
}

.m_calendar {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.m_calendar>ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #dcdcdc;
}

.m_calendar>ul:first-child {
  border-top: none;
}

.m_calendar ul li {
  flex: 1;
  display: inline-block;
  text-align: center;
  height: 40px;
  font-size: 11px;
  padding-top: 5px;
}

.m_calendar .day-week li {
  height: 28px;
  line-height: 28px;
  padding-top: 0;
}

.m_calendar ul li.selected {
  background-color: #ECF2FF;
}

.m_calendar ul li .today {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
}

.m_calendar ul li .sunday,
.m_calendar ul li .holiday {
  color: #EA2F2F;
}

.mobile_schd-calendar .no-data__contents {
  min-height: 30vh;
}

.m_schd-info {
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.mobile_schd-calendar .no-data__contents.on {
  display: flex !important;
}

.m_schd-info.on {
  display: block;
}

.m_schd-info h3.title {
  height: 39px;
  line-height: 39px;
  background-color: #FAFAFA;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
}

.m_schd-info .content {
  background-color: #fff;
  padding: 14px 23px;
}

.m_schd-info .content>span {
  font-size: 13px;
}

.m_schd-info .content .sched-person__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.m_schd-info .content .sched-person__list .sched-person__item {
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  font-weight: 400;
}

.shcd-timed__list .shcd-timed__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.shcd-timed__list .shcd-timed__item:last-child {
  margin-bottom: 0;
}

.shcd-timed__list .shcd-timed__item>span {
  display: inline-block;
  width: 85px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: normal;
}

.shcd-timed__list .shcd-timed__item>b {
  font-size: 15px;
  padding-left: 32px;
  border-left: 1px solid #DCDCDC;
}

@media screen and (max-width:1600px) {
  .schd-confirm__content {
    padding: 12px 0;
  }
}

@media screen and (max-width:1300px) {
  .mobile_schd-calendar {
    display: block;
    margin-top: 12px;
  }

  .schd-calendar {
    display: none;
  }
}

@media screen and (max-width:1000px) {
  .schd_confirm .no-data__contents {
    margin-top: 12px;
  }

  .modal_schdule_person .modal__inner {
    max-width: 90%;
  }

  .calendar_legend {
    margin-top: 22px;
    justify-content: flex-start;
    column-gap: 10px;
  }

  .calendar_legend>div {
    gap: 4px;
    font-size: 13px;
  }

  .calendar_legend .legned {
    width: 14px;
    height: 14px;
    border-radius: 2px;
  }
}

/* 출퇴근 조회 테이블 */
.table_commute {
  width: 100%;
}

.table_commute .modal_commute-modify {
  width: auto;
  height: auto;
}

.table_commute .commute-modify__inner {
  flex-direction: column;
  padding: 5px;
}

.table_commute .commute-modify__inner .flex-jsb-ac {
  gap: 5px;
}

.table_commute .commute-modify__inner .flex-jsb-ac>* {
  flex: 1;
}

.table_commute table {
  width: 100%;
  border-collapse: collapse;
}

.table_commute table th,
.table_commute table td {
  height: 50px;
  vertical-align: middle;
  background-color: #fff;
  color: #131313;
  font-size: 15px;
  text-align: center;
  border: 1px solid #DCDCDC;
}

.table_commute thead th {
  font-weight: 500;
}

.table_commute thead th span.time,
.table_commute thead th span.info {
  font-weight: 500;
  position: relative;
  padding-right: 20px;
}

.table_commute thead th .date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.table_commute thead th b:nth-child(1) {
  display: inline-block;
  width: 70px;
  border-right: 1px solid #DCDCDC;
  /* padding-right: 24px; */
}

.table_commute thead th span.time:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background: url(../_img/common/icon_clock.svg) no-repeat center center / contain;
}

.table_commute thead th span.info:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  background: url(../_img/common/icon_info.svg) no-repeat center center / contain;
}

.table_commute tbody td span.worker,
.table_commute tbody td span.time {
  display: inline-block;
  width: 100px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.table_commute tbody td span.cover {
  display: inline-block;
  width: 64px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #FF7638;
}

.table_commute tbody td span.rest {
  display: inline-block;
  width: 64px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #757575;
}

.table_commute tbody td span.time {
  background-color: #ECF2FF;
}

.table_commute tbody td span.time.not-work {
  background-color: #EEEEEE;
  color: #979797;
}

.table_commute tbody td .date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.table_commute tbody td .date span.day-week {
  border-right: 1px solid #DCDCDC;
  /* padding-right: 29px; */
  display: inline-block;
  width: 78px;
}

.table_commute tbody td .date span.day {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  vertical-align: middle;
  line-height: 27px;
}

.table_commute tbody td .date.not-work span {
  color: #B6B6B6;
}

.table_commute tbody td .date.today span.day {
  background-color: #2F73EA;
  color: #fff;
}

.table_commute .btn_modify {
  width: 50px !important;
  height: 25px;
  background-color: var(--color-primary);
  color: #fff;
}

.table_commute .btn_delete {
  width: 50px !important;
  height: 25px;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

/* 근무시간 수정 모달 */
.form_worktime {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}

.form_worktime .input_wrap {
  margin-bottom: 21px;
  width: 47%;
}

.form_worktime .input_wrap>label {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 10px;
}

.form_worktime .input_wrap .input {
  width: 100%;
}

.form_worktime .input_wrap .input.time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

@media screen and (max-width:1000px) {
  .form_worktime .input_wrap {
    width: 100%;
  }
}

/* 근무시간 정산 */
.modal.modal_salcalculate .modal__inner {
  max-width: 1140px;
}

.modal-calculate__content h3 {
  font-size: 24px;
  font-weight: 500;
}

.cal__table {
  width: 100%;
  margin: 40px 0 20px;
}

.cal__table tbody th {
  background-color: #FAFAFA;
  font-size: 16px;
  font-weight: 500;
}

.cal__table tbody td {
  background-color: #fff;
  font-size: 15px;
  font-weight: normal;
}

.cal__table tbody th,
.cal__table tbody td {
  border: 1px solid #DCDCDC;
  vertical-align: middle;
  text-align: center;
  height: 36px;
}

.custom_table {
  max-width: 1000px;
  width: 80%;
  border: none !important;
}

.custom_table tbody tr:nth-child(1) {
  border-bottom: 2px solid #DCDCDC;
}

.custom_table tbody th,
.custom_table tbody td {
  height: 34px;
  vertical-align: middle;
  background-color: transparent !important;
  text-align: center;
}

.custom_table tbody th {
  font-weight: 500 !important;
  border-right: none !important;
  border-left: none !important;
}

.custom_table tbody tr:nth-child(1) td {
  font-weight: 500;
}

.custom_table tbody tr td:nth-child(1) {
  font-weight: 500;
}

@media screen and (max-width:1000px) {
  .custom_table {
    max-width: 1000px;
    width: 100%;
  }
}


.custom-textarea textarea {
  width: 100%;
  height: 130px;
  border: 1px solid var(--color-gray);
  background-color: #fff;
  border-radius: 5px;
  resize: none;
  padding: 12px;
}

.modal_modify_history .modal__inner {
  overflow-y: auto
}

@media screen and (max-width:1000px) {
  .modify-history__inner .tbl__result--typeA {
    padding: 0;
  }

  .modify-history__inner .tbl__result--typeA th,
  .modify-history__inner .tbl__result--typeA td {
    font-size: 11px;
  }

  .modify-history__inner .tbl__result--typeA table thead tr th {
    height: 35px;
  }
}

/* timepicker */
.timepicker_flex_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.timepicker_flex_box .custom-timepicker {
  width: 100px;
}

.timepicker-popover input {
  padding: 0;
}

.timepicker-popover .btn {
  width: 50px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-size: 13px;
}

.timepicker-popover .btn.cancel-btn {
  color: gray;
  background-color: #fff;
  border: 1px solid gray;
  width: 70px;
}

@media screen and (max-width:1000px) {
  .custom-timepicker {
    touch-action: none;
  }
}

.custom-timepicker .clock-timepicker {
  min-width: 100% !important;
  width: 100% !important;
}

.custom-timepicker .clock-timepicker input {
  min-width: 100% !important;
}
.custom-timepicker .clock-timepicker-popup {
  position: absolute !important; 
  top: 50px !important;
  left: 0 !important;
}

.custom-timepicker.disabled {
  position: relative;
}

.custom-timepicker.disabled input {
  background-color: #eeeeee;
}

.custom-timepicker.disabled:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}

.timepicker-ui-circle-hand {
  top: 0.1rem !important;
  left: 0.1rem !important;
}

.timepicker-ui-dots {
  font-size: 1.6rem !important;
}

.timepicker-ui-header {
  padding-bottom: 10px !important;
}

.timepicker-ui-hour,
.timepicker-ui-minutes,
.timepicker-ui-hour.mobile,
.timepicker-ui-minutes.mobile {
  font-size: 51.2px !important;
  height: auto !important;
}

/* 문서, 증명서 메뉴 */
.doc__inner .contents__box {
  padding: 32px 30px;
}

/* 사직서 */
.form_resign {
  width: 100%;
  margin-top: 20px;
}

.resign_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resign_top .btn_download {
  position: static;
}

.resign__contents {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 0;
}

.resign__contents .scroll_wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}

.resign__contents .scroll_wrap::-webkit-scrollbar {
  height: 5px;
}

.resign__contents .scroll_wrap::-webkit-scrollbar-thumb {
  height: 30%;
  background: #B6B6B6;
  border-radius: 10px;
}

.resign__contents .scroll_wrap::-webkit-scrollbar-track {
  background: #DCDCDC;
}

h3.resign_title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

.tbl_resign {
  margin-top: 30px;
}

.tbl_resign.mobile {
  display: none;
}

.tbl_resign table {
  width: 100%;
}

.tbl_resign table td,
.tbl_resign table th {
  height: 50px;
  vertical-align: middle;
  border: 1px solid #DCDCDC;
  padding: 5px 8px;
  font-size: 15px;
  line-height: 22px;
  word-break: keep-all;
}

.tbl_resign table th {
  background-color: #fafafa;
}

.tbl_resign table .custom-datepicker .datepicker {
  height: 40px;
}

.tbl_resign table .custom-datepicker:after {
  width: 40px;
  height: 40px;
}

.resign_notice {
  margin-top: 30px;
}

.resign_notice h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.resign_notice ul li {
  font-size: 16px;
  line-height: 24px;
  list-style: decimal;
  margin-left: 20px;
}

.sign_resigner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
  margin-top: 70px;
  margin-bottom: 50px;
}

.sign_resigner span.nm {
  display: inline-block;
  width: 180px;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #DCDCDC;
}

.sign_resigner span.sign {
  position: relative;
}

.sign_resigner span.sign img {
  position: absolute;
  width: 98px;
  height: 50px;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sign_resigner .btn-sm {
  width: 100px;
}

.form_resign h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}

.form_resign .txt {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 32px;
  line-height: 22px;
}

.resign_flex {
  display: flex;
  gap: 8px;
  align-items: center;
}

.resign_flex .select-primary {
  width: 230px;
  min-width: 230px;
}

@media print {

  body {
    background-color: #fff;
  }
}

.resign_flex input {
  height: 40px;
  display: none;
}

/* 경력증명서 */
.modal_career_cert .modal__inner {
  overflow: visible;
}

.form_career h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.form_career .select-primary .list {
  z-index: 2000;
}

.form_career .input input {
  margin-top: 8px;
  display: none;
}


@media screen and (max-width:1300px) {
  .tbl_doc-type1 colgroup col:nth-child(1),
  .tbl_doc-type1 table thead tr th:nth-child(1),
  .tbl_doc-type1 table tr td:nth-child(1) {
    display: none;
  }

  .resign_flex .select-primary {
    width: 100%;
    min-width: auto;
  }

  .tbl_doc-type1 colgroup col:nth-child(3),
  .tbl_doc-type1 table thead tr th:nth-child(3),
  .tbl_doc-type1 table tr td:nth-child(3) {
    display: none;
  }

  .tbl_doc-type1 colgroup col:nth-child(4),
  .tbl_doc-type1 table thead tr th:nth-child(4),
  .tbl_doc-type1 table tr td:nth-child(4) {
    display: none;
  }

  .tbl_doc-type1 colgroup col:nth-child(5),
  .tbl_doc-type1 table thead tr th:nth-child(5),
  .tbl_doc-type1 table tr td:nth-child(5) {
    display: none;
  }

  .tbl_doc-type1 colgroup col:nth-child(6),
  .tbl_doc-type1 table thead tr th:nth-child(6),
  .tbl_doc-type1 table tr td:nth-child(6) {
    display: none;
  }

  .tbl_doc-type1 colgroup col:nth-child(7),
  .tbl_doc-type1 table thead tr th:nth-child(7),
  .tbl_doc-type1 table tr td:nth-child(7) {
    display: none;
  }

  .tbl_doc-type1 colgroup col:nth-child(8),
  .tbl_doc-type1 table thead tr th:nth-child(8),
  .tbl_doc-type1 table tr td:nth-child(8) {
    display: none;
  }
}

@media screen and (max-width:1000px) {
  h3.resign_title {
    font-size: 20px;
  }

  .tbl_resign.mobile {
    display: block;
  }

  .tbl_resign.pc {
    display: none;
  }

  .tbl_resign colgroup col:nth-child(1) {
    min-width: 80px !important;
    width: 80px !important;
  }

  .tbl_resign table td,
  .tbl_resign table th {
    height: 40px;
    vertical-align: middle;
    border: 1px solid #DCDCDC;
    padding: 5px 8px;
    font-size: 15px;
    line-height: 22px;
  }
  
  .tbl_resign colgroup col:nth-child(2),
  .tbl_resign colgroup col:nth-child(4) {
    min-width: 200px;
  }

  .tbl_resign span.birth {
    display: block;
  }

  .form_career h3 {
    font-size: 15px;
  }

  .doc__inner .contents__box {
    padding: 13px;
    background-color: #fff;
  }

  .form_career .select-primary {
    width: 100% !important;
  }

  .doc__inner .search__form .btn-primary {
    width: 100% !important;
    margin-bottom: 0;
  }

  .doc__inner .tbl__result--typeB .btn.btn-sm:not(.mini) {
    width: 80px;
    font-size: 13px;
  }

  .tbl_doc-type1 colgroup col:nth-child(10) {
    min-width: 80px;
  }

  .tbl_doc-type1 colgroup col:nth-child(3) {
    width: 20% !important;
  }

  .tbl_doc-type1 colgroup col:nth-child(4) {
    width: 20% !important;
  }

  .tbl_doc-type2--worker colgroup col:nth-child(1),
  .tbl_doc-type2--worker table thead tr th:nth-child(1),
  .tbl_doc-type2--worker table tr td:nth-child(1) {
    display: none;
  }

  .tbl_doc-type2--worker colgroup col:nth-child(2) {
    width: 20% !important;
  }

  .tbl__result--typeB.tbl_doc-type2--worker th.title,
  .tbl__result--typeB.tbl_doc-type2--worker table td.title {
    text-align: center;
    padding: 0;
  }

  .resign_notice h3 {
    font-size: 16px;
  }

  .resign_notice ul li {
    font-size: 13px;
    line-height: 20px;
  }

  .form_resign h1 {
    font-size: 20px;
  }

  .sign_resigner {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 13px;
  }

  .sign_resigner span.nm {
    width: 100px;
    font-size: 13px;
  }

  .form_resign .txt {
    font-size: 13px;
    line-height: 20px;
  }

}

/* ==== 연차 관리 ==== */
/* #### 연차 관리 #### */
.dayoff__content .no-data__contents {
  min-height: 78vh;
  margin-top: 0px;
}

.dayoff-view__tab .tabs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dayoff-view__tab .tabs .tabs__link {
  display: inline-block;
  width: 150px;
  height: 46px;
  line-height: 46px;
  background-color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
}

.dayoff-view__tab .tabs .tabs__link.small {
  width: 100px;
  height: 32px;
  line-height: 32px;
  font-size: 13px;
}

.dayoff-view__tab .tabs .tabs__link.on {
  background-color: var(--color-primary);
  color: #fff;
}

.dayoff-tab__content {
  display: none;
  margin-top: 40px;
}

.dayoff-tab__content.on {
  display: block;
}

.dayoff_txt {
  font-size: 15px;
  line-height: 20px;
}

.dayoff_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
}

.dayoff_use-history {
  border: 1px solid #DCDCDC;
  border-radius: 12px;
  background-color: #fff;
  padding: 20px;
  min-height: 70vh;
}

.dayoff-tbl__wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
}

.dayoff-tbl__wrap::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

.dayoff-tbl__wrap .tbl__result--typeA,
.dayoff-tbl__wrap .pagination {
  min-width: 1000px;
}

.dayoff-tbl__wrap .tbl__result--typeA table thead tr th {
  height: 48px;
  line-height: 20px;
  border-top: 1px solid #DCDCDC;
}

/* 연차신청서 모달 */
.form_dayoff-reg {
  padding: 20px 0;
}

.dayoff_reg__contents {
  padding: 20px 0;
}

.dayoff_reg__contents .dayoff_input {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-height: 46px;
}

.dayoff_input>label {
  flex-basis: 80px;
  flex-shrink: 0;
  font-weight: 500;
}

.dayoff_input .flex_box {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.ui-widget.ui-widget-content {
  z-index: 1001 !important;
}

.form_dayoff-reg .tbl__result--typeA thead tr th {
  height: 50px;
  line-height: 20px;
  border-top: 1px solid #DCDCDC;
}

/* 소멸/이월 신청 모달 */
.form_dayoff-move {
  margin-top: 30px;
}

.form_dayoff-move .tbl_info table  {
  width: 100%;
}

.form_dayoff-move .tbl_info table td,
.form_dayoff-move .tbl_info table th {
  vertical-align: middle;
}

.form_dayoff-move .tbl_info table td,
.form_dayoff-move .tbl_info table th {
  height: 35px;
  border: 1px solid #DCDCDC;
  text-align: center;
}

.form_dayoff-move .tbl_info table th {
  background-color: #FAFAFA;
}

.select_dayoff_type {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px 0;
}

@media screen and (max-width:1000px) {
  .dayoff__content {
    width: 100%;
  }

  .dayoff__content .no-data__contents {
    border: none;
  }

  .dayoff-tab__content {
    margin-top: 20px;
  }

  .dayoff-tbl__wrap .tbl__result--typeA table thead tr th,
  .form_dayoff-reg .tbl__result--typeA thead tr th {
    background-color: #FAFAFA;
  }

  .dayoff_txt {
    font-size: 13px;
    line-height: 19px;
  }

  .dayoff_reg__contents .dayoff_input {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    min-height: 70px;
  }

  .dayoff_input>label {
    flex-basis: auto;
    font-size: 14px;
  }

  .dayoff_input .input {
    width: 100%;
  }

  .dayoff_input .flex_box .custom-datepicker,
  .dayoff_input .flex_box .custom-timepicker {
    width: calc(50% - 20px);
  }

  .dayoff_input .flex_box .custom-datepicker .datepicker {
    width: 100%;
  }

  .form_dayoff-move .tbl_info table td,
  .form_dayoff-move .tbl_info thead th {
    font-size: 13px;
    word-break: keep-all;
  }

  .form_dayoff-move .tbl_info table th {
    font-size: 13px;
  }
}

/* 스케쥴 확인 */
.schd-confirm_search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.schd-type_area {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.schd-type_area .schd-type {
  display: flex;
  align-items: center;
  gap: 8px;
}

.schd-type_area .move-month {
  width: 200px !important;
}

.schd-type_area .movemonth-picker {
  width: 141px;
}

.schd-type_area .schd-type>* {
  display: inline-block;
  width: 88px;
  height: 46px;
  line-height: 46px;
  border-radius: 5px;
  border: 1px solid #B6B6B6;
  text-align: center;
  color: #B6B6B6;
  font-size: 15px;
  box-shadow: 0 2px 2px rgb(61, 61, 61, 0.08);
}

.schd-type_area .schd-type>*.on {
  color: #2F73EA;
  border: 1px solid #2F73EA;
  font-weight: 500;
}

.schd-type_area .select-primary {
  height: 46px !important;
  line-height: 46px !important;
}

.schd-btn_area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.schd-btn_area .select-primary {
  width: 210px;
  height: 46px !important;
  line-height: 46px !important;
}

.schd-confirm_mobile_btn {
  display: none;
}

.schd-confirm__inner .schd_info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 20px;
}

.schd_info__table {
  border: 1px solid #DCDCDC;
  background-color: #FAFAFA;
  border-radius: 5px;
  padding: 16px;
  width: 100%;
  /* max-width: 980px; */
}

.schd_info__table_wrap {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding-bottom: 12px;
}

.schd_info__table_wrap table {
  width: 100%;
  vertical-align: middle;
}

.schd_info__table_wrap table th,
.schd_info__table_wrap table td {
  border: 1px solid #E5E5E8;
  height: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
}

.schd_info__table_wrap table th {
  background-color: #F5F7FB;
}

.schd_info__table_wrap table td {
  background-color: #fff;
}

.schd_info__btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.schd_info__btns>* {
  display: inline-block;
  width: 160px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 15px;
}

.schd_info__btns .btn-delete {
  border: 1px solid #EA2F2F;
  color: #EA2F2F;
}

.schd_info__btns .btn-create {
  border: 1px solid #2F73EA;
  color: #2F73EA;
}

.schd_calendar {
  margin-top: 50px;
}

.modal_schd_create .modal__inner {
  max-width: 380px;
}

.modal_schd_create .modal__header {
  margin-bottom: 27px;
}

.modal_schd_create .modal__header h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.modal_schd_create .input {
  margin-bottom: 40px;
}

.list-type__calendar {
  margin-top: 50px;
}

.list-type_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-type_info .btn_question {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  color: #131313;
  position: relative;
  text-decoration: underline;
  padding-left: 30px;
  padding-right: 25px;
}

.list-type_info .btn_question:before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 23px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/_img/common/icon_question2.svg);
}

.list-type_info .btn_question:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/_img/common/icon_arrow_right2.svg);
}

.modal_calculate_member .modal__inner {
  max-width: 507px;
  padding: 41px 34px;
}

.modal_calculate_member .modal__header {
  margin-bottom: 24px;
}

.modal_calculate_member .modal__header h3 {
  font-size: 24px;
  font-weight: 700;
}

.modal_calculate_member .modal__content p{
  font-size: 14px;
  color: #3D3D3D;
  line-height: 20px;
}

.list-type_search {
  display: flex;
  align-items: center;
  gap: 24px ;
}

.list-type_tbl_wrap {
  overflow-y: hidden;
  overflow-x: auto;
  margin-top: 12px;
}

.list-type_tbl_wrap table {
  width: 100%;
}

.list-type_tbl_wrap table th,
.list-type_tbl_wrap table td {
  height: 40px;
  vertical-align: middle;
  border: 1px solid #E5E5E8;
  padding: 0 7px;
  font-size: 14px;
  background-color: #fff;
}

.list-type_tbl_wrap table th.gray {
  background-color: #FAFAFA;
}

.list-type_tbl_wrap .s-month {
  background-color: #F3FDF0;
}

.list-type_tbl_wrap .s-day {
  background-color: #FCF0F2;
}

.list-type_tbl_wrap .s-hour {
  background-color: #FAF1E2;
}

.list-type_tbl_wrap .s-free {
  background-color: #E2E0EE;
}

.list-type_tbl_wrap table tr.date td {
  text-align: center;
}

.list-type_tbl_wrap table tr.time td {
  position: relative;
}

.list-type_tbl_wrap table tr.time .timeline {
  display: inline-block;
  font-size: 12px;
  padding: 5px;
  border-radius: 4px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.modal_expected_cost .input {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.modal_expected_table_wrap {
  overflow-x: auto;
}

.modal_expected_table_wrap .tbl__result--typeA {
  min-width: 570px;
}

.modal_expected_cost .input input {
  width: 200px;
}

.modal_expected_cost .btn_text {
  margin-top: 5px;
  text-decoration: underline;
}

.modal_expected_cost .tal {
  text-align: left !important;
}
@media screen and (max-width:1000px) {
  .schd-confirm_search {
    flex-direction: column;
    padding: 12px;
    background-color: #fff;
    border-radius: 10px;
    row-gap: 8px;
  }

  .schd-type_area {
    width: 100%;
    justify-content: space-between;
  }

  .schd-type_area .movemonth-picker {
    flex-basis: auto;
    flex-shrink: 0;
  }

  .schd-type_area .schd-type {
    flex-basis: 168px;
    flex-shrink: 0;
  }
  .schd-type_area .schd-type>* {
    width: 80px;
  }

  .schd-btn_area .btn_confirm {
    display: none;
  }

  .schd-btn_area {
    width: 100%;
    flex-direction: column;
  }
  .schd-btn_area .select-primary {
    width: 100%;
  }

  .schd-confirm_mobile_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 68px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 0 20px;
  }

  .schd-confirm_mobile_btn .btn_confirm {
    width: 100%;
    height: 46px;
    line-height: 46px;
  }

  .schd-confirm__inner .schd_info {
    flex-direction: column;
    row-gap: 30px;
  }

  .schd_info__btns {
    width: 100%;
  }

  .schd_info__btns >* {
    flex: 1;
    width: 100%;
  }

  .list-type_info {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal_calculate_member .modal__inner {
    max-width: 100%;
  }
}

/* #### 메세지함 #### */
.messagebox_area {
  width: 100%;
  border: 1px solid #DCDCDC;
  border-radius: 12px;
  padding: 12px;
  min-height: 78vh;
  background-color: #fff;
}

.messagebox-tbl_wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
}

.messagebox-tbl_wrap .tbl__result--typeA td {
  padding: 6px 0;
}

.messagebox_area p.title {
  width: 100%;
  text-align: left;
  /* max-width: 100%; */
  overflow: hidden;
  line-height: 23px;
  height: 46px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
}

.tbl_hidden_scroll {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  border: 1px solid #000;
  z-index: 100;
}