.pricing-table-error {
  font-size: 1.5em;
  text-align: center;
  margin: 0 auto;

  max-width: 365px;
}

.pricing-table-error-message {
  color: red;
  font-size: 2em;
  margin: 0;
  font-weight: bold;
}

.pricing-table-select-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.pricing-table-select-container > select {
  min-width: 230px;
  padding: 10px 16px;
  border: 1px solid #e2e2e4;
  border-radius: 8px;
}

.pricing-table-container {
  display: none;
  flex-wrap: wrap;
  flex-direction: row;

  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.pricing-table-container.default {
  display: flex;
}

.pricing-table-container p {
  margin: 0;
}

.pricing-table-container__product {
  row-gap: 20px;
  overflow: hidden;
  border-radius: 12px;

  padding: 20px;
  background-color: white;

  display: flex;
  flex-direction: column;
  flex: 0 1 270px;

  border: 1px solid #e2e2e4;
}

.pricing-table-container__product--popular {
  border: 1px solid #1463cc;
  border-top: 18px solid #1463cc;
  margin-top: -18px;
}

@media screen and (max-width: 665px) {
  .pricing-table-container__product--popular {
    margin-top: 0px !important;
  }
}

.pricing-table-container__product__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pricing-table-container__product__complimentary {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-table-container__product__complimentary p {
  display: none;
}

.pricing-table-container__product__plan {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0px;
  padding: 0 !important;
  display: inline-block;

  font-family: "DM Sans", sans-serif;
}

.pricing-table-container__product__features {
  margin: 0px !important;
  padding: 0px !important;
  list-style-type: none;

  display: flex;
  flex-direction: column;
  justify-content: end;
}

.pricing-table-container__product__feature {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  border-bottom: 1px solid #efeff7;

  display: flex;
  align-items: center;
  gap: 8px;

  color: rgb(34, 34, 39);
  padding: 8px 0px !important;
  margin: 0px !important;
}

.pricing-table-container__product__feature__title {
  padding: 0 !important;
  flex-grow: 1;
  font-weight: 400 !important;
}

.pricing-table-container__product__feature:last-child {
  border-bottom: none;
}

.pricing-table-container__product__feature--available {
  color: rgb(18, 152, 105);
}

.pricing-table-container__product__feature--not-available {
  color: rgb(224 30 18);
}

.pricing-table-container__product__feature--description-icon {
  color: rgb(106 106 123);
  flex: 0 0 auto;
}

.pricing-table-container__product__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(0, 107, 255);
  transition: all 0.3s ease-in-out;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 700;
  background: #006bff;
  color: white;

  padding: 18px 18px;
  border-radius: 9999px;
  text-decoration: none;

  width: 100%;
  box-sizing: border-box;
  min-height: 56px;
  text-align: center;
  cursor: pointer;

  position: relative;
}

.pricing-table-container__product__buy:hover {
  background: #1463cc;
  border: 1px solid #1463cc;
}

.pricing-table-container__product__buy:not(.product__buy--loading):disabled {
  opacity: 0.5;
}

.product__buy--loading {
  color: #639cff;
}

.pricing-table-container__product__buy .spinner {
  opacity: 0;
  color: white;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  pointer-events: none;
  touch-action: none;
}

.pricing-table-container__product__buy .spinner svg {
  pointer-events: none;
  touch-action: none;
}

.product__buy--loading .spinner {
  opacity: 1;
}

.pricing-table-container__product__prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-table-container__product__price {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  margin: 0px;
}

.pricing-table-container__product__discount {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0px;
  text-decoration: line-through;
  color: rgb(106 106 123);
}

.pricing-table-container__product__section {
  display: flex;
  gap: 24px;
  flex-direction: column;
  /*flex: 1 1 auto;
  justify-content: flex-end;*/
}

.pricing-table-container__product__trial {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0px;

  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-table-container__product__trial svg {
  width: 28px;
  height: 28px;
  color: rgb(27 215 149);
}

/* Popular badge */
.pricing-table-container__product__popular {
  background-color: rgb(227, 0, 121);
  color: white;

  text-transform: uppercase;
  border-radius: 9999px;

  font-size: 11px;
  line-height: 20px;

  padding: 4px 12px;
  font-weight: 700;

  display: inline-block;
  position: relative;
  top: -12px;
}

.pricing-table-container__product__save {
  background: rgb(248, 248, 248);
  color: rgb(187, 112, 255);

  text-transform: uppercase;
  border-radius: 9999px;

  font-size: 14px;
  line-height: 20px;

  padding: 8px 16px;
  font-weight: 700;
}

.pricing-table-container__product__discount__row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
