.age-checker-popup {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #292929;
    background-image: url(../images/bg-body.png);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms;
}

.age-checker-popup__inner {
    background-color: #fff;
    background-image: url(../images/bg-pattern-bottom.png);
    background-position: bottom;
    background-repeat: repeat-x;
    border-radius: 14px;
    width: 600px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(-100px);
    transition: transform 500ms 200ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms 200ms;
}

.age-checker__text {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.age-checker__buttonNL {
    display: inline-block;
    background-image: linear-gradient(to bottom, #1c81e9, #1368bf);
    padding: 1.5rem 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 15px;
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    outline: none;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 200ms 500ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 200ms 500ms;
}

.age-checker__buttonNL:hover {
    background-image: linear-gradient(to bottom, #1368bf, #1c81e9);
}

.age-checker__buttonNL a{color: #ffffff}

.age-checker__button {
    display: inline-block;
    background-image: linear-gradient(to bottom, #6F8397, #57697B);
    padding: 1.5rem 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 15px;
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    outline: none;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 200ms 500ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 200ms 500ms;
}

.age-checker__button:hover {
    background-image: linear-gradient(to bottom, #57697B, #6F8397);
}

.age-checker-popup.visible {
    opacity: 1;
    pointer-events: all;
}

.age-checker-popup.visible .age-checker-popup__inner {
    transform: translateY(0);
    opacity: 1;
}

.age-checker-popup.visible .age-checker__button {
    transform: scale(1);
    opacity: 1;
}

.age-checker-popup.visible .age-checker__buttonNL {
    transform: scale(1);
    opacity: 1;
}
