a {
    color: #c266ff;
    text-decoration: none;
}

a:visited {
    color: #a928ff;
}
a.active {
    text-decoration: underline;
}

.row {
    display: grid;
    grid-template-columns: 120px 5fr;
}

.d-flex {
    display: flex;
}

.v-center {
    align-items: center;
    vertical-align: middle;
}
.h-left {
    justify-content: flex-start;
    text-align: left;
}
.hidden {
    display: none !important;
}


div.loading {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    margin: 0;
    z-index: 20;
}

div.loading:after {
    content: "";
    width: 10vw;
    height: 10vw;
    border: 10px solid rgba(255, 245, 245, .8);
    border-top: 10px solid #60a;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    z-index: 21;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform:  rotate(30deg);
    }
    40% {
        transform: rotate(60deg);
    }
    60% {
        transform: rotate(120deg);
    }
    80% {
        transform: rotate(220deg);
    }
    100% {
        transform: rotate(360deg);
    }
}