@charset "UTF-8";

/*----- css update 시 삭세 -----*/
.modal_open .modal_popup.modal_confirm .popup_inner {
	width: 600px
}

.modal_open .modal_popup.modal_confirm .alert_cont {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 24px;
}

.modal_open .modal_popup.modal_confirm .alert_cont .artwork {
	text-align: center;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 128px;
	margin-right: 30px
}

.modal_open .modal_popup.modal_confirm .alert_cont .cont {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-weight: normal
}

/*----- // css update 시 삭세 -----*/

/*----- 가상키보드 버튼 수정 :checkbox -----*/
.btn_mouse_pwd>input[type=password] {
	width: 358px;
	padding-right: 40px;
}

.btn_mouse_pwd>span[data-tk-btntype=img],
.btn_mouse_pwd>span[data-tk-btntype=checkbox] {
	position: absolute;
	right: 0;
	top: 0;
	width: 38px;
	height: 100%
}

.btn_mouse_pwd>span[data-tk-btntype=img] img {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%)
}

.btn_mouse_pwd>span[data-tk-btntype=img] img:hover,
img:focus {
	outline: 2px solid red;
}

.btn_mouse_pwd>span[data-tk-btntype=checkbox] label {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.btn_mouse_pwd>span[data-tk-btntype=checkbox] label:hover,
label:focus {
	outline: 2px solid red;
}

.btn_mouse_pwd>span[data-tk-btntype=checkbox] label>input {
	position: absolute;
	border: 0;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0)
}

.btn_mouse_pwd>button {
	background: none
}

/*----- // 가상키보드 버튼 수정 :checkbox -----*/

/*----- 보안매체 인증번호 입력 폼 수정 -----*/
.security_cert_wrap .cert_number {
	position: relative
}

.box_security_cert.bg_otp .cert_number input {
	border: 0;
	width: 100% !important;
	height: 100%
}

.box_security_cert.bg_otp .cert_number span {
	position: absolute;
	right: 10px
}

/*----- // 보안매체 인증번호 입력 폼 수정 -----*/

/*----- 로딩바 -----*/
.modal_popup.body_loading_box {
	z-index: 1200
}

.body_loading_box .circle {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 50px solid #fff;
	border-top: 50px solid #ff883a;
	border-right: 50px solid #ffa57d;
	border-bottom: 50px solid #ffd4c5;
	border-left: 50px solid #fef0e7;
	border-radius: 50em;
	width: 250px;
	height: 250px;
	animation-name: spinCircle;
	animation-duration: .6s;
	animation-iteration-count: infinite;
	animation-timing-function: linear
}

@-webkit-keyframes spinCircle {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes spinCircle {
	0% {
		transform: translate(-50%, -50%) rotate(0);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/*----- // 로딩바 -----*/