body{
	font-family: source sans pro, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: #fff;
	text-align: left;
}
h1,h2,h3{
	color: #fff;
	text-align: center;
	font-weight: 500;
	text-shadow: 1px 1px 2px #d1a94b;
}
h4, h5{
  color: #000;
  text-align: left;
}
li{
  list-style-type:square;
  text-align: left;
}


#container{
	width : 40%;
	margin: 0 auto;
	margin-top: 10px;
	padding: 10px;
	background-color: #0171bb;
}

@media screen and (max-width: 767px) {
  #container{
		width : 90%;
		margin: 0 auto;
		margin-top: 10px;
		padding: 10px;
		background-color: #0171bb;
	}
}
#form{
	border-radius: 4px;
}
#alert{
	background-color: #00A65A;
	height: auto;
	text-align: left;
	border-radius:4px;
	margin-top:15px;
	margin-bottom:10px;
	padding: 5px; 
	color: #FFF;
}
#foot{
	text-decoration:none;
	font-size: 14px;
	color:#88A1BF;
	margin: 30px;
	text-align: center;
}

.hiden{
	display: none;
}
p{
	margin-top:10px;
	margin-bottom: 10px;
	font-size: 1rem;
  line-height: 1.4;
  font-style: italic;
  color: #d1a94b;
  text-shadow: 0px 0px 1px white;
} 
input[type=text]{
	width:100%;
	height:40px;
	margin-top:10px;
	border:solid #d1a94b 1px;
	transition:1s;
	padding:5px;
	}	
input[type=text]:hover{
	border: solid #3c8dbc 1px;
	transition:1s;
}
input[type=text]:focus{
	border: solid #3c8dbc 1px;
	transition:1s;
}
textarea{
	width:100%;
	height:60px;
	margin-top:10px;
	border:solid white 1px;
	padding:5px;
	resize:none;
	transition: 1s;
	}
textarea:hover{
	border: solid #3c8dbc 1px;
	transition:1s;
}
textarea:focus{
	border: solid #3c8dbc 1px;
	transition:1s;
}
input[type=button]{
	width:100%;
	height:40px;
	margin:20px 0 20px 0;
	background-color:#01bb4b;
	border:1px solid white;
	font-size:18px;
	color: white;
	transition: 1s;
	}
input[type=button]:hover{
	background-color:#3c8dbc;
	transition: 1s;
}

@media screen and (max-width: 767px) {
  input, select, textarea {
    font-size: 16px;
  }
}
.select-box {
  cursor: pointer;
  position : relative;
  max-width:  100%;
  margin: 1em auto;
  width: 100%;
}

.select,
.label {
  color: #414141;
  display: block;
  font: 400 17px/2em 'Source Sans Pro', sans-serif;
}

.select {
  width: 100%;
  position: absolute;
  top: 0;
  padding: 5px 0;
  height: 40px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  background: none transparent;
  border: 0 none;
}
.select-box1, .select-box2 {
  background: #fff;
}

.label {
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
}
.open .label::after {
   content: "▲";
}
.label::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 15px;
  border-left: 5px solid #fff;
}
.border-white{
	border: 2px black solid;
}