#tables-block {
  padding: 40px 0;
  background-image: url(images/formbg.png);
  background-position: center center;
  background-color: white;
  background-blend-mode: multiply;
}

#tables-block .container {

  /* display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; */
}

#tables-block .block__title {
  text-align: left;

}

#tables-block .content .table {
  max-width: 100%;
  overflow: auto;
  margin: 30px 0px;

}

#tables-block .content .table h3 {
  padding-bottom: 20px;
}

.site_style_tables {
  min-width: 500px;
  width: 100%;
  overflow-x: auto;
  border-spacing: 0px;
  border-collapse: collapse;
  background-color: white;
  border: 1px solid #83aa51;
}

.site_style_tables thead {
  background-color: white;
  color: black;
}

.site_style_tables thead tr th {
  color: white;
  font-weight: 700;
  padding: 12px;
  background-color: #83aa51;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  /* border-left: 1px solid white; */
}
.site_style_tables thead tr th:nth-child(1), .table-one .site_style_tables thead tr th:nth-child(2){ 
  background-color: #add975;
}
.table-one .site_style_tables thead tr th:nth-child(1) { 
background-color: white;
  border-bottom: 1px solid #83aa51;
}
.site_style_tables thead tr th:last-child {
  border-right: 1px solid #83aa51;
}

.site_style_tables thead tr:nth-child(1) th:nth-child(1) {
  /* background: white; */
  /* color: black; */

}


.site_style_tables tbody tr td {
  border-left: 1px solid #83aa51;
  border-right: 1px solid #83aa51;
  border-top: 1px solid #83aa51;
  padding: 12px;
  text-align: center;
}

.site_style_tables tbody tr td:nth-child(1) {
  width: 250px;
  font-weight: 700;
  text-align: left;
}

#tables-block:not(.table-two) .site_style_tables tbody tr td:nth-child(1) {
  color: white;
  border-top: 1px solid white;
  background: #83aa51;

}


@media (max-width: 999px) {

  .site_style_tables tbody tr td:nth-child(1) {
    width: auto;
  }

  .site_style_tables tbody tr td,
  .site_style_tables thead tr th {
    padding: 10px;
    font-size: 14px;
  }

  .site_style_tables thead tr th {
    font-size: 14px;
  }
}