/* Default Elementor-style primary button, customizable */
.oft-elementor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    background-color: #2271b1;
    color: #fff;
    border: 1px solid #2271b1;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 18px;
    min-width: 200px;
    text-align: center;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.oft-elementor-btn:hover {
    background-color: #135e96;
    border-color: #135e96;
    color: #fff;
}

.oft-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0;
}