@charset "utf-8";
/* 당근고양이 'ㅅ' */

/* for styles */
@import url("default.css");

/* color */
* {
  --col_iden: #1466d6;
  --col_red: #fa192b;
}
.col_iden {
  color: #1466d6 !important;
}
.col_red {
  color: #fa192b !important;
}
.col_red2 {
  color: #ff1b36 !important;
}
.col_black {
  color: #21293b !important;
}
.col_blue {
  color: #1466d6 !important;
}

/* Intro */
.intro_wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f4f7f9;
}
.intro_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 40px);
}
.intro_area .inbox {
  background: #fff;
  width: 480px;
  max-width: 100%;
  border-radius: 12px;
  padding: 64px 40px;
  border: #eaedf4 1px solid;
  box-shadow: rgba(20, 102, 214, 0.1) 0px 4px 30px;
}
.intro_area .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.intro_area .logo img {
  width: 140px;
}
.intro_area .logo span {
  position: relative;
  font-size: 24px;
  color: #21293b;
  font-weight: 700;
  line-height: 1;
  margin-left: 33px;
}
.intro_area .logo span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  width: 1px;
  height: 30px;
  background: #d2d6e0;
  transform: translateY(-50%);
}
.intro_area p {
  font-size: 18px;
  color: #475067;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
}
.intro_area .text {
  display: block;
  height: 56px;
  font-size: 16px;
  color: #21293b;
  font-weight: 600px;
  padding: 0 16px;
  border: #d2d6e0 1px solid;
  border-radius: 4px;
  margin-bottom: 9px;
}
.intro_area .text::placeholder {
  color: #aeb4c1;
}
.intro_area .btn {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 56px;
  height: 56px;
  width: 100%;
  background: #1466d6;
  border-radius: 4px;
  text-align: center;
  margin-top: 32px;
}
.intro_area .copy {
  font-size: 14px;
  color: rgba(122, 127, 137, 0.6);
  line-height: 1.2;
  margin-top: 32px;
  text-align: center;
}
.intro_area .error {
  display: block;
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  text-align: center;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
  background: #fff;
  border-bottom: #eaedf4 1px solid;
  transition: 0.2s linear;
}
.header .logo {
  position: absolute;
  top: 0;
  left: 32px;
  height: 100%;
  font-size: 0;
  display: flex;
  align-items: center;
}
.header .logo span {
  position: relative;
  font-size: 20px;
  color: #21293b;
  font-weight: 700;
  line-height: 1;
  margin-left: 29px;
}
.header .logo span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 1px;
  height: 20px;
  background: #7a7f89;
  transform: translateY(-50%);
}
.header .logo h1 {
  font-size: 0;
  opacity: 0;
  width: 0;
  height: 0;
}
.header .gnb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.header .gnb .menu {
  position: relative;
}
.header .gnb .menu > a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #475067;
  font-weight: 600;
  line-height: 60px;
  padding: 0 10px;
}
.header .gnb .menu > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #1466d6;
  transition: 0.2s linear;
}
.header .gnb .menu.on > a {
  color: #1466d6;
}
.header .gnb .menu.on > a:after {
  left: 0;
  width: 100%;
}
.header .right {
  position: absolute;
  top: 0;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 68px;
}
.header .right .name {
  font-size: 15px;
  color: #21293b;
  font-weight: 600;
  line-height: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header .right .name i {
  display: block;
  width: 26px;
  height: 26px;
  background: url("/images/icon_name.svg") no-repeat 50% 50% / contain;
  border-radius: 50%;
}
.header .right .btn_log {
  display: block;
  font-size: 13px;
  color: #21293b;
  font-weight: 600;
  line-height: 30px;
  height: 32px;
  width: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: #21293b 1px solid;
  border-radius: 4px;
}
.header .right .btn_log:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("/images/icon_log.svg") no-repeat 50% 50% / contain;
}
.header .alarm {
  position: absolute;
  top: 0;
  right: 132px;
  width: 36px;
  height: 100%;
  background: url("/images/icon_alarm.svg") no-repeat 50% 50% / 20px;
  z-index: 10;
  font-size: 0;
}
.header .alarm span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  font-size: 10px;
  color: #fff;
  font-weight: 800;
  font-family: "Roboto";
  background: #fb0e55;
  border-radius: 50%;
  margin: -14px 0 0 0;
}

/* footer */
.footer {
  position: relative;
  padding: 24px 0;
  border-top: #eaedf4 1px solid;
  font-size: 14px;
  background: #fff;
  z-index: 11;
}
.footer .links {
  display: flex;
  justify-content: center;
  gap: 21px;
  margin-bottom: 12px;
}
.footer .links a {
  position: relative;
  display: block;
  color: #21293b;
  line-height: 17px;
}
.footer .links a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11px;
  width: 1px;
  height: 12px;
  background: #7a7f89;
  transform: translateY(-50%);
}
.footer .links a:first-child:before {
  display: none;
}
.footer .address {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 21px;
}

.footer .address li {
  position: relative;
  color: #475067;
  line-height: 1.6;
}
.footer .address li.w100p {
  text-align: center;
}
.footer .address li.copy {
  color: #7a7f89;
  line-height: 1.1;
  margin-top: 7px;
}
.footer .address li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11px;
  width: 1px;
  height: 12px;
  background: #7a7f89;
  transform: translateY(-50%);
}
.footer .address li:first-child:before,
.footer .address li.w100p:before {
  display: none;
}
.footer .time {
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  border: #eaedf4 1px solid;
  border-radius: 8px;
  padding: 24px 140px 24px 24px;
  transform: translateY(-50%);
  line-height: 1.2;
  color: #21293b;
  background: url("/images/icon_time.svg") no-repeat right 19px bottom 8px;
}
.footer .time .tit {
  font-size: 18px;
  font-weight: 700;
}
.footer .time .con {
  font-size: 16px;
  font-weight: 500;
  margin-top: 9px;
}
.footer .time .con span {
  color: #475067;
  font-weight: 400;
}

/*.footer .manual {
	position:absolute;
	top:50%;
	right:32px;
	transform: translateY(-50%);
	width: 100px;
	height: 100px;
	background: #1466D6;
	border-radius:50%;
	padding: 12px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 4px;
	box-shadow: 0 0 12px 0 rgba(20, 102, 214, 0.20);
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 125%;
	letter-spacing: -0.48px;
}*/

.footer .service_manual_wrap {
  position: absolute;
  top: 50%;
  right: 230px;
  transform: translateY(-50%);
  width: 180px;
  height: 60px;
  background: #fff;
  border: 1px solid #1466d6;
  border-radius: 8px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  box-shadow: 0 0 12px 0 rgba(20, 102, 214, 0.2);
  text-align: center;
  color: #1466d6;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -0.48px;
  /* display: flex;
  justify-content: center; */
}

.footer .service_manual_wrap:hover {
  background: #1466d6;
  color: #fff;
}

.footer .manual {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 180px;
  height: 60px;
  background: #1466d6;
  border-radius: 8px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  box-shadow: 0 0 12px 0 rgba(20, 102, 214, 0.2);
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -0.48px;
}

/* content */
.container {
  position: relative;
  min-height: calc(100vh - 176px);
  margin-top: 60px;
  color: #21293b;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

/* Dashboard */
.main_wrap {
  display: flex;
}
.main_wrap .info_area {
  width: 320px;
  border-right: #eaedf4 1px solid;
}
.main_wrap .btn_opcl {
  display: none;
}
.main_wrap .contact {
  position: relative;
  height: 190px;
  background: #21293b;
  padding: 28px 24px;
}
.main_wrap .contact .tt {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
.main_wrap .contact .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  line-height: 44px;
  height: 44px;
  width: 160px;
  background: #04cb8f;
  border-radius: 6px;
}
.main_wrap .contact .btn:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/images/icon_write.svg") no-repeat 50% 50% / contain;
}
.main_wrap .contact:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: 16px;
  width: 90px;
  height: 112px;
  background: url("/images/img_contact.svg") no-repeat 100% 100% / contain;
}
.main_wrap .client_wrap {
  padding: 32px 24px;
  height: calc(100vh - 397px);
  min-height: 696px;
}
.main_wrap .client_area {
  width: calc(100% - 48px);
  margin: 32px auto 0;
  border: #eaedf4 1px solid;
  border-radius: 8px;
  background: #f4f7f9;
  padding: 20px;
}
.main_wrap .client_area .name {
  font-size: 20px;
  font-weight: 600;
}
.main_wrap .period {
  margin: 12px 0 20px;
}
.main_wrap .period dt {
  font-size: 13px;
  color: #1466d6;
  font-weight: 600;
  line-height: 22px;
  height: 22px;
  width: 90px;
  background: rgba(20, 102, 214, 0.1);
  border-radius: 11px;
  text-align: center;
  margin-bottom: 6px;
}
.main_wrap .period dd {
  font-size: 14px;
  color: #475067;
  font-weight: 500;
}
.main_wrap .link {
  display: flex;
  gap: 8px;
}
.main_wrap .link a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 33px;
  height: 35px;
  width: calc(50% - 4px);
  border: #21293b 1px solid;
  border-radius: 4px;
  background: #fff;
}
.main_wrap .link a:after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url("/images/icon_link.svg") no-repeat 50% 50% / contain;
}
.main_wrap .tit {
  position: relative;
  font-size: 18px;
  color: #222;
  font-weight: 600;
  line-height: 1.4;
  width: calc(100% - 48px);
  margin: 32px auto 16px;
}
.main_wrap .tit .setting {
  position: absolute;
  top: 50%;
  right: 0;
  width: 28px;
  height: 28px;
  border: #eaedf4 1px solid;
  border-radius: 4px;
  background: url("/images/icon_setting.svg") no-repeat 50% 50%;
  font-size: 0;
  transform: translateY(-50%);
}
.main_wrap .tit .btn_state {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 14px;
  color: #f44;
  font-weight: 600;
  padding-left: 17px;
}
.main_wrap .tit .btn_state:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  background: url("/images/icon_question.svg") #f44 no-repeat 50% 50% / contain;
  border-radius: 50%;
  transform: translateY(-50%);
}
.main_wrap .human_list {
  overflow: auto;
  width: calc(100% - 48px);
  max-height: calc(100vh - 678px);
  margin: 0 auto;
}
.main_wrap .human_list .basic {
  height: 388px;
}
.main_wrap .human_list .box {
  border: #eaedf4 1px solid;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 12px;
}
.main_wrap .human_list .box:last-child {
  margin-bottom: 0;
}
.main_wrap .human_list .name {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.main_wrap .human_list .name i {
  position: relative;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: url("/images/icon_human.svg") no-repeat 50% 50% / contain;
  margin-right: 10px;
}
.main_wrap .human_list .boss .name i:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: url("/images/icon_boss.svg") no-repeat 50% 50% / contain;
}
.main_wrap .human_list .name strong {
  font-weight: 600;
  margin-right: 4px;
}
.main_wrap .human_list .name span {
  font-size: 13px;
  color: #fb0e55;
  font-weight: 600;
  line-height: 20px;
  height: 20px;
  padding: 0 8px;
  background: #ffecf1;
  border-radius: 10px;
  margin-left: 6px;
}
.main_wrap .human_list li {
  position: relative;
  font-size: 14px;
  color: #475067;
  margin-bottom: 5px;
  padding-left: 20px;
}
.main_wrap .human_list li:last-child {
  margin-bottom: 0;
}
.main_wrap .human_list li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: no-repeat 50% 50% / contain;
  transform: translateY(-50%);
}
.main_wrap .human_list .tel:before {
  background-image: url("/images/icon_tel.svg");
}
.main_wrap .human_list .email:before {
  background-image: url("/images/icon_email.svg");
}

.dashboard_wrap {
  background: #f4f7f9;
  width: calc(100% - 320px);
  padding: 32px 32px 32px 40px;
  display: flex;
  gap: 32px;
}
.dashboard_wrap .wbox {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 20px;
  border-radius: 12px;
  padding: 24px;
}
.stit {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}
.stit.s {
  font-size: 20px;
}
.stit.ss {
  font-size: 18px;
}
.stit.mt {
  margin-top: 48px;
}
.stit.mtb {
  margin: 56px 0 16px;
}
.stit .more {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 100%;
  background: url("/images/btn_more.svg") no-repeat 50% 50% / contain;
  font-size: 0;
}
.stit .month_area {
  display: flex;
  border: #eaedf4 1px solid;
  border-radius: 4px;
  background: #fff;
  height: 30px;
  line-height: 28px;
}
.stit .month_area .btn {
  position: relative;
  width: 24px;
  height: 28px;
  background: url("/images/arrow_month.svg") no-repeat 50% 50%;
  font-size: 0;
  margin: 0;
  top: 0;
}
.stit .month_area .btn.next {
  transform: scaleX(-1);
}
.stit .month_area .to {
  font-size: 14px;
  font-weight: 500;
}
.stit .btn {
  position: absolute;
  top: -3px;
  right: 0;
  width: 80px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  background: #21293b;
  border-radius: 4px;
}
.stit .btn_l {
  color: #21293b;
  font-weight: 600;
  line-height: 34px;
  height: 36px;
  width: 100px;
  text-align: center;
  background: #fff;
  border: #21293b 1px solid;
}
.stit .btn_long {
  width: 100px;
}
.stit .btns_abso {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 8px;
}
.stit .btns_abso .btn {
  position: relative;
  width: 100px;
  height: 34px;
}
.stit .btns_abso .btn_l {
  line-height: 32px;
}
.notification-badge {
  display: inline-block;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 11px;
  color: #fff;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  background: #fb0e55;
  border-radius: 9px;
  padding: 0 6px;
  margin-left: 6px;
  vertical-align: middle;
}
.dashboard_wrap .list_wrap {
  width: calc(100% - 332px);
}
.dashboard_wrap .list_area {
  height: calc(100vh - 508px);
  min-height: 582px;
}
.dashboard_wrap .list_area .state_area {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.dashboard_wrap .list_area .state_area .btn {
  position: relative;
  flex: 1 1 calc((100% - 60px) / 6);
  height: 48px;
  line-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: #475067;
  background: #f4f6fa;
  border: #eaedf4 1px solid;
  border-radius: 4px;
}
.dashboard_wrap .list_area .state_area .btn strong {
  font-size: 20px;
  color: #21293b;
  font-weight: 800;
}
.dashboard_wrap .list_area .state_area .btn.on {
  color: #1466d6;
  font-weight: 700;
}
.dashboard_wrap .list_area .state_area .btn.on:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: #1466d6 2px solid;
  border-radius: inherit;
}
.dashboard_wrap .list_area .state_area .btn.on strong {
  color: #1466d6;
}
.dashboard_wrap .list_area .list {
  height: calc(100% - 64px);
  overflow: auto;
}
.dashboard_wrap .list_area .list table {
  height: 100%;
}
.dashboard_wrap .list_area .list > table:first-child {
  height: auto;
}
.dashboard_wrap .list_area .list > .scroll {
  overflow: hidden auto;
  height: calc(100% - 40px);
  margin-top: 0;
}
.dashboard_wrap .list_area .list > .scroll table {
  height: auto;
  width: 100%;
  table-layout: fixed;
}
.dashboard_wrap .list_area col.w6 {
  width: 60px;
}
.dashboard_wrap .list_area col.w7 {
  width: 70px;
}
.dashboard_wrap .list_area col.w10 {
  width: 100px;
}
.dashboard_wrap .list_area col.w11 {
  width: 110px;
}
.dashboard_wrap .list_area col.w12 {
  width: 120px;
}
.dashboard_wrap .list_area col.w13 {
  width: 130px;
}
.dashboard_wrap .list_area col.w14 {
  width: 140px;
}
.dashboard_wrap .list_area col.w15 {
  width: 150px;
}
.dashboard_wrap .list_area .list tr {
  position: relative;
}
.dashboard_wrap .list_area .list th,
.dashboard_wrap .list_area .list td {
  padding: 0 10px;
}
.dashboard_wrap .list_area .list th {
  position: relative;
  height: 40px;
  font-size: 14px;
  color: #475067;
  text-align: center;
}
.dashboard_wrap .list_area .list th:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: #eaedf4 1px solid;
  border-left: 0;
  pointer-events: none;
}
.dashboard_wrap .list_area .list th:first-child:before {
  border-radius: 4px 0 0 4px;
  border-left: #eaedf4 1px solid;
}
.dashboard_wrap .list_area .list th:last-child:before {
  border-radius: 0 4px 4px 0;
}
.dashboard_wrap .list_area .list td {
  font-size: 15px;
  color: #21293b;
  line-height: 42px;
  border-bottom: #eaedf4 1px solid;
  text-align: center;
  transition: 0.2s linear;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard_wrap .list_area .list td p {
  display: block;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard_wrap .list_area .list td.tt a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dashboard_wrap .list_area .list .state {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  height: 24px;
  padding: 0 6px;
  vertical-align: middle;
  border: 1px solid;
  border-radius: 4px;
}
.dashboard_wrap .list_area .list .state.i1 {
  color: #00bd44;
  background: #ecf8eb;
  border-color: #caefd8;
}
.dashboard_wrap .list_area .list .state.i2 {
  color: #6c4ee2;
  background: #f6f4ff;
  border-color: #e9e3fe;
}
.dashboard_wrap .list_area .list .state.i3 {
  color: #373f57;
  background: #f4f7f9;
  border-color: #eaedf4;
}
.dashboard_wrap .list_area .list .state.i4 {
  color: #1466d6;
  background: #e9f3ff;
  border-color: #d5e4f9;
}
.dashboard_wrap .list_area .list .state.i5 {
  color: #fb0e55;
  background: #ffecf1;
  border-color: #ffd9e5;
}
.dashboard_wrap .list_area .list .state.i6 {
  color: #373f57;
  background: #f4f7f9;
  border-color: #eaedf4;
}
.dashboard_wrap .list_area .list .num .icon {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  height: 24px;
  width: 52px;
  max-width: 100%;
  background: #ff4444;
  border-radius: 12px;
  margin: 0 auto;
}
.dashboard_wrap .statistics_area {
  display: flex;
  gap: 14px;
}
.dashboard_wrap .statistics_area .box {
  position: relative;
  padding: 20px;
  border-radius: 8px;
}
.dashboard_wrap .statistics_area .box:before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  background: no-repeat 50% 50% / contain;
  border-radius: 50%;
}
.dashboard_wrap .statistics_area .box .tt {
  font-size: 17px;
  font-weight: 600;
}
.dashboard_wrap .statistics_area .total {
  background: #fff;
  width: 210px;
}
.dashboard_wrap .statistics_area .total:before {
  background-image: url("/images/icon_statistics00.svg");
}
.dashboard_wrap .statistics_area .total strong {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
.dashboard_wrap .statistics_area .cbox {
  width: calc((100% - 252px) / 3);
  color: #fff;
  display: flex;
}
.dashboard_wrap .statistics_area .cbox .tt {
  width: calc(100% - 158px);
}
.dashboard_wrap .statistics_area .cbox .list {
  width: 158px;
  border-left: rgba(255, 255, 255, 0.16) 1px solid;
  padding-left: 18px;
}
.dashboard_wrap .statistics_area .cbox dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}
.dashboard_wrap .statistics_area .cbox dl:last-child {
  margin-bottom: 0;
}
.dashboard_wrap .statistics_area .cbox dt {
  font-size: 15px;
  font-weight: 500;
}
.dashboard_wrap .statistics_area .cbox dd {
  font-size: 16px;
  font-weight: 700;
}
.dashboard_wrap .statistics_area .i1 {
  background: #3f80ea;
}
.dashboard_wrap .statistics_area .i1:before {
  background-image: url("/images/icon_statistics01.svg");
}
.dashboard_wrap .statistics_area .i2 {
  background: #475067;
}
.dashboard_wrap .statistics_area .i2:before {
  background-image: url("/images/icon_statistics02.svg");
}
.dashboard_wrap .statistics_area .i3 {
  background: #04cb8f;
}
.dashboard_wrap .statistics_area .i3:before {
  background-image: url("/images/icon_statistics03.svg");
}
.dashboard_wrap .notice_wrap {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: calc(100vh - 269px);
  min-height: 824px;
}
.dashboard_wrap .notice_wrap .wbox {
  height: calc(50% - 12px);
}
.dashboard_wrap .notice_wrap .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: calc(100% - 47px);
  overflow: auto;
  min-height: 304px;
}
.dashboard_wrap .notice_wrap .list a {
  display: block;
  background: #f4f6fa;
  border-radius: 6px;
  border: #eaedf4 1px solid;
  padding: 16px;
}
.dashboard_wrap .notice_wrap .board2 .list a:first-child {
	border: #1466d6 2px solid;
}
.dashboard_wrap .notice_wrap .list p {
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  height: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.dashboard_wrap .notice_wrap .list .date {
  line-height: 20px;
}

/* 대시보드 팝업 */
.pop_gen {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  max-width: calc(100vw - 30px);
  transform: translate(-50%, -50%);
  border-radius: 20px;
  overflow: hidden;
  z-index: 101;
  box-shadow: rgba(0, 0, 0, 0.4) 0 0 20px;
  animation: dash_pop 0.3s forwards;
}
@keyframes dash_pop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pop_gen .pop_slide_wrap {
  position: relative;
  font-size: 0;
  background: #fff;
}
.pop_gen .pop_slide {
  position: relative;
  display: inline-flex;
  width: 100%;
  max-width: 100%;
}
.pop_gen .pop_slide .slick-list {
  width: 100%;
}
.pop_gen .pop_slide .slick-track {
  min-width: 100%;
}
.pop_gen .pop_slide .slick-slide {
  font-size: 0;
  height: auto;
  aspect-ratio: 1/1;
}
.pop_gen .pop_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.pop_gen .paging {
  position: absolute;
  bottom: 10px;
  left: auto;
  right: 0px;
  width: max-content;
  background-color: #ffffff;
  padding: 0 2rem;
  margin: 0 10px;
  border-radius: 20px;
  font-size: 1.2rem;
  z-index: 1;
}
.pop_gen .paging .slick-dots li {
  display: none;
}
.pop_gen .paging .slick-dots li.slick-active {
  display: block;
}
.pop_gen .btns {
  display: flex;
  border-top: #ebebeb 1px solid;
  background: #fff;
}
.pop_gen .btns .btn {
  position: relative;
  width: 50%;
  max-width: none;
  font-size: 16px;
  color: #222;
  line-height: 50px;
  height: 50px;
  text-align: center;
  border-radius: 0;
  border: 0;
  margin: 0;
  justify-content: center;
}
.pop_gen .btns .btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 20px;
  background: #ebebeb;
  margin-top: -10px;
}
.pop_gen .btns .btn:first-child:before {
  display: none;
}

@media screen and (max-width: 600px) {
  .pop_gen {
    max-width: calc(100vw - 28px);
  }
  .pop_gen {
    border-radius: 10px;
  }
}

/* dashboard_adm */
.main_wrap .admin_wrap {
  padding: 32px 24px;
  height: calc(100vh - 205px);
  min-height: 100%;
}
.main_wrap .admin_wrap .tit {
  width: 100%;
}
.main_wrap .admin_wrap .search_area {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.main_wrap .admin_wrap .search_area .text {
  width: calc(100% - 66px);
  height: 44px;
  line-height: 42px;
  border: #d2d6e0 1px solid;
  border-radius: 4px;
  font-size: 15px;
}
.main_wrap .admin_wrap .search_area .text::placeholder {
  color: #aeb4c1;
}
.main_wrap .admin_wrap .search_area .btn {
  font-size: 15px;
  color: #475067;
  font-weight: 500;
  line-height: 42px;
  height: 44px;
  width: 58px;
  border: #475067 1px solid;
  border-radius: 4px;
}
.main_wrap .client_list {
  height: calc(100% - 110px);
  overflow: auto;
}
.main_wrap .client_list a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #21293b;
  font-weight: 500;
  line-height: 22px;
  padding: 5px 5px 5px 36px;
  margin-bottom: 12px;
  border-radius: 4px;
}
.main_wrap .client_list a:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 22px;
  height: 22px;
  background: url("/images/icon_client.svg") no-repeat 50% 50% / contain;
}
/* 공수선택 고객사 아이콘 이미지 변경 */
.main_wrap .client_list a.confirmed-client:before {
  background-image: url("/images/icon_client_02.svg");
}
.main_wrap .client_list a span {
  color: #fa192b;
}
.dashboard_wrap.admin_set .list_area {
  height: 100%;
}
.dashboard_wrap.admin_set .list_area .list table {
  height: auto;
}
.dashboard_wrap.admin_set .list_area .list .scroll {
  overflow: hidden auto;
  height: calc(100% - 40px);
}
.dashboard_wrap.admin_set .list_area .list .scroll table {
  height: auto;
}
td .btn_note {
  display: block;
  width: 24px !important;
  height: 24px;
  background: #7a7f89 url("/images/btn_note.svg") no-repeat 50% 50%;
  border-radius: 4px;
  margin: 0 auto;
  font-size: 0 !important;
}

/* admin_set 상태별 색깔 */
.dashboard_wrap.admin_set .list_area .list .state.i1 {
  color: #00bd44;
  background: #ecf8eb;
  border-color: #caefd8;
}
.dashboard_wrap.admin_set .list_area .list .state.i2 {
  color: #6c4ee2;
  background: #f6f4ff;
  border-color: #e9e3fe;
}
.dashboard_wrap.admin_set .list_area .list .state.i3 {
  color: #373f57;
  background: #f4f7f9;
  border-color: #eaedf4;
}
.dashboard_wrap.admin_set .list_area .list .state.i4 {
  color: #1466d6;
  background: #e9f3ff;
  border-color: #d5e4f9;
}
.dashboard_wrap.admin_set .list_area .list .state.i5 {
  color: #fb0e55;
  background: #ffecf1;
  border-color: #ffd9e5;
}

.dashboard_wrap.admin_set .vertical_half_list {
  min-height: 824px;
  height: calc(100vh - 269px);
}
.dashboard_wrap.admin_set .vertical_half_list .list_area {
  min-height: auto;
  height: calc(50% - 12px);
  max-height: none;
  overflow: auto;
}
.dashboard_wrap.admin_set .vertical_half_list .list_area ~ .list_area {
  margin-top: 24px;
}
.dashboard_wrap.admin_set .vertical_half_list .list_area.over_visible {
  overflow: visible;
}

.dashboard_wrap.admin_set .jq_tabonoff {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: auto;
}
.dashboard_wrap.admin_set .jq_tabonoff .tabs {
  margin-bottom: 16px;
}
.dashboard_wrap.admin_set .jq_tabonoff .tabs li {
  margin-bottom: -2px;
  width: 100px;
}
.dashboard_wrap.admin_set .jq_tabonoff .tabs li + li {
  margin-left: -2px;
}
.dashboard_wrap.admin_set .jq_tabonoff .tabs li button {
  display: block;
  font-size: 14px;
  color: #666;
  line-height: 38px;
  height: 40px;
  width: 100%;
  border-radius: 8px 8px 0 0;
  border: #ddd 2px solid;
}
.dashboard_wrap.admin_set .jq_tabonoff .tabs li.on {
  z-index: 1;
}
.dashboard_wrap.admin_set .jq_tabonoff .tabs li.on button {
  color: #1466d6;
  border-color: #1466d6;
}
.dashboard_wrap.admin_set .jq_tabonoff .jq_cont {
  height: calc(100% - 56px);
  overflow: auto;
}
.dashboard_wrap.admin_set .jq_tabonoff .jq_cont .cont {
  height: 100%;
}
.dashboard_wrap.admin_set .jq_tabonoff .jq_cont .scroll {
  overflow: hidden auto;
  height: calc(100% - 40px);
}

/* sub */
.sub_wrap {
  padding: 80px 0 100px;
  color: #21293b;
  line-height: 1.2;
}
.sub_wrap .title {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sub_wrap .title .btn_write {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  padding: 10px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #1466d6;
  border-radius: 6px;
  transform: translateY(-50%);
}
.sub_wrap .title .btn_write:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  mask: url("/images/icon_write.svg") no-repeat 50% 50% / contain;
  -webkit-mask: url("/images/icon_write.svg") no-repeat 50% 50% / contain;
}
.sub_wrap .title .btn_ann:before {
  width: 15px;
  height: 16px;
  mask-image: url("/images/icon_ann.svg");
  -webkit-mask-image: url("/images/icon_ann.svg");
}
.sub_wrap .title .btn_email:before {
  mask: url("/images/icon_email.svg") no-repeat 50% 50% / contain;
  -webkit-mask: url("/images/icon_email.svg") no-repeat 50% 50% / contain;
}
.sub_wrap .title .btns {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  gap: 6px;
}
.sub_wrap .title .btns .btn_write {
  position: relative;
  top: 0;
  transform: none;
}
.sub_wrap .title .btns .btn_bl {
  color: #1466d6;
  background: #fff;
  border: #1466d6 1px solid;
  padding: 9px 31px;
}
.sub_wrap .title .btns .btn_bl:before {
  background: #1466d6;
}
.sub_wrap .title .btn_sample_view {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  padding: 6px 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #1466d6;
  border-radius: 6px;
}
.sub_wrap .title .btn_sample_view:before {
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  mask: url("/images/icon_monthly_reports.svg") no-repeat 50% 50% / contain;
  -webkit-mask: url("/images/icon_monthly_reports.svg") no-repeat 50% 50% /
    contain;
}
.sub_wrap .btit {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.sub_wrap .stit {
  align-items: center;
}
.sub_wrap .btn_state {
  position: relative;
  font-size: 14px;
  color: #f44;
  font-weight: 600;
  padding-left: 17px;
}
.sub_wrap .btn_state:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  background: url("/images/icon_question.svg") #f44 no-repeat 50% 50% / contain;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* 유지보수 */
.maintenance_requests_wrap .state_area {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
}
.maintenance_requests_wrap .state_area .btn {
  position: relative;
  flex: 1 1 calc((100% - 60px) / 6);
  line-height: 1;
  padding: 15px 15px 10px;
  font-size: 15px;
  color: #475067;
  font-weight: 600;
  background: #f4f6fa;
  border: #eaedf4 1px solid;
  border-radius: 4px;
}
.maintenance_requests_wrap .state_area .btn strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  text-align: right;
  margin-top: 5px;
}
.maintenance_requests_wrap .state_area .btn.on {
  color: #1466d6;
  font-weight: 700;
}
.maintenance_requests_wrap .state_area .btn.on:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: #1466d6 2px solid;
  border-radius: inherit;
}
.maintenance_requests_wrap .state_area .btn.on strong {
  color: #1466d6;
}

/* 게시판 목록 */
.board_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}
.board_top .total {
  font-family: "Pretendard", "Dotum", "돋움", "Arial", sans-serif;
  font-weight: 500;
}
.board_top .inputs,
.board_top .inputs form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.board_top .inputs .text {
  height: 44px;
}
.board_top .inputs .input {
  width: 260px;
  margin: 0 8px;
}
.board_top .inputs .btn {
  font-size: 15px;
  color: #475067;
  font-weight: 500;
  line-height: 42px;
  height: 44px;
  width: 58px;
  border: #475067 1px solid;
  border-radius: 4px;
}
.board_top .inputs .nice-select {
  height: 44px;
  width: 112px;
  font-size: 14px;
}
.board_top .inputs .mr {
  margin-right: 8px;
}
.board_top .inputs .ml {
  margin-left: 8px;
}
.board_top .inputs .ml2 {
  margin-left: 16px;
}
.board_top .inputs select.text,
.board_top .inputs .nice-select,
.datepicker_area {
  position: relative;
  width: 130px;
}
.datepicker_area .text {
  width: 100%;
  height: 44px;
  line-height: 42px;
  padding: 0 35px 0 12px;
  border: #d2d6e0 1px solid;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  color: #21293b;
}
.datepicker_area img {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
.datepicker_area + .bar {
  width: 8px;
  height: 1px;
  background: #475067;
  margin: 0 4px;
}
.nice-select .list {
  max-height: 300px;
  overflow: hidden auto;
}
.nice-select .list li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 12px;
}
.nice-select.text_long .list {
  width: 200px;
}

.board_list col.w4 {
  width: 40px;
}
.board_list col.w5 {
  width: 50px;
}
.board_list col.w6 {
  width: 60px;
}
.board_list col.w7 {
  width: 70px;
}
.board_list col.w8 {
  width: 80px;
}
.board_list col.w9 {
  width: 90px;
}
.board_list col.w10 {
  width: 100px;
}
.board_list col.w11 {
  width: 110px;
}
.board_list col.w12 {
  width: 120px;
}
.board_list col.w13 {
  width: 130px;
}
.board_list col.w14 {
  width: 140px;
}
.board_list col.w15 {
  width: 150px;
}
.board_list col.w16 {
  width: 160px;
}
.board_list col.w18 {
  width: 180px;
}
.board_list col.w19 {
  width: 190px;
}
.board_list col.w22 {
  width: 220px;
}
.board_list col.w27 {
  width: 270px;
}
.board_list col.w31 {
  width: 310px;
}
.board_list th,
.board_list td {
  /* padding: 0 10px; */
  padding: 0 6px;
  text-align: center;
}
.board_list th {
  position: relative;
  height: 40px;
  font-size: 14px;
  color: #475067;
}
.board_list th:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: #eaedf4 1px solid;
  border-left: 0;
  background: #f4f6fa;
  pointer-events: none;
  z-index: -1;
}
.board_list tr {
  position: relative;
}
.board_list th:first-child:before {
  border-radius: 4px 0 0 4px;
  border-left: #eaedf4 1px solid;
}
.board_list th:last-child:before {
  border-radius: 0 4px 4px 0;
}
.board_list th .flex {
  align-items: center;
  gap: 9px;
  padding: 11px 0;
}
.board_list td {
  font-size: 15px;
/*  font-size: 14px;*/
  color: #21293b;
  height: 58px;
  border-bottom: #eaedf4 1px solid;
  transition: 0.2s linear;
/*   white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.board_list td.order2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board_list td.order8 {
  word-break: break-word;
}

.board_list.over_v td {
  overflow: visible;
}
.board_list td h2,
.board_list td p {
  display: block;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board_list td h2 {font-weight:inherit;}

.board_list td.customer p {
  text-align: center;
}
.board_list td a {
  position: relative;
  z-index: 2;
}
.board_list td.customer a,
.board_list td.tt a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.board_list tr.unread {
  background: #f8f9fa;
}
.board_list td .unread {
  color: #1466d6;
}
.board_list .state {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  height: 24px;
  padding: 0 6px;
  vertical-align: middle;
  border: 1px solid;
  border-radius: 4px;
}
.board_list .state.i1 {
  color: #00bd44;
  background: #ecf8eb;
  border-color: #caefd8;
}
.board_list .state.i2 {
  color: #6c4ee2;
  background: #f6f4ff;
  border-color: #e9e3fe;
}
.board_list .state.i3 {
  color: #373f57;
  background: #f4f7f9;
  border-color: #eaedf4;
}
.board_list .state.i4 {
  color: #1466d6;
  background: #e9f3ff;
  border-color: #d5e4f9;
}
.board_list .state.i5 {
  color: #fb0e55;
  background: #ffecf1;
  border-color: #ffd9e5;
}
.board_list .state.i6 {
  color: #373f57;
  background: #f4f7f9;
  border-color: #eaedf4;
}
.board_list .state.urgent {
  color: #fff;
  background: #ff4444;
  border-color: #ff4444;
  font-weight: bold;
}
.board_list .notice .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  height: 24px;
  width: 54px;
  max-width: 100%;
  background: #21293b;
  border-radius: 12px;
  margin: 0 auto;
  text-align: center;
}
/* .board_list .notice .icon:before {content:""; display:block; width:14px; height:14px; background:url('/images/icon_notice.svg') no-repeat 50% 50% / contain;} */
.board_list .flex {
  gap: 16px;
  flex-wrap: wrap;
}
.board_list .flex dl {
  display: flex;
  align-items: center;
  gap: 8px;
}
.board_list .flex dt {
  font-size: 14px;
}
.board_list .flex dd .text {
  width: 80px;
  border-color: #d2d6e0;
  background: #f4f6fa;
}
.board_list .flex dd .text.bgw {
  background: #fff;
}
.board_list .hot .icon {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  height: 24px;
  width: 52px;
  max-width: 100%;
  background: #ff1b36;
  border-radius: 12px;
  margin: 0 auto;
}
.board_list .num .icon {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  height: 24px;
  width: 52px;
  max-width: 100%;
  background: #ff4444;
  border-radius: 12px;
  margin: 0 auto;
}
.board_list .datepicker_wrap {
  align-items: center;
  gap: 0;
}
.board_list .datepicker_wrap span {
  width: 8px;
  height: 1px;
  background: #475067;
  margin: 0 4px;
}
.board_list .datepicker_wrap .datepicker_area {
  width: calc(50% - 8px);
}
.board_list .btn {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 30px;
  height: 32px;
  width: 56px;
  background: #1466d6;
  border-radius: 4px;
  text-align: center;
  margin: 0 auto;
}
.board_list .btn_del {
  display: block;
  font-size: 14px;
  color: #475067;
  font-weight: 600;
  line-height: 30px;
  height: 32px;
  width: 56px;
  border: #d2d6e0 1px solid;
  border-radius: 4px;
  text-align: center;
}
.board_list td.white_over {
  white-space: normal;
}

.board_list td .intit {position: relative; padding-right:12px; display: inline-block; width:auto; max-width:100%;}
.board_list td .intit .dot {position: absolute; top:50%; right:0; display: inline-block; width: 8px; height: 8px; background: #e74c3c; border-radius: 50%; transform:translateY(-50%);}

.file_input {
  display: flex;
  align-items: center;
}
.filebutton {
  position: relative;
  width: 80px;
  height: 32px;
  overflow: hidden;
  display: block;
}
.filebutton span {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 30px;
  font-size: 14px;
  color: #21293b;
  text-align: center;
  border: #21293b 1px solid;
  vertical-align: top;
  border-radius: 4px;
}
.filebutton input {
  z-index: 9;
  position: absolute;
  top: -1px;
  left: -100%;
  margin: 0;
  padding: 0;
  font-size: 30px;
  line-height: 0;
  opacity: 0;
  filter: alpha(opacity = 0);
  -ms-filter: "alpha(opacity=0)";
  cursor: pointer;
  _cursor: hand;
  display: none;
}
.filebox {
  width: 100%;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  color: #21293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
.file_input.on .filebutton {
  display: none;
}
.file_input.on .filebox {
  display: block;
}

.btn_tal {
  margin-top: 16px;
  display: flex;
  gap: 6px;
}
.btn_tal .btn {
  display: block;
  font-size: 14px;
  color: #475067;
  font-weight: 600;
  line-height: 30px;
  height: 32px;
  min-width: 56px;
  padding: 0 16px;
  text-align: center;
  border: #d2d6e0 1px solid;
  border-radius: 4px;
  background: #fff;
  margin: 0;
  width: auto;
}

.board_bottom .paging {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.board_bottom .paging.mt1 {
  margin-top: 16px;
}
.board_bottom .paging a,
.board_bottom .paging span {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 15px;
  color: #475067;
  border-radius: 4px;
}
.board_bottom .paging a.on,
.board_bottom .paging span.on {
  background: var(--col_iden);
  color: #fff;
  font-weight: 700;
  border-color: var(--col_iden);
}
.board_bottom .paging .arrow {
  font-size: 0;
  width: 18px;
  background: no-repeat 50% 50% !important;
  margin: 0 1px;
}
.board_bottom .paging .two {
  background-image: url("/images/page_two.svg") !important;
}
.board_bottom .paging .one {
  background-image: url("/images/page_one.svg") !important;
}
.board_bottom .paging .prev {
  margin-right: 12px;
}
.board_bottom .paging .next {
  margin-left: 12px;
}
.board_bottom .paging .next,
.board_bottom .paging .last {
  transform: scaleX(-1);
}
.board_bottom .btns_tac {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 64px;
}
.board_bottom .btns_tac .btn {
  font-size: 17px;
  font-weight: 700;
  line-height: 54px;
  height: 56px;
  width: 200px;
  border-radius: 6px;
  border: 1px solid;
  text-align: center;
  margin: 0;
}
.board_bottom .btns_tac .btn_g {
  color: #fff;
  background: #1466d6;
  border-color: #1466d6;
}
.board_bottom .btns_tac .btn_l {
  color: #21293b;
  background: #fff;
  border-color: #21293b;
}
.board_bottom .btns_tal {
  display: flex;
  margin-top: 16px;
}
.board_bottom .btns_tal .btn {
  display: block;
  font-size: 14px;
  color: #475067;
  font-weight: 600;
  line-height: 30px;
  height: 32px;
  width: 56px;
  text-align: center;
  border: #d2d6e0 1px solid;
  border-radius: 4px;
}

/* 달력 */
.ui-datepicker {
  width: 240px;
  margin-top: -1px;
  display: none;
}
.ui-datepicker-header {
  position: relative;
  border: #ddd 1px solid;
  border-bottom: 0;
  background: #2264b2 !important;
  overflow: hidden;
}
.ui-datepicker-title {
  text-align: center;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 40px;
  width: 100%;
}
.ui-datepicker-title span {
  color: #fff;
}
.ui-datepicker-title select {
  vertical-align: top;
  width: 60px;
  height: 24px;
  line-height: 22px;
  background-position: right 5px center;
  padding: 0 5px;
  margin: 8px 3px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  top: 0;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  cursor: pointer;
}
.ui-datepicker-prev {
  left: 0;
}
.ui-corner-all .ui-icon {
  display: block;
  width: 11px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  font-size: 0;
  margin: 10px auto;
}
.ui-corner-all .ui-icon:before,
.ui-corner-all .ui-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  margin-left: -5px;
}
.ui-corner-all .ui-icon:before {
  margin-top: -4px;
}
.ui-corner-all .ui-icon:after {
  margin-top: 2px;
}
.ui-datepicker-prev .ui-icon:before {
  transform: rotate(-45deg);
}
.ui-datepicker-prev .ui-icon:after {
  transform: rotate(45deg);
}
.ui-datepicker-next {
  right: 0;
}
.ui-datepicker-next .ui-icon:before {
  transform: rotate(45deg);
}
.ui-datepicker-next .ui-icon:after {
  transform: rotate(-45deg);
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
  border: #ddd 1px solid;
  text-align: center;
  background: #fff;
  line-height: 24px;
}
.ui-datepicker-calendar th:first-child {
  color: #d43333;
}
.ui-datepicker-calendar th:last-child {
  color: #2264b2;
}
.ui-datepicker-calendar td a {
  display: block;
}
.ui-datepicker-calendar td:first-child a {
  color: #d43333;
}
.ui-datepicker-calendar td:last-child a {
  color: #2264b2;
}
.ui-datepicker-calendar td a.ui-state-active {
  font-weight: 700;
  background: #f5f5f5;
}

/* popup */
.popup,
.popup .dm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup {
  z-index: 101;
  color: #21293b;
  display: none;
}
.popup .dm {
  background: rgba(0, 0, 0, 0.7);
}
.popup .inbox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  max-width: calc(100% - 20px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.popup .pop_fancy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 54px;
  background: url("/images/icon_close.svg") no-repeat 50% 50%;
  font-size: 0;
  z-index: 10;
}
.popup .pop_fancy .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 54px;
  background: url("/images/icon_close.svg") no-repeat 50% 50%;
  font-size: 0;
  z-index: 10;
}
.pop_fancy .tit,
.popup .tit {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  line-height: 54px;
  padding: 0 24px;
  border-bottom: #eaedf4 1px solid;
  margin: 0;
}
.popup .scroll {
  max-height: calc(100vh - 40px);
  overflow: auto;
}
/* 처리과정(상태) 안내 */
.state_step {
  padding: 24px;
  max-height: calc(100vh - 118px);
  overflow: auto;
  margin-bottom: 24px;
}
.state_step dl {
  position: relative;
  width: 100%;
  display: table;
  height: 120px;
  margin-bottom: 30px;
}
.state_step dl:before,
.state_step dl:after {
  content: "";
  position: absolute;
}
.state_step dl:before {
  bottom: 1px;
  left: 50%;
  width: 40px;
  height: 5px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 1;
}
.state_step dl:after {
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 14px;
  background: url("/images/arrow_step.svg") no-repeat 50% 50% / contain;
}
.state_step dl.none_arrow {
  margin-bottom: 0;
}
.state_step dl.none_arrow:after {
  display: none;
}
.state_step dl.mt {
  margin-top: 32px;
}
.state_step dt,
.state_step dd {
  display: table-cell;
  vertical-align: middle;
}
.state_step dt {
  font-size: 18px;
  font-weight: 600;
  width: 100px;
  text-align: center;
  border: #eaedf4 1px solid;
  border-right: 0;
  border-radius: 8px 0 0 8px;
}
.state_step dd {
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 12px 12px 24px;
  width: calc(100% - 100px);
  border: #eaedf4 1px solid;
  border-left: 0;
  border-radius: 0 8px 8px 0;
}
.state_step dd p {
  font-size: 15px;
  line-height: 1.4;
  margin-top: 12px;
}
.state_step dd i {
  display: inline-block;
  font-size: 13px;
  color: #373f57;
  font-weight: 600;
  line-height: 22px;
  height: 24px;
  padding: 0 5px;
  background: #f4f7f9;
  border: #eaedf4 1px solid;
  border-radius: 4px;
  margin: 0 5px;
}
.state_step .c1 dt {
  background: #eaedf4;
}
.state_step .c2 dt {
  background: #ffe4ec;
}
.state_step .bar {
  width: 100%;
  height: 1px;
  background: url("/images/ptn_dashed.svg");
  margin: 32px 0;
}
/* 담당자 정보 수정 */
.pop_setting .inbox {
  width: 870px;
}
.fake_tbl {
  padding: 24px;
}
.fake_tbl dl {
  display: flex;
  align-items: center;
  text-align: left;
}
.fake_tbl .th dl {
  border: #eaedf4 1px solid;
  border-radius: 4px;
  background: #f4f6fa;
  overflow: hidden;
}
.fake_tbl .th dt,
.fake_tbl .td dd {
  width: calc((100% - 94px) / 4);
}
.fake_tbl .th dt {
  font-size: 14px;
  color: #475067;
  font-weight: 500;
  line-height: 38px;
  border-left: #eaedf4 1px solid;
  padding: 0 10px;
}
.fake_tbl .th dt:first-child {
  border-left: 0;
}
.fake_tbl .td dl {
  border-bottom: #eaedf4 1px solid;
}
.fake_tbl .th dt:first-child,
.fake_tbl .td dt {
  width: 94px;
  font-weight: 600;
}
.fake_tbl .td dt span {
  color: #f00;
}
.fake_tbl .td dt,
.fake_tbl .td dd {
  font-size: 15px;
  padding: 9px 10px;
}
.fake_tbl .td .text {
  height: 40px;
  line-height: 38px;
}
.fake_tbl .td .text::placeholder {
  font-size: 0;
}
.btn_submit {
  display: block;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  line-height: 56px;
  height: 56px;
  width: 200px;
  text-align: center;
  background: #1466d6;
  border-radius: 6px;
  margin: 32px auto 0;
}
/* 관리자-비고 모달 */
.fancybox-close {
  top: 0;
  right: 0;
  width: 76px;
  height: 54px;
  background: url("/images/icon_close.svg") no-repeat 50% 50%;
  font-size: 0;
}

/* 유지보수 요청 입력 */
.goback {
  display: block;
  width: 100px;
  height: 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding-left: 36px;
  margin-bottom: 32px;
  background: url("/images/btn_back.svg") no-repeat 0 0;
}
.input_area {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
}
.input_area dl {
  margin-top: 20px;
}
.input_area dl:first-child {
  margin-top: 0;
}
.input_area dt {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 12px;
}
.input_area dt h2 {display:inline; font-weight:inherit;}
.input_area dd {
  font-size: 16px;
}
.input_area dd p {
  font-size: 14px;
  color: #7a7f89;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  padding-left: 8px;
  text-indent: -8px;
}
.input_area dd input.text,
.input_area dd .nice-select {
  height: 48px;
  line-height: 46px;
}
.input_area .half_dl {
  display: flex;
  gap: 20px;
}
.input_area .half_dl dl {
  width: calc(50% - 10px);
  margin-top: 0;
}
.input_area label.file {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: #d2d6e0 1px dashed;
  padding: 40px;
  text-align: center;
  line-height: 1.4;
}
.input_area label.file input {
  display: none;
}
.input_area label.file .tt {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.input_area label.file p {
  font-size: 14px;
  color: #7a7f89;
  font-weight: 500;
  margin: 8px 0 20px;
}
.input_area label.file i {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 33px;
  height: 35px;
  width: 112px;
  border: #21293b 1px solid;
  border-radius: 4px;
  margin: 0 auto;
}
.input_area .file_box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.input_area .file_box.on {
  margin-top: 16px;
}
.input_area .file_box .del {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  padding: 6px 16px;
  background: #1466d6;
  border: #1466d6 1px solid;
  border-radius: 24px;
}
.input_area .file_box .del:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #fff;
  mask: url("/images/btn_del.svg") no-repeat 50% 50% / contain;
  -webkit-mask: url("/images/btn_del.svg") no-repeat 50% 50% / contain;
}
.input_area .screenshot_box {
  display: flex;
  gap: 13px;
}
.input_area .screenshot_box .screen {
  position: relative;
  width: calc((100% - 52px) / 5);
}
.input_area .screenshot_box .screen input {
  display: none;
}
.input_area .screenshot_box .screen .box {
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: block;
}
.input_area .screenshot_box .screen .box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: #d2d6e0 1px dashed;
  border-radius: 4px;
  background: url("/images/icon_file_plus.svg") no-repeat 50% 50%;
}
.input_area .screenshot_box .screen .del {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: url("/images/btn_del2.svg") no-repeat 50% 50% / contain;
  border-radius: 50%;
  z-index: 1;
}
.input_area .screenshot_box .screen.on .box span {
  border-style: solid;
}
.input_area .btn {
  display: block;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  line-height: 56px;
  height: 56px;
  width: 200px;
  background: #1466d6;
  border-radius: 6px;
  margin: 64px auto 0;
}
.input_area ul,
.input_area ol {
  padding-left: 20px;
}

/* 유지보수 요청 상세 */
.maintenance_info {
  display: flex;
  gap: 22px;
}
.maintenance_info dl {
  width: calc(50% - 11px);
  border-radius: 8px;
  border: 1px solid;
  padding: 32px;
  line-height: 1.4;
  background: no-repeat 100% 100% / contain;
}
.maintenance_info dt {
  font-size: 16px;
  font-weight: 600;
}
.maintenance_info dd {
  font-size: 26px;
  font-weight: 700;
  margin-top: 6px;
}
.maintenance_info dl.c1 {
  border-color: #21293b;
  color: #fff;
  background-color: #21293b;
  background-image: url("/images/bg_maintenance_info01.png");
}
.maintenance_info dl.c2 {
  border-color: #eaedf4;
  background-color: #f4f6fa;
  background-image: url("/images/bg_maintenance_info02.png");
}
.maintenance_info dd .text {
  width: 50%;
  background: none;
  border: 0;
  border-bottom: 1px solid;
  border-radius: 0;
  font-size: 26px;
  font-weight: 700;
  padding-left: 0;
}
.maintenance_info dd .text .option {
  color: #21293b;
  font-size: 20px;
}
.maintenance_info .c1 dd .text {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}
.maintenance_info .c2 dd .text {
  border-bottom-color: #d2d6e0;
}
.glbox {
  border: #d2d6e0 1px solid;
  border-radius: 12px;
  background: #fff;
  padding: 32px;
}
.glbox.outgray {
  border-color: #eaedf4;
}
.work_hours {
  display: flex;
}
.work_hours .box {
  position: relative;
  width: 50%;
}
.work_hours .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  /* height: calc(100% - 71px); */
  height: 100%;
  background: #d2d6e0;
}

.work_hours.no_work_h .box1,
.work_hours.no_work_h .box2:before {
	display: none;
}
.work_hours.no_work_h .box2 {
	width: 100%;
}
.work_hours .box:first-child {
  padding-right: 30px;
}
.work_hours .box:first-child:before {
  display: none;
}
.work_hours .box:last-child {
  padding-left: 30px;
}
.work_hours .tit {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 32px;
}
.work_hours .tit h3 {font-weight:inherit;}
.work_hours ul {
  display: flex;
}
.work_hours li {
  width: 25%;
  border-left: #eaedf4 1px solid;
  text-align: center;
}
.work_hours li:first-child {
  border-left: 0;
}
.work_hours li strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 33px;
}
.work_hours li.in strong {
  color: #1466d6;
}
.work_hours li .text {
  display: block;
  font-size: 18px;
  color: #d2d6e0;
  font-weight: 800;
  line-height: 38px;
  height: 38px;
  width: 68px;
  background: #f4f6fa;
  border-radius: 4px;
  border: 0;
  margin: 0 auto;
  text-align: center;
}
.work_hours li.in .text {
  color: #1466d6;
}
.work_hours li p {
  font-size: 15px;
  color: #7a7f89;
  font-weight: 500;
  line-height: 18px;
  margin-top: 6px;
}
.work_hours .btn {
  position: relative;
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 46px;
  height: 48px;
  width: 100%;
  border: #21293b 1px solid;
  border-radius: 6px;
  text-align: center;
  margin-top: 23px;
}
.work_hours .btn span {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 20px;
  min-height: 26px;
  min-width: 350px;
  width: auto;
  max-width: 100%;
  transform: translateX(-50%);
  border-radius: 13px;
  text-align: center;
  background: #1466d6;
  padding: 3px 16px;
  white-space: normal;
}
.work_hours .btn span:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 8px;
  transform: translateX(-50%);
  background: url("/images/arrow_balloon.svg") no-repeat 50% 50% / contain;
}
.board_view .tit {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}
.board_view .writer {
  padding-bottom: 32px;
  border-bottom: #eaedf4 1px solid;
  margin-bottom: 30px;
}
.board_view .writer dl {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1;
}
.board_view .writer dt {
  width: 104px;
  color: #7a7f89;
}
.board_view .writer dd {
  width: calc(100% - 104px);
  font-weight: 500;
}
.board_view .writer.row {
  display: flex;
  gap: 25px;
}
.board_view .writer.row dl {
  position: relative;
  gap: 6px;
}
.board_view .writer.row dl:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  width: 1px;
  height: 14px;
  background: #d2d6e0;
  margin-top: -7px;
}
.board_view .writer.row dl:first-child:before {
  display: none;
}
.board_view .writer.row dt {
  width: auto;
}
.board_view .writer.row dd {
  width: auto;
}
.board_view .download_file {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.board_view .download_file .down {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1466d6;
  line-height: 20px;
  padding: 6px 16px;
  border: #1466d6 1px solid;
  border-radius: 24px;
}
.board_view .download_file .down:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("/images/btn_dwon.svg") no-repeat 50% 50% / contain;
}
.board_view .con {
  font-size: 16px;
  line-height: 1.6;
}
.board_view .con ul,
.board_view .con ul,
.board_view .con ol {
  padding-left: 30px;
  margin: 10px 0;
  list-style-position: outside;
}
.board_view .con ul li,
.board_view .con ol li {
  margin: 5px 0;
  list-style-position: outside;
  padding-left: 5px;
}
.board_view .con ol {
  padding-left: 35px;
}
.board_view .con table {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
}
.board_view .con table td,
.board_view .con table th {
  border: 1px solid #d2d6e0;
  padding: 8px;
}
.board_view .con blockquote {
  border-left: 4px solid #1466d6;
  padding-left: 16px;
  margin: 10px 0;
  font-style: italic;
  color: #666;
}
.board_view .con img {
  max-width: 100%;
  height: auto;
}
.board_view .con iframe {
  max-width: 100%;
}
.board_view .imgs {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.board_view .imgs i {
  display: block;
  width: 118px;
  height: 118px;
  border-radius: 4px;
  border: #d2d6e0 1px solid;
  overflow: hidden;
}
.board_view .gong {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 12px;
  background: #02cf4c;
  border-radius: 12px;
  margin-left: 8px;
}
.board_view ul {
  list-style: disc;
}
.board_view ol {
  list-style: decimal;
}
.board_view .con a,
.reply_area .wbox a {
  transition: color 0.15s ease;
}

.board_view .con a:hover,
.reply_area .wbox a:hover {
  color: #1466d6;
}
.gbox {
  padding: 56px 0 90px;
  margin-top: 56px;
  background: #f4f6fa;
}
.wbox {
  background: #fff;
  border: #eaedf4 1px solid;
  border-radius: 12px;
}
.reply_area .wbox {
  padding: 24px 32px;
}
.reply_area .wbox + .wbox {
  margin-top: 16px;
}
.reply_area .wbox.replybox,
.reply_area .wbox.completebox {
  border-color: #21293b;
}
.reply_area .tit {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 32px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
}
.reply_area .tit .text {
  width: 240px;
}
.reply_area .tit .btn {
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 32px;
  height: 32px;
  width: 56px;
  text-align: center;
  background: #21293b;
  border-radius: 4px;
}
.reply_area .tit .btn_b {
  width: 80px;
}
.reply_area .tit .btns {
  position: absolute;
  top: 5px;
  right: 0;
  display: flex;
  gap: 6px;
}
.reply_area .tit .btns .btn,
.reply_area .btn-group .btn {
  position: relative;
  display: block;
  top: 0;
  color: #475067;
  background: #fff;
  border: #d2d6e0 1px solid;
  line-height: 30px;
}
.reply_area .btn-group {
	display: flex;
	column-gap: 6px;
	margin-top: 20px;
}
.reply_area .btn-group .btn {
	width: 56px;
	border-radius: 4px;
}
.reply_area .tit .state {
  font-size: 15px;
  font-weight: 600;
  line-height: 30px;
  height: 32px;
  width: 84px;
  text-align: center;
  border-radius: 16px;
  border: #21293b 1px solid;
  margin-right: 12px;
}
.reply_area .tit .state.end,
.reply_area .tit .state.complete {
  color: #fff;
  background: #21293b;
}
.reply_area .tit .state.rework {
  color: #fff;
  background: #fb0e55;
  border-color: #fb0e55;
}
.reply_area .con {
  font-size: 16px;
  line-height: 1.6;
  word-break: break-word;
}
.reply_area .con .text {
  padding: 20px;
}
.btn_list {
  display: block;
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  line-height: 56px;
  height: 56px;
  width: 200px;
  background: #21293b;
  border-radius: 4px;
  margin: 64px auto 0;
  text-align: center;
}

/* 월간보고서 */
.monthly_reports_top {
  display: flex;
  background: #21293b;
  border-radius: 12px;
  padding: 70px 0;
  margin-bottom: 56px;
}
.monthly_reports_top li {
  width: 50%;
  text-align: center;
}
.monthly_reports_top span {
  display: block;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  line-height: 23px;
  height: 23px;
  width: 23px;
  background: #1466d6;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.monthly_reports_top p {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
a.btn_print {
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  height: 32px;
  width: 58px !important;
  max-width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background: #eaedf4;
  border-radius: 4px;
  margin: 0 auto;
}
a.btn_print:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("/images/icon_print.svg") no-repeat 50% 50% / contain;
}
#pop_monthly_reports .inbox {
  width: 590px;
}

/* 출력 */
.monthly_reports_print {
  width: 595pt;
  margin: 0 auto;
  line-height: 1.4;
}
.monthly_reports_print .head {
  position: relative;
  background: #f4f6fa;
  padding: 40pt 40pt 24pt;
}
.monthly_reports_print .title {
  font-size: 32pt;
  color: #21293b;
  font-weight: 700;
  margin-bottom: 8pt;
}
.monthly_reports_print .date {
  position: absolute;
  top: 40pt;
  right: 40pt;
  font-size: 10pt;
  color: #7a7f89;
  font-weight: 500;
}
.monthly_reports_print .tit {
  font-size: 18pt;
  color: #21293b;
  font-weight: 500;
  margin-bottom: 24pt;
}
.monthly_reports_print .tit strong {
  color: #1466d6;
}
.monthly_reports_print .head .tbl {
  border: #eaedf4 1pt solid;
  border-radius: 4pt;
  background: #fff;
  padding: 8pt 16pt;
}
.monthly_reports_print .head .tbl th,
.monthly_reports_print .head .tbl td {
  font-size: 10pt;
  padding: 4pt 5pt;
}
.monthly_reports_print .head .tbl th {
  color: #475067;
  font-weight: 500;
  width: 68pt;
}
.monthly_reports_print .head .tbl td {
  color: #21293b;
  font-weight: 600;
}
.monthly_reports_print .body {
  padding: 32pt 40pt 40pt;
}
.monthly_reports_print .body th,
.monthly_reports_print .body td {
  font-size: 10pt;
  line-height: 20pt;
  padding: 5px;
  border-bottom: #eaedf4 1px solid;
  /* white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis; */
}
.monthly_reports_print .body thead th {
  color: #fff;
  font-weight: 500;
  background: #21293b;
}
.monthly_reports_print .body tbody th {
  color: #475067;
  font-weight: 500;
  background: #f4f6fa;
}
.monthly_reports_print .body tbody td {
  color: #21293b;
}
.monthly_reports_print .body .tbl2 {
  margin-top: 24pt;
}
.monthly_reports_print .body .tbl2 td {
  height: 100pt;
  padding: 10pt;
  vertical-align: top;
  line-height: 1.2;
}

/* 계정정보 */
.tbl {
  border-top: #eaedf4 1px solid;
}
.tbl col.w120 {
  width: 120px;
}
.tbl.bdrs_l {
  border-radius: 5px 0 0 5px;
  border-left: #eaedf4 1px solid;
  overflow: hidden;
}
.tbl th,
.tbl td {
  border-bottom: #eaedf4 1px solid;
  padding: 0 16px;
  height: 58px;
  text-align: left;
}
.tbl th {
  font-size: 14px;
  color: #475067;
  width: 120px;
  background: #f4f6fa;
}
.tbl td {
  font-size: 16px;
  color: #21293b;
  padding: 9px 16px;
}
.tbl .copy {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 33px;
  height: 35px;
  width: 74px;
  text-align: center;
  background: #fff;
  border: #21293b 1px solid;
  border-radius: 4px;
}
.tbl .text {
  max-width: 100%;
}
.tbl textarea.text {
  height: 120px;
}
.tbl .w50 {
  width: 500px;
  max-width: 100%;
}
.tbl .w45 {
  width: 450px;
  max-width: 100%;
}
.tbl .flex.inputs {
  align-items: center;
}
.tbl .flex.inputs .datepicker_area {
  width: 242px;
}
.tbl .flex.inputs .datepicker_area .text {
  width: 100%;
}
.tbl .flex.radios {
  gap: 35px;
}
.tbl .flex .check {
  display: flex;
  align-items: center;
}
.tbl .inchk,
.tbl .inbtn {
  gap: 10px;
}
.tbl .inbtn .btn {
  width: 100px;
  height: 40px;
  line-height: 40px;
  color: #21293b;
  border: #21293b 1px solid;
  border-radius: 4px;
  text-align: center;
}

.terms {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}
.terms .tit {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 10px;
}
.terms .tit:first-child {
  margin-top: 0;
}
.terms li {
  padding-left: 20px;
  text-indent: -20px;
}
.terms li .arial {
  font-family: "Arial";
}

/* 관리자 */
.pop_work_statistics .dm {
  left: 320px;
  width: calc(100% - 320px);
}
.pop_work_statistics .inbox {
  top: 20px;
  left: 340px;
  width: 370px;
  height: auto;
  max-height: calc(100vh - 40px);
  transform: translate(0, 0);
}
.pop_work_statistics .con {
  padding: 24px;
  max-height: calc(100vh - 95px);
  overflow: auto;
}
.pop_work_statistics .date {
  border: #eaedf4 1px solid;
  border-radius: 4px;
  background: #f4f6fa;
  padding: 16px;
  margin-bottom: 36px;
}
.pop_work_statistics .date dt {
  font-size: 16px;
  color: #475067;
  font-weight: 600;
  line-height: 1.4;
}
.pop_work_statistics .date dd {
  font-size: 18px;
  color: #21293b;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 4px;
}
.pop_work_statistics .stit {
  justify-content: center;
}
.pop_work_statistics .stit.mt {
}
.pop_work_statistics .total {
  border: #1466d6 1px solid;
  border-radius: 4px;
  background: #e9f3ff;
  padding: 16px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
.pop_work_statistics .total dt,
.pop_work_statistics .total dd {
  color: #1466d6;
  font-weight: 600;
  line-height: 1.4;
}
.pop_work_statistics .total dt {
  font-size: 18px;
}
.pop_work_statistics .total dd {
  font-size: 28px;
}
.pop_work_statistics .ptit {
  font-size: 18px;
  color: #21293b;
  font-weight: 600;
  line-height: 1.4;
  padding: 32px 0 12px;
  border-bottom: #21293b 1px solid;
  margin-bottom: 16px;
}
.pop_work_statistics table {
  line-height: 1.6;
}
.pop_work_statistics th,
.pop_work_statistics td {
  padding: 4px 0;
}
.pop_work_statistics th {
  font-size: 16px;
  color: #475067;
  font-weight: 500;
  text-align: left;
}
.pop_work_statistics td {
  font-size: 18px;
  color: #21293b;
  font-weight: 700;
  text-align: right;
}

.pop_work_statistics tr.exceeded th,
.pop_work_statistics tr.exceeded td {
  color: #fb0e55;
}

label.radio {
  position: relative;
  display: block;
  padding-left: 24px;
}
label.radio input {
  display: none;
}
label.radio.solo {
  padding-left: 0;
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
label.radio i,
label.radio i:before {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  transition: 0.2s linear;
}
label.radio i {
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: #d2d6e0 1px solid;
  margin-top: -9px;
}
label.radio i:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #d2d6e0;
  transform: translate(-50%, -50%);
}
label.radio input:checked + i {
  border: #1466d6 6px solid;
}
label.radio input:checked + i:before {
  background: #fff;
}

label.check {
  position: relative;
  display: block;
  padding-left: 24px;
}
label.check input {
  display: none;
}
label.check.solo {
  padding-left: 0;
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
label.check i,
label.check i:before {
  position: absolute;
  top: 50%;
  border-radius: 2px;
  transition: 0.2s linear;
}
label.check i {
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: #d2d6e0 1px solid;
  margin-top: -9px;
}
label.check i:before {
  content: "";
  left: 50%;
  width: 0;
  height: 0;
  background: #1466d6;
  transform: translate(-50%, -50%);
}
label.check input:checked + i {
  border-color: #1466d6;
}
label.check input:checked + i:before {
  width: 10px;
  height: 10px;
}
label.check.mt {
  margin-top: 12px;
}

/* 관리자 - 쓰기 */
.board_write {
  border: #eaedf4 1px solid;
  border-radius: 5px;
}
.board_write th,
.board_write td {
  border-bottom: #eaedf4 1px solid;
  height: 58px;
  padding: 9px 16px;
}
.board_write th {
  font-size: 14px;
  color: #475067;
  font-weight: 500;
  width: 120px;
  text-align: left;
  background: #f4f6fa;
}
.board_write tr:first-child th {
  border-radius: 5px 0 0 0;
}
.board_write tr:last-child th {
  border-radius: 0 0 0 5px;
}
.board_write td {
  font-size: 16px;
}
.board_write td label.check {
  display: inline-block;
  vertical-align: top;
}
.board_write td label.check .hot {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  height: 24px;
  width: 52px;
  max-width: 100%;
  background: #ff1b36;
  border-radius: 12px;
  text-align: center;
}
.board_write td .text {
  max-width: 100%;
}
.board_write td .w1 {
  width: 448px;
  max-width: 100%;
}
.board_write td .w2 {
  width: 100px;
}
.board_write td .datepicker_area .text {
  width: 100%;
}
.board_write td textarea.text {
  height: 120px;
}

/* 탭 */
.tabs {
  display: flex;
  border-bottom: #eaedf4 2px solid;
  margin-bottom: 60px;
}
.tabs a {
  position: relative;
  display: block;
  font-size: 20px;
  color: #7a7f89;
  font-weight: 600;
  line-height: 54px;
  text-align: center;
  width: 50%;
}
.tabs a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #1466d6;
  transition: 0.2s linear;
}
.tabs a.on {
  color: #1466d6;
}
.tabs a.on:after {
  left: 0;
  width: 100%;
}

.tabs.type2 {
  border-bottom: 0;
  gap: 5px;
  margin-bottom: 15px;
}
.tabs.type2 a {
  padding: 6px 32px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 30px;
  width: auto;
}
.tabs.type2 a:after {
  display: none;
}

/* 환경설정 */
.preferences {
  display: flex;
  gap: 60px;
}
.preferences .folderbox {
  width: 502px;
  border: #eaedf4 1px solid;
  border-radius: 12px;
  padding: 24px 20px;
}
.preferences .folderbox .addbox {
  display: flex;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 22px;
}
.preferences .folderbox .addbox .text {
  width: calc(100% - 66px);
  height: 44px;
  line-height: 42px;
  color: #475067;
}
.preferences .folderbox .addbox .btn {
  width: 58px;
  height: 44px;
  line-height: 42px;
  color: #475067;
  border: #475067 1px solid;
  border-radius: 4px;
}
.preferences .folderbox .list {
  border-top: #eaedf4 1px solid;
  overflow: auto;
  height: 570px;
}
.preferences .folderbox .list .btn {
  font-size: 16px;
  color: #21293b;
  font-weight: 500;
  line-height: 50px;
  width: 100%;
  padding: 0 12px;
  border-bottom: #eaedf4 1px solid;
  display: block;
  text-align: left;
}
.preferences .folderbox .list .btn.on {
  color: #fff;
  background: #21293b;
}
.preferences .inputs {
  width: calc(100% - 562px);
}
.preferences .inputs .stit {
  margin-top: 32px;
}
.preferences .inputs .radios {
  gap: 33px;
}
.preferences .inputs .text {
  font-size: 16px;
  color: #21293b;
}
.preferences .inputs .text::placeholder {
  color: #7a7f89;
}
.preferences .inputs textarea.text {
  height: 200px;
}

/* 테이블 관련 스타일 */
.customer {
  text-align: center;
}
.date_sched {
  text-align: center;
}
.worker {
  text-align: center;
}
.note {
  text-align: center;
}
.note .btn_note {
  padding: 4px 8px;
  font-size: 12px;
  color: #1466d6;
  text-decoration: none;
}
.note .btn_note:hover {
  text-decoration: underline;
}

/* 비고 모달 스타일 */
.pop_note {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  color: #21293b;
}

.pop_note .dm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.pop_note .inbox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.pop_note .tit {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  line-height: 54px;
  padding: 0 24px;
  border-bottom: #eaedf4 1px solid;
  margin: 0;
}

.pop_note .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 54px;
  background: url("/images/icon_close.svg") no-repeat 50% 50%;
  font-size: 0;
  z-index: 10;
}

.pop_note .con {
  padding: 24px;
  font-size: 16px;
  color: #21293b;
  line-height: 1.6;
  letter-spacing: -0.32px;
}

/* 유지보수 요청 고객사 사이드바 */
.maintenance_requests_wrap .maintenance_client_sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 320px;
  height: calc(100% - 60px);
  background: #fff;
  z-index: 10;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
  border-right: #eaedf4 1px solid;
}

.maintenance_requests_wrap .btn_opcl {
  display: none;
}

.maintenance_requests_wrap .maintenance_client_wrap {
  padding: 32px 24px;
  height: 100%;
  overflow-y: auto;
}

.maintenance_requests_wrap .maintenance_client_wrap::-webkit-scrollbar-thumb {
  background-color: #ddd;
}

.maintenance_requests_wrap .maintenance_client_wrap .tit {
  font-size: 18px;
  color: #21293b;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.maintenance_requests_wrap .maintenance_client_wrap .search_area {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.maintenance_requests_wrap .maintenance_client_wrap .search_area .text {
  width: calc(100% - 66px);
  height: 44px;
  line-height: 42px;
  padding: 0 12px;
  border: #d2d6e0 1px solid;
  border-radius: 4px;
  font-size: 15px;
  color: #21293b;
}

.maintenance_requests_wrap
  .maintenance_client_wrap
  .search_area
  .text::placeholder {
  color: #aeb4c1;
}

.maintenance_requests_wrap .maintenance_client_wrap .search_area .btn {
  font-size: 15px;
  color: #475067;
  font-weight: 500;
  line-height: 42px;
  height: 44px;
  width: 58px;
  border: #475067 1px solid;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.maintenance_requests_wrap .maintenance_client_wrap .search_area .btn:hover {
  background: #f4f7f9;
}

.maintenance_requests_wrap .maintenance_client_wrap .client_list {
  height: calc(100% - 114px);
  overflow-y: auto;
}

.maintenance_requests_wrap .maintenance_client_wrap .client_list a {
  position: relative;
  display: block;
  font-size: 15px;
  color: #21293b;
  font-weight: 500;
  line-height: 22px;
  padding: 5px 5px 5px 36px;
  margin-bottom: 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.maintenance_requests_wrap .maintenance_client_wrap .client_list a:hover {
  background: #f4f7f9;
}

.maintenance_requests_wrap .maintenance_client_wrap .client_list a.active {
  background: #e9f3ff;
  color: #1466d6;
}

.maintenance_requests_wrap .maintenance_client_wrap .client_list a:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 22px;
  height: 22px;
  background: url("/images/icon_client.svg") no-repeat 50% 50% / contain;
}
.maintenance_requests_wrap
  .maintenance_client_wrap
  .client_list
  a.confirmed-client:before {
  background-image: url(/images/icon_client_02.svg);
}

.maintenance_requests_wrap .maintenance_client_wrap .client_list a span {
  color: #fa192b;
  font-weight: 600;
}

/* 메일 발송 상세 */
.mail_form_wrap .title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #c9252b;
}
.mail_form_wrap .mail_state {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.mail_form_wrap .mail_state .box {
  flex: 1;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.mail_form_wrap .mail_state .tit {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 600;
}
.mail_form_wrap .mail_state .con {
  font-size: 22px;
  font-weight: 700;
}
.mail_form_wrap .mail_state .box1 .btm {
  margin-top: 12px;
  font-size: 13px;
  color: #721c24;
  background: rgba(255, 255, 255, 0.5);
  padding: 8px;
  border-radius: 4px;
}
.mail_form_wrap .mail_state .box2 .btm {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mail_form_wrap .mail_state .box2 .btm .tt {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.mail_form_wrap .mail_state .box2 .btm .cn {
  font-size: 15px;
  color: #0c5460;
  font-weight: 600;
}
.mail_form_wrap .mail_state .box2 .btm .state {
  margin-top: 8px;
  font-size: 13px;
  color: #856404;
}
.mail_form_wrap .basic_info {
  background: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mail_form_wrap .infobox h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 25px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f3f5;
  display: flex;
  align-items: center;
}
.mail_form_wrap .infobox h2:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: #1466d6;
  margin-right: 10px;
}
.mail_form_wrap .infobox.mail_tit h3,
.mail_form_wrap .infobox.mail_con h3 {
  margin-bottom: 20px;
}
.mail_form_wrap .tblbox {
  display: grid;
  grid-template-columns: 150px 1fr 150px 1fr;
  gap: 20px 30px;
  align-items: center;
}
.mail_form_wrap .tblbox .tit {
  font-weight: 600;
  color: #495057;
}
.mail_form_wrap .tblbox .con {
  font-size: 15px;
}
.mail_form_wrap .tblbox .ip {
  color: #6c757d;
  font-family: monospace;
  font-size: 14px;
}
.mail_form_wrap .tblbox .state {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}
.mail_form_wrap .gridbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}
.mail_form_wrap .gridbox .box {
  background: #fff;
  border: 1px solid #e1e4e8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mail_form_wrap .gridbox .con {
  display: grid;
  gap: 15px;
}
.mail_form_wrap .gridbox .tt {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 5px;
  font-weight: 600;
}
.mail_form_wrap .gridbox .cn1 {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}
.mail_form_wrap .gridbox .cn2 {
  font-size: 15px;
  color: #007bff;
  word-break: break-all;
}
.mail_form_wrap .mail_tit .con {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  line-height: 1.6;
}
.mail_form_wrap .mail_con .con {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 25px;
  background: #fafbfc;
  max-height: 600px;
  overflow-y: auto;
  line-height: 1.8;
  font-size: 15px;
}

/* 고객사 선택 팝업 스타일 */
.pop_client_select .inbox {
  max-width: 600px;
  width: 90%;
}
.pop_client_select .con {
  padding: 24px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.pop_client_select .client_search_area {
  margin-bottom: 16px;
}
.pop_client_select .client_search_area .text {
  padding: 10px 12px;
  border: 1px solid #d2d6e0;
  border-radius: 4px;
  font-size: 14px;
}
.pop_client_select .client_select_all_area {
  margin-bottom: 16px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border-bottom: 1px solid #e9ecef;
}
.pop_client_select .client_select_all_area .check {
  margin: 0;
  font-weight: 600;
  color: #21293b;
}
.pop_client_select .client_list_area {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 12px;
  background: #fff;
  margin-bottom: 20px;
}
.pop_client_select .client-item {
  display: block;
  margin-bottom: 10px;
  padding: 10px 10px 10px 34px !important;
  border-radius: 4px;
  transition: background 0.2s;
  cursor: pointer;
  font-size: 14px;
  color: #21293b;
  line-height: 1.5;
  position: relative;
}
.pop_client_select .client-item:hover {
  background: #f8f9fa;
}
.pop_client_select .client-item i {
  left: 10px !important;
  top: 50% !important;
  margin-top: -9px !important;
}
.pop_client_select .client_select_buttons {
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
  text-align: right;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.pop_client_select .client_select_buttons .btn {
  font-size: 14px;
  padding: 8px 20px;
  height: 38px;
  line-height: 22px;
  min-width: 80px;
}
.pop_client_select .client_select_buttons .btn:not(.btn_gray) {
  background: #1466d6;
  color: #fff;
  border: none;
}
.pop_client_select .client_select_buttons .btn:not(.btn_gray):hover {
  background: #1155b8;
}
/* 고객사 선택 영역 스타일 */
.client_select_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.btn_select_client {
  font-size: 13px;
  padding: 5px 14px;
  height: 32px;
  line-height: 22px;
  min-width: auto;
  white-space: nowrap;
  border-radius: 5px;
  color: #222;
  border: #21293b 1px solid;
}
.client_select_desc {
  margin: 0 !important;
  font-size: 13px;
  color: #666;
}
.selected_clients_display {
  margin-top: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 4px;
}
.selected_clients_title {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: #21293b;
}
.selected_clients_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
/* 에디터 높이 증가 */
#content-editor {
  min-height: 400px;
}

/* 매뉴얼 추가 */
:root {
  --bg: #fff;
  --bg-soft: #f7f8fa;
  --line: #e6e8ee;
  --text: #111827;
  --muted: #6b7280;
  --brand: #2563eb;
  --brand-soft: #e8efff;
  --sidebar: #fbfbfd;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 56px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(10px);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}
.brand .logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}
.brand .title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 14.5px;
  line-height: 1.1;
}
.brand .subtitle {
  display: block;
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.searchWrap {
  flex: 1;
  display: flex;
  justify-content: center;
}
.search {
  width: min(760px, 100%);
  position: relative;
}
.search input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 0 44px 0 42px;
  outline: none;
  font-size: 13px;
}
.search input:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.search .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.55;
}
.search .hint {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-bottom-color: #d9dbe2;
  padding: 3px 8px;
  border-radius: 8px;
  background: var(--bg-soft);
}
.topActions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.iconBtn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.iconBtn:hover {
  background: var(--bg-soft);
}
.iconBtn svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}
.app {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: calc(100vh - 56px);
}
.sidebar {
  position: sticky;
  top: 56px;
  height: calc(100vh - 56px);
  overflow: auto;
  border-right: 1px solid var(--line);
  background: var(--sidebar);
  padding: 14px 12px;
}
.sideSectionTitle {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 8px 10px;
}
.nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
}
.navItem,
.navGroupBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.2;
}
.navItem:hover,
.navGroupBtn:hover {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}
.navItem.active {
  background: var(--brand-soft);
  border-color: rgba(37, 99, 235, 0.25);
  color: #0b1b57;
  font-weight: 900;
}
.navBadge {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  background: rgba(107, 114, 128, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}
.chev {
  width: 14px;
  height: 14px;
  margin-left: auto;
  opacity: 0.55;
  transition: transform 0.15s ease;
}
.navGroup[data-open="true"] .chev {
  transform: rotate(90deg);
}
.navChildren {
  margin-left: 14px;
  padding-left: 10px;
  border-left: 1px dashed #d7dbe6;
  display: none;
}
.navGroup[data-open="true"] .navChildren {
  display: block;
}
.navChild {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin: 4px 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12.5px;
  color: #374151;
  border: 1px solid transparent;
}
.navChild:hover {
  background: #fff;
  border-color: var(--line);
}
.navChild.active {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  color: #0b1b57;
  font-weight: 900;
}
.main {
  padding: 26px 18px 60px;
  background: var(--bg);
}
.doc {
  width: min(920px, 100%);
  margin: 0 auto;
}
.docHeader {
  margin-top: 6px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.docHeader h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.docHeader .meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #374151;
}
.doc h2 {
  margin: 26px 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.doc h3 {
  margin: 18px 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.doc p {
  margin: 10px 0;
  line-height: 1.7;
  color: #1f2937;
  font-size: 14px;
}
.doc ul,
.doc ol {
  margin: 10px 0 10px 18px;
  line-height: 1.7;
  color: #1f2937;
  font-size: 14px;
}
.callout {
  margin: 14px 0;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.callout .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 6px;
  flex: none;
}
.callout strong {
  display: block;
  margin-bottom: 4px;
}
.shot {
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.shot img {
  width: 100%;
  display: block;
}
.shot .cap {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 12.5px;
  color: var(--muted);
}
.code {
  font-family: var(--mono);
  font-size: 12.5px;
  background: #0b1020;
  color: #e5e7eb;
  border-radius: var(--radius);
  padding: 12px 14px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}
.hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.pager {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.pager a {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pager a:hover {
  background: var(--bg-soft);
}
.pager .k {
  font-size: 12px;
  color: var(--muted);
}
.pager .v {
  font-weight: 900;
  letter-spacing: -0.01em;
}
.mobileOnly {
  display: none;
}
/* ===== 이미지 클릭 확대(팝업) ===== */
.imgModal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  z-index: 999999;
  padding: 24px;
}
.imgModal.show {
  display: flex;
}
.imgModal .imgModalBox {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgModal .imgModalInner {
  max-width: 92vw;
  max-height: 92vh;
  overflow: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: saturate(120%) blur(2px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
}
.imgModal img {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
}
.imgModal .imgModalClose {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(20, 20, 20, 0.65);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgModal .imgModalClose:hover {
  background: rgba(20, 20, 20, 0.85);
}
.imgModal .imgModalHint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  user-select: none;
}
.shot img {
  cursor: zoom-in;
}
