.table-section-wrapper {
  position: relative;
}
.table-section-wrapper .section-wrapper {
  background-color: rgba(33, 37, 41, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.table-section-wrapper .text-content {
  text-align: center;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) {
  .table-section-wrapper .text-content {
    width: 80%;
  }
}
.table-section-wrapper .text-content-wrapper {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
}
@media only screen and (min-width: 960px) {
  .table-section-wrapper .text-content-wrapper {
    padding: 40px;
  }
}
.table-section-wrapper .table-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
}
.table-section-wrapper .table th, .table-section-wrapper .table td {
  min-width: 160px;
}
@media only screen and (min-width: 960px) {
  .table-section-wrapper .table th, .table-section-wrapper .table td {
    padding: 18px;
  }
}
.table-section-wrapper .table thead {
  border-radius: 15px 15px 0 0;
}
.table-section-wrapper .table thead th {
  background-color: #08443A;
  color: #fff;
  border-right: 1px solid #e9ecef;
}
.table-section-wrapper .table thead th:first-child {
  border-radius: 15px 0 0 0;
}
.table-section-wrapper .table thead th:last-child {
  border-radius: 0 15px 0 0;
  border-right: none;
}
.table-section-wrapper .table thead th .highlighted {
  background-color: #fff;
  color: #08443A;
  font-weight: var(--primary-font-weight-bold);
  border-radius: 15px;
  padding: 5px 15px;
  display: inline-flex;
  align-items: center;
}
.table-section-wrapper .table tbody {
  border-radius: 0 0 15px 15px;
}
.table-section-wrapper .table tbody tr:nth-child(even) td {
  background-color: #dae3e2;
}
.table-section-wrapper .table tbody td {
  border: 1px solid #e9ecef;
}
.table-section-wrapper .footer-text {
  text-align: center;
  color: #b87c5d;
  font-size: 85%;
}