:root {
  --bdg-blue: #005288;
  --bdg-blue-light: #0A7FCC;
  --bdg-blue-dark: #033D64;
  --bdg-yellow: #F2D202;
  --bdg-orange: #fcaf17;
  --bdg-grey: #767c81;
  --bdg-grey-light: #d9dcde;
  --bdg-grey-lighter: #F2F2F2;
  --bdg-grey-darkest: #1D2A33;
}

#bdg-popup-notice {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  background: rgba(0, 0, 0, 0.8);
}
#bdg-popup-notice .h1 {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
}
#bdg-popup-notice .inner {
  position: relative;
  max-width: 700px;
  padding: 1.5em;
  margin: auto;
  border-left: 5px solid var(--bdg-yellow);
  background: white;
}
@media screen and (min-width: 1025px) {
  #bdg-popup-notice .inner {
    padding: 2em;
    border-width: 10px;
  }
}
#bdg-popup-notice .content > :last-child {
  margin-bottom: 0;
}
#bdg-popup-notice-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  height: 2em;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--bdg-blue);
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
}/*# sourceMappingURL=bdg-frontend.css.map */