.wf_btn {
    border-radius: 32px;
    height: 56px;
    /* line-height: 52px; */
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}
.wf_btn_icon {
    gap: 22px;
}
.wf_btn_icon .indicator_label {
    gap: 22px;
    display: flex;
    align-items: center;
}
.bg_blue_400 {
    background: var(--blue-400);
    color: var(--blue-950);
}
body:not(.mobile_device) .bg_blue_400:hover {
    background: var(--blue-300);
}
.bg_success_200 {
    background: var(--green-200);
    color: var(--green-950);
}
body:not(.mobile_device) .bg_success_200:hover {
    background: var(--green-100);
}
.bg_black_950 {
    background: var(--gray-950);
    color: var(--gray-50);
}
body:not(.mobile_device) .bg_black_950:hover {
    background: var(--gray-900);
    /* color: var(--gray-950); */
}
.bg_transparent {
    background: transparent;
}
.bg_white {
    background: var(--white);
}
.bg_white2 {
    background: var(--gray-50);
}
.wf_btn_disable {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.2;
}
.wf_btn.hidden {
    display: none;
}
.indicator_progress {
    display: none;
}
[data-wf-indicator="on"] > .indicator_progress {
    display: inline-block;
}
[data-wf-indicator="on"] > .indicator_label {
    display: none;
}
.indicator_progress .indicator_progress_spinner {
    margin-left: 5px;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    /* border: 2px solid white; */
    border: 2px solid conic-gradient(from 0deg, #0C8CE9, var(--white));
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: .65s linear infinite spinner-border;
}
@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}