/* Shared opening hours for page sections and the site footer. */
.foodord-restaurant-hours {
  min-width: 0;
}
.foodord-restaurant-hours__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.foodord-restaurant-hours .foodord-restaurant-hours__title {
  min-width: 0;
  margin: 0;
  color: inherit;
  font-family: var(--foodord-body-font, sans-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.foodord-restaurant-hours__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 4px;
}
.foodord-restaurant-hours .foodord-restaurant-hours__button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.foodord-restaurant-hours .foodord-restaurant-hours__button:hover {
  background: var(--restaurant-soft, #f5f6f8);
}
.foodord-restaurant-hours .foodord-restaurant-hours__button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.foodord-restaurant-hours__arrow {
  display: block;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask: url("../images/chevron-right.svg") center / contain no-repeat;
}
.foodord-restaurant-hours__arrow--previous {
  transform: rotate(180deg);
}
.foodord-restaurant-hours__panel[hidden] {
  display: none;
}
.foodord-restaurant-hours dl {
  margin: 0;
}
.foodord-restaurant-hours dl > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 12px;
  padding-block: 7px;
  border-bottom: 1px solid var(--restaurant-border, #dedfe3);
  font-size: 13px;
}
.foodord-restaurant-hours dt {
  text-transform: capitalize;
}
.foodord-restaurant-hours dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
}
