.menu {
  position: relative;
}

.menu__trigger {
  cursor: pointer;
  font-size: var(--f-size-l-3);
  color: rgb(var(--c-neutral-lightest));

  & .fasr::after {
    content: '\f002';
  }
}

.-scroll .menu__trigger {
  color: rgb(var(--c-neutral-darker));
}

.menu__content {
  display: none;
  color: rgb(var(--c-neutral-darker));
  top: 70px;
  position: absolute;
  right: 0;
  z-index: 1000;
}

.-active {
  & .menu__trigger .fasr::after {
    content: '\e59b';
  }

  & .menu__content {
    display: block;
  }
}

.tx_solr {
  & .results-topic {
    font-size: var(--f-size-l-2);
    margin-bottom: 1rem;
  }

  & .result-found,
  & .search-result {
    margin-bottom: 2rem;
    display: block;
  }

  & .hidden-xs,
  & .relevance,
  & .query-debug {
    display: none;
  }

  & .col-lg-8,
  & .col-md-3,
  & .col-md-9 {
    width: 100%;
  }

  & .tx-solr-search-form {
    & .input-group {
      position: relative;
      margin-bottom: 1rem;
    }

    & .tx-solr-q {
      height: 50px;
      margin-bottom: 0;
    }

    & button {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      padding: 0;
      background: transparent;
      color: rgb(var(--c-neutral-darker));
    }

    & .fass {
      font-size: 24px;
    }
  }
}

.quicksearch {
  & .tx-solr-search-form .input-group {
    margin-bottom: 0;
  }

  & .tx-solr-q {
    min-width: 84vw;
  }
}

.solr-pagination {
  & .pagination {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }

  & .page-item {
    list-style: none;
  }

  & .page-link {
    left: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(var(--c-neutral-lighter));
    text-decoration: none;

    &:hover {
      background: rgb(var(--c-neutral-darker));
      color: rgb(var(--c-neutral-lighter));
    }
  }
}

/* =============================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 1280px) {
  .quicksearch {
    & .tx-solr-q {
      min-width: calc(100vw - 350px);
    }
  }

  .menu__content {
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
  }
}