@charset "utf-8";
/* ******************************************************* 
* filename:dashboard 
* description:대시보드 컨텐츠 CSS 
* update:2025-06-13
******************************************************** */

#dashboard {
  box-sizing: border-box;
  padding: 24px;
  height: 100%;
  height: calc(100vh - 50px);
}

/*카드 기본설정*/
.card {
  border: 1px solid var(--color-gray03);
  background-color: var(--color-gray00);
  border-radius: 4px;
  padding: 16px 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 8px 1px rgba(102, 102, 102, 0.15);
}
.card .card-title {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.card h6 {
  font-size: 16px;
  font-weight: bold;
}
.card h6 > .blue-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-blue05);
  font-weight: 600;
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #d9d9d9;
  height: 16px;
}
.card h6 > .blue-btn > i::before {
  margin: 0 !important;
}
.card h6 > .blue-btn > i.uil-angle-right {
  width: 16px;
  margin-left: -6px;
}
.card-title-btn,
.card-title-btn button,
.card-title-btn button:not(.disable) * {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--color-gray07);
}
.card-title-btn button.section-btn {
  border-left: 1px solid;
  padding-left: 16px;
  height: 12px;
}
.card-title-btn button.disable:hover,
.card-title-btn button.disable:hover * {
  color: var(--color-gray05) !important;
  transition: 0.5s;
}
.card .card-board-type {
  height: calc(100% - 36px);
  overflow-y: auto;
}
.card .card-board-type table {
}
.banner:not(.dashboard-wrap.banner) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/*대시보드 카드 내부 스크롤 있는 경우 추가*/
.card .card-board-type.scroll-card table {
  border-collapse: separate;
  border-spacing: 0;
}
.card .card-board-type.scroll-card table thead {
  position: sticky;
  top: 0;
  z-index: 400;
}
.card .card-board-type.scroll-card table {
  border-top: none;
}
.card .card-board-type.scroll-card table th {
  border-top: 1px solid var(--color-gray05);
}
.card .card-board-type.scroll-card table td {
  height: 50px;
}
.floating-tooltip {
  z-index: 9999 !important;
}
.is-fixed-tooltip {
  position: fixed !important;
  z-index: 999999 !important;
}

/*대시보드 구조*/
.dashboard-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

/*대시보드::배너 없을경우*/
.dashboard-wrap.none-banner .card .card-board-type.scroll-card {
  height: calc(100% - 40px);
  max-height: 297px;
  min-height: 240px;
}
/* .dashboard-wrap.none-banner .dashboard-bottom .card {max-height:270px;} */

/*대시보드::배너 있을경우*/
.dashboard-wrap.banner .dashboard-bottom .card {
  max-height: 270px;
}
.dashboard-wrap.banner .card .card-board-type.scroll-card {
  height: calc(100% - 40px);
  overflow-y: auto;
  max-height: 245px;
}

/*대시보드 상하*/
.dashboard-top {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: 2fr 1fr;
  flex: 2;
}
.dashboard-bottom {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: 2fr 1fr;
  flex: 1;
}

/*대시보드 왼쪽*/
.dashboard-left,
.dashboard-right {
  height: 100%;
}
.dashboard-left .dashboard-card-wrap {
  display: flex;
  flex-direction: column;
  grid-row-gap: 12px;
  height: 100%;
}
.dashboard-left .dashboard-card-wrap .card {
  position: relative;
}

/*대시보드 오른쪽*/
.dashboard-right .dashboard-card-wrap {
  height: 100%;
}

/*********************************/
/*대시보드 공통*/
/*********************************/
.two-cards {
  display: flex;
  grid-gap: 12px;
  width: 100%;
  height: 100%;
}
.two-cards .card {
  width: 100%;
}

.two-banner {
  display: flex;
  width: 100%;
  grid-gap: 12px;
}
.two-banner > .card {
  position: relative;
  flex: 1;
  height: 100%;
}
.dashboard-wrap.banner .banner-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-wrap.banner .banner-title {
  display: flex;
  align-items: center;
}
.dashboard-wrap.banner .banner-title.column {
  align-items: flex-start;
  flex-direction: column;
}
.dashboard-wrap.banner .banner-wrap .card-title-btn * {
  color: var(--color-gray08);
  font-weight: 700;
}

/*인건비 비출비율 부분 공통*/
.dashboard-card-wrap .first-box {
  height: 180px;
  flex: none;
}

/* 본예산 */
.two-banner.budget .box01 .banner-title {
  margin-left: 80px;
}
.two-banner.budget .box02 {
  background: #00a3aa;
  color: #fff;
  position: relative;
  height: 80px;
}
.two-banner.budget .budget-img {
  position: absolute;
  top: 8px;
  left: 20px;
  background: url("../images/icon/budget_icon.png");
  width: 60px;
  height: 60px;
  background-size: 100%;
}
.two-banner.budget .btn-budget {
  height: 40px;
  padding: 0 21px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.two-banner.budget .btn-budget {
  border: 1px solid var(--color-gray00);
  background-color: #fff;
  color: #00a3aa;
}
.two-banner.budget .btn-budget:hover:not(.fakeBtn) {
  border: 1px solid #068084;
  background-color: #068084;
  color: var(--color-gray00);
}
.two-banner.budget .banner-title em {
  font-weight: 600;
  color: #ffe24a;
  position: relative;
  font-size: 22.5px;
  margin-top: 3px;
}

/* =========================================================
   DISABLED: 260515 대시보드 인건비 비율 위젯 리뉴얼
   ========================================================= */
/*
인건비 비출비율(그래프 부분)
.graph-area {
  width: 100%;
}
.graph-data {
  font-size: 32px;
  position: absolute;
  right: 0px;
  top: 8px;
  cursor: pointer;
}
.graph.work {
  width: 100%;
  height: 50px;
  border: 1px solid var(--color-blue02);
  border-radius: 100px;
  box-sizing: border-box;
}
.graph .graph-line {
  height: 48px;
  position: relative;
  border-radius: 100px 0px 0px 100px;
  display: none;
}
.graph .graph-line.active {
  display: block;
}
.graph .graph-bar {
  border-radius: 99px;
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden;
}
.graph .graph-bar .graph-gauge {
  height: 49px;
  width: 100%;
  border-radius: 99px 0 0 99px;
  position: absolute;
}
.graph .graph-bar .graph-mount {
  position: absolute;
  height: 49px;
  border: 1px solid var(--color-blue04);
  background-image: linear-gradient(
    to right,
    var(--color-blue04),
    var(--color-blue05)
  );
  width: 35.5%;
  border-radius: 99px 0 0 99px;
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-animation: scale-up-hor-left 1.5s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
  animation: scale-up-hor-left 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
.graph .graph-bar .graph-no {
  position: absolute;
  font-size: 24px;
  color: var(--color-gray00);
  font-weight: 700;
  line-height: 50px;
  margin-left: 16px;
  z-index: 10;
}
.graph .graph-line.type01 .graph-gauge {
  width: 86.6%;
}
.graph .graph-line.type02 .graph-gauge {
  width: 49.8%;
}
.graph .graph-line.type03 .graph-gauge {
  width: 60.4%;
}
.graph .graph-line.type04 .graph-gauge {
  width: 48.7%;
}
@-webkit-keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.4);
    transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}
@keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.4);
    transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}
.graph .graph-txt {
  position: absolute;
  top: -37px;
  z-index: 97;
}
.graph .graph-txt > div {
  font-weight: 300;
  background-color: var(--color-gray08);
  border: 1px solid var(--color-gray08);
  color: var(--color-gray00);
  padding: 3.5px 12px;
  border-radius: 30px;
}
.graph .graph-txt p {
  font-size: 13px;
}
.graph .graph-txt span {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green03);
}
.graph .graph-txt > div:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 152px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: var(--color-gray08);
  border-bottom: 0;
  margin-left: -10px;
  margin-bottom: -9px;
}
.graph .graph-gauge {
  position: absolute;
  top: 0;
  height: 48px;
  border-right: 1px dotted var(--color-blue04);
}
.graph .graph-line.type01 .graph-txt > div:before {
  right: 128px;
}
.graph .graph-line.type01 .graph-txt {
  right: -140px;
}
.graph .graph-line.type02 .graph-txt {
  right: -165px;
}
.graph .graph-line.type03 .graph-txt {
  right: -163px;
}
.graph .graph-line.type04 .graph-txt {
  right: -164px;
}
@media all and (max-width: 1760px) {
  .graph .graph-line.type01 .graph-txt > div:before {
    right: 100px;
  }
  .graph .graph-line.type01 .graph-txt {
    right: -112px;
  }
  .graph .graph-line.type02 .graph-txt > div:before {
    right: 238px;
  }
  .graph .graph-line.type02 .graph-txt {
    right: -250px;
  }
  .graph .graph-line.type03 .graph-txt > div:before {
    right: 198px;
  }
  .graph .graph-line.type03 .graph-txt {
    right: -210px;
  }
  .graph .graph-line.type04 .graph-txt > div:before {
    right: 248px;
  }
  .graph .graph-line.type04 .graph-txt {
    right: -260px;
  }
}
@media all and (max-width: 1440px) {
  .graph.work {
    margin-top: 40px;
  }
}
*/

/* 2026.05.15 */
/* 재무회계 대시보드 인건비 비율 */

/*1. Header 영역 */
.labor-cost-header {
  justify-content: space-between;
  border-bottom: 1px solid var(--color-gray04);
}
.labor-cost-header .tab {
  border-bottom: 0px;
}
.labor-cost-header .tab li {
  min-width: 54px;
  padding: 12px 16px;
}
.labor-cost-header .tab li.on {
  color: var(--color-blue05);
  border-bottom: 4px solid var(--color-blue05);
}
.labor-cost-header .card-title-btn button span.date {
  color: var(--color-gray06);
  font-weight: normal;
}
.labor-cost-header .card-title-btn button.on span.date {
  color: var(--color-gray09);
  font-weight: 600;
}
.labor-cost-header .card-title-btn button:hover span.date {
  color: var(--color-gray09);
  font-weight: 600;
}
.labor-cost-header .card-title-btn .line {
  width: 1px;
  height: 12px;
  background: var(--color-gray04);
}

/* 2. Body 영역 */
.labor-cost-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 12px;
}

/* 3. Graph & Info 영역 */
.graph-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.ratio-info-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ratio-info-header .btn-calendar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 0px;
  border-bottom: 1px solid var(--color-gray03);
}
.ratio-info-header .btn-calendar i {
  font-size: 20px;
}
.ratio-info-header .btn-calendar .txt-date {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-gray09);
}
.ratio-info-header .btn-calendar .uil-angle-down {
  margin-left: 4px;
  margin-bottom: -4px;
  font-size: 24px;
  color: var(--color-gray04);
}
.ratio-info-header .btn-calendar input {
  height: fit-content;
}
.ratio-info-header .btn-calendar input.datepicker {
  max-width: 130px;
  padding: 0px;
}
.ratio-value-group {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-size: 14px;
  color: var(--color-gray07);
}
.ratio-value-group .txt-current {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue05);
}
.graph-wrap .graph {
  width: 100%;
  height: 16px;
  border-radius: 100px;
  background: var(--color-gray03);
  overflow: hidden;
}
.graph .graph-line {
  height: 100%;
}
.graph-line .graph-bar {
  width: 0%;
  height: 100%;
  border-radius: 100px 0px 0px 100px;
  background: var(--color-blue05);
  transition: width 0.8s ease-in-out;
}
.graph-line .graph-bar.is-over {
  background: linear-gradient(90deg, var(--color-blue05) 90%, #001e55 100%);
}

/* 4. 우측 버튼/결과 박스 영역 */

/* 0521 css 수정 */
.labor-cost-body .btn-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  min-width: 280px;
  padding: 12px 12px 16px 12px;
  border: 1px solid var(--color-gray03);
  border-radius: 4px;
  box-sizing: border-box;
}
.btn-content .tit {
  padding-left: 6px;
  color: var(--color-gray06);
  font-weight: 600;
}
.btn-content .txt-amount {
  font-weight: 700;
  font-size: 18px;
}
.btn-content .click-tooltip-box {
  top: 30px;
  left: -75px;
}

/* 0521 more-btn css 추가 */
.btn-content .detail-btn {
  display: flex;
  align-items: center;
  padding: 4px 2px 4px 6px;
  background: var(--color-gray08);
  border-radius: 4px;
}
.btn-content .detail-btn a {
  text-decoration: none;
}
.btn-content .detail-btn a span {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.btn-content .detail-btn a i {
  font-size: 16px;
  color: #ffffff80;
}

/*카드 내부 게시판 타입01*/
.card-board-type,
.card-board-type table {
  width: 100%;
}
.card-board-type table {
  border-top: 1px solid var(--color-gray05);
}
.card-board-type table:is(th, td) {
  padding: 8px 4px;
  text-align: center;
  box-sizing: border-box;
}
.card-board-type table:is(th, td) a {
  font-weight: 600;
}
.card-board-type table td a {
  line-height: 1.4;
}
.card-board-type table td {
  font-size: 14px;
  height: 50px;
  text-align: center;
  border-bottom: 1px solid #d8d8d8;
}
.card-board-type table .main-notice {
  display: flex;
  align-items: center;
  height: 100%;
}
.notice-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-board-type table td.main-notice .new-badge {
  flex: none;
}
.card-board-type table th {
  height: 40px;
  border-bottom: 1px solid var(--color-gray03);
  background-color: var(--color-gray01);
  color: var(--color-gray05);
  line-height: 1.25;
}
.card-board-type.border-right table th {
  border-right: 1px solid var(--color-gray03);
}
.card-board-type.border-right table th:last-child {
  border-right: none;
}
.card-title-btn i {
  font-size: 24px;
}
.card-title-btn i.disable {
  cursor: default;
}
.card-title-btn i:hover {
  color: var(--color-gray06);
}
.card-title .date {
  font-size: 16px;
}
.section-card {
  height: calc(100% - 56px);
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.section-card .card-title:after {
  content: "";
  display: inline-block;
  width: calc(100% - 16px);
  height: 1px;
  background-color: var(--color-gray03);
}
.section-card .card-title {
  display: flex;
  align-items: center;
}
.section-card .card-title h6 {
  white-space: nowrap;
  display: inline-block;
  color: var(--color-gray05);
  margin-right: 12px;
}

.notice-box-cont {
  padding: 0 8px;
}
.notice-box-cont-list {
  max-height: 150px;
  overflow-y: scroll;
  margin-bottom: 20px;
}
.notice-box-cont-list li {
  display: flex;
  justify-content: space-between;
  height: 36px;
  align-items: center;
  padding-right: 12px;
  font-weight: 600;
  line-height: 22px;
}
.notice-box-cont-list li a {
  line-height: 1.2;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.notice-box-cont-list li .system-tag {
  margin-right: 8px;
}
.notice-box-cont-null {
  height: calc(100% - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--color-gray04);
}
/*카드 내부 게시판 타입02*/
.card.notice-box {
  padding: 8px;
  height: 100%;
}
.card.notice-box .notice-box-title {
  background-color: var(--color-gray08);
  border-radius: 3px;
  padding: 8px 12px;
  height: 40px;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.card.notice-box .notice-box-title h6 {
  color: var(--color-gray00);
}

@media all and (max-width: 1260px) {
  .dashboard-top,
  .dashboard-bottom {
    grid-template-columns: auto;
  }
}

/*******************************	대시보드용 온보딩(가이드) css*******************************/
.modal-fixed-pop-wrapper#onboarding-modal {
  background: rgb(255 255 255 / 20%);
  backdrop-filter: blur(11px);
}
#onboarding-modal .onboarding-closer {
  width: 96%;
  padding: 1%;
  margin: 0 2%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1000;
}
.onboarding {
  height: 100%;
  min-height: 100vh;
  width: 100vw;
}
.onboarding-content {
  height: 100vh;
}
.onboarding-content .slick-btn.start-btn {
  left: auto;
  right: auto;
  background: #2960cf;
  background: linear-gradient(
    0deg,
    rgba(41, 96, 207, 1) 0%,
    rgba(72, 128, 212, 1) 100%
  );
  padding: 8px 40px;
  color: var(--color-gray00);
  font-size: 24px;
  position: absolute;
  bottom: 200px;
}
.onboarding-content .slick-btn.start-btn:hover {
  box-shadow: 0px 10px 40px 1px rgba(10, 0, 50, 0.3);
}
.onboarding-content > div {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}
.onboarding-content img {
  position: relative;
  top: -20px;
  height: 80%;
  border-radius: 16px;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.4);
}
.onboarding-box .onboarding-text {
  padding: 16px;
}
.onboarding-box .onboarding-text {
  padding: 20px;
  font-size: 16px;
  line-height: 1.4;
}
.onboarding-box .onboarding-text p {
  text-shadow: 0 0 4px black;
}
.onboarding-box .onboarding-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.onboarding-box .slick-btn.nextArrow,
.onboarding-box .slick-btn.prevArrow {
  position: relative;
  background-color: var(--color-gray00);
  color: var(--color-gray09);
  right: auto;
  bottom: auto;
  top: auto;
  left: auto;
  font-size: 16px;
  padding: 6px 12px;
  opacity: 0.8;
}
.onboarding-box .slick-btn.nextArrow:hover,
.onboarding-box .slick-btn.prevArrow:hover {
  opacity: 1;
}

/*******************************	대시보드용 슬릭슬라이더 css*******************************/
.slick-btn {
  font-size: 18px;
  z-index: 10001;
  font-weight: bold;
  color: #fff;
  position: absolute;
  bottom: 30px;
  padding: 16px;
  border-radius: 4px;
  opacity: 1;
}
.slick-btn:hover {
  color: var(--color-gray00);
  background-color: var(--color-blue07);
  box-shadow: 0px 3px 10px 1px #2c2b3460;
  transition: 0.3s ease;
}
.slick-btn.prevArrow {
  left: 40px;
  background-color: var(--color-gray06);
}
.slick-btn.prevArrow:hover {
  background-color: var(--color-gray08);
}
.slick-btn.prevArrow::before {
  content: "\e81e ";
}
.slick-btn.nextArrow {
  right: 40px;
  background-color: var(--color-blue05);
}
.slick-btn.nextArrow::after {
  content: "\e81f";
}
.slick-btn.nextArrow:hover {
  background-color: var(--color-blue07);
}

/* Slick Dots (페이지네이션) */
.slick-dots {
  position: absolute;
  bottom: 20px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 10001;
}
.slick-dots li {
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  margin: 0 12px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background-color: var(--color-blue05);
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: white;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--color-primary);
}
.slick-btn.slick-disabled {
  display: none !important;
}
.slick-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10002;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}
.slick-modal-close-btn:hover {
  color: var(--color-primary);
}
.slick-modal-slide-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  max-width: 80%;
  max-height: 80%;
  overflow: auto;
  display: none;
}

/* 	2025.11.07 대시보드	근로자 발생	사용자 가이드북*/
.dash-first {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 98;
  background: #fff;
  width: 100%;
  height: 100%;
}
.dash-first .close-btn {
  background: var(--color-gray09);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 30px;
  z-index: 9;
}
.dash-first .close-btn > i {
  color: #fff;
  font-size: 24px;
}
.dash-first > .box {
  display: flex;
  gap: 16px;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--color-blue05);
}
.dash-first > .box .col {
  padding: 16px;
  width: 100%;
}
.dash-first > .box .btn-solid-blue {
  padding: 4px 5%;
}
.dash-first > .box h6 {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 800;
}
.dash-first > .box .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}
.dash-first > .box .btn-group {
  display: flex;
  gap: 8px;
}
.no-list {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-btn-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: calc(100% - 36px);
}
.more-btn-box li {
  border: 1px solid var(--color-blue05);
  border-radius: 4px;
  height: 100%;
}
.more-btn-box li a {
  gap: 4px;
  display: flex;
  align-items: center;
  padding: 0 6px 0 16px;
  font-size: 14px;
  font-weight: 600;
  height: 100%;
}
.more-btn-box li .icon01 {
  background: url("../images/icon/dashboard_icon_1.png") no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: none;
  background-size: 100%;
}
.more-btn-box li .icon02 {
  background: url("../images/icon/dashboard_icon_2.png") no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: none;
  background-size: 100%;
}
.more-btn-box li .icon03 {
  background: url("../images/icon/dashboard_icon_3.png") no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: none;
  background-size: 100%;
}
.more-btn-box li .icon04 {
  background: url("../images/icon/dashboard_icon_4.png") no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: none;
  background-size: 100%;
}
.more-btn-box li a i {
  margin-left: auto;
}

/* 가입 전 미완료 업무 */
.work-info {
  display: flex;
  align-items: center;
  position: relative;
}
.work-info .work-title {
  color: #f8285a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 8px 8px 12px;
  height: 38px;
  gap: 2px;
  background: #ffeef3;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
}
.work-info .work-title i {
  font-size: 24px;
}

/* 툴팁 */
.work-info .work-box {
  display: none;
  position: absolute;
  z-index: 9999;
  width: 320px;
  top: 46px;
  right: 0;
  border: 1px solid #f1416c;
  border-radius: 4px;
  padding: 16px;
}
.work-info .work-box::before {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 100%;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #f1416c transparent;
}
.work-info .work-box::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 100%;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.work-info .work-box .cont-box-title {
  background: var(--color-gray08) !important;
}
.work-info .work-box .list-box {
  margin-top: -6px;
}
.work-info .work-box .ft-text {
  font-size: 13px;
  letter-spacing: 0.6;
  font-weight: 600;
}
.work-info .work-box .contact-box {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.work-info .work-box .contact-box .phone-icon {
  background: url("../images/icon/phone_icon.png") no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* active */
.work-info.active .work-title {
  background: #f8285a;
  color: #fff;
  transition: all 0.25s;
}
.work-info.active .work-title:focus {
  background: #f8285a;
}
.work-info.active .work-title i {
  color: #fff;
}
.work-info.active .work-box {
  display: block;
}

/* 메인 사회보험 수집일시 */
.work-info .date-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px 4px 4px;
}
.work-info .date-btn i {
  font-size: 16px;
}
.work-box.work-box-left {
  left: 0;
  top: 36px;
}
.work-box.work-box-left:after {
  left: 14px;
  right: auto;
}
.work-box.work-box-left::before {
  left: 13px;
  right: auto;
}
.work-info.active .date-btn {
  background: #3269c8;
  color: #fff;
  border: 1px solid #1e4b99;
}
.work-box.b-blue {
  border: 1px solid var(--color-blue05);
}
.work-box.b-blue::after {
  border-color: transparent transparent #fff transparent;
}
.work-box.b-blue::before {
  border-color: transparent transparent #3269c8 transparent;
}

.line-box {
  position: relative;
}
.line-box li {
  position: relative;
  padding-right: 8px;
  margin-right: 8px;
}
.line-box li:after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-gray04);
}
.line-box li:last-child::after {
  display: none;
}
.line-box li > a:hover {
  color: var(--color-blue05);
}
.line-box li > a:hover i {
  background: var(--color-blue06);
}
.line-box li > a i {
  margin: 0;
  background: var(--color-blue05);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  vertical-align: text-bottom;
}
.line-box li > a i::before {
  vertical-align: middle;
  font-size: 20px;
  text-align: center;
  position: absolute;
  top: -1px;
  left: -1px;
  margin: 0 !important;
  color: #fff;
}

@media (max-height: 880px) {
  #dashboard {
    height: auto;
  }
}
@media (max-width: 1529px) {
  #dashboard {
    height: auto;
  }
  .dashboard-wrap,
  .dashboard-wrap.banner {
    height: auto;
    width: 100%;
  }
  .dashboard-wrap.banner .dashboard-left .dashboard-card-wrap {
    grid-template-rows: auto;
  }
  .dashboard-card-wrap .two-banner {
    grid-template-columns: 1fr;
  }
  .more-btn-box li a {
    padding-left: 6px;
  }
}
@media all and (max-width: 1379px) {
  .more-btn-box li .icon01,
  .more-btn-box li .icon02,
  .more-btn-box li .icon03,
  .more-btn-box li .icon04 {
    display: none;
  }
  .dash-first .btn-group .btn {
    margin: 0;
    height: 40px;
    font-size: 14px;
  }
}
@media all and (max-width: 1260px) {
  .dashboard-top {
    grid-template-columns: auto;
    grid-template-rows: max-content;
  }
  .dashboard-wrap.none-banner {
    grid-template-rows: auto;
  }
  .dashboard-bottom {
    grid-template-columns: auto;
  }
  .more-btn-box li .icon01,
  .more-btn-box li .icon02,
  .more-btn-box li .icon03,
  .more-btn-box li .icon04 {
    display: block;
  }
  .more-btn-box li a {
    padding-left: 12px;
  }
  .card .card-board-type.scroll-card {
    max-height: 240px;
  }
  .dashboard-card-wrap .two-banner {
    grid-template-columns: 1fr 1fr;
  }
  .btn-content .click-tooltip-box {
    left: -158px;
  }
}
