
.form-styled {
	width: 100%;
	margin: 1em 0;
}
.form-styled-horiz {}
.form-styled-vert {}
.form-styled-vert .form-field {
	padding-bottom: 1rem;
}

.form-styled input,
.form-styled textarea,
.form-styled select {
	width: 100%;
	max-width: 100%;
	padding: 15px;
	border: solid 2px #eee;
	margin: 0;
	line-height: 150%;
	background: #fff;
	border-radius: 4px;

	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}
.form-styled select {
	-moz-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
	appearance: none;

	background-image: url(../icons/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center right 10px;
}

.form-styled input:focus,
.form-styled textarea:focus,
.form-styled select:focus {
	border: solid 2px #ddd;
	outline: none;
}

.form-styled ::-webkit-input-placeholder {color:#cccccc;}
.form-styled :-moz-placeholder {color:#cccccc;}
.form-styled ::-moz-placeholder {color:#cccccc;}
.form-styled :-ms-input-placeholder {color:#cccccc;}

.form-styled input:-webkit-autofill,
.form-styled input:-webkit-autofill:focus {
    -webkit-box-shadow:0 0 0 50px white inset;
    -webkit-text-fill-color: #333;
}

.form-styled input#search {
	background-image: url(../icons/search.svg);
	background-position: right center;
	background-repeat: no-repeat;
}

.form-styled input[type="submit"] {
	position: relative;
	width: 100%;
	padding: 15px;

	background-color: #eee;
	font-weight: bold;
	color: #b3b1aa;

	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}
.form-styled input[type="submit"]:hover {
	border: solid 2px #ddd;
}

/*
.form-styled input:required,
.form-styled textarea:required {
	background: #fff url(../img/form/validation-asterisk.svg) right center no-repeat;
}

.form-styled input:focus:required:invalid,
.form-styled textarea:focus:required:invalid {
}

.form-styled input:focus:required:valid,
.form-styled textarea:focus:required:valid,
.form-styled input:required:valid,
.form-styled textarea:required:valid {
	background: #fff url(../img/form/validation-true.svg) right center no-repeat;
	border:solid 1px #73c412;
}
*/



/*
.form-styled input[type="radio"],
.form-styled input[type="checkbox"] {
    display:none;
}
.form-styled input[type="radio"] + label,
.form-styled input[type="checkbox"] + label {
	cursor: pointer;
}
.form-styled input[type="radio"] + label:before,
.form-styled input[type="checkbox"] + label:before {
    display: inline-block;
    content: '';
    width: 12px;
    height: 12px;
	margin-right: 5px;
    border-radius: 50%;
    border: 1px solid #888;
}
.form-styled input[type="checkbox"] + label:before {
	border-radius: 2px;
}
.form-styled input[type="radio"] + label:hover:before,
.form-styled input[type="checkbox"] + label:hover:before {
	border: 2px solid #888;
}
.form-styled input[type="radio"]:checked + label:before,
.form-styled input[type="checkbox"]:checked + label:before {
    border: 2px solid #888;
    background: #888;
}
*/
