/* https://www.w3schools.com/howto/howto_css_loader.asp */
.looker-auth-loader {
    z-index: 10;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(47, 3, 78, 0.9);
    top: 0;
    left: 0;
}

.looker-auth-loader-spinner {
    border: 16px solid #f3f3f3; /* ---------- Light grey ---------- */
    border-top: 16px solid #46007c; /* ---------- Blue ---------- */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    margin-top: -50px; /* ---------- Negative half of height. ---------- */
    margin-left: -50px; /* ---------- Negative half of width. ---------- */;
    position: fixed;
    animation: spin 2s linear infinite;
}

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

.select-affiliation-title {
    font-family: "NunitoSans-Bold";
    padding: 5px;
    margin-left: 20px;
}