@charset "utf-8";

/* Noto Sans KR */
@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/notosanskr-black.woff2") format("woff2"),
    url("fonts/notosanskr-black.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/notosanskr-bold.woff2") format("woff2"),
    url("fonts/notosanskr-bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/notosanskr-medium.woff2") format("woff2"),
    url("fonts/notosanskr-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/notosanskr-regular.woff2") format("woff2"),
    url("fonts/notosanskr-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/notosanskr-demilight.woff2") format("woff2"),
    url("fonts/notosanskr-demilight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/notosanskr-light.woff2") format("woff2"),
    url("fonts/notosanskr-light.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/notosanskr-thin.woff2") format("woff2"),
    url("fonts/notosanskr-thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

/* custom */
* {
  font-family: "Noto Sans KR", sans-serif;
}
body {
  min-width: 1280px;
}
p {
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#iFrameContents {
  height: 100%;
}
.login-wrapper {
  height: 100vh;
  justify-content: center;
  min-height: 100vh;
}
.login-top {
  margin-top: -11vh;
}

/* 메인 */
#main.up-contents {
  width: 100%;
  height: 100vh;
}
#main .background {
  background-image: url("/images/ecs/custom/main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main .background .content-wrap {
  width: 90%;
  height: 100vh;
  flex-direction: column;
  padding-top: 155px;
}
#main .background .content-wrap img {
  display: block;
  margin-bottom: 48px;
}
#main .background .content-wrap p {
  display: block;
  color: white;
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 48px;
}
#main .background .content-wrap p span {
  font-weight: 400;
}
#main .background .content-wrap .main-btn {
  min-width: 172px;
  padding: 11px 20px;
  font-size: 19px;
}

/* 헤더 */
#header-bg {
  width: 100%;
}
#header {
  width: 90%;
  display: flex;
  margin: 0 auto;
  height: 80px;
  justify-content: space-between;
}
#header .left-area,
.right-area {
  display: flex;
  align-items: center;
}

/* 헤더 좌측영역 */
#header .left-area img {
  width: 180px;
  margin-right: 12px;
  cursor: pointer;
}
#header .left-area p {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
#header .left-area p span {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

/* 헤더 우측영역 */
#header .right-area .right-text {
  font-size: 18px;
  font-weight: 500;
}
#header .right-area .sign-out-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
  min-width: 100px;
  padding: 8px 25px;
  font-weight: bold;
  transition: 0.3s;
  border-width: 2px;
  border-style: solid;
}
#header .right-area .sign-out-btn i {
  margin-right: 8px;
}
#header .right-area .sign-out-btn:hover {
  color: #fff;
}
#header .right-area .sign-out-btn .sign-out-text {
  display: flex;
}
#header .right-area .sign-out-btn .sign-out-text .material-icons-outlined {
  font-size: 22px;
  margin-right: 8px;
}

/* 드롭다운메뉴 */
#mainMenubar {
  width: 100%;
  height: 40px;
}
#main-nav {
  margin: auto;
}
#main-menu {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#main-menu > li {
  flex: 1;
  cursor: pointer;
  width: 160px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
#main-menu > li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
#main-menu > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 40px;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  padding: 0 !important;
  border-radius: 0 !important;
}
#main-menu > li:hover {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
}
#main-menu > li a:hover,
#main-menu > li a.highlighted {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
}
#main-menu > li:hover a i,
#main-menu > li:hover a span,
#main-menu > li > a:hover i,
#main-menu > li > a:hover span {
  color: #fff;
}
#main-menu > li > a > i {
  font-size: 16px;
  display: block;
  margin-right: 6px;
}
.sub-arrow {
  display: none;
}
.sm-mint {
  border-bottom: none;
}
.sm-mint li {
  height: 40px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  width: 100%;
}
.sm-mint li a {
  color: #fff;
}
.sm-mint a {
  color: #fff !important;
  font-weight: bold;
  border-radius: 0;
  border: 0;
  margin: 0;
}
.sm-mint a:hover,
.sm-mint a:focus,
.sm-mint a:active,
.sm-mint a.highlighted {
  color: #fff !important;
}
.sm-mint a.has-submenu {
  padding-right: 24px;
}
.sm-mint ul {
  width: 100% !important;
  border-radius: 0;
  margin: 0;
  padding: 0 !important;
}
.sm-mint ul li {
  height: auto;
}
.sm-mint ul li a {
  padding: 0 !important;
  line-height: 40px !important;
  text-align: center !important;
  font-weight: 500 !important;
  width: 100%;
}
.sm-mint ul li a:hover,
.sm-mint ul li a:focus,
.sm-mint ul li a:active {
  color: #fff !important;
}
.sm-mint ul li a.highlighted {
  border: 0;
  margin: 0;
}

/* 타이틀 */
.card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  padding: 33px 25px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

/* 로그인 */
.login-top .logo-area {
  text-align: center;
}
.login-top .logo-area img {
  width: 144px;
}
.login-top .logo-area .title {
  margin: 20px 0 40px 0;
  font-size: 15px;
  font-weight: bold;
}
.login-top .logo-area .title span {
  font-weight: 400;
}
.login-wrapper:after {
  content: "";
  display: block;
  width: 100%;
  height: 98px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -10;
}
.login-wrapper .txt-copyright {
  color: #fff;
  position: absolute;
  right: 50px;
  bottom: 4%;
  font-size: 14px;
}
.login-form {
  background: transparent;
}
.login-form .form-group .btn-primary {
  border: 1px solid transparent;
}

/* ////////////////////////// 대시보드 ////////////////////////// */
.card {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 80px;
}
.card-body {
  padding: 0;
}
#dashboard{
	height: 830px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#dashboard .title{
	padding: 0 0 1rem;
	position: relative;
}
#dashboard .title h3 {
  font-size: 28px;
  font-weight: 400;
}
#dashboard .title h3 span {
  font-size: 28px;
  font-weight: bold;
}
#dashboard .title .time {
  font-size: 20px;
  font-weight: 400;
}
#dashboard .title .count {
  min-width: 155px;
  border-radius: 5px;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
}
#dashboard .title .count span {
	position: relative;
	displat: block;
    padding-left: 0.55rem;
    color: #fff;
    margin-left: 0.5rem;
}
#dashboard .title .count span:before {
	content: "";
	position: absolute;
    top: 5px;
    left: 0;
    width: 1px;
    height: 15px;
	background: #ddd;
}

/* 테이블 */
.border-table {
  width: 100%;
  text-align: center;
  font-size: 14px;
  border-top-width: 2px;
  border-top-style: solid;
}
.border-table thead th {
  padding: 10px 0;
  border-right-width: 1px;
  border-right-style: solid;
  font-weight: 500;
}
.border-table tbody td {
  padding: 6px 0;
  border-top-width: 1px;
  border-top-style: solid;
  border-right-width: 1px;
  border-right-style: solid;
}
.border-table tbody {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-table tbody tr:first-child td {
  border-top: 0;
}
.border-table thead th:last-child,
.border-table tbody td:last-child {
  border-right: 0;
}

/* 대시보드 카드 - 회신현황, 요청기관 및 고객현황, 요청현황TOP5 */
#dashboard .d-card {
  border-width: 1px;
  border-style: solid;
  border-radius: 15px;
  overflow: hidden;
}
#dashboard .d-card-header {
  padding: 20px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 15px;
  font-weight: bold;
}
#dashboard .d-card-body-center .header,
#dashboard .d-card-body-right .header {
  text-align: center;
  height: 33px;
}
#dashboard .d-card-body-center .header div,
#dashboard .d-card-body-right .header div {
  margin: 0;
  padding-top: 6px;
  padding-left: 20px;
  font-size: 14px;
}
#dashboard .d-card-body-center .header div:nth-child(2) {
  border-left-width: 1px;
  border-left-style: solid;
}
#dashboard .d-card-body-center .date {
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
#dashboard .d-card-body-center .date div {
  margin: 0;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  font-family: sans-serif;
}
#dashboard .d-card-body-center .date > div:nth-child(2),
#dashboard .d-card-body-right .date > div:nth-child(2) {
  border-left-width: 1px;
  border-left-style: solid;
}
#dashboard .d-card-body-right .date {
  height: 180px;
  overflow: auto;
}
#dashboard .d-card-body-right .date-txt {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-top: 12px;
}
#dashboard .replyStatus {
  width: 100%;
}
#dashboard .replyStatus > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#dashboard .replyStatus > div.status img {
  display: block;
  margin: 0 20px;
  position: relative;
}
.status-img > img {
  margin: 0 10px;
}
#dashboard .replyStatus > div.status.top > img {
  top: 20px;
}
#dashboard .replyStatus > div.status.bottom > img {
  bottom: 20px;
}

/* 대시보드 테이블 카드 - 처리 현황, 최근 1주일 처리추이 */
#dashboard .table-card {
  border-width: 1px;
  border-style: solid;
  border-radius: 15px;
}
#dashboard .table-card-header {
  padding: 20px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 15px;
  font-weight: bold;
}
#dashboard .table-card-body {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 0 20px 30px 20px;
}
#dashboard .table-card-body .header {
  height: 33px;
  background: #f2f2f2;
}

/*  ////////////////////////// 서브페이지 보드  ////////////////////////// */
.board {
  margin-top: 50px;
  padding-bottom: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 20%);
}

/* 서브페이지 보드 - 타이틀 */
.board .title {
  font-size: 20px;
  font-weight: bold;
  padding: 33px 25px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

/* 서브페이지 보드 - 폼 영역 */
.board .form-area {
  justify-content: space-between;
  padding: 20px 25px;
}

/* 서브페이지 보드 - 테이블 */
.board .board-table {
  width: 100%;
  text-align: center;
  font-size: 14px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.board .board-table thead {
  border-top-width: 2px;
  border-top-style: solid;
}
.board .board-table thead th {
  padding: 10px 0;
  font-weight: 500;
}
.board .board-table tbody td {
  padding: 6px 0;
}
.board .board-table tbody tr:hover {
  cursor: pointer;
  z-index: 1;
}

/* 응답내역 정상,실패시 컬러 */
.board .board-table .normal {
  color: #18cb5f;
}
.board .board-table .failure {
  color: #e20c1b;
}

/* 기관정보페이지 모달 - 테이블 */
.modal .board-table {
  width: 100%;
  text-align: center;
  font-size: 14px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.modal .board-table thead {
  border-top-width: 2px;
  border-top-style: solid;
}
.modal .board-table thead th {
  padding: 10px 0;
  font-weight: 500;
}
.modal .board-table tbody td {
  padding: 6px 10px;
}
table.dataTable.board-table.no-footer {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
table.dataTable.board-table thead th:first-child,
table.dataTable.board-table thead td:first-child,
table.dataTable.board-table thead th:last-child,
table.dataTable.board-table thead td:last-child,
table.dataTable.board-table tbody tr:last-child th:first-child,
table.dataTable.board-table tbody tr:last-child td:first-child,
table.dataTable.board-table tbody tr:last-child th:last-child,
table.dataTable.board-table tbody tr:last-child td:last-child {
  border-radius: 0;
}
table.dataTable.board-table tbody tr:last-child th,
table.dataTable.board-table tbody tr:last-child td {
  border-bottom: 0;
}
table.dataTable.board-table thead th,
table.dataTable.board-table thead td {
  font-size: 14px;
}
table.dataTable.board-table thead td {
  border-top-width: 2px;
  border-top-style: solid;
  padding: 10px 0;
  font-weight: 500;
}
table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd:hover {
  z-index: -10;
}
table.dataTable.display.board-table tbody td {
  border-top: 0;
}



/* table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
    background: none;
} */

/* 페이지네이션 */
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border-width: 1px;
  border-style: solid;
  color: #fff;
}

/* 모달 */
.modal.fade .modal-dialog {
  box-shadow: 0px 3px 9px rgb(0 0 0 / 0%);
}
.modal-header {
  flex-direction: column;
  padding: 0;
  border-bottom: none;
}
.modal-header div:first-child {
  width: 100%;
  height: 6px;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header div:last-child {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
}
.modal-header div:last-child::after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 20px;
}
.modal-header .modal-title {
  font-size: 20px;
  font-weight: bold;
}
.modal-body {
  padding: 25px 0;
  margin: 0 20px;
}
.modal-body .input-btn-area {
  position: relative;
  border-radius: 5px;
}
.modal-body .input-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 76px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  z-index: 10;
}
.modal-body span {
  font-size: 12px;
  margin-bottom: 3px;
}
.modal-body span.star {
  margin-right: 3px;
  color: #e20c1b;
}
.modal-body textarea.form-control {
  height: 102px;
}
.modal-content {
  box-shadow: 0px 3px 9px rgb(0 0 0 / 50%);
  border: none;
}
.modal-body .input-group > .custom-select:not(:last-child),
.modal-body .input-group > .form-control:not(:last-child) {
  border-radius: 5px;
}
.modal-footer {
  padding: 15px 20px 15px 20px;
  border-top: none;
}

/* 모달 - (시스템운영 > 부서정보 관리, 임직원 정보관리) */
#Department_Management .modal-body .form-item,
#Employee_Management .modal-body .form-item,
#Batch .modal-body .form-item,
#Code_Management .modal-body .form-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#Department_Management .modal-body .form-item div:first-child,
#Employee_Management .modal-body .form-item div:first-child,
#Batch .modal-body .form-item div:first-child,
#Code_Management .modal-body .form-item div:first-child {
  flex-basis: 16%;
}
#Department_Management .modal-body .form-item div:last-child,
#Employee_Management .modal-body .form-item div:last-child,
#Batch .modal-body .form-item div:last-child,
#Code_Management .modal-body .form-item div:last-child {
  width: 100%;
}

/* 모달_.split-form-group - (시스템운영 > 임직원 정보관리) */
#Employee_Management .modal-body .split-form-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#Employee_Management .modal-body .split-form-group .form-item div:first-child {
  flex-basis: 39.6%;
}

/* 버튼 */
.btn-primary {
  min-width: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.btn-primary i {
  margin-right: 6px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #fff;
}
.btn-primary:active,
.btn-primary:visited,
.btn-primary:active:focus,
.btn-primary:active:hover {
  color: #fff;
}
.btn-outline-primary {
  min-width: 100px;
  font-size: 14px;
  font-weight: bold;
  background-color: #fff;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
}
.btn-outline-primary:active,
.btn-outline-primary:visited,
.btn-outline-primary:active:focus,
.btn-outline-primary:active:hover {
  color: #fff;
}
.add-btn {
  min-width: 0px;
}
.excel-btn {
  display: flex;
  align-items: center;
}
.excel-btn .material-icons-outlined {
  font-size: 19px;
  margin-right: 8px;
}

/* 보고서 > API별 월별처리 현황, 사업자별 월별처리 현황 테이블 */
#report_api .board-table thead tr:first-child th,
#report_business .board-table thead tr:first-child th {
  border-right-width: 1px;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
#report_api .board-table thead tr:first-child th:first-child,
#report_business .board-table thead tr:first-child th:first-child {
  border-bottom: none;
}
#report_api .board-table thead tr:first-child th:last-child,
#report_business .board-table thead tr:first-child th:last-child {
  border-right: none;
}
#report_api .board-table thead tr:last-child th,
#report_business .board-table thead tr:last-child th {
  border-right-width: 1px;
  border-right-style: solid;
}
#report_api .board-table thead tr:last-child th:last-child,
#report_business .board-table thead tr:last-child th:last-child {
  border-right: none;
}
#api .board .board-table tbody tr:nth-child(even):hover {
  background: none;
}
.form-control {
  height: 40px;
  border-radius: 5px;
  font-weight: 500;
  background-color: #fff;
}
.form-control::placeholder {
  color: #999;
  font-weight: 300;
}

/* 드롭다운 */
.dropdown .dropdown-toggle {
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  background-color: transparent;
  background-image: url("/images/ecs/custom/ic_select_down.png");
  background-repeat: no-repeat;
  background-position: right 9px center;
  font-size: 14px;
  font-weight: 500;
  min-width: 120px;
  padding: 0 30px 0 10px;
  text-align: left;
  height: 40px;
  appearance: none;
}
.dropdown.show .dropdown-toggle {
  background-image: url("/images/ecs/custom/ic_select_up.png");
}
.dropdown-toggle::after {
  display: none;
}
.dropdown .dropdown-toggle.disabled,
.dropdown .dropdown-toggle:disabled {
  background: #f5f5f5;
  opacity: 1;
}
.dropdown .dropdown-menu {
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  min-width: 120px;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 5px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}
.dropdown .dropdown-menu > a {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
}
.dropdown.datePick .dropdown-toggle {
  min-width: 60px;
  background-color: transparent;
  background-image: url("/images/ecs/custom/ic_select_down_red.png");
  background-repeat: no-repeat;
  background-position: right 9px center;
}
.dropdown.datePick.show .dropdown-toggle {
  background-image: url("/images/ecs/custom/ic_select_up_red.png");
}
.dropdown.datePick .dropdown-menu {
  min-width: 60px;
}
.input-group.date {
  min-width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
}
.input-group.date small {
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding: 0 10px;
  border-right-width: 1px;
  border-right-style: solid;
}
.input-group.date .form-control {
  border: 0;
  background: transparent;
  font-weight: 600;
  padding: 0 10px;
  width: 100px;
  height: 100%;
}
.input-group.date span {
  display: inline-flex;
  width: 40px;
  height: 100%;
  justify-content: center;
  align-items: center;
  border-left-width: 1px;
  border-left-style: solid;
  text-align: center;
}
.input-group.date span i {
  font-size: 20px;
}
.datepicker table {
  font-size: 14px;
}
#dayPick {
  display: flex;
  align-items: center;
}
#dayPick > span {
  width: 8px;
  height: 1px;
  display: block;
  margin: 0 6px;
}
.table-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 20px 0;
}
.table-option > div {
  display: flex;
  align-items: center;
}
.table-option .number {
  align-self: flex-end;
  font-size: 15px;
  color: #999;
  line-height: 1.4;
}
.table-option .number span {
  font-weight: bold;
  display: inline-flex;
  margin: 0 3px 0 6px;
}
.table-option .form-control {
  width: auto;
  padding: 0 10px;
  line-height: 40px;
}
.table-option .select-search {
  background: #fff;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  height: 40px;
  display: flex;
  align-items: center;
}
.table-option .select-search .dropdown .dropdown-toggle {
  border: 0;
  background-color: transparent;
}
.table-option .select-search > .form-control {
  border: 0;
  height: 32px;
  line-height: 32px;
  border-radius: 0;
  position: relative;
  background-color: transparent;
}
.table-option .select-search > span {
  display: block;
  width: 1px;
  height: 18px;
}
.table-option .select-search > #btnSearch {
  width: 32px;
  height: 32px;
  border: 0;
  font-size: 0;
  background-color: transparent;
  background-image: url("/images/ecs/custom/ic_search.png");
  background-repeat: no-repeat;
  background-position: center;
}
.table-option .select-search > .btnSearch {
  width: 32px;
  height: 32px;
  border: 0;
  font-size: 0;
  background-color: transparent;
  background-image: url("/images/ecs/custom/ic_search.png");
  background-repeat: no-repeat;
  background-position: center;
}
table.dataTable {
  border: 0;
}
table.dataTable thead td {
  border-bottom: 0;
}

/* api관리 페이지 */
#api .board-table tbody td {
  /* pointer-events: none;  */
  background: #fff;
}
#api .board-table tbody td:last-child p {
  font-weight: bold;
  font-size: 16px;
}
#api .board-table tbody td:last-child {
  vertical-align: top;
}
#api .board-table tbody td:last-child .board-table th {
  background: #e9e9e9;
}
#api .board-table tbody td:last-child .board-table td {
  text-align: center;
  border-right-width: 1px;
  border-right-style: solid;
}
#api .board-table tbody td:last-child .btn-area {
  padding: 30px 0 10px;
  text-align: right;
}
#api p.api-title {
  font-size: 16px;
  font-weight: bold;
}
#api .table-cont {
  border-right-width: 1px;
  border-right-style: solid;
}
#api .table-cont:nth-child(2) {
  border-right: none;
}
#api .table.table-striped {
  border: none;
}
#api .table.table-striped tbody th {
  border-right: none;
  border-left: none;
}
#api .table.table-striped tbody td {
  border-top: none;
}
#api .table tbody th,
.table tbody th {
  border-top-width: 2px;
  border-top-style: solid;
  font-weight: 500;
}
.fa-sync-alt:before {
  content: "\f2f1";
}
#api .table td > .row {
  margin-bottom: 0.5rem;
}
#api .table td > .row .col-sm-2 {
  padding: 0 !important;
}
#api .table td > .row .col-sm-2 > div.float-right {
  float: none !important;
}
#batch #divDetail .form-inline > * {
  margin-right: 1rem;
}
#menuCreate #divDetail .menuStructure{
    border: 1px solid #ddd;
    padding: 0.5rem;
    border-radius: 5px;
}
/* 페이징 */
.dataTables_wrapper .dataTables_paginate {
  display: block;
  padding: 30px 0 0 0;
  float: none;
  text-align: center;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    pointer-events:none;
}
