@charset "UTF-8";
nav#left-sidebar > .entries .entry {
  color: inherit;
  text-decoration: none;
}

.discord-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--loritta-blue);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

lori-sidebar-wrapper {
  display: flex;
  flex-direction: row;
}

#mobile-left-sidebar {
  height: var(--navigation-bar-height);
  position: fixed;
  top: var(--navigation-bar-height);
  left: 0;
  width: 100%;
  background-color: var(--left-sidebar-background-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
  z-index: 998;
  display: flex;
  align-items: center;
}
@media (min-width: 1280px) {
  #mobile-left-sidebar {
    display: none;
  }
}

nav#left-sidebar {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: initial;
  z-index: 9;
  color: var(--content-text-color);
  background: var(--left-sidebar-background-color);
  top: calc(var(--navigation-bar-height) * 2);
  height: calc(100% - calc(var(--navigation-bar-height) * 2));
  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%;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
  transform: translate(0%);
}
nav#left-sidebar.is-closed {
  animation: toggle-sidebar-visibility 1s;
}
@media (min-width: 1280px) {
  nav#left-sidebar {
    top: var(--navigation-bar-height);
    transform: translate(0%);
    visibility: visible;
    height: calc(100vh - var(--navigation-bar-height));
    min-width: 350px;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 15px;
    position: sticky;
  }
}
nav#left-sidebar > .entries {
  padding-left: 1em;
  padding-right: 1em;
  height: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--loritta-blue) var(--left-sidebar-background-color);
}
nav#left-sidebar > .entries > .divider {
  width: 100%;
  border: 1px solid var(--divider-color);
}
nav#left-sidebar > .entries > .category {
  font-weight: 1000;
  color: var(--loritta-blue);
  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 img {
  border-radius: 100%;
  width: 160px;
  height: 160px;
  background-color: #c8c8c8;
}
nav#left-sidebar > .entries .entry {
  opacity: 0.8;
  display: flex;
  transition-duration: 0.1s;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
nav#left-sidebar > .entries .entry:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.03);
}
nav#left-sidebar > .entries .entry.selected {
  background-color: var(--loritta-blue);
  color: white;
  border-radius: 3px;
}
nav#left-sidebar > .entries .entry > .icon {
  width: 20px;
  height: 20px;
  display: block;
}
nav#left-sidebar > .entries .entry .new-feature {
  background-color: #da373c;
  border-radius: 3px;
  padding: 1px 3px 1px 5px;
  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(--loritta-blue);
  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(--loritta-blue);
  font-weight: 1000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
nav#left-sidebar > .user-info-wrapper {
  background: var(--user-info-wrapper-background-color);
  height: 60px;
}
nav#left-sidebar > .user-info-wrapper > .user-info {
  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;
}
nav#left-sidebar > .user-info-wrapper > .user-info > .user-tag > .name {
  font-weight: bold;
}
nav#left-sidebar > .user-info-wrapper > .user-info > .user-tag > .discriminator {
  opacity: 0.8;
  font-size: 0.75em;
}

section#right-sidebar {
  width: 100%;
  display: flex;
  flex-direction: row;
  overflow: clip;
}
@media (min-width: 1280px) {
  section#right-sidebar {
    width: calc(100% - 160px);
  }
}
@media (max-width: 1279px) {
  section#right-sidebar {
    margin-top: 50px;
    margin-left: 0;
  }
}
section#right-sidebar #right-sidebar-wrapper {
  width: 100%;
  max-width: 70em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.58;
  padding-left: 6em;
  padding-right: 6em;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media (max-width: 500px) {
  section#right-sidebar #right-sidebar-wrapper {
    padding-left: 1em;
    padding-right: 1em;
  }
}
section#right-sidebar #right-sidebar-wrapper hr {
  box-sizing: content-box;
  background: rgba(0, 0, 0, 0.05);
  border: 0;
  height: 1px;
}
section#right-sidebar #right-sidebar-wrapper .hero-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 64fr 36fr;
}
section#right-sidebar #right-sidebar-wrapper .hero-wrapper .hero-image {
  text-align: center;
  aspect-ratio: 16/12;
}
section#right-sidebar #right-sidebar-wrapper .hero-wrapper .hero-text {
  order: -1;
}
@media (max-width: 900px) {
  section#right-sidebar #right-sidebar-wrapper .hero-wrapper {
    text-align: center;
    grid-template-columns: 1fr;
  }
  section#right-sidebar #right-sidebar-wrapper .hero-wrapper .hero-text {
    order: 1;
  }
}
section#right-sidebar #right-sidebar-wrapper .hero-image {
  max-height: 100%;
  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%);
}
section#right-sidebar #right-sidebar-wrapper .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%);
}
section#right-sidebar #right-sidebar-wrapper .hero-web-animation > div {
  height: 100%;
}
section#right-sidebar #right-sidebar-wrapper .hero-web-animation svg {
  width: 100%;
  height: 100%;
}

aside#that-wasnt-very-cash-money-of-you {
  width: var(--sidebar-ad-width);
  max-width: var(--sidebar-ad-width);
  min-width: var(--sidebar-ad-width);
  align-items: center;
  display: none;
  position: sticky;
  right: 0;
  top: var(--navigation-bar-height);
  height: calc(100vh - var(--navigation-bar-height));
}
@media (min-width: 1280px) {
  aside#that-wasnt-very-cash-money-of-you {
    display: flex;
  }
}
aside#that-wasnt-very-cash-money-of-you aside#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 aside#loritta-snug {
    display: flex;
  }
}
aside#that-wasnt-very-cash-money-of-you aside#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-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-reserved-space {
    display: flex;
  }
}

.discord-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

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

.discord-button {
  color: white;
  font-weight: bold;
  border-radius: 5px;
  padding: 0.5em 1em;
  transition-duration: 0.25s;
  opacity: 1;
  background-color: #757575;
  border: 1px solid var(--soft-border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.discord-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.discord-button .htmx-discord-like-loading-button .loading-text-wrapper {
  display: none;
}
.discord-button .htmx-discord-like-loading-button .loading-text-wrapper img {
  height: 1em;
}
.discord-button .htmx-discord-like-loading-button.htmx-request div {
  display: none;
}
.discord-button .htmx-discord-like-loading-button.htmx-request .loading-text-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
}
.discord-button.htmx-discord-like-loading-button .loading-text-wrapper {
  display: none;
}
.discord-button.htmx-discord-like-loading-button .loading-text-wrapper img {
  height: 1em;
}
.discord-button.htmx-discord-like-loading-button.htmx-request {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.discord-button.htmx-discord-like-loading-button.htmx-request div {
  display: none;
}
.discord-button.htmx-discord-like-loading-button.htmx-request .loading-text-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
}
.discord-button:hover {
  background-color: #5c5c5c;
}
.discord-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.discord-button:disabled:hover {
  background-color: #5c5c5c;
}
.discord-button.primary {
  background-color: var(--loritta-blue);
}
.discord-button.primary:hover {
  background-color: #018ff3;
}
.discord-button.success {
  background-color: #298546;
}
.discord-button.success:hover {
  background-color: #1d5e31;
}
.discord-button.danger {
  background-color: #da373c;
}
.discord-button.danger:hover {
  background-color: #bb2327;
}
.discord-button.pink {
  background-color: #fe29a6;
}
.discord-button.pink:hover {
  background-color: #f3018f;
}
.discord-button.purple {
  background-color: #8d37ef;
}
.discord-button.purple:hover {
  background-color: #7312e1;
}
.discord-button.light-green {
  background-color: #37ef8d;
}
.discord-button.light-green:hover {
  background-color: #12e173;
}
.discord-button.no-background-light-text {
  background-color: initial;
  color: #ffffff;
}
.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;
}
.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);
}
.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);
}
.discord-button.no-background-theme-dependent-dark-text:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

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

.modal-wrapper .buttons-wrapper .discord-button.no-background {
  color: black;
}

body {
  margin: 0;
}

.has-rainbow-text {
  background: linear-gradient(to right, #6666ff, #0099ff, #00ff00, #ff3399, #6666ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 6s ease-in-out infinite;
  background-size: 400% 100%;
}

@keyframes rainbow_animation {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
}
table.fancy-table {
  border-spacing: 0;
}
table.fancy-table th {
  font-weight: 600;
  color: #29a6fe;
}
table.fancy-table th, table.fancy-table td {
  border-bottom: 1px solid #0000001a;
  padding: 10px;
}

.centered-text {
  text-align: center;
}

.left-aligned-text {
  text-align: left;
}

.right-aligned-text {
  text-align: right;
}

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

li::marker {
  color: #29a6fe;
  content: "•  ";
}

.discord-invite-wrapper {
  display: flex;
  flex-direction: column;
  background-color: #f2f3f5;
  border-radius: 3px;
  padding: 1em;
  gap: 0.5em;
  transition-duration: 1s;
  width: fit-content;
}
.dark .discord-invite-wrapper {
  background-color: #2f3136;
}
.discord-invite-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.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;
}
.discord-invite-wrapper .discord-server-details .discord-server-icon img {
  border-radius: 25%;
  width: 50px;
  height: 50px;
  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;
}
.discord-invite-wrapper .discord-server-details .discord-server-info .discord-server-description {
  font-size: 0.9em;
}
.discord-invite-wrapper .discord-server-details .discord-server-button {
  margin-left: auto;
  background-color: #3ba55d;
  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:hover {
  background-color: #2d7d47;
}

.support-invites-wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 75%;
  max-width: 60em;
  padding-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
  gap: 1em;
}
@media screen and (max-width: 800px) {
  .support-invites-wrapper {
    flex-direction: column;
  }
}
.support-invites-wrapper .support-invite-wrapper {
  display: flex;
  flex-direction: column;
  min-width: 10em;
  flex: 1;
}
.support-invites-wrapper .support-invite-wrapper .support-invite-content {
  line-height: 1.58;
  text-align: center;
}
.support-invites-wrapper .support-invite-wrapper .discord-support-invite-wrapper {
  display: flex;
  margin-top: auto;
  justify-content: center;
}

.contact-methods-wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 75%;
  max-width: 60em;
  padding-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
  gap: 1em;
}
@media screen and (max-width: 800px) {
  .contact-methods-wrapper {
    flex-direction: column;
  }
}
.contact-methods-wrapper .contact-method-wrapper {
  display: flex;
  flex-direction: column;
  min-width: 10em;
  flex: 1;
}
.contact-methods-wrapper .contact-method-wrapper .contact-method-content {
  line-height: 1.58;
  text-align: center;
}
.contact-methods-wrapper .contact-method-wrapper .contact-method-way {
  display: flex;
  margin-top: auto;
  justify-content: center;
}

#jumbotron {
  min-height: 100vh;
  background-image: url("../img/website_bg.png"), linear-gradient(#43b1ff, #067acc);
  animation: background-scroll 60s linear infinite;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
@keyframes arrow-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(10px);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes background-scroll {
  0% {
    background-position: 0px 0px, 0px 0px;
  }
  100% {
    background-position: 0px -1000px, 0px 0px;
  }
}
@keyframes loritta-breathing {
  0% {
    transform: scaleY(100%);
  }
  100% {
    transform: scaleY(98%);
  }
}
#jumbotron .bouncy-arrow {
  color: white;
  position: absolute;
  bottom: 0;
  right: 50%;
  font-size: 3.5em;
  animation: arrow-bounce 2s infinite;
  overflow: hidden;
}
#jumbotron .right-side-text {
  position: absolute;
  right: 3.5vw;
  transform: translateY(-50%);
  top: 50%;
  text-align: right;
}
@media screen and (max-width: 1280px) {
  #jumbotron .right-side-text {
    text-align: center;
    left: 0;
    right: 0;
  }
}
#jumbotron .right-side-text .buttons {
  text-align: center;
  margin-top: 2em;
  width: 100%;
  font-size: 1.25em;
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
#jumbotron .right-side-text .buttons .discord-button {
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  animation: 7s linear infinite forwards swing-button;
}
@keyframes swing-button {
  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;
  }
}
#jumbotron .right-side-text .buttons .discord-button.pink:hover {
  box-shadow: 0 0 15px #fe29a6, 0 0 15px #fe29a6, 0 0 15px #fe29a6;
}
#jumbotron .right-side-text .buttons .discord-button.light-green:hover {
  box-shadow: 0 0 15px #37ef8d, 0 0 15px #37ef8d, 0 0 15px #37ef8d;
}
#jumbotron .right-side-text .buttons .discord-button.purple:hover {
  box-shadow: 0 0 15px #8d37ef, 0 0 15px #8d37ef, 0 0 15px #8d37ef;
}
#jumbotron .right-side-text .buttons .add-me:hover .lori-happy {
  opacity: 1;
}
#jumbotron .right-side-text .buttons .lori-happy {
  opacity: 0;
  top: -112px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  transition: 0.6s;
}
#jumbotron .introduction {
  font-family: Pacifico, cursive;
  color: white;
  text-shadow: 0 0 25px #0000004d;
  line-height: 1.25;
}
@media screen and (max-width: 1280px) {
  #jumbotron .introduction {
    text-align: center;
    left: 0;
    right: 0;
  }
}
#jumbotron .introduction .my-name-is {
  font-size: 4em;
}
#jumbotron .introduction .loritta {
  font-size: 7.5em;
  color: #29d9fe;
}
#jumbotron .introduction .tagline {
  font-size: 2em;
}
#jumbotron #loritta-selfie {
  position: absolute;
  bottom: 0;
  left: 3.5vw;
  height: 100vh;
  z-index: 1;
  animation: loritta-breathing 3s infinite alternate;
  transform-origin: center bottom;
}
#jumbotron #loritta-selfie img {
  height: 100%;
  position: absolute;
}
@media screen and (max-width: 1280px) {
  #jumbotron #loritta-selfie {
    display: none;
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-left {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left;
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-right {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right;
}

.fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
}

.animated {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.reversed {
  animation-direction: reverse;
}
.animated.half-second {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.animated.duration-one-second {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.animated.duration-two-seconds {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.duration-three-seconds {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.delayed-one-second {
  animation-delay: 1s;
}
.animated.delayed-two-seconds {
  animation-delay: 2s;
}
.animated.delayed-three-seconds {
  animation-delay: 3s;
}

@-webkit-keyframes shake-animation {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(0px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(2px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.shake {
  -webkit-animation-name: shake-animation;
  -webkit-animation-duration: 0.5s;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  overflow: hidden;
}

.message-preview {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  /**** ./cleaned.css ***/
  /*** uncss> filename: discord-style-original.css ***/
  /* .clickable-3Ya1ho {
      cursor: pointer
  }&.background-opacity-high .messageGroupBlocked-2lRk_V,&.background-opacity-low .messageGroupBlocked-2lRk_V,&.background-opacity-medium .messageGroupBlocked-2lRk_V {
      background-color: rgba(54,57,63,.3);
      border-color: rgba(47,49,54,.2)
  }&.background-opacity-high .messageGroupBlocked-2lRk_V .messageGroupBlockedBtn-2PRkNr,&.background-opacity-low .messageGroupBlocked-2lRk_V .messageGroupBlockedBtn-2PRkNr,&.background-opacity-medium .messageGroupBlocked-2lRk_V .messageGroupBlockedBtn-2PRkNr {
      background-color: transparent;
      color: #f6f6f7
  }&.background-opacity-high .messageGroupBlocked-2lRk_V .messageGroupBlockedBtn-2PRkNr:hover,&.background-opacity-low .messageGroupBlocked-2lRk_V .messageGroupBlockedBtn-2PRkNr:hover,&.background-opacity-medium .messageGroupBlocked-2lRk_V .messageGroupBlockedBtn-2PRkNr:hover {
      background: rgba(54,57,63,.4)
  } */
  /* &.title-eQ0ZMf {
      color: var(--header-primary)
  } */
  /*# sourceMappingURL=0.47d5abbc41994adf9181.css.map*/
  margin: auto;
}
.message-preview .anchor-3Z-8Bb {
  color: var(--text-link);
  text-decoration: none;
}
.message-preview .anchorUnderlineOnHover-2ESHQB:hover {
  text-decoration: underline;
}
.message-preview .scrollbar-3dvm_9::-webkit-scrollbar-corner {
  border: none;
  background: none;
}
.message-preview .scrollbarGhostHairline-1mSOM1::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.message-preview .scrollbarGhostHairline-1mSOM1::-webkit-scrollbar-thumb {
  background-color: rgba(24, 25, 28, 0.6);
  border-radius: 2px;
  cursor: move;
}
.message-preview .scrollbarGhostHairline-1mSOM1::-webkit-scrollbar-track {
  background-color: transparent;
  border: none;
}
.message-preview .hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  border-radius: 4px;
  color: var(--header-secondary);
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}
.message-preview .hljs-selector-tag {
  color: #859900;
}
.message-preview .hljs-number {
  color: #2aa198;
}
.message-preview .hljs-type {
  color: #b58900;
}
.message-preview .hljs-selector-attr {
  color: #cb4b16;
}
.message-preview .emoji {
  -o-object-fit: contain;
  object-fit: contain;
  width: 1.375em;
  height: 1.375em;
  vertical-align: bottom;
}
.message-preview a, .message-preview body, .message-preview code, .message-preview div, .message-preview em, .message-preview h2, .message-preview html, .message-preview img, .message-preview pre, .message-preview s, .message-preview span, .message-preview strong {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
.message-preview a {
  color: var(--text-link);
  text-decoration: none;
  cursor: pointer;
}
.message-preview a img {
  border: none;
}
.message-preview body {
  line-height: 1;
  margin: 0;
  padding: 0;
  font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: transparent;
}
.message-preview ::-webkit-input-placeholder {
  font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.message-preview ::-moz-placeholder {
  font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.message-preview :-ms-input-placeholder {
  font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400;
}
@media (-webkit-max-device-pixel-ratio: 1) {
  .message-preview .theme-light ::-webkit-input-placeholder {
    font-weight: 500;
  }
  .message-preview .theme-light ::-moz-placeholder {
    font-weight: 500;
  }
  .message-preview .theme-light :-ms-input-placeholder {
    font-weight: 500;
  }
}
.message-preview strong {
  font-weight: 600;
}
.message-preview code {
  font-family: Consolas, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Monaco, Courier New, Courier, monospace;
  font-size: 14px;
  line-height: 16px;
}
@font-face {
  .message-preview {
    font-family: Whitney;
    font-weight: 300;
    src: url(https://loritta.website/assets/6c6374bad0b0b6d204d8d6dc4a18d820.woff) format("woff");
  }
}
@font-face {
  .message-preview {
    font-family: Whitney;
    font-weight: 400;
    src: url(https://loritta.website/assets/e8acd7d9bf6207f99350ca9f9e23b168.woff) format("woff");
  }
}
@font-face {
  .message-preview {
    font-family: Whitney;
    font-weight: 500;
    src: url(https://loritta.website/assets/3bdef1251a424500c1b3a78dea9b7e57.woff) format("woff");
  }
}
@font-face {
  .message-preview {
    font-family: Whitney;
    font-weight: 600;
    src: url(https://loritta.website/assets/be0060dafb7a0e31d2a1ca17c0708636.woff) format("woff");
  }
}
@font-face {
  .message-preview {
    font-family: Whitney;
    font-weight: 700;
    src: url(https://loritta.website/assets/8e12fb4f14d9c4592eb8ec9f22337b04.woff) format("woff");
  }
}
.message-preview .theme-dark {
  --header-primary: #fff;
  --header-secondary: #b9bbbe;
  --text-normal: #dcddde;
  --text-muted: #72767d;
  --text-link: #00b0f4;
  --channels-default: #8e9297;
  --interactive-normal: #b9bbbe;
  --interactive-hover: #dcddde;
  --interactive-active: #fff;
  --interactive-muted: #4f545c;
  --background-primary: #36393f;
  --background-secondary: #2f3136;
  --background-secondary-alt: #292b2f;
  --background-tertiary: #202225;
  --background-accent: #4f545c;
  --background-floating: #18191c;
  --background-mobile-primary: #36393f;
  --background-mobile-secondary: #2f3136;
  --background-modifier-hover: rgba(79,84,92,0.16);
  --background-modifier-active: rgba(79,84,92,0.24);
  --background-modifier-selected: rgba(79,84,92,0.32);
  --background-modifier-accent: hsla(0,0%,100%,0.06);
  --background-mentioned: rgba(250,166,26,0.05);
  --background-mentioned-hover: rgba(250,166,26,0.08);
  --background-message-hover: rgba(4,4,5,0.07);
  --background-help-warning: rgba(250,166,26,0.1);
  --background-help-info: rgba(0,176,244,0.1);
  --scrollbar-thin-thumb: #202225;
  --scrollbar-thin-track: transparent;
  --scrollbar-auto-thumb: #202225;
  --scrollbar-auto-track: #2e3338;
  --scrollbar-auto-scrollbar-color-thumb: #202225;
  --scrollbar-auto-scrollbar-color-track: #2f3136;
  --elevation-stroke: 0 0 0 1px rgba(4,4,5,0.15);
  --elevation-low: 0 1px 0 rgba(4,4,5,0.2),0 1.5px 0 rgba(6,6,7,0.05),0 2px 0 rgba(4,4,5,0.05);
  --elevation-medium: 0 4px 4px rgba(0,0,0,0.16);
  --elevation-high: 0 8px 16px rgba(0,0,0,0.24);
  --logo-primary: #fff;
  --focus-primary: #00b0f4;
  --radio-group-dot-foreground: #8ea1e1;
  --guild-header-text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  --channeltextarea-background: #40444b;
  --activity-card-background: #202225;
  --textbox-markdown-syntax: #8e9297;
  --deprecated-card-bg: rgba(32,34,37,0.6);
  --deprecated-card-editable-bg: rgba(32,34,37,0.3);
  --deprecated-store-bg: #36393f;
  --deprecated-quickswitcher-input-background: #72767d;
  --deprecated-quickswitcher-input-placeholder: hsla(0,0%,100%,0.3);
  --deprecated-text-input-bg: rgba(0,0,0,0.1);
  --deprecated-text-input-border: rgba(0,0,0,0.3);
  --deprecated-text-input-border-hover: #040405;
  --deprecated-text-input-border-disabled: #202225;
  --deprecated-text-input-prefix: #dcddde ;
}
.message-preview .theme-light {
  --header-primary: #060607;
  --header-secondary: #4f5660;
  --text-normal: #2e3338;
  --text-muted: #747f8d;
  --text-link: #0067e0;
  --channels-default: #6a7480;
  --interactive-normal: #4f5660;
  --interactive-hover: #2e3338;
  --interactive-active: #060607;
  --interactive-muted: #c7ccd1;
  --background-primary: #fff;
  --background-secondary: #f2f3f5;
  --background-secondary-alt: #ebedef;
  --background-tertiary: #e3e5e8;
  --background-accent: #747f8d;
  --background-floating: #fff;
  --background-mobile-primary: #f8f9f9;
  --background-mobile-secondary: #fff;
  --background-modifier-hover: rgba(116,127,141,0.08);
  --background-modifier-active: rgba(116,127,141,0.16);
  --background-modifier-selected: rgba(116,127,141,0.24);
  --background-modifier-accent: rgba(6,6,7,0.08);
  --background-mentioned: rgba(250,166,26,0.1);
  --background-mentioned-hover: rgba(250,166,26,0.2);
  --background-message-hover: rgba(6,6,7,0.02);
  --background-help-warning: rgba(250,166,26,0.1);
  --background-help-info: rgba(0,103,224,0.1);
  --scrollbar-thin-thumb: rgba(79,84,92,0.3);
  --scrollbar-thin-track: transparent;
  --scrollbar-auto-thumb: #ccc;
  --scrollbar-auto-track: #f2f2f2;
  --scrollbar-auto-scrollbar-color-thumb: #e3e5e8;
  --scrollbar-auto-scrollbar-color-track: #f2f3f5;
  --elevation-stroke: 0 0 0 1px rgba(6,6,7,0.08);
  --elevation-low: 0 1px 0 rgba(6,6,7,0.1),0 1.5px 0 rgba(6,6,7,0.025),0 2px 0 rgba(6,6,7,0.025);
  --elevation-medium: 0 4px 4px rgba(0,0,0,0.08);
  --elevation-high: 0 8px 16px rgba(0,0,0,0.16);
  --logo-primary: #7289da;
  --focus-primary: #00b0f4;
  --radio-group-dot-foreground: #4e5d94;
  --guild-header-text-shadow: 0 1px 1px hsla(0,0%,100%,0.4);
  --channeltextarea-background: #ebedef;
  --activity-card-background: #fff;
  --textbox-markdown-syntax: #6a7480;
  --deprecated-card-bg: #f8f9f9;
  --deprecated-card-editable-bg: rgba(246,246,247,0.6);
  --deprecated-store-bg: #f8f9f9;
  --deprecated-quickswitcher-input-background: #fff;
  --deprecated-quickswitcher-input-placeholder: rgba(79,84,92,0.3);
  --deprecated-text-input-bg: rgba(79,84,92,0.02);
  --deprecated-text-input-border: rgba(79,84,92,0.3);
  --deprecated-text-input-border-hover: #b9bbbe;
  --deprecated-text-input-border-disabled: #dcddde;
  --deprecated-text-input-prefix: #b9bbbe ;
}
.message-preview body, .message-preview html {
  height: 100%;
  width: 100%;
}
.message-preview body {
  background-color: var(--background-tertiary);
  text-rendering: optimizeLegibility;
}
.message-preview ::-webkit-input-placeholder, .message-preview body {
  font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
.message-preview ::-moz-placeholder, .message-preview body {
  font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
.message-preview :-ms-input-placeholder, .message-preview body {
  font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
.message-preview body {
  font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
.message-preview a, .message-preview div, .message-preview span, .message-preview strong {
  outline: 0;
}
.message-preview img[alt] {
  text-indent: -9999px;
}
.message-preview .wrapper-2a6GCs {
  position: relative;
  word-wrap: break-word;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 16px;
  min-height: 1.375rem;
}
.message-preview .cozy-3raOZG.wrapper-2a6GCs {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.message-preview .cozy-3raOZG.wrapper-2a6GCs {
  padding-left: 72px;
}
.message-preview .repliedMessage-VokQwo {
  --reply-spacing: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--header-secondary);
  font-size: 0.875rem;
  line-height: 1.125rem;
  position: relative;
  white-space: pre;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.message-preview .cozy-3raOZG .repliedMessage-VokQwo {
  margin-bottom: var(--reply-spacing);
}
.message-preview .cozy-3raOZG .repliedMessage-VokQwo:before {
  --avatar-size: 40px;
  --gutter: 16px ;
}
.message-preview .repliedMessage-VokQwo:before {
  --spine-width: 2px;
  content: "";
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 50%;
  right: 100%;
  bottom: 0;
  left: calc(-1*(var(--avatar-size)/2 + var(--gutter)));
  margin-right: var(--reply-spacing);
  margin-top: calc(-1*var(--spine-width)/2);
  margin-left: calc(-1*var(--spine-width)/2);
  margin-bottom: calc(.125rem - 4px);
  border-left: var(--spine-width) solid var(--background-accent);
  border-bottom: 0 solid var(--background-accent);
  border-right: 0 solid var(--background-accent);
  border-top: var(--spine-width) solid var(--background-accent);
  border-top-left-radius: 6px;
}
.message-preview .replyAvatar-1K9Wmr {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 0.25rem;
}
.message-preview .repliedMessage-VokQwo .username-1A8OIy {
  font-size: inherit;
  line-height: inherit;
  margin-right: 0.25rem;
  opacity: 0.64;
}
.message-preview .repliedTextPreview-2NBljf {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
.message-preview .repliedTextPreview-2NBljf.clickable-1bVtEA {
  cursor: pointer;
}
.message-preview .repliedTextPreview-2NBljf.clickable-1bVtEA:hover {
  color: var(--header-primary);
}
.message-preview .repliedMessage-VokQwo .repliedTextPreview-2NBljf .repliedTextContent-1R3vnK {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  white-space: pre;
  text-overflow: ellipsis;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.message-preview .repliedTextPlaceholder-dmN7D1 {
  font-style: italic;
}
.message-preview .repliedTextContentIcon-1ivTae {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-left: 6px;
}
.message-preview .cozy-3raOZG .contents-2mQqc9 {
  position: static;
  margin-left: 0;
  padding-left: 0;
  text-indent: 0;
}
.message-preview .cozy-3raOZG .header-23xsNx {
  display: block;
  position: relative;
  line-height: 1.375rem;
  min-height: 1.375rem;
  color: var(--text-muted);
  white-space: break-spaces;
  word-wrap: pre-wrap;
}
.message-preview .zalgo-jN1Ica.cozy-3raOZG .header-23xsNx {
  overflow: hidden;
}
.message-preview .buttonContainer-DHceWr {
  position: absolute;
  top: 0;
  right: 0;
}
.message-preview .avatar-1BDn8e {
  position: absolute;
  left: 16px;
  margin-top: calc(4px - .125rem);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  pointer-events: none;
  z-index: 1;
}
.message-preview .avatar-1BDn8e.clickable-1bVtEA {
  pointer-events: auto;
}
.message-preview .avatar-1BDn8e.clickable-1bVtEA:active {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.message-preview .timestamp-3ZCmNB {
  display: inline-block;
  height: 1.25rem;
  cursor: default;
  pointer-events: none;
  font-weight: 500;
}
.message-preview .timestamp-3ZCmNB.latin12CompactTimeStamp-38a8OU {
  width: 2.25rem;
}
.message-preview .cozy-3raOZG .timestamp-3ZCmNB {
  font-size: 0.75rem;
  line-height: 1.375rem;
  color: var(--text-muted);
  vertical-align: baseline;
  margin-left: 0.25rem;
}
.message-preview .cozy-3raOZG .timestamp-3ZCmNB.alt-1uNpEt {
  text-align: right;
  font-size: 0.6875rem;
  line-height: 1.375rem;
  margin-right: 0.25rem;
  color: var(--text-muted);
  text-indent: 0;
}
.message-preview .cozy-3raOZG .timestamp-3ZCmNB.alt-1uNpEt {
  position: absolute;
  left: 0;
  height: 1.375rem;
  line-height: 1.375rem;
  width: 56px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: right;
}
.message-preview .timestampVisibleOnHover-2bQeI4 {
  opacity: 0;
}
.message-preview .username-1A8OIy {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: var(--header-primary);
  display: inline;
  vertical-align: baseline;
  position: relative;
}
.message-preview .cozy-3raOZG .headerText-3Uvj1Y {
  margin-right: 0.25rem;
}
.message-preview .username-1A8OIy.clickable-1bVtEA:hover {
  cursor: pointer;
  text-decoration: underline;
}
@media (-webkit-max-device-pixel-ratio: 1) {
  .message-preview .theme-light .username-1A8OIy {
    font-weight: 600;
  }
}
.message-preview .botTag-1un5a6 {
  position: relative;
  top: 0.1rem;
}
.message-preview .botTagCozy-1fFsZk {
  margin-left: 0.25rem;
}
.message-preview .separator-2nZzUB {
  position: absolute;
  opacity: 0;
  width: 0;
  display: inline-block;
  font-style: normal;
}
.message-preview .messageContent-2qWWxC {
  text-indent: 0;
}
.message-preview .zalgo-jN1Ica .messageContent-2qWWxC {
  overflow: hidden;
}
.message-preview .messageContent-2qWWxC:empty {
  display: none;
}
.message-preview .cozy-3raOZG .messageContent-2qWWxC {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  margin-left: -72px;
  padding-left: 72px;
}
.message-preview .mention {
  border-radius: 3px;
  padding: 0 2px;
}
.message-preview .botTag-2WPJ74 {
  font-size: 0.625rem;
  text-transform: uppercase;
  vertical-align: top;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-indent: 0;
}
.message-preview .rem-2m9HGf.botTag-2WPJ74 {
  height: 0.9375rem;
  padding: 0 0.275rem;
  margin-top: 0.075em;
  border-radius: 0.1875rem;
}
.message-preview .botTagRegular-2HEhHi {
  background: #7289da;
  color: #fff;
}
.message-preview .botTagVerified-1klIIt {
  display: inline-block;
}
.message-preview .rem-2m9HGf .botTagVerified-1klIIt {
  width: 0.9375rem;
  height: 0.9375rem;
  margin-left: -0.25rem;
}
.message-preview .botText-1526X_ {
  position: relative;
  font-weight: 500;
}
.message-preview .rem-2m9HGf .botText-1526X_ {
  line-height: 0.9375rem;
}
.message-preview .imageWrapper-2p5ogY {
  display: block;
  position: relative;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  overflow: hidden;
  border-radius: 3px;
}
.message-preview .imageWrapper-2p5ogY img {
  position: absolute;
}
.message-preview .imageZoom-1n-ADA {
  cursor: nesw-resize;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.message-preview .emoji {
  -o-object-fit: contain;
  object-fit: contain;
  width: 1.375em;
  height: 1.375em;
  vertical-align: bottom;
}
.message-preview .wrapper-3WhCwL {
  border-radius: 3px;
  padding: 0 2px;
  font-weight: 500;
  unicode-bidi: -moz-plaintext;
  unicode-bidi: plaintext;
  color: #7289da;
  background: rgba(114, 137, 218, 0.1);
  position: relative;
}
.message-preview .interactive {
  -webkit-transition: background-color 50ms ease-out, color 50ms ease-out;
  transition: background-color 50ms ease-out, color 50ms ease-out;
  cursor: pointer;
}
.message-preview .interactive:hover {
  color: #fff;
  background-color: #7289da;
}
.message-preview .theme-dark .spoilerContainer-331r0R.hidden-HHr2R9:not(:focus) {
  -webkit-box-shadow: 0.5px 0.5px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0.5px 0.5px 1px 1px rgba(0, 0, 0, 0.1);
}
.message-preview .theme-light .spoilerContainer-331r0R.hidden-HHr2R9:not(:focus) {
  -webkit-box-shadow: 0.5px 0.5px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0.5px 0.5px 1px 1px rgba(0, 0, 0, 0.1);
}
.message-preview .hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  border-radius: 4px;
  color: var(--header-secondary);
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}
.message-preview .hljs-selector-tag {
  color: #859900;
}
.message-preview .hljs-number {
  color: #2aa198;
}
.message-preview .hljs-type {
  color: #b58900;
}
.message-preview .hljs-selector-attr {
  color: #cb4b16;
}
.message-preview .markup-2BOw-j {
  font-size: 1rem;
  line-height: 1.375rem;
  white-space: pre-wrap;
  white-space: break-spaces;
  word-wrap: break-word;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  color: var(--text-normal);
  font-weight: 400;
}
.message-preview .markup-2BOw-j a {
  color: var(--text-link);
  word-break: break-word;
  text-decoration: none;
  cursor: pointer;
}
.message-preview .markup-2BOw-j a:hover {
  text-decoration: underline;
}
.message-preview .markup-2BOw-j strong {
  font-weight: 700;
}
.message-preview .markup-2BOw-j em {
  font-style: italic;
}
.message-preview .markup-2BOw-j pre {
  border-radius: 4px;
  padding: 0;
  font-family: Consolas, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Monaco, Courier New, Courier, monospace;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 6px;
  white-space: pre-wrap;
  background-clip: border-box;
}
.message-preview .markup-2BOw-j pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 90%;
}
.message-preview .markup-2BOw-j code {
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-indent: 0;
  white-space: pre-wrap;
  scrollbar-width: thin;
  scrollbar-color: var(--background-tertiary) var(--background-secondary);
  background: var(--background-secondary);
  border: 1px solid var(--background-tertiary);
}
.message-preview .markup-2BOw-j code.inline {
  width: auto;
  height: auto;
  padding: 0.2em;
  margin: -0.2em 0;
  border-radius: 3px;
  font-size: 85%;
  font-family: Consolas, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Monaco, Courier New, Courier, monospace;
  text-indent: 0;
  border: none;
  white-space: pre-wrap;
}
@media (-webkit-max-device-pixel-ratio: 1) {
  .message-preview .theme-light .markup-2BOw-j {
    font-weight: 500;
  }
}
.message-preview .embed-IeVjo6 {
  position: relative;
  display: grid;
  max-width: 520px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.message-preview .embed-IeVjo6 .emoji {
  width: 18px;
  height: 18px;
}
.message-preview .embed-IeVjo6 pre {
  max-width: 100%;
  border: none;
}
.message-preview .embed-IeVjo6 code {
  border: none;
  background: var(--background-tertiary);
  scrollbar-color: var(--background-secondary) var(--background-tertiary);
}
.message-preview .embedFull-2tM8-- {
  border-left: 4px solid var(--background-tertiary);
  background: var(--background-secondary);
}
.message-preview .embedAuthorName-3mnTWj, .message-preview .embedAuthorNameLink-1gVryT, .message-preview .embedDescription-1Cuq9a, .message-preview .embedFieldName-NFrena, .message-preview .embedFieldValue-nELq2s, .message-preview .embedFooterText-28V_Wb, .message-preview .embedLink-1G1K1D, .message-preview .embedTitle-3OXDkz, .message-preview .embedTitleLink-1Zla9e {
  unicode-bidi: -moz-plaintext;
  unicode-bidi: plaintext;
  text-align: left;
}
.message-preview .grid-1nZz7S {
  overflow: hidden;
  padding: 0.5rem 1rem 1rem 0.75rem;
  display: inline-grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
.message-preview .grid-1nZz7S.hasThumbnail-3FJf1w {
  grid-template-columns: auto -webkit-min-content;
  grid-template-columns: auto min-content;
}
.message-preview .embedMargin-UO5XwE {
  margin-top: 8px;
}
.message-preview .embedLink-1G1K1D {
  text-decoration: none;
  cursor: pointer;
}
.message-preview .embedLink-1G1K1D:hover {
  text-decoration: underline;
}
.message-preview .embedSuppressButton-1FonMn {
  opacity: 0;
  position: absolute;
  top: -2px;
  right: -20px;
  cursor: pointer;
  padding: 2px;
  color: var(--interactive-normal);
}
.message-preview .embed-IeVjo6:focus-within .embedSuppressButton-1FonMn, .message-preview .embed-IeVjo6:hover .embedSuppressButton-1FonMn {
  opacity: 1;
}
.message-preview .embedSuppressButton-1FonMn:hover {
  color: var(--interactive-hover);
}
.message-preview .embedAuthor-3l5luH {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column: 1/1;
}
.message-preview .embedAuthorName-3mnTWj {
  font-size: 0.875rem;
  font-weight: 600;
}
@media (-webkit-max-device-pixel-ratio: 1) {
  .message-preview .theme-light .embedAuthorName-3mnTWj {
    font-weight: 500;
  }
}
.message-preview .embed-IeVjo6 .embedAuthorNameLink-1gVryT {
  color: var(--header-primary);
}
.message-preview .embedAuthorIcon--1zR3L {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
}
.message-preview .embedTitle-3OXDkz {
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  grid-column: 1/1;
}
.message-preview .embedDescription-1Cuq9a {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  white-space: pre-line;
  grid-column: 1/1;
}
@media (-webkit-max-device-pixel-ratio: 1) {
  .message-preview .theme-light .embedDescription-1Cuq9a {
    font-weight: 500;
  }
}
.message-preview .embedImage-2W1cML, .message-preview .embedThumbnail-2Y84-K {
  display: block;
  -o-object-fit: fill;
  object-fit: fill;
}
.message-preview .embedImage-2W1cML img, .message-preview .embedThumbnail-2Y84-K img {
  display: block;
  border-radius: 4px;
}
.message-preview .embedThumbnail-2Y84-K {
  grid-row: 1/8;
  grid-column: 2/2;
  margin-left: 16px;
  margin-top: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  justify-self: end;
}
.message-preview .embedFooter-3yVop- {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-row: auto/auto;
  grid-column: 1/1;
}
.message-preview .hasThumbnail-3FJf1w .embedFooter-3yVop- {
  grid-column: 1/3;
}
.message-preview .embedFooterText-28V_Wb {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  color: var(--text-normal);
}
@media (-webkit-max-device-pixel-ratio: 1) {
  .message-preview .theme-light .embedFooterText-28V_Wb {
    font-weight: 500;
  }
}
.message-preview .embedFooterSeparator-3klTIQ {
  font-weight: 500;
  color: var(--text-normal);
  display: inline-block;
  margin: 0 4px;
}
.message-preview .embedFooterIcon-239O1f {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
}
.message-preview .embedFields-2IPs5Z {
  display: grid;
  grid-column: 1/1;
  margin-top: 8px;
  grid-gap: 8px;
}
.message-preview .embedField-1v-Pnh {
  font-weight: 400;
}
.message-preview .embedField-1v-Pnh, .message-preview .embedFieldName-NFrena {
  font-size: 0.875rem;
  line-height: 1.125rem;
  min-width: 0;
}
.message-preview .embedFieldName-NFrena {
  font-weight: 600;
  margin-bottom: 2px;
}
.message-preview .embedFieldValue-nELq2s {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  white-space: pre-line;
  min-width: 0;
}
.message-preview .embedMedia-1guQoW {
  grid-column: 1/1;
  border-radius: 4px;
  contain: paint;
}
.message-preview .hasThumbnail-3FJf1w .embedMedia-1guQoW {
  grid-column: 1/3;
}
.message-preview .embedFull-2tM8-- .embedMedia-1guQoW {
  margin-top: 16px;
}
@media (-webkit-max-device-pixel-ratio: 1) {
  .message-preview .theme-light .embedFieldName-NFrena {
    font-weight: 600;
  }
}
@media (-webkit-max-device-pixel-ratio: 1) {
  .message-preview .theme-light .embedFieldValue-nELq2s {
    font-weight: 400;
  }
}
.message-preview .embedDescription-1Cuq9a, .message-preview .embedFieldValue-nELq2s {
  color: var(--text-normal);
}
.message-preview .embedAuthorName-3mnTWj, .message-preview .embedFieldName-NFrena, .message-preview .embedTitle-3OXDkz {
  color: var(--header-primary);
}
.message-preview .embedAuthor-3l5luH, .message-preview .embedDescription-1Cuq9a, .message-preview .embedFields-2IPs5Z, .message-preview .embedFooter-3yVop-, .message-preview .embedMedia-1guQoW, .message-preview .embedTitle-3OXDkz {
  min-width: 0;
}
.message-preview .modalContent-1iyOR2::-webkit-scrollbar-track-piece:start {
  margin-top: 4px;
}
.message-preview .modalContent-1iyOR2::-webkit-scrollbar-track-piece:end {
  margin-bottom: 4px;
}
.message-preview .reactions-12N0jA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -0.25rem;
  padding-bottom: 0.125rem;
}
.message-preview .icon-2uw6mp, .message-preview .reactionBtn-3N03Zj {
  width: 1rem;
  height: 1rem;
}
.message-preview .reactionBtn-3N03Zj {
  cursor: pointer;
  visibility: hidden;
  color: var(--interactive-normal);
}
.message-preview .reactionBtn-3N03Zj:hover .icon-2uw6mp {
  color: var(--interactive-hover);
}
.message-preview .reactionBtn-3N03Zj:active .icon-2uw6mp {
  color: var(--interactive-active);
}
.message-preview .reactions-12N0jA:hover .reactionBtn-3N03Zj {
  visibility: visible;
}
.message-preview .reaction-1hd86g {
  border-radius: 0.25rem;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.125rem;
  margin-bottom: 0.125rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.1s ease;
  transition: background-color 0.1s ease;
  background: var(--background-modifier-accent);
}
.message-preview .reaction-1hd86g .emoji {
  width: 1rem;
  height: 1rem;
  margin: 0.125rem 0;
  min-width: auto;
  min-height: auto;
}
.message-preview .reactionInner-15NvIl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.375rem;
}
.message-preview .reactionCount-2mvXRV {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 0.375rem;
  text-align: center;
  color: var(--text-muted);
}
.message-preview .reaction-1hd86g:hover .reactionCount-2mvXRV {
  color: var(--interactive-hover);
}
.message-preview .container-1ov-mD {
  display: grid;
  grid-auto-flow: row;
  grid-row-gap: 0.25rem;
  text-indent: 0;
  min-height: 0;
  min-width: 0;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  position: relative;
}
.message-preview .container-1ov-mD:empty {
  display: none;
}
.message-preview .container-1ov-mD > * {
  justify-self: start;
  -ms-flex-item-align: start;
  align-self: start;
}
.message-preview .mentioned-xhSam7 {
  position: relative;
  background-color: var(--background-mentioned);
}
.message-preview .mentioned-xhSam7:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  pointer-events: none;
  width: 2px;
}
.message-preview .mentioned-xhSam7:before {
  background-color: #faa61a;
}
.message-preview .message-2qnXI6 {
  padding-right: 48px !important;
}
.message-preview .buttons-cl5qTG {
  opacity: 0;
  pointer-events: none;
}
.message-preview .cozyMessage-3V1Y8y.groupStart-23k01U {
  min-height: 2.75rem;
}
.message-preview .theme-dark .mentioned-xhSam7 .mention, .message-preview .theme-light .mentioned-xhSam7 .mention {
  border-radius: 0;
  padding: 0;
  background-color: transparent !important;
}
.message-preview .theme-dark .mentioned-xhSam7 .mention.interactive:hover, .message-preview .theme-light .mentioned-xhSam7 .mention.interactive:hover {
  color: #7289da;
  text-decoration: underline;
}
.message-preview strong {
  font-weight: 600;
}
.message-preview .content-RXzE-X::-webkit-scrollbar-track-piece:start {
  margin-top: 6px;
}
.message-preview .content-RXzE-X::-webkit-scrollbar-track-piece:end {
  margin-bottom: 6px;
}
.message-preview .wrapper-2aW0bm {
  background-color: var(--background-primary);
  -webkit-box-shadow: var(--elevation-stroke);
  box-shadow: var(--elevation-stroke);
  display: grid;
  grid-auto-flow: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 32px;
  border-radius: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: -webkit-box-shadow 0.1s ease-out;
  transition: -webkit-box-shadow 0.1s ease-out;
  transition: box-shadow 0.1s ease-out;
  transition: box-shadow 0.1s ease-out, -webkit-box-shadow 0.1s ease-out;
  position: relative;
  overflow: hidden;
}
.message-preview .button-1ZiXG9 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 24px;
  padding: 4px;
  min-width: 24px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: var(--interactive-normal);
  cursor: pointer;
  position: relative;
}
.message-preview .button-1ZiXG9:hover {
  color: var(--interactive-hover);
  background-color: var(--background-modifier-hover);
}
.message-preview .button-1ZiXG9:active {
  padding-top: 5px;
  padding-bottom: 3px;
  color: var(--interactive-active);
  background-color: var(--background-modifier-active);
}
.message-preview .container-3npvBV {
  position: absolute;
  right: 0;
  z-index: 1;
  top: -25px;
  padding: 0 14px 0 32px;
}
.message-preview .isHeader-2dII4U {
  top: -16px;
}
.message-preview .icon-3Gkjwa {
  width: 20px;
  height: 20px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.message-preview .btn-1PnLxm.btnPrimary-1jluZW:hover:not(:disabled) {
  background-color: #4e5d94;
}
.message-preview .grid-1nZz7S {
  overflow: initial;
}
.message-preview p {
  padding: 0;
  margin: 0;
}
.message-preview.theme-dark {
  --header-primary: #fff;
  --header-secondary: #b9bbbe;
  --text-normal: #dcddde;
  --text-muted: #72767d;
  --text-link: #00b0f4;
  --channels-default: #8e9297;
  --interactive-normal: #b9bbbe;
  --interactive-hover: #dcddde;
  --interactive-active: #fff;
  --interactive-muted: #4f545c;
  --background-primary: #36393f;
  --background-secondary: #2f3136;
  --background-secondary-alt: #292b2f;
  --background-tertiary: #202225;
  --background-accent: #4f545c;
  --background-floating: #18191c;
  --background-mobile-primary: #36393f;
  --background-mobile-secondary: #2f3136;
  --background-modifier-hover: rgba(79,84,92,0.16);
  --background-modifier-active: rgba(79,84,92,0.24);
  --background-modifier-selected: rgba(79,84,92,0.32);
  --background-modifier-accent: hsla(0,0%,100%,0.06);
  --background-mentioned: rgba(250,166,26,0.05);
  --background-mentioned-hover: rgba(250,166,26,0.08);
  --background-message-hover: rgba(4,4,5,0.07);
  --background-help-warning: rgba(250,166,26,0.1);
  --background-help-info: rgba(0,176,244,0.1);
  --scrollbar-thin-thumb: #202225;
  --scrollbar-thin-track: transparent;
  --scrollbar-auto-thumb: #202225;
  --scrollbar-auto-track: #2e3338;
  --scrollbar-auto-scrollbar-color-thumb: #202225;
  --scrollbar-auto-scrollbar-color-track: #2f3136;
  --elevation-stroke: 0 0 0 1px rgba(4,4,5,0.15);
  --elevation-low: 0 1px 0 rgba(4,4,5,0.2),0 1.5px 0 rgba(6,6,7,0.05),0 2px 0 rgba(4,4,5,0.05);
  --elevation-medium: 0 4px 4px rgba(0,0,0,0.16);
  --elevation-high: 0 8px 16px rgba(0,0,0,0.24);
  --logo-primary: #fff;
  --focus-primary: #00b0f4;
  --radio-group-dot-foreground: #8ea1e1;
  --guild-header-text-shadow: 0 1px 1px rgba(0,0,0,0.4);
  --channeltextarea-background: #40444b;
  --activity-card-background: #202225;
  --textbox-markdown-syntax: #8e9297;
  --deprecated-card-bg: rgba(32,34,37,0.6);
  --deprecated-card-editable-bg: rgba(32,34,37,0.3);
  --deprecated-store-bg: #36393f;
  --deprecated-quickswitcher-input-background: #72767d;
  --deprecated-quickswitcher-input-placeholder: hsla(0,0%,100%,0.3);
  --deprecated-text-input-bg: rgba(0,0,0,0.1);
  --deprecated-text-input-border: rgba(0,0,0,0.3);
  --deprecated-text-input-border-hover: #040405;
  --deprecated-text-input-border-disabled: #202225;
  --deprecated-text-input-prefix: #dcddde ;
}
.message-preview.theme-light {
  --header-primary: #060607;
  --header-secondary: #4f5660;
  --text-normal: #2e3338;
  --text-muted: #747f8d;
  --text-link: #0067e0;
  --channels-default: #6a7480;
  --interactive-normal: #4f5660;
  --interactive-hover: #2e3338;
  --interactive-active: #060607;
  --interactive-muted: #c7ccd1;
  --background-primary: #fff;
  --background-secondary: #f2f3f5;
  --background-secondary-alt: #ebedef;
  --background-tertiary: #e3e5e8;
  --background-accent: #747f8d;
  --background-floating: #fff;
  --background-mobile-primary: #f8f9f9;
  --background-mobile-secondary: #fff;
  --background-modifier-hover: rgba(116,127,141,0.08);
  --background-modifier-active: rgba(116,127,141,0.16);
  --background-modifier-selected: rgba(116,127,141,0.24);
  --background-modifier-accent: rgba(6,6,7,0.08);
  --background-mentioned: rgba(250,166,26,0.1);
  --background-mentioned-hover: rgba(250,166,26,0.2);
  --background-message-hover: rgba(6,6,7,0.02);
  --background-help-warning: rgba(250,166,26,0.1);
  --background-help-info: rgba(0,103,224,0.1);
  --scrollbar-thin-thumb: rgba(79,84,92,0.3);
  --scrollbar-thin-track: transparent;
  --scrollbar-auto-thumb: #ccc;
  --scrollbar-auto-track: #f2f2f2;
  --scrollbar-auto-scrollbar-color-thumb: #e3e5e8;
  --scrollbar-auto-scrollbar-color-track: #f2f3f5;
  --elevation-stroke: 0 0 0 1px rgba(6,6,7,0.08);
  --elevation-low: 0 1px 0 rgba(6,6,7,0.1),0 1.5px 0 rgba(6,6,7,0.025),0 2px 0 rgba(6,6,7,0.025);
  --elevation-medium: 0 4px 4px rgba(0,0,0,0.08);
  --elevation-high: 0 8px 16px rgba(0,0,0,0.16);
  --logo-primary: #7289da;
  --focus-primary: #00b0f4;
  --radio-group-dot-foreground: #4e5d94;
  --guild-header-text-shadow: 0 1px 1px hsla(0,0%,100%,0.4);
  --channeltextarea-background: #ebedef;
  --activity-card-background: #fff;
  --textbox-markdown-syntax: #6a7480;
  --deprecated-card-bg: #f8f9f9;
  --deprecated-card-editable-bg: rgba(246,246,247,0.6);
  --deprecated-store-bg: #f8f9f9;
  --deprecated-quickswitcher-input-background: #fff;
  --deprecated-quickswitcher-input-placeholder: rgba(79,84,92,0.3);
  --deprecated-text-input-bg: rgba(79,84,92,0.02);
  --deprecated-text-input-border: rgba(79,84,92,0.3);
  --deprecated-text-input-border-hover: #b9bbbe;
  --deprecated-text-input-border-disabled: #dcddde;
  --deprecated-text-input-prefix: #b9bbbe ;
}

#fan-art-gallery .fan-art {
  height: 256px;
  width: auto;
  box-shadow: 1px 1px 10px #0000004f;
  background-color: white;
}
#fan-art-gallery .fan-arts-wrapper {
  display: flex;
  flex-wrap: wrap;
}
#fan-art-gallery .artist-info-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: end;
  color: white;
  line-height: 1;
  background: linear-gradient(#fff0, black);
  top: 0;
  opacity: 0;
  transition-duration: 0.5s;
}
#fan-art-gallery .artist-info-hover:hover {
  opacity: 1;
  transition-duration: 0.5s;
}
#fan-art-gallery .artist-info {
  background-color: #29a6fe;
  border-radius: 8px;
  box-shadow: 1px 1px 10px #0000004f;
  display: flex;
  align-items: center;
  padding: 16px;
}
#fan-art-gallery .artist-info img {
  border-radius: 999999px;
  margin-right: 6px;
  width: 128px;
  height: 128px;
}
#fan-art-gallery .artist-info .text {
  color: white;
  padding-left: 16px;
}
#fan-art-gallery .artist-info .text .name {
  font-size: 3em;
}

.lori-holding {
  position: relative;
  height: 300px;
  width: 300px;
  margin: auto;
}
.lori-holding img {
  height: 300px;
  width: auto;
}
.lori-holding .lori-behind {
  position: absolute;
}
.lori-holding .lori-arms {
  position: absolute;
}
.lori-holding .fan-art-in-hand {
  position: absolute;
  width: 128px;
  height: auto;
  left: 66px;
  bottom: 60px;
  filter: drop-shadow(rgba(0, 0, 0, 0.3) 0 0 15px);
}

.lori-section {
  border: 1px solid #dcddde;
  padding: 20px;
  border-radius: 7px;
  background-color: #f7f7f7;
  display: flex;
}
.lori-section .left {
  display: flex;
  flex: 0 1 auto;
  margin-right: 10px;
}
.lori-section .right {
  display: flex;
  flex: 1 1 auto;
  margin-left: 10px;
}
.lori-section .as-column {
  flex-direction: column;
}

.section-title {
  color: rgba(114, 118, 125, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px 6px;
}

input[type=text], select {
  margin: 8px 0;
  border: 1px solid #c7c9cb;
  border-radius: 4px;
  background-color: #fbfbfc;
  padding: 8px;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  outline: none;
  font-family: "Ubuntu", Arial, Helvetica, sans-serif;
}
input[type=text]:hover, select:hover {
  border: 1px solid #b9bbbe;
}
input[type=text]:focus, select:focus {
  border-color: #29a6fe;
}

/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Lato Hairline"), local("Lato-Hairline"), url(https://fonts.gstatic.com/s/lato/v16/S6u8w4BMUTPHh30AUi-qJCY.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Lato Hairline"), local("Lato-Hairline"), url(https://fonts.gstatic.com/s/lato/v16/S6u8w4BMUTPHh30AXC-q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Lato Light"), local("Lato-Light"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh7USSwaPGR_p.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Lato Light"), local("Lato-Light"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh7USSwiPGQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Lato Regular"), local("Lato-Regular"), url(https://fonts.gstatic.com/s/lato/v16/S6uyw4BMUTPHjxAwXjeu.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Lato Regular"), local("Lato-Regular"), url(https://fonts.gstatic.com/s/lato/v16/S6uyw4BMUTPHjx4wXg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Lato Bold"), local("Lato-Bold"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Lato Bold"), local("Lato-Bold"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Lato Black"), local("Lato-Black"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh50XSwaPGR_p.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Lato Black"), local("Lato-Black"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh50XSwiPGQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjvWyNL4U.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjtGyNL4U.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjvGyNL4U.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1Czjs2yNL4U.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* latin-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjvmyNL4U.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: local("Ubuntu Light"), local("Ubuntu-Light"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoC1CzjsGyN.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKcg72j00.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKew72j00.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKcw72j00.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKfA72j00.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* latin-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKcQ72j00.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCs6KVjbNBYlgoKfw72.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jvWyNL4U.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jtGyNL4U.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jvGyNL4U.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3js2yNL4U.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* latin-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jvmyNL4U.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: local("Ubuntu Medium"), local("Ubuntu-Medium"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCjC3jsGyN.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjvWyNL4U.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjtGyNL4U.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjvGyNL4U.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjs2yNL4U.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* latin-ext */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjvmyNL4U.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Ubuntu Bold"), local("Ubuntu-Bold"), url(https://fonts.gstatic.com/s/ubuntu/v13/4iCv6KVjbNBYlgoCxCvjsGyN.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.sponsor-wrapper {
  flex-shrink: 0;
  flex-grow: 1;
  display: flex;
}

.sponsor-banner {
  width: 100%;
  flex-grow: 1;
}

.sponsor-pc-image {
  flex-grow: 1;
}

.sponsor-mobile-image {
  display: none;
  flex-grow: 1;
}

@media screen and (orientation: portrait) {
  .sponsor-pc-image {
    display: none;
  }

  .sponsor-mobile-image {
    display: inline-block;
  }

  .sponsor-banner {
    width: 95%;
  }
}
.sponsor-button {
  background-color: #29a6fe;
  font-weight: 500;
  color: white;
  border-radius: 4px;
  display: inline-block;
  line-height: 1.3;
  vertical-align: middle;
  padding: 2px;
  position: relative;
  bottom: 1px;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

footer {
  z-index: 1;
  background-color: #29a6fe;
  color: white;
  padding: 16px 72px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
@media screen and (max-width: 400px) {
  footer {
    padding: 1em 2em;
  }
}
footer h1, footer h2, footer h3 {
  color: white;
  margin: 0;
}
footer a {
  color: white;
  opacity: 0.8;
}
footer .social-networks {
  gap: 0.25em;
  display: flex;
  justify-content: center;
  font-size: 3em;
}
footer .social-networks i {
  margin-left: 8px;
  margin-right: 8px;
}
footer .navigation-footer {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  gap: 1em;
}
footer .navigation-footer h1, footer .navigation-footer h2, footer .navigation-footer h3 {
  font-size: 1.25em;
}
footer .navigation-footer .section-entry {
  display: flex;
  flex-direction: column;
}
footer .call-to-action-footer {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .call-to-action-footer .lets-transform {
  display: flex;
  flex-direction: column;
  flex: 1;
}
footer .call-to-action-footer .add-cta {
  margin-top: 1.5em;
}
@media (max-width: 600px) {
  footer .call-to-action-footer {
    flex-direction: column;
  }
}
footer .call-to-action-footer h2 {
  font-size: 1.5em;
}
footer .call-to-action-footer h3 {
  font-size: 1.1em;
}

@media screen and (max-width: 600px) {
  footer .navigation-footer {
    flex-direction: column;
  }
}
pre {
  background-color: var(--background-wrapper-secondary);
  font-family: Consolas, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Monaco, Courier New, Courier, monospace;
  font-size: 0.8em;
  border: 1px solid #cdcdcd;
  border-radius: 7px;
  white-space: pre-wrap;
  padding: 7px;
}

:not(pre) > code {
  background-color: var(--background-wrapper-secondary);
  font-family: Consolas, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Monaco, Courier New, Courier, monospace;
  font-size: 0.8em;
  border-radius: 3px;
  padding: 2px;
}

#daily-shop .shop-reset-timer {
  display: flex;
  align-items: center;
  justify-content: right;
  color: #1996ed;
}
#daily-shop .shop-reset-timer .horizontal-line {
  flex-grow: 1;
  background-color: #1996ed;
  height: 2px;
  margin-right: 10px;
}
#daily-shop .shop-reset-timer .stopwatch {
  margin-right: 10px;
  font-size: 2em;
}
#daily-shop .shop-reset-timer .shop-timer {
  display: flex;
  flex-direction: column;
  text-align: center;
}
#daily-shop .shop-reset-timer .shop-timer .shop-timer-date {
  font-size: 2.25em;
  text-transform: uppercase;
}
#daily-shop .shop-reset-timer .shop-timer .shop-timer-subtitle {
  text-transform: lowercase;
  font-size: 1.25em;
}

.loritta-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: 1px 1px 5px #00000059;
  border-radius: 7px;
  padding: 0.25em;
  cursor: pointer;
}
.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: #ff4b4b;
  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;
  text-align: center;
  color: white;
  padding: 0.25em;
  font-weight: 700;
}

.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: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;
}

.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%;
}

#progress-indicator {
  height: 3px;
  position: fixed;
  z-index: 1000;
  background-color: #fe8129;
  width: 0%;
  box-shadow: 0px 0px 5px #fe8129;
  transition: opacity 0.3s, width 15s cubic-bezier(0.17, 0.84, 0.44, 1);
  opacity: 0;
}
#progress-indicator.visible {
  opacity: 1;
}

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

details.fancy-details:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.01), 0 6px 6px rgba(0, 0, 0, 0.1);
  transition-duration: 0.5s;
}

details.fancy-details {
  transition-duration: 0.5s;
  background-color: var(--fancy-details-details);
  border-radius: 12px;
  overflow: hidden;
  margin: 12px;
}
details.fancy-details > summary {
  list-style: none;
}
details.fancy-details > summary::-webkit-details-marker {
  display: none;
}

details.fancy-details > summary .chevron-icon {
  transform: rotate(0deg);
  transition-duration: 0.5s;
  float: right;
}

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

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

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

.tooltip {
  position: relative;
  cursor: pointer;
}
.tooltip.tooltip-glow {
  box-shadow: 0px 0px 5px #29a6fe;
  transition-duration: 0.2s;
}
.tooltip.tooltip-glow:hover {
  box-shadow: 0px 0px 15px #75c6fe;
}

.tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  max-width: 300px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  font-weight: normal;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-size: 14px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.3s;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  font-size: inherit;
  color: inherit;
  vertical-align: -0.125em;
}

#content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.read-more {
  font-size: 1.5em;
}

.read-more-about-feature {
  text-align: center;
}

.post-wrapper {
  margin-left: 1em;
  margin-right: 1em;
}
.post-wrapper .post-content {
  max-width: 45em;
  margin: auto;
  line-height: 1.8;
  font-size: 18px;
  display: flex;
  flex-direction: column;
}
.post-wrapper .post-content img {
  max-width: 100%;
}
.post-wrapper .post-content video {
  max-width: 100%;
}
.post-wrapper .post-content h1, .post-wrapper .post-content h2, .post-wrapper .post-content h3, .post-wrapper .post-content h4 {
  scroll-margin-top: 50px;
}
.post-wrapper .post-content .table-of-contents {
  line-height: 1.3;
  background-color: var(--background-wrapper-secondary);
  padding: 1em;
  border-radius: 7px;
}
.post-wrapper .post-content .table-of-contents .toc-title {
  font-weight: bold;
  font-size: 1.5em;
  color: #29a6fe;
}
@media screen and (max-width: 900px) {
  .post-wrapper .post-content {
    font-size: 16px;
  }
}
.post-wrapper .post-header {
  text-align: center;
}
.post-wrapper .post-header h1 {
  margin: 0;
  line-height: 1.5;
}
.post-wrapper .post-header .post-info {
  font-size: 0.8em;
}

.staff-content {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.58;
  max-width: 80em;
  width: 100%;
  flex-direction: column;
}
@media screen and (max-width: 400px) {
  .staff-content {
    width: 90%;
  }
}
.staff-content p {
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
}
.staff-content .staff-section {
  display: flex;
  justify-content: space-around;
  flex-flow: wrap;
  gap: 1em;
  width: 100%;
}
.staff-content .staff-section .staff-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 1em);
}
@media screen and (max-width: 800px) {
  .staff-content .staff-section .staff-info {
    width: calc(33% - 1em);
  }
}
@media screen and (max-width: 500px) {
  .staff-content .staff-section .staff-info {
    width: calc(50% - 1em);
  }
}
@media screen and (max-width: 400px) {
  .staff-content .staff-section .staff-info {
    width: 100%;
  }
}
.staff-content .staff-section .staff-info .staff-avatar {
  width: 10em;
  height: 10em;
  border-radius: 100%;
  transition: 0.5s;
}
.staff-content .staff-section .staff-info .staff-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.staff-content .staff-section .staff-info .staff-social-networks {
  display: flex;
  gap: 0.5em;
}
.staff-content .staff-section .staff-info .staff-title {
  color: #29a6fe;
  font-size: 1.25em;
}
.staff-content .staff-section .staff-info .staff-description {
  text-align: center;
  text-decoration: underline dotted #fe8129;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-break: auto;
  text-decoration-thickness: 0.5px;
}
.staff-content .staff-section .staff-info .staff-song {
  font-size: 0.75em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-break: anywhere;
}

lori-command-category {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
lori-command-category > div {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

lori-command-category-tag {
  position: absolute;
  border-radius: 0px 0px 0px 7px;
  top: 0;
  right: 0;
  padding: 5px;
  color: white;
  font-weight: bold;
}

lori-command-entry .thumbnail {
  display: block;
  float: right;
  border-radius: 7px;
  margin-left: 8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  lori-command-entry .thumbnail {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

/* latin */
@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Pacifico Regular"), local("Pacifico-Regular"), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6Mk.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Lato Hairline"), local("Lato-Hairline"), url(https://fonts.gstatic.com/s/lato/v16/S6u8w4BMUTPHh30AUi-qJCY.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: local("Lato Hairline"), local("Lato-Hairline"), url(https://fonts.gstatic.com/s/lato/v16/S6u8w4BMUTPHh30AXC-q.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Lato Light"), local("Lato-Light"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh7USSwaPGR_p.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Lato Light"), local("Lato-Light"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh7USSwiPGQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Lato Regular"), local("Lato-Regular"), url(https://fonts.gstatic.com/s/lato/v16/S6uyw4BMUTPHjxAwXjeu.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Lato Regular"), local("Lato-Regular"), url(https://fonts.gstatic.com/s/lato/v16/S6uyw4BMUTPHjx4wXg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Lato Bold"), local("Lato-Bold"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh6UVSwaPGR_p.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Lato Bold"), local("Lato-Bold"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh6UVSwiPGQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Lato Black"), local("Lato-Black"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh50XSwaPGR_p.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Lato Black"), local("Lato-Black"), url(https://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh50XSwiPGQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: "auto";
  src: local("Oswald Regular"), local("Oswald-Regular"), url(https://fonts.gstatic.com/s/oswald/v16/TK3iWkUHHAIjg752GT8G.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --loritta-blue: #29a6fe;
  --navigation-bar-height: 46px;
  --left-sidebar-width: 360px;
  --sidebar-ad-width: 160px;
  --background-wrapper-primary: #fff;
  --background-wrapper-secondary: #f6f9fc;
  --background-color: #ffffff;
  --left-sidebar-background-color: #f2f3f5;
  --background-right-sidebar: var(--background-wrapper-primary);
  --fancy-details-summary: #f8f8f8;
  --fancy-details-details: #f4f4f4;
  --text: #404040;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #29a6fe #1672b3;
}

section h1 {
  font-size: xx-large;
  line-height: 1em;
}

nav#navigation-bar .icon {
  filter: drop-shadow(0 1px rgba(0, 0, 0, 0.2));
}

iframe {
  max-width: 100vw;
}

.guild-icons-horizontal {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.guild-icons-horizontal .guilds-wrapper {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: fit-content;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
  animation: guilds-wrapper-move 60s linear infinite;
}

@keyframes guilds-wrapper-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  background-color: var(--background-wrapper-primary);
  color: #333333;
  overflow-x: true;
  display: flex;
}

.dummy-navigation-bar {
  height: var(----navigation-bar-height);
}

nav.navigation-bar {
  top: 0px;
  width: 100%;
  height: var(--navigation-bar-height);
  background-color: var(--loritta-blue);
  box-shadow: color-mix(in hsl, color-mix(in hsl, var(--loritta-blue), #004bc8 50%), transparent 40%) 0 0 15px;
  text-transform: uppercase;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  font-family: Oswald, Impact, Arial, sans-serif;
  line-height: 1;
  z-index: 999;
  display: flex;
  flex-direction: row;
  position: relative;
}
nav.navigation-bar.fixed {
  position: fixed;
}
nav.navigation-bar .entry {
  float: left;
  display: block;
  color: #f2f2f2 !important;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  transition: 500ms;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  color: #f2f2f2 !important;
  text-decoration: none;
}
nav.navigation-bar .entry:hover {
  background-color: #1aa0fe;
}
nav.navigation-bar .left-side-entries {
  display: flex;
  flex-grow: 1;
  flex-flow: wrap;
  overflow: hidden;
}
nav.navigation-bar .right-side-entries {
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
}
nav.navigation-bar #hamburger-menu-button {
  display: none;
}
nav.navigation-bar.expanded {
  height: 100vh;
  overflow: auto;
}
nav.navigation-bar.expanded .entry {
  display: block !important;
  float: none;
  text-align: left;
  height: auto;
}
nav.navigation-bar.expanded .left-side-entries {
  float: none;
}
nav.navigation-bar.expanded .right-side-entries {
  float: none;
}
nav.navigation-bar.expanded #hamburger-menu-button {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1366px) {
  .navigation-bar a.icon {
    float: right;
    display: block;
    padding: 14px 16px;
  }
}
@media screen and (max-width: 600px) {
  .navigation-bar .entry:not(.loritta-navbar-logo) {
    display: none;
  }

  #hamburger-menu-button {
    display: block !important;
  }
}
@media screen and (max-width: 1366px) {
  .navigation-bar.expanded {
    position: relative;
  }

  .navigation-bar.expanded .entry {
    float: none;
    display: block;
    text-align: left;
  }
}
.navigation-bar.expanded {
  height: 100vh;
  overflow: auto;
  position: fixed;
  flex-direction: column;
}
.navigation-bar.expanded div {
  display: flex;
  flex-direction: column;
}
.navigation-bar.expanded .left-side-entries {
  flex-direction: column;
  flex-grow: 0;
}
.navigation-bar.expanded .left-side-entries .entry {
  display: block;
}
.navigation-bar.expanded .right-side-entries {
  flex-direction: column;
  margin-left: unset;
}

#languages {
  position: absolute;
  background-color: white;
  left: 0;
  top: 100%;
  display: none;
  text-align: left;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  padding: 4px;
  min-width: 100%;
  border-radius: 0px 0px 7px 7px;
  box-sizing: border-box;
  z-index: 100;
}

#languages a {
  width: 100%;
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #4f545c !important;
  font-weight: 500;
  text-transform: none;
  padding: 0px;
}
#languages a:hover {
  color: #00b0f4 !important;
}

#locale-changer-button:hover #languages {
  display: block;
}

.centralized-ad {
  text-align: center;
}

.invisible {
  visibility: hidden;
}

.eyes-open-pose {
  image-rendering: smooth;
}

.blinking-pose {
  visibility: hidden;
  image-rendering: smooth;
}

.blushing-pose {
  visibility: hidden;
  image-rendering: smooth;
}

.dark-sweater-pose {
  visibility: hidden;
  image-rendering: smooth;
}

#inner-content {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
#inner-content .even-wrapper:last-child {
  flex-grow: 1;
  flex-direction: column;
  display: flex;
}
#inner-content .odd-wrapper:last-child {
  flex-grow: 1;
  flex-direction: column;
  display: flex;
}
#inner-content .background-overlay {
  background-image: url("../img/website_bg.png");
  mask-image: linear-gradient(-90deg, black 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, black 100%);
  -webkit-mask-image: linear-gradient(-90deg, black 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, black 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}
@media screen and (max-width: 1070px) {
  #inner-content .background-overlay {
    mask-image: linear-gradient(-90deg, black 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, black 100%);
    -webkit-mask-image: linear-gradient(-90deg, black 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, black 100%);
  }
}
@media screen and (max-width: 940px) {
  #inner-content .background-overlay {
    display: none;
  }
}

.odd-wrapper {
  background-color: var(--background-wrapper-primary);
}
.odd-wrapper.wobbly-bg::before {
  display: inline-block;
  content: "";
  background-color: var(--background-wrapper-secondary);
  -webkit-mask-image: url("../img/wobby-lines-odd.svg");
  mask-image: url("../img/wobby-lines-even.svg");
  height: 49px;
  width: 100%;
}

.even-wrapper {
  background-color: var(--background-wrapper-secondary);
}
.even-wrapper.wobbly-bg::before {
  display: inline-block;
  content: "";
  background-color: var(--background-wrapper-primary);
  -webkit-mask-image: url("../img/wobby-lines-even.svg");
  mask-image: url("../img/wobby-lines-even.svg");
  height: 49px;
  width: 100%;
}

.media {
  display: flex;
  align-items: center;
  width: 75%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.58;
}
@media screen and (max-width: 800px) {
  .media {
    flex-direction: column;
  }
}
.media.single-column {
  max-width: 50em;
}

li {
  margin-top: 0.7em;
}

a {
  background-color: transparent;
  color: #006bf4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.media-figure {
  margin-right: 1em;
  width: 25%;
}
@media screen and (max-width: 800px) {
  .media-figure {
    width: 50%;
    order: 1;
  }
}
.media-figure img {
  max-width: 100%;
}

.media-body {
  flex: 1;
  width: 75%;
}
@media screen and (max-width: 800px) {
  .media-body {
    order: 2;
    width: 95%;
  }
}

/* h1, h2, h3 {
  color: #29a6fe;
  font-weight: 500;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.25em;
}

h3 {
  font-size: 1.75em;
}

h4 {
  font-size: 1.125em;
} */
.inline-emoji {
  height: 1.3em;
  position: relative;
  top: 0.3em;
}

@keyframes icon-middle {
  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;
  }
}
.icon-bottom {
  animation: 8s linear infinite forwards icon-middle;
  position: relative;
  top: 16px;
  animation-delay: 1s;
}

.icon-top {
  animation: 8s linear infinite forwards icon-middle;
  position: relative;
  top: -16px;
}

.icon-middle {
  animation: 8s linear infinite forwards icon-middle;
  animation-delay: 0.5s;
}

.funny-commands {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  height: 400px;
}

.marquee {
  margin: 0 auto;
  white-space: nowrap;
  position: absolute;
  top: 30px;
  width: 100vw;
}

.marquee .scroller {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 120s linear infinite;
  will-change: transform;
}

.marquee2 .scroller {
  animation-delay: 60s;
}

@keyframes marquee {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.cards {
  max-width: 960px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 30px;
}
.cards img {
  max-width: 100%;
}

.uppercase {
  text-transform: uppercase;
}

.left-horizontal-line {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.left-horizontal-line::after {
  position: absolute;
  top: 51%;
  overflow: hidden;
  width: 100%;
  height: 2px;
  content: " ";
  background-color: #1996ed;
  margin-left: 10px;
  margin-right: 10px;
}

.color {
  background-color: #ccc;
}

#loading-screen {
  position: fixed;
  background-color: #0006;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  opacity: 0;
  transition: 0.75s;
  pointer-events: none;
}
#loading-screen div {
  font-size: 1.5em;
  color: white;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

#loading-screen img {
  animation: 15s linear infinite forwards loading-spinner;
}
@keyframes loading-spinner {
  0% {
    transform: scale(1, 1);
  }
  25%, 75% {
    transform: scale(0, 1);
  }
  50% {
    transform: scale(-1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

.user-info {
  background-color: #29a6fe;
  border-radius: 8px;
  box-shadow: 1px 1px 10px #0000004f;
  display: flex;
  align-items: center;
  padding: 16px;
}
.user-info img {
  border-radius: 999999px;
  margin-right: 6px;
  width: 128px;
  height: 128px;
}
.user-info .text {
  color: white;
  padding-left: 16px;
}
.user-info .text .name {
  font-size: 3em;
}

.server-entry {
  background-color: #7289DA;
  border-radius: 8px;
  box-shadow: 1px 1px 10px #0000004f;
  display: flex;
  align-items: center;
  padding: 4px;
}

.server-list {
  width: 100%;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
}
.server-list .entry {
  width: 100%;
  background-color: #7289DA;
  border-radius: 8px;
  box-shadow: 1px 1px 10px #0000004f;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.server-list .entry .icon {
  height: 48px;
  border-radius: 100%;
}
.server-list .entry .top-row {
  align-items: center;
  display: flex;
  padding: 4px;
  background-color: #5e77d4;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.server-list .entry .top-row .info {
  overflow: hidden;
  padding-left: 4px;
}
.server-list .entry .top-row .info .name {
  color: white;
  font-size: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.server-list .entry .top-row .info .role {
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.server-list .entry .bottom-row {
  background-color: #7289DA;
  padding: 4px;
  text-align: right;
}
.server-list .entry .bottom-row a {
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid #a4b2e5;
  border-radius: 4px;
  padding: 4px;
  transition: 0.5s;
}
.server-list .entry .bottom-row a:hover {
  background-color: #5e77d4;
  border: 1px solid #3552bb;
}

@media screen and (max-width: 600px) {
  .navigation-bar .right-side-entries .entry:nth-last-child(2) {
    display: block;
  }

  #hamburger-menu-button {
    display: block !important;
  }
}
@media screen and (max-width: 350px) {
  .navigation-bar .right-side-entries .entry:nth-last-child(2) {
    display: none;
  }
}
body.dark {
  color: #e1e1e1;
  background-color: #2c2f33;
}

.dark {
  --background-wrapper-primary: #2c2f33;
  --background-wrapper-secondary:#23272a;
  --background-right-sidebar: #030303;
  --fancy-details-summary: #151515;
  --fancy-details-details: #1a1a1a;
  --text: #e8e8e8;
}
.dark .dark-sweater-pose {
  visibility: visible;
}

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