.premium-plan,
.premium-trial {
  width: 100%;
  min-height: 70px;
  margin-top: 12px;
  border: 0;
  border-radius: 16px;
  background: #ebedef;
  color: #102a56;
  font: inherit;
  text-align: left;
}
.premium-plan {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
  padding: 12px 16px;
}
.premium-plan.on {
  border: 1.5px solid #53b1fd;
  background: rgba(9, 110, 249, .12);
  box-shadow: 0 0 0 3px rgba(83, 177, 253, .26);
}
.premium-plan img {
  width: 28px;
  height: 28px;
  align-self: center;
}
.premium-plan span {
  align-self: center;
  font-size: 18px;
  line-height: 22px;
}
.premium-plan b {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0 3px;
  align-self: center;
  font-size: 21px;
  line-height: 22px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}
.premium-plan em {
  color: #8290a2;
  font-size: 16px;
  line-height: 18px;
  font-style: normal;
  font-weight: 400;
}
.premium-plan b small {
  flex: 0 0 100%;
  margin-top: 2px;
  color: #102a56;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  text-align: right;
}
.premium-trial {
  min-height: 52px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 15px;
}
.premium-trial img {
  width: 51px;
  height: 32px;
  flex: 0 0 auto;
}
.premium-primary {
  position: relative;
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #3377ef;
  color: #fff;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(36, 120, 242, .18);
}
.premium-primary span {
  position: absolute;
  inset: -30% auto -30% -20%;
  width: 34%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: premium-shine 2.4s linear infinite;
}
.premium-bottom {
  margin: 12px 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.premium-bottom button {
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: #8290a2;
  font: inherit;
  font-size: 12px;
}
.premium-bottom i {
  width: 1px;
  height: 12px;
  background: #8290a2;
}
@keyframes premium-shine {
  from { left: -30%; }
  to { left: 120%; }
}
