.age-verification-no-access {
    text-align: center;
    background-color: #282828;
    width: 100%;
    padding-top: .75rem;
    padding-bottom: .75rem;
    display: none;
}

.age-verification_overlay {
  z-index: 99;
  background-color: #0009;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.age-verification_popup {
  text-align: center;
  background-color: #000;
  border-radius: 0;
  align-self: center;
  width: 40rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2.25rem 1rem 3rem;
  display: block;
  position: relative;
  top: 0%;
  left: 0;
}

.age-verification_copy {
  color: #fff;
  text-align: center;
  letter-spacing: .05rem;
  font-family: bonnie-condensed;
  font-size: 1.1rem;
}

.age-verification_buttons {
  grid-column-gap: 4rem;
  grid-row-gap: 2rem;
  text-align: center;
  justify-content: center;
  margin-top: 4rem;
  display: flex;
}

.age-verification_button-yes,
.age-verification_button-no {
    color: #fff;
    letter-spacing: .2rem;
    text-transform: uppercase;
    background-color: #bbac78;
    padding: .25rem 2.75rem 0;
    font-family: sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

.age-verification_welcome {
    color: #bbac78;
    text-align: center;
    letter-spacing: .3rem;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    font-family: sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
}

.age-verification-no-access-message {
    color: #fff;
    font-size: 18px;
    padding: 1rem 1.5rem;
}

.age-verification_logo {
  margin-bottom: 2rem;
  width: 80%;
}

.age-verification_content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.age-verification_heading {
  color: #bbac78;
  text-align: center;
  letter-spacing: .05rem;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
}

.age-verification_buttons a,
.age-verification_buttons a:link,
.age-verification_buttons a:visited,
.age-verification_buttons a:hover,
.age-verification_buttons a:active,
.age-verification_buttons button,
.age-verification_buttons button:hover,
.age-verification_buttons button:active {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 767px) {
  .age-verification_popup {
    width: 70svw;
  }
}

@media screen and (max-width: 479px) {
  .age-verification_popup {
    width: 90svw;
  }

  .age-verification_logo {
    width: 90%;
  }
}


