@charset "utf-8";

/*한글 폰트 Noto Sans KR*/
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);

/*----------공용*/
html,
body {
  width: 100%;
  height: 100%;
  /*overflow: hidden; */
}
body::-webkit-scrollbar-corner {
  background-color: inherit;
}
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: gray;
}
body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
#wrap {
  width: 100%;
  height: 100%;
}
.clear:after {
  display: block;
  content: "";
  clear: both;
}
.dashboard {
  width: 100%;
  height: 100%;
  min-width: 1500px;
  /* min-height: 700px; */
  position: relative;
  margin-bottom: 20px;
}
/*네비게이션*/
.nav {
  width: auto;
  height: auto;
  overflow: hidden;
}
.nav li {
  float: left;
  margin-right: 4px;
  font-size: 14px;
}
.nav li a {
}
.nav li a:hover {
  text-decoration: underline;
}
.nav li p {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.nav li img {
  width: 100%;
  height: 100%;
}
.nav .select-nav {
  font-weight: 700;
}
/*버튼(기본)*/
.btn {
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #d0d5de;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  filter: brightness(80%);
}
/*버튼(40*40px)*/
.btn-40 {
  width: 40px;
  height: 40px;
}
.btn-40 span {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.btn-40 img {
  width: 100%;
  height: 100%;
}
/*버튼(140*40px)*/
.btn-140 {
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-140 span {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.btn-140 img {
  width: 100%;
  height: 100%;
}
/*높이가운데정렬 / 좌 우 배치*/
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-left {
  flex: none;
}
.center-right {
  margin-left: auto;
  display: flex;
  flex-direction: row-reverse;
}
/*인풋 초기화*/
input {
  outline-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*----------개별*/
/*왼쪽 - 메뉴*/
/*로고*/
.left {
  height: 100%;
  width: 228px;
  background-color: #fff;
  float: left;
}
.left .logo {
  width: 100%;
  height: 80px;
  background-color: #0258ee;
  color: #fff;
  text-align: center;
}
.left .logo h1 {
  line-height: 80px;
  font-size: 20px;
  font-weight: 700;
}
.left .logo a {
}
.left .logo img {
}
.left .logo .error {
  background-color: green;
}
/*메뉴*/
.left .menu-box {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.left .menu-box a {
  display: inline-block;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.left .menu-box .menu-txt {
  margin-left: 8px;
  font-size: 16px;
}
.left .menu-box .menu-img {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.left .menu-box img {
  width: 100%;
  height: 100%;
}
.left .menu-select {
  background-color: rgba(2, 88, 238, 0.15);
  color: #0258ee;
}
.left .menu-select .menu-select-sub {
  background-color: #0258ee;
  color: #fff;
}
/*오른쪽 - 대시보드*/
.right {
  height: 100%;
  width: calc(100% - 228px);
  background-color: #ebf0f3;
  float: right;
}
.top {
  height: 80px;
  padding: 0 20px;
  border-bottom: 1px solid #d0d5de;
}
.top .top-nav {
  width: auto;
  height: auto;
}
.top .nav-menu {
  color: #0258ee;
}
.top .top-btn {
  width: auto;
  height: auto;
}
.top .top-btn > div {
  margin-left: 16px;
}
.top .top-btn .btn-logout {
  width: 40px;
  height: 40px;
}
.top .top-btn .btn-logout button {
  background-color: #16243d;
  border: 1px solid #16243d;
}
/*대시보드*/
.main {
  width: 100%;
  height: calc(100% - 80px);
  padding: 16px 20px;
}
/* by 박창현 */
.main-nav {
  min-height: 40px;
}
.main-nav .nav-table {
  color: #757a89;
  margin-bottom: 10px;
}
.board {
  width: 100%;
}
.board .table-bg {
  background-color: #fff;
  float: left;
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px rgba(22, 36, 61, 0.16);
  height: 840px;
}
/*트리뷰*/
.board .treeview {
  width: 300px;
  height: calc(100vh - 155px);
  overflow: hidden;
}
.treeview .treeview-header {
  height: 48px;
  border-bottom: 1px solid #d0d5de;
  justify-content: center;
  align-items: center;
}
.treeview .treeview-header.device {
  height: 90px;
}
.treeview .treeview-header .search {
  width: 280px;
  height: 40px;
  border: 1px solid #d0d5de;
  background-color: #ebf0f3;
  border-radius: 4px;
  padding: 8px 16px;
  margin: 5px 10px;
}
.treeview .treeview-header .search input {
  width: 100%;
  height: 100%;
  padding-left: 30px;
  background-color: transparent;
  border: none;
  background-image: url(../img/ico-search-gray@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.treeview .treeview-header .search input::placeholder {
  color: #757a89;
}
.treeview .tree-list {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  margin-top: 5px;
}
.treeview .tree-list::-webkit-scrollbar-corner {
  background-color: inherit;
}
.treeview .tree-list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.treeview .tree-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: gray;
}
.treeview .tree-list::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

/* by 박창현 start */
.treeview .tree-list .frame-treeview {
  height: 34px;
  padding: 5px 10px 0px 10px;
  margin: 0px 10px;
}
.treeview .tree-list .frame-treeview .first {
  display: flex;
  height: 34px;
}
.treeview .tree-list .frame-treeview .second {
  display: flex;
  height: 34px;
  margin-left: 15px;
}
.treeview .tree-list .frame-treeview .third {
  display: flex;
  height: 34px;
  margin-left: 30px;
}
.treeview .tree-list .frame-treeview.box-treeview-select {
  background-color: rgba(2, 88, 238, 0.15);
  color: #0258ee;
}
.treeview .tree-list .frame-treeview .arrow {
  width: 24px;
  height: 24px;
  margin: 0 2px 0 0;
}
.treeview .tree-list .frame-treeview .arrow img {
  width: 24px;
  height: 24px;
}
.treeview .tree-list .frame-treeview .icon {
  width: 24px;
  height: 24px;
  margin: 0 4px 0 2px;
}
.treeview .tree-list .frame-treeview .icon img {
  width: 24px;
  height: 24px;
}
.treeview .tree-list .frame-treeview .text {
  padding-top: 1px;
}
/* by 박창현 end */

/*테이블*/
.board .table {
  overflow: hidden;
  width: calc(100% - 310px);
  height: calc(100vh - 155px);
  margin-left: 10px;
}
.board .table.no-treeview {
  width: 100%;
  margin-left: 0;
  margin-top: 10px;
}
.board .table.no-treeview.search {
  height: calc(100vh - 250px);
}
.board .table.treeview.search {
  height: calc(100vh - 245px);
}
.table .table-header {
  height: 64px;
  border-bottom: 1px solid #d0d5de;
  padding: 0 16px;
}
.table .table-header .table-tlt h2 {
  font-size: 18px;
  font-weight: 700;
}
.table .table-header .table-btn > div {
  margin-left: 16px;
}
.table .table-header .btn-frige-register button {
  background-color: #0258ee;
  border: 1px solid #0258ee;
  color: #fff;
}
.table .table-btn > div {
  margin-left: 16px;
}
.table .table-desc {
  width: 100%;
  height: calc(100vh - 219px);
  overflow: auto;
}
.table .table-desc.search {
  height: calc(100vh - 390px);
}
.table.treeview.search .table-desc {
  height: calc(100vh - 300px);
}
.table.no-treeview.search .table-desc {
  height: calc(100vh - 300px);
}
.table .table-desc::-webkit-scrollbar-corner {
  background-color: inherit;
}
.table .table-desc::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.table .table-desc::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: gray;
}
.table .table-desc::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

/* by hexaveil */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 170px;
  height: 22px;
  background-color: gray;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 0 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* by 박창현 */
.table .table-desc .total {
  display: flex;
  margin-top: 25px;
  padding: 0 24px;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  border-radius: 2px;
  border: solid 1px #dee0e3;
  font-size: 12px;
  font-weight: bold;
  align-items: center;
  color: #707276;
}
.table .table-desc .total .duration {
  display: flex;
  min-width: 300px;
  width: 300px;
  max-width: 300px;
}
.table .table-desc .total .duration .time {
  display: flex;
  height: fit-content;
}
.table .table-desc .total .duration .time :not(.date) {
  font-weight: normal;
}
.table .table-desc .total .count {
  margin: 0 auto;
}
.table .table-desc table {
  width: calc(100% - 20px);
  text-align: center;
  border-collapse: collapse;
  margin: 10px;
}
.table .table-desc table tr {
  height: 56px;
  max-height: 56px;
  font-size: 12px;
  color: #586063;
  border-bottom: solid 1px #dee0e3;
}
.table .table-desc table tr.header {
  background-color: #ffffff;
}
.table .table-desc table tbody tr:hover {
  background-color: #dedede;
}
.table .table-desc table th {
}
.table .table-desc table td .time {
  font-weight: normal;
}
.table .table-desc .row {
  display: flex;
  height: 100%;
}
.table .table-desc .row .col {
  flex: 1;
  width: 100%;
  margin: auto;
}
.table .table-desc .btn {
  width: 80px;
  height: 40px;
  text-align: center;
  font-size: 12.8px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  color: #ffffff;
  text-align: center;
  color: #0258ee;
  border-radius: 4px;
  transition: 0.2s;
  cursor: pointer;
}
.table .table-desc .btn:hover {
  color: #ffffff;
  background-color: #0068fe;
}
.table .table-desc .btn img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.table .table-desc .pagination {
  padding: 20px 0;
  width: auto;
  height: 68px;
  text-align: center;
}
.table .table-desc .pagination span {
  display: inline-block;
  margin-left: 12px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  text-align: center;
}
.table .table-desc .pagination span.pagination-prev {
  margin-left: 0;
  padding: 4px;
}
.table .table-desc .pagination span.pagination-prev img {
  height: 100%;
  transform: rotate(90deg);
  vertical-align: top;
}
.table .table-desc .pagination span.pagination-next {
  padding: 4px;
}
.table .table-desc .pagination span.pagination-next img {
  height: 100%;
  transform: rotate(-90deg);
  vertical-align: top;
}
.table .table-desc .pagination span.page-num {
  font-weight: 500;
  line-height: 28px;
}
.table .table-desc .pagination span.page-num.current {
  background-color: #263339;
  color: #fff;
  border-radius: 50px;
}
.table .table-desc .pagination input[type="number"] {
  width: 40px;
  height: 30px;
  text-align: center;
}
.table .table-desc .pagination input[type="number"]::-webkit-outer-spin-button,
.table .table-desc .pagination input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.table .table-desc .null {
  width: 100%;
  height: 75px;
  background-color: #ffffff;
}
.table .table-desc .null-txt {
  margin: auto;
  margin-top: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.17px;
  line-height: 75px;
}
.btn-white-line {
  width: 140px;
  height: 40px;
  margin: 0 16px 11.5px;
  padding: 10px 30px;
  border-radius: 4px;
  border: solid 1px #d0d5de;
  background-color: #ffffff;
}

.table-desc .table-content {
  display: flex;
}

.table-desc .table-content .vertical-line {
  margin: 5px;
  width: 1px;
  background-color: #d0d5de;
}

.table-desc table td {
  text-align: center;
  padding: 0px 5px;
}
.table-desc .table-content table td {
  text-align: left;
}
.table-desc table td.text-center {
  text-align: center;
}
.table-desc .table-content table td.header {
  font-weight: bold;
  color: #757a89;
  padding-left: 10px;
  min-width: 100px;
}

input,
select {
  width: 300px;
  height: 40px;
  border: solid 1px #d7dadb;
  background-color: #ffffff;
  padding: 10px 12px;
  font-size: 14px;
}
.buttons {
  display: flex;
  margin-top: 20px;
}
.btn-blue-line {
  width: 200px;
  height: 40px;
  border-radius: 4px;
  color: 0258ee;
  border: solid 1px #0258ee;
  background-color: #ffffff;
}

.btn-blue-line:hover {
  background-color: #0258ee;
  color: #fff;
}

.btn-right {
  margin-left: 10px;
}
.table .table-desc table.thumbnail {
  max-height: 300px;
}

.strong-text {
  margin-left: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #757a89;
}
.strong-text .title {
  color: #757a89;
}
.strong-text .plus {
  color: #d01156;
}
.strong-text .minus {
  color: #0258ee;
}
.strong-text .zero {
  color: #757a89;
}
.strong-text.row {
  align-items: center;
  justify-content: center;
  min-width: 70%;
}
.strong-text-header,
.strong-text-body {
  display: flex;
}
.strong-text-header span,
.strong-text-body span {
  text-align: center;
}
.wp8 {
  min-width: 8%;
}
.wp14 {
  min-width: 14%;
}
.select.middle {
  max-width: 200px;
}
.select.small {
  max-width: 100px;
}
.input.middle {
  max-width: 100px;
}
.input.small {
  max-width: 50px;
}

.tab-list-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.tab-list-wrap .tab-list {
  overflow: hidden;
}
.tab-list-wrap .tab-list li {
  float: left;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  color: #8b9296;
}
.tab-list-wrap .tab-list li:hover {
  opacity: 1;
  transition: 0.3s;
}
.tab-list-wrap .tab-list li {
  width: 120px;
}
.tab-list-wrap .tab-slide-on {
  width: 120px;
}
.tab-list-wrap .tab-list .on {
  color: #263339;
  font-weight: 700;
}
.tab-list-wrap .tab-slide {
  width: 100%;
  height: 2px;
  margin-top: 10px;
  position: relative;
}
.tab-list-wrap .tab-slide-bg {
  width: 100%;
  border: 2px solid #dbe0e0;
  position: absolute;
  bottom: 0;
}
.tab-list-wrap .tab-slide-on {
  border: 2px solid #0058ee;
  background-color: #0058ee;
  position: absolute;
  bottom: 0;
  left: 0;
}

.top.center.not-right {
  background-color: #ebf0f3;
}
.left.not-right {
  background-color: #ebf0f3 !important;
}
.user-info {
  margin-top: 8px;
  margin-right: 20px;
  cursor: pointer;
}
.user-info span {
  font-weight: 700;
}

.btn.disabled {
  color: #dbe0e0 !important;
}
.btn.disabled:hover {
  color: #dbe0e0 !important;
  background-color: #fff !important;
}
.datetime {
  border: solid 0.5px #686868;
  width: 100%;
}
.download-all {
  display: inline-block;
  width: 100% !important;
  padding-top: 3px;
  margin-right: 0 !important;
}
.process {
  display: inline-block;
  width: 100% !important;
  padding-top: 3px;
  margin-right: 0 !important;
}
