.nlpp {
  margin: 24px 0;
}
.nlpp__cards {
  display: grid;
  gap: 8px;
}
.nlpp-card {
  position: relative;
  background: transparent;
  overflow: hidden;

  border-radius: 4px;
  border: 0.5px solid var(--light);
}
.nlpp-card.is-selected {
  border-color: #7d70f0;
  background-color: #7d70f0;
}
.nlpp-card__radio {
  position: absolute;
  left: 22px;
  top: 16px;
  width: 24px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
}
.nlpp-card__label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 12px 14px 12px 60px;
  cursor: pointer;
}
.nlpp-card__label:before {
  content: "";
  position: absolute;
  left: 22px;
  top: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--light);
  background: transparent;
  box-sizing: border-box;
}
.nlpp-card.is-selected .nlpp-card__label:before {
  border-color: #fff;
}
.nlpp-card.is-selected .nlpp-card__label:after {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}
.nlpp-card__row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.nlpp-card__title {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
}
.nlpp-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  border: 1px solid #7d70f0;
}
.nlpp-card.is-selected .nlpp-card__pill {
  background: #fff;
  color: #2f2d2d;
}
.nlpp-card__desc {
  margin-top: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.24px;
  max-width: 330px;
}

.nlpp-card__price {
  text-align: right;
  font-family: Matrice;
  font-size: 22px;

  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.woocommerce-Price-amount.amount {
  display: flex;
  align-items: start;
  gap: 8px;
}

.woocommerce-Price-currencySymbol {
  font-family: "Google Sans Flex";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.nlpp-card__sub {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.5;
}

@media (max-width: 920px) {
  .nlpp-card__label {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .nlpp-card__right {
    text-align: left;
  }
  .nlpp-card__sub {
    white-space: normal;
  }
}
