
/*  DETAILED SEARCH
------------------------------------------------*/

.detailed-search {
	padding: 20px;
}
.content {
	width: 100%;
	margin: 0 auto;
	color:#fff;
}

.detailed-form {
	margin: auto;
}
.clear {
	clear: both;
}

.detailed-search input[type='submit'] {
	font-size: 16px;
	background: #91011A;
	width: 100%;
	margin-top: 2px;
	height: 40px;
	color: #fff;
	display: inline-block;
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	outline: none;
	border: none;
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-webkit-border-radius: 0;
	-webkit-appearance: none;
	border-radius: 0;
}
.detailed-search input[type='submit']:hover{
	background:#fff;
	color:#91011A;
	border:1px solid #91011A;
}
.detailed-search input[type='text'] {
	width: 100%;
	margin: 2px 0;
	padding: 0 8px;
	font-size: 15px;
	height: 40px;
	background-color: #f9f9f9;
	border: 1px solid #bebebe;
	box-sizing: border-box;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.detailed-search-wrap h3 span {
	color: #d7d7d7;
}

main {
  width:100%;
  padding: 50px;
  margin: 0 auto;
}

section {
  display: none;
  border-top: 1px solid #333;
}

label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid #333;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 18px;
}

label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}

/*label[for*='1']:before { content: '\f1cb'; }
label[for*='2']:before { content: '\f17d'; }
label[for*='3']:before { content: '\f16b'; }
label[for*='4']:before { content: '\f1a9'; }*/

label:hover {
  color: #888;
  cursor: pointer;
}

input:checked + label {
  color: #fff;
	background:#333;;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4 {
	display: block;
	background:#333;
}

@media screen and (max-width: 450px) {
	label{width: 100%;}
}


