/* _content/IQ.Blazor.UI/IQSpinner.razor.rz.scp.css */
.spinner[b-cuztetukhq] {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin-b-cuztetukhq 700ms linear infinite;
    margin-top: 40vh;
    left: 55%;
    position: absolute;
    z-index: 1100;
}

@keyframes spin-b-cuztetukhq {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}
/* _content/IQ.Blazor.UI/IQTooltip.razor.rz.scp.css */
.tooltip-wrapper[b-dstz8xrhd1] {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: help;
}

span[b-dstz8xrhd1] {
    visibility: hidden;
    position: absolute;
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1000000;
}

    span[b-dstz8xrhd1]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.tooltip-wrapper:hover span[b-dstz8xrhd1] {
    visibility: visible;
}
/* _content/IQ.Blazor.UI/Loading.razor.rz.scp.css */

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.dot-flashing[b-68dwt58ep4] {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #9880ff;
    color: #9880ff;
    animation: dot-flashing-b-68dwt58ep4 1s infinite linear alternate;
    animation-delay: 0.5s;
    margin: 15px;
}

    .dot-flashing[b-68dwt58ep4]::before, .dot-flashing[b-68dwt58ep4]::after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 0;
    }

    .dot-flashing[b-68dwt58ep4]::before {
        left: -15px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: #9880ff;
        color: #9880ff;
        animation: dot-flashing-b-68dwt58ep4 1s infinite alternate;
        animation-delay: 0s;
    }

    .dot-flashing[b-68dwt58ep4]::after {
        left: 15px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
        background-color: #9880ff;
        color: #9880ff;
        animation: dot-flashing-b-68dwt58ep4 1s infinite alternate;
        animation-delay: 1s;
    }

@keyframes dot-flashing-b-68dwt58ep4 {
    0% {
        background-color: #9880ff;
    }

    50%, 100% {
        background-color: rgba(152, 128, 255, 0.2);
    }
}
