/* 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;
  touch-action: manipulation;
}
.foodord-restaurant-hours .foodord-restaurant-hours__button:active {
  background: var(--restaurant-soft, #f5f6f8);
}
.foodord-restaurant-hours .foodord-restaurant-hours__button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .foodord-restaurant-hours .foodord-restaurant-hours__button:hover {
    background: var(--restaurant-soft, #f5f6f8);
  }
}
.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 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.foodord-hours-info {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}
.foodord-hours-info[hidden],
.foodord-hours-info__tooltip[hidden] {
  display: none;
}
.foodord-hours-info__button {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: color-mix(in srgb, var(--primary-color, #ea004b) 9%, transparent);
  box-shadow: none;
  color: color-mix(in srgb, var(--primary-color, #ea004b) 86%, currentColor);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.foodord-hours-info.is-active .foodord-hours-info__button {
  background: color-mix(in srgb, #16a34a 10%, transparent);
  color: color-mix(in srgb, #16a34a 76%, currentColor);
}
.foodord-hours-info__button[aria-expanded="true"],
.foodord-hours-info__button:focus-visible {
  background: color-mix(in srgb, var(--primary-color, #ea004b) 16%, transparent);
  color: var(--primary-color, #ea004b);
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.foodord-hours-info.is-active .foodord-hours-info__button[aria-expanded="true"],
.foodord-hours-info.is-active .foodord-hours-info__button:focus-visible {
  background: color-mix(in srgb, #16a34a 16%, transparent);
  color: color-mix(in srgb, #16a34a 76%, currentColor);
}
@media (hover: hover) and (pointer: fine) {
  .foodord-hours-info__button:hover {
    background: color-mix(in srgb, var(--primary-color, #ea004b) 16%, transparent);
    color: var(--primary-color, #ea004b);
  }
  .foodord-hours-info.is-active .foodord-hours-info__button:hover {
    background: color-mix(in srgb, #16a34a 16%, transparent);
    color: color-mix(in srgb, #16a34a 76%, currentColor);
  }
}
.foodord-hours-info__button:active {
  transform: scale(.94);
}
.foodord-hours-info__icon {
  display: block;
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("../images/info.svg") center / contain no-repeat;
}
.foodord-hours-info__tooltip {
  position: absolute;
  z-index: 30;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  width: max-content;
  max-width: min(260px, calc(100vw - 24px));
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--primary-color, #ea004b) 22%, #dfe3e8);
  border-radius: 6px;
  background: #fff;
  color: #20242a;
  font-family: var(--foodord-body-font, sans-serif);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  text-align: start;
  text-transform: none;
  transform: translate3d(0, -5px, 0) scale(.965);
  transform-origin: calc(100% - 10px) top;
  transition: opacity .14s ease-out, transform .16s ease-in, visibility 0s linear .16s;
  visibility: hidden;
  white-space: normal;
  will-change: opacity, transform;
}
.foodord-hours-info__tooltip.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity .14s ease-out, transform .32s cubic-bezier(.2, 1.25, .3, 1), visibility 0s;
  visibility: visible;
}
.foodord-hours-info__tooltip.is-closing {
  visibility: visible;
}
.foodord-hours-info__tooltip.is-positioning {
  transform: translate3d(0, 0, 0) scale(1);
  transition: none;
}
.foodord-hours-info__tooltip.is-above {
  inset-block-start: auto;
  inset-block-end: calc(100% + 8px);
  transform: translate3d(0, 5px, 0) scale(.965);
  transform-origin: calc(100% - 10px) bottom;
}
.foodord-hours-info__tooltip.is-above.is-open,
.foodord-hours-info__tooltip.is-above.is-positioning {
  transform: translate3d(0, 0, 0) scale(1);
}
.foodord-hours-info__tooltip.is-align-end {
  inset-inline-start: auto;
  inset-inline-end: 0;
}
.foodord-hours-info__tooltip.is-align-start {
  inset-inline-start: 0;
  inset-inline-end: auto;
}
.foodord-hours-info__tooltip::before {
  position: absolute;
  inset-block-start: -4px;
  inset-inline-end: 6px;
  width: 8px;
  height: 8px;
  border-block-start: 1px solid color-mix(in srgb, var(--primary-color, #ea004b) 22%, #dfe3e8);
  border-inline-start: 1px solid color-mix(in srgb, var(--primary-color, #ea004b) 22%, #dfe3e8);
  background: #fff;
  content: "";
  transform: rotate(45deg);
}
.foodord-hours-info__tooltip.is-align-start::before {
  inset-inline-start: 6px;
  inset-inline-end: auto;
}
.foodord-hours-info__tooltip.is-above::before {
  inset-block-start: auto;
  inset-block-end: -4px;
  border-block-start: 0;
  border-block-end: 1px solid color-mix(in srgb, var(--primary-color, #ea004b) 22%, #dfe3e8);
  border-inline-start: 0;
  border-inline-end: 1px solid color-mix(in srgb, var(--primary-color, #ea004b) 22%, #dfe3e8);
}

@media (prefers-reduced-motion: reduce) {
  .foodord-hours-info__tooltip {
    transition: none;
  }
  .foodord-hours-info__tooltip.is-open {
    opacity: 1;
    transform: none;
  }
}
