/* ============================================
   CTA Button Widget
   ============================================ */

.bai_btn_wrap {
    display: flex;
}

.bai_btn_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border-style: solid;
    border-width: 2px;
    border-color: #0b66c2;
    border-radius: 4px;
    background-color: #0b66c2;
    color: #ffffff;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

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

.bai_btn_link:focus {
    outline: none;
}

/* Icon */
.bai_btn_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.bai_btn_icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.bai_btn_icon i {
    font-size: inherit;
    line-height: 1;
}

/* Icon position */
.bai_btn_link--icon-right {
    flex-direction: row;
}

.bai_btn_link--icon-left {
    flex-direction: row-reverse;
}
