.wlb {
  --wlb-border: #d8e0dc;
  --wlb-text: #173f38;
  --wlb-muted: #6c817b;
  --wlb-accent: #078c68;
  border: 1px solid var(--wlb-border);
  color: var(--wlb-text);
  margin: 0 0 20px;
  padding: 18px 20px;
}

.wlb__title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 6px;
}

.wlb__subtitle {
  color: var(--wlb-muted);
  margin: 0 0 16px;
}

.wlb__rows {
  border-top: 1px solid var(--wlb-border);
}

.wlb__row {
  align-items: center;
  border-bottom: 1px solid var(--wlb-border);
  column-gap: 14px;
  display: grid;
  grid-template-columns: 24px minmax(130px, 1fr) minmax(180px, 260px) minmax(92px, auto);
  min-height: 66px;
  padding: 12px 0;
}

.wlb__check {
  display: grid;
  height: 24px;
  place-items: center;
  width: 24px;
}

.wlb__check input {
  height: 16px;
  margin: 0;
  width: 16px;
}

.wlb__category {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.wlb__icon {
  display: inline-grid;
  flex: 0 0 22px;
  font-size: 18px;
  place-items: center;
}

.wlb__name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
}

.wlb__level {
  background: #fff;
  border: 1px solid var(--wlb-border);
  border-radius: 0;
  color: var(--wlb-text);
  min-height: 38px;
  padding: 0 12px;
  width: 100%;
}

.wlb__price {
  font-size: 15px;
  justify-self: end;
  white-space: nowrap;
}

.wlb__row.is-disabled {
  color: #9ba8a5;
}

.wlb__row.is-disabled .wlb__level {
  color: #9ba8a5;
}

.wlb__footer {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 22px;
}

.wlb__contact {
  font-size: 14px;
  line-height: 1.35;
  margin: 0;
}

.wlb__subtotal {
  align-items: baseline;
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.wlb__subtotal span,
.wlb__subtotal strong {
  font-size: 28px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .wlb {
    padding: 16px;
  }

  .wlb__row {
    grid-template-columns: 24px 1fr;
    row-gap: 10px;
  }

  .wlb__level,
  .wlb__price {
    grid-column: 2;
  }

  .wlb__price {
    justify-self: start;
  }

  .wlb__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .wlb__subtotal {
    justify-content: space-between;
  }

  .wlb__subtotal span,
  .wlb__subtotal strong {
    font-size: 22px;
  }
}
