/*  FONTS  */
/*  COLORS  */
/*  BORDERS  */
/*  PADDING  */
/*  BOX SHADOW  */
/*  ICONS  */
#app #show-filter span {
  display: inline-block;
  aspect-ratio: 1/1;
  width: auto;
  height: 1.7em;
  line-height: 1.7em;
  font-size: 0.8rem;
  background: #007f9b;
  color: white;
  border-radius: 50%;
}
#app #side-panel {
  display: none;
  position: relative;
  min-width: 340px;
}
@media (max-width: 1079.98px) {
  #app #side-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1010;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1080px) {
  #app #side-panel {
    display: block;
  }
}
#app #filter-panel {
  display: none;
  overflow-y: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  border-radius: 0.4rem;
  background: white;
}
@media (max-width: 1079.98px) {
  #app #filter-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 95%;
    max-height: 90%;
    z-index: 1010;
  }
}
@media (min-width: 1080px) {
  #app #filter-panel {
    display: block;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 130px);
  }
  #app #filter-panel .tag-filter {
    padding: 8px 0 24px 0;
  }
}
#app #filter-panel .options-title {
  position: sticky;
  top: 0;
  padding: 1rem 1rem 0 1rem;
  border-bottom: 1px solid #E1E1E1;
  background-color: white;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#app #filter-panel .btn.disabled {
  pointer-events: none;
}
#app #filter-panel .tag-filter {
  padding: 1rem 1rem 1.5rem 1rem;
}
#app #filter-panel .tag-filter .filter-btn, #app #filter-panel .tag-filter ul span {
  display: inline-flex;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  padding: 2px 8px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #F9F9F9;
  color: #383838;
}
#app #filter-panel .tag-filter .filter-btn:before, #app #filter-panel .tag-filter ul span:before {
  font-family: "icomoon" !important;
  content: "\e99f";
  color: #B5B5B5;
  margin-right: 6px;
  font-size: 0.8rem;
}
#app #filter-panel .tag-filter .filter-btn i, #app #filter-panel .tag-filter ul span i {
  display: inline-block;
  font-size: 0.8em;
}
#app #filter-panel .tag-filter .filter-btn:hover, #app #filter-panel .tag-filter ul span:hover, #app #filter-panel .tag-filter .filter-btn.selected, #app #filter-panel .tag-filter ul span.selected {
  background-color: #fce4cb;
}
#app #filter-panel .tag-filter .filter-btn.selected:before, #app #filter-panel .tag-filter ul span.selected:before {
  content: "\e9a0";
  color: #4F4F4F;
}
#app #filter-panel .tag-filter ul span:hover {
  background-color: #D5EAB2;
}
#app #filter-panel .tag-filter ul.selected span {
  background-color: #D5EAB2;
}
#app #filter-panel #slider-outer-div .filter-hint {
  border-radius: 6px;
  border: 1px solid #E1E1E1;
}
#app #filter-panel #slider-outer-div .filter-hint i {
  color: #D3D3D3;
}
#app #filter-panel #slider-outer-div small {
  font-size: 12px;
}
#app #filter-panel #slider-outer-div #slider-div {
  display: flex;
  flex-direction: row;
}
#app #filter-panel #slider-outer-div #slider-div .slider-label {
  position: absolute;
  background-color: #eee;
  padding: 4px;
  font-size: 0.75rem;
}
#app .fade-transition {
  transition: opacity 0.3s;
}
#app .fade-leave-active {
  opacity: 0;
}
#app .card-project-image {
  position: relative;
  min-height: 130px;
  width: 100%;
}
#app .card-project-actions {
  display: flex;
  gap: 10px;
}
#app .card-project-actions a {
  font-size: 0.875rem;
  font-weight: 600;
}
#app .results-toolbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: fit-content;
}
#app .results-toolbar .sort-by {
  white-space: nowrap;
}
@media (min-width: 1080px) {
  #app .results-toolbar {
    background-color: white;
    box-shadow: 0 4px 12px #E1E1E1;
    border-radius: 0.4rem;
  }
}

/*# sourceMappingURL=guided_search_tool.css.map */