@charset "utf-8";

/* font */
@font-face {
	font-family: 'Pretendard';
	src: url('../font/Pretendard-Medium.woff2') format('woff2');
	src: url('../font/Pretendard-Medium.woff') format('woff');
}

@font-face {
	font-family: 'PretendardLight';
	src: url('../font/Pretendard-Regular.woff2') format('woff2');
	src: url('../font/Pretendard-Regular.woff') format('woff');
}

@font-face {
	font-family: 'PretendardSemiBold';
	src: url('../font/Pretendard-SemiBold.woff2') format('woff2');
	src: url('../font/Pretendard-SemiBold.woff') format('woff');
}

@font-face {
	font-family: 'PretendardBold';
	src: url('../font/Pretendard-Bold.woff2') format('woff2');
	src: url('../font/Pretendard-Bold.woff') format('woff');
}

/* root */

/* ---------------0912 border,warn컬러 추가 --------------- */
:root {
	--font-color: #1D1D1D;
	--border-color-1: #D9D9D9;
	--border-color-2: #D6D6D6;
	--border-color-3: #EEEEEE;
	--main-color: #0069B4;
	--sub-color-1: #FFFFFF;
	--sub-color-2: #F2F7FB;
	--sub-color-3: #f4f8ff;
	--point-color-1: #002B81;
	--point-color-2: #005EFF;
	--gray-color-1: #999999;
	--gray-color-2: #646F7B;
	--warn-color: #E50B0B;
	
	--chart-color1:#28a2f7;
	--chart-color2:#ed6568;
	--chart-color3:#fac663;
	--chart-color4:#00c378;
}

/* common */
 body {
	width: 100%;
	font: 16px 'Pretendard';
	color: var(--font-color);
	letter-spacing: -0.02em;
	display: flex;
	flex-direction: column;
	position: relative;
	background: var(--sub-color-3);
}
 .wrap {
	float: left;
    box-sizing: border-box;
/*     width: calc(100% - 98px); */
    width: calc(100% - 80px);
    min-height: calc(100vh - 90px);
}
 
section {
	/** width 추가 */
	width:100%;
	float: left;
	box-sizing: border-box;
	/* padding: 60px 60px 44px 60px; */
	padding:40px;
	display: flex;
  	flex-direction: column;
  	min-height: calc(100vh - 181px);
}
section.graph_info {
	float: left;
	box-sizing: border-box;
	padding: 60px;
	display: flex;
    flex-direction: column;
	min-height: calc(100vh - 90px);
	
}
.body_wrap {
	width: 100%;
	min-width: 1400px;
	display: flex;
	flex-direction: row;
	gap: 0;
	position: relative;
	flex-wrap: wrap;
	display: flex;
} 

.center-flex {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}



.taR {
    text-align: right !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt20 {
    margin-top: 10px !important;
}
.mt30 {
    margin-top: 30px !important;
}

/* gnb */
.gnb {
/* 	width: calc(100% - 98px); */
	width: calc(100% - 80px);
	height: 50px;
	padding: 0 50px;
	background: var(--point-color-1);
	color: var(--sub-color-1);
	font-family: 'SuiteBold';
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 50px;
	position: relative;
	z-index: 9999;
}

.gnb > ul {
	height: 50px;
	line-height: 50px;
}

.gnb > ul > li {
	font-size: 0.875rem;
	cursor: pointer;
}

.gnb .logo {
	width: 91px;
	height: 100%;
	margin-right: 5px;
	background: url(../images/logo_white.svg) no-repeat left;
}

.gnb .bwms {
	width: 200px;
	height: 100%;
	background: url(../images/logo_bwms_white.svg) no-repeat left;
}

.gnb>ul:last-of-type {
	display: flex;
	gap: 30px;
}

.gnb .lang_ko::before {
	content: "EN";
}

.gnb .lang_en::before {
	content: "KO";
}

.gnb .lang_ko,
.gnb .lang_en {
	margin-left: 30px;
}

nav {
    float: right;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
/*     width: 98px; */
    width: 80px;
    /* min-height: calc(21vh); */
    background: var(--sub-color-1);
    box-shadow: 0px 4px 22.9px 3px rgba(0, 0, 0, 0.10);
    z-index: 9999;
    right: 0;
    position: sticky;
    top: 0;
    height: auto;
    max-height: calc(100vh);
    gap: 10px;
    position: fixed;
    height: 100%;
}

nav h1 {
	float: left;
	box-sizing: border-box;
	width: 100%;
	height: 97px;
	padding: 25px 0;
	border-bottom: 1px solid var(--border-color-2);
	margin-top: 10px;
}

nav h1 a {
	float: left;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	background: url('../images/logo_techcross.png') center no-repeat;
}

nav ul {
	float: left;
	box-sizing: border-box;
	width: 100%;
	padding: 15px 0;
}

.main_menu {
	display: flex;
    flex-direction: column;
    align-items: center;
    /*height: calc(100% - 395px);*/
    border-bottom: 1px solid var(--border-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
/* 	height: 153px; */
	height: 93px;
	padding: 20px 0;
}

.main_menu li,
.main_info li {
	float: left;
    box-sizing: border-box;
    width: 100%;
    height: 90px;
}
.main_menu li {
/* 	height: 90px; */
	height: 80px;
}

/* a태그 대안으로 사용할 div추가 */
.main_menu li a.main_ico::before,
.main_info li a::before,
.main_menu li .hrefa.main_ico::before,
.main_info li .hrefa::before {
	float: left;
	box-sizing: border-box;
	content: '';
	width: 100%;
	height: 100%;
}

/* a태그 대안으로 사용할 div추가 */
.main_menu li.on a.main_ico::after,
.main_menu li.on .hrefa.main_ico::after {
	float: left;
	box-sizing: border-box;
	position: absolute;
	content: '';
	width: 6px;
	height: 52px;
	left: 0px;
	/* margin-top: 10px; */
	border-radius: 0 5px 5px 0;
	background: var(--main-color);
	top: 20px;

}

/*메뉴	*/
.main_menu li.on .main_ico, .main_info li.on a,
.main_menu li.on .main_ico, .main_info li.on .hrefa {
	width: 100%;
	height: 100%;
	display: block;
}
.main_menu li.on .main_ico {
	background: var(--sub-color-3);
	width: 100%;
	width: calc(100% - 30px);
	border-radius: 9px;
	margin-left: 15px;
	height: 65px;
	margin-top: 13px;
}
/* TODO: 여기 아이콘 추가 필요. */
/* .main_menu li.map a:before { */
/* 	content: "\f5a0"; */
/* } */

.main_menu li.map a::before {
	background: url('../images/icon_menu9.svg') center no-repeat;
}

.main_menu li.map {
	background-color: white;
}

.main_menu li.map a::before { background: url('../images/nav/map.svg') center no-repeat; }
.main_menu li.analysis a::before { background: url('../images/nav/analysis.svg') center no-repeat; }
.main_menu li.vessel a::before { background: url('../images/nav/icon_menu2.svg') center no-repeat; }
.main_menu li.abnormal a::before { background: url('../images/nav/list.svg') center no-repeat; }
.main_menu li.status a::before { background: url('../images/nav/status.svg') center no-repeat; }
.main_menu li.solution a::before { background: url('../images/nav/icon_menu3.svg') center no-repeat; }
.main_menu li.member a:before { background: url('../images/nav/icon_menu1.svg') center no-repeat; }
.main_menu li.mail a:before { background: url('../images/nav/icon_menu9.svg') center no-repeat; }

.main_menu li.map:hover a::before { background: url('../images/nav/map_on.svg') center no-repeat; }
.main_menu li.analysis:hover a::before { background: url('../images/nav/analysis_on.svg') center no-repeat; }
.main_menu li.vessel:hover a::before { background: url('../images/nav/icon_menu2_on.svg') center no-repeat; }
.main_menu li.abnormal:hover a::before { background: url('../images/nav/list_on.svg') center no-repeat; }
.main_menu li.status:hover a::before { background: url('../images/nav/status_on.svg') center no-repeat; }
.main_menu li.solution:hover a::before { background: url('../images/nav/icon_menu3_on.svg') center no-repeat; }
.main_menu li.member:hover a:before { background: url('../images/nav/icon_menu1_on.svg') center no-repeat; }
.main_menu li.mail:hover a:before { background: url('../images/nav/icon_menu9_on.svg') center no-repeat; }

/* 중메뉴 */
.main_menu .depth_2 {
	display: none;
	background-color: #fff;
	width: 200px;
	text-align: center;
	border: 1px solid #002B81;
	padding: 8px 15px;
	border: 1px solid #eee;

	transition: 0.8s linear;
}
.main_menu .depth_2_main {
	font: 1rem 'PretendardBold';
}
.main_menu .depth_2 li {
	width: 100%;
	height: 55px;
	line-height: 55px;
	border-bottom: 1px solid #eee;
}
.main_menu .depth_2 li:last-child {
	border-bottom: 0;
}
.main_menu li:hover ul.depth_2 {
	display: block;
}
.main_menu li {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
}
.main_menu li .depth_2 {
	position: absolute;
	top:0;
	left: -200px;
}
.main_menu li .depth_2 a,
.main_menu li .depth_2 .hrefa {
	width: 100%;
	height: 100%;
	display: block;
}

.main_menu li .depth_2 a:hover,
.main_menu li .depth_2 .hrefa:hover {
	color: var(--main-color);
	cursor: pointer;
}

.main_menu li .depth_2 li.on {
	    background: var(--sub-color-3);
}
.main_menu li .depth_2 li.on a,
.main_menu li .depth_2 li.on .hrefa {
	color: var(--main-color);
}

/*인포	*/
.main_info li {
	position: relative;
}

.main_info li#logout a::before {
	background: url('../images/icon_logout.svg') center no-repeat;
}

.main_info li:first-of-type a::before {
	background: url('../images/icon_info.svg') center no-repeat;
}

.main_info li:nth-of-type(2) a::before {
	background: url('../images/icon_logout.svg') center no-repeat;
}

.main_info li:hover:first-of-type a::before {
	background: url('../images/icon_info_on.svg') center no-repeat;
	transition: linear 0.35s;
}

.main_info li:hover:nth-of-type(2) a::before {
	background: url('../images/icon_logout_on.svg') center no-repeat;
	transition: linear 0.35s;
}

.main_info .myaccount.on a::before {
	background: url('../images/icon_info_on.svg') center no-repeat;
}

.main_info .myaccount.on a::after {
	float: left;
	box-sizing: border-box;
	position: absolute;
	content: '';
	width: 6px;
	height: 52px;
	left: 0px;
	/* margin-top: 10px; */
	border-radius: 0 5px 5px 0;
	background: var(--main-color);
	top: 20px;
}
.main_info .myaccount.on a {
    background: var(--sub-color-3);
    width: 100%;
    width: calc(100% - 30px);
    border-radius: 9px;
    margin-left: 15px;
    height: 65px;
    margin-top: 13px;
}

.tit_wrap {
	width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
	position: relative;
	z-index: 100;
}

h2 {
	font: 1.875rem 'PretendardBold';
}

.page-help {
	position: relative;
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-left: 8px;
	vertical-align: middle;
	cursor: pointer;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%230069B4' d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/%3E%3C/svg%3E") no-repeat center / contain;
	transition: transform 0.15s;
}

.page-help:hover {
	transform: scale(1.15);
}

.page-help-tooltip {
	display: none;
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-16px);
	width: max-content;
	max-width: 800px;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid var(--border-color-1);
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	font: 0.85rem/1.65 'PretendardLight';
	color: var(--font-color);
	z-index: 10001;
	white-space: normal;
	word-break: keep-all;
}

.page-help-tooltip::before {
	content: '';
	position: absolute;
	top: -7px;
	left: 16px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-left: 1px solid var(--border-color-1);
	border-top: 1px solid var(--border-color-1);
	transform: rotate(45deg);
}

.page-help:hover .page-help-tooltip {
	display: block;
}

.topMenuHead {
	font: 1.875rem 'PretendardLight';
}

.topSearch{
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	height:43px;
}

select {
	float: left;
	position: relative;
	box-sizing: border-box;
	width: 150px;
	height: 43px;
	padding: 10px;
	color: var(--gray-color-1);
	border: 1px solid var(--border-color-3);
	border-radius: 6px;
	background: url('../images/icon_select.svg') no-repeat;
	background-color: var(--sub-color-1);
	background-position: right 10px top 18px;
	background-size: 10px;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	cursor: pointer;
	font: 1rem 'pretendard';
}
select.blue, input[type="date"].blue {
	background-color: var(--sub-color-3);
	width: 160px;
}
.search_wrap .select2-container--default .select2-selection--single{
	background: var(--sub-color-3) !important;
	border: 1px solid var(--border-color-3);
}

option {
	color: var(--font-color);
}

select:required:invalid {
	color: var(--gray-color-1)
}

option[value=""][disabled] {
	display: none;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="month"] {
	height: 43px;
	padding: 0 20px;
	float: left;
	font: 1rem 'pretendard';
	background: var(--sub-color-1);
	border: 1px solid var(--border-color-3);
	border-radius: 6px;
	color: var(--gray-color-1);
}

input[type="text"].search {
	width: 347px;
	padding: 0 0 0 37px;
	background: url(../images/icon_search.svg) no-repeat left, var(--sub-color-3);
	background-position: left 10px bottom 11px;
}

*::placeholder {
	color: var(--gray-color-1);
}

input[type="date"],
input[type="month"] {
	position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator {
	width: 100%;
	height: 35px;
	position: absolute;
	top: 9px;
	right: 10px;
	background: url('../images/icon_date.svg') no-repeat right 2px /18px;
	cursor: pointer;
}
/* width 50% 지정 input */

.half_input .half {
	width: calc((100% - 10px) / 2);
}
.list_horizon tr td.half_input .half:first-child {
	margin-right: 10px;
}
.member_mail .half_mail {
	width: 48%;
}
.list.list_left tr th {
	text-align:left;
	padding-left:20px
}

.list.list_left tr td {
	text-align: left;
	padding-left:20px;
}

/*radio*/
.radio>label {
	float: left;
}

input[type="radio"] {
	float: left;
	margin-top: 2px;
	appearance: none;
	outline: none;
	box-shadow: none;
	order: none;
	border-radius: 0;
	border-radius: initial;
	margin-right: 8px;
	width: auto !important;
}

input[type="radio"]::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-top: 5px;
	cursor: pointer;
	background: url('../images/icon_radio.svg') no-repeat center / contain;
	transition: all 0.3s;
}

input[type="radio"]+label {
	display: inline-block;
	margin-right: 20px;
	line-height: 30px;
	cursor: pointer;
}

input[type="radio"]:checked::after {
	background: url('../images/icon_radio_checked.svg') no-repeat center / contain;
	transition: all 0.3s;
}

.txtbtn {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

/* checkbox  */
.chk_list ul {
	margin-right: 20px;
}

.chk_list ul label {
	cursor: pointer;
}

.list td.chk_list {
	text-align: left;
}

.chk_wrap label {
	float: left;

}

input[type="checkbox"] {
	float: left;
	text-align: left;
	appearance: none;
	outline: none;
	box-shadow: none;
	border: none;
	display: none;
}

input[type="checkbox"]+label {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 1px solid var(--gray-color-1);
	border-radius: 2px;
	vertical-align: middle;
	margin-bottom: -2px;
	margin-right: 2px;
	cursor: pointer;
}

.chk_wrap input:checked+label {
	border: 1px solid var(--gray-color-1);
	background: url(../images/icon_chk.svg) no-repeat center;
	transition: border 0.2s linear;

}

/* textarea */
.txt_area {
	height: 200px;
	padding: 15px !important;
}

.txt_area textarea {
	width: 100%;
	min-height: 150px;
	padding: 10px;
	resize: none;
	font: 1rem 'pretendard';
	color: var(--gray-color-1);
	border: 1px solid var(--border-color-1);
	outline: none;
	border-radius: 6px;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	white-space: pre-wrap;
	word-break: break-all;

}

/* table */
table {
	width: 100%;
	background: var(--sub-color-1);
	border-collapse: collapse;
	float: left;
	box-sizing: border-box;
	border-radius: 12px;
	box-shadow: 7px 0px 19.5px 0px rgba(0, 0, 0, 0.04);
}
/*list_into*/
.list_wrapper {
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.list02 {
	width: 50%;
}

.list_into tbody tr:hover{
	cursor: pointer;
}
.list_into tr:hover td{
	background-color: rgba(243, 248, 255, 0.6);
	transition: all 0.2s;
}

.list_hover tr:hover td{
	background-color: rgba(243, 248, 255, 0.6);
	transition: all 0.2s;
}

.list thead,
.list th {
	padding: 23px 0;
	font-family: 'pretendardSemiBold';
	color: var(--table-font);
}

.list th:first-child {
	border-radius: 12px 0 0 0;
}

.list th:last-child {
	border-radius: 0 12px 0 0;
}

.list thead {
	height: 50px;
	border-bottom: 1px solid var(--border-color-3);
}

.list tbody tr {
	width: 100%;
	background: var(--sub-color-1);
	border-bottom: 1px solid var(--border-color-3);
}
.list tbody tr:last-child {
	border-bottom:0;
}
.list tbody tr td:nth-child(1) {
	border-radius: 0 0 0 12px;
}

.list tbody tr td:last-child {
	border-radius: 0 0 12px 0;
}

.list td {
    height: 60px;
    padding: 5px 5px;
    text-align: center;
    color:var(--gray-color-2);
}

.list td.edit {
	width: 18px;
	height: 18px;
	background: url('../images/btn_edit.svg') no-repeat center;
	background-color: var(--bg-color-2);
}

.list td.delete {
	width: 16px;
	height: 18px;
	background: url('../images/btn_delete.svg') no-repeat center;
	background-color: var(--bg-color-2);
}

.list td.down {
	width: 16px;
	height: 18px;
	background: url('../images/btn_down.svg') no-repeat center;
	background-color: var(--bg-color-2);
}

.list span.icon_vertical{
	width: 18px;
	height: 14px;
				margin-left: 10px;
	background: url(../images/icon_vertical.svg) no-repeat center;
	cursor: pointer;
}
.list td.down_on {
	cursor: pointer;
	background: url('../images/btn_down_on.svg') no-repeat center;
	transition: all 0.3s;
}

/*hover*/
.list td.edit:hover {
	cursor: pointer;
	background: url('../images/btn_edit_on.svg') no-repeat center;
	transition: all 0.3s;
}

.list td.delete:hover {
	cursor: pointer;
	background: url('../images/btn_delete_on.svg') no-repeat center;
	transition: all 0.3s;
}

/* -------------0912 등록 페이지 추가-----------------*/
/*list_horizon */
table.list.list_horizon {
	border-radius: 12px !important;
    border-spacing: 0 20px !important;
    border-collapse: separate !important;
    box-shadow: none ;
    background:none ;
    
}

.list.list_horizon tbody tr {
	height: 70px;
	border-bottom: 1px solid var(--border-color-3);
    border-radius:12px;
}


.list_horizon tr:first-child {
	border-top: 3px solid var(--point-color-1);
}

.list_horizon th:first-child {
	border-radius: 0;
}

.list.list_horizon tbody tr {
	border-radius: 12px;
	background:none !important;
}
.list.list_horizon tbody tr th {
	text-align: left;
    padding: 0 20px;
    background: #dbe5fa;
    border-radius: 12px 0 0 12px;
}

.list.list_horizon tbody tr td {
	padding: 0 20px;
	text-align: left;
	border-radius: 0 12px 12px 0;
	background: var(--sub-color-1);
}
.list.list_horizon tbody tr th.blank {
	padding: 0;
    background: none;
    display: inline-block;
}

.list_horizon tr td input,
.list_horizon tr td select {
	width: 100%;
}
.imptnt {
	color: var(--warn-color);
	padding-left: 2px;
	display: inline-block;
}

.s_title {
	padding: 15px 0;
	font: 1.125em 'PretendardSemiBold';

}
/* graph */
.graph {
	width: 100%;
	height: 350px;
	background: #ffffff;
	border-radius: 15px;
	border: 1px solid var(--border-color-3);
	    padding: 30px;
}
.graph .tit span {
	margin-right: 30px;
	position: relative;
	color: #3d3d3d;
	font-size: 17px;
}
.graph .tit span:first-child::after {
	height: 70%;
	width: 1.5px;
	content: "";
	display: block;
	background-color: #9e9e9e;
	position: absolute;
	right: -15px;
	top: 3px;
}
.graph_list {
	margin-bottom: 30px;
}
.graph_inner {
	height:840px; 
	position: relative;
}
.graph_inner > .health_graph {
	height: 48%;
	width: 100%;
}
.graph_inner > .health_btm {
	height: 50%;
	width: 100%;
	border-top: 1px dashed var(--border-color-1);
}
.health_graph > .left, 
.health_graph > .right{
	float: left;
	box-sizing: border-box;
	height: 100%;
  }
.health_graph > .left {
	position: relative;
    width: 20%;
    padding: 40px 20px 30px 20px;
}
.health_graph .right {
	width: 80%;
}
.health_graph > .right > div:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6%;
    height: 85%;
    border-right: 1px dashed var(--border-color-1); /* dashed 테두리 적용 */
}
.graph_inner > .tro_graph {
	height: 100%;
	position: relative;
	padding: 0 0 10px 0;
}
.tro_graph > .left {
	padding: 20px 20px 20px 0;
}
.health_graph > .right ::before {
	top: 3%;
    height: 95%
}
.health_graph.tro_graph > .left  .btm{
	font-size: 14px;
    position: relative;
    padding: 10px 0 10px 25px;
    border-bottom: 1px dashed var(--border-color-1);
    word-break: break-all;
}
.health_graph.tro_graph > .left  .btm:last-child{
	border: none;
}
.health_graph.tro_graph > .left  .btm:first-child{
	border-top: 1px dashed var(--border-color-1);
}

/* footer */
footer {
    float: left;
    box-sizing: border-box;
   	width: calc(100% - 98px);
    height: 40px;
    font: 0.875rem / 40px 'PretendardLight';
    text-align: center;
    background-color: #02162B;
    color: var(--sub-color-1);
    position: relative;
    z-index: 999;
	
}

/* scroll */
*::-webkit-scrollbar-track {
	display: none;
}

*::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background-color: var(--border-color-1);
}

*::-webkit-scrollbar-thumb {
	width: 5px;
	background-color: var(--gray-color-1);
}
	 /* preprocess */
	.preprocess td span {
		display:block;
		padding: 5px 0;
		
	}
	.keyword {
		padding: 5px 0 !important;
	}
	
	/* preprocessinginfo data box  */
	
	/* common */
	.datawrap,.datawrap02  {
		display: flex;
		justify-content: space-between; 
		align-items: stretch; 
		width: 100%;
		flex-wrap:wrap;
}
	
/* 작은 이미지 두개일때 */
.databox .data {
	overflow: hidden;
	flex: 1 1 48%;
	margin: 10px;
	box-sizing: border-box;	
}
/* 데이터가 하나일 때 화면을 꽉 채움 */
.datawrap > .data:nth-child(1):only-child {
  flex: 1; 
}

.databox .data h3 {
	padding-bottom:13px;
	font-weight: 500;
	padding-top: 20px;
}
.databox .data ul {
	width:auto;
	height: 100%;
	background: #fff;
	display:flex;
	border: 1px solid #EEEEEE;
	padding:20px;
	gap: 10px;
}
.databox .data ul li {
	display: flex;
    flex-direction: column;
    align-items: center;
    flex:1;
}
.databox .data ul li p {
	text-align: center;
	padding-top: 10px;
	font-size: 13px;
}
.databox .data ul li .img_wrap {
	width: 100%;
    max-height: 400px;
/*     min-height: 500px; */
    object-fit: contain;
}

/* 큰 이미지 꽉차게 */ 


.databox .data02 ul {
    width: 100%;
    background: #fff;
    border: 1px solid #EEEEEE;
    padding: 20px;
}

.databox .data02 ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}
.databox .data02 ul li .img_wrap {
    width: 100%;
    max-height: 400px;
/*     min-height: 500px; */
    object-fit: contain;
}

/*management*/
.manageWrap {
	width: 100%;
    padding: 40px 0 0 0;
    float: left;
    box-sizing: border-box;
    position: relative;
    flex: 1;
}
.management {
	display: flex;
	justify-content: space-between; 
	align-items: stretch; 
	width: 100%;
	gap: 20px;
}
.management li {
	flex:1;
	background:#fff;
	padding: 20px 20px 20px 20px;
	border-radius: 20px;
	box-shadow: 0px 4px 17.1px 0px rgba(0, 0, 0, 0.05);
}
.management li .img_wrap {
	object-fit: contain;
    height: 420px;
    position: relative;
    width: 100%;
}
.management li .img_wrap img {
	width:100%;
	transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}
.management li h3 {
	text-align:center;
	padding: 10px 0 15px 0;
	font-weight:500;
}

/* 여기는 select2 라이브러리를 위한 예외 처리 */
span.selection,
span.selection span {
	display:initial;
}

span.select2-container ul {
	width:100%;
}
span.select2-container li {
	display: list-item;
}

span.select2-container .select2-selection {
	height:43px;
    font: 1rem 'pretendard';
    background: var(--sub-color-1);
    border: 1px solid var(--border-color-3);
    border-radius: 6px;
    color: var(--gray-color-1);
}

span.select2-container .selection .select2-selection .select2-selection__rendered{
	height: 43px;
    line-height: 43px;
    color: var(--gray-color-1);
}

span.select2-container .selection .select2-selection .select2-selection__arrow {
	height: 43px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	height: 43px !important;
}

/* 공통 검색 부분 (추가) */
body {
	position: relative;
}

#commonSearchLayer {
	z-index: 10;
	position: absolute;
	display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    right: 140px;
    top: 80px;
    box-sizing: border-box;
}






/*** Table (추가) ***/
.table_style .table_th,
.table_style .table_td{ position: relative; display:flex; justify-content: space-between; width: 100%; line-height: 130%; text-align: center; }
.table_style .table_th div,
.table_style .table_td div{padding: 15px 5px; }
.table_style .table_th div span,
.table_style .table_td div span{display: flex; min-height: 33px; justify-content: center; align-items: center; }
.table_style .table_th{font-weight: 500; border-top: 1px solid #e1e5ed; border-bottom: 1px solid #e1e5ed;}
.table_style .table_td{ background: #fff; border-bottom: 1px solid #e1e5ed; }
.table_style .table_td div .ico{font-size: 1.1em;}
.table_style .table_td div .ico.on{color: #ffde00;}
.table_style .table_td.on,
.table_style .table_td.on:hover{background: #006ef5; color: #fff;}
.table_style .table_td.no_data {display: block; padding: 10px;}

.table_style .troubleShooting .accent {color:var(--point-color-2);font-weight: bold;}
.table_style .troubleShooting:hover {cursor: pointer;}

/* 전체 공용... */
.table_style .table_td div,
.table_style .table_th div{font-size: 0.92em; flex-basis: 20%; padding: 10px 5px;  text-align: center;}

.table_style.w2 .table_th div,
.table_style.w2 .table_td div{font-size: 0.92em; flex-basis: 50%; padding: 12px 10px;}
.table_style.w2 .table_th div span,
.table_style.w2 .table_td div span{min-height: auto; display: flex; justify-content:center; align-items: center; }
.table_style.w2 .table_td:nth-child(2n){background: #f9f9fb;}

.table_style.w3 .table_th div,
.table_style.w3 .table_td div{font-size: 0.92em; flex-basis: 20%; padding: 10px 5px;  text-align: center;}
.table_style.w3 .table_th div:nth-child(2),
.table_style.w3 .table_td div:nth-child(2){flex-basis: 60%; text-align: left !important;}
.table_style.w3 .table_th div span,
.table_style.w3 .table_td div span{min-height: auto;}
.table_style.w3 .table_td:nth-child(2n){background: #f9f9fb;}
.table_style.w3 .table_td div a{font-size: 0.92em;}

.table_style.w4 .table_th div,
.table_style.w4 .table_td div{font-size: 0.92em; flex-basis: 15%; text-align: center;}
.table_style.w4 .table_th div:nth-child(2),
.table_style.w4 .table_td div:nth-child(2){flex-basis: 5%;}
.table_style.w4 .table_th div:nth-child(3),
.table_style.w4 .table_td div:nth-child(3){flex-basis: 65%; text-align: left !important;}
.table_style.w4 .table_th div span,
.table_style.w4 .table_td div span{min-height: auto;}
.table_style.w4 .table_th div:nth-child(3) span,
.table_style.w4 .table_td div:nth-child(3) span{display: flex; justify-content:flex-start; align-items: center; }
.table_style.w4 .table_td:nth-child(2n){background: #f9f9fb;}
.table_style.w4 .table_td div a{font-size: 0.92em;}

.table_style.w5 .table_th div,
.table_style.w5 .table_td div{font-size: 0.92em; flex-basis: 10%; text-align: center; padding: 10px;}
.table_style.w5 .table_th div:nth-child(1),
.table_style.w5 .table_td div:nth-child(1){flex-basis: 28%;}
.table_style.w5 .table_th div:nth-child(3),
.table_style.w5 .table_td div:nth-child(3){flex-basis: 34%;}
.table_style.w5 .table_th div:nth-child(5),
.table_style.w5 .table_td div:nth-child(5){flex-basis: 18%;}
.table_style.w5 .table_th div span,
.table_style.w5 .table_td div span{display: flex; justify-content:center; align-items: center; }
.table_style.w5 .table_td:nth-child(2n){background: #f9f9fb;}
.table_style.w5 .table_td div a{font-size: 0.92em;}

.table_style.w9 .table_th div,
.table_style.w9 .table_td div{font-size: 0.92em; flex-basis: 8%; text-align: center;}
.table_style.w9 .table_th div:nth-child(4),
.table_style.w9 .table_td div:nth-child(4){flex-basis: 20%;}
.table_style.w9 .table_th div:nth-child(7),
.table_style.w9 .table_td div:nth-child(7),
.table_style.w9 .table_th div:nth-child(8),
.table_style.w9 .table_td div:nth-child(8){flex-basis: 13%;}
.table_style.w9 .table_td:nth-child(2n){background: #f9f9fb;}
.table_style.w9 .table_td div a{font-size: 0.92em;}

.table_style.w10 .table_th div,
.table_style.w10 .table_td div{font-size: 0.92em; flex-basis: 11%; text-align: center;}
.table_style.w10 .table_th div:nth-child(1),
.table_style.w10 .table_td div:nth-child(1){flex-basis: 4%;}
.table_style.w10 .table_th div:nth-child(4),
.table_style.w10 .table_td div:nth-child(4){flex-basis: 17%;}
.table_style.w10 .table_th div:nth-child(2),
.table_style.w10 .table_td div:nth-child(2),
.table_style.w10 .table_th div:nth-child(3),
.table_style.w10 .table_td div:nth-child(3),
.table_style.w10 .table_th div:nth-child(6),
.table_style.w10 .table_td div:nth-child(6){flex-basis: 7%;}
.table_style.w10 .table_th div:nth-child(10),
.table_style.w10 .table_td div:nth-child(10){flex-basis: 15%;}
.table_style.w10 .table_td:nth-child(2n){background: #f9f9fb;}
.table_style.w10 .table_td div a{font-size: 0.92em;}

.tbl_style01 { border-top:1px solid #e1e5ed; overflow:hidden; font-size: 0.92em;border-radius: 0;}
.tbl_style01 thead th,
.tbl_style01 tbody th,
.tbl_style01 tbody td{padding: 15px 5px; border:1px solid #e1e5ed; text-align: center; line-height: 130%;border-radius: 0; }


.tbl_style01.basic thead th,
.tbl_style01.basic tbody th,
.tbl_style01.basic tbody td{padding: 5px; border:1px solid #e1e5ed; text-align: center; line-height: 130%;}


.tbl_style01 tbody td.head{background-color: #f5f6fa;}
/* .tbl_style01 thead th{font-weight: 500; border-bottom:1px solid #e1e5ed; background: #f5f6fa;} */
.tbl_style01 thead th, .tbl_style01 tbody th{font-weight: 500; border-bottom:1px solid #e1e5ed; background: #f5f6fa;}
.tbl_style01 tbody th{text-align: left; padding-left: 20px;}
.tbl_style01 tbody td{background: #fff;}
.tbl_style01 tbody td .ico{font-size: 1.1em;}
.tbl_style01 tbody td .ico a{display: inline-block; width: 100%;}
.tbl_style01 tbody td .ico a:hover{color: #006ef5;}
.tbl_style01 span.input_button{margin: 0;}
.tbl_style01 span.input_button input[type=checkbox]{position:relative;}
.tbl_style01 span.input_button input[type=checkbox]+label{position: absolute; top:0; left: 50%; margin-left:-8px; padding: 0; }
.tbl_style01 span.input_button input[type=checkbox]+label:before{border-color: #ccc;}
.tbl_style01 span.input_button input[type=checkbox]:checked+label:before{border-color: #036ff5;}
.tbl_style01.taC tbody th{text-align: center; padding-left: 0;}

.tbl_style01.small{font-size: 0.84em;}
.tbl_style01.small thead th,
.tbl_style01.small tbody th,
.tbl_style01.small tbody td{padding: 10px 5px 8px;}
.tbl_style01 tbody td.td_left{text-align: left; padding-left: 10px;}

.tbl_style01.basic tbody tr:nth-child(2n) td{background:#f7fafd;}
.tbl_style01.bd_none thead th,
.tbl_style01.bd_none tbody th,
.tbl_style01.bd_none tbody td{border-left: none; }
.tbl_style01.bd_none thead th:last-child,
.tbl_style01.bd_none tbody th:last-child,
.tbl_style01.bd_none tbody td:last-child{border-right: none;}
.bt_none,
.tbl_style01.bt_none thead th{border-top: none; }

.check_point{position: absolute; top:33px; right: 0; width: 350px; padding: 15px 15px 7px; border: 1px solid #e4e4e4; background: #fff; text-align: left; border-radius: 6px; box-shadow: 0 2px 4px 0px rgba(14, 56, 162, 0.2); display: none;}
.check_point ul li{margin-bottom: 8px; line-height: 150%;}



/*** Btn ***/
a.btn{display: inline-block; height: 33px; line-height: 33px; min-width: 80px; font-size: 13px; padding: 0 20px; border-radius: 5px; text-align: center; vertical-align: top;}
button.blue, a.blue{background: #0e38a2; color: #fff; box-shadow: 0px 3px 5px 0px rgba(14, 56, 162, 0.2);}
button.blue, a.blue:hover{background: #092d8a;}
button.light-green, a.light-green{background: #e7ffe5; color: #fff; box-shadow: 0px 3px 5px 0px rgba(1, 59, 14, 0.2);}
button.light-green, a.light-green:hover{background: #e7ffe5;}
button.gray, a.gray{background: #7988a0; color: #fff;}
button.gray:hover, a.gray:hover{background: #99a8bd;}
button.dark, a.dark{background: #343a40; color: #fff;}
button.dark:hover, a.dark:hover{background: #495057;}
button.light-gray, a.light-gray{background: #a8b2c1; color: #fff;}
button.light-blue, a.light-blue{background: #006ef5; color: #fff;}
button.light-blue:hover, a.light-blue:hover{background: #003ce0; box-shadow: 0px 3px 5px 0px rgba(14, 56, 162, 0.2);}
button.stroke, a.stroke{ border: 1px solid #006ef5; background: #fff; color: #006ef5;}
button.stroke:hover, a.stroke:hover{background: #006ef5; color: #fff; box-shadow: 0px 3px 5px 0px rgba(14, 56, 162, 0.2);}
a.stroke-gray{ border: 1px solid #7988a0; background: #fff; color: #6b788e;}
a.stroke-gray:hover{background: #7988a0; color: #fff;}
a.file{padding: 0 12px; min-width: 250px !important; text-align: left;}
a.file i{display: inline-block; float: right; padding-top: 9px;}
a.disable{pointer-events: none; cursor: default;}



#abnomal_wrap{
	height: 400px;
	overflow-y: auto;
}




/* user main의 shipList */
#ship_icon_wrap.section {
    clear: both;
    background: #fff;
    border: 1px solid #eceff5;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    /* text-transform: capitalize; */
}

.ship_icon_list{
  overflow-x: auto;
  display: flex;
  font-size:13px
}

.ship_icon{
  position: relative;
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  width:130px;
  height: 130px;
  box-sizing: border-box;
  margin:5px;
  padding:5px;
  border:3px solid #28a2f7;
  text-align: center;
  border-radius: 10px;
  background-color:#f5f6fa;
}

.ship_icon:focus{
	border: 3px solid #28a2f7;
}

.ship_icon.on{
  background-color:white;
  border-width:9px;
  padding:0px;
/*  box-shadow: 1px 1px 6px #858690;*/
}
.ship_icon.on .icon_ship{
  font-size: 1.2em;

}

.ship_icon_img{
  position: absolute;
  font-size: 23px;
  bottom:-2px;
  text-align: center;
  right:0;
  color:#28a2f7;
  line-height: 20px;
  transition-duration: 0.5s;
}
.ship_icon:hover .ship_icon_img,
.ship_icon.on .ship_icon_img{
  font-size: 32px;
  bottom:-4px;
}
.icon_ship{
  font-weight: 900;
  font-size: 1.2em;
/*  color:#28a2f7;*/
height: 70px;
display: flex;
align-items: center;
text-align: center;

}
.icon_ship div{
  width:100%;
  white-space: break-spaces;
  line-height: 1em;
}
.icon_status{
  text-align: left;
}

.icon_status .status_txt {
	display: inline;
}

.status_dot{
  background-color:#28a2f7;
  display: inline-block;
  width:10px;
  height: 10px;
  border-radius: 5px;
  margin-right:0;

}
.icon_location{
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.9em;
}
.caution{
  border-color:#ed6568;
}

.caution .ship_icon_img{
  color:#ed6568;
}

.caution .status_dot{
  background-color:#ed6568;
}

.notice{
  border-color:#ff8800;
}

.notice .ship_icon_img{
  color:#ff8800;
}

.notice .status_dot{
  background-color:#ff8800;
}

.ship_icon .comment_dot{
  background-color:#00c378;
}

.nodata{
  border-color:#99a;
}

.nodata .ship_icon_img{
  color:#99a;
}

.nodata .status_dot{
  background-color:#99a;
}



.title_area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin: 10px 0 15px;
}

.title_area .left {
    display: flex;
    height: 34px;
    line-height: 34px;
}

.title_area .btn_arrow {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 3px 5px 0px rgba(14, 56, 162, 0.2);
}

.title_area .btn_arrow button, .title_area .btn_arrow a {
    display: block;
    width: 38px;
    text-align: center;
    background: #006ef5;
    color: #fff;
    cursor: pointer;
}

.title_area .btn_arrow button.prev, 
.title_area .btn_arrow a.prev {
    border-right: 1px solid #3a90f9;
}

#wrap p {
    word-break: keep-all;
}

.title_area .title {
    font-size: 1.7em;
    font-weight: 500;
    margin: 0 20px;
}

.hover-point:hover{
	cursor: pointer;
}

.hover-point *:hover {
	cursor: pointer;
}


.wrap.section {
    clear: both;
    background: #fff;
    border: 1px solid #eceff5;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: auto;
    min-height: auto;
    /* text-transform: capitalize; */
}


/* 불필요한 드래그 방지. ex) 버튼의 글자는 드래그되면 불편함 */
.noDrag{
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none
}

/* 로딩 오버레이 */
.loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 10;
	border-radius: 20px;
	gap: 10px;
}

.loading-overlay span {
	color: #666;
	font-size: 14px;
}

.loading-overlay.hidden {
	display: none;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #e1e5ed;
	border-top: 4px solid #0e38a2;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}