@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap&subset=latin-ext");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

/* INPUT CHECKBOX AND RADIO */
label {
	position: relative;
	cursor: pointer;
	color: #444444;
	font-size: 13px;
	font-weight: normal;
	line-height: 1.8em;
	letter-spacing: 0px;
}
span {
	margin-left: 0px;
	padding-left: 0px;
}
input[type="checkbox"], input[type="radio"]{
	position: absolute;
	right: 9000px;
}
/* CHECKBOX */
input[type="checkbox"] + .label-text:before{
	content: "\f096";
	font-family: "FontAwesome";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	width: 1em;
	display: inline-block;
	margin-right: 5px;
}
input[type="checkbox"]:checked + .label-text:before{
	content: "\f14a";
	color: #FFB808;
	animation: effect 250ms ease-in;
}
input[type="checkbox"]:disabled + .label-text{
	color: #aaa;
}
input[type="checkbox"]:disabled + .label-text:before{
	content: "\f0c8";
	color: #ccc;
}
/* CHECKBOX */
/* RADIO */
input[type="radio"] + .label-text:before{
	content: "\f10c";
	font-family: "FontAwesome";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing:antialiased;
	width: 1em;
	display: inline-block;
	margin-right: 5px;
}
input[type="radio"]:checked + .label-text:before{
	content: "\f192";
	color: #FFB808;
	animation: effect 250ms ease-in;
}
input[type="radio"]:disabled + .label-text{
	color: #aaa;
}
input[type="radio"]:disabled + .label-text:before{
	content: "\f111";
	color: #ccc;
}
/* RADIO */
@keyframes effect {
	0% {transform: scale(0); }
	25% {transform: scale(1.3); }
	75% {transform: scale(1.4); }
	100% {transform: scale(1); }
}
/* INPUT CHECKBOX AND RADIO */

/* FIELDS */
.form-group {
	margin-bottom: 0px;
}
.form-group input {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    padding: 18px 0px 18px 20px;
    letter-spacing: 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    -moz-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
	border: none;
    border-bottom: 1px solid #000000;
    background-color: #C4C4C4;
	
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	-ms-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	transition: all .5s ease-out
}
.form-control:focus {
	color: #000000 !important;
	border: none;
	border-bottom: 1px solid #000000;
    box-shadow: none;
}
/* Chrome, Firefox, Opera, Safari 10.1+ */
.form-control::placeholder {
	font-size: 10px;
	font-weight: normal;
	color: #000000;
	letter-spacing: 1px;
	/* Firefox */
	opacity: 1;
}
/* Internet Explorer 10-11 */
.form-control:-ms-input-placeholder {
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}
/* Microsoft Edge */
.form-control::-ms-input-placeholder {
	font-size: 12px;
	font-weight: normal;
	color: #000000;
 }
.form-control::-webkit-input-placeholder {
	font-size: 12px;
	font-weight: normal;
	color: #000000;
}
.with-errors {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-align: left;
	padding-top: 10px;
    padding-bottom: 0px;
	color: #000000;
	letter-spacing: 0px;
}
.has-error .form-control {
    border-color: #000000;
}
.d-none {
	display: none !important;
}
/* FIELDS */

.messages {
	margin-top: 20px;
}
.g-recaptcha {
	width: 100% !important;
	height: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}
.row-submit {
	padding-top: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
	background-color: #ffffff;
	border: 2px solid rgba(255,184,8,1.00);
}



