@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400&family=Passion+One:wght@400;700&family=Lato:wght@400;700&&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
input[type=text], input[type=number], input[type=password], textarea {
  border: 1px solid var(--input-border-color);
  border-radius: var(--first-level-border-radius);
  background-color: var(--input-background-color);
  padding: 8px;
  width: 100%;
  color: var(--input-text-color);
  transition-duration: 0.25s;
  outline: 0 solid rgba(var(--sparkly-orange-rgb), 0.5);
  transition: height 0s, border-color 0.25s, outline 0.25s, background-color 0.25s;
}
input[type=text]:focus:not([disabled]), input[type=number]:focus:not([disabled]), input[type=password]:focus:not([disabled]), textarea:focus:not([disabled]) {
  background-color: var(--input-background-color);
  outline: 2px solid rgba(var(--sparkly-orange-rgb), 0.5);
  border-color: var(--sparkly-orange);
}
input[type=text]:hover:not([disabled]), input[type=number]:hover:not([disabled]), input[type=password]:hover:not([disabled]), textarea:hover:not([disabled]) {
  background-color: var(--input-background-color);
  border-color: var(--sparkly-orange);
  outline: 4px solid rgba(var(--sparkly-orange-rgb), 0.5);
}
input[type=text]:focus-visible:not([disabled]), input[type=number]:focus-visible:not([disabled]), input[type=password]:focus-visible:not([disabled]), textarea:focus-visible:not([disabled]) {
  outline: 2px solid var(--sparkly-orange);
  border-color: var(--sparkly-orange);
}
input[type=text]:disabled, input[type=number]:disabled, input[type=password]:disabled, textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

input[type=text], input[type=password] {
  height: 40px;
}

textarea {
  resize: vertical;
  min-height: 5em;
}

.pesadelos-bundles-wrapper {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .pesadelos-bundles-wrapper {
    grid-template-columns: 1fr;
  }
}
.pesadelos-bundles-wrapper .pesadelos-bundle {
  background-color: var(--interactive-element-background-color);
  display: flex;
  flex-direction: column;
  padding: 1em;
  border-radius: 7px;
  position: relative;
  border: 1px solid var(--input-border-color);
}
.pesadelos-bundles-wrapper .pesadelos-bundle .pesadelos-wrapper {
  -webkit-mask-image: linear-gradient(to bottom, black 50%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, black 50%, rgba(0, 0, 0, 0) 100%);
  height: 200px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  animation: 2.5s linear infinite alternate glow-animation;
  padding-top: 10px;
  overflow: hidden;
}
.pesadelos-bundles-wrapper .pesadelos-bundle .pesadelos-wrapper img {
  width: 100%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
}
.pesadelos-bundles-wrapper .pesadelos-bundle .bundle-title {
  font-size: 2em;
  background: linear-gradient(270deg, #463db8 0%, #6f2253 100%);
  color: transparent;
  background-clip: text;
  font-weight: bold;
  text-align: center;
  overflow-wrap: anywhere;
}
.pesadelos-bundles-wrapper .pesadelos-bundle .bundle-bonus {
  font-size: 1.25em;
  font-weight: 1000;
  text-align: center;
  overflow-wrap: anywhere;
  color: var(--sparkly-orange);
}
.pesadelos-bundles-wrapper .pesadelos-bundle button {
  margin-top: auto;
}

@keyframes glow-animation {
  0% {
    filter: drop-shadow(0px 0px 2px #fd33ae8f);
  }
  100% {
    filter: drop-shadow(0px 0px 10px #fd33ae8f);
  }
}
table {
  color: var(--content-text-color);
}

th {
  font-weight: 600;
  color: var(--sparkly-orange);
}

.payment-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .payment-hero-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

.payment-methods-wrapper {
  display: flex;
  gap: 1em;
  flex-direction: column;
  border-radius: 3px;
  padding: 1em;
  border: 1px solid var(--input-border-color);
  height: 100%;
}
.payment-methods-wrapper .payment-methods-title {
  margin: 0;
  text-align: center;
  font-size: 1.5em;
  color: var(--sparkly-orange);
  font-weight: bold;
}
.payment-methods-wrapper .payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: bold;
  gap: 1em;
  height: 100%;
}
.payment-methods-wrapper .payment-methods .payment-method {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  justify-content: center;
}
.payment-methods-wrapper .payment-methods .payment-method img {
  max-width: 100%;
  height: 2em;
}

@font-face {
  font-family: "Minecraft";
  src: url("Minecraft.woff2") format("woff2"), url("Minecraft.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  font-family: "Lato", "arial", sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --sparkly-orange: #ed8c00;
  --sparkly-orange-rgb: 237, 140, 0;
  --input-background-color: rgb(244, 244, 244);
  --OG-input-background-color: rgb(244, 244, 244);
  --input-secondary-element-background-color: rgb(255, 255, 255);
  --input-text-color: black;
  --input-border-color: rgb(204, 204, 204);
  --first-level-border-radius: 3.5px;
  --second-level-border-radius: 7px;
  --sidebar-ad-width: 160px;
  --left-sidebar-width: 360px;
  --soft-border-color: rgba(0, 0, 0, 0.2);
  --background-color: #ffffff;
  --left-sidebar-background-color: #f2f3f5;
  --user-info-wrapper-background-color: #ebedef;
  --content-text-color: #333333;
  --interactive-element-background-color: #f8f8f8;
  --secondary-element-background-color: #f4f4f4;
  --discord-embed-background-color: #f2f3f5;
  --discord-embed-pill-color: rgb(227, 229, 232);
  --divider-color: #ebedef;
  --button-no-background-light-text-color: #ffffff;
  --button-no-background-dark-text-color: #000000;
}

nav.navigation-bar {
  top: 0px;
  width: 100vw;
  height: 46px;
  background-color: var(--sparkly-orange);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  font-family: Oswald, Impact, Arial, sans-serif;
  line-height: 1;
  z-index: 999;
  display: flex;
  flex-direction: row;
  position: fixed;
}
nav.navigation-bar .entry {
  float: left;
  display: block;
  color: #f2f2f2 !important;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  transition: 500ms;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
nav.navigation-bar .entry a {
  color: #f2f2f2 !important;
  text-decoration: none;
  gap: 4px;
  display: flex;
}
nav.navigation-bar .entry:hover {
  background-color: #de8300;
}
nav.navigation-bar .left-side-entries {
  display: flex;
  flex-grow: 1;
  flex-flow: wrap;
  overflow: hidden;
}
nav.navigation-bar .right-side-entries {
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
}
nav.navigation-bar #hamburger-menu-button {
  display: none;
}
nav.navigation-bar.navbar-overflowing #hamburger-menu-button {
  display: block;
}
nav.navigation-bar.is-open {
  height: 100%;
  overflow: auto;
}
nav.navigation-bar.is-open .left-side-entries {
  flex-direction: column;
}
nav.navigation-bar.is-open #hamburger-menu-button {
  position: absolute;
  top: 0;
  right: 0;
}

.dummy-navigation-bar {
  height: 46px;
}

#jumbotron {
  width: 100vw;
  max-width: 100%;
  height: calc(100vh - (46px - 4px));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("https://sparklypower.net/assets/img/2017-12-26_21.59.41.png");
  background-size: cover;
}
#jumbotron img {
  width: 60%;
}

@media (max-width: 500px) {
  #content-wrapper {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.content-section {
  width: 100%;
  padding-bottom: 5em;
}
.content-section.has-section-flair:before {
  height: 4px;
  width: 100%;
  background-color: inherit;
  position: relative;
  top: -4px;
  display: inline-block;
  padding-top: 5em;
  content: "";
}
.content-section.has-section-flair.triangle-section-flair:before {
  -webkit-mask-image: url("/assets/img/section-flairs/triangle.svg");
  mask-image: url("/assets/img/section-flairs/triangle.svg");
}
.content-section.has-section-flair.saw-section-flair:before {
  -webkit-mask-image: url("/assets/img/section-flairs/saw.svg");
  mask-image: url("/assets/img/section-flairs/saw.svg");
}
.content-section.has-section-flair.square-section-flair:before {
  -webkit-mask-image: url("/assets/img/section-flairs/square.svg");
  mask-image: url("/assets/img/section-flairs/square.svg");
}
.content-section.white-background {
  background-color: white;
  color: black;
}
.content-section.white-background h1 {
  font-family: "Lato", "Arial Black", sans-serif;
  font-size: 2.5em;
  color: var(--sparkly-orange);
}
.content-section.white-background h2 {
  font-family: "Lato", "Arial Black", sans-serif;
  font-size: 2em;
  color: var(--sparkly-orange);
}
.content-section.white-background h3 {
  font-family: "Lato", "Arial Black", sans-serif;
  color: var(--sparkly-orange);
}
.content-section.white-background h4 {
  font-family: "Lato", "Arial Black", sans-serif;
  color: var(--sparkly-orange);
}
.content-section.white-background h5 {
  font-family: "Lato", "Arial Black", sans-serif;
  color: var(--sparkly-orange);
}
.content-section.orange-background {
  background-color: var(--sparkly-orange);
  color: white;
}
.content-section.orange-background h1 {
  color: white;
}
.content-section.orange-background h2 {
  color: white;
}
.content-section.orange-background h3 {
  color: white;
}
.content-section.orange-background h4 {
  color: white;
}
.content-section.orange-background h5 {
  color: white;
}
.content-section .section-with-image {
  display: grid;
  grid-template-columns: 64fr 36fr;
  align-items: center;
  gap: 2.5em;
}
.content-section .section-with-image .section-image {
  text-align: center;
  display: flex;
}
.content-section .section-with-image .section-image img {
  width: 100%;
}
.content-section .section-with-image.reversed {
  grid-template-columns: 36fr 64fr;
}
.content-section .section-with-image.reversed .section-image {
  order: -1;
}

.content {
  max-width: 70em;
  margin: auto;
}

.minecraft-textbox {
  background-color: black;
  color: white;
  padding: 0.25em 0.5em calc(0.25em + 3px) 0.5em;
  border: 2px solid white;
  font-size: 2em;
  font-family: Minecraft;
  text-shadow: 3px 3px #3F3F3F;
  letter-spacing: -0.05em;
}

.minecraft-button {
  background-color: #6e6e6e;
  color: white;
  padding: 0.25em 2em calc(0.25em + 3px) 2em;
  border: 2px solid black;
  box-shadow: inset -2px -4px #00000052, inset 2px 2px #ffffff7d;
  font-family: Minecraft, monospace;
  text-shadow: 0.1em 0.1em #3F3F3F;
  text-decoration: none;
  letter-spacing: -0.05em;
  cursor: pointer;
  transition-property: border-color;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.minecraft-button.pesadelos-purple {
  background: linear-gradient(270deg, #463db8 0%, #6f2253 100%);
}
.minecraft-button:hover {
  border-color: #E4E4E4;
}
.minecraft-button:disabled {
  border-color: black;
  background: #2c2c2c;
  box-shadow: none;
  color: #aaaaaa;
  cursor: not-allowed;
}
.minecraft-button .htmx-discord-like-loading-button .loading-text-wrapper {
  display: none;
}
.minecraft-button .htmx-discord-like-loading-button .loading-text-wrapper img {
  height: 1em;
}
.minecraft-button .htmx-discord-like-loading-button.htmx-request div {
  display: none;
}
.minecraft-button .htmx-discord-like-loading-button.htmx-request .loading-text-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
}

.minecraft-logo-and-ip-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

.minecraft-ip-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.swing-image {
  -webkit-animation: swinging-image 12s linear forwards infinite;
  animation: swinging-image 12s linear forwards infinite;
}

@keyframes swinging-image {
  0% {
    transform: rotate(0deg) translateZ(0);
    animation-timing-function: ease-out;
  }
  25% {
    transform: rotate(2deg) translateZ(0);
    animation-timing-function: ease-in;
  }
  50% {
    transform: rotate(0deg) translateZ(0);
    animation-timing-function: ease-out;
  }
  75% {
    transform: rotate(-2deg) translateZ(0);
    animation-timing-function: ease-in;
  }
  100% {
    transform: rotate(0deg) translateZ(0);
    animation-timing-function: ease-out;
  }
}
.splash-stuff {
  position: absolute;
  right: 0;
  transform: rotate(-15deg);
  bottom: 20%;
  color: #FFFF55;
  text-shadow: 0px 0.1em 0px #3F3F15, 0px 0px 0.5em #000;
  font-family: "Minecraft";
  z-index: 1000;
}

.splash-scale {
  animation: splash-scale 0.8s linear alternate infinite;
}

@keyframes splash-scale {
  0% {
    transform: scale(1.3);
    animation-timing-function: ease-out;
  }
  100% {
    transform: scale(1.8);
    animation-timing-function: ease-out;
  }
}
.field-wrappers {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  flex-wrap: wrap;
  /* button {
      width: fit-content;
  } */
}
.field-wrapper input {
  width: 100%;
}
.field-wrapper .field-title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8em;
}
.field-wrapper .field-description {
  font-size: 0.8em;
}

hr {
  box-sizing: content-box;
  background: rgba(0, 0, 0, 0.05);
  border: 0;
  height: 1px;
}

#store-status-error {
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  color: #f04747;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info .alert-title {
  font-size: 1.1em;
  font-weight: 600;
  border-bottom: 1px dashed #b9e2f6;
  margin-bottom: 0.35em;
  display: inline-block;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/*# sourceMappingURL=style.css.map */
