.header {
  text-align: center;
  margin-bottom: 50px;
}
.header h1 {
  color: #ffffff;
}
.header p {
  color: #a1a1a1;
}
.header .text-free {
  text-decoration: underline;
  font-weight: bold;
  color: #fff;
}

.plan-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.plan {
  position: relative;
  background-color: #2e2e2e;
  padding: 20px;
  border-radius: 10px;
  max-width: 250px;
  width: 100%;
  text-align: center;
  transition: all linear 0.3s;
  margin-bottom: 20px;
}
.plan:hover {
  transform: scale(1.01);
}
.plan.corp {
  width: auto;
  max-width: none;
  margin: 0 22px;
}
@media all and (max-width: 991px) {
  .plan.corp {
    margin: 0 84px;
  }
}
@media all and (max-width: 786px) {
  .plan.corp {
    margin: 0;
  }
}
.plan.plan-index-2 {
  background-color: #383838;
  border: 1px solid #fff;
}
.plan.plan-index-2 .featured-text {
  display: block;
}
.plan .info {
  color: #a1a1a1;
  margin-bottom: 10px;
}
.plan .featured-text {
  display: none;
  position: absolute;
  bottom: 100%;
  margin-bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e02a2a;
  color: #fff;
  padding: 3px;
  height: 30px;
  border-radius: 5px 5px 0 0;
}
.plan .text-muted {
  font-size: 12px;
}
.plan h2 {
  color: #ffffff;
}
.plan .price-holder {
  color: #d1d1d1;
  font-size: 30px;
}
.plan .price-holder span {
  font-size: 0.5em;
}
.plan ul {
  list-style: none;
  padding: 0;
  color: #a1a1a1;
  text-align: left;
  margin: 10px 0;
}
.plan ul li {
  margin-bottom: 10px;
  line-height: 1.6em;
}
@media all and (max-width: 768px) {
  .plan {
    max-width: 100%;
  }
}

#modalPayment .modal-body {
  min-height: 50vh;
}

.trust-badges {
  padding: 5px;
  margin-top: 10px;
  border-radius: 5px;
  background-color: #000;
}
.trust-badges .text {
  text-align: center;
}
.trust-badges .text .fa {
  font-size: 2rem;
  color: var(--success);
  vertical-align: middle;
}
.trust-badges .logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.trust-badges .logos img {
  width: 50px;
}

.alert-free-period {
  margin-bottom: 10px;
  font-size: 14px;
}

.container-subscription-plan-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.container-subscription-plan-status .action-buttons {
  display: none;
}
.container-subscription-plan-status .start-now-holder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.container-subscription-plan-status .confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.container-subscription-plan-status .card {
  max-width: 600px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transform: scale(1);
  transition: all 0.3s;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.container-subscription-plan-status .plan {
  max-width: 350px;
}
.container-subscription-plan-status .icon-holder {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-subscription-plan-status .icon-holder .icon-error .material-icons {
  font-size: 100px;
  color: var(--danger);
}
@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}