@charset "utf-8";


.box_content_item {
  	position: relative;
  	width: 100%;
	display: flex;
  	flex-direction: column;
  	gap: 20px;
}

.box_content_item .item_content table td {
    color: #000;
	white-space: nowrap;
}
.item_content.table_wrap table thead {
    color: #fff;
  	border-top: 0;
  	background-color: var(--color-forest-green);
}
.item_content.table_wrap table th:not(:first-of-type){
  border: 1px solid #DBDBDB;
}
.item_content.table_wrap table td:not(:first-child):not(:last-child) {
  border: 1px solid #DBDBDB;
}
.item_content.table_wrap table .sub-row th {
  border: 1px solid #dbdbdb;
}

/* ===================== */
/* 범례 스타일 */
/* ===================== */
.legend-wrap {
  padding: 20px 30px;
  background-color: #fff;
  border:1px solid var(--color-sun-yellow);
  border-radius: 10px;
}
.legend-section {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}
.legend-section + .legend-section {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #ddd;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
}
.legend-item .icon-sm {
  display: inline-block;
  width: 40px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.legend-item .icon-sm.ic_arrow_up {
  background-image: url("/cmm/file/seeImage?atchFileId=FILE_000000000002298&fileSn=0");
}
.legend-item .icon-sm.ic_arrow_down {
  background-image: url("/cmm/file/seeImage?atchFileId=FILE_000000000002300&fileSn=0");
}
.legend-item .icon-sm.ic_arrow_straight {
  background-image: url("/cmm/file/seeImage?atchFileId=FILE_000000000002301&fileSn=0");
}
.legend-item .icon-sm.ic_traffic_green {
  background-image: url("/cmm/file/seeImage?atchFileId=FILE_000000000002303&fileSn=0");
}
.legend-item .icon-sm.ic_traffic_black {
  background-image: url("/cmm/file/seeImage?atchFileId=FILE_000000000002302&fileSn=0");
}
.legend-item .icon-sm.ic_traffic_red {
  background-image: url("/cmm/file/seeImage?atchFileId=FILE_000000000002304&fileSn=0");
}
.legend-item .bullet {
  color: #999;
  font-weight: bold;
}


@media (max-width: 768px) {
  .legend-wrap {
  	padding: 15px 20px;
  }
}


@media (max-width: 450px) {
  .legend-wrap {
  	padding: 10px 15px;
  }
}