/****Form****/

#form {
margin-top: -4px;
}

#form input {
	font-size:16px;
	color:#5e5e5e;
	line-height: 20px;
 padding: 5px 14px;
	width: 100%;
	height: 30px;
	float:left;
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
	
	
	border: 0 solid transparent;
	border-radius: 5px;	
	box-shadow: 0 0 3px 0 var(--color1);
}

#form textarea {
	font-size:16px;
	color:#5e5e5e;
	height: 273px;
	overflow: auto;
 padding: 5px 14px;
	line-height: 20px;
	width: 100%;
	position: relative;
	resize:none;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
	float:left;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	
	border: 0 solid transparent;
	border-radius: 5px;	
	box-shadow: 0 0 3px 0 var(--color1);
	
}
#form label {
	position:relative;
	display: block;
	min-height: 45px;
	width: 100%;
	float: left;
}

fieldset{
	padding: 0;
	border: 0;
}

fieldset div.btns{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

div.btns a.btn{
	margin: 0;
}

#form .error, #form .empty {
	color: #FF0000;
	display: none;
	font-size: 11px;
	line-height:14px;
	width:auto;
	position: absolute;
	z-index: 999;
	right: 5px;
	top: 8px;
	float:left;
}


#form .error-empty {
	display:none;
	float:left;
}

.btns {
	position:relative;
	padding-top: 39px;
	text-align: right;

}


.content .btns a.btn {
	cursor: pointer;
	min-width: 10px;
}


#form .message {
	width: 100%;
}


.message br {
	height: 0;
	line-height: 0;
}

#form .success {
	display: none;
	position: absolute;
	width: 220px;
	background: #fff;
	border: 1px solid #e6e6e6;
	text-align: center;
	color: #5e5e5e;
	padding: 20px 10px;
	z-index: 999;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
}



.success_wrapper {
	position: relative;	
}