:root {
  --light_grey: #f1efeb;
  --dark_grey: #5f5f5f;
  --text_black: #3f3f3f;
  --border_grey: #c0bfbc;
  --side_category_grey: #969595;
  --active_menu_border_grey: #dfdedd;
  --block_border_top_grey: #e3e3e3;
  --trusted_source_grey: #d9d8d5;
  --menu_border_grey: #f1f1f1;
  --button_grey: #dedcd9;
  --text_grey: #888785;
  --mean_grey: #b5af9e;
  --tweet_grey: #808080;
  --purple: #56328c;
  --button_pink: #eb168b;
  --link_pink: #f49ecf;
  --arrow_pink: #ee5ea1;
  --over_purple_pink: #fe69bc;
  --checkbox_purple: #d6cce3;
  --link_blue: #1dafec;
  --status-online: #28ce13;

  --extra_bold: 800;
  --bold: 700;
  --semi_bold: 600;
  --regular: 400;

  --desktop_width: 75rem;
  --mobile_width: 23.4375rem;
  --mobile_max_width: 20.9375rem;
}

/* header */

.template-searchresults .subheader .header_width {
  height: 9.9375rem;
}

@media (min-width: 921px) {
  .template-searchresults .subheader .header_width {
    height: 17.5rem;
  }
}

.template-searchresults .subheader .header_width img {
  max-width: revert;
  max-height: 100%;
}

.template-searchresults .subheader .header_width .overlay {
  top: 0;
  display: block;
}

.template-searchresults .subheader .social_block {
  /* needs !important because of insanely specific styling in cjg.css */
  display: none !important;
}

/* search controls */

.template-searchresults #searchForm {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 54rem;
  margin: 0 auto;
  padding: 1.25rem;
}

.template-searchresults #searchForm h1 {
  color: #fff;
  text-align: center;
}

.template-searchresults .search_box {
  padding: 0;
  background: transparent;
}

.template-searchresults .search_box button {
  background-color: #f1efeb;
  position: absolute;
  padding-right: 0.625rem;
  right: 1.875rem;
}

.template-searchresults #pageTypeFilterList {
  display: none;
  border-bottom: 0.0625rem solid #e3e3e3;
  margin: 1.25rem auto;
  font-size: 1.125rem;
}

@media (min-width: 1400px), (min-width: 921px) and (max-width: 1399px) {
  .template-searchresults #pageTypeFilterList {
    display: block;
  }
}

.template-searchresults #pageTypeFilterList span {
  font-weight: bold;
  color: #5f5f5f;
}

.template-searchresults #pageTypeFilterList ul {
  list-style: none;
  display: inline-flex;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}

.template-searchresults #pageTypeFilterList li {
  margin: 0 1.25rem;
  padding: 0 0.625rem;
  text-align: center;
  border-bottom: 0.125rem solid transparent;
}

.template-searchresults #pageTypeFilterList li.current {
  border-bottom-color: #1dafec;
}

.template-searchresults #pageTypeFilterList a {
  color: #5f5f5f;
}

.template-searchresults #pageTypeFilterList a[aria-current='page'] {
  font-weight: bold;
  color: #1dafec;
}

.template-searchresults #pageTypeFilterForm {
  display: block;
}

@media (min-width: 1400px), (min-width: 921px) and (max-width: 1399px) {
  .template-searchresults #pageTypeFilterForm {
    display: none;
  }
}

.template-searchresults #pageTypeFilterForm > p {
  display: flex;
  align-items: center;
}

.template-searchresults #pageTypeFilterForm label {
  font-weight: bold;
  color: #808080;
  white-space: nowrap;
  margin-right: 0.625rem;
}

.template-searchresults #pageTypeFilterForm select {
  flex: 1 0;
  width: 10rem;
  text-overflow: ellipsis;
  color: #1dafec;
  border: 0.0625rem solid #dfdedd;
  border-radius: 0.3125rem;
  padding: 0.3125rem 1.5625rem 0.3125rem 0.625rem;
  box-shadow: 0 0 0.3125rem 0 rgba(0, 0, 0, 0.15);
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' fill='none' stroke='var(--link_blue)'%3E %3Cpath fill-rule='evenodd' stroke-width='2' d='M1 1l5.5 5.5L12 1'/%3E %3C/svg%3E")
    no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.8125rem 0.5rem;
}

.template-searchresults #pageTypeFilterForm button {
  margin-left: 0.3125rem;
  flex: 0 0;
}

/* (no) results */

.template-searchresults .results {
  margin: 2.5rem 0;
  max-width: 42.5rem;
  font-size: 1rem;
}

@media (min-width: 921px) {
  .template-searchresults .results {
    font-size: 1.125rem;
  }
}

.template-searchresults .results .results_result {
  color: #56328c;
  margin-bottom: 2.5rem;
}

.template-searchresults .results .results_page_type {
  color: #fe69bc;
  font-weight: bold;
}

.template-searchresults .results .results_title {
  font-weight: bold;
  font-size: 1.5rem;
}

@media (min-width: 921px) {
  .template-searchresults .results .results_title {
    font-size: 1.75rem;
  }
}

.template-searchresults .results .results_excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0.625rem;
}

@media (min-width: 921px) {
  .template-searchresults .results .results_excerpt {
    -webkit-line-clamp: 3;
  }
}

.template-searchresults .results .results_link {
  color: #1dafec;
  font-weight: bold;
}

.template-searchresults .results .results_link:before {
  position: relative;
  top: 0.125rem;
  content: '';
  display: inline-block;
  width: 0.9375rem;
  height: 0.8125rem;
  padding-right: 0.3125rem;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='10' opacity='1' fill='%231dafec'%3E %3Cpath fill-rule='evenodd' d='M8 4.4A23.79 23.79 0 003.79.02a1.02 1.02 0 00-.42 0c-.15.17-.17 0-.42.4V2.8c-.97.06-2.32.47-2.53.8C.18 3.64 0 4 0 4.8c0 .39.18.75.42.8.21.32 1.56.73 2.53.8v2.38c.25.42.27.23.42.4.18.03.39.02.42 0A23.8 23.8 0 008 4.8c-.04.06 0-.07 0-.4z'/%3E %3C/svg%3E")
    no-repeat;
  background-size: contain;
  vertical-align: baseline;
}

@media (min-width: 921px) {
  .template-searchresults .results .results_link:before {
    top: 0.0625rem;
    padding-right: 0.625rem;
  }
}

/* Pagination */

.template-searchresults .results_pagination {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  max-width: 42.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1400px), (min-width: 921px) and (max-width: 1399px) {
  .template-searchresults .results_pagination {
    border: 0.0625rem solid #c0bfbc;
    border-radius: 0.3125rem;
    padding: 1.25rem;
  }
}

.template-searchresults .results_pagination a {
  color: #56328c;
  display: block;
  min-width: 2rem;
  text-align: center;
}

.template-searchresults .results_pagination .results_previous:before {
  position: relative;
  top: 0.125rem;
  display: inline-block;
  content: '';
  width: 0.8125rem;
  height: 0.9375rem;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='15' fill='var(--purple)'%3E %3Cpath fill-rule='evenodd' d='M0 7.18C.3 6.74 3.3 2.75 6.84.03c.05-.03.38-.05.69 0 .24.28.27 0 .68.65v3.9c1.57.1 3.76.77 4.1 1.3.4.06.69.66.69 1.94 0 .64-.29 1.24-.68 1.3-.35.53-2.54 1.2-4.1 1.3v3.9c-.42.68-.45.37-.7.65-.3.05-.63.03-.68 0A38.75 38.75 0 010 7.82c.06.1 0-.11 0-.64z'/%3E %3C/svg%3E")
    no-repeat;
  background-size: contain;
  vertical-align: baseline;
}

.template-searchresults .results_pagination .results_previous.disabled:before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='15' fill='var(--text_grey)'%3E %3Cpath fill-rule='evenodd' d='M0 7.18C.3 6.74 3.3 2.75 6.84.03c.05-.03.38-.05.69 0 .24.28.27 0 .68.65v3.9c1.57.1 3.76.77 4.1 1.3.4.06.69.66.69 1.94 0 .64-.29 1.24-.68 1.3-.35.53-2.54 1.2-4.1 1.3v3.9c-.42.68-.45.37-.7.65-.3.05-.63.03-.68 0A38.75 38.75 0 010 7.82c.06.1 0-.11 0-.64z'/%3E %3C/svg%3E");
}

@media (min-width: 1400px), (min-width: 921px) and (max-width: 1399px) {
  .template-searchresults .results_pagination .results_previous span {
    padding-left: 0.5rem;
  }
}

@media (min-width: 1400px), (min-width: 921px) and (max-width: 1399px) {
  .template-searchresults .results_pagination .results_next span {
    padding-right: 0.5rem;
  }
}

.template-searchresults .results_pagination .results_next:after {
  position: relative;
  top: 0.125rem;
  display: inline-block;
  content: '';
  width: 0.8125rem;
  height: 0.9375rem;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='15' fill='var(--purple)'%3E %3Cpath fill-rule='evenodd' d='M13 7.18c-.3-.44-3.3-4.43-6.84-7.15a1.65 1.65 0 00-.69 0c-.24.28-.27 0-.68.65v3.9c-1.57.1-3.76.77-4.1 1.3-.4.06-.69.66-.69 1.94 0 .64.29 1.24.68 1.3.35.53 2.54 1.2 4.1 1.3v3.9c.42.68.45.37.7.65.3.05.63.03.68 0A38.75 38.75 0 0013 7.82c-.06.1 0-.11 0-.64z'/%3E %3C/svg%3E")
    no-repeat;
  background-size: contain;
  vertical-align: baseline;
}

.template-searchresults .results_pagination .results_next.disabled:after {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='15' fill='var(--text_grey)'%3E %3Cpath fill-rule='evenodd' d='M13 7.18c-.3-.44-3.3-4.43-6.84-7.15a1.65 1.65 0 00-.69 0c-.24.28-.27 0-.68.65v3.9c-1.57.1-3.76.77-4.1 1.3-.4.06-.69.66-.69 1.94 0 .64.29 1.24.68 1.3.35.53 2.54 1.2 4.1 1.3v3.9c.42.68.45.37.7.65.3.05.63.03.68 0A38.75 38.75 0 0013 7.82c-.06.1 0-.11 0-.64z'/%3E %3C/svg%3E");
}

.template-searchresults .results_pagination .results_previous span,
.template-searchresults .results_pagination .results_next span {
  display: block;
  height: 0.0625rem;
  width: 0.0625rem;
  overflow: hidden;
}

@media (min-width: 1400px), (min-width: 921px) and (max-width: 1399px) {
  .template-searchresults .results_pagination .results_previous span,
  .template-searchresults .results_pagination .results_next span {
    display: inline;
  }
}

.template-searchresults .results_pagination .results_previous.invisible,
.template-searchresults .results_pagination .results_next.invisible {
  visibility: hidden;
}

.template-searchresults .results_pagination a[aria-current='page'] {
  font-weight: bold;
}

:root .chat-ankeiler .chat-wrapper {
  display: block;
  min-height: 0;
}
