div#service_requests {
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
}

#service_requests h3{
	text-align:center;
}

#service_requests input[type=text], #service_requests input[type=date], #service_requests select {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

#service_requests [type=submit] {
	width: 100%;
	background-color: #4CAF50;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

#service_requests [type=submit]:hover {
  background-color: #45a049;
}

#service_requests .field_error {
	border:1px solid red !important;
}

.loading{
	visibility:hidden;
	width: 20px;
	position: relative;
	top: 2px;
}

.loading.show{
	visibility:visible;
}

.form_msg{
	display:none;
	text-align:center;
}