.feedbackform {
	display:block;
}
/****************************************************************/
::-webkit-input-placeholder {font-family:Arial, Helvetica, sans-serif; color:#666; font-size: 12px;}
:-moz-placeholder {font-family:Arial, Helvetica, sans-serif; color:#666; font-size: 12px;}
::-moz-placeholder {font-family:Arial, Helvetica, sans-serif; color:#666; font-size: 12px;}
:-ms-input-placeholder {font-family:Arial, Helvetica, sans-serif; color:#666; font-size: 12px;}
/****************************************************************/
.form-wrapper{
	display: grid; 
	margin:auto; 
	grid-auto-flow: dense; 
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 10px;
	margin-bottom: 10px;
	position:relative;
} 

/****************************************************************/
.feedbackform input[type=text],
.feedbackform input[type=number],
.feedbackform input[type=tel],
.feedbackform input[type=email],
.feedbackform input[type=date],
.feedbackform input[type=file],
.feedbackform input[type=submit],
.feedbackform textarea,
.feedbackform select
{
	border: 2px solid #EEE;
	border-radius:5px;
	padding: 20px;
	outline:none;
	width: 100%;
	-moz-appearance: none;
	-webkit-appearance: none;
	
	}
.domain{
	position:absolute;
	font-family: FontAwesome;
	max-width:60px;
	top:2px;
	right:2px;
	color:#333 !important;
	background-color:#FFF !important;
	cursor:pointer;
	border:0px  !important;
	}
/****************************************************************/
.feedbackform input[type=submit]
{
	color:#fff;
	background-color:rgba(0,0,0,1.00);
	cursor:pointer;
}
.feedbackform input[type=submit]:hover{
	background-color:rgba(57,192,193,1);
}


