@charset "utf-8";


.form-page .form-contents label input[type="radio"] {
    width: auto;
}


form label input[type="radio"] {
	position:relative;
	display: none;
}
form label input[type="radio"] + span{
	position: relative;
	margin: 0.5em 0;
	padding-left: 30px;
	display: inline-block;
}
form label input[type="radio"] + span:before{
	content: "";
	display: inline-block;
	position: absolute;
    top: -2px;
	left: 0px;
	width: 20px;
	height: 20px;
	border: 1px solid #393939;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
form label input[type="radio"]:checked + span{
	color: #393939;
}
form label input[type="radio"]:checked + span:after{
	content: "";
	display: block;
	position: absolute;
	top: 2px;
    left: 4px;
    width: 12px;
    height: 12px;
	background-color: #393939;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}



form label input[type="checkbox"] {
	position:relative;
	display: none;
}
form label input[type="checkbox"] + span{
	position: relative;
	margin: 0.5em 0;
	padding-left: 30px;
	display: inline-block;
}
form label input[type="checkbox"] + span:before{
	content: "";
	display: inline-block;
	position: absolute;
    top: -2px;
	left: 0px;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	border: 1px solid #393939;
}
form label input[type="checkbox"]:checked + span{
	color: #393939;
}
form label input[type="checkbox"]:checked + span:after{
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 7px;
	width: 6px;
	height: 12px;
	transform: rotate(40deg);
	border-bottom: 3px solid #393939;
	border-right: 3px solid #393939;
}

.contact-form-page form {
    max-width: none;
}

.form-contents {
   max-width: none;
    margin: 0 15px;
}

.form-contents .col-md-3 {
	text-align: left;
}

.form-contents .row > div {
	padding: 0 ;
}

.contact-form-page .form-contents p span.red {
    padding: 0;
    margin: 0;
    font-size: 16px;
    background-color: #0000;
    color: #e31449;
}

.contact-form-page .submit-form > input.back{
    color: #393939;
    background-color: #c8c9c9;
    line-height: 43px;
    padding: 5px 32px;
    font-size: 15px;
    font-weight: normal;
    margin: auto 10px auto auto;
}

.mb-5p{
	margin-bottom: 5px;
}