/* Contains basic, standalone styles for the loading/error divs when working with JIT */
/* These styles will eventually be extended/overwritten by the full-fat app CSS */

html {   
    height: 100%;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.42857143;
}

body {
    height: 100%;
    color: #afb7c4;
    background-color: #161e2b;
    margin: 0;
}

.loading-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.loading-info {
    flex-direction: column;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;   
}

.spinner {
    animation: rotate 0.8s infinite linear;
    -webkit-animation: rotate 0.8s infinite linear;
    border: solid #afb7c4;
    border-right-color: transparent;
    border-radius: 50%;
}

.spinner.small {
    height: 9px;
    width: 9px;
    border-width: 2px;
}

a {
    background-color: transparent;
    color: rgb(64, 143, 224);
    text-decoration: underline;
}

a:hover, a:focus {
    text-decoration: underline;
    filter: brightness(defs.$button-hover-brightness);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}