.plan-control-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}

.plan-control-row .plan-tabs {
  margin-bottom: 0;
}

.currency-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 5px 8px 5px 18px;
  border: 1px solid rgba(117, 188, 255, .24);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(5, 25, 55, .96), rgba(13, 45, 82, .9));
  color: #8eacca;
  box-shadow: 0 12px 30px rgba(0, 8, 27, .18);
}

.currency-control > span {
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.currency-control select {
  min-width: 210px;
  padding: 10px 38px 10px 13px;
  border: 0;
  border-radius: 999px;
  outline: 0;
  background: #112d52;
  color: #f4fbff;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  color-scheme: dark;
}

.currency-control select:focus-visible {
  box-shadow: 0 0 0 3px rgba(36, 216, 238, .3);
}

.currency-disclaimer {
  min-height: 20px;
  margin: 6px 0 18px;
  color: #7899bb;
  font-size: 11px;
}

.pricing article > .converted-price {
  min-height: 35px;
  margin: 14px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(85, 185, 238, .18);
  color: #dff9ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.pricing article > .converted-price[data-live="true"]::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #25d9eb;
  box-shadow: 0 0 10px rgba(37, 217, 235, .75);
  vertical-align: 1px;
}

@media (max-width: 700px) {
  .plan-control-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plan-control-row .plan-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .currency-control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    padding-left: 15px;
  }

  .currency-control select {
    width: 100%;
    min-width: 0;
  }

  .currency-disclaimer {
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .pricing article > .converted-price {
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .currency-control {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 10px;
    border-radius: 18px;
  }
}
