@keyframes hx-spin{
    0%{transform:rotate(0deg)}
    100%{transform:rotate(360deg)}
}

.htmx-request .hx-loader-icon{
    display:inline-flex!important
}

.hx-loader-icon{
    display:none!important;
    line-height:1.4
}

.htmx-request .hx-loader-text{
    display:none!important
}

.htmx-request .hx-icon-loader::before{
    content:"\f3f4";
    display:inline-block;
    -webkit-animation:hx-spin .5s infinite linear;
    animation:hx-spin .5s infinite linear
}

.htmx-request.hx-icon-loader::before{
    content:"\f3f4";
    display:inline-block;
    -webkit-animation:hx-spin .5s infinite linear;
    animation:hx-spin .5s infinite linear
}

.htmx-request .hx-loader-icon::before{
    content:"\f3f4";
    display:inline-block;
    -webkit-animation:hx-spin .5s infinite linear;
    animation:hx-spin .5s infinite linear
}

.htmx-request.disable-on-submit{
    pointer-events:none;
    opacity:.65
}

