.wp-block-table {
 margin-top: 60px;
 margin-bottom: 60px;
}

.wp-block-table.is-style-stripes table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.6);
}

.wp-block-table table {
  background-color: #F3F5FB;
  border: 0 !important;
}

.wp-block-table table thead {
  border-bottom: 0;
}

.wp-block-table table thead tr th {
  padding: 10px 12px;
  border: 0;
  text-align: left;
  vertical-align: top;
  font-weight: 400;
}

.wp-block-table table tbody tr td {
  padding: 12px;
  border: 0;
  border-top: 1px solid var(--primary-color);
  font-size: 14px;
  line-height: 1.4;
}

.wp-block-table table thead tr th,
.wp-block-table table tfoot tr th {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  padding: 18px 16px;
}

.wp-block-table table tbody tr td {
  font-size: 18px;
  line-height: 1.5;
  padding: 18px 16px;
}

@media (max-width: 767px) {
  .wp-block-table {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .wp-block-table table tbody tr td {
    font-size: 16px;
    padding: 12px;
  }


.wp-block-table table thead tr th,
.wp-block-table table tfoot tr th {
  padding: 12px;
}

  .wp-block-table table {
    min-width: 600px !important;
  }

  .wp-block-table table {
    min-width: 100%;
    width: max-content;
  }
}