body.profile-page .profile-subscription-plans.profile-subscription-plans--annual {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
}

body.profile-page .profile-annual-plan-card {
  position: relative;
  grid-column: 1 / -1;
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title price"
    "daily price";
  row-gap: 5px;
  align-items: center;
  gap: 16px;
  padding: 25px 18px 16px;
  border: 1px solid rgba(44, 90, 61, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: #14231a;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(44, 90, 61, 0.14), 0 12px 28px rgba(35, 59, 43, 0.07);
}

body.profile-page .profile-annual-plan-card.is-selected {
  border-color: #2c5a3d;
}

body.profile-page .profile-annual-plan-card__badge {
  position: absolute;
  top: -1px;
  left: -1px;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px 0 8px 0;
  background: #c98c2a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

body.profile-page .profile-annual-plan-card__title {
  grid-area: title;
  min-width: 0;
  color: #17271d;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

body.profile-page .profile-annual-plan-card__price {
  grid-area: price;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  color: #111b15;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

body.profile-page .profile-annual-plan-card__price small {
  font-size: 14px;
  font-weight: 800;
}

body.profile-page .profile-annual-plan-card__price em {
  color: #8b918e;
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
  text-decoration: line-through;
}

body.profile-page .profile-annual-plan-card__daily {
  grid-area: daily;
  min-height: 24px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(32, 57, 41, 0.11);
  border-radius: 999px;
  background: #f5f7f1;
  color: #536354;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 380px) {
  body.profile-page .profile-annual-plan-card {
    min-height: 102px;
    gap: 10px;
    padding-inline: 14px;
  }

  body.profile-page .profile-annual-plan-card__title {
    font-size: 17px;
  }

  body.profile-page .profile-annual-plan-card__price {
    font-size: 30px;
  }
}
