html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.waitSpinner {
    padding: 10px;
    display: none;
    color: #ff0000;
}
.errorMessage {
    font-weight: bold;
    color: #B30000;
    padding-bottom: 15px;
}

.subheading {
    font-weight: bold;
    font-size: 18px;
    color: #555555;
    padding-top: 15px;
    padding-bottom: 15px;
}
.tblWarning {
    border-top: 1px solid black;
    border-left: 1px solid black;
}
.nonotes {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #AD0000;
    font-weight: bold;
}
.tblWarning thead tr th {
    background-color: #9B2525;
    color: white;
    font-weight: bold;
    padding: 3px;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}
.tblWarning tbody tr td {
    padding: 10px;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    background-color: #f8f8f8;
}

.scrollable {
    overflow-y: auto;
    height: 550px;
    border: 1px black solid;
    word-wrap: normal;
    padding: 2%;
    width: 90%;
    margin: 0 auto;
}

.inputBorder {
    border: 1px solid red;
    border-radius: 10px;
    background-color: #f8f8f8;
    margin-bottom: 20px;
}
.tblInput {
    /*border: 1px solid red;*/
    width: 100%;
}
.tblInput td{
    padding: 5px;
}
.txtInput{
    padding: 5px;
}
.button-proceed {
    background-color: #04AA6D; /* Green */
    border: none;
    color: white;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}

.button-task {
    background-color: #0034c8; /* blue*/
    border: none;
    color: white;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}

.button-warn {
    background-color: #e08900; /* orange */
    border: none;
    color: white;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}