/**
    Fonts
 */
/**
    Colors
 */
/* Font size */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 3.125rem;
  padding: 0.8125rem 1.125rem;
  border: 0;
  border-radius: 0.625rem;
  background-color: var(--button-bg, #121384);
  color: var(--button-text, #ffffff);
  font-size: 1.125rem;
  font-family: inherit;
  line-height: 1.5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.button:hover, .button:focus, .button:focus-visible {
  background-color: var(--button-bg-hover, #000000);
  color: var(--button-text-hover, #ffffff);
}
.button i {
  flex: 0 0 auto;
  font-size: 1.125rem;
  line-height: 1;
}
.button.button--icon-only {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
}
.button.button--icon-left {
  flex-direction: row;
}
.button.button--icon-right {
  flex-direction: row-reverse;
}
.button.button--hero {
  min-height: 3rem;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  white-space: normal;
}
.button.button--dark-blue {
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #000000;
  --button-text-hover: #ffffff;
}
.button.button--yellow {
  --button-bg: #ffe500;
  --button-text: #121384;
  --button-bg-hover: #ffffff;
  --button-text-hover: #121384;
}
.button.button--small {
  min-height: 1.875rem;
  padding: 0.3125rem 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.fieldset {
  display: grid;
  gap: 1.25rem;
}
.fieldset.fieldset--search {
  width: 50rem;
  max-width: 100%;
  grid-template-columns: 3fr 1fr;
}
.fieldset.fieldset--location {
  width: 50rem;
  max-width: 100%;
  grid-template-columns: 3fr 2fr;
}

.field .field__select--radius {
  width: 200px;
}