/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */
/* =============================================
=            Search input                      =
============================================= */
@layer sdc {
  .search-exposed,
  .search-page-form {
    display: flex;
  }
  .search-exposed .form-text,
  .search-page-form .form-text {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-action);
    background-color: initial;
    appearance: none;
  }
  .search-exposed .form-text:focus,
  .search-page-form .form-text:focus {
    outline: none;
  }
  .search-exposed .button,
  .search-page-form .button {
    padding: 0.5rem 1rem;
    transition:
      background-color 0.3s ease-in-out,
      color 0.3s ease-in-out;
    color: var(--color-white);
    border: 1px solid transparent;
    background-color: var(--color-action);
    appearance: none;
  }
  .search-exposed .button:focus,
  .search-page-form .button:focus {
    outline: none;
  }
  .search-exposed .button:hover,
  .search-page-form .button:hover {
    cursor: pointer;
    color: var(--color-action);
    border: 1px solid var(--color-action);
    border-left: 1px solid transparent;
    background-color: var(--color-white);
  }
  .search-page-form {
    width: 100%;
    margin-bottom: 1.5rem;
    column-gap: 1.5rem;
  }
  .search-page-form .form-item {
    width: calc(80% - 0.1875rem);
  }
  .search-page-form .form-text {
    color: var(--color-black-main);
  }
  @media (min-width: 75em) {
    .search-page-form .form-text {
      padding: 0.98rem 2rem;
      background-color: var(--color-white);
      font-size: 1.375rem;
    }
    .search-page-form .form-actions {
      flex-grow: 1;
    }
  }
  .search-page-form .form-submit {
    width: 100%;
    height: 100%;
    padding: 0.5rem 2rem;
    box-shadow: 0 0 2px rgb(0, 0, 0, 0.25);
  }
  .search-page-form .form-submit:hover {
    border-left-color: var(--color-action);
  }
}
