/* Start custom CSS for html, class: .elementor-element-3b6abac */.thank-you-message {
    display: flex;
    align-items: center;
    gap: 15px;

    width: 100%;
    box-sizing: border-box;

    padding: 20px 22px;
    margin: 20px 0;

    background: #f3f7ff;
    border: 1px solid #d6e2f8;
    border-left: 4px solid #0044c2;

    border-radius: 8px;

    font-family: Arial, sans-serif;
}

.thank-you-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0044c2;
    color: #ffffff;

    border-radius: 50%;

    font-size: 22px;
    font-weight: 700;
}

.thank-you-content {
    flex: 1;
}

.thank-you-content h2 {
    margin: 0 0 6px 0;

    color: #0044c2;

    font-size: 24px;
    font-weight: 800;
}

.thank-you-content p {
    margin: 0;

    color: #444444;

    font-size: 16px;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 600px) {

    .thank-you-message {
        padding: 16px;
        gap: 12px;
    }

    .thank-you-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .thank-you-content h2 {
        font-size: 18px;
    }

    .thank-you-content p {
        font-size: 13px;
    }
}/* End custom CSS */