.block-age-gate {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.block-age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}
.block-age-gate .modal {
  max-width: var(--wp--style--global--content-size);
  width: 800px;
  background-color: var(--wp--preset--color--background-dark);
  padding: var(--wp--preset--spacing--3-xl);
}
.block-age-gate .modal .content .label {
  text-align: center;
  color: var(--wp--preset--color--primary);
  text-transform: uppercase;
}
.block-age-gate .modal .content span.h1 {
  font-size: 56px;
  text-transform: uppercase;
  line-height: 100%;
  font-family: var(--wp--preset--font-family--heading);
  text-align: center;
  margin-top: var(--wp--preset--spacing--s);
  display: block;
}
@media screen and (max-width: 768px) {
  .block-age-gate .modal .content span.h1 {
    font-size: 31px;
  }
}
.block-age-gate .modal .content .age, .block-age-gate .modal .content .edition {
  margin-top: var(--wp--preset--spacing--xl);
  text-align: center;
}
.block-age-gate .modal .content .form-group {
  display: flex;
  justify-content: center;
  margin-top: var(--wp--preset--spacing--l);
  gap: var(--wp--preset--spacing--xl);
}
.block-age-gate .modal .content .form-group .form-item {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--s);
}
.block-age-gate .modal .content .form-group .form-item input[type=radio] {
  height: 20px;
  width: 20px;
  border-radius: 6px;
  position: relative;
  display: block;
  cursor: pointer;
}
.block-age-gate .modal .content .form-group .form-item input[type=radio]:checked:after {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2215%22%20viewBox%3D%220%200%2014%2015%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20id%3D%22check%22%3E%0A%3Cpath%20id%3D%22Icon%22%20d%3D%22M11.6663%204L5.24967%2010.4167L2.33301%207.5%22%20stroke%3D%22%2309090B%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}
.block-age-gate .modal .content .form-group .form-item input[type=radio]:after {
  content: "";
  display: block;
  position: absolute;
  background-color: white;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  pointer-events: none;
}
.block-age-gate .modal .content .buttons {
  display: flex;
  justify-content: center;
  gap: var(--wp--preset--spacing--xl);
  margin-top: var(--wp--preset--spacing--xl);
}
.block-age-gate .modal .content button {
  background: var(--wp--preset--gradient--primary);
  color: var(--wp--preset--color--black);
  font-family: var(--wp--preset--font-family--heading);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  padding: var(--wp--preset--spacing--m) var(--wp--preset--spacing--xl);
  border-radius: 999px;
  cursor: pointer;
  margin-top: var(--wp--preset--spacing--xl);
  border: 0px;
  margin: auto;
}
.block-age-gate .modal .content button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}