﻿
#htmx-indicator {
    display:none;
    position: absolute;
    top: 71px;
    width: 100%;
    z-index: 19;
}
.htmx-request#htmx-indicator {
    display: block;
}
.loader-container {
    border: 3px solid transparent;
    position: relative;
    padding: 2px;
}

    .loader-container:before {
        content: '';
        border: 1px solid transparent;        
        position: absolute;
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
    }

    .loader-container .loaderBar {
        position: absolute;
        height: 3px;
        top: 0;
        right: 100%;
        bottom: 0;
        left: 0;
        background: #039be5;
        width: 0;
        animation: borealisBar 2s linear infinite;
    }

@keyframes borealisBar {
    0% {
        left: 0%;
        right: 100%;
        width: 0%;
    }

    10% {
        left: 0%;
        right: 75%;
        width: 25%;
    }

    50% {
        left: 0%;
        right: 50%;
        width: 75%;
    }

    100% {
        left: 100%;
        right: 0%;
        width: 0%;
    }
}
