.age18overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  display: none;
}
.age18overlay.active {
  display: block;
}
.age18overlay .age18popup {
  position: fixed;
  width: 300px;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  left: calc(50% - 150px);
  top: 200px;
}
.age18overlay .age18popup .age18text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 10px;
}
.age18overlay .age18popup .age18buttons {
  display: flex;
  justify-content: space-around;
}
.age18overlay .age18popup .age18buttons .age18button {
  font-size: 18px;
  width: 40%;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
}
.age18overlay .age18popup .age18buttons .age18button.age18button-agree {
  background-color: green;
}
.age18overlay .age18popup .age18buttons .age18button.age18button-disagree {
  background-color: red;
}
/*# sourceMappingURL=age18.css.map */