:root {
  --brand-highlight: #198754;
  --border-radius: 16px;
  --header-height: 60px;
  --footer-height: 60px;
  --box-background: rgba(255,255,255,.5)
}

@font-face {
    font-family: "OpenSans";
    src: url("../../assets/fonts/OpenSans-Light.woff2") format("woff2");
    font-weight: 300;
    font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../../assets/fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}

html, body {
  font-family: "OpenSans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5rem;
}
body {
  min-height: 100vh;
  background-size: cover;
  background-image:url("../../assets/images/background.svg");
  background-color: #000000;
  background-position: center;
}
h1 {
  font-weight: bold;
  color: #fff;
  text-align:center;
}

.page-content__inner {


  @media (min-width: 992px) {
    height: calc(100vh - var(--footer-height));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

}
.logobox {
  background: var(--box-background);
  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;
  border: 5px solid #FFF;
  /*height: 100%;*/
}
.logobox__logo {
  height: 100%;
  max-height: 140px;
  width: 100%;
  max-width: 100%;
  /*filter: grayscale(100%);*/
  transition: 0.2s filter ease-in-out;
}
/*.logobox:hover {*/
/*  transform: scale(1.1);*/
/*  z-index: 2;*/

/*  & .logobox__logo {*/
/*    filter: grayscale(0);*/
/*  }*/
/*}*/
.address-box {
  background: var(--box-background);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  justify-content: center;
  display: flex;
  flex-direction: column;
  border: 5px solid #FFF;
}
.address-box a {
  color: #000;
}
.logobox__caption {
  margin-top: 2rem;
  font-weight: bold
}
footer {
  background: #000;
  color: #fff;
  height: var(--footer-height);
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-width: 4px;
  border-top-style: solid;
  border-image: linear-gradient(to right, #71BF44, #036353) 1;
}
.opening-hours-box {
  background: var(--box-background);
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 5px solid #FFF;
}
.opening-hours-list{
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
.opening-hours-list-item {
  border-bottom: 1px solid var(--box-background);
  padding: 5px 10px 5px 10px;
  border-left: 4px solid transparent;
}
.opening-hours-list .is-today {
  border-left: 4px solid var(--brand-highlight);
  background-color: rgba(25, 135, 84, 0.2);
  font-weight: bold;
}

.opening-hours-list .day {
  min-width: 2.25rem;
}
.icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  margin-right: 5px;
}

