/*Form*/
.formBox {
	width: 100%;
	margin-bottom: 15px;
	text-align: center;
}
.formBox > div {
	width: 100%;
	display: inline-block;
	text-align: left;
}
.formBox h2 {
	letter-spacing: normal;
}


.formDes {
	width: 100%;
	display: inline-block;
}
.formList {
	letter-spacing: -0.3em;
}
.form-item  {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
}
.form-item .des {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 3px;
	font-size: 1.2rem;
	line-height: 15px;
	color: #757575;
}
.form-label {
	width: 100%;
	position: relative;
	display: inline-block;
	vertical-align: top;
	font-size: 1.4rem;
	margin-bottom: 3px;
	font-weight: 600;
	color: #2c3740;
	letter-spacing: -0.5px;
}
.form-label b {
	color: #cf1231;
}
.form-label > span {
	display: inline-block;
	padding-left: 10px;
}
.form-label > span > i {
	background: #cf1231;
	padding: 5px 7px;
	color: #fff;
	bottom: 0;
	font-weight: normal;
	font-size: 1.2rem;
	position: absolute;
	z-index: 10;
	border-radius: 5px;
}
.form-label > span > i::before {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	bottom: -6px;
	left: 10px;
	z-index: 10;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #cf1231;
}
.formResult {
	letter-spacing: normal;
}

/*Text*/
.form-control {
	height: 40px;
	padding: 6px 12px;
	margin: 0 0 18px;
	border: 2px solid #ddd;
	border-radius: 0;
	background-color: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0,0.1);
	font-size: 1.3rem;
	resize: none;
	transition: all 0.3s ease;
}
.main-filter .form-control {
	border: 2px solid #fff;
}
textarea.form-control {
	height: 100px;
}

/*Date*/
input.date  {
	width: calc(50% - 10px);
}
.date-item {
	margin: 0 -10px 18px;
	letter-spacing: -0.3em;
}
.date-item input:first-child,
.date-item input:last-child {
	border-radius: 0px;
}
.date-item > input {
	width: calc(50% - 20px);
	display: inline-block;
	margin: 0 10px;
	letter-spacing: normal;
}
input.date,
input.time,
.date-item input  {
	background-image: url(../images/ico/calendar.svg);
	background-position: calc(100% - 8px) 50%;
	background-repeat: no-repeat;
	background-size: 16px;
	text-align: center;	
}
input.time {
	width: 25%;
	background-image: url(../images/ico/clock.svg);
}


/*Checkbox & Radio*/
.checkboxList,
.radioList {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 13px;
}
.checkboxList label,
.radioList label {
	width: 100%;
	padding: 0 15px 0 23px;
	margin: 0 0 7px 0;
	position: relative;
	cursor: pointer;
	font-size: 1.3rem;
	line-height: 14px;
	font-weight: 600;
	letter-spacing: -0.5px;
}
.checkboxList label em,
.radioList label em {
	color: #ccc;
	font-style: normal;
	font-size: 1.1rem;
	font-weight: normal;
	display: inline-block;
	padding-left: 5px;
}
.checkboxList label input,
.radioList label input,
.checkboxColorList label input {
	display: none;
}
.checkboxList label span::before,
.radioList label span::before {
	content: "\f00c";
	display: block;
	border: 1px solid #ddd;
	background-color: #F5F5F5;
	width: 17px;
	height: 17px;
	position: absolute;
	left: 0;
	line-height: 16px;
	top: calc(50% - 9px);
	font-family: "FontAwesome";
	font-size: 0rem;
	color: #0c93d2;
	text-align: center;	
	transition: all 0.3s ease;
}

.checkboxList input:checked + span::before {
	font-size: 1.2rem;
}

.radioList label span::before {
	content: "\f111";
	border-radius: 100%;
	line-height: 15px;
}
.radioList input:checked + span::before {
	font-size: 1.0rem;
}

.checkboxColorList {
	letter-spacing: -0.3em;
	margin: 0 -3px 12px;
}
.checkboxColorList label {
	width: calc(20% - 6px);
	margin: 0 3px 6px;
	display: inline-block;
	cursor: pointer;
}
.checkboxColorList label span {
	width: 100%;
	height: 30px;
	display: block;
	transition: all 0.3s ease;
	position: relative;
}
.checkboxColorList label span::before {
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid #FF8A65;
	position: absolute;
	top: 0;
	left: 0; 
	transition: all 0.3s ease;
	opacity: 0;
}
.checkboxColorList label span::after {
	content: "";
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border: 2px solid #fff;
	position: absolute;
	top: 1px;
	left: 1px; 
	transition: all 0.3s ease;
	opacity: 0;
}
.checkboxColorList label input:checked + span::after,
.checkboxColorList label input:checked + span::before {
	opacity: 1;
}

/*Hover*/
.form-control:focus, 
.form-control:hover, 
.form-control:active,
.checkboxList label:hover span::before,
.radioList label:hover span::before,
.checkboxColorList label:hover span::before,
.filter form .form-control:focus,
.filter form .form-control:hover,
.filter form .form-control:active {
	outline: none;
	border-color: #0c93d2;
    box-shadow: 0 0 10px rgba(12,147,210 ,0.6);
    background-color: #fff;
    opacity: 1;
}


/*Captcha*/
.captcha-box {
	width: 70%;
}
.captcha-box input {
	width: 90px;
	display: inline-block;
	vertical-align: bottom;
	text-align: center;
}
.captcha-box a {
	height: 40px;
	width: 110px;
	display: inline-block;
	vertical-align: bottom;
	margin-bottom: 18px;
	cursor: pointer;
	margin-left: 5px;
	background: #0c93d2;
}

.captcha-box a img {
	width: 100%;
	height: 40px;
	border: none;
}

/*Button*/
.formBtn {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}
.captcha-box + .formBtn {
	width: 30%;
	text-align: right;
	vertical-align: bottom;
}
.formBtn button,
.formBtn span {
	display: inline-block;
	vertical-align: top;
	min-width: 150px;
	height: 40px;
	line-height: 40px;	
	background: #0c93d2;
	color: #fff;
	border: none;
	padding: 0 10px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 18px;
	text-align: center;
	outline: none;
	font-size: 1.3rem;
	letter-spacing: normal;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
	transition: all 0.3s ease;
}


.formBtn span,
.formBtn.loading button {
	display: none;
}
.formBtn.loading span {
	display: inline-block;
	padding: 0;
}
.formBtn span i {
	font-size: 2.6rem;
	width: 32px;
	height: 40px;
	padding: 0;
	margin: 0;
	line-height: 40px;
	text-indent: 5px;
	text-align: left;
}
.formBtn button:hover {
	background: #45b5e9;
}

/*Verification*/
.verification {
	width: 100%;
}
.verification .info,
.verification .data,
.verification .action {
	width: 100%;
	display: inline-block;
	margin-bottom: 10px;
	text-align: left;
}

.verification .action {
	letter-spacing: -0.3em;
}
.verification .action > div {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: normal;
}
.verification .action > div:last-child {
	text-align: right;
}
.verification .action .editData {
	cursor: pointer;
}

/*Form End*/


.select-loading {
	width: 100%;
	min-height: 81px;
	text-align: center;	
	line-height: 75px;
}
.select-loading i {
	font-size: 2.0rem;
	color: #0c93d2;
}


@media screen and (max-width: 550px) {
	.captcha-box + .formBtn,
	.captcha-box,
	.formBtn span {
		width: 100%;
		text-align: center;
	}
	.captcha-box {
		text-align: left;
	}
	.formBtn button {
		width: 100%;
	}	
}


