/**
* =============================================================================
* @	file     : jssInputbox.css
* -----------------------------------------------------------------------------
* 
* @ project  : 
* @ category : 
* @ author   : JANG SANG SEOK
* @ since    : 2021-11-03
* @ desc     : jss-input - 입력박스 css
* 
* =============================================================================
*/

@charset "UTF-8";

	/**************************************************************************
	* 01. INPUT [.jss-input]
	---------------------------------------------------------------------------
	* 02. INPUT Animation border [.jss-input-ani]
	---------------------------------------------------------------------------	
	* 09. [공통] INPUT BOX SIZE 설정
	**************************************************************************/
	
/**
| -------------------------------------------------------------------------
| @ 01. INPUT [.jss-input]
| -------------------------------------------------------------------------
*/
/* INPUT 설정 **/
.jss-input {
	font-family: '돋움', Dotum;
	font-size: 14px;
	color: #000;
	border: 1px solid #bbbbbb;
	background-color: #fff;
	outline: none;
	width: 100%;
	height: 24px;
	line-height: 24px;
	padding-left: 15px;
	padding-right: 15px;
}
.jss-input::placeholder 				{ color: #b8b8b8; font-size: 13px; }
.jss-input::-webkit-input-placeholder 	{ color: #b8b8b8; font-size: 13px; }
.jss-input:-ms-input-placeholder 		{ color: #b8b8b8; }
.jss-input:-moz-placeholder 			{ color: #b8b8b8; }
.jss-input[readonly] {
	background-color: #f3f3f3;
}
.jss-input:focus {
	outline: 0 none;
	border: 1px solid #585858;
	background-color: #fffdf7;
}

/**
| -------------------------------------------------------------------------
| @ 02. INPUT Animation border [.jss-input-ani]
| -------------------------------------------------------------------------
*/
/* INPUT BORDER 설정 **/
.wrap-jss-input-ani {
	position: relative;
	width: 100%;
	background-color: #fff;
	border: 1px solid #bbbbbb;
	/*border-radius: 2px;**/
	display: inline-block;
}
/* INPUT 설정 **/
.jss-input-ani {
	font-family: '돋움', Dotum;
	font-size: 14px;
	color: #000;
	border: 0px solid #bbbbbb;
	background-color: #fff;
	outline: none;
	width: 100%;
	height: 24px;
	line-height: 24px;
	padding-left: 15px;
	padding-right: 15px;
	/*padding: 5px 15px;**/
}
.jss-input-ani::placeholder 				{ color: #b8b8b8; font-size: 13px; }
.jss-input-ani::-webkit-input-placeholder 	{ color: #b8b8b8; font-size: 13px; }
.jss-input-ani:-ms-input-placeholder 		{ color: #b8b8b8; }
.jss-input-ani:-moz-placeholder 			{ color: #b8b8b8; }
.jss-input-ani[readonly] {
	background-color: #f3f3f3;
}
/* INPUT ANIMATION FOCUS 설정  **/
.jss-input-ani-focus {
	position: absolute;
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	top: -1px;
	left: -1px;
	pointer-events: none;
	border: 1px solid #000; /* BORDER 컬러 설정 **/
	/*border-radius: 3px;**/	
	visibility: hidden;
	opacity: 0;	
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;	
	-webkit-transform: scaleX(1.1) scaleY(1.3);
	-moz-transform: scaleX(1.1) scaleY(1.3);
	-ms-transform: scaleX(1.1) scaleY(1.3);
	-o-transform: scaleX(1.1) scaleY(1.3);
	transform: scaleX(1.1) scaleY(1.3);
}
.jss-input-ani:focus {
	outline: 0 none;
	/*border: 1px solid #585858;**/
	background-color: #fffdf7;
}
.jss-input-ani:focus + .jss-input-ani-focus {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/**
| -------------------------------------------------------------------------
| @ 09. [공통] INPUT BOX SIZE 설정 	
| -------------------------------------------------------------------------
*/
input.xsmall {
	height: 24px;
	line-height: 24px;
}
input.small {
	height: 26px;
	line-height: 26px;
}
input.normal {
	height: 28px;
	line-height: 28px;
}
input.medium {
	height: 30px;
	line-height: 30px;
}
input.regular {
	height: 32px;
	line-height: 32px;
}
input.large {
	height: 34px;
	line-height: 34px;
}
input.xlarge {
	height: 36px;
	line-height: 36px;
}
input.x2xlarge {
	height: 38px;
	line-height: 38px;
}
input.x3xlarge {
	height: 40px;
	line-height: 40px;
}
input.x4xlarge {
	height: 42px;
	line-height: 42px;
}
input.x5xlarge {
	height: 44px;
	line-height: 44px;
}
input.x6xlarge {
	height: 46px;
	line-height: 46px;
}
input.x7xlarge {
	height: 48px;
	line-height: 48px;
}
input.x8xlarge {
	height: 50px;
	line-height: 50px;
}
input.x9xlarge {
	height: 52px;
	line-height: 52px;
}
input.x10xlarge {
	height: 54px;
	line-height: 54px;
}
input.x11xlarge {
	height: 56px;
	line-height: 56px;
	font-size: 15px;
}
input.x12xlarge {
	height: 58px;
	line-height: 58px;
	font-size: 15px;
}
input.x13xlarge {
	height: 60px;
	line-height: 60px;
	font-size: 15px;
}