:root {
  --bg1:rgba(71, 6, 114, 0.75);
  --bg2:rgb(10, 11, 20);
  --bg3:rgba(120, 40, 136, 0.75);
  --bg4:#0e0e26;
  --get:rgba(72, 164, 198, 0.75);
  --buy:rgba(168, 117, 127, 0.75);
  --getHover:rgba(91, 207, 250, 0.75);
  --buyHover:rgba(245, 171, 185, 0.75);
  --accent:rgba(172, 38, 235, 0.75);
  --infoBorder:rgba(172, 38, 235, 0.75);
  --button1:#bb54c9;
  --button2:#7e22ce;
  --button3:#055a8b;
  --button4:var(--wildfyr);
  --buttonSolid1:rgb(10, 11, 20);
  --buttonSolid2:rgb(22, 25, 46);
  --heroBlue:#5d9df7;
  --heroBlueTag:rgb(72, 132, 204);
  --heroBlueTagTrans:rgba(47, 106, 201, 0.1);
  --lime:lime;
  --heroGreen:rgb(0, 190, 16);
  --heroGreenTag:rgb(0, 190, 16);
  --heroGreenTagTrans:rgb(0, 190, 16, 0.1);
  --heroOrangeTag:rgb(246, 110, 26);
  --heroOrangeTagTrans:rgb(246, 110, 26, 0.1);
  --wildfyrTrans:#1290ded0;
  --formbg:rgb(10, 11, 20);
  --formborder:rgba(47, 106, 201, 0.1);
  --formfocus:rgb(72, 132, 204)
}
body {
  background-image:unset;
  background:linear-gradient(130deg,var(--bg1) 0,var(--bg2) 50%,var(--bg3) 100%);
  background-color:var(--bg2);
  background-repeat:no-repeat;
  background-attachment:fixed
}
.convertli,
.webGreyText,
p {
  color:#bec2c7
}
header {
  border-radius:1.5rem
}
button,
input,
select,
textarea {
  border-radius:.75rem
}
.glass {
  position:relative;
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(2px) saturate(180%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 32px rgba(31,38,135,.2),inset 0 4px 20px rgba(255,255,255,.075)
}
.wildfyr-logo-glow {
  filter:drop-shadow(0 0 1.5rem var(--wildfyrTrans))
}
.wildfyr-white-glow {
  filter:drop-shadow(0 0 .5rem rgb(209 213 219 / 1))
}
.wildfyr-button-glow {
  transition:all .25s ease
}
.wildfyr-button-glow:hover {
  filter:opacity(90%)
}
.headerButton {
  padding-left:1rem;
  padding-right:1rem
}
.wildfyr-align-to-bottom {
  display:flex;
  flex-direction:column
}
.wildfyr-align-to-bottom>:last-child {
  margin-top:auto
}
.wildfyr-cta {
  position:relative;
  width:99.7vw;
  left:50%;
  right:50%;
  overflow:hidden;
  padding:6rem 0;
  background:linear-gradient(90deg,var(--button1),var(--button2),var(--button1));
  z-index:1;
  margin:4rem -50vw
}
.dropdown-content {
  background-color:var(--heroBlueTagTrans);
  width:unset;
  padding:.5rem;
  border-radius:.5rem
}
.dropdown:hover .dropdown-content {
  display:flex
}
.dropdown-content a {
  border-radius:.25rem;
  width:100%;
  padding:.5rem .8rem;
  transition:color .25s ease;
  text-align:left
}
.dropdown-content a:hover {
  background-color:transparent!important;
  color:var(--button1)!important
}
.dropdown>a,
.headerButton {
  padding:.25rem .5rem;
  border-bottom:2px transparent solid;
  border-radius:0;
  transition:all .25s ease
}
.dropdown:hover,
.headerButton:hover {
  background-color:transparent!important;
  color:var(--button1)
}
@media (max-width:736px) {
  header {
    display:none!important
  }
}
.animation-float {
  animation:floatDiv 5s infinite ease-in-out alternate
}
@keyframes floatDiv {
  0% {
    transform:translateY(0)
  }
  100% {
    transform:translateY(-1rem)
  }
}