@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Pacifico&display=swap");
.fill-loading-screen {
  display: flex;
  font-size: 2em;
  font-weight: bolder;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
}
.fill-loading-screen img {
  width: 192px;
  image-rendering: pixelated;
  height: 192px;
  border-radius: 7px;
}

.loading-section {
  display: flex;
  align-items: center;
  font-size: 2em;
  flex-direction: column;
  text-align: center;
}
.loading-section.fill-content-loading-section {
  height: 100%;
  justify-content: center;
}
.loading-section img {
  width: 192px;
  height: 192px;
  border-radius: 7px;
}

.inline-loading-section {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}
.inline-loading-section img {
  width: 1em;
  height: 1em;
  border-radius: 100%;
}

nav#left-sidebar > .entries .entry, .fan-art-card {
  color: inherit;
  text-decoration: none;
}

.fan-art-card {
  position: relative;
  will-change: transform;
  transition-duration: 0.5s;
  overflow: hidden;
  border-radius: 7px;
  background: var(--accent-color);
  width: 100%;
  aspect-ratio: 1/1;
}
.fan-art-card > .fan-art-info-card {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition-duration: 0.5s;
  background: linear-gradient(#fff0, #00000085);
  text-shadow: 0px 0px 5px black;
  color: white;
}
.fan-art-card > .fan-art-info-card > .fan-art-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.fan-art-card > .fan-art-info-card > .fan-art-info > .fan-art-info-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0.25em;
}
.fan-art-card > .fan-art-info-card > .fan-art-info > .fan-art-info-wrapper > .fan-art-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
}
.fan-art-card > .fan-art-info-card > .fan-art-info > .fan-art-info-wrapper > .fan-art-avatar-artist-and-date {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.fan-art-card > .fan-art-info-card > .fan-art-info > .fan-art-info-wrapper > .fan-art-avatar-artist-and-date > .fan-art-artist-and-date > .fan-art-artist {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
}
.fan-art-card > .fan-art-info-card > .fan-art-info > .fan-art-info-wrapper > .fan-art-avatar-artist-and-date > .fan-art-artist-and-date > .fan-art-date {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
}
.fan-art-card > .fan-art-info-card > .fan-art-info > .fan-art-info-wrapper img {
  background: var(--accent-color);
}
.fan-art-card > .fan-art-info-card > .fan-art-tags {
  position: absolute;
  top: 0.25em;
  right: 0.25em;
  height: 24px;
  filter: drop-shadow(0px 0px 4px #00000050);
}
.fan-art-card > .fan-art-info-card:hover {
  opacity: 1;
}
@media (hover: none) and (pointer: coarse) {
  .fan-art-card > .fan-art-info-card {
    opacity: 1;
  }
}
.fan-art-card:hover {
  box-shadow: 0px 0px 10px rgba(182, 182, 182, 0.7);
  transform: scale(1.05);
}

.pagination > .active {
  background-color: var(--accent-color);
  border: 0;
  width: 2em;
  height: 2em;
  color: white;
  font-weight: bold;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1em;
}
.pagination > .inactive {
  cursor: pointer;
  background: none;
  border: 0;
  width: 2em;
  height: 2em;
  color: black;
  font-weight: bold;
  border-radius: 7px;
  font-size: 1em;
}
.pagination > .arrow {
  background-color: var(--accent-color);
  border: 0;
  width: 2em;
  height: 2em;
  color: white;
  font-weight: bold;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1em;
  justify-content: center;
  align-items: center;
}
.pagination > .arrow > svg {
  width: 1em;
  height: 1em;
}
.pagination > .ellipsis {
  width: 2em;
  height: 2em;
  font-weight: bold;
  display: inline-block;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select-wrapper > .select {
  border: 1px solid var(--card-border-color);
  border-radius: var(--nice-border-radius);
  background-color: var(--inset-background-color);
  padding: 8px;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  outline: 0 solid rgba(var(--accent-color-rgb), 0.5);
  transition: height 0s, border-color 0.25s, outline 0.25s, background-color 0.25s;
}
.select-wrapper > .select:hover {
  outline: 4px solid rgba(var(--accent-color-rgb), 0.5);
}
.select-wrapper > .select:focus {
  outline: 2px solid rgba(var(--accent-color-rgb), 0.5);
  border-color: var(--accent-color);
}
.select-wrapper > .select.open {
  border-radius: var(--nice-border-radius) var(--nice-border-radius) 0px 0px;
}
.select-wrapper > .select.open .chevron svg {
  transform: rotate(180deg);
}
.select-wrapper > .select > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 200px;
  width: 100%;
}
.select-wrapper > .select > div > .currently-selected-option-content {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.select-wrapper > .select > div > .chevron {
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}
.select-wrapper > .select > div > .chevron svg {
  width: 1em;
  height: 1em;
  transform: rotate(0deg);
  transition-duration: 0.5s;
}
.select-wrapper > .menu {
  position: absolute;
  top: 100%;
  background-color: var(--card-background-color);
  border-radius: 0px 0px var(--nice-border-radius) var(--nice-border-radius);
  border-left: 1px solid var(--card-border-color);
  border-right: 1px solid var(--card-border-color);
  border-bottom: 1px solid var(--card-border-color);
  width: 100%;
  color: var(--content-text-color);
  box-shadow: var(--shadow-elevation-2);
  z-index: 1;
  max-height: 400px;
  overflow: auto;
}
.select-wrapper > .menu > .select-menu-entry {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition-duration: 0.1s;
  padding: 8px;
}
.select-wrapper > .menu > .select-menu-entry:focus {
  outline: blue solid 2px;
}
.select-wrapper > .menu > .select-menu-entry:hover {
  transition-duration: 0.1s;
  background-color: rgba(0, 0, 0, 0.1);
}
.select-wrapper > .menu > .select-menu-entry.selected {
  background-color: rgba(0, 0, 0, 0.15);
}
.select-wrapper[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}
.select-wrapper[aria-disabled=true] .select {
  pointer-events: none;
}

input[type=text], input[type=number], input[type=password], textarea, select {
  border: 1px solid var(--card-border-color);
  border-radius: var(--nice-border-radius);
  background-color: var(--inset-background-color);
  padding: 8px;
  width: 100%;
  color: var(--content-text-color);
  transition-duration: 0.25s;
  outline: 0 solid rgba(var(--accent-color-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]), select:focus:not([disabled]) {
  background-color: var(--inset-background-color);
  outline: 2px solid rgba(var(--accent-color-rgb), 0.5);
  border-color: var(--accent-color);
}
input[type=text]:hover:not([disabled]), input[type=number]:hover:not([disabled]), input[type=password]:hover:not([disabled]), textarea:hover:not([disabled]), select:hover:not([disabled]) {
  background-color: var(--inset-background-color);
  border-color: var(--accent-color);
  outline: 4px solid rgba(var(--accent-color-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]), select:focus-visible:not([disabled]) {
  outline: 2px solid var(--accent-color);
  border-color: var(--accent-color);
}
input[type=text]:disabled, input[type=number]:disabled, input[type=password]:disabled, textarea:disabled, select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

.fan-art-name-and-artist {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
.fan-art-name-and-artist > .name-and-artist-wrapper {
  display: flex;
  flex-direction: column;
}
.fan-art-name-and-artist > .name-and-artist-wrapper > h1 {
  margin: 0px;
}

.fan-art-overview-tags {
  padding: 0;
  list-style-type: none;
}
.fan-art-overview-tags .tag-badge {
  height: 1em;
  position: relative;
  top: 0.2em;
}

.inline-user-display {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}
.inline-user-display img {
  border-radius: 100%;
  width: 1em;
  height: 1em;
}

.error-section {
  display: flex;
  align-items: center;
  font-size: 2em;
  flex-direction: column;
  text-align: center;
}
.error-section.fill-content-error-section {
  height: 100%;
  justify-content: center;
}
.error-section img {
  width: 192px;
  height: 192px;
  border-radius: 7px;
}

.empty-section {
  text-align: center;
  opacity: 0.7;
  font-size: 2em;
  overflow: hidden;
}
.empty-section img {
  filter: grayscale(100%);
}
.empty-section .philosophical-text {
  animation: 15s linear infinite forwards swing-animation;
}

@keyframes swing-animation {
  0%, 50%, 100% {
    transform: rotate(0deg);
    animation-timing-function: ease-out;
  }
  25% {
    transform: rotate(2deg);
    animation-timing-function: ease-in;
  }
  75% {
    transform: rotate(-2deg);
    animation-timing-function: ease-in;
  }
}
nav#mobile-left-sidebar > .hamburger-button, .discord-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

:where(a, a:visited) {
  color: var(--link-color);
  transition: 0.25s;
}
:where(a, a:visited):hover {
  color: oklch(from var(--link-color) calc(l - .1) c h);
}

a:has(.discord-button) {
  text-decoration: none;
}

.discord-button {
  --button-color: #757575;
  box-shadow: inset 0px 0.5px 0px oklch(from var(--button-color) calc(l + .1) c h), var(--shadow-elevation-1);
  color: white;
  font-weight: bold;
  border-radius: var(--nice-border-radius);
  padding: 0.25em 1em;
  transition-duration: 0.25s;
  opacity: 1;
  background-color: var(--button-color);
  border: 1px solid var(--soft-border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.discord-button.text-with-icon {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.discord-button.text-with-icon svg {
  width: 1em;
  height: 1em;
  translate: 0;
}
.discord-button .loading-text-wrapper {
  display: none;
}
.discord-button .loading-text-wrapper img {
  height: 1em;
}
.discord-button.bliss-request div {
  display: none;
}
.discord-button.bliss-request .loading-text-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
}
.discord-button.bliss-discord-like-loading-button .loading-text-wrapper {
  display: none;
}
.discord-button.bliss-discord-like-loading-button .loading-text-wrapper img {
  height: 1em;
}
.discord-button.bliss-discord-like-loading-button.bliss-request {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.discord-button.bliss-discord-like-loading-button.bliss-request div {
  display: none;
}
.discord-button.bliss-discord-like-loading-button.bliss-request .loading-text-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
}
.discord-button:hover {
  background-color: oklch(from var(--button-color) calc(l - .1) c h);
}
.discord-button:disabled {
  --button-color: #757575;
  opacity: 0.5;
  cursor: not-allowed;
}
.discord-button[aria-disabled=true] {
  --button-color: #757575;
  opacity: 0.5;
  cursor: not-allowed;
}
.discord-button.primary {
  color: #101010;
  --button-color: var(--accent-color);
}
.discord-button.success {
  color: #101010;
  --button-color: #3ed16c;
}
.discord-button.danger {
  color: #101010;
  --button-color: #ff4d52;
}
.discord-button.no-background-light-text {
  background-color: initial;
  color: #ffffff;
  box-shadow: initial;
}
.discord-button.no-background-light-text:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.discord-button.no-background-dark-text {
  background-color: initial;
  color: #000000;
  box-shadow: initial;
}
.discord-button.no-background-dark-text:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.discord-button.no-background-theme-dependent-light-text {
  background-color: initial;
  color: var(--button-no-background-light-text-color);
  box-shadow: initial;
}
.discord-button.no-background-theme-dependent-light-text:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.discord-button.no-background-theme-dependent-dark-text {
  background-color: initial;
  color: var(--button-no-background-dark-text-color);
  box-shadow: initial;
}
.discord-button.no-background-theme-dependent-dark-text:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.bounce-icon-to-the-left-on-hover:hover svg {
  animation: 1s go-back-bounce infinite;
}

@keyframes go-back-bounce {
  0% {
    translate: 0;
  }
  50% {
    translate: -2px;
  }
  100% {
    translate: 0;
  }
}
a.discord-button {
  text-decoration: none;
}

.modal-wrapper .buttons-wrapper .discord-button {
  padding: 0.5em 1em;
}
.modal-wrapper .buttons-wrapper .discord-button.no-background {
  color: black;
}

.cards {
  display: flex;
  gap: 1em;
  flex-direction: column;
}
.cards .card {
  display: flex;
  padding: 1em;
  position: relative;
  flex-direction: column;
  background-color: var(--card-background-color);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
}
.cards .card.card-with-avatar-content-buttons {
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
@media (max-width: 700px) {
  .cards .card.card-with-avatar-content-buttons {
    flex-direction: column;
    text-align: center;
  }
}

.cards-with-header {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.cards-with-header .card-header {
  border-radius: var(--first-level-border-radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}
.cards-with-header .card-header .card-header-info {
  display: flex;
  flex-direction: column;
}
.cards-with-header .card-header .card-header-info .card-header-title {
  font-size: var(--card-section-header-font-size);
  font-weight: bolder;
}
.cards-with-header .card-header .card-header-info .card-header-description {
  font-size: var(--description-font-size);
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modal-background-opacity 0.3s;
}
.modal-wrapper .modal {
  background-color: var(--background-color);
  color: var(--content-text-color);
  box-shadow: 0px 0px 10px #00000059;
  border-radius: var(--nice-border-radius);
  width: min(92vw, 860px);
  animation: modal-scale 0.2s;
  margin-top: auto;
  margin-bottom: auto;
}
.modal-wrapper .modal.small-modal {
  width: min(92vw, 480px);
}
.modal-wrapper .modal.large-modal {
  width: min(92vw, 1280px);
}
@media (max-width: 900px) {
  .modal-wrapper .modal {
    max-width: 100vw;
    width: 100%;
    overflow: scroll;
    max-height: 100%;
  }
  .modal-wrapper .modal.large-modal {
    width: 100%;
  }
}
.modal-wrapper .modal img {
  max-width: 100%;
}
.modal-wrapper .modal .title {
  font-size: 2em;
  color: var(--accent-color);
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: bold;
}
.modal-wrapper .modal .content {
  padding: 2.5em;
  line-height: 1.58;
}
.modal-wrapper .modal .buttons-wrapper {
  padding: 1em;
  background-color: var(--card-background-color);
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  border-radius: 0px 0px 7px 7px;
}
.modal-wrapper .modal .discord-button.secondary {
  color: #414141;
  background-color: rgba(0, 0, 0, 0);
}
.modal-wrapper .modal .discord-button.secondary:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

@keyframes modal-scale {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  70% {
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes modal-background-opacity {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
body.modal-open {
  overflow: hidden;
}

.toast-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 200;
  color: white;
  transition: 0.25s;
}
.toast-list.save-bar-active {
  bottom: 6em;
}

body.modal-open .toast-list.save-bar-active {
  bottom: 1em;
}

.toast {
  right: 0;
  bottom: 0;
  width: 300px;
  padding: 1em;
  border-radius: var(--nice-border-radius);
  border: 1px solid var(--soft-border-color);
  animation-fill-mode: forwards;
}
.toast.info {
  background-color: var(--accent-color);
}
.toast.warn {
  background-color: var(--loritta-red);
}
.toast.success {
  background-color: var(--loritta-green);
}
.toast .toast-title {
  font-weight: bold;
}
.toast .toast-description {
  font-size: 0.8em;
}
.toast.added {
  animation: append-animate 0.25s ease-out;
}
.toast.removed {
  animation: append-animate 0.25s ease-out;
  animation-direction: reverse;
}

@keyframes append-animate {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  80% {
    transform: translateX(-2%);
    opacity: 1;
  }
  95% {
    transform: translateX(-1%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.sonhos-bundles-wrapper {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .sonhos-bundles-wrapper {
    grid-template-columns: 1fr;
  }
}
.sonhos-bundles-wrapper .sonhos-bundle {
  display: flex;
  flex-direction: column;
  padding: 1em;
  position: relative;
  background-color: var(--card-background-color);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
}
.sonhos-bundles-wrapper .sonhos-bundle .sonhos-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;
}
.sonhos-bundles-wrapper .sonhos-bundle .sonhos-wrapper img {
  width: 100%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
}
.sonhos-bundles-wrapper .sonhos-bundle .bundle-title {
  font-size: 2em;
  color: var(--accent-color);
  font-weight: bold;
  text-align: center;
  overflow-wrap: anywhere;
}
.sonhos-bundles-wrapper .sonhos-bundle .bundle-bonus {
  font-size: 1.25em;
  font-weight: 1000;
  text-align: center;
  overflow-wrap: anywhere;
  color: var(--accent-color);
}
.sonhos-bundles-wrapper .sonhos-bundle button {
  margin-top: auto;
}

@keyframes glow-animation {
  0% {
    filter: drop-shadow(0px 0px 2px #fde6338f);
  }
  100% {
    filter: drop-shadow(0px 0px 10px #fde6338f);
  }
}
li::marker {
  color: var(--accent-color);
  content: "•  ";
}

.fancy-details-wrapper {
  display: flex;
  gap: 1em;
  flex-direction: column;
}

details.fancy-details[open] .hide-details-if-open {
  display: none;
}

details.fancy-details {
  transition-duration: 0.5s;
  background-color: var(--toggleable-section-background-color);
  overflow: hidden;
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
}
details.fancy-details > summary {
  list-style: none;
  font-size: 1.5em;
  font-weight: bold;
  display: flex;
  align-items: center;
}
details.fancy-details > summary::-webkit-details-marker {
  display: none;
}

details.fancy-details > summary .chevron-icon {
  transform: rotate(0deg);
  transition-duration: 0.5s;
  margin-left: auto;
  display: flex;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

details.fancy-details[open] > summary .chevron-icon {
  transform: rotate(-180deg);
}

details.fancy-details > summary {
  cursor: pointer;
  background-color: var(--card-background-color);
  padding: 20px;
}

details.fancy-details[open] > summary {
  border-bottom: 1px solid var(--card-border-color);
}

details.fancy-details .details-content {
  padding: 10px 20px 20px 20px;
}

table {
  color: var(--content-text-color);
}

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

.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;
  padding: 1em;
  height: 100%;
}
.payment-methods-wrapper .payment-methods-title {
  margin: 0;
  text-align: center;
  font-size: 1.5em;
  color: var(--accent-color);
  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;
}

.discord-mention {
  --mention-color: rgb(88, 101, 242);
  background-color: rgb(from var(--mention-color) r g b / 10%);
  color: var(--mention-color);
  font-weight: 600;
  transition: background-color 0.05s, color 0.05s;
  padding: 0 2px 0 2px;
  border-radius: 3px;
  word-wrap: anywhere;
}
.discord-mention.has-icon {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.discord-mention.has-icon svg {
  align-self: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.discord-mention .content {
  display: inline;
}

.loritta-spawner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}
.loritta-spawner-wrapper .loritta-spawners {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr 1fr;
}
.loritta-spawner-wrapper .loritta-spawners .loritta-spawner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
}

.discord-invite-wrapper {
  display: flex;
  flex-direction: column;
  background-color: var(--card-background-color);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
  padding: 1em;
  gap: 0.5em;
  width: 100%;
}
.discord-invite-wrapper .invite-mobile-buttons {
  display: none;
}
@media (500px >= width) {
  .discord-invite-wrapper .invite-desktop-buttons {
    display: none;
  }
  .discord-invite-wrapper .invite-mobile-buttons {
    display: flex;
  }
}
.discord-invite-wrapper .discord-invite-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em;
}
.discord-invite-wrapper .discord-server-details {
  display: flex;
  gap: 1em;
  align-items: center;
}
.discord-invite-wrapper .discord-server-details .discord-server-icon {
  flex-shrink: 0;
  --icon-width: 50px;
  --icon-height: 50px;
  width: var(--icon-width);
  height: var(--icon-height);
  position: relative;
}
.discord-invite-wrapper .discord-server-details .discord-server-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.discord-invite-wrapper .discord-server-details .discord-server-info {
  line-height: 1;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 1;
}
.discord-invite-wrapper .discord-server-details .discord-server-info .discord-server-name {
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.discord-invite-wrapper .discord-server-details .discord-server-info .discord-server-description {
  font-size: 0.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.discord-invite-wrapper .discord-server-details .discord-server-button {
  margin-left: auto;
  border-radius: 3px;
  color: white;
  font-size: 0.9em;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 1em;
  padding-right: 1em;
  height: 40px;
  transition-duration: 0.5s;
  flex-shrink: 0;
}
.discord-invite-wrapper .discord-server-details .discord-server-button.green {
  background-color: #3ba55d;
}
.discord-invite-wrapper .discord-server-details .discord-server-button.green:hover {
  background-color: #2d7d47;
}
.discord-invite-wrapper .discord-server-details .discord-server-button.loritta-blue {
  background-color: #29a6fe;
}
.discord-invite-wrapper .discord-server-details .discord-server-button.loritta-blue:hover {
  background-color: #0064aa;
}

.toggleable-sections {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.toggleable-section {
  background-color: var(--toggleable-section-background-color);
  border-radius: var(--nice-border-radius);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  width: 100%;
}
.toggleable-section > .toggleable-selection {
  padding: 1em 20px 1em 20px;
  background-color: var(--card-background-color);
  border-radius: var(--nice-border-radius);
}
.toggleable-section > .toggleable-content {
  display: none;
  padding: 10px 20px 20px 20px;
}
.toggleable-section.is-open.section-content-not-empty > .toggleable-content {
  display: block;
}
.toggleable-section.is-open.section-content-not-empty > .toggleable-selection {
  border-radius: var(--nice-border-radius) var(--nice-border-radius) 0px 0px;
  border-bottom: 1px solid var(--card-border-color);
}
.toggleable-section .reset-theme-variables {
  --input-background-color: var(--OG-input-background-color);
}

label.toggle-wrapper {
  display: flex;
  cursor: pointer;
  min-height: 3em;
  align-items: center;
}
label.toggle-wrapper input {
  display: none;
}

.switch-slider {
  background-color: #72767d;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
  display: inline-block;
  min-height: 24px;
  position: relative;
  min-width: 42px;
}

.switch-slider:before {
  background-color: #fff;
  content: "";
  height: 18px;
  bottom: 3px;
  left: 3px;
  position: absolute;
  transition: 0.4s;
  width: 18px;
}

input:checked + .switch-slider {
  background-color: var(--accent-color);
}

input:checked + .switch-slider:before {
  transform: translateX(18px);
}

.switch-slider.round {
  border-radius: 34px;
}

.switch-slider.round:before {
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.discord-inline-emoji {
  width: 1.5em;
  height: 1.5em;
  vertical-align: -0.4em;
}

.discord-message-user-gap {
  width: 100%;
  height: 1em;
}

.discord-message {
  display: flex;
  gap: 1em;
}
.discord-message p {
  padding: 0;
  margin: 0;
}
.discord-message .discord-message-sidebar .discord-message-avatar {
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.discord-message .discord-message-header {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5em;
  align-items: baseline;
  line-height: 1;
  padding-bottom: 0.25em;
}
.discord-message .discord-message-header .discord-message-username {
  font-size: 1rem;
  font-weight: 500;
}
.discord-message .discord-message-header .discord-message-bot-tag {
  background-color: var(--accent-color);
  color: white;
  font-weight: bold;
  border-radius: 0.1875rem;
  font-size: 0.625rem;
  padding: 0.3em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.discord-message .discord-message-header .discord-message-bot-tag svg {
  width: 1em;
  height: 1em;
}
.discord-message .discord-message-header .discord-message-timestamp {
  font-size: 0.75rem;
  color: gray;
}
.discord-message .discord-message-accessories {
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 0.25rem;
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}
.discord-message .discord-message-accessories .discord-embed {
  width: fit-content;
  display: flex;
  padding: 1rem 1rem 1rem 0.75rem;
  max-width: 520px;
  background-color: var(--discord-embed-background-color);
  font-size: 0.875rem;
  line-height: 1.125rem;
  overflow: hidden;
  border-left: 4px solid var(--discord-embed-pill-color);
  border-radius: 4px;
  gap: 1em;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-author {
  display: flex;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-author .discord-embed-icon {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-author .discord-embed-text {
  font-weight: 600;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-title {
  font-size: 1rem;
  font-weight: 600;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-fields {
  display: grid;
  grid-gap: 8px;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-fields .discord-embed-field .discord-embed-field-name {
  font-weight: 600;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-footer {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-footer .discord-embed-footer-icon {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-content .discord-embed-description {
  line-height: 1.125rem;
  font-size: 0.875rem;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-image {
  max-width: 300px;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-image img {
  border-radius: 4px;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-thumbnail {
  width: 80px;
  flex-shrink: 0;
}
.discord-message .discord-message-accessories .discord-embed .discord-embed-thumbnail img {
  border-radius: 4px;
}
.discord-message .discord-message-accessories .discord-components {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.discord-message .discord-message-accessories .discord-components .discord-action-row {
  display: flex;
  gap: 0.5em;
}
.discord-message .discord-message-accessories .discord-components .discord-section {
  display: flex;
  gap: 0.5em;
  padding: 0.5em 0;
}
.discord-message .discord-message-accessories .discord-components .discord-section .discord-section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.discord-message .discord-message-accessories .discord-components .discord-section .discord-section-accessory {
  margin-left: auto;
  flex-shrink: 0;
}
.discord-message .discord-message-accessories .discord-components .discord-text-display {
  line-height: 1.375;
  font-size: 0.9375rem;
  word-wrap: break-word;
}
.discord-message .discord-message-accessories .discord-components .discord-thumbnail {
  max-width: 80px;
}
.discord-message .discord-message-accessories .discord-components .discord-thumbnail .discord-thumbnail-image {
  width: 100%;
  border-radius: 4px;
}
.discord-message .discord-message-accessories .discord-components .discord-thumbnail .discord-thumbnail-description {
  font-size: 0.75rem;
  color: var(--content-text-secondary-color);
  margin-top: 0.25em;
}
.discord-message .discord-message-accessories .discord-components .discord-thumbnail.spoiler .discord-thumbnail-image {
  filter: blur(1px);
}
.discord-message .discord-message-accessories .discord-components .discord-thumbnail.spoiler .discord-thumbnail-image:hover {
  filter: blur(0px);
}
.discord-message .discord-message-accessories .discord-components .discord-media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5em;
  max-width: 520px;
}
.discord-message .discord-message-accessories .discord-components .discord-media-gallery .discord-media-gallery-item .discord-media-gallery-image {
  width: 100%;
  border-radius: 4px;
}
.discord-message .discord-message-accessories .discord-components .discord-media-gallery .discord-media-gallery-item .discord-media-gallery-description {
  font-size: 0.75rem;
  color: var(--content-text-secondary-color);
  margin-top: 0.25em;
}
.discord-message .discord-message-accessories .discord-components .discord-media-gallery .discord-media-gallery-item.spoiler .discord-media-gallery-image {
  filter: blur(1px);
}
.discord-message .discord-message-accessories .discord-components .discord-media-gallery .discord-media-gallery-item.spoiler .discord-media-gallery-image:hover {
  filter: blur(0px);
}
.discord-message .discord-message-accessories .discord-components .discord-separator.small-spacing {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.discord-message .discord-message-accessories .discord-components .discord-separator.large-spacing {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.discord-message .discord-message-accessories .discord-components .discord-separator .discord-separator-line {
  border: none;
  border-top: 1px solid var(--card-border-color);
  margin: 0;
}
.discord-message .discord-message-accessories .discord-components .discord-container {
  background-color: var(--discord-embed-background-color);
  border-left: 4px solid var(--discord-embed-pill-color);
  border-radius: 4px;
  padding: 1em;
  max-width: 520px;
}
.discord-message .discord-message-accessories .discord-components .discord-container .discord-container-content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.discord-message .discord-message-accessories .discord-components .discord-container.spoiler {
  filter: blur(1px);
}
.discord-message .discord-message-accessories .discord-components .discord-container.spoiler:hover {
  filter: blur(0px);
}
.discord-message .discord-message-accessories .discord-message-attachments {
  display: flex;
}
.discord-message .discord-message-accessories .discord-message-attachments .discord-message-attachment {
  max-height: 350px;
  width: auto;
  border-radius: 4px;
}
.discord-message .discord-message-accessories .discord-message-reactions {
  display: flex;
  gap: 0.5em;
}
.discord-message .discord-message-accessories .discord-message-reactions .discord-message-reaction {
  background-color: var(--inset-background-color);
  padding: 0.125rem 0.375rem;
  border-radius: 0.5rem;
}

.welcomer-web-animation {
  max-height: 100%;
  object-fit: contain;
  aspect-ratio: 2384/1890;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-wumpus-message {
  color: black;
  position: absolute;
  top: 58%;
  right: 10%;
  background-color: white;
  padding: 2px;
  box-shadow: 0px 0px 3px #0000001a;
  -webkit-animation-name: welcomer-message-shake;
  -webkit-animation-duration: 3.2s;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
}

.welcomer-message-shake {
  -webkit-animation-name: welcomer-message-shake;
  -webkit-animation-duration: 1.6s;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
}

@-webkit-keyframes welcomer-message-shake {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
.starboard-web-animation {
  max-height: 100%;
  animation: starboard-loritta-floating 7.5s ease-in-out infinite;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes starboard-loritta-floating {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-2px, -2px) rotate(-2deg);
  }
  50% {
    transform: translate(-2px, 2px) rotate(2deg);
  }
  75% {
    transform: translate(2px, -2px) rotate(-2deg);
  }
}
.custom-commands-web-animation {
  max-height: 100%;
  animation: custom-commands-loritta-breathing 1.5s infinite alternate ease-in-out;
  transform-origin: center bottom;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes custom-commands-loritta-breathing {
  0% {
    transform: scaleY(100%);
  }
  100% {
    transform: scaleY(98%);
  }
}
.xarola-ratinho {
  display: flex;
  align-items: center;
}
.xarola-ratinho .xarola-ratinho-icon-wrapper {
  position: relative;
  display: flex;
  width: 64px;
  height: 64px;
}
.xarola-ratinho .xarola-ratinho-icon-wrapper img {
  width: 64px;
  height: 64px;
}
.xarola-ratinho .xarola-ratinho-icon-wrapper .xarola-ratinho-bars {
  display: grid;
  position: absolute;
  bottom: 0;
  height: 10%;
  grid-template-columns: repeat(10, 1fr);
  width: 100%;
  transition: 0.5s;
  gap: 3px;
  transition-duration: 0.5s;
  align-items: flex-end;
}
.xarola-ratinho .xarola-ratinho-icon-wrapper .xarola-ratinho-bars .xarola-ratinho-bar {
  background-color: white;
  width: 100%;
  animation: xarola-ratinho-bar 0.3s linear infinite alternate;
}
.xarola-ratinho .xarola-ratinho-text {
  display: flex;
  flex-direction: column;
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.xarola-ratinho .xarola-ratinho-text .xarola-ratinho-username {
  font-weight: bold;
}

@keyframes xarola-ratinho-bar {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
.gira-aspas {
  animation: gira-aspas 8s linear infinite;
}

@keyframes gira-aspas {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.message-editor {
  gap: 1em;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.message-editor .message-editor-buttons {
  --buttons-columns: 4;
  justify-content: space-between;
  grid-template-columns: repeat(var(--buttons-columns), minmax(0, 1fr));
  display: grid;
  gap: 0.5em;
}
.message-editor .message-editor-buttons .discord-button {
  width: 100%;
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .message-editor .message-editor-buttons .change-message-preview-direction {
    display: none;
  }
}
@media (max-width: 1024px) {
  .message-editor .message-editor-buttons {
    --buttons-columns: 3;
  }
}
@media (max-width: 600px) {
  .message-editor .message-editor-buttons {
    --buttons-columns: 1;
  }
}
.message-editor .message-textarea-and-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1em;
  width: 100%;
  flex-direction: row;
}
.message-editor .message-textarea-and-preview.vertical-render {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .message-editor .message-textarea-and-preview {
    display: flex;
    flex-direction: column;
  }
}
.message-editor .message-textarea-and-preview .message-preview-section .message-preview-wrapper {
  position: sticky;
  top: 0;
  left: 0;
}
.message-editor .message-textarea-and-preview .message-config-tooltip {
  background-color: var(--background-color);
  color: var(--content-text-color);
  padding: 0.5em;
  border-radius: var(--nice-border-radius);
  box-shadow: var(--shadow-elevation-2);
  border: 1px solid var(--card-border-color);
  z-index: 10;
  animation: open-tooltip 0.1s;
}
.message-editor .message-textarea-and-preview .message-config-tooltip .message-config-tooltip-entry {
  padding: 0.25em 0.5em 0.25em 0.5em;
  cursor: pointer;
  border-radius: var(--nice-border-radius);
}
.message-editor .message-textarea-and-preview .message-config-tooltip .message-config-tooltip-entry.selected {
  background-color: rgba(0, 0, 0, 0.15);
}
.message-editor .message-textarea-and-preview .message-config-tooltip .message-config-tooltip-entry:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.message-editor .message-textarea-and-preview .message-config-tooltip .message-config-tooltip-entry.emoji-entry {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.message-editor .message-textarea-and-preview .message-config-tooltip .message-config-tooltip-entry.emoji-entry img {
  object-fit: contain;
}
.message-editor .message-textarea-and-preview .message-popover-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.5em;
  flex-wrap: wrap;
}
.message-editor .message-textarea-and-preview .message-config-popover {
  position: absolute;
  bottom: 100%;
  right: 0;
  background-color: var(--background-color);
  width: 300px;
  height: 300px;
  z-index: 1;
  box-shadow: var(--shadow-elevation-2);
  border-radius: var(--nice-border-radius);
  border: 1px solid var(--card-border-color);
  display: flex;
  flex-direction: column;
  padding: 0.5em;
  gap: 0.5em;
  animation: open-popover 0.2s;
  transform-origin: bottom right;
}
@media (600px > width) {
  .message-editor .message-textarea-and-preview .message-config-popover {
    position: fixed;
    bottom: env(safe-area-inset-bottom, 0px);
    left: 0;
    width: 100vw;
    animation: open-popover-mobile 0.2s;
  }
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content {
  height: 100%;
  flex-shrink: 1;
  overflow: auto;
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content .message-config-list {
  overflow: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--inset-background-color);
  border-radius: var(--nice-border-radius);
  border: 1px solid var(--card-border-color);
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content .message-config-list .message-config-list-entry {
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  cursor: pointer;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content .message-config-list .message-config-list-entry:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content .message-config-list .message-config-list-entry svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content .message-config-emoji-grid {
  overflow: auto;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32px, 1fr));
  background-color: var(--inset-background-color);
  border-radius: var(--nice-border-radius);
  border: 1px solid var(--card-border-color);
  gap: 0.25em;
  justify-content: center;
  padding: 0.25em;
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content .message-config-emoji-grid img {
  object-fit: contain;
  width: 32px;
  height: 32px;
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content .message-config-emoji-grid img:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.message-editor .message-textarea-and-preview .message-config-popover .message-config-popover-content .message-config-popover-filter-input-wrapper {
  display: flex;
  align-items: flex-end;
}

@keyframes open-popover {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  90% {
    transform: scale(1.01);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes open-popover-mobile {
  0% {
    transform: translateY(300px);
    opacity: 0;
  }
  90% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes open-tooltip {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.message-preview-section {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  width: 100%;
}
.message-preview-section .message-preview-wrapper {
  width: 100%;
  height: fit-content;
  overflow: auto;
  border-radius: var(--nice-border-radius);
  border: 1px solid var(--card-border-color);
  background-color: var(--pure-background-color);
}
.message-preview-section .message-preview-wrapper .message-preview {
  padding: 1em;
  overflow: hidden;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.save-bar {
  color: white;
  display: flex;
  background-color: var(--accent-color);
  position: fixed;
  bottom: 1em;
  border-radius: var(--nice-border-radius);
  padding: 1em;
  box-shadow: var(--shadow-elevation-2), inset 0px 0.5px oklch(from var(--accent-color) calc(l + .1) c h);
  border: 1px solid var(--soft-border-color);
  justify-content: center;
  align-items: center;
  transform: translateY(100%) scale(1.025);
  z-index: 25;
  font-weight: bold;
  margin-top: auto;
  height: var(--save-bar-height);
  transition: background-color 1s 0.25s, box-shadow 1s 0.25s;
}
.save-bar.attention {
  background-color: var(--loritta-red);
  box-shadow: var(--shadow-elevation-2), inset 0px 0.5px oklch(from var(--loritta-red) calc(l + .1) c h);
  transition: background-color 0s, box-shadow 0s;
}
.save-bar .save-bar-small-text {
  display: none;
}
.save-bar .save-bar-large-text {
  display: block;
}
@media (max-width: 800px) {
  .save-bar .save-bar-small-text {
    display: block;
  }
  .save-bar .save-bar-large-text {
    display: none;
  }
}
.save-bar .save-bar-buttons {
  margin-left: auto;
  display: flex;
  gap: 0.5em;
}
.save-bar.has-changes {
  animation: save-bar-has-changes-animation 0.25s ease-out forwards;
  animation-direction: normal;
}
.save-bar.no-changes {
  animation: save-bar-no-changes-animation 0.25s ease-out forwards;
  animation-direction: reverse;
}
.save-bar.initial-state {
  opacity: 0 !important;
}

.save-bar-reserved-space {
  height: calc(var(--save-bar-height) + 1em);
}

#right-sidebar-content-and-save-bar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@keyframes save-bar-has-changes-animation {
  0% {
    transform: translateY(100%) scale(1.025);
    opacity: 0;
  }
  80% {
    transform: translateY(-10%) scale(1.025);
    opacity: 1;
  }
  95% {
    transform: translateY(-5%) scale(1.025);
    opacity: 1;
  }
  100% {
    transform: translateY(0%) scale(1.025);
    opacity: 1;
  }
}
@keyframes save-bar-no-changes-animation {
  0% {
    transform: translateY(100%) scale(1.025);
    opacity: 0;
  }
  80% {
    transform: translateY(-10%) scale(1.025);
    opacity: 1;
  }
  95% {
    transform: translateY(-5%) scale(1.025);
    opacity: 1;
  }
  100% {
    transform: translateY(0%) scale(1.025);
    opacity: 1;
  }
}
.color-picker-wrapper {
  display: flex;
  gap: 1em;
  flex-direction: column;
}
.color-picker-wrapper .color-picker-elements {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.color-picker-wrapper .color-picker-elements .color-picker-box-and-hue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.color-picker-wrapper .color-picker-elements .color-picker-box-and-hue .color-picker-color-preview {
  width: 100%;
  height: 20px;
  border-radius: 3px;
}
.color-picker-wrapper .color-picker-elements .color-picker-box-and-hue .color-picker-box-wrapper {
  display: flex;
  gap: 0.5em;
}
.color-picker-wrapper .color-picker-elements .color-picker-box-and-hue .color-picker-box-wrapper .color-picker-box {
  position: relative;
  width: 220px;
  height: 220px;
  cursor: crosshair;
}
.color-picker-wrapper .color-picker-elements .color-picker-box-and-hue .color-picker-box-wrapper .color-picker-box .color-picker-box-handle {
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  border: 1px solid white;
  box-shadow: 0px 0px 1px black;
  pointer-events: none;
  transform: translateX(-4px) translateY(4px);
}
.color-picker-wrapper .color-picker-elements .color-picker-box-and-hue .color-picker-hue-slider {
  background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
  width: 15px;
  height: 220px;
  position: relative;
  cursor: pointer;
}
.color-picker-wrapper .color-picker-elements .color-picker-box-and-hue .color-picker-hue-slider .color-picker-hue-slider-handle {
  width: 100%;
  height: 6px;
  background-color: white;
  position: absolute;
  border-radius: 1px;
  transform: scale(1.5) translateY(50%);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.color-picker-wrapper .color-picker-elements .color-picker-values-grid {
  display: grid;
  grid-row-gap: 0.5em;
  grid-template-columns: auto 1fr auto;
  grid-auto-rows: min-content;
}
.color-picker-wrapper .color-picker-elements .color-picker-values-grid .color-picker-value-label {
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 0.5em;
}
.color-picker-wrapper .color-picker-elements .color-picker-values-grid input {
  width: 7em;
}
.color-picker-wrapper .color-picker-elements .color-picker-values-grid .color-picker-value-end-label {
  display: flex;
  justify-content: start;
  align-items: center;
}
.color-picker-wrapper .color-picker-random-buttons {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  justify-content: center;
}

.discord-color-selector {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  flex-wrap: wrap;
}
.discord-color-selector .big-color-swatch {
  border-radius: 3px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid var(--soft-border-color);
  cursor: pointer;
  background-color: #99aab5;
  position: relative;
  flex-grow: 1;
}
.discord-color-selector .big-color-swatch .selected-icon {
  width: 60%;
  height: 60%;
  animation: selected-swatch 0.2s;
}
.discord-color-selector .big-color-swatch .eye-dropper-icon {
  position: absolute;
  right: 1%;
  top: 2px;
  width: auto;
  height: 25%;
}

.quick-color-palette {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: center;
}
.quick-color-palette .quick-color-swatch-combo {
  display: flex;
  gap: 0.5em;
  flex-direction: column;
}
.quick-color-palette .quick-color-swatch {
  border-radius: 3px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid var(--soft-border-color);
  cursor: pointer;
}
.quick-color-palette .quick-color-swatch svg {
  width: 0.85em;
  height: 0.85em;
  animation: selected-swatch 0.2s;
}

.gabriela-color-preview {
  position: relative;
  width: 150px;
  height: 250px;
  animation: gabriela-previewer-breathing 1.5s infinite alternate ease-in-out;
  transform-origin: center bottom;
}

@keyframes selected-swatch {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  90% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes gabriela-previewer-breathing {
  0% {
    transform: scaleY(100%);
  }
  100% {
    transform: scaleY(98%);
  }
}
.qm.vertical-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.qm.horizontal-list {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  flex-wrap: wrap;
}
.qm.child-flex-grow > * {
  flex-grow: 1;
}

.theme-selector {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.theme-selector .theme-selector-lori {
  background: radial-gradient(#505050, #000);
  display: flex;
  justify-content: center;
  border-radius: var(--first-level-border-radius);
  width: fit-content;
  margin: auto;
}
.theme-selector .theme-selector-lori .theme-selector-lori-inner {
  width: fit-content;
  position: relative;
  overflow: hidden;
  display: flex;
  aspect-ratio: 1/1;
  justify-content: center;
}
.theme-selector .theme-selector-lori .theme-selector-lori-inner img {
  filter: grayscale(25%) drop-shadow(0px 0px 5px #222);
  max-height: 450px;
}
.theme-selector .theme-selector-lori .theme-selector-lori-inner .theme-option {
  position: absolute;
  font-weight: 1000;
  font-size: 1.25em;
  padding: 0.25em;
  border-radius: 7px;
  box-shadow: 0px 0px 3px #0000001a;
}
.theme-selector .theme-selector-lori .theme-selector-lori-inner .theme-option.light {
  position: absolute;
  left: 5%;
  bottom: 15%;
  background-color: white;
  font-weight: 1000;
  animation: swing-animation 2s infinite;
  color: black;
}
.theme-selector .theme-selector-lori .theme-selector-lori-inner .theme-option.dark {
  position: absolute;
  right: 5%;
  bottom: 15%;
  background-color: #313338;
  animation: swing-animation 2s infinite reverse;
  color: white;
}
.theme-selector .theme-selector-buttons {
  display: grid;
  gap: 0.5em;
  grid-template-columns: 1fr 1fr;
}

.tag {
  background-color: #ED4245;
  color: white;
  font-weight: bold;
  border-radius: 0.1875em;
  font-size: 0.625em;
  display: inline;
  padding: 0.3em 0.5em;
  text-transform: uppercase;
  position: relative;
  bottom: 0.15em;
}
.tag.primary {
  background-color: var(--accent-color);
}
.tag.warn {
  background-color: #ed4245;
}

.alert {
  padding: 1em;
  border-radius: var(--nice-border-radius);
  border: 1px solid;
}
.alert.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.state-tip {
  width: 1em;
  height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  color: white;
  flex-shrink: 0;
}
.state-tip.success {
  background-color: var(--loritta-green);
}
.state-tip.warn {
  background-color: var(--loritta-red);
}
.state-tip svg {
  width: 0.75em;
  height: 0.75em;
}
.state-tip i {
  font-size: 0.75em;
}

.shop-reset-timer {
  display: flex;
  align-items: center;
  justify-content: right;
  color: #1996ed;
}
.shop-reset-timer .horizontal-line {
  flex-grow: 1;
  background-color: #1996ed;
  height: 2px;
  margin-right: 10px;
}
.shop-reset-timer .stopwatch {
  margin-right: 10px;
  width: 3em;
  height: 3em;
}
.shop-reset-timer .stopwatch .stopwatch-hand {
  animation: stopwatch-hand-animation 3s ease-in-out infinite;
  transform-origin: 128px 128px;
}
.shop-reset-timer .shop-timer {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.shop-reset-timer .shop-timer .shop-timer-date {
  font-size: 2.25em;
  text-transform: uppercase;
}
.shop-reset-timer .shop-timer .shop-timer-subtitle {
  text-transform: lowercase;
  font-size: 1.25em;
}

.loritta-items-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 8px;
}
.loritta-items-wrapper.legacy-items-wrapper {
  justify-content: space-evenly;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.loritta-items-wrapper .shop-item-entry {
  margin: 0.25em;
  box-shadow: var(--shadow-elevation-1);
  border-radius: 7px;
  padding: 0.25em;
  cursor: pointer;
  height: min-content;
  scale: 1;
  transition-duration: 0.35s;
}
.loritta-items-wrapper .shop-item-entry:hover {
  scale: 1.025;
  transition-duration: 0.25s;
  box-shadow: var(--shadow-elevation-2);
}
.loritta-items-wrapper .shop-item-entry.rarity-common {
  background: linear-gradient(135deg, #e7e7e7, #939393);
}
.loritta-items-wrapper .shop-item-entry.rarity-uncommon {
  background: linear-gradient(135deg, #2cff00, #0c8d08);
}
.loritta-items-wrapper .shop-item-entry.rarity-rare {
  background: linear-gradient(135deg, #009fff, #003e80);
}
.loritta-items-wrapper .shop-item-entry.rarity-epic {
  background: linear-gradient(135deg, #b03cff, #5c045c);
}
.loritta-items-wrapper .shop-item-entry.rarity-legendary {
  background: linear-gradient(135deg, #fadf4b, #d3b200);
}
.loritta-items-wrapper .shop-item-entry .item-entry-information {
  position: absolute;
  color: white;
  text-align: center;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  background-color: #000000a1;
  padding: 0.5em;
  pointer-events: none;
}
.loritta-items-wrapper .shop-item-entry .item-entry-information .item-entry-title {
  font-size: 2em;
  line-height: 1.3em;
  font-weight: 1000;
}
.loritta-items-wrapper .shop-item-entry .item-entry-information .item-entry-title.rarity-common {
  background: linear-gradient(#fff, #dfdfdf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loritta-items-wrapper .shop-item-entry .item-entry-information .item-entry-title.rarity-uncommon {
  background: linear-gradient(#fff, #b7ff86);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loritta-items-wrapper .shop-item-entry .item-entry-information .item-entry-title.rarity-rare {
  background: linear-gradient(#fff, #aeddff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loritta-items-wrapper .shop-item-entry .item-entry-information .item-entry-title.rarity-epic {
  background: linear-gradient(#fff, #e6aeff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loritta-items-wrapper .shop-item-entry .item-entry-information .item-entry-title.rarity-legendary {
  background: linear-gradient(#fff, #fff2ae);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loritta-items-wrapper .shop-item-entry .item-entry-information .item-entry-type {
  opacity: 0.5;
  font-size: 1em;
  line-height: 1em;
  font-weight: 500;
}
.loritta-items-wrapper .shop-item-entry .item-new-tag {
  top: -10px;
  left: -10px;
  position: absolute;
  font-size: 2em;
  text-transform: uppercase;
  background-color: var(--loritta-red);
  padding: 6px;
  border-radius: 7px;
  font-weight: 1000;
  color: white;
  box-shadow: 0px 0px 10px #00000054;
  border: 3px solid white;
}
.loritta-items-wrapper .shop-item-entry .item-user-information {
  background-color: black;
  line-height: 1.1em;
  font-size: 1.1em;
  z-index: 5;
  position: relative;
  color: white;
  padding: 0.25em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.loritta-items-wrapper .shop-item-entry .item-user-information svg {
  color: var(--loritta-green);
  width: 1em;
  height: 1em;
}

.canvas-background-preview {
  transition-duration: 0.7s;
  transform: scale(1);
}

.canvas-background-preview:hover {
  transform: scale(1.1);
  transition-duration: 0.7s;
}

.canvas-preview {
  transition-duration: 0.3s;
  height: auto;
  transform: rotateY(-10deg);
  margin-bottom: 50px;
  box-shadow: 0px 0px 10px #0009;
  max-width: 100%;
}

.canvas-preview-profile-design {
  transition-duration: 0.3s;
  height: auto;
  transform: rotateY(-10deg);
  margin-bottom: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  max-width: 100%;
}

.canvas-preview:hover {
  opacity: 0;
  transition-duration: 0.3s;
}

.canvas-preview-only-bg {
  position: absolute;
  height: auto;
  transform: rotateY(-10deg);
  margin-bottom: 50px;
  box-shadow: 0px 0px 10px #0009;
  max-width: 100%;
}

.canvas-preview-wrapper {
  perspective: 500px;
  position: relative;
}
.canvas-preview-wrapper img {
  display: block;
}

.item-shop-preview {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .item-shop-preview {
    flex-direction: column;
  }
}

.loritta-items-list {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .loritta-items-list {
    flex-direction: column-reverse;
  }
}

.loritta-items-sidebar {
  width: 40vw;
  margin-left: auto;
  max-width: 350px;
}
@media screen and (max-width: 1024px) {
  .loritta-items-sidebar {
    width: 100%;
    margin: auto;
  }
}
.loritta-items-sidebar input {
  width: 100%;
}

.loritta-item-preview-wrapper {
  display: flex;
  flex-direction: column;
}
.loritta-item-preview-wrapper .canvas-preview-wrapper-wrapper {
  display: flex;
  justify-content: center;
}
.loritta-item-preview-wrapper .canvas-preview-wrapper-wrapper .canvas-preview-wrapper {
  width: fit-content;
  animation: 8s linear infinite forwards loritta-item-preview-animation;
}

@keyframes loritta-item-preview-animation {
  0%, 50%, 100% {
    transform: translateY(0px);
    animation-timing-function: ease-out;
  }
  25% {
    transform: translateY(10px);
    animation-timing-function: ease-in;
  }
  75% {
    transform: translateY(-10px);
    animation-timing-function: ease-in;
  }
}
@keyframes stopwatch-hand-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root {
  --developer-docs-get-method: #00a650;
  --developer-docs-post-method: var(--accent-color);
  --developer-docs-put-method: #f73;
  --developer-docs-delete-method: #f23d4f;
  --developer-docs-patch-method: #B200FF;
}

.developer-docs code {
  background-color: hsl(from var(--background-color) h s calc(l / 1.05));
  padding: 0.2em 0.4em;
  border-radius: var(--first-level-border-radius);
}
.developer-docs .endpoint-reference {
  padding: 1em;
  border-radius: var(--first-level-border-radius);
  border: 1px solid;
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.developer-docs .endpoint-reference .endpoint-path {
  line-break: anywhere;
}
.developer-docs .endpoint-reference .http-method-pill {
  padding: 0 6px 0 6px;
  color: white;
  font-weight: bold;
  border-radius: var(--first-level-border-radius);
}
.developer-docs .endpoint-reference.http-method-get {
  background-color: hsl(from var(--developer-docs-get-method) h s l / 10%);
  border-color: hsl(from var(--developer-docs-get-method) h calc(s * 5) calc(l / 5) / 25%);
}
.developer-docs .endpoint-reference.http-method-get .http-method-pill {
  background-color: var(--developer-docs-get-method);
}
.developer-docs .endpoint-reference.http-method-post {
  background-color: hsl(from var(--developer-docs-post-method) h s l / 10%);
  border-color: hsl(from var(--developer-docs-post-method) h calc(s * 5) calc(l / 5) / 25%);
}
.developer-docs .endpoint-reference.http-method-post .http-method-pill {
  background-color: var(--developer-docs-post-method);
}
.developer-docs .endpoint-reference.http-method-put {
  background-color: hsl(from var(--developer-docs-put-method) h s l / 10%);
  border-color: hsl(from var(--developer-docs-put-method) h calc(s * 5) calc(l / 5) / 25%);
}
.developer-docs .endpoint-reference.http-method-put .http-method-pill {
  background-color: var(--developer-docs-put-method);
}
.developer-docs .endpoint-reference.http-method-delete {
  background-color: hsl(from var(--developer-docs-delete-method) h s l / 10%);
  border-color: hsl(from var(--developer-docs-delete-method) h calc(s * 5) calc(l / 5) / 25%);
}
.developer-docs .endpoint-reference.http-method-delete .http-method-pill {
  background-color: var(--developer-docs-delete-method);
}
.developer-docs .endpoint-reference.http-method-patch {
  background-color: hsl(from var(--developer-docs-patch-method) h s l / 10%);
  border-color: hsl(from var(--developer-docs-patch-method) h calc(s * 5) calc(l / 5) / 25%);
}
.developer-docs .endpoint-reference.http-method-patch .http-method-pill {
  background-color: var(--developer-docs-patch-method);
}
.developer-docs .mainframe-terminal-wrapper {
  overflow: auto;
  color: white;
  background-color: #28282e;
  border-radius: 3px;
}
.developer-docs .mainframe-terminal-wrapper .mainframe-terminal-title {
  font-weight: bold;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #45454e;
  font-size: 1.1em;
}
.developer-docs .mainframe-terminal-wrapper .mainframe-terminal {
  padding: 1em;
  font-family: monospace;
  overflow: auto;
}
.developer-docs .mainframe-terminal-wrapper .mainframe-terminal .term-green {
  color: #b0eb93;
}
.developer-docs .mainframe-terminal-wrapper .mainframe-terminal .term-pink {
  color: #feaae4;
}
.developer-docs .mainframe-terminal-wrapper .mainframe-terminal .term-orange {
  color: #ffc384;
}
.developer-docs .mainframe-terminal-wrapper .mainframe-terminal .term-blue {
  color: #accce4;
}
.developer-docs .test-parameter-type {
  background-color: red;
  border-radius: 3px;
  color: white;
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: bold;
  padding: 3px;
  position: relative;
  top: -0.3em;
}
.developer-docs .test-parameter-type.path-parameter {
  background-color: #0eaf9b;
}
.developer-docs .test-parameter-type.query-parameter {
  background-color: #a884f3;
}
.developer-docs .test-parameter-type.json-parameter {
  background-color: #e8ab5e;
}
.developer-docs .test-parameter-type.full-body-parameter {
  background-color: #3e3546;
}

.http-method-circle {
  height: 4px;
  width: 4px;
  border-radius: 100%;
}
.http-method-circle.http-method-get {
  background-color: var(--developer-docs-get-method);
}
.http-method-circle.http-method-post {
  background-color: var(--developer-docs-post-method);
}
.http-method-circle.http-method-put {
  background-color: var(--developer-docs-put-method);
}
.http-method-circle.http-method-delete {
  background-color: var(--developer-docs-delete-method);
}
.http-method-circle.http-method-patch {
  background-color: var(--developer-docs-patch-method);
}

.http-method-sidebar {
  width: 4em;
  font-family: monospace;
  font-size: 0.75em;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0.25em;
  flex-shrink: 0;
}

#bundles-content {
  display: grid;
  gap: 16px;
  grid-template-columns: 6fr 4fr;
}
@media (max-width: 900px) {
  #bundles-content {
    display: flex;
    flex-direction: column-reverse;
  }
}

#trinket-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#trinket-info .items-info-buttons-wrapper {
  text-align: center;
  margin-top: auto;
  display: flex;
  gap: 0.5em;
  font-size: 1.25em;
  justify-content: center;
}
#trinket-info #trinket-info-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#trinket-info .fill-loading-screen {
  display: none;
}
#trinket-info.bliss-request > #trinket-info-content {
  display: none;
}
#trinket-info.bliss-request > .fill-loading-screen {
  display: flex;
}

.bought-shop-items-list {
  height: var(--right-sidebar-height);
  overflow: auto;
  padding: 1em;
  background-color: var(--inset-background-color);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
}
.bought-shop-items-list .loritta-items-wrapper {
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
@media (max-width: 900px) {
  .bought-shop-items-list {
    height: initial;
  }
}

.fancy-radio-option-wrapper input[type=radio] {
  display: none;
}
.fancy-radio-option-wrapper .fancy-radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.5em 1em 0.5em 1em;
  gap: 8px;
  border-radius: var(--nice-border-radius);
}
.fancy-radio-option-wrapper .fancy-radio-option .radio-option-info .radio-option-title {
  font-weight: 600;
}
.fancy-radio-option-wrapper .fancy-radio-option .radio-option-info .radio-option-description {
  opacity: 0.8;
  font-size: var(--description-font-size);
}
.fancy-radio-option-wrapper .fancy-radio-option .fancy-radio-option-circle {
  width: 24px;
  height: 24px;
  border: 2px solid var(--card-border-highlight-color);
  border-radius: 99999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fancy-radio-option-wrapper .fancy-radio-option .fancy-radio-option-circle .fancy-radio-option-circle-white {
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 99999px;
  background-color: white;
}
.fancy-radio-option-wrapper input[type=radio]:checked + .fancy-radio-option {
  background-color: var(--fancy-radio-input-selected-background-color);
}
.fancy-radio-option-wrapper input[type=radio]:checked + .fancy-radio-option .fancy-radio-option-circle {
  border: 2px solid var(--accent-color);
  background-color: var(--accent-color);
}
.fancy-radio-option-wrapper input[type=radio]:checked + .fancy-radio-option .fancy-radio-option-circle .fancy-radio-option-circle-white {
  display: flex;
}

.partner-features {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.partner-features .partner-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.25em;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background-color: var(--card-background-color);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
}
.partner-features .partner-feature-card .partner-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  background-color: var(--inset-background-color);
}
.partner-features .partner-feature-card .partner-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-color);
}
.partner-features .partner-feature-card .partner-feature-title {
  font-weight: 700;
  font-size: 1em;
  margin-bottom: 0.5em;
  color: var(--content-text-color);
}
.partner-features .partner-feature-card .partner-feature-description {
  font-size: var(--description-font-size);
  line-height: 1.5;
  opacity: 0.85;
}

.billing-toggle-radio {
  display: none;
}

.premium-billing-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5em;
}

.premium-billing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--card-background-color);
  border: 1px solid var(--card-border-color);
  border-radius: 999px;
  padding: 4px;
}
.premium-billing-toggle .billing-option {
  padding: 0.5em 1.5em;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  user-select: none;
}
.premium-billing-toggle .billing-discount-badge {
  background: #298546;
  color: white;
  font-size: 0.75em;
  font-weight: bold;
  padding: 0.15em 0.5em;
  border-radius: 999px;
}

#billing-monthly:checked ~ .premium-billing-toggle-wrapper .billing-option[for=billing-monthly] {
  background: var(--accent-color);
  color: white;
}

#billing-annual:checked ~ .premium-billing-toggle-wrapper .billing-option[for=billing-annual] {
  background: var(--accent-color);
  color: white;
}
#billing-annual:checked ~ .premium-billing-toggle-wrapper .billing-option[for=billing-annual] .billing-discount-badge {
  background: white;
  color: var(--accent-color);
}

.premium-plans-wrapper .billing-annual-content {
  display: none;
}

#billing-annual:checked ~ .premium-plans-wrapper .billing-monthly-content {
  display: none;
}

#billing-annual:checked ~ .premium-plans-wrapper .billing-annual-content {
  display: block;
}

.premium-plans-wrapper {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.premium-plans-wrapper .premium-plan-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1.5em;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  position: relative;
  background-color: var(--card-background-color);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
}
.premium-plans-wrapper .premium-plan-card.highlighted {
  border: 2px solid #f0a030;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0a030;
  color: #1a1a2e;
  font-size: 0.75em;
  font-weight: bold;
  padding: 0.25em 0.75em;
  border-radius: 4px;
  text-transform: uppercase;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.75em;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-header .premium-plan-name {
  margin: 0;
  font-size: 1.25em;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-header .premium-plan-best-value-tag {
  background: rgba(240, 160, 48, 0.2);
  color: #f0a030;
  font-size: 0.75em;
  font-weight: bold;
  padding: 0.2em 0.5em;
  border-radius: 4px;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-price {
  margin-bottom: 0.5em;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-price .premium-plan-price-value {
  font-size: 1.75em;
  font-weight: bold;
  color: var(--accent-color);
}
.premium-plans-wrapper .premium-plan-card .premium-plan-price .premium-plan-price-period {
  font-size: 0.9em;
  opacity: 0.7;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-price-comparison {
  font-size: 0.85em;
  opacity: 0.7;
  margin: 0 0 1em 0;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-price-comparison .premium-plan-original-price {
  text-decoration: line-through;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25em 0;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-features li {
  padding: 0.3em 0;
}
.premium-plans-wrapper .premium-plan-card .premium-plan-features li .premium-plan-feature-check {
  color: #43b581;
  margin-right: 0.5em;
}
.premium-plans-wrapper .premium-plan-card .billing-monthly-content,
.premium-plans-wrapper .premium-plan-card .billing-annual-content {
  margin-top: auto;
}

#emulator-loading-wrapper {
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#emulator {
  position: relative;
  width: 100dvw;
  height: 100dvh;
  background-color: black;
  display: flex;
  flex-direction: column;
}
#emulator canvas {
  flex-grow: 1;
  object-fit: contain;
  image-rendering: pixelated;
  width: 100%;
  height: 100%;
  min-height: 0;
}
#emulator .emulator-top-buttons {
  display: flex;
  top: max(clamp(8px, 2vmin, 16px), env(safe-area-inset-top));
  left: max(clamp(8px, 2vmin, 16px), env(safe-area-inset-left));
  position: fixed;
  gap: 8px;
  z-index: 10;
}
#emulator .emulator-top-buttons .emulator-top-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.01s ease-in-out, transform 0.02s ease-in-out;
  width: 32px;
  height: 32px;
}
#emulator .emulator-top-buttons .emulator-top-button:active {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(0.95);
}
#emulator .virtual-gamepad {
  display: none;
}
@media (pointer: coarse) {
  #emulator .virtual-gamepad {
    --gamepad-button-size: clamp(36px, 9vmin, 56px);
    --gamepad-action-size: clamp(40px, 10vmin, 64px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(8px, 2vmin, 16px) clamp(12px, 3vmin, 24px);
    gap: 16px;
    user-select: none;
    touch-action: none;
    color: white;
    height: 100%;
    width: 100%;
    flex-grow: 1;
  }
  #emulator .virtual-gamepad .dpad {
    display: grid;
    grid-template-columns: repeat(3, var(--gamepad-button-size));
    grid-template-rows: repeat(3, var(--gamepad-button-size));
    gap: 4px;
  }
  #emulator .virtual-gamepad .dpad .dpad-up {
    grid-column: 2;
    grid-row: 1;
  }
  #emulator .virtual-gamepad .dpad .dpad-left {
    grid-column: 1;
    grid-row: 2;
  }
  #emulator .virtual-gamepad .dpad .dpad-right {
    grid-column: 3;
    grid-row: 2;
  }
  #emulator .virtual-gamepad .dpad .dpad-down {
    grid-column: 2;
    grid-row: 3;
  }
  #emulator .virtual-gamepad .action-buttons {
    display: flex;
    gap: clamp(6px, 1.5vmin, 12px);
    align-items: center;
  }
  #emulator .virtual-gamepad .virtual-gamepad-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: bold;
    font-size: clamp(14px, 3.5vmin, 20px);
    border-radius: 8px;
    cursor: pointer;
    width: var(--gamepad-button-size);
    height: var(--gamepad-button-size);
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.01s ease-in-out, transform 0.02s ease-in-out;
  }
  #emulator .virtual-gamepad .virtual-gamepad-button.pressed {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
  }
  #emulator .virtual-gamepad .action-buttons .virtual-gamepad-button {
    width: var(--gamepad-action-size);
    height: var(--gamepad-action-size);
    border-radius: 50%;
    font-size: clamp(16px, 4vmin, 22px);
  }
}
@media (pointer: coarse) and (orientation: landscape) {
  #emulator canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  #emulator .virtual-gamepad {
    position: absolute;
    inset: 0;
    height: auto;
    width: auto;
    flex-grow: 0;
    background: transparent;
    pointer-events: none;
    padding: max(clamp(12px, 3vmin, 28px), env(safe-area-inset-top)) max(clamp(12px, 3vmin, 28px), env(safe-area-inset-right)) max(clamp(12px, 3vmin, 28px), env(safe-area-inset-bottom)) max(clamp(12px, 3vmin, 28px), env(safe-area-inset-left));
  }
  #emulator .virtual-gamepad .dpad {
    position: absolute;
    left: max(clamp(12px, 3vmin, 28px), env(safe-area-inset-left));
    bottom: max(clamp(12px, 3vmin, 28px), env(safe-area-inset-bottom));
  }
  #emulator .virtual-gamepad .action-buttons {
    position: absolute;
    right: max(clamp(12px, 3vmin, 28px), env(safe-area-inset-right));
    bottom: max(clamp(12px, 3vmin, 28px), env(safe-area-inset-bottom));
  }
  #emulator .virtual-gamepad .virtual-gamepad-button {
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

.game-library {
  display: grid;
  grid-template-columns: repeat(auto-fill, 180px);
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.game-library .game-library-item {
  width: 180px;
  height: 280px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  font-weight: bolder;
  gap: 4px;
}
.game-library .game-library-item .game-library-card-art {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 32px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  flex-grow: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
  border-radius: 7px;
}
.game-library .game-library-item .game-library-item-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.game-overview {
  --game-accent: #29a6fe;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 96/31;
  max-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background-color: oklch(from var(--game-accent) calc(l * 0.45) c h);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
}
.game-hero.no-hero {
  background-image: linear-gradient(135deg, oklch(from var(--game-accent) calc(l * 0.65) c h) 0%, oklch(from var(--game-accent) calc(l * 0.35) c h) 100%);
}

.game-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 100%);
}

.game-hero-title {
  color: white;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  max-width: 80%;
}

.game-overview-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.game-overview-actions .game-overview-play.discord-button {
  flex: 1 1 auto;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 28px;
  gap: 10px;
}
.game-overview-actions .game-overview-play.discord-button svg {
  width: 1.2em;
  height: 1.2em;
}
.game-overview-actions .game-overview-delete {
  appearance: none;
  background: transparent;
  border: 1px solid var(--soft-border-color, rgba(255, 255, 255, 0.12));
  border-radius: var(--nice-border-radius, 8px);
  color: inherit;
  cursor: pointer;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s background-color, 0.2s color, 0.2s border-color;
}
.game-overview-actions .game-overview-delete svg {
  width: 20px;
  height: 20px;
}
.game-overview-actions .game-overview-delete:hover {
  background-color: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.5);
  color: #ff6b7a;
}

.game-saves {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-saves .game-saves-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid var(--soft-border-color, rgba(255, 255, 255, 0.12));
  border-radius: var(--nice-border-radius, 8px);
  background: rgba(0, 0, 0, 0.18);
}
.game-saves .game-saves-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  font-family: var(--monospace-font, monospace);
  font-size: 13px;
}
.game-saves .game-saves-list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.game-saves .game-saves-list .game-saves-name {
  overflow-wrap: anywhere;
}
.game-saves .game-saves-list .game-saves-size {
  flex: 0 0 auto;
  opacity: 0.7;
}
.game-saves .game-saves-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 768px) {
  .game-hero-overlay {
    padding: 20px;
  }

  .game-overview-actions .game-overview-play.discord-button {
    padding: 12px 20px;
    font-size: 16px;
  }
}
@font-face {
  font-family: "OpenSansPX";
  src: url("assets/fonts/OpenSansPXBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansPX";
  src: url("assets/fonts/OpenSansPX.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --accent-color: #E8A552;
  --accent-color-rgb: 41, 166, 254;
  --loritta-red: #da373c;
  --loritta-green: #298546;
  --soft-border-color: rgba(0, 0, 0, 0.2);
  --description-font-size: 14px;
  --right-sidebar-height: calc(100vh - 1em - 1em);
  --sidebar-ad-width: 160px;
  --left-sidebar-width: 360px;
  --navbar-height: 50px;
  --save-bar-height: 70px;
  --user-info-wrapper-margin: 0.25em;
  --h1-font-size: 28px;
  --h2-font-size: 24px;
  --card-section-header-font-size: 20px;
  --nice-border-radius: 7px;
  --background-color: hsl(210, 5%, 98.5%);
  --pure-background-color: #ffffff;
  --content-text-color: #333333;
  --content-divider-color: hsl(210, 5%, 93.5%);
  --sidebar-entry-hover-color: rgba(0.0, 0.0, 0.0, 0.025);
  --sidebar-entry-color-inactive: hsl(0, 0%, 0%, 0.6);
  --sidebar-entry-color-hovered: hsl(0, 0%, 0%, 1.0);
  --sidebar-entry-color-active: oklch(from var(--accent-color) calc(l - 0.2) c h);
  --background-light: hsl(0, 100%, 100%);
  --primary-100: hsl(205, 98%, 96%);
  --primary-300: hsl(210, 90%, 80%);
  --primary-500: hsl(205, 99%, 58%);
  --primary-700: hsl(205, 40%, 40%);
  --primary-900: hsl(205, 90%, 20%);
  --left-sidebar-background-color: hsl(220, 13%, 95%);
  --left-sidebar-divider-color: hsl(220, 13%, 90%);
  --user-info-wrapper-background-color: hsl(220, 15%, 92.2%);
  --user-info-wrapper-border-color: hsl(220, 15%, 72.2%);
  --user-info-wrapper-highlight-color: hsl(220, 15%, 82.2%);
  --card-background-color: hsl(0, 100%, 100%);
  --card-border-color: hsl(220, 30%, 87.5%);
  --card-border-highlight-color: hsl(220, 30%, 91.5%);
  --inset-background-color: hsl(220, 30%, 96.5%);
  --toggleable-section-background-color: hsl(220, 30%, 98%);
  --discord-embed-background-color: #f2f3f5;
  --discord-embed-pill-color: rgb(227, 229, 232);
  --fancy-radio-input-selected-background-color: rgba(0, 0, 80, 0.05);
  --link-color: hsl(211, 82%, 46%);
  --shadow-color: hsl(241.2, 15%, 43%);
  --shadow-elevation-1: 0 0.5px 1px hsl(from var(--shadow-color) h s l / 0.2), 0 4px 8px hsl(from var(--shadow-color) h s l / 0.05);
  --shadow-elevation-2: 0 1px 2px hsl(from var(--shadow-color) h s l / 0.2), 0 8px 16px hsl(from var(--shadow-color) h s l / 0.2);
  --shadow-inset: inset 0 2px 2px hsl(from var(--shadow-color) h s l / 0.2), inset 0 4px 8px hsl(from var(--shadow-color) h s l / 0.2);
  --button-no-background-light-text-color: #ffffff;
  --button-no-background-dark-text-color: #000000;
}

@media (prefers-color-scheme: light) {
  .sync-with-system-theme {
    color-scheme: light;
  }
}
@media (prefers-color-scheme: dark) {
  .sync-with-system-theme {
    color-scheme: dark;
    --background-color: hsl(270, 5%, 10%);
    --pure-background-color: #000000;
    --content-text-color: hsl(210, 0%, 85%);
    --soft-border-color: rgba(255, 255, 255, 0.1);
    --content-divider-color: hsl(270, 5%, 15%);
    --left-sidebar-background-color: hsl(270, 5%, 7%);
    --left-sidebar-divider-color: hsl(270, 5%, 10%);
    --sidebar-entry-hover-color: rgba(255.0, 255.0, 255.0, 0.05);
    --sidebar-entry-color-inactive: hsl(0, 0%, 100%, 0.6);
    --sidebar-entry-color-hovered: hsl(0, 0%, 100%, 1.0);
    --sidebar-entry-color-active: oklch(from var(--accent-color) l c h);
    --user-info-wrapper-background-color: hsl(270, 5%, 11%);
    --user-info-wrapper-border-color: hsl(270, 5%, 13%);
    --user-info-wrapper-highlight-color: hsl(270, 5%, 15%);
    --card-background-color: hsl(270, 5%, 13%);
    --card-border-color: hsl(270, 5%, 17%);
    --card-border-highlight-color: hsl(270, 5%, 20%);
    --inset-background-color: hsl(270, 10%, 5%);
    --button-no-background-dark-text-color: #ffffff;
    --button-no-background-light-text-color: #000000;
    --toggleable-section-background-color: hsl(270, 10%, 8.5%);
    --fancy-radio-input-selected-background-color: hsl(270, 25%, 50%, 0.1);
    --link-color: var(--accent-color);
    --discord-embed-background-color: #242429;
  }
}
.dark-theme {
  --background-color: hsl(270, 5%, 10%);
  --pure-background-color: #000000;
  --content-text-color: hsl(210, 0%, 85%);
  --soft-border-color: rgba(255, 255, 255, 0.1);
  --content-divider-color: hsl(270, 5%, 15%);
  --left-sidebar-background-color: hsl(270, 5%, 7%);
  --left-sidebar-divider-color: hsl(270, 5%, 10%);
  --sidebar-entry-hover-color: rgba(255.0, 255.0, 255.0, 0.05);
  --sidebar-entry-color-inactive: hsl(0, 0%, 100%, 0.6);
  --sidebar-entry-color-hovered: hsl(0, 0%, 100%, 1.0);
  --sidebar-entry-color-active: oklch(from var(--accent-color) l c h);
  --user-info-wrapper-background-color: hsl(270, 5%, 11%);
  --user-info-wrapper-border-color: hsl(270, 5%, 13%);
  --user-info-wrapper-highlight-color: hsl(270, 5%, 15%);
  --card-background-color: hsl(270, 5%, 13%);
  --card-border-color: hsl(270, 5%, 17%);
  --card-border-highlight-color: hsl(270, 5%, 20%);
  --inset-background-color: hsl(270, 10%, 5%);
  --button-no-background-dark-text-color: #ffffff;
  --button-no-background-light-text-color: #000000;
  --toggleable-section-background-color: hsl(270, 10%, 8.5%);
  --fancy-radio-input-selected-background-color: hsl(270, 25%, 50%, 0.1);
  --link-color: var(--accent-color);
  --discord-embed-background-color: #242429;
}

body {
  margin: 0;
  color: var(--content-text-color);
  background-color: var(--background-light);
  font-family: "Lato", "Arial", "sans-serif";
}

#app-wrapper {
  color: var(--content-text-color);
  background-color: var(--background-color);
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  color: var(--accent-color);
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

#wrapper {
  display: flex;
}

nav#mobile-left-sidebar {
  background: var(--accent-color);
  height: var(--navbar-height);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid oklch(from var(--accent-color) calc(l - 0.05) c calc(h + 20));
  color: #101010;
}
@media (min-width: 1280px) {
  nav#mobile-left-sidebar {
    display: none;
  }
}
nav#mobile-left-sidebar > .hamburger-button {
  height: var(--navbar-height);
  width: var(--navbar-height);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
nav#mobile-left-sidebar > .hamburger-button > svg {
  padding: 16px;
  width: 100%;
  height: 100%;
}
nav#mobile-left-sidebar > #mobile-left-sidebar-title {
  font-weight: bolder;
  overflow: hidden;
  flex-shrink: 1;
  flex-grow: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}
nav#mobile-left-sidebar > #mobile-left-sidebar-reserved-space {
  height: var(--navbar-height);
  width: var(--navbar-height);
  flex-shrink: 0;
}
nav#mobile-left-sidebar > .small-ad {
  display: none;
}
@media (min-width: 480px) {
  nav#mobile-left-sidebar > .small-ad {
    display: block;
  }
}

@keyframes sidebar-move {
  from {
    visibility: hidden;
    right: 100%;
  }
  to {
    visibility: visible;
    right: 0%;
  }
}
body.left-sidebar-open {
  overflow: hidden;
}

@keyframes toggle-sidebar-visibility {
  from {
    visibility: visible;
  }
  to {
    visibility: hidden;
  }
}
hr {
  width: 100%;
  border: 1px solid black;
}

nav#left-sidebar {
  visibility: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  border-right: 1px solid var(--card-border-color);
  z-index: 9;
  color: var(--content-text-color);
  background: var(--left-sidebar-background-color);
  top: var(--navbar-height);
  height: calc(100% - var(--navbar-height));
  position: fixed;
  transition-property: transform, box-shadow;
  transition-duration: 0.65s;
  width: 100%;
  transform: translate(-100%);
  will-change: transform, box-shadow;
}
@media (min-width: 600px) {
  nav#left-sidebar {
    max-width: var(--left-sidebar-width);
  }
}
nav#left-sidebar.is-open {
  visibility: visible;
  left: 0%;
  transform: translate(0%);
}
nav#left-sidebar.is-closed {
  animation: toggle-sidebar-visibility 1s;
}
@media (min-width: 1280px) {
  nav#left-sidebar {
    transform: translate(0%);
    visibility: visible;
    height: 100vh;
    min-width: 350px;
    top: 0;
    left: 0;
  }
}
nav#left-sidebar > .entries {
  padding: 8px 16px;
  height: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--left-sidebar-background-color);
  touch-action: pan-y;
}
nav#left-sidebar > .entries > hr {
  border-color: var(--left-sidebar-divider-color);
}
nav#left-sidebar > .entries > .category {
  font-weight: 1000;
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
nav#left-sidebar > .entries > .guild-icon-wrapper {
  display: flex;
  justify-content: center;
}
nav#left-sidebar > .entries > .guild-icon-wrapper .discord-server-icon {
  --icon-width: 160px;
  --icon-height: 160px;
}
nav#left-sidebar > .entries > .guild-icon-wrapper .discord-server-icon img {
  width: 100%;
  height: 100%;
}
nav#left-sidebar > .entries .entry {
  opacity: 1;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 75ms background-color, 75ms color;
}
nav#left-sidebar > .entries .entry.section-entry {
  padding-left: 0.75em;
  padding-right: 0.75em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border-radius: 7px;
  color: var(--sidebar-entry-color-inactive);
}
nav#left-sidebar > .entries .entry.section-entry:hover {
  background-color: var(--sidebar-entry-hover-color);
  color: var(--sidebar-entry-color-hovered);
  transition: 0s background-color, 0s color;
}
nav#left-sidebar > .entries .entry.section-entry.selected {
  background-color: var(--sidebar-entry-hover-color);
  color: var(--sidebar-entry-color-active);
}
nav#left-sidebar > .entries .entry.section-entry.selected.bliss-request {
  background-color: initial;
  color: var(--sidebar-entry-color-inactive);
}
nav#left-sidebar > .entries .entry.section-entry.bliss-request {
  background-color: var(--sidebar-entry-hover-color);
  color: var(--sidebar-entry-color-active);
}
nav#left-sidebar > .entries .entry.section-entry .section-text {
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  word-wrap: anywhere;
}
nav#left-sidebar > .entries .entry.section-entry .section-icon {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  flex-shrink: 0;
}
nav#left-sidebar > .entries .entry.section-entry .section-icon svg {
  width: 100%;
  height: 100%;
}
nav#left-sidebar > .entries .entry .new-feature {
  background-color: var(--loritta-red);
  border-radius: 99999px;
  padding: 1px 8px 1px 8px;
  color: white;
  margin-left: auto;
  text-transform: uppercase;
  font-weight: bolder;
}
nav#left-sidebar > .entries > .loritta-logo {
  font-family: Pacifico;
  font-size: 3em;
  text-align: center;
  display: block;
  line-height: 1;
  margin: 0;
  color: var(--accent-color);
  font-weight: normal;
}
nav#left-sidebar > .entries > .guild-name {
  font-family: "Lato", "Arial", "sans-serif";
  font-size: 1.5em;
  text-align: center;
  display: block;
  margin: 0;
  color: var(--accent-color);
  font-weight: 1000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
nav#left-sidebar > .user-info-wrapper {
  margin: 0 var(--user-info-wrapper-margin) var(--user-info-wrapper-margin) var(--user-info-wrapper-margin);
  height: 60px;
}
nav#left-sidebar > .user-info-wrapper > .user-info {
  background: var(--user-info-wrapper-background-color);
  border-radius: var(--nice-border-radius);
  border: 1px solid var(--user-info-wrapper-border-color);
  border-top-color: var(--user-info-wrapper-highlight-color);
  padding: 8px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
nav#left-sidebar > .user-info-wrapper > .user-info > img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
nav#left-sidebar > .user-info-wrapper > .user-info > .user-tag {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}
nav#left-sidebar > .user-info-wrapper > .user-info > .user-tag > .name {
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
}
nav#left-sidebar > .user-info-wrapper > .user-info > .user-tag > .discriminator {
  opacity: 0.8;
  font-size: 0.75em;
  text-overflow: ellipsis;
  overflow: hidden;
}

#left-sidebar-reserved-space {
  width: var(--left-sidebar-width);
  flex-shrink: 0;
}
@media (1280px > width) {
  #left-sidebar-reserved-space {
    display: none;
  }
}

.hero-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 64fr 36fr;
}
.hero-wrapper .hero-text {
  order: -1;
}
@media (max-width: 900px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-wrapper h1 {
    text-align: center;
  }
  .hero-wrapper .hero-text {
    order: 1;
  }
}

.hero-image {
  text-align: center;
  aspect-ratio: 16/12;
  max-height: 350px;
  width: 100%;
  object-fit: contain;
  -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%);
}

.hero-web-animation {
  height: 350px;
  width: 100%;
  object-fit: contain;
  -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%);
}
.hero-web-animation > div {
  height: 100%;
}
.hero-web-animation svg {
  width: 100%;
  height: 100%;
}

section#right-sidebar {
  width: 100%;
  display: flex;
  flex-direction: row;
  touch-action: pan-y;
  min-width: 0;
}
@media (min-width: 1280px) {
  section#right-sidebar {
    width: calc(100% - 160px);
  }
}
@media (1280px > width) {
  section#right-sidebar {
    margin-top: var(--navbar-height);
    min-height: calc(100dvh - var(--navbar-height));
  }
}
section#right-sidebar #right-sidebar-wrapper {
  width: 100%;
  max-width: 70em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.58;
  padding-left: 4em;
  padding-right: 4em;
  padding-top: 1em;
  padding-bottom: 1em;
  min-width: 0;
  min-height: 100vh;
}
@media (max-width: 500px) {
  section#right-sidebar #right-sidebar-wrapper {
    padding-left: 1em;
    padding-right: 1em;
  }
}
section#right-sidebar #right-sidebar-wrapper hr {
  border-color: var(--content-divider-color);
}
section#right-sidebar #right-sidebar-wrapper > .fill-loading-screen {
  display: none;
}
section#right-sidebar #right-sidebar-wrapper.bliss-request > article {
  display: none;
}
section#right-sidebar #right-sidebar-wrapper.bliss-request > .fill-loading-screen {
  display: flex;
}

aside#that-wasnt-very-cash-money-of-you-fixed-sidebar {
  width: var(--sidebar-ad-width);
  max-width: var(--sidebar-ad-width);
  min-width: var(--sidebar-ad-width);
  align-items: center;
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
}
@media (min-width: 1280px) {
  aside#that-wasnt-very-cash-money-of-you-fixed-sidebar {
    display: flex;
  }
}
aside#that-wasnt-very-cash-money-of-you-fixed-sidebar div#loritta-snug {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: flex-end;
}
@media (min-width: 1280px) {
  aside#that-wasnt-very-cash-money-of-you-fixed-sidebar div#loritta-snug {
    display: flex;
  }
}
aside#that-wasnt-very-cash-money-of-you-fixed-sidebar div#loritta-snug img {
  height: auto;
  width: 90%;
  cursor: pointer;
  animation: 4s ease-in-out infinite loritta-breathing-animation alternate;
  transform-origin: bottom;
}

aside#that-wasnt-very-cash-money-of-you-fixed-sidebar-reserved-space {
  width: var(--sidebar-ad-width);
  max-width: var(--sidebar-ad-width);
  min-width: var(--sidebar-ad-width);
  align-items: center;
  display: none;
  height: 100vh;
}
@media (min-width: 1280px) {
  aside#that-wasnt-very-cash-money-of-you-fixed-sidebar-reserved-space {
    display: flex;
  }
}

@keyframes loritta-breathing-animation {
  0% {
    transform: scaleX(100%) scaleY(95%);
  }
  100% {
    transform: scaleX(100%) scaleY(100%);
  }
}
.that-wasnt-very-cash-money-of-you-in-content {
  height: 90px;
}
@media (500px >= width) {
  .that-wasnt-very-cash-money-of-you-in-content {
    height: 250px;
  }
}

.field-wrappers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.field-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
}
.field-wrapper input {
  width: 100%;
}

.field-information-with-control {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: 8px;
  align-items: center;
}

.field-information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
.field-information .field-title {
  font-weight: 600;
  font-size: 1em;
}
.field-information .field-description {
  font-size: var(--description-font-size);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.validation {
  display: flex;
  gap: 0.25em;
  align-items: center;
  margin-top: 0.5em;
}
.validation.error {
  color: #d32f2f;
}
.validation.success {
  color: #2e7d32;
}
.validation .icon {
  width: 1em;
  height: 1em;
  display: flex;
  flex-shrink: 0;
}

.legal-footer {
  text-align: center;
}

.adsbygoogle[data-ad-status=unfilled] {
  background-color: rgba(0, 0, 0, 0.1);
}

.icon-with-text {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.icon-with-text .icon {
  display: flex;
  width: 1em;
  height: 1em;
  color: var(--accent-color);
}

.loritta-game-canvas {
  touch-action: none;
  cursor: inherit;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  pointer-events: none;
  width: 100dvw;
  height: 100dvh;
}

.choose-your-server {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
@media screen and (max-width: 1024px) {
  .choose-your-server {
    grid-template-columns: 1fr;
  }
}
.choose-your-server .favorite-guild-for-user-list-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: #feb529;
  transform: scale(1);
  transition: 0.2s ease-in;
}
.choose-your-server .favorite-guild-for-user-list-button.bliss-request {
  animation: favorite-guild-opacity-animation 2s linear infinite;
}
@starting-style {
  .choose-your-server .favorite-guild-for-user-list-button.guild-favorited {
    transform: scale(1.5);
  }
}
.choose-your-server .favorite-guild-for-user-list-button svg {
  width: 20px;
  height: 20px;
}

@keyframes favorite-guild-opacity-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.text-with-icon-wrapper {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.text-with-icon-wrapper .text-icon {
  height: 1em;
  flex-shrink: 0;
}

.disableable-section-wrapper.disabled {
  cursor: not-allowed;
}
.disableable-section-wrapper .disableable-section {
  transition: 0.25s;
}
.disableable-section-wrapper .disableable-section.disabled {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

.character-counter {
  font-size: 0.75em;
  margin-left: auto;
}

#no-server-found {
  text-align: center;
}

.configurable-channel-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1em;
  background-color: var(--inset-background-color);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
}

.simple-configurable-list-inset {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 1em;
  background-color: var(--inset-background-color);
  border: 1px solid var(--card-border-color);
  border-top-color: var(--card-border-highlight-color);
  border-radius: var(--nice-border-radius);
}
.simple-configurable-list-inset .entry {
  display: flex;
  align-items: center;
  gap: 1em;
}
.simple-configurable-list-inset .entry .content {
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.simple-image-with-text-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.simple-image-with-text-header img {
  width: 64px;
  height: 64px;
}
.simple-image-with-text-header img.round-corners {
  border-radius: 999999px;
}
.simple-image-with-text-header svg {
  width: 64px;
  height: 64px;
}

.controls-with-button {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}
.controls-with-button .inlined-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  white-space: pre-wrap;
  flex-grow: 1;
}
.controls-with-button .grow-input {
  flex-grow: 1;
}

.discord-server-name {
  word-wrap: anywhere;
}

.discord-server-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25%;
  overflow: hidden;
  color: white;
  width: var(--icon-width);
  height: var(--icon-height);
  position: relative;
  font-size: calc(var(--icon-width) / 2.5);
}
.discord-server-icon.use-discord-background {
  background-color: #35353A;
}
.discord-server-icon:after {
  border-radius: 25%;
  box-shadow: inset 0 2px 0 0 rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  height: 100%;
  width: var(--icon-height);
  position: absolute;
  top: 0;
}

.full-screen-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100vw;
  min-height: 100vh;
  background-color: var(--background-color);
  color: var(--content-text-color);
}

#ban-appeal-wrapper {
  background-color: var(--left-sidebar-background-color);
  color: var(--content-text-color);
  min-height: 100vh;
}
#ban-appeal-wrapper hr {
  border-color: var(--content-divider-color);
}
#ban-appeal-wrapper #ban-appeal-content {
  background-color: var(--background-color);
  border-left: 1px solid var(--card-border-color);
  border-right: 1px solid var(--card-border-color);
  min-height: 100vh;
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.58;
  padding-left: 4em;
  padding-right: 4em;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media (500px >= width) {
  #ban-appeal-wrapper #ban-appeal-content {
    padding-left: 1em;
    padding-right: 1em;
  }
}

.computer-description {
  display: block;
}
@media (1280px > width) {
  .computer-description {
    display: none;
  }
}

.mobile-description {
  display: none;
}
@media (1280px > width) {
  .mobile-description {
    display: block;
  }
}

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