/****************************
-- Search General --
****************************/
.search_content {
  background-color: #f5f5f5;
  padding: 30px 0 10px;
}

.search_content .container {
  max-width: none;
}

.search_box {
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}

.search_box_hero {
  background-position: center center;
  background-size: cover;
  height: 85px;
  width: 100%;
}

.search_box_content {
  padding: 13px 20px 25px;
}

.search_content h2 {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  text-align: left;
}

.search_content h2 ~ p {
  color: #6b6b6b;
  margin-top: 10px;
}

.search_content .btn {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .search_content h2 {
    font-size: 20px;
  }

  .search_box_hero {
    height: 130px;
  }
}

@media screen and (min-width: 1024px) {
  .search_content {
    padding: 40px 0 0;
  }

  .search_main {
    overflow: hidden;
  }

  .search_sidebar {
    float: left;
    margin-right: 30px;
    width: 300px;
  }

  .search_box {
    margin-bottom: 30px;
  }

  .search_box_content {
    padding: 25px 30px;
  }

  .search_content h2 {
    font-size: 22px;
    line-height: 32px;
  }

  .search_content h2 + p {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .search_box_hero {
    height: 150px;
  }
}

/****************************
-- Search Top --
****************************/
.search_top {
  overflow: hidden;
  position: relative;
}

/* Search Nav */
.search_top_nav {
  padding: 25px 10px 0;
  text-align: center;
}

.search_top_nav a {
  font-size: 14px;
  margin: 0 10px;
  text-decoration: underline;
}

.search_top_nav .btn {
  display: none;
}

/* Search Bar */
.search_top_bar {
  padding: 30px 20px;
}

.search_top_bar .input-wrapper {
  margin: 0 auto;
  max-width: 475px;
}

@media screen and (min-width: 1024px) {
  .search_top {
    background-color: #06a84e;
  }

  /* Search Nav */
  .search_top_nav {
    padding: 0;
    position: absolute;
    right: 30px;
    top: 17px;
    z-index: 1;
  }

  .search_top_nav a {
    color: #fff;
    font-size: 15px;
    margin: 0 12px;
    text-decoration: none;
    vertical-align: middle;
  }

  .search_top_nav a:last-child {
    margin-right: 0;
  }

  .search_top_nav .btn {
    display: inline-block;
  }

  /* Search Bar */
  .search_top_bar {
    background-color: #fff;
    padding: 17px 25px 17px 30px;
    position: relative;
    width: 50%;
  }

  .search_top_bar:after {
    background-color: #fff;
    bottom: -5px;
    border-radius: 50%;
    content: '';
    position: absolute;
    right: -15px;
    top: -5px;
    width: 40px;
  }

  .search_top_bar .input-wrapper {
    max-width: none;
  }
}

@media screen and (min-width: 1280px) {
  /* Search Nav */
  .search_top_nav {
    padding: 0;
    position: absolute;
    right: 40px;
    top: 17px;
    z-index: 1;
  }

  /* Search Bar */
  .search_top_bar {
    padding-left: 40px;
    width: 62%;
  }
}

/****************************
-- Filters --
****************************/
.search_filters ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.search_filters_list > li {
  margin-top: 20px;
}

.search_filters_list h3 {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 5px;
  position: relative;
  text-transform: uppercase;
}

.search_filters_list h3:hover {
  opacity: 0.8;
}

.search_filters_list h3:after {
  content: '\f107';
  font-family: arloicons;
  font-size: 16px;
  line-height: 20px;
  margin-top: -10px;
  position: absolute;
  right: 4px;
  top: 50%;
}

.search_filters_list h3.active:after {
  content: '\f106';
}

.search_filters_list ul li {
  padding: 2px 0;
}

.search_filters_list a {
  font-size: 14px;
  line-height: 20px;
}

.search_filters_list a.active {
  display: block;
  font-weight: 700;
  position: relative;
}

.search_filters_list a.active:after {
  background-color: #06a84e;
  border-radius: 50%;
  color: #fff;
  content: '\f00d';
  font-family: arloicons;
  font-size: 10px;
  font-weight: 400;
  height: 17px;
  line-height: 17px;
  margin-top: -8px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  width: 17px;
}

@media screen and (min-width: 1024px) {
  .search_filters_list h3 {
    font-size: 15px;
    line-height: 23px;
  }

  .search_filters_list a {
    font-size: 15px;
    line-height: 23px;
  }
}

/****************************
-- Rounded Box --
****************************/
.search_rounded_box {
  display: none;
  overflow: hidden;
  text-align: center;
}

.search_rounded_box .search_box_hero {
  height: 140px;
  overflow: hidden;
  position: relative;
}

.search_rounded_box .search_box_hero:after {
  background-color: #06a84e;
  border-radius: 50%;
  bottom: -30px;
  content: '';
  height: 40px;
  left: -10%;
  position: absolute;
  width: 120%;
}

.search_rounded_box .search_box_content {
  background-color: #06a84e;
  padding-bottom: 30px;
  padding-top: 18px;
}

.search_rounded_box h2 {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
}

.search_rounded_box h2 ~ p {
  color: #fff;
  margin-top: 12px;
}

.search_rounded_box .btn {
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .search_rounded_box {
    display: block;
  }

  .search_rounded_box .search_box_hero {
    height: 155px;
  }

  .search_rounded_box h2 {
    font-size: 17px;
    line-height: 27px;
  }
}

@media screen and (min-width: 1280px) {
  .search_rounded_box h2 {
    font-size: 18px;
    line-height: 28px;
  }

  .search_rounded_box h2 ~ p {
    font-size: 17px;
    line-height: 27px;
  }
}

/****************************
-- Icon Box --
****************************/
.search_icon_box {
  display: none;
  text-align: center;
}

.search_icon_box .search_box_content {
  background-color: #06a84e;
  padding-bottom: 25px;
  padding-top: 25px;
}

.search_icon_box_icon {
  height: 60px;
}

.search_icon_box p {
  color: #fff;
  margin-top: 15px;
}

.search_icon_box .btn {
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .search_icon_box {
    display: block;
  }

  .search_icon_box .search_box_content {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .search_icon_box p {
    margin-top: 22px;
  }
}

@media screen and (min-width: 1280px) {
  .search_icon_box p {
    font-size: 17px;
    line-height: 27px;
  }
}

/****************************
-- Search Results --
****************************/
.search_results .search_box_content {
  padding-bottom: 0;
  padding-top: 0;
}

/* Results */
.search_results_container {
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 1px 0;
  padding: 15px 0 5px;
}

.search_results_container h2 {
  margin-bottom: 10px;
}

.search_results_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.search_results_list_item {
  margin-bottom: 15px;
}

.search_results_list_item h3 {
  font-size: 14px;
  line-height: 21px;
}

/* Options */
.search_results_options {
  padding: 18px 0;
}

.search_results_options_sort {
  text-align: center;
}

.search_results_options_sort a {
  color: #333;
  display: inline-block;
  line-height: 21px;
  margin-left: 5px;
  position: relative;
}

.search_results_options_sort a + a {
  margin-left: 15px;
}

.search_results_options_sort a + a:before {
  border-left: 1px solid #333;
  bottom: 4px;
  content: '';
  left: -10px;
  position: absolute;
  top: 5px;
}

.search_results_options_sort a:hover {
  color: #06a94e;
  text-decoration: none;
}

.search_results_options_sort a.active {
  color: #06a84e;
  cursor: default;
  font-weight: 700;
}

.search_results_options_pagination {
  margin-top: 13px;
}

.search_results_options_pagination ul {
  margin: 0 -5px;
  padding: 0;
  text-align: center;
}

.search_results_options_pagination li {
  padding: 0 5px;
}

.search_results_options_pagination li.active a{
  color: #06a94e;
  font-weight: 700;
}

.search_results_options_pagination a,
.search_results_options_pagination span {
  color: #333;
  font-size: 14px;
  line-height: 21px;
  padding: 0 3px;
}

.search_results_options_pagination a:hover {
  color: #06a94e;
}

.search_results_options_pagination .active span {
  color: #06a94e;
  cursor: default;
  font-weight: 700;
}

.search_results_options_pagination .active:first-child span,
.search_results_options_pagination .active:last-child span {
  color: #333;
  font-weight: 400;
  opacity: 0.5;
}

.search_box_content .suggestions, .search_box_content .synonyms {
        display: none;
}

.search_box_content .suggestions.active, .search_box_content .synonyms.active {
    display: block;
}


@media screen and (min-width:768px) {
  .search_results_options_sort {
    float: left;
  }

  .search_results_options_pagination {
    float: right;
    margin: 0;
  }
}

@media screen and (min-width:1024px) {
  /* Results */
  .search_results_container {
    padding: 20px 0 10px;
  }

  .search_results_container h2 {
    margin-bottom: 15px;
  }

  .search_results_list_item {
    margin-bottom: 15px;
  }

  .search_results_list_item p {
    font-size: 15px;
    line-height: 25px;
  }

  .search_results_list_item h3 {
    font-size: 15px;
    line-height: 25px;
  }

  /* Options */
  .search_results_options {
    padding: 25px 0;
  }

  .search_results_options_sort p {
    font-size: 15px;
    line-height: 25px;
  }

  .search_results_options_pagination a,
  .search_results_options_pagination span {
    font-size: 15px;
    line-height: 25px;
  }
}

@media screen and (min-width:1280px) {
  /* Results */
  .search_results_container {
    padding: 25px 0 10px;
  }

  .search_results_container h2 {
    margin-bottom: 20px;
  }

  .search_results_list_item {
    margin-bottom: 20px;
  }

  .search_results_list_item h3 {
    font-size: 17px;
    line-height: 27px;
  }
}

/****************************
-- Swimlane --
****************************/
.search_swimlane {
  text-align: center;
}

.search_swimlane_image {
  background-position: center center;
  background-size: cover;
  height: 175px;
  width: 100%;
}

.search_swimlane h2 {
  text-align: center;
}

.search_swimlane h2 + p {
  margin-top: 10px;
}

@media screen and (min-width: 640px) {
  .search_swimlane {
    position: relative;
  }

  .search_swimlane_image {
    height: 100%;
    position: absolute;
    width: 40%;
  }

  .search_swimlane .search_box_content {
    float: right;
    padding: 35px 6.5%;
    width: 60%;
  }

  .search_swimlane .search_box_content .btn {
    margin-bottom: 10px;
  }
}

#search .search_results_list_item br {
    display: none;
}

#search .hide{
	display: none;
}

#search .spinner-arlo-search{
	width: 50px;
	height: 50px;
	background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin: auto;
}

/****************************
-- Question Categories --
****************************/
.question_categories{
  padding: 0;
}

.question_categories h4{
  font-size: 14px;
  background-color: #06a84e;
  padding: 5px 15px;
  color: #fff;
  font-weight: 600;
}

.question_categories ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding: 7px 15px 10px;
}

.question_categories ul li {
  display: block;
}
.question_categories ul li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.html_overlay .overlay_close {
  right: 24px;
  top: 12px;
}

@media screen and (min-width: 768px){
  .question_categories {
    max-width: 350px;
  }
}
