@charset "utf-8";
[data-param-key="types"], [data-param-key="text"] {display: none;}
/* Search */
.search-filters-common {}
.search-filters-searchable {margin-top: 1rem;}
.search-filter:not(:first-of-type) {margin-top: 1rem;}
#btn-search-filters {display: none;}

.search-results .subtitle:not(:first-of-type) {margin-top: 2rem;}
.search-result {
  border-top: 3px solid var(--color-gray-100);
}
.search-result a {
  padding: 1rem 0;
  color: #0d0e0e;
}
.search-result a:hover {
  background: var(--color-gray-100);
}

/* Search Bar */
.searchbar {position: relative;}
.searchbar-dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  display: flex;
  visibility: hidden;
  flex-direction: column;
  z-index: 41;
  border: 1px solid var(--color-gray-100);
  width: 50%;
  min-width: 500px;
  max-height: 80vh;
  overflow: hidden;
  -ms-overflow-y: visible;
  pointer-events: auto;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.2);
}
.searchbar-dropdown.active {
  visibility: visible;
}
.searchbar-head,
.searchbar-foot {
  align-items: center;
  background-color: var(--color-gray-100);
  display: flex;
  flex-shrink: 0;
  justify-content: flex-start;
  padding: 0.5rem;
  position: relative;
}
.searchbar-body {
  -webkit-overflow-scrolling: touch;
  background-color: white;
  flex-grow: 1;
  flex-shrink: 1;
  overflow: auto;
}
.searchbar-icon {display: none;}
.searchbar-result:not(:first-of-type) {
  border-top: 1px solid var(--color-gray-100);
}
.searchbar-result a {
  padding: .5rem;
  color: #0d0e0e;
}
.searchbar-result a:hover {
  background: var(--color-gray-100);
}
.searchbar-result-link {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.searchbar-result-image img {
  width: 64px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
.searchbar-result-content {
  flex: 1;
}
.searchbar-result-type {
  display: inline-block;
  border: 1px solid #cacaca;
  background: #f5f5f5;
  padding: .1rem .2rem;
}
.modal-search form {display: block; width: 100%;}
.modal-search input { width: 100% !important; background-color: white;}

/* tablet */
@media screen and (max-width: 1023px), print {
  .searchbar {padding: .5rem 0;}
}
/* mobile */
@media screen and (max-width: 768px), print {
  #btn-search-filters {display: inline-block;}
  .searchbar-icon {display: inline-flex;}
  .searchbar {display: none;}
}