.search-module {
  overflow: auto;
  height: calc(100vh - 45px);
  padding: 0 16px;

  &.displaced {
    height: calc(100vh - 95px); // delme
  }

  h1 {
    font-weight: normal;

    em {
      font-style: normal;
      color: #b2bec3;
    }
  }
}

.search__widget {
  display: inline-flex;
  margin-bottom: 15px;

  input,
  input:focus {
    min-width: 400px;
    padding: 2px;
    border: none;
    outline: none;
  }

  input {
    padding: 6px 20px;
    border: 1px solid #dadada;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }

  span.search__button {
    cursor: pointer;
    padding: 5px 8px;
    color: #fff;
    background-color: var(--accent-color-bg);
  }
}

.width100 {
  width: 100%;
}

.search-results {
  .section {
    margin-bottom: 20px;
    padding: 20px;
    border: solid 1px var(--border-primary-color);

    h3 {
      margin-top: 0;
    }

    .list {
      .item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;

        margin-bottom: 10px;

        a,
        span {
          display: inline-block;
          width: 100%;
        }

        p {
          margin: 0.5em 0 1em;
          color: var(--default-color);
        }
      }
    }
  }
}

::ng-deep .search-component {
  .loading .mat-progress-spinner circle {
    stroke: #b2bec3;
  }
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 80px;
  padding: 0 32px;

  color: white;

  background: #3f82d8;

  &__logo {
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    color: white;
  }
}
