.age-modal {
    position: fixed;
    z-index: 100000000000000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f301199;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
}

.age-modal.closing {
    animation: closing-age-modal 1s ease;
}

@keyframes closing-age-modal {
    50% {opacity: 1;}
    100% {opacity: 0;}
}

.age-modal__content {
    display: block;
    background: white;
    border-radius: 7px 7px 9px 9px;
    background: #FFF;
    box-shadow: 0px 5px 7px -2px rgba(0, 0, 0, 0.08);
    padding: 36px;
    max-width: 560px;
    text-align: center;
}

.age-modal__heading {
    font-size: 24px;
    margin-bottom: .5em;
}

.age-modal__buttons {
    margin-top: 24px;
    display: inline-flex;
    gap: 16px;
}

.age-modal__img {
    height: 56px;
    aspect-ratio: 25/7;
    margin-bottom: 36px;
}