ul#flex-container {
  list-style-type: none;
  margin; 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  gap: 65px;
}

.table>thead>tr>td,
.table>thead>tr>th {
  border-top: none;
  border-bottom: none;
}

.circle {
    background: #e3e3e3;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #6e6e6e;
    display: inline-block;
    font-weight: bold;
    line-height: 30px;
    margin-right: 5px;
    text-align: center;
    width: 30px;
}
.circle.blue {
    background: #00485E;
}
.circle.red {
    background: #C00000;
}
.circle.amber {
    background: #F8C209;
}
.circle.green {
    background: #007933;
}
.small-circle {
    background: #e3e3e3;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #6e6e6e;
    display: inline-block;
    font-weight: bold;
    line-height: 20px;
    margin-right: 5px;
    text-align: center;
    width: 20px;
}
.small-circle.blue {
    background: #00485E;
}
.small-circle.red {
    background: #C00000;
}
.small-circle.amber {
    background: #F8C209;
}
.small-circle.green {
    background: #007933;
}
.very-small-circle {
    background: #e3e3e3;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #6e6e6e;
    display: inline-block;
    font-weight: bold;
    line-height: 12px;
    margin-right: 5px;
    text-align: center;
    width: 12px;
}
.very-small-circle.blue {
    background: #00485E;
}
.very-small-circle.red {
    background: #C00000;
}
.very-small-circle.amber {
    background: #F8C209;
}
.very-small-circle.green {
    background: #007933;
}

/* Make circles that indicate the steps of the transaction */
.stage {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.25;
  background-color: white;
}

.stage.active {
  opacity: 1;
  background-color: white;
}

/* Mark the steps that have been completed */
.stage.finish {
  opacity: 0.25;
  background-color: white;
}

/* column headers */
th.rotated {
  white-space: nowrap;
}

th.rotated > div {
  transform:
    translate(25px, 51px)
    rotate(315deg);
  width: 30px;
  margin-bottom:50px;
}

th.rotated > div > span {
  padding: 5px 10px;
}

.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.scrollable {
    margin-bottom: 1em;
    max-height: 150em;
    overflow: auto;
}

.scrollable table {
    background-color: lightgrey;
    border-spacing: 0;
    margin-bottom: 0;
    min-width: 100%;
    width: max-content;
    border-radius: 10px;
    overflow:hidden;
}

.scrollable caption {
    font-size: smaller;
    padding-bottom: 0.5em;
    position: absolute;
    text-align: left;
    width: 25em;
    z-index: 3;
}

.scrollable th, .scrollable td {
    max-width: 10em;
    padding: 0.25em 0.5em;
    vertical-align: top;
}

.scrollable th {
    background: lightgrey;
    border-bottom: 1px solid gray;
    color: black;
    position: sticky;
    text-align: left;
    vertical-align: middle;
    top: 0;
}

.scrollable td {
    border-bottom: 1px solid gray;
    color: grey;
}

.scrollable tr:nth-child(odd) {
    background-color: #f5f5f5;
}

.scrollable th:first-of-type, .scrollable td:first-of-type {
    left: 0;
    position: sticky;
}

.scrollable th:nth-of-type(2), .scrollable td:nth-of-type(2) {
    left: 120px;
    position: sticky;
}

.scrollable th:nth-of-type(3), .scrollable td:nth-of-type(3) {
    left: 240px;
    position: sticky;
}

.scrollable th:nth-of-type(4), .scrollable td:nth-of-type(4) {
    left: 347px;
    position: sticky;
}

.scrollable th:nth-of-type(5), .scrollable td:nth-of-type(5) {
    left: 422px;
    position: sticky;
}

.scrollable th:nth-of-type(6), .scrollable td:nth-of-type(6) {
    left: 572px;
    position: sticky;
}

.scrollable th:first-of-type {
    z-index: 2;
}

.scrollable th:nth-of-type(2) {
    z-index: 2;
}

.scrollable th:nth-of-type(3) {
    z-index: 2;
}

.scrollable th:nth-of-type(4) {
    z-index: 2;
}

.scrollable th:nth-of-type(5) {
    z-index: 2;
}

.scrollable th:nth-of-type(6) {
    z-index: 2;
}

.scrollable td:first-of-type {
    background: lightgrey;
    z-index: 1;
}

.scrollable td:nth-of-type(2) {
    background: lightgrey;
    z-index: 1;
}

.scrollable td:nth-of-type(3) {
    background: lightgrey;
    z-index: 1;
}

.scrollable td:nth-of-type(4) {
    background: lightgrey;
    z-index: 1;
}

.scrollable td:nth-of-type(5) {
    background: lightgrey;
    z-index: 1;
}

.scrollable td:nth-of-type(6) {
    background: lightgrey;
    z-index: 1;
}

.scrollable a:link {
    color: SlateBlue;
    background-color: transparent;
    text-decoration: none;
}

.scrollable a:visited {
    color: SlateBlue;
    background-color: transparent;
    text-decoration: none;
}

.scrollable a:hover {
    color: #F8C209;
    background-color: transparent;
    text-decoration: underline;
}

.scrollable a:active {
    color: SlateBlue;
    background-color: transparent;
    text-decoration: underline;
}

.dataTables_length {
    margin-bottom:16px;
}

.dataTables_length .custom-select-sm {
    width: 100px !important;
    height: 42px;
}

.dataTables_filter {
    margin-bottom:16px;
}

.dataTables_filter .form-control-sm {
    width: 300px !important;
    height: 42px;
}

.pill {
    background: lightgrey;
}

.cr-dashboard {
    background-color: lightgrey;
    border-radius: 10px;
    border: 1px solid grey;
    overflow:hidden;
}

.cr-dashboard tr:nth-child(odd) {
    background-color: #f5f5f5;
}

.cr-dashboard th {
    color: black;
    border-top: none;
    border-bottom: 1px solid lightgrey;
}

.cr-dashboard td {
    color: grey;
    border-top: 1px solid grey;
    border-bottom: none;
}

.cr-dashboard a:link {
    color: SlateBlue;
    background-color: transparent;
    text-decoration: none;
}

.cr-dashboard a:visited {
    color: SlateBlue;
    background-color: transparent;
    text-decoration: none;
}

.cr-dashboard a:hover {
    color: #F8C209;
    background-color: transparent;
    text-decoration: underline;
}

.cr-dashboard a:active {
    color: SlateBlue;
    background-color: transparent;
    text-decoration: underline;
}

.dataTables_paginate {
    padding-top:16px;
}

div.pagination {
    width: 100%;
    text-align: right;
    padding: 0px;
    margin: 0px;
}
