.val-increase {
  color: red;
  font-weight: bold;
}

.val-decrease {
  color: #0070C0;
  font-weight: bold;
}

body .datatable-pagination .datatable-active a, body .datatable-pagination .datatable-active a:focus, body .datatable-pagination .datatable-active a:hover, body .datatable-pagination .datatable-active button, body .datatable-pagination .datatable-active button:focus, body .datatable-pagination .datatable-active button:hover {
  background-color: transparent;
  font-weight: 700;
}

.report-download {
  display: inline-flex;
  gap: 5px;
}

.view-pdf, .data-rule {
  margin-top: 20px;
  border: 1px solid #333;
  padding: 10px;
  display: flex;
  gap: 5px;
  max-width: 200px;
  align-items: center;
  height: 41px;
}

.vehicle-user-report-page .myChart {
  display: inline-block;
  position: relative;
  width: 154px;
  height: 154px;
}
.vehicle-user-report-page .chart-container {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}
.vehicle-user-report-page .top-tap-nav-wrap > ul {
  display: grid;
  grid-template-columns: repeat(2, 230px);
}
.vehicle-user-report-page .d-stats-layout {
  padding: 50px 20px;
  position: relative;
}
.vehicle-user-report-page .d-stats-layout .view-pdf {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #000;
}
.vehicle-user-report-page .d-stats-layout > h2 {
  font-size: 20px;
  color: #000;
  border-bottom: 2px solid #333;
  position: relative;
  padding-bottom: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
}
.vehicle-user-report-page .d-stats-layout > h2::before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  background: #000;
  height: 70%;
  left: 0;
}
.vehicle-user-report-page .d-stats-layout h3 {
  margin-top: 30px;
}
.vehicle-user-report-page .d-stats-layout h3 span {
  font-size: 18px;
  color: #000;
}
.vehicle-user-report-page .d-stats-layout .item {
  margin-bottom: 80px;
}
.vehicle-user-report-page .d-stats-layout .big-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000;
}

@keyframes cycling {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.creating-pdf-box.on .creating-pdf {
  width: 100%;
  text-align: center;
}
.creating-pdf-box.on .creating-pdf svg {
  animation: cycling 1s steps(6) infinite;
  margin-right: 5px;
}
.creating-pdf-box.on .creating-pdf #creating-pdf-download {
  margin: 0 auto;
}

.search-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.search-container input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.search-container button {
  margin-left: 10px;
  padding: 8px 16px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.search-container button:hover {
  background-color: #0056b3;
}

.static-report-month-append {
  grid-area: 1/1/1/3;
}
.static-report-month-append .month-date {
  height: 25px;
  border: 1px solid #c0c0c0;
  padding: 0 30px 0 10px;
  background: #FFF url("/common/images/cal2.jpg") no-repeat right center/28px 25px;
  font-size: 12px;
  text-align: left;
}

#contents-page #select-month {
  background: #fff;
  width: 400px;
  height: auto;
  padding: 50px 50px 70px;
  box-shadow: 1px 1px 10px #eee;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
#contents-page #select-month .dialog-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#contents-page #select-month .select-month-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
#contents-page #select-month .select-month-left label {
  display: flex;
  gap: 10px;
  cursor: pointer;
}
#contents-page #select-month .select-month-left label:hover {
  opacity: 0.9;
}
#contents-page #select-month .select-month-left label.d-none {
  display: none;
}
#contents-page #select-month .select-month-right {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: -7px;
}
#contents-page #select-month .select-month-right .select-year {
  align-items: center;
  gap: 20px;
  padding-bottom: 15px;
}
#contents-page #select-month .select-month-right .select-year > button {
  cursor: pointer;
}
#contents-page #select-month .select-month-right .select-year > button:hover {
  opacity: 0.9;
}
#contents-page #select-month .select-month-right .select-month {
  display: grid;
  min-height: 80%;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
#contents-page #select-month .select-month-right .select-month > .select-month-item {
  cursor: pointer;
}
#contents-page #select-month .select-month-right .select-month > .select-month-item.selected {
  color: #e60012;
}
#contents-page #select-month .select-month-right .select-month > .select-month-item:hover {
  opacity: 0.9;
}
#contents-page #select-month input[type=radio].select-season {
  min-width: auto;
  height: 100%;
}

.static-report-page {
  display: grid;
  grid-template-columns: 2fr 7fr;
}
@media (max-width: 1600px) {
  .static-report-page {
    grid-template-columns: 1fr 4fr;
  }
}
.static-report-page .contents-page-left {
  padding: 30px 10px;
}
.static-report-page .contents-page-left li {
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
}
.static-report-page .contents-page-left li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  background: #ddd;
  height: 100%;
  content: "";
  display: block;
}
.static-report-page .contents-page-left li.on {
  font-weight: 700;
}
.static-report-page .contents-page-left li.on::before {
  background: #e60012;
}
.static-report-page .contents-page-right {
  height: calc(100vh - 220px);
  overflow-y: scroll;
  padding: 0 40px 40px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  scroll-behavior: smooth;
}
.static-report-page .contents-page-right .right-no-item {
  text-align: center;
  padding: 40px 0;
  font-size: 17px;
  color: #555;
}
.static-report-page .contents-page-right .mid-section {
  padding-top: 40px;
  padding-bottom: 50px;
}
.static-report-page .contents-page-right .mid-section .sub-section {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.static-report-page .contents-page-right .mid-section .sub-section .chart {
  border: 1px solid #e3e3e3;
  margin-bottom: 20px;
}
.static-report-page .contents-page-right .mid-section .sub-section table a {
  text-decoration: underline;
}
.static-report-page .contents-page-right .mid-section .sub-section table th {
  border: 1px solid #fcfcfc;
}
.static-report-page .contents-page-right .mid-section .sub-section > .d-flex {
  gap: 5px;
}
.static-report-page .contents-page-right .mid-section .sub-section > .d-flex h3 {
  width: auto;
}
.static-report-page .contents-page-right .mid-section .sub-section > .d-flex p {
  color: #333;
}
.static-report-page .contents-page-right .mid-section .sub-section h3 {
  width: 100%;
}
.static-report-page .contents-page-right .mid-section .sub-section .text-right {
  width: 100%;
}
.static-report-page .contents-page-right .mid-section #sub-section-1-2 .depth1,
.static-report-page .contents-page-right .mid-section #sub-section-1-2 .sum,
.static-report-page .contents-page-right .mid-section #sub-section-1-3 .depth1,
.static-report-page .contents-page-right .mid-section #sub-section-2-2 .depth1,
.static-report-page .contents-page-right .mid-section #sub-section-2-2 .sum,
.static-report-page .contents-page-right .mid-section #sub-section-2-3 .depth1,
.static-report-page .contents-page-right .mid-section #sub-section-3-2 .depth1,
.static-report-page .contents-page-right .mid-section #sub-section-3-2 .sum {
  font-weight: 700;
  color: #000;
}
.static-report-page .contents-page-right .mid-section #sub-section-1-2 .sum-title,
.static-report-page .contents-page-right .mid-section #sub-section-1-3 .sum-title,
.static-report-page .contents-page-right .mid-section #sub-section-1-3 .sum,
.static-report-page .contents-page-right .mid-section #sub-section-2-2 .sum-title,
.static-report-page .contents-page-right .mid-section #sub-section-2-3 .sum-title,
.static-report-page .contents-page-right .mid-section #sub-section-2-3 .sum,
.static-report-page .contents-page-right .mid-section #sub-section-3-2 .sum-title {
  color: #000;
}
.static-report-page .contents-page-right h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  color: #000;
}
.static-report-page .contents-page-right h3 {
  color: #000;
  font-size: 16px;
  padding: 40px 0 20px;
}
.static-report-page .contents-page-right canvas {
  height: 450px !important;
}
.static-report-page .contents-page-right table.table thead th {
  white-space: normal;
  text-overflow: unset;
  word-break: keep-all;
}
.static-report-page .contents-page-right .top-search {
  margin-bottom: 30px;
}
.static-report-page .contents-page-right .selects {
  display: inline-block;
}
.static-report-page .contents-page-right .folding-header {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  margin-top: 30px;
  cursor: pointer;
  width: 100%;
}
.static-report-page .contents-page-right .folding-header + .folding-wrap {
  display: none;
}
.static-report-page .contents-page-right .folding-header .folding {
  padding: 20px 0;
  transition: all 0.5s;
  font-size: 17px;
}
.static-report-page .contents-page-right .folding-header.on {
  border-color: transparent;
}
.static-report-page .contents-page-right .folding-header.on .folding {
  font-size: 16px;
}

#pdf-choose .pdf-choose-wrap {
  border: 1px solid #e3e3e3;
  padding: 0 20px 25px;
  margin-bottom: 5px;
}
#pdf-choose .pdf-choose-wrap h2 {
  font-size: 17px;
  margin: 20px 0;
  color: #000;
}
#pdf-choose .pdf-choose-wrap ul {
  padding-left: 25px;
  display: flex;
  flex-direction: column;
}
#pdf-choose .pdf-choose-wrap ul li {
  display: grid;
  grid-template-columns: 15px 1fr 1fr;
  gap: 5px;
  align-items: center;
  height: 30px;
  line-height: 30px;
}
#pdf-choose .pdf-choose-wrap ul li .selects {
  padding-left: 5px;
  float: right;
}
#pdf-choose .pdf-choose-wrap ul li .selects select {
  min-width: auto !important;
  font-size: 13px;
}

#data-rule-info .dialog-content {
  font-size: 15px;
  line-height: 1.6;
}
#data-rule-info h2 {
  margin-top: 30px;
  color: #333;
  font-weight: 700;
}
#data-rule-info h2:first-child {
  margin-top: 0;
}

.go-task-hstr-detail table.table tbody tr {
  position: relative;
}
.go-task-hstr-detail .help {
  z-index: inherit;
  position: static;
}
.go-task-hstr-detail .help .help-layer {
  width: 260px;
  z-index: 10;
}
.go-task-hstr-detail .help.right .help-layer {
  left: auto;
  right: 10px;
}
.go-task-hstr-detail .help.upper .help-layer {
  top: auto;
  bottom: 50px;
}
.go-task-hstr-detail .align-top {
  vertical-align: top;
}

.cleaner-config-approval-mng .help {
  z-index: inherit;
}
.cleaner-config-approval-mng .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 250px;
}
.cleaner-config-approval-mng .sign-management .section01 .right, .cleaner-config-approval-mng .sign-management .section02 .left {
  width: 88%;
}
.cleaner-config-approval-mng .userReset + span {
  word-break: keep-all;
}

#frm #BtnCarChoice input {
  padding-left: 5px;
}
#frm #BtnCarUser input {
  padding-left: 5px;
}
#frm .set-info .inp-box .btn-srch {
  filter: grayscale(1);
}
#frm h3 {
  margin: 10px 0;
  color: #000;
}
#frm .inNout-box.flex.mb10 {
  display: grid;
  grid-template-columns: 5fr 2fr;
  padding-left: 0;
}
#frm .inNout-box.flex.mb10 > .addr {
  margin-left: 0 !important;
}
#frm .inNout-box.flex.mb10 > .addr .returnCenterAddr {
  width: auto;
}
#frm .out-check.flex.mb5 {
  padding-left: 0;
  color: #000;
}
#frm .chk-border.clickableRC {
  padding-bottom: 10px;
}
#frm .chk-border.clickableRC .addrs-sorting {
  overflow: inherit;
}
#frm .help .help-layer {
  display: none;
  position: absolute;
  top: 30px;
  /* left: 10px; */
  height: auto;
  border: 1px solid #e3e3e3;
  background-color: #fff;
  padding: 20px;
  z-index: 99;
  word-break: keep-all;
  right: 10px;
  width: 250px;
  left: auto;
}
#frm .help:hover .help-layer {
  display: block;
}
#frm .addrs-tit {
  margin-top: 10px;
}
#frm #btnMap {
  background: #555;
  width: 100%;
  border-color: #555;
  margin-top: 30px;
  margin-left: 0;
}

#car-map + div + #modal3 .modal-txt {
  text-align: left;
  margin-left: 10px;
}
#car-map + div + #modal3 .modal-txt i {
  margin-right: 5px;
}

#pop_taskTable .car-img {
  white-space: inherit;
}
#pop_taskTable .car-img .img {
  width: 50%;
}
#pop_taskTable .car-img .num {
  width: 50%;
}

.measure-mng-top-box .textaread.text-left h3 {
  font-weight: 700;
  color: #555;
}

#check-fail-pop .datatable-dropdown {
  display: none;
}
#check-fail-pop table.table.list thead th {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}
#check-fail-pop .datatable-wrapper.no-footer .datatable-container {
  border-bottom: none;
}
#check-fail-pop .datatable-bottom {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
#check-fail-pop .datatable-bottom .datatable-info {
  display: none;
}

.device-pcl-management-container .last-cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.welcome-wrap {
  padding: 20px;
}
.welcome-wrap > div {
  margin-right: 20px;
}
.welcome-wrap > div.last-string {
  padding-bottom: 40px;
}
.welcome-wrap.welcome-wrap02 {
  padding: 40px 0px;
}
.welcome-wrap.welcome-wrap02 .msg {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #555;
}
.welcome-wrap.welcome-wrap02 .msg3 {
  font-size: 16px;
  padding: 0 10px;
}
.welcome-wrap.welcome-wrap02 .msg3 p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}
.welcome-wrap .msg {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 25px;
}
.welcome-wrap .msg1 {
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 21px;
  text-align: center;
}
.welcome-wrap .msg1 strong {
  font-size: 24px;
  font-weight: 400;
}
.welcome-wrap .msg2 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  text-decoration: underline;
}
.welcome-wrap .msg3 p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
}
.welcome-wrap .msg3 p i {
  position: absolute;
  left: -2px;
  top: 3px;
}
.welcome-wrap .msg3 p a {
  font-size: 16px;
  color: #000;
}
.welcome-wrap .msg3 p.last {
  margin-top: 15px;
}
.welcome-wrap .msg3 img {
  width: 30px;
  vertical-align: middle;
}
.welcome-wrap .msg3 img.obd-example {
  width: 400px;
  margin-bottom: 50px;
}
.welcome-wrap .msg3 img.ico-arction {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  transform: translate(20px, 3px);
  margin-right: 20px;
}
.welcome-wrap .msg3 .msg3-right {
  width: 400px;
}
.welcome-wrap .msg3 + a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #6D6D66;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 60px;
}

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