@charset "UTF-8";
/*----------
전체 레이아웃
----------*/
.mwrap {
  min-width: 340px;
  background: var(--blue500);
}

/*--------------------
공통
--------------------*/
.line {
  width: 100%;
  height: 1px;
  min-height: 1px;
  background: var(--light100);
}

.padding {
  padding-top: 50px;
}

.radio-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-wrap {
  justify-content: end;
  gap: 10px;
}

/*--------------------
헤더
--------------------*/
.header-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  z-index: 996;
  padding: 12px 16px;
  background: var(--blue500);
  color: var(--white);
}
.header-b .logo {
  width: 120px;
}

.header-w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  z-index: 996;
  padding: 12px 16px;
  background: var(--white);
  color: var(--dark900);
  border-bottom: 1px solid var(--light500);
}

/*--------------------
네비게이션
--------------------*/
.mnav {
  width: 75%;
  max-width: 280px;
  height: 100%;
  padding: 10px 0 20px;
  background: var(--white);
  position: fixed;
  top: 0;
  right: -75%;
  z-index: 997;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 0 2px var(--dark600);
  overflow: hidden;
}
.mnav .nav-close {
  padding: 0 12px;
  display: flex;
  justify-content: end;
}
.mnav .nav-title {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mnav .nav-menu {
  flex: 1;
}
.mnav .nav-menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
}
.mnav .nav-menu li a:hover, .mnav .nav-menu li a:focus, .mnav .nav-menu li a.on {
  background: var(--light300);
}
.mnav .nav-bottom > * {
  width: 100%;
  padding: 12px 16px;
}
.mnav .nav-bottom .link-logout {
  display: block;
  border-top: 1px solid var(--light100);
  border-bottom: 1px solid var(--light100);
}
.mnav .nav-bottom .link-logout:hover, .mnav .nav-bottom .link-logout:focus, .mnav .nav-bottom .link-logout.on {
  background: var(--light300);
}
.mnav .nav-bottom .btn-home {
  display: flex;
  justify-content: space-between;
  border-radius: 0;
}
.mnav .nav-bottom .btn-home img {
  width: 18px;
}
.mnav .nav-bottom .btn-home:hover, .mnav .nav-bottom .btn-home:focus {
  background: var(--light300);
}

/*--------------------
메인
--------------------*/
#mainContent {
  position: relative;
  height: calc(100vh - 295px);
  overflow: auto;
}
#mainContent.statistics {
  height: calc(100vh - 307px);
}

.main {
  background: var(--white);
  border-radius: 30px 30px 0 0;
}
.main-w {
  background: var(--white);
  height: calc(100vh - 50px);
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.main-g {
  background: var(--light300);
  height: calc(100vh - 50px);
  overflow: auto;
}
.main-top {
  background: var(--blue500);
  padding: 62px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  color: var(--white);
}
.main swiper-container {
  width: 100%;
  height: 100%;
  top: -24px;
  margin-bottom: -24px;
}
.main swiper-slide .box-w {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  padding-bottom: 32px;
}
.main-content {
  width: 90%;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.main-content .box-issue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.main-content .box-issue img {
  width: 40px;
}
.main-content .box-issue .issue-tit {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.main-content .box-issue .issue-tit button.btn-g {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}
.main-content .date-m {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.main-content .date-m input {
  border: none;
  text-align: center;
  width: fit-content;
}
.main-content .date-m input::placeholder {
  text-align: center;
}
.main-content .col3-m {
  display: grid;
  grid-template-columns: 45px 1fr 20px;
  gap: 8px;
}
.main-content .padding {
  padding-bottom: 500px;
}
.main-content .sbmt-wrap {
  width: 90%;
  padding-bottom: 10px;
  position: fixed;
  bottom: 0;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.main-content .sbmt-wrap button {
  width: 100%;
}

.box:has(.col3-m) {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/*--------------------
모달
--------------------*/
.modal-m {
  background: var(--white);
  width: 100%;
  max-height: 75vh;
  overflow: overlay;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: fixed;
  bottom: -100%;
  left: 0;
  z-index: 999;
}
.modal-m.p {
  align-items: center;
  padding: 48px 16px 16px;
}
.modal-m .inp-pwd input {
  text-align: center;
}
.modal-m.c {
  align-items: center;
}
.modal-m.c .modal-title {
  text-align: center;
}
.modal-m.c .modal-title .title-s {
  margin-right: -28px;
}
.modal-m.c .list-wrap {
  text-align: center;
}
.modal-m.c .list-wrap li {
  padding: 0;
}
.modal-m.cfrm {
  display: none;
  width: 280px;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 0 2px var(--dark600);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  bottom: initial;
  z-index: 9999;
}
.modal-m.cfrm .modal-top {
  padding: 8px 6px;
}
.modal-m.cfrm .modal-bottom {
  padding: 8px 0 0;
}
.modal-m.cfrm .modal-bottom .btn-wrap {
  justify-content: end;
}
.modal-m.cfrm .modal-bottom .btn-wrap button {
  width: 60px;
}
.modal-m.b {
  background: var(--dark900);
  color: var(--white);
  bottom: 10px;
  border-radius: 8px;
  width: 90%;
  left: 5%;
  opacity: 0;
  font-size: 16px;
  z-index: -1;
  transition: 0.3s;
}
.modal-m .modal-title {
  width: 100%;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-m .modal-title .title-s {
  width: 100%;
}
.modal-m .pwd-wrap {
  width: 90%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 31px;
}
.modal-m .pwd-wrap.err {
  padding-bottom: 0;
}
.modal-m .pwd-wrap.err .detail {
  display: block;
}
.modal-m .pwd-wrap input {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--dark900);
}
.modal-m .pwd-wrap input::placeholder {
  text-align: center;
}
.modal-m .pwd-wrap .detail {
  display: none;
}
.modal-m .btn-wrap {
  display: flex;
  gap: 16px;
  padding-top: 4px;
  width: 100%;
}
.modal-m .btn-wrap button {
  width: 100%;
}
.modal-m .list-wrap {
  width: 100%;
  font-size: 16px;
}
.modal-m .list-wrap li {
  padding: 12px 20px;
}
.modal-m .list-wrap li.ic-cate {
  padding-left: 32px;
}
.modal-m .list-wrap li a {
  display: block;
  padding: 12px 20px 12px 0;
}
.modal-m .list-wrap li a:hover {
  background: var(--light100);
}

.modal-top::-webkit-scrollbar {
  width: 6px;
}

.modal-top::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--dark600);
  border-radius: 10px;
}

.modal-top::-webkit-scrollbar-track {
  background: var(--light500);
}

.line {
  width: 100%;
  height: 1px;
  background: var(--light100);
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: 998;
}
.modal-bg.off {
  display: none;
}

.modal-top {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 64vh;
  overflow: overlay;
}

.modal-bottom {
  padding: 12px 24px;
  border-top: 1px solid var(--light100);
}
.modal-bottom .btn-wrap {
  display: flex;
  gap: 12px;
  text-align: center;
}

/*--------------------
현황
--------------------*/
.g0 {
  margin-top: -8px;
}

.link-check {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 12px 16px;
  z-index: -1;
  transition: 0.3s;
}
.link-check.show {
  z-index: 90;
}

/*--------------------
점검하기
--------------------*/
.chkbt-wrap {
  display: flex;
  justify-content: end;
}
.chkbt-wrap input[type=checkbox] {
  display: none;
}
.chkbt-wrap input[type=checkbox]:checked + .btn-chck {
  background-color: var(--blue500);
  color: var(--white);
  transition: 0.5s;
}
.chkbt-wrap input[type=checkbox]:disabled + .btn-chck {
  opacity: 0.8;
  cursor: no-drop;
}

.btn-chck {
  background: var(--light300);
  color: var(--dark700);
  border-radius: 8px;
  padding: 8px 12px;
}
.btn-chck:hover {
  background-color: var(--light500);
  transition: 0.3s;
}
.btn-chck:active {
  background-color: var(--blue500);
  color: var(--white);
  transition: 0.5s;
}

/*점검하기 : 이미지*/
.img-w {
  overflow: auto;
}

.img-wrap.long {
  white-space: nowrap;
  width: max-content;
  display: block;
}
.img-wrap.long:before, .img-wrap.long:after {
  display: block;
  content: "";
  line-height: 0;
}
.img-wrap.long:after {
  clear: both;
}
.img-wrap.long .img {
  float: left;
}
.img-wrap.long .img:not(:last-child) {
  margin-right: 8px;
}
.img-wrap .img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  float: left;
}
.img-wrap .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-wrap .img .btn-ico12 {
  position: absolute;
  top: 0;
  right: 4px;
  display: none;
}
.img-wrap .img .btn-ico12 img {
  position: absolute;
}
.img-wrap .img:hover .btn-ico12 {
  display: block;
}

.section-b {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.section-b:not(:last-child):after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--light100);
  bottom: -6px;
  left: 0;
}
.section-b .btn-g {
  width: 80px;
}

.box-yn {
  display: flex;
  justify-content: end;
  gap: 8px;
}

/*--------------------
통계
--------------------*/
.nav-tabs {
  justify-content: space-between;
  border: none;
}
.nav-tabs .nav-item {
  flex-basis: 33%;
}
.nav-tabs .nav-item .nav-link {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light100);
  border-bottom: none;
  text-align: center;
  color: var(--dark900);
}
.nav-tabs .nav-item .nav-link.active {
  background: var(--light700);
  border: none;
}

.tab-pane {
  background: var(--light700);
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calendar-legend {
  margin-left: 32px;
  color: var(--dark600);
}
.calendar-legend p {
  position: relative;
  padding: 2px 2px 2px 6px;
  display: flex;
  justify-content: space-between;
}
.calendar-legend p:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: -10px;
  top: 7px;
  border-radius: 50%;
}
.calendar-legend p.bc-b:before {
  background: var(--blue500);
}
.calendar-legend p.bc-grn:before {
  background: var(--green500);
}
.calendar-legend p.bc-a:before {
  background: var(--alert);
}
.calendar-legend p.bc-w:before {
  background: var(--white);
  border: 1px solid var(--dark900);
}
.calendar-legend p.bc-gry:before {
  background: var(--dark600);
}

.quarter-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quarter-year {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.quarter-month {
  display: flex;
}
.quarter-month span {
  position: relative;
  display: block;
  flex-basis: 33.333%;
}
.quarter-month span:not(:last-child):after {
  content: "";
  background: var(--dark600);
  width: 1px;
  height: 90%;
}
.quarter-dates {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quarter-date {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  height: 188px;
}
.quarter-date p {
  background: #d9d9d9;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
}
.quarter-date p:hover {
  transform: scale(1.1);
  background: var(--dark700);
  transition: 0.3s;
}
.quarter-date p.inactive {
  background: var(--light100);
  cursor: initial;
}
.quarter-date p.bg-b {
  background: var(--blue500);
}
.quarter-date p.bg-a {
  background: var(--alert);
}
.quarter-date p.bg-grn {
  background: var(--green500);
}
.quarter-date p.bg-gry {
  background: var(--dark600);
}
.quarter-day {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quarter-label {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}
.quarter-label .quarter-date {
  flex-direction: row;
  gap: 4px;
  justify-content: initial;
  height: auto;
}
.quarter-label .detail-g {
  text-decoration: underline;
}

.toggle-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 40px;
  grid-template-rows: 40px;
  align-items: center;
  font-size: 16px;
}

/* 주은 : 모바일 전체적으로 폰트 크기 늘려야할 것으로 판단됨.*/
/* 버튼 */
.btn-tag {
  padding: 4px 8px;
  border: 1px solid var(--light500);
  color: var(--dark600);
  border-radius: 10px;
}

.btn-tag.dark {
  background: var(--dark900);
  color: var(--white);
}

.btn-tag.red {
  background: var(--alert);
  color: var(--white);
}

.btn-tag.blue {
  background: var(--blue500);
  color: var(--white);
}

/* 이슈 목록 */
.mwrap .issue-filter {
  background: var(--white);
  padding: 16px 12px;
}

.mwrap .issue-lst .lst-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 8px 16px;
  border-bottom: 1px solid var(--light500);
}

.mwrap .issue-lst .lst-main .null {
  text-align: center;
  line-height: 160%;
  color: var(--dark600);
  padding: 60px 40px;
  height: auto;
}

.mwrap .btn-add-ab {
  bottom: 20px;
  right: 20px;
}

.lst-top .custom-select {
  position: relative;
  min-width: 120px;
}

.lst-top .options-value {
  position: relative;
}

.lst-top .options-value .selected-option {
  display: block;
  padding: 10px 40px 10px 10px;
  cursor: pointer;
}

.lst-top .options-value i {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.lst-top .options-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  min-width: 120px;
  z-index: 999;
}

.lst-top .options-list li {
  padding: 10px;
  cursor: pointer;
}

.lst-top .options-list li[aria-selected=true] {
  background: var(--blue50);
}

.lst-top .options-list li:hover {
  background-color: #f0f0f0;
}

.issue-lst .item-lst {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.issue-lst .lst-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 16px 10px;
  background: var(--white);
}

.item-t {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.issue-lst .lst-item .item-t > p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.issue-lst .lst-item .item-t span > img {
  width: 24px;
}

.issue-lst .lst-item .item-t > .is-t {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 80px;
}

.item-f {
  color: var(--dark600);
}

.item-f > span:has(img) {
  margin-right: 5px;
}

.item-p {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.item-p > .photo {
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 4px 0 10px;
}

.item-p > .photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.issue-status {
  background: var(--white);
  padding: 4px 16px;
}

.issue-status > p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.issue-status > p > span:has(img) {
  width: 40px;
}

.issue-status > .box > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.issue-status > .box {
  background: var(--light300);
  border-radius: 10px;
  margin: 10px 0;
  padding: 20px 20px 16px;
}

.issue-status > .box > .time-calc > .time {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.issue-status > .box > .time-calc .tag {
  display: inline-block;
  max-width: 44px;
  padding: 4px 0;
  text-align: center;
  border-radius: 5px;
}

.issue-status > .box > .time-calc .normal.tag {
  background: var(--light500);
  color: var(--dark700);
}

.issue-status.todo > .box > .time-calc .long.tag {
  background: #FCDADA;
  color: var(--alert);
}

.issue-status.done > .box > .time-calc .long.tag {
  background: var(--o20);
  color: var(--blue500);
}

.issue-status > .box > .time-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mwrap .search-wrap {
  width: 100%;
}

.mwrap .footer {
  background: var(--white);
  padding: 16px;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  gap: 8px;
}

.mwrap .footer > button.btn-p {
  width: 100%;
  flex: 1;
}

.mwrap .footer > button.btn-g {
  width: 32%;
}

.mwrap .main-g:has(.box.filter) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mwrap .box.filter {
  background: var(--white);
  padding: 20px 0;
}

.mwrap .box.filter > p {
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}

.mwrap .box.filter label.radio-b:hover {
  background: var(--light300);
}

.mwrap .box.filter label.radio-b {
  width: 100%;
  padding: 10px 20px;
}

.txt-cnt > .textarea {
  position: relative;
}

.select-box:has(input) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}

.select-box:has(input) > input {
  position: relative;
  padding: 12px 60px 12px 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.issue-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light300);
}

.issue-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-top: 1px solid var(--light300);
}

.issue-detail .is-t {
  display: flex;
  align-item: center;
  gap: 8px;
  font-weight: 600;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 5px;
}

.tag.todo {
  background: #FCDADA;
  color: var(--alert);
}

.tag.done {
  background: var(--o20);
  color: var(--blue500);
}

.issue-detail .item-c {
  display: none;
}

.issue-detail-s {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.daterange {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  margin-left: 30px;
}
.daterange input {
  flex: 1;
  height: 36px;
}

/* 점검표 점검항목 */
.add-photo {
  display: flex;
  flex-direction: column;
  padding: 8px 10px 8px 16px;
  gap: 16px;
  background: var(--light300);
  border-radius: 10px;
}

.add-photo-tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-photo-tit .btn-g {
  border: 1px solid var(--light100);
}

/* 이슈 - 사진 자세히 보기 */
.mwrap .p-content {
  width: 100%;
  height: 100vh;
  background: #000000;
}

.mwrap .p-content > button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.mwrap .p-content > button > span {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  display: inline-block;
}

.mwrap .p-content > button:has(img.ico-prev-w) {
  left: 16px;
}

.mwrap .p-content > button:has(img.ico-next-w) {
  right: 16px;
}

/* 점검 내역 */
.c-detail-gbox {
  background: var(--light300);
  border-radius: 10px;
  padding: 20px 16px;
}

p:has(.c-detail-status) {
  margin-left: 20px;
}

.c-detail-status {
  background: var(--blue50);
  color: var(--blue500);
  padding: 4px 10px;
  border-radius: 10px;
}

/*** 빈 화면 ***/
[class*=empty-] {
  display: flex;
  justify-content: center;
  align-items: center;
}

[class*=empty-] > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

[class*=empty-] > div p {
  text-align: center;
}

/* 회사, 기관 관리, 모달 - 빈 화면 */
.empty-content {
  height: calc(100% - 250px);
  min-height: 200px;
}

.empty-content > div img {
  width: 80px;
  height: 80px;
}

/* 모달 > 아이콘 없는 list 스타일 */
.list-nwrap li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light500);
}

.list-nwrap + .modal-bottom {
  padding: 12px 0;
  border: none;
  display: flex;
  justify-content: flex-end;
}

/* 홈 > 통계 분기별 스와이퍼 스타일 분리 */
swiper-container.quarter-swipe {
  top: 0;
  margin-bottom: 0;
}

swiper-container.quarter-swipe .quarter-month {
  margin-bottom: 12px;
}

swiper-container.quarter-swipe .quarter-dates {
  margin-bottom: 48px;
}

.tab-pane:has(.quarter-wrap) {
  padding: 24px 12px;
}

/*# sourceMappingURL=mobile.css.map */
