

/* custom inventory search */


/*----------DETAILED SEARCH----------------------------*/
.column5 {display:inline-block; float: left; width:19%; margin:5px;}
.column5 select {width: 100%; height: 40px; font-size: 16px; padding: 0 10px;}

.detailed-search-wrap {
	font-family: urw-din, sans-serif;
    padding: 50px 15px;
    margin: 0 auto;
    width: 100%;
    display: inline-block;
    position: relative;
    background: #555;
	margin-top: -2px;
	border-bottom: 1px solid #fff;
	box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}

.content {
	width: 100%;
	margin: 0 auto;
}
.detailed-search-wrap h4 { 
	color: #fff;	
	font-family: urw-din, sans-serif; 
	font-weight:400;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.detailed-form {
	margin: auto;
}
.clear {
	clear: both;
}
.detailed-row {
	width: 100%;
	display: inline-block;
}
.last {
	padding-right: 0px;
}

.detailed-search input[type='submit'] {
	background: #f6de20;
	width: 100%;
	height: 40px;
	padding-top:5px;
	margin-top: 0px;
	color: #000;
	text-transform: uppercase;
	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;
	font-family: urw-din, sans-serif;
	font-size:14px;
	font-weight: 700;
	cursor: pointer;
}
.detailed-search input[type='submit']:hover{
	background: #497a39;
	color: #f6de20;
}

.detailed-search input[type='text'] {
	width: 100%;
	margin: 2px 0;
	padding: 0 10px;
	font-size: 16px;
	height: 40px;
	background-color: #fff;
	border: 1px solid #bebebe;
	box-sizing: border-box;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.detailed-search-wrap h3 span {
	color: #d7d7d7;
}

.detailed-search-wrap section {
  display: none;
  padding: 20px 0;
}

.detailed-search-wrap label {
	display: none;
    padding: 6px !important;
    text-align: center;
    position: relative;
    z-index: 4;
    color: #fff;
    font-family: urw-din, sans-serif; 
    line-height: 25px;
	font-weight: 700;
	background:#000;
	font-size: 12px;
	width: 49%;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
}

.detailed-search-wrap label:before {
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 10px;
}

.detailed-search-wrap label:hover {
    background: #ffcd05;
	color: #fff;
	cursor: pointer;
}

.detailed-search-wrap input:checked + label {
  color: #fff;
  background: #233d7f;

}

label#title {
	width: 100%;
	background:none; 
	color:#fff;
	font-size:20px;
	font-weight: 600;
	text-align:left;
	display: block;
	margin: 0 auto;
	font-family: urw-din, sans-serif; 
	padding:0!important;
}

label#title .fas {
	margin-right: 7px;
	vertical-align: middle;
	font-size: 18px;
	color: #fff;
}

label#title:hover {
	cursor: default;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3 {
  display: block;
}

/************* MEDIA QUERIES (RWD)
*********************************/
@media screen and (max-width: 1180px) {	
	.column5 {width:23%!important;}
}

@media screen and (max-width: 800px) {	
	.column5 {width:100%!important; margin: 0 auto; margin-top: 3px; margin-bottom: 3px;}
	.detailed-search-wrap label {width: 100%;}
	.detailed-search-wrap {width: 100%; max-width: none; margin: 0 auto; float: none;}
}

@media screen and (max-width: 500px) {
	a#menu-button {font-size: 30px}
	
	label#title {font-size: 18px;}
	label#title .fas {font-size: 16px;}
}


