/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */
/* =======================================
=            Page sidebar               =
======================================= */
@layer sdc {
  /* Remove background paragraph. */
  .list.list {
    background-color: initial;
  }
  @media (min-width: 75em) {
    .list.list {
      background-color: var(--color-grey-1);
    }
  }
  .page-sidebar {
    position: relative;
  }
  .page-sidebar__result,
  .page-sidebar__sort {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .page-sidebar__result {
    align-items: center;
    padding: 2.8125rem 0 2.1875rem;
    color: var(--color-black-light);
  }
  .page-sidebar__result__count {
    font-size: 0.875rem;
  }
  @media (min-width: 75em) {
    .page-sidebar__result__count {
      font-size: 1.25rem;
    }
  }
  .page-sidebar__sort .form-item {
    position: relative;
    flex-grow: 1;
    text-align: right;
  }
  .page-sidebar__sort .form-item:after {
    position: absolute;
    top: 50%;
    right: 0.7rem;
    width: 0;
    height: 0;
    content: "";
    border-top: 6px solid var(--color-action);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
  }
  .page-sidebar__sort label {
    padding-right: 0.3rem;
    color: var(--color-black-main);
    font-size: 0.875rem;
  }
  @media (min-width: 75em) {
    .page-sidebar__sort label {
      font-size: 1rem;
    }
  }
  .page-sidebar__sort select {
    margin: 0;
    padding: 0.5rem 2.2rem 0.2rem 1rem;
    color: var(--color-action);
    border: none;
    border-radius: 0;
    outline: none;
    background-color: hsl(0, 0%, 20%, 0.04);
    font-weight: 400;
    appearance: none;
  }
  @media (min-width: 75em) {
    .page-sidebar__sort select {
      background-color: var(--color-white);
    }
    .page-sidebar__sort {
      justify-content: flex-end;
      border: unset;
    }
  }
  .page-sidebar__main {
    border-top: 2px solid hsl(0, 0%, 20%, 0.04);
    background-color: var(--color-white);
  }
  @media (min-width: 75em) {
    .page-sidebar__main {
      padding: 3.125rem 2rem;
    }
  }
  .page-sidebar__aside {
    background-color: #f7f7f7;
    box-shadow: 5px 0 4px rgb(0, 0, 0, 0.05);
  }
  @media (min-width: 75em) {
    .page-sidebar__aside {
      border-top: 2px solid hsl(0, 0%, 20%, 0.04);
      background-color: var(--color-white);
      box-shadow: none;
    }
  }
  .btn-sidebar {
    --button-color: var(--color-action);
    --button-background: var(--color-white);
    --color-arrow: var(--button-color);
    display: inline-flex;
    align-items: center;
    column-gap: 0.75rem;
    color: var(--color-black-main);
    font-weight: 300;
  }
  .btn-sidebar:hover {
    --button-color: var(--color-white);
    --button-background: var(--color-action);
  }
  .btn-sidebar--open {
    margin-left: -1.25rem;
    padding: 0.7rem 1rem 0.7rem 1.25rem;
    column-gap: 0.5rem;
    transition:
      color 0.2s ease-out,
      background-color 0.2s ease-out;
    background-color: hsl(0, 0%, 20%, 0.04);
  }
  .btn-sidebar--open:hover {
    cursor: pointer;
    color: var(--button-color);
    background-color: var(--button-background);
  }
  .btn-sidebar--open svg {
    transform: rotate(-90deg);
  }
  @media (min-width: 75em) {
    .btn-sidebar--open {
      display: none;
    }
  }
  .btn-sidebar--close {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 1.3rem 1rem 0;
  }
  @media (min-width: 75em) {
    .btn-sidebar--close {
      display: none;
    }
  }
  .btn-sidebar--icon {
    position: relative;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--color-grey-3);
    border-radius: 2rem;
    background-color: var(--button-background);
  }
  .btn-sidebar--icon:after,
  .btn-sidebar--icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.625rem;
    height: 2px;
    content: "";
    transition: background-color 0.3s ease-out;
    background-color: var(--button-color);
  }
  .btn-sidebar--icon:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .btn-sidebar--icon:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .btn-sidebar--icon:hover {
    cursor: pointer;
  }
}
