.fraud_overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fraud_overlay.is_active {
    display: flex;
}

.fraud_modal {
    position: relative;
    width: 100%;
    max-width: 825px;
    background: #2A63AF;
    border-radius: 4px;
    padding: 40px 50px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    color: #fff;
}

.fraud_modal_close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.fraud_modal_close svg {
    width: 20px;
    height: 20px;
    display: block;
}

.fraud_modal_logo {
    display: block;
    max-width: 129px;
    height: auto;
    margin: 0 auto 24px;
}

.fraud_modal_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 16px;
}

.fraud_modal_text {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 16px;
}

.fraud_modal_link {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

.fraud_modal_link:hover {
    text-decoration: none;
}

@media (max-width: 767px) {
    .fraud_modal {
        padding: 32px 24px;
    }

    .fraud_modal_title {
        font-size: 18px;
    }

    .fraud_modal_text,
    .fraud_modal_link {
        font-size: 16px;
    }
}
