@charset "UTF-8";

@font-face {
    font-family: 'ROKAF Sans Medium';
    src: url('../../fonts/ROKAF Sans Medium.ttf') format('truetype');
}

/* ** Document ** */
html,
body {
    width: 100%;
    height: 100%;
}

body {
    position: relative;
    font-size: 16px;
    color: #222222;
    margin: 0 auto;
}

* {
    box-sizing: border-box;
    font-family: 'ROKAF Sans Medium', sans-serif !important;
}

a {
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

/* header */
header {
    position: relative;
    min-width: 360px;
    height: 55px;
    padding: 2px 5px;
    background-color: #ffffff; 
    z-index: 100;
}

header h1 {
    width: 202px;
    height: 27px;
    float: left;
    z-index: 1001;
}

header h1 a {
    display: block;
    width: 202px;
    height: 27px;
    padding-top: 4px;
}

header h1 a img {
    width: 100%;
}

header .menu-list {
    position: absolute;
    top: 8px;
    right: 10px;
}

header .menu-list ul {
    list-style: none;
}

header .menu-list ul li {
    display: inline-block;
}


/* #body */
#body {
	min-width: 360px;
	min-height: 513px;
    background-color: #EEEEEE;
}

/* footer */
footer {
    min-width: 360px;
    height: 6.5rem;
    color: #c5c8cb;
    background-color: #28323C;
    padding-top: 25px;
}

footer address {
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	line-height: 130%;
}

footer address p.address {
	margin-bottom: 5px;
}

footer address p.copyright {
	font-size: 10px;
}

/* end */

.blind {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    padding: 0;
    font-size:0;
    line-height:0;
    overflow: hidden;
    outline: none;
}

.scrollLock {
	overflow: hidden;
}

/* mobile menu */
#site-navigation {
	position: relative;
	width: 100%;
}

#site-navigation button.pcMode {
	position: absolute;
    top: 23px;
    right: 68px;
	font-size: 12px;
	font-weight: 500;
	border: 1px solid #d2d2d2;
	background-color: #ffffff;
	padding: 3px 5px;
}


/* hamburger menu */
#menuToggle {
  display: block;
  position: absolute;
  top: 20px;
  right: 15px;  
  z-index: 1;  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #000000;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;  
  cursor: pointer;  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */  
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;  
  background: #000000;
  border-radius: 3px;  
  z-index: 1;  
  transform-origin: 4px 0px;  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;  
  padding: 30px;
  padding-top: 70px;  
  background: #ffffff;
  border-left: 1px solid #d2d2d2;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;  
  transform-origin: 0% 0%;
  transform: none;  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #d2d2d2;
}

#menu li:last-child {
  border-bottom: 0;
}

#menuToggle input:checked ~ #menu {
  transform: translate(-100%, 0);
  box-shadow: 1px 2px 8px 0px rgba(0,0,0,0.1);
}

/* Main : sec01 */
#sec01 {
	min-height: 360px;
	background-color: #025B9D;
	padding: 20px 10px;
}

#sec01 .search-wrap {
	position: relative;
	margin-bottom: 15px;
}

#sec01 .search-wrap input {
	width: calc(100% - 55px);
	height: 35px;
    font-size: 10px;
    font-weight: 500;
    padding: 0 5px;
	border: 1px solid #d2d2d2;
	border-radius: 5px;
}

#sec01 .search-wrap button {
	height: 35px;
    font-size: 10px;
    font-weight: 500;
    background-color: #1185DC;
    border: 0;
	border-radius: 5px;
	color: #ffffff;
	padding: 0 15px;
}

#sec01 .dashboard-wrap {
	position: relative;
	min-height: 260px;
	/* border: 1px solid red; */
	overflow: hidden;
}

#sec01 .dashboard-wrap .vesselStatus-box {
	position: relative;
	display: flex;
	width: 100%;
	/* min-width: 1200px; */
	height: 160px;
	background-color: #ffffff;
	border-radius: 10px;
	padding: 40px 0;
	margin-bottom: 10px;
	box-shadow: 1px 2px 8px rgba(0,0,0,0.2);
	clear: both;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus {
	position: relative;
	display: flex;
	width: 100%;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 5%;
	right: 0;
	width: 1px;
	height: 90%;
	background-color: rgba(0,0,0,0.1);
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus .img-gauge {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 54%;
	padding-left: 10px;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus .img-gauge .gauge-circle {
	width: 100px;
    height: 100px;
    border-radius: 50%;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B1 .img-gauge .gauge-circle {
    background: url('../../images/esvc/ic_ship_1.png') center no-repeat;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B2 .img-gauge .gauge-circle {
    background: url('../../images/esvc/ic_ship_2.png') center no-repeat;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B3 .img-gauge .gauge-circle {
    background: url('../../images/esvc/ic_ship_3.png') center no-repeat;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B4 .img-gauge .gauge-circle {
    background: url('../../images/esvc/ic_ship_4.png') center no-repeat;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B5 .img-gauge .gauge-circle {
    background: url('../../images/esvc/ic_ship_5.png') center no-repeat;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus .stat-info {
	width: 46%;
	/* padding: 5px; */
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus .stat-info .berth {
	font-size: 14px;
	font-weight: 600;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus .stat-info .per {
	font-size: 12px;
	font-weight: 500;
	margin-top: 11px;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B1 .stat-info .per {
	color: #62B16C;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B2 .stat-info .per {
	color: #466ffe;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B3 .stat-info .per {
	color: #895feb;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B4 .stat-info .per {
	color: #eb5005;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus.B5 .stat-info .per {
	color: #db2ea9;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus .stat-info .per span {
	font-size: 34px;
	font-weight: 600;
}

#sec01 .dashboard-wrap .vesselStatus-box .vesselStatus .stat-info .vvc {
	font-size: 14px;
	font-weight: 500;
	margin-top: 11px;
	letter-spacing: -0.5px;
}

#sec01 .dashboard-wrap .vesselStatus-box .swiper-button-next:after, 
#sec01 .dashboard-wrap .vesselStatus-box .swiper-button-prev:after {
	font-size: 20px;
	font-weight: 600;
	color: #555555;
}

#sec01 .dashboard-wrap .terminalStatus-wrap {
	display: flex;
	width: 100%;
	height: 100px;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box {
	width: 32.5%;
	border-radius: 10px;
	background-color: #ffffff;
	font-weight: 500;
	text-align: center;
	padding: 13px 0;
	margin-right: 1.25%;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box:last-child {
	margin-right: 0;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box h2 {
	font-size: 12px;
	letter-spacing: -0.5px;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .stat-num {
	font-size: 10px;
	font-weight: 600;
	padding: 12px 0;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .stat-num span {
	font-size: 18px;
	color: #3556C0;	
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .stat-txt {
	width: 60px;
    background: url(../../images/esvc/ic_check.png) 25% center no-repeat;
    background-size: 18%;
    background-color: #62B16C;
    color: #ffffff;
    padding: 5px;
    padding-left: 20px;
    margin: 0 auto;
    font-size: 10px;
    border-radius: 10px;    
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .stat-low {
	background-color: #62B16C;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .stat-medium {
	background-color: #f9da2b;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .stat-high {
	background-color: #ff6840;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap {
	display: flex;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div {
	width: 50%;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div .num {
	font-size: 10px;
	font-weight: 600;
	padding: 12px 0;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div .num span {
	font-size: 18px;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div .num span.in {
	color: #14a355;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div .num span.out {
	color: #ff6840;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div .txt {
	width: 90%;
	padding: 5px;
	margin: 0 auto;
	background-color: #f0f4f8;
	font-size: 10px;
    border-radius: 10px;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div .txt span.circle {
	display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 5px;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div .txt span.circle.in {
	background-color: #14a355;
}

#sec01 .dashboard-wrap .terminalStatus-wrap .terminalStatus-box .inout-wrap > div .txt span.circle.out {
	background-color: #ff6840;
}

/* Main : sec02 */
#sec02 {
	min-height: 280px;
	padding: 30px 10px;
}

#sec02 h2 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}

#sec02 h2 span {
	color: #3556C0;
}

#sec02 .quickMenu-box {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	height: 212px;
	border-radius: 10px;
	background-color: #ffffff;
	margin-bottom: 30px;
	overflow: hidden;
}

#sec02 .quickMenu-box > div {
	width: 25%;
	height: 50%;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-align: center;
    padding-top: 50px;
}

#sec02 .quickMenu-box > div a {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
	color: #222222;	
}

#sec02 .quickMenu-box > div a:hover,
#sec02 .quickMenu-box > div a:active {
	text-decoration: none;
}

#sec02 .quickMenu-box > div.quick01 {
	background: url('../../images/esvc/m/ic_quick01.png') center 35% no-repeat;
	background-size: 40%;
}

#sec02 .quickMenu-box > div.quick01:hover {
	background: url('../../images/esvc/m/ic_quick01.png') center 35% no-repeat;
	background-size: 40%;
	background-color: #def1ff;
}

#sec02 .quickMenu-box > div.quick02 {
	background: url('../../images/esvc/m/ic_quick02.png') center 35% no-repeat;
	background-size: 40%;
}

#sec02 .quickMenu-box > div.quick02:hover {
	background: url('../../images/esvc/m/ic_quick02.png') center 35% no-repeat;
	background-size: 40%;
	background-color: #def1ff;
}

#sec02 .quickMenu-box > div.quick03 {
	background: url('../../images/esvc/m/ic_quick03.png') center 35% no-repeat;
	background-size: 40%;
}

#sec02 .quickMenu-box > div.quick03:hover {
	background: url('../../images/esvc/m/ic_quick03.png') center 35% no-repeat;
	background-size: 40%;
	background-color: #def1ff;
}

#sec02 .quickMenu-box > div.quick04 {
	background: url('../../images/esvc/m/ic_quick04.png') center 35% no-repeat;
	background-size: 40%;
}

#sec02 .quickMenu-box > div.quick04:hover {
	background: url('../../images/esvc/m/ic_quick04.png') center 35% no-repeat;
	background-size: 40%;
	background-color: #def1ff;
}

#sec02 .quickMenu-box > div.quick05 {
	background: url('../../images/esvc/m/ic_quick05.png') center 35% no-repeat;
	background-size: 40%;
}

#sec02 .quickMenu-box > div.quick05:hover {
	background: url('../../images/esvc/m/ic_quick05.png') center 35% no-repeat;
	background-size: 40%;
	background-color: #def1ff;
}

#sec02 .quickMenu-box > div.quick06 {
	background: url('../../images/esvc/m/ic_quick06.png') center 35% no-repeat;
	background-size: 40%;
}

#sec02 .quickMenu-box > div.quick06:hover {
	background: url('../../images/esvc/m/ic_quick06.png') center 35% no-repeat;
	background-size: 40%;
	background-color: #def1ff;
}

#sec02 .quickMenu-box > div.quick07 {
	background: url('../../images/esvc/m/ic_quick07.png') center 35% no-repeat;
	background-size: 40%;
}

#sec02 .quickMenu-box > div.quick07:hover {
	background: url('../../images/esvc/m/ic_quick07.png') center 35% no-repeat;
	background-size: 40%;
	background-color: #def1ff;
}

#sec02 .quickMenu-box > div.quick08 {
	background: url('../../images/esvc/m/ic_quick08.png') center 35% no-repeat;
	background-size: 40%;
}

#sec02 .quickMenu-box > div.quick08:hover {
	background: url('../../images/esvc/m/ic_quick08.png') center 35% no-repeat;
	background-size: 40%;
	background-color: #def1ff;
}

#sec02 .notice-wrap {
	position: relative;
	width: 100%;
}

#sec02 .notice-wrap .btn-more {
	position: absolute;
    top: -38px;
    right: 0;
    width: 30px;
    height: 30px;
    background: url('../../images/esvc/m/ic_btn_more.jpg') center no-repeat;
    background-color: #ffffff;
    border: 0;
    border-radius: 5px;
    box-shadow: 1px 2px 4px 0 rgba(0,0,0,0.1);
}

#sec02 .notice-wrap ul {
	list-style: none;
	width: 100%;
}

#sec02 .notice-wrap ul li {
	display: flex;
	align-items: center;
	width: 100%;
	height: 48px;
	background: url('../../images/esvc/m/ic_notice.png') 10px center no-repeat;
	background-size: 10%;
	background-color: #ffffff;
	font-size: 10px;
	font-weight: 600;
	border-radius: 5px;
	padding: 0 10px;
	padding-left: 50px;
	margin-bottom: 10px;
	box-shadow: 1px 2px 4px 0 rgba(0,0,0,0.1);
	overflow: hidden;
}

#sec02 .notice-wrap ul li:hover {
	background-color: #def1ff;
}

#sec02 .notice-wrap ul li:last-child {
	margin-bottom: 0;
}

#sec02 .notice-wrap ul li .tit {
	width: 79%;
    height: 100%;
    padding: 19px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#sec02 .notice-wrap ul li .tit a {
	color: #222222;
}

#sec02 .notice-wrap ul li .tit a:hover,
#sec02 .notice-wrap ul li .tit a:active {
	text-decoration: none;
}

#sec02 .notice-wrap ul li .date {
	font-weight: 500;
	color: #888888;
}

/* Sub Sub-title */
#sub-title {
	position: relative;
	height: 50px;
    background-color: #025B9D;
	color: #222222;
	font-size: 0.875rem;
	font-weight: bold;
}

#sub-title article:after {
	display: block;
	content: '';
	clear: both;
}

#sub-title .title {
	width: 100%;
	height: 100%;
	font-size: 15px;
    font-weight: 500;
	color: #ffffff;
	padding: 18px;
}

/* Sub Sub-copino */
#sub-copino {
	position: relative;
	color: #222222;
	font-size: 12px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-copino article:after {
	display: block;
	content: '';
	clear: both;
}

/* Sub Sub-BerthSchedule */
#sub-berthSchedule {
	position: relative;
	color: #222222;
	font-size: 12px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-berthSchedule article:after {
	display: block;
	content: '';
	clear: both;
}

#sub-berthSchedule .table-wrap .common-table tbody tr.d td {
	background-color: #FFFFFF;
}

#sub-berthSchedule .table-wrap .common-table tbody tr.w td {
	background-color: #d5fad6;
}

#sub-berthSchedule .table-wrap .common-table tbody tr.b td {
	background-color: #bee0fd;
}

#sub-berthSchedule .table-wrap .common-table tbody tr.p td {
	background-color: #fde9db;
}

/* Sub Sub-Copino */
#sub-copino {
	position: relative;
	color: #222222;
	font-size: 10px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-copino article:after {
	display: block;
	content: '';
	clear: both;
}

.copino-list-wrap {
	padding: 2rem 0;
}

.copino-list {
	display: block;
	box-sizing: border-box;
	height: 4rem;
	margin-bottom: 1rem;
	padding: 1rem;
	border: 1px solid #ddd;
	font-size: 0;
	text-decoration: none;
	color: #222;
}

.copino-list span {
	display: inline-block;
	height: 100%;
	padding-top: 0.5rem;
	vertical-align: middle;
	font-size: 1rem;
}

.copino-list span:first-child {
	width: 50px;
}

.copino-list span:nth-child(2) {
	width: calc(100% - 130px);
}

.copino-list span:nth-child(3) {
	display: inline-block;
	width: 80px;
	height: 1.5rem;
	padding-top: 0.4rem;
	background-color: #7D7D7D;
	text-align: center;
	vertical-align: middle;
	font-size: 0.7rem;
	font-weight: normal;
	color: #fff;
}

#sub-copino .result-box {
	margin-bottom: 2rem;
	padding-top: 0;
	padding-bottom: 2rem;
	border-bottom: 1px solid #ddd;
	font-weight: normal;
	overflow: hidden;
}

#sub-copino .result-box .common-table tr td{
	padding-right: 15px;
}

#sub-copino .result-box .txt-red {
	font-weight: bold;
}

#sub-copino .table-wrap {
	width: 100%;
	overflow: hidden;
    overflow-x: auto;
    margin-top: 1rem;
}

#sub-copino [class*='col-'] {
	padding: 0;
}


/* Sub Sub-dschTime */
#sub-dschTime {
	position: relative;
	color: #222222;
	font-size: 10px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-dschTime article:after {
	display: block;
	content: '';
	clear: both;
}

/* Sub Sub-emptyCntr */
#sub-emptyCntr {
	position: relative;
	color: #222222;
	font-size: 10px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-emptyCntr article:after {
	display: block;
	content: '';
	clear: both;
}

/* Sub Sub-eSlip */
#sub-eSlip {
	position: relative;
	color: #222222;
	font-size: 10px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-eSlip article:after {
	display: block;
	content: '';
	clear: both;
}

#sub-eSlip .table-wrap > p {
	margin-bottom: 10px;
}

#sub-eSlip .table-wrap .common-table {
	border: 1px solid #d2d2d2;
}

#sub-eSlip .table-wrap .common-table tr td {
	text-align: center;
	padding: 5px;
	border: 0;
}

#sub-eSlip .table-wrap .common-table tr td.rl {
	border-right: 1px solid #d2d2d2;
	background-color: #e5e5e5;
}

#sub-eSlip .table-wrap .common-table tr td.bl {
	border-bottom: 1px solid #d2d2d2;
}

/* Sub Sub-emptyCntrSwap */
#sub-emptyCntrSwap {
	position: relative;
	color: #222222;
	font-size: 10px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-emptyCntrSwap article:after {
	display: block;
	content: '';
	clear: both;
}

#sub-emptyCntrSwap p.notice {
	margin-bottom: 10px;
    color: #025B9D;
}

#sub-emptyCntrSwap .common-table tr td {
	text-align: center;
	padding: 0;
}

#sub-emptyCntrSwap .tel {
	color: #222222;
}

/* Sub Sub-YardMap */
#sub-yardMap {
	position: relative;
	color: #222222;
	font-size: 10px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-yardMap article:after {
	display: block;
	content: '';
	clear: both;
}

#sub-yardMap article .yardmap-info {
	display: flex;
	width: 100%;
	margin-bottom: 5px;
}

#sub-yardMap article .yardmap-info {
	display: flex;
	width: 100%;
	padding: 5px;
	margin-bottom: 5px;
	background-color: #ffffff;
	border: 1px solid #d2d2d2;
}

#sub-yardMap article .yardmap-info > div {
	position: relative;
	margin-left: 30px;
}

#sub-yardMap article .yardmap-info > div::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -18px;
	width: 14px;
	height: 14px;
	border: 1px solid #e5e5e5;
}

#sub-yardMap article .yardmap-info > div.inbound::before {
	background-color: #ccccff;
}

#sub-yardMap article .yardmap-info > div.outbound::before {
	background-color: #d5fad6;
}

#sub-yardMap article .yardmap-info > div.storage::before {
	background-color: #ffdddf;
}

#sub-yardMap article .yardmap-area {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	padding: 3px;
	margin-bottom: 15px;
	background-color: #ffffff;
	border: 1px solid #d2d2d2;
}

#sub-yardMap article .yardmap-area .area {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 9.5%;
	height: 35px;
	margin: 2px 0;
	background-color: #ffffff;
	border: 1px solid #d2d2d2;
	font-size: 0;
}

#sub-yardMap article .yardmap-area .area.default {
	background-color: #d2d2d2;
	font-size: 10px;
}

#sub-yardMap article .yardmap-area .area.inbound {
	background-color: #ccccff;
	font-size: 10px;
}

#sub-yardMap article .yardmap-area .area.outbound {
	background-color: #d5fad6;
	font-size: 10px;
}

#sub-yardMap article .yardmap-area .area.storage {
	background-color: #ffdddf;
	font-size: 10px;
}

/* Sub Sub-NoticeBoard */
#sub-noticeBoard {
	position: relative;
	height: auto;
	color: #222222;
	font-size: 10px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
	margin-bottom: 50px;
}

#sub-noticeBoard article:after {
	display: block;
	content: '';
	clear: both;
}

#sub-noticeBoard article .total {
	width: 100%;
	padding: 8px 0;
	padding-left: 20px;
	margin-bottom: 5px;
	background: url('../../images/esvc/board/ic_notice.png') left center no-repeat;
	font-size: 10px;
	font-weight: 500;
}

#sub-noticeBoard .table-wrap #noticeBoardTable tbody tr.FIXY {
	background-color: powderblue;
}

#sub-noticeBoard .table-wrap .board-table .category {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 24px;
	background-color: #7d7d7d;
	color: #ffffff;
	border-radius: 5px;
	font-size: 10px;
	font-weight: 500;
	margin: 0 auto;
}

#sub-noticeBoard .table-wrap .board-table .category.ipchal {
	background-color: #13b5b1;
}

#sub-noticeBoard .table-wrap .board-table .category.gonggo {
	background-color: #3556c0;
}

#sub-noticeBoard .table-wrap .board-table .category.popup {
	background-color: #4093C7;
}

/* Sub Sub-NoticeDetail */
#sub-noticeDetail {
	position: relative;
	height: auto;
	color: #222222;
	font-size: 10px;
	font-weight: 500;
	padding: 30px 10px;
	box-sizing: border-box;
}

#sub-noticeDetail article:after {
	display: block;
	content: '';
	clear: both;
}

#sub-noticeDetail .board-detail {
    padding: 0;
}

#sub-noticeDetail .board-detail-row {
	background-color: #ffffff;
    border-bottom: 1px solid #d2d2d2;
}

#sub-noticeDetail .board-detail-row:nth-of-type(1) {
    border-top: 2px solid #1471B4;
}

#sub-noticeDetail .board-detail-row > * {
    display: inline-block;
    padding: 1.125rem 2%;
    vertical-align: top;
}

#sub-noticeDetail .board-detail-row .board-detail-label {
    width: 80px;
    text-align: center;
    background-color: #ECF6FF;
}

#sub-noticeDetail .board-detail-row .board-detail-text {
    width: 14rem;
    padding-left: 10px;
}

#sub-noticeDetail .board-detail-row .board-detail-text.full-size {
    width: 100%;
	overflow: hidden;
	overflow-x: auto;
}

#sub-noticeDetail .board-detail-row .board-detail-label + .board-detail-text.full-size {
    width: calc(100% - 7.25rem);
}

#sub-noticeDetail .board-detail-row .board-detail-text > span {
    display: inline-block;
}

#sub-noticeDetail .board-detail-row .board-detail-text > a {
    display: block;
}

#sub-noticeDetail .board-detail-row .board-detail-text .board-detail-contents-wrap {
    width: 100%;
    word-break: break-all;
}

#sub-noticeDetail .detail-navigation {
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
}

#sub-noticeDetail .detail-navigation .button-group {

}

#sub-noticeDetail .detail-navigation .button-group a button {
   background-color: #ffffff;
   border: 1px solid #d2d2d2;
   padding: 10px 18px;
   font-size: 12px;
}

/* Common: Search, Result */
.search-area {
	width: 100%;
	height: auto;
	background-color: #ffffff;
	border: 1px solid #d2d2d2;
	padding: 15px;
	margin-bottom: 15px;
}

.search-area .input-wrap {
	min-height: 32px;
	margin-bottom: 10px;	
}

.search-area .input-wrap .label {
	display: inline-block;
	width: 20%;
	font-size: 10px;
}

.search-area .input-wrap .label2 {
	display: inline-block;
	width: 20%;
	font-size: 9px;
}


.search-area .input-wrap input {
	height: 32px;
	border: 1px solid #d2d2d2;
}

.search-area .input-wrap .date {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.search-area .input-wrap .date input {
	width: 47%;
}

.search-area .input-wrap .date input.calendar {
    background: url(../../images/esvc/ic_date.png) 95% center no-repeat;
    background-color: #ffffff;
    padding-left: 8px;
}

.search-area .input-wrap .input-box {
	display: inline-block;
	width: 79%;
	margin-bottom: 8px;
}

.search-area .input-wrap .input-box input[type='text'] {
	width: 100%;
}

.search-area .input-wrap .input-box.vvc input[type='text'] {
	width: 70px;
	margin-right: 3px;
	font-size: 10px;
}

.search-area button {
	width: 100%;
	height: 32px;
	background-color: #025B9D;
	color: #ffffff;
	border: 0;
	cursor: pointer;
}

/* datepicker */
.datepicker {
    width: 170px;
}

.datepicker table tr td, 
.datepicker table tr th {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    font-size: 10px;
}

/* Common: Table */
.common-table {
	width: 100%;
	letter-spacing: -0.05rem;
	font-size: 10px;
	font-weight: 500;
	background-color: #ffffff;
}

.common-table tr th {
	height: 34px;
	padding: 8px 16px;
	background-color: #f4f5f6;
	border: 1px solid #d2d2d2;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	line-height: 130%;
}

.common-table tr td {
	height: 34px;
	padding: 8px 8px 8px 15px;
	border: 1px solid #d2d2d2;
	vertical-align: middle;
}

.common-table.dt-table {
	
}

.common-table.dt-table thead tr th {
	background-color: #AFD7FA;
	border-color: #888888;
    border-bottom: 1px solid #888888;
    border-left: 0;
}

.common-table.dt-table thead tr th:last-child {
	border-right: 0;
}

.common-table.dt-table thead tr:first-child th {
	border-top: 2px solid #222222;
}

.common-table.dt-table tr td {
	white-space: nowrap;
    text-align: center;
	border-left: 0;
}

.common-table.dt-table tr td:last-child {
	border-right: 0;
}

/* Board: Table */
.board-table {
	table-layout:fixed;
	width: 100%;
	text-align: center;
	letter-spacing: -0.5px;
	font-size: 10px;
	font-weight: 500;
	background-color: #ffffff;
}

.board-table tr th {
	height: 34px;
    padding: 8px 16px;    
    background-color: #ECF6FF;
    border-bottom: 1px solid #707070;
    border-top: 2px solid #1471B4;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    line-height: 130%;
}

.board-table tr td {
    height: 34px;
    padding: 8px 10px;
    border-bottom: 1px solid #d2d2d2;
    vertical-align: middle;
}

.board-table tr td a {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #222222;
	text-align: left;
}

.board-table tr td a:hover,
.board-table tr td a:active {
	color: #1471B4;
	text-decoration: none;
}


/* 공지사항 검색박스 */
.board-search {
	font-size: 10px;
    font-weight: 500;
}

.board-search select {
	width: 100%;
	height: 34px;
	background: url('../../images/esvc/board/ic_s_arrow.png') 95% center no-repeat;
	background-color: #F9F9F9;
	border: 1px solid #d2d2d2;
	padding: 0 10px;
	margin-bottom: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.board-search select::-ms-expand {
	display: none;
}

.board-search .search-box {
	display: flex;
	float: right;
	width: 100%;
	height: 34px;
	border: 1px solid #d2d2d2;
	background-color: #ffffff;
	margin-bottom: 15px;
}

.board-search .search-box .input-search {
	width: calc(100% - 34px);
	border: none;
	padding: 0 10px;
}

.board-search .search-box .input-search:focus {
	outline: none; /* input 클릭시 테두리 없애기 */
}

.board-search .search-box .btn-search {
	position: relative;
	width: 34px;
	height: 32px;
	border: 0;
	border-left: 1px solid #d2d2d2;
	background: url('../../images/esvc/board/ic_search.png') center no-repeat;
	background-size: 45%;
	background-color: #005FAF;
	cursor: pointer;
}

.board-search .search-box .btn-search:focus {
	outline: none;
}

/* pagination */
.pagination {
	clear: both;
    font-size: 0;
	justify-content: center;
}

.pagination .page-item {
    display: inline-table;
    width: 2rem;
    height: 2rem;
    /* margin: 0 0.25rem 1rem; */
    vertical-align: middle;
}

.pagination .page-item .page-link {
    display: table-cell;
    width: 100%;
    height: 100%;
    line-height: 100%;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    color: #222222;
    background-color: #ffffff;
    -webkit-transition: color 0.2s, background-color 0.2s;
    -moz-transition: color 0.2s, background-color 0.2s;
    -ms-transition: color 0.2s, background-color 0.2s;
    -o-transition: color 0.2s, background-color 0.2s;
    transition: color 0.2s, background-color 0.2s;
    /* border: 1px solid #e5e5e5; */
}

.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus,
.pagination .page-item .page-link:active,
.pagination .page-item.active .page-link {
    text-decoration: underline;
    color: #1E64BA;
}

.pagination .page-item.disabled .page-link {
    font-weight: normal;
    color: #4e555b;
    text-decoration: none;
    cursor: default;
}

/* datatables custom */
table.dataTable {
	border-collapse: collapse;	
}

table.dataTable thead th, table.dataTable thead td {
	padding: 0 18px;
	border-bottom: 0;
	font-weight: 500;
}

.dataTables_wrapper .dataTables_info {
    position: absolute;
    top: -36px;
    font-weight: 500;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
	border-bottom: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	padding: 8px 10px;
	border: 1px solid #979797;
	margin-left: 4px;
	background-color: #ffffff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	background: #025B9D;
	color: #ffffff !important;
}

#tblScroll {
	width: 100%;
    position: relative;
    overflow: auto;	
}

/* 검색어를 보여줄 select box의 스타일을 설정합니다. */
.custom-select {
	position: relative;
	display: inline-block;
	padding: 0;
	height: auto;
	width: auto;
	border: 0;
}

.custom-select input {
	border: 1px solid #ccc;
	padding: 5px;
	width: 100px;
}

.custom-select .select-options {
	position: absolute;
	z-index: 999;
	background-color: #fff;
	border: 1px solid #ccc;
	max-height: 150px;
	overflow-y: auto;
	width: 100px;
	display: none;
	font-size: 12px;
	font-weight: 500;
}

.custom-select .select-options ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.custom-select .select-options ul li {
	padding: 5px;
	cursor: pointer;
}

.custom-select .select-options ul li:hover {
	background-color: #f2f2f2;
}

.hide {
	display: none !important;
}