:root {
	--search-box-background: #dedede;
	--search-box-text-color: #444;

	--search-btn-background: var(--primary-gradient);
  --search-button-color: #fff;

	--search-btn-hover-background: var(--primary-hover-gradient);
  --search-btn-hover-color: #ffd67a;

	--search-sorting-color: var(--primary-color);
	--search-sorting-hover-color: var(--primary-hover-color);

	--search-result-title-color: var(--primary-color);
	--search-result-title-hover-color: var(--primary-hover-color);
	--search-result-cat-color:#555555;

	--search-links-color: var(--primary-color);
	--search-links-hover-color: var(--primary-hover-color);

	--cat-labels-color:#000000;
	--cat-labels-hover-color: #888888;

	--highlight-background: lightblue;
	--infoline-color: #555555;
}


.search-container {
	margin: 3% auto;
	padding: 10px;
  padding-bottom: 100px;
  min-height: calc(100% - 175px);
}

.zoom_searchform { font-size: 100%; margin-top: 70px; }
.zoom_results_per_page { font-size: 80%; margin-left: 10px; }
.zoom_match { font-size: 80%; margin-left: 10px; text-align: center;}

#search_container {
  width: 98%;
  height: 30px;
  overflow: hidden;
  margin: 0 auto;
}
#zoom_searchbox {
  width: 80%;
  height: 30px;
  border: none;
  font-size: 1.5rem;
  color: var(--search-box-text-color);
  background: var(--search-box-background);
  text-align: center;
  float: left;
  outline: none;
}
#search_button {
  width: 18%;
  height: 30px;
  border: none;
  font-size: 1.0rem;
  color: var(--search-button-color);
  background: var(--search-btn-background);
  text-align: center;
  cursor: pointer;
  float: left;
  outline: none;
}
#search_button:hover {
  color: var(--search-btn-hover-color);
  background: var(--search-btn-hover-background);
  outline: none;
  transition: all .8s;
}


#zoom-cats { 
  text-align: left; 
  padding-left: 5%; 
}

#zoom-cats label {
  display:block;
  cursor: pointer;
  text-align: left; 
  color: var(--cat-labels-color);
}

#zoom-cats label:hover {
  color: var(--cat-labels-hover-color);
  transition: .4s;
}
input[type="radio"] {
  margin: 5px;
  height: 15px;
  width: 15px;
}


.cat, .cat-item, .subcat-item {
  display: flex;
  align-items: center;
}

.cat-items {
  padding-left: 20px;
}

.subcat-items {
  padding-left: 20px
}

.hide-me {
  display: none;
}
.show-me {
  display: block;
}

.highlight { background: var(--highlight-background);}
.searchheading { font-size: 130%; font-weight: bold; padding: 0 10% 0 10%; }
.summary { font-size: 80%; font-style: italic; padding: 0 10% 0 10%; }

.sorting { text-align: center; padding: 2%; }
.sorting a:link { color:var(--search-sorting-color); text-decoration: none;}
.sorting a:hover { color: var(--search-sorting-hover-color) ; text-decoration: underline; }


.results { font-size: 100%; padding: 0 10% 0 10%; }
.result_block { margin-top: 15px; margin-bottom: 15px; clear: left; text-align: left;}
.result_altblock { margin-top: 15px; margin-bottom: 15px; clear: left; text-align: left;}

.result_image { float: left; display: block; }
.result_image img { margin: 10px; width: 80px; border: 0px; }


.result_title { font-size: 100%; }
.result_title a { color: var(--search-result-title-color) ; text-decoration: none; }
.result_title a:hover { color: var(--search-result-title-hover-color) ; text-decoration: underline; }

.category { color: var(--search-result-cat-color); }
.context { font-size: 100%; }
.infoline { font-size: 80%; font-style: normal; color: var(--infoline-color);}


.result_pages { font-size: 100%; }
.result_pages a:link { color: var(--search-links-color); }
.result_pages a:hover { color: var(--search-links-hover-color) ; text-decoration: underline; }
.result_pagescount { font-size: 100%; padding: 0 10% 0 10%;  }

.searchtime { font-size: 80%; }





/* doesnt seem to be used */
.recommended
{
  background: #DFFFBF;
  border-top: 1px dotted #808080;
  border-bottom: 1px dotted #808080;
  margin-top: 15px;
  margin-bottom: 15px;
}
.recommended_heading { float: right; font-weight: bold; }
.recommend_block { margin-top: 15px; margin-bottom: 15px; clear: left; }
.recommend_title { font-size: 100%; }
.recommend_description { font-size: 100%; color: #008000; }
.recommend_infoline { font-size: 80%; font-style: normal; color: #808080;}
.recommend_image { float: left; display: block; }
.recommend_image img { margin: 10px; width: 80px; border: 0px; }


@media only screen and (min-width: 768px ) {

  #search_container {
    width: 70%;
    height: 52px;
  }
  #zoom_searchbox {
    width: 80%;
    height: 50px;
    font-size: 24px;
  }
  #search_button {
    width: 20%;
    height: 50px;
    font-size: 24px;
    
  }
}