select.input-text#recordCountPerPage {
	width: 160px;
}

.myPop .popup-con.registration-auth-popup .frm-input .frm-input-phone input[type="text"] {
	width: 100%;
}

#cmmnAlert>.popup-wrap.myPop {
	display: block;
}
/* 색상-전경 */
.color_red {color: #c70000 !important;}

/* loading bar */
.loading {
	position: absolute;
	left: calc(50% - 200px);
	top: calc(50% - 100px);
	box-sizing: border-box;
	background: #fff;
	;
	border: 3px solid #ddd;
	border-radius: 15px;
	box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 400px;
	height: 200px;
	z-index: 999;
}

.loading .loading-title {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3333333333;
	color: #151B26;
	text-align: center;
	animation-name: flicker;
	animation-duration: 1600ms;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	margin-bottom: 20px;
}

.loading .progress-bar {
	width: 300px;
	height: 12px;
	background-color: #e5eaef;
	border-radius: 100px;
	position: relative;
	overflow: hidden;
}

.loading .progress-bar-gauge {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 12px;
	border-radius: 100px;
	background-color: #252D68;
	animation-name: loading-bar;
	animation-duration: 1600ms;
	animation-iteration-count: infinite;
	animation-timing-function: ease-out;
}

/* loading bar 애니메이션 효과 */
@keyframes flicker {
	0% {
		opacity: 0.7;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0.7;
	}
}

@keyframes loading-bar {
	0% {
		width: 0;
		opacity: 0;
	}
	50% {
		width: 100%;
		opacity: 1;
	}
	100% {
		width: 100%;
		opacity: 0;
	}
}