  *:focus {outline: none;}

.form-hint, .required-notification {font-size: 11px;}

/* DEFAULT FORM */
/*-----------------------------------------------------*/
.form-default table {
	width: 100%;
}

.form-default tr.table-two-first {
	width: 47%;
	float: left;
	display: inline-block;
	padding: 0 3% 0 0;
}

.form-default tr.table-two-second {
	width: 47%;
	float: left;
	display: inline-block;
	
}
.form-default tr.table-two-first input {
	width: 100%;
}
 
.form-default tr.table-two-second input {
	width: 100%;	
}

.form-default label {
	color: #333;
	font-size: 13px;
	font-family: MuliBold;
	width: 100%;
	display: inline-block;
	float: left;
	padding: 5px 0 0 0;
}

.form-default input {
	height: 16px;
	font-size: 13px;
	width: 97%;
	font-family: OpenSansRegular, Arial, sans-serif;	
	padding: 5px 5px;
	margin-top: 2px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
}

.form-default textarea {
	width: 97%;
	padding: 5px 5px;
	margin-top: 2px;
	margin-bottom: 20px; 
	font-size: 13px;
	font-family: OpenSansRegular, Arial, sans-serif;
	border: 1px solid #ccc;
}

.form-default select {
	width: 98%;
	height: 28px;
	padding: 0 5px;
	margin-top: 2px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	font-size: 13px;
	font-family: OpenSansRegular, Arial, sans-serif;
}
.form-default select .dropdown {
	font-size: 13px;
}


.form-default ul {
    width: 100%;
    list-style-type: none;
	list-style-position: outside;
	margin: 35px 0 15px 0;
	padding: 0px;
}

.form-default li {
	color: #000;
	font-size: 14px;
	font-weight: normal;
	font-family: OpenSansRegular, Arial, sans-serif;
	padding: 0 0 12px 0; 
	position: relative;
}

.form-default ul.selection li {
	display: inline-block;
	margin-right: 12px; 
}

.form-default .in-radio {
	width: 15px;
	height: 15px;
	margin: 0 5px 0 0;
}



.form-default input:required, .form-default textarea:required {
	background: #fff url(form-red-asterisk.png) no-repeat 98% center;
}

.form-default input:required:valid, .form-default textarea:required:valid {
	background: #fff url(form-valid.png) no-repeat 98% center;
	border-color: #ccc;
}

.form-default input:focus:invalid, .form-default textarea:focus:invalid {
	background: #fff url(form-invalid.png) no-repeat 98% center;
	border-color: #ccc;
}


.form-hint {
	background: #9a3324;
	border-radius: 3px 3px 3px 3px;
	color: white;
	margin-left: 8px;
	padding: 1px 6px;
	z-index: 999; /* hints stay above all other elements */
	position: absolute; /* allows proper formatting if hint is two lines */
	display: none;
}

.form-hint::before {
	content: "\25C0";
	color: #9a3324;
	position: absolute;
	top: 1px;
	left: -6px;
}
.form-default input:focus + .form-hint {display: inline;}

.form-default input:required:valid + .form-hint {background: #28921f;}

.form-default input:required:valid + .form-hint::before {color:#28921f;}


/* BUTTONS */
/*-----------------------------------------------------*/
button.submit {	
	background-color: #9a3324;
    border: 1px solid #9a3324;
    color: #FFFFFF;
    font-family: 'Open Sans',Helvetica,sans-serif;
    font-weight: normal;
    border-radius: 4px;
	padding: 4px 20px;
	text-align: center;
	font-size: 14px;
	width: 110px;
	height: 30px;
	margin-top: 15px;
}

button.submit:hover {
	background-color: #9A3324;
	box-shadow:inset 0 0 0 150px rgba(0,0,0,.1);border:1px solid rgba(0,0,0,.1)
}

button.submit:active {
	background-color: #9A3324;
	box-shadow:inset 0 0 0 150px rgba(0,0,0,.1);border:1px solid rgba(0,0,0,.1)
}


/*@media screen and (max-width: 1000px) {
	.form-default table {
		width: 100%;
	}

	.form-default tr.table-two-first {
		width: 48%;
		padding: 0 3% 0 0;
	}
	.form-default tr.table-two-second {
		width: 48%;
	}
	.form-default tr.table-two-first input {
		width: 96%;
	}
	.form-default tr.table-two-second input {
		width: 96%;	
	}
	
	.form-default input {
		width: 97%;
	}

	.form-default textarea {
		width: 97%;
	}
}*/

@media screen and (max-width: 400px) {

	.form-default tr.table-two-first input {
		width: 95%;
	}
	.form-default tr.table-two-second input {
		width: 95%;	
	}
	
	.form-default input {
		width: 96%;
	}

	.form-default textarea {
		width: 96%;
	}


}