.crm-pricing-wrapper {
  display: flex;
  width: 100%;
  background-color: var(--main-bg-color);
}

.crm-pricing {
  max-width: var(--max-screen-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 8rem auto;
}

.crm-pricing-title {
  color: var(--main-text-color);
  font-size: 6rem;
  font-weight: var(--font-weight-bolder);
  line-height: 6rem;
  text-align: center;
}

.crm-pricing-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 6rem 7rem;
  width: 100%;
  margin-top: 6rem;
  box-sizing: border-box;
}

.crm-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.crm-pricing-table tr {
  color: var(--main-text-color);
  font-size: var(--font-size-xxm);
}

tr.crm-pricing-table-row-grey {
  background-color: var(--main-bg-color);
}

.crm-pricing-table td {
  padding: 1.5625rem 2.25rem;
  line-height: 1.75rem;
}

.crm-pricing-table tr:not(.crm-pricing-table-row-grey):not(:last-of-type) > td {
  border-bottom: 0.5px solid var(--separator);
}

.crm-pricing-table tr > td:first-of-type {
  font-weight: var(--font-weight-bold);
  width: 45%;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.crm-pricing-table tr > td:nth-of-type(2) {
  width: 25%;
}

.crm-pricing-table tr > td:last-of-type {
  width: 20%;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

td .crm-pricing-cell-sub-text {
  font-weight: var(--font-weight-regular);
}

.crm-pricing-table > tbody > tr.crm-pricing-table-header > td {
  border-bottom: none !important;
  height: 8.625rem;
}

.crm-pricing-table > tbody > tr.crm-pricing-table-header > td:first-of-type {
  font-size: 2.0625rem;
  line-height: 3.125rem;
  vertical-align: top;
}

.crm-pricing-table-header-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
  color: var(--blue);
  font-size: 2.0625rem;
  line-height: 3.125rem;
  font-weight: var(--font-weight-bold);
}

.crm-pricing-table-header-small {
  font-size: var(--font-size-l);
  line-height: 1.5rem;
  font-weight: var(--font-weight-regular);
}
