:root {
  --brand-highlight: #198754;
  --border-radius: 16px;
  --header-height: 60px;
  --footer-height: 60px;
}
html, body {
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background-size: 100%;
  background: #000 url("../../assets/images/background.svg") no-repeat center;
}
.page-content__inner {
  border: 1px solid red;
  height: calc(100vh - var(--footer-height));
  display: flex;
  justify-content: center;
  align-items: center;
}
.logobox {
  background: #fff;
  display: flex;
  align-items: center;
    justify-content: center;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: .2s transform ease-in-out;
}
.logobox__logo {
  height: 100%;
  max-height: 140px;
}
.logobox:hover {
  transform: scale(1.1);
  z-index: 2
}
.address-box {
  background: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  justify-content: center;
  display: flex;
}
.logobox__caption {
  margin-top: 2rem;
  font-weight: bold
}
footer {
  background: #000;
  color: #fff;
  height: var(--footer-height);
  font-weight: 300;
}
.opening-hours-list.list-group {
  background: #FFFFFF;
  border-radius: var(--border-radius);
  font-size: 1rem;
}
.opening-hours-list .is-today {
  border-left: 4px solid var(--brand-highlight);
  background-color: rgba(25, 135, 84, 0.1);
  font-weight: 600;
}

.opening-hours-list .day {
  min-width: 2.25rem;
}

