a { 
    font-weight: bold;
    text-decoration: none; 
}
a:link { 
    text-decoration: none; 
}
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }



/* Move to SASS */

.serif { 
    font-family: "Garamond", serif;
} 

.lime { 
    color: #97c152; 
}

.bg-lime { 
    background-color: #97c152; 
    font-weight: bold;
}

.btn-primary {
    color: #f8fafc;
}

.btn-primary:hover { 
    color:#f8fafc;
}

.navbar { 
    background-color: #00528d; 
    color: #f8fafc;
}

.navbar-brand {
    color: #f8fafc;
}

.nav-link { 
    color: #f8fafc;
}

.form-inline { 
    display: inline;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  border-top: solid thin slategray;
  border-bottom: solid thin slategray;
}

.footer {
    font-size:1em;
    padding: 0.1em;
    width: 100%;
/*    background-color: #97c152; */
    background-color: #555298; 
    color: white;
    text-align: center;
}

.footer_sticky {
    position: fixed;
    left: 0;
    bottom: 0;
}

.search-box { 
    border-color: #00528d;
}


/*** BEGIN Toggle Switch  ***/
/* The switch - the box around the slider */
.toggle_switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.toggle_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.toggle_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.2s;
}

.toggle_slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.2s;
}

input:checked + .toggle_slider {
  background-color: #2196F3;
}

input:focus + .toggle_slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .toggle_slider:before {
  transform: translateX(13px);
}

/* Rounded sliders */
.toggle_slider.round {
  border-radius: 17px;
}

.toggle_slider.round:before {
  border-radius: 50%;
}

/*** END Toggle Switch  ***/
