@charset "utf-8";


/**************************************************50
 * form
 **************************************************/
label.select_box{
	display: inline-block;
	position: relative;
}
label.select_box:after{
	content: "\F35D";
	font-size: 160%;
	line-height: 1;
	pointer-events: none;
	position: absolute;
	top: 50%;
	right:0;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
select{
	border: 1px solid #C0C0C0;
	background-color: #FFFFFF;
	color: #212121;
	padding: 0.2em 2.1em 0.2em 0.5em;
}
input[type="text"],
input[type="password"]{
	border: 1px solid #C0C0C0;
	padding: 0.5em 1em;
	transition: all 0.2s ease-out 0s;
	vertical-align: text-bottom;
	width: 100%;
}
input[type="text"]:hover,
input[type="password"]:hover,
textarea:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus{
	border-color: #424242;
}
textarea{
	border: 1px solid #C0C0C0;
	min-height: 12em;
	margin: 0;
	padding: 0.5em 1em;
	resize: vertical;
	transition: all 0.3s ease-out 0s;
	width: 100%;
}

/** -- checkbox -- **/
input[type="checkbox"]{
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	height: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 0;
}
input[type="checkbox"] + label{
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="checkbox"] + label:not(.label_btn){
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="checkbox"] + label:not(.label_btn):before,
input[type="checkbox"] + label:not(.label_btn):after{
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
input[type="checkbox"] + label:not(.label_btn):before{
	content: "\F131";
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
	z-index: 1;
}
input[type="checkbox"] + label:not(.label_btn):after{
	content: "\F132";
	color: transparent;
	font-size: 240%;
	line-height: 1;
	left: -0.05em;
	z-index: 2;
	transition: all 0.1s ease-out 0s;
}
.input_check[class*="error_"]{
	background-color: #FFEBEE;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	input[type="checkbox"] + label:not(.label_btn):after{
		font-size: 40% !important;
	}
}
input[type="checkbox"]:checked + label:not(.label_btn):before{
	color: transparent !important;
}
input[type="checkbox"]:checked + label:not(.label_btn):after{
	color: #FE529A;
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
}
input[type="checkbox"]:disabled + label:not(.label_btn){
	background-color: #F5F5F5;
	color: #9E9E9E;
}
input[type="checkbox"]:focus + label{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
input[type="checkbox"]:disabled + label:not(.label_btn):hover,
input[type="checkbox"]:disabled + label:not(.label_btn):focus{
	box-shadow: none;
	cursor: default;
}
input[type="checkbox"] + label.label_btn{
	border: 1px solid #9E9E9E;
	border-radius: 15px;
	font-size: 80%;
	height: 1.5em !important;
	line-height: 1.5em !important;
	margin: 3px 4px;
	padding: 0 1em;
	transition: all 0.2s ease-out 0s;
}
input[type="checkbox"] + label.label_btn:hover{
	background-color: #F5F5F5;
}
input[type="checkbox"] + label.label_btn:hover,
input[type="checkbox"] + label.label_btn:focus{
	border-color: #212121;
}
input[type="checkbox"]:checked + label.label_btn{
	background-color: #00BCD4;
}
input[type="checkbox"]:checked + label.label_btn:hover{
	background-color: #00ACC1;
}
/*
:-ms-input-placeholder{
	color: #616161;
}
:-webkit-input-placeholder{
	color: #616161;
}
:placeholder-shown{
	color: #616161;
}
*/

/** -- radio -- **/
input[type="radio"]{
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	height: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 0;
}
input[type="radio"] + label{
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="radio"] + label:not(.btn_radio):before,
input[type="radio"] + label:not(.btn_radio):after{
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
input[type="radio"] + label:not(.btn_radio):before{
	content: "\F43D";
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
	z-index: 1;
}
input[type="radio"] + label:not(.btn_radio):after{
	content: "\F43E";
	color: transparent;
	font-size: 240%;
	line-height: 1;
	left: -0.05em;
	z-index: 2;
	transition: all 0.1s ease-out 0s;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	input[type="radio"]:checked + label:not(.btn_radio):after{
		font-size: 40% !important;
	}
}
input[type="radio"]:checked + label:not(.btn_radio):before{
	color: transparent !important;
}
input[type="radio"]:checked + label:not(.btn_radio):after{
	color: #FE529A;
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
}
input[type="radio"]:disabled + label{
	background-color: #F5F5F5;
	color: #9E9E9E;
}
input[type="radio"]:focus + label{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
input[type="radio"]:disabled + label:hover,
input[type="radio"]:disabled + label:focus{
	box-shadow: none;
	cursor: default;
}
input[type="radio"] + .btn_radio{
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.12) !important;
	font-size: 80%;
	cursor: pointer;
	display: inline-block;
	height: 24px;
	line-height: 24px;
	margin: 3px 6px;
	min-width: 80px;
	padding: 0 6px;
	text-align: center;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
input[type="radio"]:checked + .btn_radio{
	background-color: #00BCD4;
}
input[type="radio"] + .btn_radio:hover,
input[type="radio"] + .btn_radio:focus{
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}
.input_radio[class*="error_"]{
	background-color: #FFEBEE;
}


