.section-table {
  background-color: #1D1D1D;
  position: relative;
}
.section-table .container {
  position: relative;
  z-index: 3;
}
.section-table__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url(../../../../assets/img/bg-table.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.section-table:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(5.01%, #000), color-stop(61.89%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000 5.01%, rgba(0, 0, 0, 0) 61.89%);
}

.section-table:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(5.01%, #000), color-stop(61.89%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000 5.01%, rgba(0, 0, 0, 0) 61.89%);
}

.section-table .title {
  max-width: 100%;
  width: 100%;
}

.table {
  width: 100%;
  max-width: 100%;
  border: none;
  margin-bottom: 20px;
  z-index: 1;
  min-width: 450px;
}
.table-wrapper {
  width: 100%;
  overflow: auto;
}

.table thead th {
  padding: 10px 6px;
  font-weight: 500;
  font-size: 12px;
  text-align: left;
  color: white;
  text-align: center;
}

.table tbody td {
  padding: 10px 6px;
  font-size: 12px;
  color: white;
  text-align: center;
}

.table tbody td:nth-child(1) {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.table tbody tr {
  border-left: 8px solid transparent;
}

/*.table tbody tr td:nth-child(6) {
	min-width: 50px;
}*/
.table tbody tr span:first-child {
  display: block;
  width: 20px;
}

.table tbody tr:nth-child(1), .table tbody tr:nth-child(2) {
  border-left: 8px solid #009E8D;
}

.table tbody tr:nth-child(3), .table tbody tr:nth-child(4) {
  border-left: 8px solid #00FEE2;
}

.table tbody tr:nth-last-child(-n+4) {
  border-left: 8px solid #2BFFE8;
}

.table tbody tr:nth-child(odd) {
  background: #00B6AA;
}

.table tbody tr:nth-child(even) {
  background: transparent;
}

.table__icon {
  max-width: 23px;
}

.thead_img img {
  margin: 0 auto;
  width: 146px;
  height: 21.931px;
}

/*@media (min-width: 620px) {
  .section-table::after {
    width: 220px;
    height: 220px;
    right: -52px;
  }
}*/
@media (min-width: 768px) {
  .table thead th, .table tbody td {
    font-size: 16px;
  }
  .table tbody td {
    padding: 10px 6px;
  }
}
@media (min-width: 920px) {
  .table tbody td:nth-child(1) {
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .table thead th, .table tbody td {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
/*  .section-table::after {
    width: 400px;
    height: 400px;
    right: -100px;
  }*/
  .table tbody td:nth-child(1) {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .thead_img img {
    width: 136px;
    height: 20.429px;
  }
}
@media (max-width: 400px) {
  .thead_img img {
    width: 72px;
    height: 10.815px;
  }
}