.age-popup,
.location-popup {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  color: #000;
}

.age-popup > div,
.location-popup > div {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.age-popup-title,
.age-popup-buttons,
.location-popup-title,
.location-popup-buttons {
  width: 20%;
  margin: 0 auto;
  display: flex;
}

.age-popup-title,
.location-popup-title {
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
}

.location-popup-message {
  justify-content: center;
  width: 100%;
  margin: 20px 0 0;
  color: red;
  font-weight: bold;
}

.age-popup-buttons,
.location-popup-buttons {
  justify-content: space-between;
}

.age-popup-button,
.location-popup-button {
  width: 45%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #fff;
  background-color: #000;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .age-popup-title,
  .age-popup-buttons,
  .location-popup-title,
  .location-popup-buttons {
    width: 60%;
  }
}
