body{
    font-family:Arial, Helvetica, sans-serif;
}
#div-login {
    background-color: rgba(255, 255, 255, 0.8);
}
.loader {
    border: 16px solid #696d70; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-bottom: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    display: none;
}
.loader2 {
    border: 16px solid #696d70; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-bottom: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    display: block;
}

.loaderText {
    font-size: 20px;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
}

.accessAllowed {
    background-color: green;
}
.accessDenied {
    background-color: red;
}
.accessTotal {
    background-color: grey;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
label{
    font-size:13px;
}
a{
    font-size:13px;
}
table tr th{
    font-size:13px;
}
table tr td{
    font-size:13px;
}
.table-scroll {
    overflow: hidden;
    overflow-x: scroll;
}

.passes {
    color: white;
    margin: 5px
}

.passes .lead {
    display: block;
    margin-top: 10px;
}

@media(max-width: 800px){
    #login-card {
        margin-top: 35%;
    }
    .passes .lead {
        font-size: 15px;
    }

    .passes .lead span {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

