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;
    }
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #306C00;
}

input:focus + .slider {
  box-shadow: 0 0 1px #306C00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

