/**********************************
* 서버 - 인공지능 학습기록
**********************************/
.ai_study .contents_layout {
  position: relative;
}
.popup_layer {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  position: absolute;
  top: 0;
  /* left: 240px; */
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.popup_layer .loading_box {
  background-color: #fff;
  border-radius: 4px;
  width: 420px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color_405189);
  padding: 40px;
  box-sizing: border-box;
}
.popup_layer .loading_box p {
  font-size: 1.8rem;
}
.popup_layer .loading_box .program_tle {
  border-radius: 4px;
  border: 2px solid var(--color_405189);
  height: 27px;
  width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding: 3px;
}
.popup_layer .loading_box .program_tle .bar_wrap {
  overflow: hidden;
  border-radius: 4px;
}
.popup_layer .loading_box .program_tle .program_bar {
  background-color: var(--color_405189);
  width: 163px;
  height: 17px;
  border-radius: 4px;
  animation-name: program;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  /* animation-delay: 1s; */
  animation-iteration-count: infinite;
  transform: translateX(-164px);
  /* animation-direction: alternate; */
}

@keyframes program {
  from {
    transform: translateX(-164px);
  }
  to {
    transform: translateX(350px);
  }
}
/*********************************
* 서버 - 탐지장비 실시간 운행 현황 리스트
**********************************/
.detection_live_list .contents_layout {
  padding: 25px 25px 0;
}
.detection_live_list .select_frame {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.detection_live_list .select_frame select {
  width: 145px;
  height: 30px;
}

.detection_live_list .page_navi {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.detection_live_list .page_navi .right {
  transform: rotate(180deg);
}

.detection_live_list .card_scroll {
  margin-top: 50px;
  height: calc(100vh - 2.5rem);
}
.detection_live_list .card_frame {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding-bottom: 30px;
  box-sizing: border-box;
  /* margin-top: 57px; */
}
.detection_live_list .card_frame .card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #e9ebec;
  padding: 0 15px 15px;
  cursor: pointer;
  display: block;
}
.detection_live_list .card_frame .card .state_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  height: 25px;
}
.detection_live_list .card_frame .card .live {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #d9d9d9;
}
.detection_live_list .card_frame .card .live.on {
  background-color: #3577f1;
}
.detection_live_list .card_frame .card .live.off {
  background-color: #f06548;
}
.detection_live_list .card_frame .card .img_wrap {
  border-radius: 4px;
  background-color: #d9d9d9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detection_live_list .card_frame .card .img_wrap::before {
  padding-top: 100%;
}
.detection_live_list .card_frame .card .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detection_live_list .card_frame .card .img_wrap img.none {
  width: auto;
  height: auto;
}
.detection_live_list .card_frame .card .text_wrap {
  margin-top: 15px;
  display: grid;
  gap: 10px;
}
.detection_live_list .card_frame .card .text_wrap p {
  color: var(--color_495057);
}
.detection_live_list .card_frame .card .text_wrap p span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detection_live_list .cm_select01.drive {
  width: 100px;
}

.detection_live_list .cm_select01.device {
  width: 180px;
}

.detection_live_list .cm_select01.device.active {
  height: 300px;
  overflow-y: scroll;
}

/**********************************
* 서버 - 탐지장비 실시간 운행 현황 상세보기
**********************************/
.detection_live_view .contents_layout {
  padding: 0 25px 0;
}
.detection_live_view .contents_layout .title {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
  color: var(--color_495057);
}
.detection_live_view .title .data_refresh {
  width: 50px;
  height: 24px;
}
.detection_live_view .contents_layout .cont_frame {
  height: calc(100vh - 44px - 60px);
}
.detection_live_view .contents_layout .cont_frame .img_wrap {
  display: flex;
  gap: 20px;
  height: 40vh;
}
.detection_live_view .contents_layout .cont_frame .img_wrap .road_img {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.detection_live_view .contents_layout .cont_frame .img_wrap .road_img .img_box {
  position: relative;
  height: 100%;
  width: 100%;
}

.detection_live_view
  .contents_layout
  .cont_frame
  .img_wrap
  .road_img
  .img_box
  div {
  width: 100%;
  height: 100%;
}

.detection_live_view
  .contents_layout
  .cont_frame
  .img_wrap
  .road_img
  .img_box
  img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  left: auto;
}

.detection_live_view
  .contents_layout
  .cont_frame
  .img_wrap
  .road_img
  .img_box
  div.loading-spinner {
  width: 50px;
  height: 50px;
}

.detection_live_view
  .contents_layout
  .cont_frame
  .img_wrap
  .road_img
  .img_box
  canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  left: auto;
}

.detection_live_view .contents_layout .cont_frame .table_wrap {
  margin-top: 20px;
  padding-bottom: 20px;
}
.detection_live_view .contents_layout .cont_frame .table_wrap table td {
  height: 155px;
}
.detection_live_view .contents_layout .cont_frame .table_wrap table .img_wrap {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detection_live_view
  .contents_layout
  .cont_frame
  .table_wrap
  table
  .img_wrap
  img {
  width: 126px;
  height: 88px;
}

/**********************************
* 서버 - 탐지장비 비교보기
**********************************/
.compare_live_view {
  overflow: hidden;
}
.compare_live_view .contents_layout {
  padding: 80px 25px 0;
}
.compare_live_view .contents_layout > .title {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
  color: var(--color_495057);
}
.compare_live_view .contents_layout .cont_frame {
  height: calc(100vh - 44px - 60px);
}
.compare_live_view .contents_layout .select_frame {
  display: flex;
  position: absolute;
  top: 25px;
  z-index: 999;
  width: calc(100% - 290px);
  min-width: 1160px;
  gap: 20px;
}
.compare_live_view .contents_layout .select_frame .cm_select01 {
  width: 175px;
  height: fit-content;
  flex: 1;
}
.compare_live_view .contents_layout .select_frame .select_wrap {
  display: flex;
  flex-flow: column nowrap;
  padding: 10px;
  width: 100%;
  border: 1px solid #4679cc;
  background-color: #f2f5ff;
  border-radius: 4px;
  gap: 5px;
}
.compare_live_view .contents_layout .select_frame .select_wrap .top {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.compare_live_view .contents_layout .select_frame .select_wrap .bottom {
  display: flex;
  gap: 10px;
  width: 100%;
}
.compare_live_view .contents_layout .select_frame .select_wrap .csv_down {
  width: 70px;
  height: 32px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
}
.compare_live_view .contents_layout .cont_frame .img_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.compare_live_view .contents_layout .cont_frame .img_wrap.main_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
}
.compare_live_view .contents_layout .cont_frame .img_wrap .road_img {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* max-width: 42%; */
  border-radius: 4px;
  overflow: hidden;
}
.compare_live_view .contents_layout .cont_frame .img_wrap .road_img .title {
  background-color: var(--color_405189);
  color: var(--color_ABB9E8);
  padding: 10px 14px;
  font-weight: 500;
}

.compare_live_view .contents_layout .cont_frame .img_wrap .road_img .img_box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.windowSize {
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: fixed; */
  /* padding-top: 4px; */
}
.windowSize button {
  padding: 3px 5px;
  border-radius: 5px;
  background-color: #4679cc;
  border: 1px solid #4679cc;
  color: #f2f5ff;
}
.windowSize button .eye-off {
  display: none;
}
.windowSize button.active .eye {
  display: none;
}
.windowSize button.active .eye-off {
  display: block;
}
.windowSize button svg {
  width: 14px;
  height: 14px;
}
.windowSize button svg path {
  stroke: #f2f5ff;
  stroke-width: 2;
}
.windowSize button.active svg path {
  stroke: #4679cc;
}
.windowSize button:hover {
  background-color: #d7dffa;
}

.windowSize button.active {
  background-color: #f2f5ff;
  border: 1px solid #4679cc;
}

.compare_live_view
  .contents_layout
  .cont_frame
  .img_wrap
  .road_img
  .img_box
  div {
  width: 100%;
  height: 100%;
}
.compare_live_view
  .contents_layout
  .cont_frame
  .img_wrap
  .road_img
  .img_box
  div.loading-spinner {
  width: 50px;
  height: 50px;
}

.compare_live_view
  .contents_layout
  .cont_frame
  .img_wrap
  .road_img
  .img_box
  img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  left: auto;
}

.compare_live_view
  .contents_layout
  .cont_frame
  .img_wrap
  .road_img
  .img_box
  canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  left: auto;
}

.compare_live_view .contents_layout .cont_frame .table_wrap {
  padding-bottom: 20px;
  height: 100%;
}
.compare_live_view .contents_layout .cont_frame .table_wrap table {
  height: fit-content;

  table-layout: fixed; /* 테이블 고정 레이아웃 */
  width: 100%; /* 예: 전체 폭을 100%로 잡음(상황에 맞춰 조절) */
  border-collapse: collapse; /* 테이블 테두리를 합치는 옵션(선택) */
}

.compare_live_view .contents_layout .cont_frame .table_wrap table td {
  height: 6rem;
  padding: 3px;
}
.compare_live_view .contents_layout .cont_frame .table_wrap table .img_wrap {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare_live_view
  .contents_layout
  .cont_frame
  .table_wrap
  table
  .img_wrap
  img {
  aspect-ratio: 16 / 9;
}

.compare_live_view .popup_layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}
.compare_live_view .popup_layer.active {
  display: flex;
}
.compare_live_view .popup_layer .road_popup {
  position: relative;
  height: 100vh;
}
.compare_live_view .popup_layer .road_popup .img_box {
  background-color: #eee;
  position: relative;
  width: 80vw;
  height: 80vh;
  left: 50%;
  transform: translateX(-50%) translateY(10%);
}
.compare_live_view .popup_layer .road_popup .img_box img {
  width: 100%;
  height: 100%;
}
/* .popup_layer .road_popup .arrow.left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4%;
}
.popup_layer .road_popup .arrow.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4%;
} */
.popup_layer .road_popup .close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
#viewModal {
  display: none;
}
#viewModal .road_popup {
  display: flex;
  justify-content: center;
}
#viewModal .img_box {
  position: relative;
  width: 70%;
}
#viewModal .img_box img {
  width: 100%;
  height: 100%;
}

#compareModal {
  display: none;
}
#compareModal .road_popup {
  display: flex;
  justify-content: center;
}
#compareModal .img_box {
  position: relative;
  width: 90%;
  display: flex;
  gap: 30px;
}
#compareModal .img_box img {
  width: 50%;
  height: 100%;
}

/**********************************
* 서버 - 탐지장비 운행 기록 리스트
**********************************/
.detection_record_list .contents_layout {
  padding: 25px 25px 0;
}
.detection_record_list .contents_layout .export {
  display: flex;
  gap: 10px;
}
.detection_record_list .contents_layout .export button {
  width: 70px;
  height: 32px;
  font-size: 1.3rem;
}
.detection_record_list .contents_layout .frame_scroll {
  margin-top: 40px;
  height: calc(100vh - 8.2rem);
}

.detection_record_list .contents_layout .card_frame {
  display: flex;
  align-items: stretch;
  align-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

.detection_record_list .contents_layout .card_frame .card-container,
.detection_record_list .contents_layout .card_frame .card-container * {
  box-sizing: border-box;
}

.detection_record_list .contents_layout .card_frame .card-container {
  width: calc(100% / 4 - 10px);

  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

@media screen and (max-width: 1500px) {
  .detection_record_list .contents_layout .card_frame .card-container {
    width: calc(100% / 3 - 10px);
  }
}

.detection_record_list .contents_layout .card_frame .card-wrapper {
  width: 100%;
  background: #f2f5ff;
  border-radius: 4px;
  border-style: solid;
  border-color: #abb9e8;
  border-width: 1px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.detection_record_list
  .contents_layout
  .card_frame
  .card-container.not-renewal-kict-device {
  width: 100%;
}
.detection_record_list
  .contents_layout
  .card_frame
  .card-container.not-renewal-kict-device
  .card-wrapper {
  flex-direction: row;
}

.detection_record_list
  .contents_layout
  .card_frame
  .card-container.not-renewal-kict-device
  .card-item {
  width: calc(100% / 4 - 10px);
}

.detection_record_list .contents_layout .card_frame .card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  height: 24px;
  position: relative;
  width: 100%;
}

.detection_record_list .contents_layout .card_frame .card-title {
  color: #405189;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detection_record_list .contents_layout .card_frame .card-download {
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 24px;
  position: relative;
  overflow: hidden;
}

.detection_record_list .contents_layout .card_frame .card-download-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
  overflow: visible;
}

.detection_record_list
  .contents_layout
  .card_frame
  .card-image-download-button {
  color: #405189;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 12px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detection_record_list .contents_layout .card_frame .card-item {
  display: flex;

  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

/* .detection_record_list .contents_layout .card_frame .card-item.w-full {
  width: 100%;
} */

.detection_record_list .contents_layout .card_frame .card-content {
  background: #ffffff;
  border-radius: 4px;
  border-style: solid;
  border-color: #abb9e8;
  border-width: 1px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.detection_record_list .contents_layout .card_frame .card-content-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.detection_record_list .contents_layout .card_frame .card-device-name {
  color: #000000;
  text-align: center;
  font-family: "NotoSansKr-Bold", sans-serif;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detection_record_list .contents_layout .card_frame .card-detail-btn {
  background: #f2f5ff;
  border-radius: 4px;
  border-style: solid;
  border-color: #abb9e8;
  border-width: 1px;
  padding: 0px 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 24px;
  position: relative;
  overflow: hidden;
}

.detection_record_list .contents_layout .card_frame .card-detail-text {
  color: #494949;
  text-align: center;
  font-family: "NotoSansKr-Medium", sans-serif;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  width: 52px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detection_record_list .contents_layout .card_frame .card-content-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.detection_record_list .contents_layout .card_frame .card-stats {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.detection_record_list .contents_layout .card_frame .card-stat-item {
  color: #000000;
  text-align: left;
  font-family: "-", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
}

.detection_record_list .contents_layout .card_frame .card-stat-label {
  color: #000000;
  font-family: "NotoSansKr-Regular", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
}

.detection_record_list .contents_layout .card_frame .card-stat-value {
  color: #000000;
  font-family: "NotoSansKr-Bold", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 700;
}

.detection_record_list .contents_layout .card_frame .card-stat-unit {
  color: #000000;
  font-family: "NotoSansKr-Regular", sans-serif;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
}

/**********************************
* 서버 - 탐지장비 운행 기록 뷰페이지
**********************************/
.detection_record_view .contents_layout {
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.detection_record_view .contents_layout .header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.detection_record_view .btn_frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.detection_record_view .btn_frame .btn_wrap {
  display: flex;
  gap: 10px;
}

.detection_record_view .contents_layout .map_frame {
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
  /* box-shadow: 0 1px 1px rgba(0,0,0,0.25); */
}
.detection_record_view .contents_layout .map_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detection_record_view .contents_layout .list_frame .title {
  color: var(--color_495057);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0 20px;
}
.detection_record_view .contents_layout .list_frame .table_tbody {
  height: calc(100vh - 15rem);
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
}
.detection_record_view
  .contents_layout
  .list_frame
  .table_tbody
  tr:first-child
  td {
  border-top: 0;
  border-radius: 0;
}
.detection_record_view
  .contents_layout
  .list_frame
  .table_tbody
  tr:last-child
  td {
  border-bottom: 0;
}
.detection_record_view .contents_layout .list_frame .table_tbody tr {
  height: 40px;
  color: #494949;
}
.detection_record_view .contents_layout .list_frame .table_tbody tr.active {
  background-color: var(--color_F2F5FF);
  color: #3577f1;
  cursor: pointer;
}
.detection_record_view .contents_layout .list_frame .table_tbody tr:hover {
  background-color: var(--color_F2F5FF);
  color: #3577f1;
  cursor: pointer;
}

/**********************************
* 포트홀 - 포트홀 현황
**********************************/
.pothole_status .contents_layout {
  padding: 25px 25px 0;
  position: relative;
}
.pothole_status .contents_layout .cm_scroll01 {
  height: calc(100vh - 11.1rem);
}
.pothole_status .contents_layout .cm_search_frame {
  width: calc(100% - 50px);
  justify-content: space-between;
  align-items: center;
}

.pothole_status .contents_layout .list_wrap .title_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 41px 0 15px;
  color: #494949;
}
.pothole_status .contents_layout .list_wrap .title_wrap .left_frame {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .radio_wrap {
  display: flex;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .radio_wrap
  input {
  display: none;
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .radio_wrap
  label {
  width: auto;
  height: 30px;
  padding: 0 20px;
  color: var(--color_495057);
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--color_E9EBEC);
  cursor: pointer;
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .radio_wrap
  label:hover {
  color: var(--color_4679CC);
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .radio_wrap
  input:checked
  + label {
  background-color: var(--color_4679CC);
  color: var(--color_E9EBEC);
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .radio_wrap
  label:last-child {
  border: 0;
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .radio_wrap
  label:last-child:hover {
  color: orange;
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .radio_wrap
  input:checked
  + label:last-child {
  background-color: orange;
  color: #fff;
}

.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .count_wrap {
  display: flex;
  gap: 10px;
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .count_wrap
  p {
  padding: 4px 6px;
  border-radius: 4px;
  background-color: var(--color_F3F3F9);
  font-weight: 600;
}
.pothole_status
  .contents_layout
  .list_wrap
  .title_wrap
  .left_frame
  .count_wrap
  p
  span {
  font-weight: 400;
}
.pothole_status .contents_layout .list_wrap .title_wrap .page_navi {
  display: flex;
  gap: 10px;
}
.pothole_status .contents_layout .list_wrap .title_wrap .page_navi .right {
  transform: rotate(180deg);
}
.pothole_status .contents_layout .list_wrap .table_wrap {
  color: #494949;
  padding-bottom: 25px;
}
.pothole_status .contents_layout .list_wrap .table_wrap tbody tr:hover {
  background-color: var(--color_F2F5FF);
}
.pothole_status .contents_layout .list_wrap .table_wrap tbody td {
  height: 175px;
}
.pothole_status .contents_layout .list_wrap .table_wrap tbody td p {
  line-height: 1.4;
}
.pothole_status .contents_layout .list_wrap .table_wrap tbody td .img_box {
  background-color: #eee;
  width: 238px;
  height: 158px;
  border-radius: 4px;
  cursor: pointer;
}
.pothole_status .contents_layout .list_wrap .table_wrap tbody td .img_box img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}
.pothole_status .contents_layout .list_wrap .table_wrap tbody td button {
  display: inherit;
}

.pothole_status .contents_layout .popup_layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}
.pothole_status .contents_layout .popup_layer.active {
  display: flex;
}
.pothole_status .contents_layout .popup_layer .road_popup {
  position: relative;
  height: 100vh;
}
.pothole_status .contents_layout .popup_layer .road_popup .img_box {
  background-color: #eee;
  position: relative;
  width: 80vw;
  height: 80vh;
  left: 50%;
  transform: translateX(-50%) translateY(10%);
}
.pothole_status .contents_layout .popup_layer .road_popup .img_box img {
  width: 100%;
  height: 100%;
}
.pothole_status .contents_layout .popup_layer .road_popup .arrow.left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4%;
}
.pothole_status .contents_layout .popup_layer .road_popup .arrow.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4%;
}
.pothole_status .contents_layout .popup_layer .road_popup .close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
.pothole_status .contents_layout .popup_layer .delete_popup .title {
  height: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pothole_status .contents_layout .popup_layer .delete_popup {
  width: 420px;
  background-color: #f1f5ff;
  border-radius: 4px;
  overflow: hidden;
  color: #494949;
}
.pothole_status .contents_layout .popup_layer .delete_popup .title {
  height: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}
.pothole_status .contents_layout .popup_layer .delete_popup .ment {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: 494949;
}
.pothole_status .contents_layout .popup_layer .delete_popup .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 30px;
}
.pothole_status .contents_layout .popup_layer .delete_popup .btn_wrap button {
  width: 110px;
  height: 32px;
}
.pothole_status
  .contents_layout
  .popup_layer
  .delete_popup
  .btn_wrap
  button.cancel {
  border: 1px solid var(--color_E9EBEC);
}

/* 리뉴얼 포트홀 검수 */

.renewal_pothole_inspection_view .contents_layout {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.renewal_pothole_inspection_view .contents_layout .bottom_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.renewal_pothole_inspection_view #zoom {
  width: 110%;
  height: 100%;
}

.renewal_pothole_inspection_view .bottom_wrap #img_wrap {
  position: relative;
  width: 95%;
  height: 55rem;
  margin: 0 auto;
}

.renewal_pothole_inspection_view
  .contents_layout
  .bottom_wrap
  #img_wrap
  #inspection_img {
  position: absolute;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
}

.renewal_pothole_inspection_view
  .contents_layout
  .bottom_wrap
  #img_wrap
  canvas {
  position: absolute;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
}

.renewal_pothole_inspection_view .btn_frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.renewal_pothole_inspection_view .btn_frame .btn_wrap {
  display: flex;
  gap: 10px;
}

.renewal_pothole_inspection_view .btn_frame .btn_wrap.setting_wrap button {
  width: 70px;
  height: 32px;
}

.renewal_pothole_inspection_view .cont_wrap {
  display: flex;
  gap: 20px;
  height: 85vh;
}
.renewal_pothole_inspection_view .list_frame {
  width: 40%;
}

.renewal_pothole_inspection_view .text_wrap {
  p {
    color: #000;
    font-family: "Noto Sans KR";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 153.846% */

    .red {
      color: #ff2929;
    }
  }
}

.renewal_pothole_inspection_view
  .list_frame
  .cm_table01
  .table_th
  th:last-child {
  border-radius: 4px;
  text-align: left;
  padding-left: 15px;
}
.renewal_pothole_inspection_view .list_frame .table_wrap.photo .cm_table01 {
  border-spacing: 0 10px;
}
.renewal_pothole_inspection_view .list_frame .table_wrap.photo .cm_table01 td {
  height: 55px;
  text-align: left;
  color: #6d7080;
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.photo
  .cm_table01
  tbody
  tr
  td {
  border-top: 1px solid var(--color_E9EBEC);
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.photo
  tbody
  tr
  td:first-child {
  padding-left: 15px;
  color: var(--color_495057);
  border-radius: 4px 0 0 4px;
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.photo
  .cm_table01
  tbody
  tr
  td:last-child {
  border-radius: 0 4px 4px 0;
}
.renewal_pothole_inspection_view .list_frame .scroll_wrap {
  overflow: auto;
  height: calc(100vh - 44px - 50px - 52px - 240px);
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01.table_tbody {
  border-collapse: collapse;
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  tbody
  tr:first-child
  td:first-child {
  border-radius: 0;
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  tbody
  tr:first-child
  td:last-child {
  border-radius: 0;
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  tbody
  tr:not(:first-child)
  td {
  border-top: 1px solid var(--color_E9EBEC);
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  tbody
  tr
  td {
  height: 65px;
  border-left: 0;
  border-bottom: 0;
  border-top: 0;
}
.renewal_pothole_inspection_view .list_frame .table_wrap.object .cm_table01 p {
  text-align: left;
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  .text_wrap {
  display: flex;
}
.renewal_pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  .text_wrap
  p {
  margin-right: 10px;
  margin-top: 10px;
  color: #6d7080;
  text-align: left;
}
.renewal_pothole_inspection_view .list_frame .table_wrap.object .cm_table01 td {
  padding: 0 15px;
}
.renewal_pothole_inspection_view .img_frame {
  width: 60%;

  position: relative;
  /* margin-top: 10px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    height: calc(100vh - 44px - 50px - 42px - 20px);
    position: relative; */
}
/* .renewal_pothole_inspection_view .img_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.renewal_pothole_inspection_view .img_frame #canvas_panel {
  z-index: 10;
  /* top: -100%; */
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.renewal_pothole_inspection_view .img_frame #canvas_panel canvas {
  /* top: -100%; */
  position: relative;
  width: 100%;
  height: 100%;
}

.renewal_pothole_inspection_view .img_frame #canvas_panel canvas:first-child {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.renewal_pothole_inspection_view .img_frame #canvas_panel canvas:last-child {
  /* top: -200%; */
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.renewal_pothole_inspection_view .cm_table01 th,
.renewal_pothole_inspection_view .cm_table01 td,
.renewal_pothole_inspection_view .cm_table01 p,
.renewal_pothole_inspection_view .cm_table01 span {
  font-size: 16px;
}

/**********************************
* 탐지장비 승인
**********************************/
.roadkeeper_approval_login .contents_layout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100vh;
}
.roadkeeper_approval_login .contents_layout .search_box {
  border: 1px solid var(--color_E9EBEC);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
}
.roadkeeper_approval_login .contents_layout .search_box .input_frame {
  display: flex;
  gap: 25px;
  margin-bottom: 15px;
}
.roadkeeper_approval_login .contents_layout .search_box .input_wrap {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}
.roadkeeper_approval_login .contents_layout .search_box .input_wrap input {
  width: 250px;
  height: 40px;
  border: 1px solid var(--color_E9EBEC);
  padding-left: 10px;
  border-radius: 4px;
}
.roadkeeper_approval_login .contents_layout .search_box p {
  color: #494949;
  font-weight: 500;
}
.roadkeeper_approval_login .contents_layout .search_box .btn_wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roadkeeper_approval_login .contents_layout .search_box .btn_wrap .search_btn {
  width: 260px;
  height: 40px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

/**********************************
* 탐지장비 리스트
**********************************/
.roadkeeper_approval_list .contents_layout {
  padding: 25px 25px 0;
  position: relative;
}

.roadkeeper_approval_list .select_frame {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.roadkeeper_approval_list .select_frame select {
  width: 200px;
  height: 30px;
}

.roadkeeper_approval_list .contents_layout .cm_scroll01 {
  height: calc(100vh - 11.1rem);
  margin-top: 50px;
}
.roadkeeper_approval_list .contents_layout .cm_search_frame {
  justify-content: flex-start;
}
.roadkeeper_approval_list .contents_layout .list_wrap .title_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 57px 0 15px;
  color: #494949;
}
.roadkeeper_approval_list .contents_layout .list_wrap .title_wrap .page_navi {
  display: flex;
  gap: 10px;
}
.roadkeeper_approval_list
  .contents_layout
  .list_wrap
  .title_wrap
  .page_navi
  .right {
  transform: rotate(180deg);
}
.roadkeeper_approval_list .contents_layout .list_wrap .table_wrap {
  color: #494949;
  padding-bottom: 25px;
}
.roadkeeper_approval_list
  .contents_layout
  .list_wrap
  .table_wrap
  tbody
  tr:hover {
  background-color: var(--color_F2F5FF);
}
.roadkeeper_approval_list .contents_layout .list_wrap .table_wrap tbody td {
  height: 50px;
}
.roadkeeper_approval_list .contents_layout .list_wrap .table_wrap tbody td p {
  line-height: 1.4;
}
.roadkeeper_approval_list
  .contents_layout
  .list_wrap
  .table_wrap
  tbody
  td
  .img_box {
  background-color: #eee;
  width: 238px;
  height: 158px;
  border-radius: 4px;
  cursor: pointer;
}
.roadkeeper_approval_list
  .contents_layout
  .list_wrap
  .table_wrap
  tbody
  td
  .img_box
  img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}
.roadkeeper_approval_list
  .contents_layout
  .list_wrap
  .table_wrap
  tbody
  td
  button {
  display: inherit;
}

.roadkeeper_approval_list .contents_layout .popup_layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}
.roadkeeper_approval_list .contents_layout .popup_layer.active {
  display: flex;
}
.roadkeeper_approval_list .contents_layout .popup_layer .road_popup {
  position: relative;
  height: 100vh;
}
.roadkeeper_approval_list .contents_layout .popup_layer .road_popup .img_box {
  background-color: #eee;
  position: relative;
  width: 80vw;
  height: 80vh;
  left: 50%;
  transform: translateX(-50%) translateY(10%);
}
.roadkeeper_approval_list
  .contents_layout
  .popup_layer
  .road_popup
  .img_box
  img {
  width: 100%;
  height: 100%;
}
.roadkeeper_approval_list
  .contents_layout
  .popup_layer
  .road_popup
  .arrow.left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4%;
}
.roadkeeper_approval_list
  .contents_layout
  .popup_layer
  .road_popup
  .arrow.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4%;
}
.roadkeeper_approval_list .contents_layout .popup_layer .road_popup .close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
.roadkeeper_approval_list .contents_layout .popup_layer .delete_popup .title {
  height: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.roadkeeper_approval_list .contents_layout .popup_layer .delete_popup {
  width: 420px;
  background-color: #f1f5ff;
  border-radius: 4px;
  overflow: hidden;
  color: #494949;
}
.roadkeeper_approval_list .contents_layout .popup_layer .delete_popup .title {
  height: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}
.roadkeeper_approval_list .contents_layout .popup_layer .delete_popup .ment {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: 494949;
}
.roadkeeper_approval_list
  .contents_layout
  .popup_layer
  .delete_popup
  .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 30px;
}
.roadkeeper_approval_list
  .contents_layout
  .popup_layer
  .delete_popup
  .btn_wrap
  button {
  width: 110px;
  height: 32px;
}
.roadkeeper_approval_list
  .contents_layout
  .popup_layer
  .delete_popup
  .btn_wrap
  button.cancel {
  border: 1px solid var(--color_E9EBEC);
}

/**********************************
* 포트홀 - 포트홀 검수 검색
**********************************/
.pothole_inspection_search .contents_layout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 100vh;
}
.pothole_inspection_search .contents_layout .search_box {
  border: 1px solid var(--color_E9EBEC);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
}
.pothole_inspection_search .contents_layout .search_box .input_frame {
  display: flex;
  gap: 25px;
  margin-bottom: 15px;
}
.pothole_inspection_search .contents_layout .search_box .input_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.pothole_inspection_search .contents_layout .search_box .input_wrap input {
  width: 50px;
  height: 20px;
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
}
.pothole_inspection_search .contents_layout .search_box p {
  color: #494949;
  font-weight: 500;
}
.pothole_inspection_search .contents_layout .search_box .btn_wrap {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pothole_inspection_search .contents_layout .search_box .btn_wrap .search_btn {
  width: 150px;
  height: 30px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

/**********************************
* 포트홀 - 포트홀 검수 리스트
**********************************/
.pothole_inspection_list .contents_layout {
  position: relative;
}
.pothole_inspection_list .contents_layout .fixed_search {
  padding: 0 25px;
  box-sizing: border-box;
  height: 87px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  /* position: fixed; */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}
.pothole_inspection_list .contents_layout .fixed_search .leftover_title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.pothole_inspection_list .contents_layout .fixed_search p {
  color: #494949;
}
.pothole_inspection_list .contents_layout .fixed_search .cm_search_frame {
  width: calc(100% - 50px);
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 5.5px;
  z-index: 999;
  gap: 16px;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .cm_search_frame
  .cm_select01.list {
  position: relative;
  width: 170px;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .cm_search_frame
  .pagination-wrap {
  width: auto;
  display: flex;
  align-items: center;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .cm_search_frame
  .pagination-wrap
  button
  img {
  width: 18px;
  height: 18px;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .cm_search_frame
  .pagination-wrap
  .page-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .cm_search_frame
  .pagination-wrap
  .page-wrap
  button {
  padding: 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .cm_search_frame
  .pagination-wrap
  .page-wrap
  button
  p {
  font-weight: 400;
  line-height: 18px;
  color: #6d7080;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .cm_search_frame
  .pagination-wrap
  .page-wrap
  button.active
  p {
  color: #3577f1;
  font-weight: 700;
}
.pothole_inspection_list .contents_layout .fixed_search .search_frame {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pothole_inspection_list .contents_layout .fixed_search .search_frame .l_frame {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .btns_wrap {
  display: flex;
  background-color: #fff;
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .btns_wrap.disabled {
  filter: grayscale(100);
  pointer-events: none;
  cursor: no-drop;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .btns_wrap
  button {
  width: 90px;
  height: 30px;
  color: var(--color_495057);
  white-space: nowrap;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .btns_wrap
  button.active {
  background-color: var(--color_4679CC);
  color: #fff;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .btns_wrap
  button:hover {
  color: var(--color_4679CC);
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .btns_wrap
  button.active:hover {
  color: #fff;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .btns_wrap
  button:not(:first-child) {
  border-left: 1px solid var(--color_E9EBEC);
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .result_wrap {
  display: flex;
  gap: 16px;
  font-weight: 700;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_frame
  .l_frame
  .result_wrap
  p
  span {
  font-weight: 400;
}
.pothole_inspection_list .contents_layout .fixed_search .search_wrap {
  position: relative;
  top: 0;
  display: flex;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_wrap
  .input_wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_wrap
  .input_wrap:first-child {
  margin-right: 25px;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_wrap
  .input_wrap
  input {
  background-color: var(--color_F2F5FF);
  border: 1px solid var(--color_E9EBEC);
  width: 60px;
  border-radius: 4px;
  height: 32px;
  text-align: center;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .search_wrap
  .search_btn {
  width: 120px;
}
.pothole_inspection_list .contents_layout .fixed_search .btn_wrap {
  position: relative;
  display: flex;
  gap: 10px;
}
.pothole_inspection_list .contents_layout .fixed_search .btn_wrap button {
  width: 70px;
  height: 32px;
}
.pothole_inspection_list
  .contents_layout
  .fixed_search
  .btn_wrap
  button.disabled {
  filter: grayscale(100);
  pointer-events: none;
  cursor: no-drop !important;
}
.pothole_inspection_list .contents_layout .card_frame {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 25px;
  height: calc(100vh - 13.7rem);
}

.pothole_inspection_list .contents_layout .card_frame2 {
  display: grid;
  gap: 20px;
  padding: 25px;
  height: calc(100vh - 13.7rem);
  align-items: start;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 228.11px;
}
.pothole_inspection_list .contents_layout .card_frame .card {
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.pothole_inspection_list .contents_layout .card_frame .card .img_wrap {
  max-height: 215px;
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
}
.pothole_inspection_list .contents_layout .card_frame .card .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pothole_inspection_list .contents_layout .card_frame .card .btn_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.pothole_inspection_list .contents_layout .card_frame .card .btn_wrap button {
  height: 32px;
}

.pothole_inspection_list .contents_layout .card_frame2 .card {
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.pothole_inspection_list .contents_layout .card_frame2 .card .img_wrap2 {
  min-height: 165px;
  /*max-height: 215px;*/
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
}
.pothole_inspection_list .contents_layout .card_frame2 .card .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pothole_inspection_list .contents_layout .card_frame2 .card .btn_wrap {
  width: 100%;
  display: flex;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 10px;
  margin-top: 10px;
}
.pothole_inspection_list .contents_layout .card_frame2 .card .btn_wrap button {
  width: 50%;
  height: 32px;
}
.pothole_inspection_list
  .contents_layout
  .card_frame2
  .card
  .btn_wrap
  button
  svg {
  width: 18px;
  height: 18px;
}
.pothole_inspection_list
  .contents_layout
  .card_frame2
  .card
  .btn_wrap
  button
  svg
  path {
  stroke-width: 2.4;
}
.pothole_inspection_list
  .contents_layout
  .card_frame2
  .card
  .btn_wrap
  .btnO
  svg,
.pothole_inspection_list
  .contents_layout
  .card_frame2
  .card
  .btn_wrap
  .resolveBtn
  svg {
  width: 16px;
  height: 16px;
}
.pothole_inspection_list
  .contents_layout
  .card_frame2
  .card
  .btn_wrap
  .result_box {
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/**********************************
* 포트홀 - 포트홀 검수 상세보기
**********************************/
.pothole_inspection_view .contents_layout {
  padding: 25px;
}

.pothole_inspection_view .btn_frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.pothole_inspection_view .btn_frame .btn_wrap {
  display: flex;
  gap: 10px;
}

.pothole_inspection_view .cont_wrap {
  display: flex;
  gap: 20px;
  height: 85vh;
}
.pothole_inspection_view .list_frame {
  width: 40%;
}
.pothole_inspection_view .list_frame .cm_table01 .table_th th:last-child {
  border-radius: 4px;
  text-align: left;
  padding-left: 15px;
}
.pothole_inspection_view .list_frame .table_wrap.photo .cm_table01 {
  border-spacing: 0 10px;
}
.pothole_inspection_view .list_frame .table_wrap.photo .cm_table01 td {
  height: 50px;
  text-align: left;
  color: #6d7080;
}
.pothole_inspection_view .list_frame .table_wrap.photo .cm_table01 tbody tr td {
  border-top: 1px solid var(--color_E9EBEC);
}
.pothole_inspection_view .list_frame .table_wrap.photo tbody tr td:first-child {
  padding-left: 15px;
  color: var(--color_495057);
  border-radius: 4px 0 0 4px;
}
.pothole_inspection_view
  .list_frame
  .table_wrap.photo
  .cm_table01
  tbody
  tr
  td:last-child {
  border-radius: 0 4px 4px 0;
}
.pothole_inspection_view .list_frame .scroll_wrap {
  overflow: auto;
  height: calc(100vh - 44px - 50px - 52px - 240px);
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
}
.pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01.table_tbody {
  border-collapse: collapse;
}
.pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  tbody
  tr:first-child
  td:first-child {
  border-radius: 0;
}
.pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  tbody
  tr:first-child
  td:last-child {
  border-radius: 0;
}
.pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  tbody
  tr:not(:first-child)
  td {
  border-top: 1px solid var(--color_E9EBEC);
}
.pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  tbody
  tr
  td {
  height: 65px;
  border-left: 0;
  border-bottom: 0;
  border-top: 0;
}
.pothole_inspection_view .list_frame .table_wrap.object .cm_table01 p {
  text-align: left;
}
.pothole_inspection_view .list_frame .table_wrap.object .cm_table01 .text_wrap {
  display: flex;
}
.pothole_inspection_view
  .list_frame
  .table_wrap.object
  .cm_table01
  .text_wrap
  p {
  margin-right: 10px;
  margin-top: 10px;
  color: #6d7080;
  text-align: left;
}
.pothole_inspection_view .list_frame .table_wrap.object .cm_table01 td {
  padding: 0 15px;
}
.pothole_inspection_view .img_frame {
  width: 60%;

  position: relative;
  /* margin-top: 10px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    height: calc(100vh - 44px - 50px - 42px - 20px);
    position: relative; */
}
/* .pothole_inspection_view .img_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.pothole_inspection_view .img_frame #canvas_panel {
  z-index: 10;
  /* top: -100%; */
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.pothole_inspection_view .img_frame #canvas_panel canvas {
  /* top: -100%; */
  position: relative;
  width: 100%;
  height: 100%;
}

.pothole_inspection_view .img_frame #canvas_panel canvas:first-child {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.pothole_inspection_view .img_frame #canvas_panel canvas:last-child {
  /* top: -200%; */
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.pothole_inspection_view .cm_table01 th,
.pothole_inspection_view .cm_table01 td,
.pothole_inspection_view .cm_table01 p,
.pothole_inspection_view .cm_table01 span {
  font-size: 16px;
}
/**********************************
* 통계 - 당일 데이터 수신현황
**********************************/
.data_reception .contents_layout {
  padding: 25px;
}
.data_reception .graph_frame {
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
  height: 300px;
}
.data_reception .table_wrap .cm_table01 td {
  height: 40px;
}
.data_reception .data_table {
  display: grid;
  gap: 10px;
  margin: 0 0 25px 0;
}
.data_reception .data_table .table_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.data_reception .data_table .title {
  height: 40px;
  border-radius: 4px;
  background-color: var(--color_F2F5FF);
  border: 1px solid var(--color_ABB9E8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color_4679CC);
}
.data_reception .data_table .cont {
  border: 1px solid var(--color_ABB9E8);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494949;
}
.data_reception .scroll_wrap {
  height: calc(100vh - 27.5rem);
  border-radius: 4px;
  border: 1px solid var(--color_E9EBEC);
}
.data_reception .scroll_wrap .cm_table01 td {
  border-top: 0;
  border-left: 0;
  height: 41px;
}
.data_reception .scroll_wrap .cm_table01 tr:last-child td {
  border-bottom: 0;
}
.data_reception .scroll_wrap .cm_table01 tbody tr:first-child td:last-child,
.data_reception .scroll_wrap .cm_table01 tbody tr:last-child td:last-child {
  border-radius: 0;
}

/**********************************
* 통계 - 당일 데이터 수신현황
**********************************/
.keeper_rate .contents_layout {
  padding: 25px;
}
.keeper_rate .card_frame {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  gap: 20px;
}
.keeper_rate .card_frame .card {
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid var(--color_E9EBEC);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12.3vw;
  box-sizing: border-box;
}
.keeper_rate .card_frame .card .text_wrap {
  margin-right: 30px;
}
.keeper_rate .card_frame .card .text_wrap p {
  color: #3577f1;
  font-size: 2rem;
  font-weight: 500;
}
.keeper_rate .card_frame .card .text_wrap p.off {
  color: #494949;
}
.keeper_rate .card_frame .card .text_wrap p.rate {
  color: var(--color_ABB9E8);
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: 400;
}
