.age-popup{
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  z-index: -1;
  margin: 0 auto;
  top: 0;
  left: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: rgba(var(--color-overlay) / 0.6);
  backdrop-filter: blur(var(--backdrop-blur));
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-popup[open] {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}
.age-popup[closing]{
  opacity: 0;
  visibility: hidden;
  transition:opacity 0.3s ease, visibility 0.3s ease;
}
.age-popup__content-info{
  border-radius:var(--media-radius);
  max-width: 480px;
}
.age-popup__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blur-image{
  filter: blur(8px);
}
