@charset "utf-8";

/* Loading Spinner */
.spinner {
	margin: 0;
	width: 70px;
	height: 18px;
	margin: -35px 0 0 -9px;
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center
}

.spinner > div {
	width: 18px;
	height: 18px;
	background-color: #333;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1.4s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.spinner .bounce1 {
	-webkit-animation-delay: -.32s;
	animation-delay: -.32s
}

.spinner .bounce2 {
	-webkit-animation-delay: -.16s;
	animation-delay: -.16s
}

@-webkit-keyframes bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0.0)
	}
	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes bouncedelay {
	0%, 80%, 100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0)
	}
	40% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0)
	}
}

/*
	기본트리 외곽라인 표시
 */
.dd-content-n {
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 30px;
	margin: 5px 0;
	padding: 5px 10px 5px 30px;
	text-decoration: none;
	color: #333;
	border: 1px solid #ccc;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: #fafafa;
}

.dd-content-n:hover {
	color: #2ea8e5;
	background: #fff;
}

/*
	기타 추가 CSS
 */
/* 텍스트 왼쪽 정렬 */
.text-left {
	text-align: left !important;
}

/* spring form 서버 validation text color */
.ser-errors {
	color: orange !important;
}

.policy-message {
	color: blue !important;
}

/* 왼쪽 패딩 제거 */
.no-left-padding {
	 padding-left: 0px !important;
}

/* 오른쪽 패딩 제거 */
.no-right-padding {
	padding-right: 0px !important;
}
	
/* multi select 타이틀 */
.ms-title-container {
	position: relative;
}
.ms-title-container .glyph-icon {
	font-size: 20px;
	line-height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	margin: -15px 0 0 -15px;
	text-align: center;
}
.ms-title-container:after {
	font-size: 0;
	line-height: 0;
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	min-height: 0;
	content: '.';
}
.ms-title-container .ms-title-selectable,
.ms-title-container .ms-title-selection {
	float: left;
	width: 45%;
	color: #555;
	background: #fff;
}
.ms-title-container .ms-title-selection {
	float: right;
}

/* multi select 추가 */
.ms-list400 li {
	border-radius: 3px;
}

.ms-list400 .ms-hover {
	color: #fff;
	background: #00bca4;
}

.ms-container .ms-list400 {
	border-color: #dfe8f1;
}

.ms-container .ms-list400 {
	position: relative;
	overflow-y: auto;
	height: 400px;
	padding: 5px 10px;
	border-width: 1px;
	border-style: solid;
}

.ms-list400 li {
	line-height: 20px;
	margin: 5px 0;
	padding: 3px 10px;
}

.ms-list200 li {
	border-radius: 3px;
}

.ms-list200 .ms-hover {
	color: #fff;
	background: #00bca4;
}

.ms-container .ms-list200 {
	border-color: #dfe8f1;
}

.ms-container .ms-list200 {
	position: relative;
	overflow-y: auto;
	height: 200px;
	padding: 5px 10px;
	border-width: 1px;
	border-style: solid;
}

.ms-list200 li {
	line-height: 20px;
	margin: 5px 0;
	padding: 3px 10px;
}

/* field-description */
.field-description {
	margin: 0;
	padding: 10px 0 0 0;
	list-style: none;
	color: blue;
}

/* modal table td with breakword */
.td200-break-word {
	word-wrap: break-word !important;
	max-width: 200px !important;
}

/* modal table td with breakword */
.td150-break-word {
	word-wrap: break-word !important;
	max-width: 150px !important;
}

/* margin-top-5px */
.mt-5 {
	margin-top: 5px !important;
}
.mt-10 {
	margin-top: 10px !important;
}
.mt-15 {
	margin-top: 15px !important;
}
.mt-20 {
	margin-top: 20px !important;
}

/* margin-left-5px */
.ml-5 {
	margin-left: 5px !important;
}

.ml-2 {
	margin-left: 2px !important;
}

.ml-5 {
	margin-left: 5px !important;
}

.ml-minus-2 {
	margin-left: -2px !important;
}

.ml-minus-5 {
	margin-left: -5px !important;
}

/* Active Tab with Transparent */
.nav-tabs > li.activetrp > a,
.nav-tabs > li.activetrp > a:hover,
.nav-tabs > li.activetrp > a:focus {
	color: #555;
	cursor: default;
	background-color: #fff;
	border: 1px solid #ddd;
	border-bottom-color: transparent;
}