.plan {
  background-color: #f0f0f0;
  border: 2px sold #f0f0f0;
  position: relative;
  cursor: pointer;
  user-select: none;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 16px;
}
.plan:hover {
  background-color: #e0e0e0;
}
.plan__original-price {
  font-size: 16px;
  font-weight: bold;
  color: #1f4e79;
  text-decoration: line-through;
  padding: 32px 0;
}
.plan__original-price--invisible {
  color: transparent;
}
.plan__discounted-price {
  color: #fd0e65;
  font-size: 32px;
  font-weight: bold;
}
.plan__duration {
  margin-bottom: 32px;
  color: #fd0e65;
  font-size: 16px;
}
.plan__badge {
  position: absolute;
  font-size: 14px;
  top: -12px;
  left: 24px;
  border-radius: 6px;
  padding: 4px 12px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
}

.plan__badge--primary {
  background-color: #fd0e65;
  color: white;
}

.plan__badge--secondary {
  background-color: #1f4e79;
  color: white;
}

.plan__savings {
  padding: 6px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
  color: #fd0e65;
  font-size: 16px;
  font-weight: bold;
}
.plan__savings--invisible {
  color: transparent;
  background: none;
}
