select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
  }

  select {
	/* ... */
	outline: none;
  }



.container {
	display: flex;
	flex-wrap: wrap;
	max-width: 800px;
	margin: auto;
	padding: 20px;
	/* border: 1px solid #ccc; */
	border-radius: 10px;
}
.form-group {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 15px;

}
.form-group label {
	margin-bottom: 5px;

}
.form-group input,
.form-group select,
.form-group textarea {
	flex: 2;
	border: 0;
	border-radius: 0.1em;
	box-shadow: #97999B 0.1em 0.1em 10px;
	background-color: #fbfbfb;
	line-height: 50px;
	color: #97999B;
	
}
@media (max-width: 300px) {
	.form-group {
		flex-direction: column;
	}
}
.required:after {
	content: "*";
	color: #DA291C;
	/* box-shadow: #d11b06 0.1em 0.1em 10px; */
}
.error {
	color: #DA291C;
	display: none;
	/* box-shadow: #d11b06 0.1em 0.1em 10px; */
}
small {
	display: block;
	margin-top: 5px;
	font-size: 0.9em;
	color: #97999B;
}

button { 
	padding: .4em .8em; 
	background: #DA291C linear-gradient(#DA291C, #820000); 
	border: thin solid #DA291C;
	border-radius: 0 .4em .4em; 
	box-shadow: 0 .2em .4em #B1B3B3; 
	color: white;
	text-shadow: 0 -.05em .05em #333; 
	font-size: 125%; 
	line-height: 1.5;
	width: 20%;
  }



input, select, textarea, button {
	font-size: 1.2em;
	font-family: inherit;
	/* width: 100%; */
}	

::placeholder {
	color:#B1B3B3;
	opacity:1;
	transition: opacity 1s;
	padding-left: 10px;
}

:focus::placeholder { opacity:0  }

:placeholder-shown {
	border:2px solid #DA291C;
}

select {
	/* ... */
	outline: none;
  }
 
 select {
	color:#97999B;
	background-color: #fbfbfb; 
	/* width: 100%;  */
	font-size: 1.2em; 
	font-family: inherit;
	font-weight: 300;
	padding-left: 10px;
	opacity:1;
	line-height: 50px
 }

 /* .dropdown {
	position: relative;
 }

 .dropdown::before {
	font-family: fa-v4compatibility;
	content: "\F1DE";
	font-size: 20px;
	position: absolute;
	right: 15px;
	top: 10px;
	color: #97999B;
 } */




