/**
 * Секция «Масштабируйте проект без ограничений» (доп. пакеты PLUS / PRO / ULTRA).
 */
.bh-token-packs {
  --bh-tp-border: #d3daec;
  --bh-tp-text: #212121;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 50px 24px 64px;
  overflow: hidden;
  font-family: Roboto, Arial, sans-serif;
}

.bh-token-packs *,
.bh-token-packs *::before,
.bh-token-packs *::after {
  box-sizing: border-box;
}

.bh-token-packs__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.bh-token-packs__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin: 0 auto 60px;
}

.bh-token-packs__title {
  margin: 0;
  max-width: 1006px;
  font-family: "Ubuntu Sans", Ubuntu, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  color: var(--bh-tp-text);
}

.bh-token-packs__lead {
  margin: 0;
  max-width: 732px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  text-align: center;
  color: var(--bh-tp-text);
  opacity: 0.8;
}

.bh-token-packs__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  max-width: 991px;
  margin: auto;
}

.bh-token-packs__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  flex: 0 0 auto;
  padding: 20px 5px 5px;
  border-radius: 20px;
  gap: 10px;
}

.bh-token-packs__card--plus {
  background: var(--bh-tp-text);
}

.bh-token-packs__card--pro {
  background: #0080ff;
}

.bh-token-packs__card--ultra {
  background: linear-gradient(180deg, #e6363e 0%, #f5464d 100%);
}

.bh-token-packs__ribbon {
  align-self: stretch;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 37.7px;
  text-align: center;
  color: #fff;
}

.bh-token-packs__panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  outline: 1px solid var(--bh-tp-border);
  outline-offset: -1px;
}

.bh-token-packs__body {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 10px;
  min-height: 0;
}

.bh-token-packs__price-row {
  position: relative;
  width: 240px;
  max-width: 100%;
  height: 33px;
}

.bh-token-packs__amount {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--bh-tp-text);
}

.bh-token-packs__period {
  position: absolute;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--bh-tp-text);
}

.bh-token-packs__period--plus {
  left: 75px;
  top: 10px;
}

.bh-token-packs__period--pro {
  left: 106px;
  top: 12px;
}

.bh-token-packs__period--ultra {
  left: 102px;
  top: 10px;
}

.bh-token-packs__details {
  width: 240px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: rgba(33, 33, 33, 0.8);
}

.bh-token-packs__detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 6px;
  padding: 0;
}

.bh-token-packs__detail:last-child {
  margin-bottom: 0;
}

.bh-token-packs__detail::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 9px;
  border-radius: 50%;
  background: #212121;
}

.bh-token-packs__detail > span {
  min-width: 0;
}

.bh-token-packs .bh-tiers__info {
  vertical-align: baseline;
}

@media screen and (max-width: 1100px) {
  .bh-token-packs__row {
    flex-direction: column;
    align-items: center;
  }

  .bh-token-packs__card {
    width: 100%;
  }
}

