.search_widget_headerbox { position: relative; }
.search_widget_headerbox input[type=search] {
	border: none;
	border-radius: 3px;
	width: 100%;
	height: 40px;
	background-color: #fff;
	box-shadow: none;
}
.search_widget_headerbox:hover input[type=search],
.search_widget_headerbox input[type=search]:focus { border: none; box-shadow: none; background-color: #fff; outline: none; }
.search_widget_headerbox .searchBtn {
	position: absolute;
	top: 0;
	right: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	width: 40px;
	height: 40px;
	background-image: url("/includes/public/assets/SVG-Assets/Miscellaneous/search.svg");
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	cursor: pointer;
	display: inline-block;
}
.search_widget_headerbox .searchBtn:before { content: ""; }

.tablet_search_widget_headerbox {
	width: 64px;
	height: 64px;
	background-color: rgba(0, 0, 0, .1);
	-webkit-transition: all .15s;
	-moz-transition: all .15s;
	-ms-transition: all .15s;
	-o-transition: all .15s;
	transition: all .15s;
}
.tablet_search_widget_headerbox.open {
	width: 256px;
	height: 64px;
	background-color: #373737;
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	-ms-transition: all .25s;
	-o-transition: all .25s;
	transition: all .25s;
}

.tablet_search_widget_headerbox form { display: none; min-width: 64px;}
.tablet_search_widget_headerbox.open form { display: block; }
.tablet_search_widget_headerbox input[type=search] {
	float: left;
	margin: 0;
	padding: 0;
	border: none;
	box-shadow: none;
	width: 0;
	height: 64px;
	font-family:'Aktiv Grotesk W01 Regular';
	font-size: 18px;
	color: #00bbe3;
	background-color: transparent;
	-webkit-transition: all .15s;
	-moz-transition: all .15s;
	-ms-transition: all .15s;
	-o-transition: all .15s;
	transition: all .15s;
}
.tablet_search_widget_headerbox.open input[type=search] {
	width: 160px;
	padding: 8px;
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	-ms-transition: all .25s;
	-o-transition: all .25s;
	transition: all .25s;
}
.tablet_search_widget_headerbox input[type=search]:focus,
.tablet_search_widget_headerbox input[type=search]:active {
	border: none;
	box-shadow: none;
	background-color: transparent;
}
.tablet_search_widget_headerbox input[type=search]::-webkit-input-placeholder {
	color: #00bbe3;
}
.tablet_search_widget_headerbox input[type=search]:-moz-input-placeholder {
	color: #00bbe3;
}
.tablet_search_widget_headerbox input[type=search]::-moz-input-placeholder {
	color: #00bbe3;
}
.tablet_search_widget_headerbox input[type=search]::-ms-input-placeholder {
	color: #00bbe3;
}

.tablet_search_widget_headerbox a.mobile-search {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 16px;
    color: #FFF;
    font-family: 'Aktiv Grotesk W01 Light1370681';
    font-size: 10px;
    line-height: 10px;
    text-align: center;
}

.tablet_search_widget_headerbox .mobile-search,
.tablet_search_widget_headerbox button {
	float: left;
	width: 64px !important;
	height: 64px !important;
	background-color: transparent !important;
}
.tablet_search_widget_headerbox a.mobile-search span,
.tablet_search_widget_headerbox button a span {
	position: relative;
  	display: block;
  	margin: 0 auto 2px;
	width: 24px;
	height: 26px;
	background-image: url("/includes/public/assets/SVG-Assets/Miscellaneous/search-white.svg");
	background-size: 100%;
	background-repeat: no-repeat;
}
.tablet_search_widget_headerbox.open a.mobile-search span,
.tablet_search_widget_headerbox.open button a span {
	background-image: url("/includes/public/assets/SVG-Assets/Miscellaneous/search.svg");
}
.tablet_search_widget_headerbox a.mobile-search .link-text,
.tablet_search_widget_headerbox button a .link-text {
	display: inline;
}
.tablet_search_widget_headerbox.open a.mobile-search .link-text,
.tablet_search_widget_headerbox.open button a .link-text {
	display: none;
}
.tablet_search_widget_headerbox.open .mobile-search { display: none; }
.tablet_search_widget_headerbox form > span {
	display: block;
	float: left;
	width: 0;
	height: 64px;
	background-image: url("/includes/public/assets/x.png");
	background-repeat: no-repeat;
	background-position: left center;
	cursor: pointer;
	-webkit-transition: all .15s;
	-moz-transition: all .15s;
	-ms-transition: all .15s;
	-o-transition: all .15s;
	transition: all .15s;
}
.tablet_search_widget_headerbox.open form > span {
	width: 32px;
	-webkit-transition: all .25s;
	-moz-transition: all .25s;
	-ms-transition: all .25s;
	-o-transition: all .25s;
	transition: all .25s;
}

/* Results */
.search_results { padding: 15px; margin: 0 0 10px 0; }
.search_results form {
	margin: 0;
	padding: 30px 30px;
	background-color: #4c4c4c;
	background-image: url("/includes/public/assets/header-bg.png");
}
.search_results form input {
	margin-bottom: 0;
	border: none;
	border-radius: 3px;
	height: 50px;
	font-family:'Aktiv Grotesk W01 Regular';
	font-size: 15px;
	color: #959595;
	background-color: #fff;
	box-shadow: inset 0 2px 2px #d8d8d8;
}
.search_results form input:focus,
.search_results form input:active {
	box-shadow: none;
	box-shadow: inset 0 2px 2px #d8d8d8;
	border: none;
	background-color: #fff;
}
.search_results .searchBox { position: relative; }
.searchBox input.searchInput { padding-right: 30px; }
.search_results .searchBox .searchBtn {
	position: absolute;
	top: 0;
	right: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	width: 50px;
	height: 50px;
	background-image: url("/includes/public/assets/SVG-Assets/Miscellaneous/search.svg");
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	cursor: pointer;
	display: inline-block;
}
.search_results_items .search_results_above { float: left; width: 100%; }
.search_results_items .search_results_above h4 {
	float: left;
	font-size: 42px;
	line-height: 48px;
	color: #444;
}
.search_results_items .search_results_pagination { padding: 5px; margin: 2px 0; float: right; line-height: 30px; }
.search_results_items .search_results_pagination a {
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: middle;
}
.search_results_items .search_results_pagination a span {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url("/includes/public/assets/SVG-Assets/paging-circle-left.svg");
	background-size: 100%;
}
.search_results_items .search_results_pagination a span.fa-caret-right {
	background-image: url("/includes/public/assets/SVG-Assets/paging-circle-right.svg");
}
.search_results_items .search_results_notfound { margin: 10px 0; }
.search_results_items .search_results_filters {
	margin: 0 0 20px 0;
	padding: 10px 30px 30px;
	color: #fff;
	background-color: #4c4c4c;
	background-image: url("/includes/public/assets/header-bg.png");
}
.search_results_items .search_results_filters .search_results_facets { margin-top: 10px; }
.search_results_items .search_results_filters .search_results_facets a { display: inline-block; margin-bottom: 4px; }
.search_results_items .search_results_filters .removeFilter { font-size: 12px; }
.search_results_items .search_result_item .large-4 { width: 20%; padding: 0 15px; }
.search_results_items .search_result_item .large-8 { width: 80%; padding: 0 15px; }
.search_results_items .search_result_item .large-12 { padding: 0 15px; }
.search_results_items .search_result_item { padding: 10px 0; margin: 0; }
.search_results_items .search_result_item_top { font-size: 12px; }
.search_results_items .search_result_item em { font-weight: bold; }
.search_results_items .search_result_item h4 {
	margin: 0;
	font-family: "ff-good-headline-web-pro-con", sans-serif;
	font-size: 26px;
	line-height: 32px;
	display: inline-block;
}
.search_results_items .search_result_item h4 a { color: #444; }
.search_results_items .search_result_item_bottom { color: #444; font-size: 14px; line-height: 16px; }
.search_results_items .search_result_item .search_result_item_bottom .search_anchor { color: #63c4ab; line-height: 16px; }
.search_results_items .search_result_item .search_result_item_bottom p { color: #545454; margin: 2px 0 0 0; font-size: 15px; line-height: 25px; }