.text-block {
  padding: var(--spacing-10) 0;
}
@media screen and (min-width: 1024px) {
  .text-block {
    padding: var(--spacing-20) 0;
  }
}

.pricing-wrapper {
  width: 100%;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.pricing-table th,
.pricing-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #000;
}

.pricing-table thead th {
  background: var(--brand-2);
}

@media (max-width: 780px) {
  .pricing-table {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tbody tr {
    display: block;
    margin: 0 0 12px 0;
    padding: 0;
  }
  .pricing-table tbody tr:not(:last-child) {
    border-bottom: 4px solid var(--brand-2);
    margin-top: 12px;
    padding-bottom: 12px;
  }
  .pricing-table td {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #000;
  }
  .pricing-table td:last-child {
    border-bottom: 0;
  }
  .pricing-table td::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 8px;
  }
}
@media (max-width: 780px) and (max-width: 420px) {
  .pricing-table td {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-table td::before {
    margin-bottom: 4px;
  }
}
/*# sourceMappingURL=textBlock.1765730479102.css.map */