.confirm-age {
    z-index: 2147483645;
    top: 10%;
    position: fixed;
    right: 0;
    background-color: #fff;
    width: 95%;
    max-width: 650px;
    border-radius: 5px;
    left: 0;
    margin: 0 auto;
    font-size: 14px;
    max-height: 90%;
    box-shadow: 0 2px 15px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    font-family: Poppins;
    color: #1e1e1e;
    display: none;
}

.confirm-age.show {
    display: block;
}

.confirm-age h3 {
    font-size: 21px;
    line-height: 32px;
    text-transform: none;
}

.confirm-age h3::after {
    content: "1/2";
    font-size: 14px;
    line-height: 21px;
    position: absolute;
    right: 20px;
    top: 20px;
}

#onetrust-consent-sdk.age-confirmed #onetrust-policy-title::after {
    content: "2/2";
    font-size: 14px;
    line-height: 21px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.confirm-age p {
    font-size: 13px;
    text-align: left;
}

#onetrust-close-btn-container {
    display: none !important;
}

.age-button {
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    color: #0355ff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    border: 1px solid #0355ff;
    margin-top: 20px;
    text-transform: uppercase;
}

.age-button:hover {
    cursor: pointer;
    background-color: #e1e6ee;
}

.age-button.older {
    background-color: #0355ff;
    color: white;
    margin-left: 9px;
}

.age-button.older:hover {
    background-color: #0040c4;
}

.content-container {
    max-width: 480px;
    text-align: center;
    display: block;

}

.age-drago {
    position: absolute;
    right: 10px;
    bottom: -11px;
}

@media only screen and (max-width: 650px) {
    .age-drago {
        display: none;
    }

    .content-container {
        max-width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    .content-container {
        display: flex;
        flex-direction: column;
    }

    .content-container p {
        order: 1;
    }

    .age-button.older {
        order: 2;
        margin-left: 0;
    }

    .age-button {
        order: 3;
    }

    .confirm-age h3 {
        font-size: 17px;
        line-height: 24px;
    }
}