@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

@-webkit-keyframes jumbo {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 350% 50%;
  }
}

@keyframes jumbo {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 350% 50%;
  }
}

.jumbo {
  --stripes: repeating-linear-gradient(
    100deg,
    #fff 0%,
    #fff 7%,
    transparent 10%,
    transparent 12%,
    #fff 16%
  );
  --stripesDark: repeating-linear-gradient(
    100deg,
    #000 0%,
    #000 7%,
    transparent 10%,
    transparent 12%,
    #000 16%
  );
  --rainbow: repeating-linear-gradient(
    100deg,
    #60a5fa 10%,
    #e879f9 15%,
    #60a5fa 20%,
    #5eead4 25%,
    #60a5fa 30%
  );
  background-image: var(--stripes), var(--rainbow);
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;

  filter: blur(10px) invert(100%);

  -webkit-mask-image: radial-gradient(
    ellipse at 100% 0%,
    black 40%,
    transparent 70%
  );

  mask-image: radial-gradient(ellipse at 100% 0%, black 40%, transparent 70%);

  pointer-events: none;
}

.jumbo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--stripes), var(--rainbow);
  background-size: 200%, 100%;
  -webkit-animation: jumbo 60s linear infinite;
  animation: jumbo 60s linear infinite;
  background-attachment: fixed;
  mix-blend-mode: difference;
}

#faqAccordion .accordion-item {
  border-radius: 0.25rem;
  margin-bottom: 17px;
}

.dark .jumbo {
  background-image: var(--stripesDark), var(--rainbow);
  filter: blur(10px) opacity(50%) saturate(200%);
}
.dark .jumbo::after {
  background-image: var(--stripesDark), var(--rainbow);
}
.deco .underline-span {
  border-bottom: 2px solid #3183ff;
  text-decoration: none;
}
.deco .absolute {
  position: fixed;
}

.deco .inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.deco .overflow-hidden {
  overflow: hidden;
}

.deco .jumbo {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  opacity: 0.5;
}
body {
  background: black;
  color: #d1d4dc;
}
.items iframe {
  margin: 0 auto;
  height: 350px;
  width: 300px;
}
.items .card {
  border: solid 5px #43465159;
  border-radius: 16px;
  background: #0006;
  text-align: center;
}
.items .card button {
  color: rgb(237, 237, 237);
  width: 100%;
  border: none;
  background-color: #f0f3fa1a;
  font-weight: bold;
  max-width: 160px;
  margin: 0 auto;
  margin-top: -51px;
}
.loading-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 16px;
}

.loading-text {
  color: #fff;
  font-size: 45px;
}

select {
  border: none;
  background-color: #f0f3fa;
  font-weight: bold;
  max-width: 160px;
  margin: 0 auto;
}
