html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* login */
.login .loginHeader {
    background-color: #227d54;
    color: #fff;
    font-size: 18px;
    text-align: left;
    padding: 10px;
}

.login .loginSubmit {
    background-color: #227d54;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 4px;
}

.login .form-control:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 0.25rem rgb(229 56 56 / 15%);
}

/* login */

.submitButton {
    background-color: #227d54;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 4px;
}

.submitButton:hover {
    color: #7cc9a8;
}

.tableHeader {
    background-color: #227d54;
    color: #fff;
}

/*#loader {
    position: fixed;
    opacity: 0.8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: rgba(255,255,255,0.8);
}

.overlay-content {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    color: #555;
}

.has-validation .error {
    width: 100%;
    margin-top: 0.25rem;
    font-size: .875em;
    color: #dc3545;
}

.dataTables_filter{
    margin-bottom: 10px;
}

table.dataTable tfoot td {
    font-weight: bold;
    text-align: end;
    border-bottom: 1px solid;
    border-bottom-color: lightgray;
}