.extra-container{
  background: rgb(0,97,242);
  background: linear-gradient(90deg, rgba(0,97,242,0.7) 0%, rgba(16,137,210,0.7) 90%);
  color: #fff;
  border-radius: 10px;
  text-align: left;
}
.extra-container h2{
  font-size: 20pt;
  font-weight: 800;
}
.extra-container p{
  font-size: 10pt;

}
.plan-card {
  background-color: rgba(0, 115, 234, 0.5);
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.plan-text-bold{
  font-weight: 800;
}
.discount {
  background-color: #ff7b00;
  color: white;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 10pt;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 10px;
}
.price {
  font-size: 1.5rem;
  font-weight: 800;
}
.old-price {
  text-decoration: line-through;
  opacity: 0.8;
}
.btn-custom {
  background-color: #fff;
  color: #0073ea;
  font-weight: bold;
  border-radius: 5px;
  padding: 8px 20px;
  text-transform: uppercase;
  width: 100%;
  transition-duration: 0.5s;
}
.btn-custom:hover {
  background-color: #0073ea;
  color: #fff;
}
.wave{
  display: flex;
  padding-left: 5px;
  gap: 4px;
}
.wave-item {
  width: 4px;
  height: 20px;
  background-color: dimgray;
  border-radius: 4px;
}
.wave-plan-card-colored{
  background-color: #ff7b00;
}
@media only screen and (max-width: 300px) {
  .plan-card-wave{
      display: none;
  }
}