@charset "UTF-8";
/* CSS Document */


input[type=text],
input[type=email],
input[type=password],
textarea {
	padding: 5px;

}


input[type=checkbox],
input[type=radio] {
	display: none;
	vertical-align: middle;
}

.checkbox,
.radio {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin-top: 0;
	margin-right: 2px;
	margin-left: 0;
	margin-bottom: 0px;
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 30px;
	padding-bottom: 5px;
	border-radius: 8px;
	/* [disabled]background-color: #f6f7f8; */
	vertical-align: middle;
	cursor: pointer;
	/* [disabled]min-width: 124px; */
	white-space: nowrap;
}

.checkbox:hover {
	background-color: #e2edd7;
}


.checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 16px;
	left: 5px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}

.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 16px;
	left: 11px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #53b300;
	border-bottom: 3px solid #53b300;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type=checkbox]:checked+.checkbox:before {
	opacity: 1;
}

input[type=radio]:checked+.radio:before {
	opacity: 1;
}

.radio {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin-top: 0;
	margin-right: 0px;
	margin-left: 0;
	/* [disabled]margin-bottom: 14px; */
	padding-top: 0px;
	padding-left: 28px;
	padding-bottom: 0px;
	vertical-align: middle;
	cursor: pointer;
	min-width: 77px;
	/* [disabled]width: 20px; */
}

.radio:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 20px;
	z-index: 10;
	content: '';
}

.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 10px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #53b300;
	content: '';
	opacity: 0;
	z-index: 100;
}

.select_1 {
	margin-right: 5px;
}

select {
	outline: none;
	text-indent: 0.01px;
	text-overflow: '';
	background-color: #FFFFFF;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	-webkit-appearance: none;
	appearance: none;
	padding: 10px;
	width: 100%;
	border-radius: 5px;
	border: 1px solid #c8c7c3;
}

select option {
	background-color: #fff;
	color: #333;
}

select::-ms-expand {
	display: none;
}

select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #828c9a;
}

.select-wrap {
	position: relative;
}

.select-wrap:before {
	z-index: 1;
	position: absolute;
	display: block;
	right: 15px;
	top: calc(50% - 0.5em);
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	color: #7F878C;
	pointer-events: none;
}


.submit_btn {
	background-color: #FF8A00;
	border-style: none;
	color: #FFFFFF;
	padding: 20px;
	border-radius: 5px;
	text-align: center;
	width: 250px;
	font-size: 18px;
	font-weight: bold;
}

input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}