.lct {
  width: 100%;
  font-family: "Montserrat", sans-serif;
}
.lct__table {
  width: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}
.lct__header {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr 1.8fr;
  background-color: #75A37E;
}
.lct__header-cell {
  padding: 18px 24px;
  color: #ffffff;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
}
.lct__header-cell--criteria {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #FFFFFF;
  text-transform: none;
}
.lct__body {
  display: flex;
  flex-direction: column;
}
.lct__row {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr 1.8fr;
  border-bottom: 1px solid #E0E0E0;
}
.lct__row:last-child {
  border-bottom: none;
}
.lct__cell {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #727272;
}
.lct__cell--criteria {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #727272;
}
.lct__cell--bad {
  color: #6B7280;
}
.lct__cell--good {
  color: #727272;
}
@media (max-width: 1024px) {
  .lct__header, .lct__row {
    grid-template-columns: 0.9fr repeat(2, 1fr);
  }
  .lct__header-cell {
    padding: 14px 16px;
    font-size: 16px;
  }
  .lct__cell {
    padding: 16px;
    font-size: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .lct__header, .lct__row {
    grid-template-columns: 0.85fr repeat(2, 1fr);
  }
  .lct__header-cell {
    padding: 13px 7px;
    font-size: 14px;
  }
  .lct__cell {
    padding: 13px 7px;
    font-size: 14px;
    align-items: flex-start;
  }
}/*# sourceMappingURL=las-comparison-table.css.map */