span.mandatory {
    color: #ff0000;
    font-size: 16px;
    vertical-align: sub;
}

.text-red {
    color: #ff0000;
}


.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    background-color: #f0f0f0;
    display: none;
}


.dropdown-list li {
    padding: 5px 10px;
    cursor: pointer;
}


.dropdown-list li.active {
    background-color: rgb(5, 72, 174);
    color: #fff;
}

.dropdown-list li:hover:not(.active) {
    background-color: #ddd;
    color: #000;
}
* PLAN PAGE GLOBAL STYLING */
.plan-section {
    padding: 30px;
}

.plan-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* PLAN CARD */
.plan-card {
    border-radius: 20px;
    padding: 25px 20px;
    transition: 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: #ffffff;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #7b1fa2;
    box-shadow: 0px 6px 15px rgb(0 0 0 / 12%);
}

/* SELECT BUTTON */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* CENTER BUTTON */
    width: fit-content;
    padding: 0.8em 1.1em;
    gap: 0.4rem;
    border: none;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    color: #fff;
    text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
    background: linear-gradient(15deg, #880088, #aa2068, #cc3f47, #de6f3d, #f09f33) no-repeat;
    background-size: 300%;
    background-position: left center;
    transition: 0.3s ease;
}

.button:hover {
    background-size: 340%;
    background-position: right center;
}

.button svg {
    width: 22px;
    fill: #f09f33;
    transition: 0.3s ease;
}

.button:hover svg {
    fill: #fff;
}


input::placeholder {
    font-size: 0.775rem;  
}

/* Animate.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Card design */
.payment-card {
  --white: hsl(0, 0%, 100%);
  --black: hsl(240, 15%, 9%);
  --paragraph: hsl(0, 0%, 83%);
  --line: hsl(240, 9%, 17%);
  --primary: hsl(266, 92%, 58%);

  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: hsla(240, 15%, 9%, 1);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
}

/* Glowing animated border */
.payment-card .card__border {
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-image: linear-gradient(0deg, hsl(0, 0%, 100%) -50%, hsl(0, 0%, 40%) 100%);
  border-radius: 1rem;
}

.payment-card .card__border::before {
  content: "";
  pointer-events: none;
  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%), rotate(0deg);
  transform-origin: left;
  width: 200%;
  height: 10rem;
  background-image: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsl(277, 95%, 60%) 40%,
    hsl(277, 95%, 60%) 60%,
    hsla(0, 0%, 40%, 0) 100%
  );
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

/* List items style */
.payment-card .card__list_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 0.85rem;
}

/* Button style */
.payment-card .button {
  cursor: pointer;
  padding: 0.5rem;
  background-image: linear-gradient(0deg, rgba(94, 58, 238, 1) 0%, rgba(197, 107, 240, 1) 100%);
  font-size: 0.85rem;
  color: var(--white);
  border: 0;
  border-radius: 50px;
  box-shadow: inset 0 -2px 25px -4px var(--white);
  transition: transform 0.2s, box-shadow 0.3s;
}

.payment-card .button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}



