@charset "UTF-8";
body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #29a6fe;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

.button {
  padding: 0.5em 1em;
  box-sizing: border-box;
  border-radius: 6px;
  margin-left: 5px;
  margin-right: 5px;
  transition: 0.75s;
  text-decoration: none;
  display: inline-block;
  border: 0;
}
.button.has-shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.button.is-big {
  font-size: 1.25em;
}
.button.is-inline {
  display: inline-flex;
}
.button:hover {
  cursor: pointer;
}
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

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

#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;
  }
}
#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: 980px) {
  #jumbotron .right-side-text {
    text-align: center;
    left: 0;
    right: 0;
  }
}
#jumbotron .right-side-text .buttons {
  text-align: center;
  margin-top: 2em;
  display: inline-block;
  width: 100%;
}
#jumbotron .right-side-text .buttons .button {
  display: inline-block;
  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 .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: 980px) {
  #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: 92.5vh;
  z-index: 1;
}
#jumbotron #loritta-selfie img {
  height: 100%;
  position: absolute;
}
@media screen and (max-width: 980px) {
  #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;
}

.half-second {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.one-second {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

.two-seconds {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.three-seconds {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-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;
}

.discord-chat-box {
  display: flex;
  background-color: white;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
}
.discord-chat-box .mention {
  color: #7289da;
  background-color: #f1f3fb;
  padding-left: 2px;
  padding-right: 2px;
}
.discord-chat-box code {
  background: #f8f9f9;
}
.discord-chat-box hr {
  width: 100%;
  height: 1px;
  background-color: #eceeef;
  border: none;
}
.discord-chat-box .content {
  display: inline-flex;
}
.discord-chat-box .content .user-avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.discord-chat-box .content .right-side {
  flex-direction: column;
  margin-left: 20px;
}
.discord-chat-box .content .right-side .user-name {
  font-weight: 500;
  height: 1.3em;
  color: #29a6fe;
  white-space: nowrap;
}
.discord-chat-box .content .right-side .bot-tag {
  background-color: #7289da;
  font-weight: 400;
  color: white;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.3;
  font-size: 0.625em;
  vertical-align: middle;
  padding: 2px;
}
.discord-chat-box .content .right-side .embed {
  max-width: 520px;
  display: flex;
  margin-top: 8px;
  position: relative;
}
.discord-chat-box .content .right-side .embed .embed-pill {
  background-color: #ff84bc;
  border-radius: 3px 0 0 3px;
  flex-shrink: 0;
  width: 4px;
}
.discord-chat-box .content .right-side .embed .embed-inner {
  background: rgba(249, 249, 249, 0.3);
  border: 1px solid rgba(205, 205, 205, 0.3);
  border-radius: 0 3px 3px 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: 8px 10px;
}

.switch {
  display: inline-block;
  min-height: 24px;
  position: relative;
  min-width: 42px;
}

.switch input {
  display: none;
}

.slider {
  background-color: #72767d;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
}

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

input:checked + .slider {
  background-color: #29a6fe;
}

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

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

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

.toggleable-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 8px;
}
.toggleable-wrapper .information {
  flex: 0 1 auto;
  flex-basis: auto;
  flex-grow: 1;
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 600;
}
.toggleable-wrapper .information .sub-text {
  color: rgba(114, 118, 126, 0.8);
  font-size: 14px;
  margin-top: 4px;
  line-height: 20px;
  font-weight: 500;
}

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

#not-saved-alert {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 15px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: rgba(248, 249, 249, 0.95);
  padding: 10px 10px 10px 16px;
  border-radius: 5px;
  overflow: hidden;
  max-width: 740px;
  display: none;
  transition: 0.3s;
  z-index: 2;
}
#not-saved-alert.warning {
  background-color: #ff4040;
  color: white;
}

h5.section-title {
  color: #4f545c;
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}

input {
  margin: 8px 0;
  border: 1px solid #c7c9cb;
  border-radius: 4px;
  background-color: #fbfbfc;
  padding: 8px;
}

.dark .discord-radio-button {
  background: #2f3237;
}

.discord-radio-button {
  cursor: pointer;
  background-color: #fcfcfd;
  border: 1px #0000000f solid;
  transition: 0.3s;
  background: #fff;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin-bottom: 6px;
  background-color: #fcfcfd;
}
.discord-radio-button.active {
  background: #29a6fe;
  color: white;
}
.discord-radio-button .checkbox {
  background-color: white;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  font-size: 14px;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #fff0;
  border: 1px #00000040 solid;
}
.discord-radio-button .info {
  flex-grow: 1;
  margin: 0 8px;
}
.discord-radio-button .info .title {
  font-weight: 700;
}
.discord-radio-button .info .subtitle {
  font-size: 14px;
  font-weight: 400;
}

.discord-radio-button.active .checkbox {
  color: #29a6fe;
  border-color: #29a6fe;
}

#sidebar-wrapper {
  overflow: hidden;
  height: calc(100vh - 46px);
  display: flex;
}
@media screen and (max-width: 920px) {
  #sidebar-wrapper {
    flex-direction: column;
    flex: 1 1 46px;
  }
}
#sidebar-wrapper #left-sidebar {
  background: linear-gradient(-90deg, #ebebeb 55%, #43b1ff00), url("../img/website_bg.png");
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  display: flex;
  overflow: auto;
  height: 100%;
  justify-content: flex-end;
  flex: 1 1 40%;
  transition: 0.5s;
}
@media screen and (max-width: 920px) {
  #sidebar-wrapper #left-sidebar {
    flex: 1 1 46px;
    background: #2991fe;
    display: block;
  }
}
#sidebar-wrapper #left-sidebar .subnavbar-hamburger {
  display: block;
  text-align: right;
  padding: 10px 16px;
  color: white;
}
#sidebar-wrapper #left-sidebar .subnavbar-hamburger .subnavbar-hamburger-button {
  display: none;
}
@media screen and (max-width: 920px) {
  #sidebar-wrapper #left-sidebar .subnavbar-hamburger .subnavbar-hamburger-button {
    display: initial;
  }
}
@media screen and (max-width: 920px) {
  #sidebar-wrapper #left-sidebar.expanded {
    background-color: none;
    justify-content: center;
    min-height: 100%;
    overflow: auto;
  }
}
#sidebar-wrapper #left-sidebar.expanded .contents {
  display: initial;
}
#sidebar-wrapper #left-sidebar .contents {
  height: 100%;
  margin-right: 8px;
  width: 250px;
}
@media screen and (max-width: 920px) {
  #sidebar-wrapper #left-sidebar .contents {
    display: none;
    margin: 0px;
  }
}
#sidebar-wrapper #left-sidebar .contents .entry {
  padding: 6px 10px;
  border-radius: 3px;
  margin-bottom: 2px;
  padding-bottom: 6px;
  padding-top: 6px;
  line-height: 20px;
  transition: 0.3s;
  cursor: pointer;
  max-width: 280px;
}
#sidebar-wrapper #left-sidebar .contents .entry:hover {
  background-color: #0000001a;
}
#sidebar-wrapper #left-sidebar .contents .entry .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#sidebar-wrapper #left-sidebar .contents .entry .subtitle {
  color: #3339;
  font-size: 0.8em;
  line-height: 12px;
}
#sidebar-wrapper #right-sidebar {
  padding-top: 40px;
  overflow: auto;
  display: flex;
  flex-basis: 100%;
}
#sidebar-wrapper #right-sidebar .contents {
  padding: 0px 42px 0px 42px;
  width: 75%;
}

#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;
  justify-content: space-between;
  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-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-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;
}

.post-header {
  background-color: black;
  height: 60vh;
  width: 100%;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

@media screen and (max-width: 767px) {
  .post-header {
    height: 300px;
    background-position: top;
  }

  .post-two-column {
    flex-direction: column;
  }

  .image {
    order: 2;
  }
}
@media screen and (min-width: 1200px) {
  .post-header {
    height: 60vh;
    min-height: 600px;
  }
}
.post-two-column {
  display: flex;
  align-items: center;
}
.post-two-column .content {
  flex-grow: 1;
}
.post-two-column .image {
  text-align: center;
}

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

#content {
  flex: 1;
}

footer {
  background-color: #29a6fe;
  color: white;
  padding: 16px 72px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
footer h1, footer h2, footer h3 {
  color: white;
  margin: 0;
}
footer a {
  color: white;
  opacity: 0.8;
}
footer .social-networks {
  text-align: 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;
}
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;
  }
}
.tingle-modal * {
  box-sizing: border-box;
}

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.tingle-modal--noClose .tingle-modal__close, .tingle-modal__closeLabel {
  display: none;
}

.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal__close {
  position: fixed;
  top: 10px;
  right: 28px;
  z-index: 1000;
  padding: 0;
  width: 5rem;
  height: 5rem;
  border: none;
  background-color: transparent;
  color: #f0f0f0;
  font-size: 6rem;
  font-family: monospace;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.tingle-modal-box__content {
  padding: 3rem;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  z-index: 10001;
  opacity: 1;
  -webkit-transition: bottom 0.3s ease-in-out 0.3s;
  transition: bottom 0.3s ease-in-out 0.3s;
}

.tingle-enabled {
  overflow: hidden;
  height: 100%;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  -webkit-filter: blur(15px);
  filter: blur(15px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

.tingle-btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

@media (max-width: 540px) {
  .tingle-modal {
    top: 0;
    display: block;
    padding-top: 60px;
    width: 100%;
  }

  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }

  .tingle-modal-box__content {
    overflow-y: scroll;
  }

  .tingle-modal--noClose {
    top: 0;
  }

  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }

  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }

  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    box-shadow: none;
    color: #fff;
    line-height: 55px;
  }

  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }

  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
    font-size: 4rem;
  }
}
.pure-button {
  /* Structure */
  display: inline-block;
  zoom: 1;
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Firefox: Get rid of the inner focus border */
.pure-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.pure-button-group .pure-button {
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
}

.pure-button {
  font-family: inherit;
  font-size: 100%;
  padding: 0.5em 1em;
  color: #444;
  /* rgba not supported (IE 8) */
  color: rgba(0, 0, 0, 0.8);
  /* rgba supported */
  border: 1px solid #999;
  /*IE 6/7/8*/
  border: none rgba(0, 0, 0, 0);
  /*IE9 + everything else*/
  background-color: #E6E6E6;
  text-decoration: none;
  border-radius: 2px;
}

.pure-button-hover,
.pure-button:hover,
.pure-button:focus {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
  background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
}

.pure-button:focus {
  outline: 0;
}

.pure-button-active,
.pure-button:active {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
  border-color: #000;
}

.pure-button[disabled],
.pure-button-disabled,
.pure-button-disabled:hover,
.pure-button-disabled:focus,
.pure-button-disabled:active {
  border: none;
  background-image: none;
  /* csslint ignore:start */
  filter: alpha(opacity=40);
  /* csslint ignore:end */
  opacity: 0.4;
  cursor: not-allowed;
  -webkit-box-shadow: none;
  box-shadow: none;
  pointer-events: none;
}

.pure-button-hidden {
  display: none;
}

.pure-button-primary,
.pure-button-selected,
a.pure-button-primary,
a.pure-button-selected {
  background-color: #0078e7;
  color: #fff;
}

/* Button Groups */
.pure-button-group .pure-button {
  margin: 0;
  border-radius: 0;
  border-right: 1px solid #111;
  /* fallback color for rgba() for IE7/8 */
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.pure-button-group .pure-button:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.pure-button-group .pure-button:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-right: none;
}

.button-success {
  color: white;
  border-radius: 4px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.button-success {
  background: #1cb841;
  /* this is a green */
}

.button-discord {
  font-family: Lato, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: white;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  font-size: 14px;
}

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

.button-discord:visited {
  color: white;
}

.button-discord-success {
  background: #43b581;
}

.button-discord-info {
  background: #29a6fe;
}

.button-discord-attention {
  background: #f04747;
}

.button-discord-disabled {
  background: #5f5f5f;
  color: #cbcbcb;
}

.button-discord-modal {
  min-height: 38px;
  min-width: 96px;
  float: right;
  margin-left: 8px;
}

.button-discord-modal-secondary-action {
  min-height: 38px;
  min-width: 96px;
  float: right;
  background: rgba(0, 0, 0, 0);
  color: #747f8d;
}

.button-discord-edit {
  min-height: 32px;
  min-width: 60px;
  border-color: rgba(116, 127, 141, 0.3);
  color: #747f8d;
  padding: 2px 16px;
  line-height: 16px;
  background-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
}

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

.responsive-adsense-ad {
  width: 728px;
  height: 90px;
}

@media (max-width: 500px) {
  .responsive-adsense-ad {
    width: 300px;
    height: 250px;
  }
}
.daily-attention {
  color: #f04747;
}
.daily-attention .daily-attention-title {
  font-size: 1.5em;
  font-weight: bold;
}

.daily-overview {
  display: flex;
  gap: 1em;
  flex-direction: column;
}
.daily-overview .daily-reward-question-result {
  margin-bottom: 1em;
}
.daily-overview .daily-reward-question-result .status {
  font-size: 1.5em;
}
.daily-overview .come-back-image {
  height: 192px;
  margin: auto;
}
.daily-overview .sonhos-reward-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
@media screen and (orientation: portrait) {
  .daily-overview .sonhos-reward-wrapper {
    flex-direction: column;
  }
}
.daily-overview .sonhos-reward-wrapper .sonhos-data {
  display: flex;
  flex-direction: column;
}
.daily-overview .sonhos-reward-wrapper .sonhos-quantity {
  font-size: 2em;
  color: #29a6fe;
  font-weight: bold;
}
.daily-overview .sonhos-reward-wrapper .bonus-quantity {
  font-size: 1.5em;
  color: #29a6fe;
  font-weight: bold;
}
.daily-overview .daily-question-wrapper {
  display: flex;
  gap: 0.5em;
  flex-direction: column;
}
.daily-overview .daily-question-wrapper .daily-question {
  font-size: 2em;
  border: 1px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 7px;
  padding: 0.25em;
}
@media screen and (orientation: portrait) {
  .daily-overview .daily-question-wrapper .daily-question {
    padding: 0em;
    font-size: 1.5em;
  }
}
.daily-overview .daily-question-wrapper .daily-question-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
}
.daily-overview .daily-warning {
  color: red;
}

.daily-gift {
  /* The animation code */
}
.daily-gift .scene {
  width: 100px;
  height: 100px;
  margin: 75px;
  perspective: 1000px;
  perspective-origin: 50% -400%;
  transition: 1s;
  filter: drop-shadow(12px 12px 25px rgba(0, 0, 0, 0.5));
  margin-left: auto;
  margin-right: auto;
}
.daily-gift .scene:hover {
  transform: scale(1.1);
  transition: 1s;
}
.daily-gift .cube {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(-100px);
  transition: transform 1s;
  animation-name: rotate-cube;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.daily-gift .cube img {
  max-width: 100px;
  max-height: 100px;
}
.daily-gift .cube__face {
  position: absolute;
  width: 100px;
  height: 100px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  text-align: center;
  width: 100%;
  height: 100%;
}
.daily-gift .cube__face--front {
  background: rgba(255, 0, 0, 0.7);
}
.daily-gift .cube__face--right {
  background: rgba(255, 255, 0, 0.7);
}
.daily-gift .cube__face--back {
  background: rgba(0, 255, 0, 0.7);
}
.daily-gift .cube__face--left {
  background: rgba(0, 255, 255, 0.7);
}
.daily-gift .cube__face--top {
  background: rgba(0, 0, 255, 0.7);
}
.daily-gift .cube__face--bottom {
  background: rgba(255, 0, 255, 0.7);
}
.daily-gift .cube__face--front {
  transform: rotateY(0deg) translateZ(50px);
}
.daily-gift .cube__face--right {
  transform: rotateY(90deg) translateZ(50px);
}
.daily-gift .cube__face--back {
  transform: rotateY(180deg) translateZ(50px);
}
.daily-gift .cube__face--left {
  transform: rotateY(-90deg) translateZ(50px);
}
.daily-gift .cube__face--top {
  transform: rotateX(90deg) translateZ(50px);
}
.daily-gift .cube__face--lace1 {
  transform: rotateX(0deg) rotateY(45deg) translateY(-50px) translateZ(0px);
}
.daily-gift .cube__face--lace2 {
  transform: rotateX(0deg) rotateY(-45deg) translateY(-50px) translateZ(0px);
}
.daily-gift .cube__face--bottom {
  transform: rotateX(-90deg) translateZ(50px);
}
.daily-gift label {
  margin-right: 10px;
}
@keyframes rotate-cube {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

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

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: #f4f4f4;
  border-radius: 12px;
  overflow: hidden;
}
details.fancy-details > summary {
  list-style: none;
  font-size: 1.5em;
  font-weight: bold;
  display: flex;
  align-items: center;
}
details.fancy-details > summary::-webkit-details-marker {
  display: none;
}

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

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

details.fancy-details > summary {
  cursor: pointer;
  background-color: #f8f8f8;
  padding: 20px;
}

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

.select-wrapper {
  position: relative;
  display: inline-block;
}
.select-wrapper > .select {
  border: 1px solid #0000001f;
  border-radius: 4px;
  background-color: #0000000a;
  padding: 8px;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select-wrapper > .select:focus {
  outline: blue solid 2px;
}
.select-wrapper > .select.open {
  border-radius: 4px 4px 0px 0px;
}
.select-wrapper > .select > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.select-wrapper > .select > div > .currently-selected-option-content {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.select-wrapper > .select > div > .chevron {
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}
.select-wrapper > .select > div > .chevron > svg {
  width: 1em;
  height: 1em;
}
.select-wrapper > .menu {
  position: absolute;
  top: 100%;
  background-color: white;
  border-radius: 0px 0px 4px 4px;
  width: 100%;
  max-height: 400px;
  min-width: 200px;
  overflow: auto;
  color: black;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.select-wrapper > .menu > .select-menu-entry {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition-duration: 0.5s;
  padding: 8px;
}
.select-wrapper > .menu > .select-menu-entry:focus {
  outline: blue solid 2px;
}
.select-wrapper > .menu > .select-menu-entry:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.select-wrapper > .menu > .select-menu-entry.selected {
  background-color: rgba(0, 0, 0, 0.15);
}

.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: 1000px) {
  .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;
}

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

.discord-mention {
  background-color: rgba(88, 101, 242, 0.1);
  color: #5865f2;
  font-weight: 600;
  transition: background-color 0.05s, color 0.05s;
  padding: 2px;
  border-radius: 3px;
}

/* 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 {
  --background-wrapper-primary: #fff;
  --background-wrapper-secondary: #f6f9fc;
  --background-right-sidebar: var(--background-wrapper-primary);
  --fancy-details-summary: #f8f8f8;
  --fancy-details-details: #f4f4f4;
  --text: #404040;
}

iframe {
  max-width: 100vw;
}

.guild-icons-horizontal {
  width: 100vw;
  overflow: hidden;
}
.guild-icons-horizontal .guilds-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 9000px;
  transform: translateX(-50%);
  text-align: center;
  margin-left: 50%;
  padding: 32px;
}

body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  background-color: var(--background-wrapper-primary);
  color: #333333;
  overflow-x: hidden;
}

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

nav.navigation-bar {
  top: 0px;
  width: 100%;
  height: 46px;
  background-color: #29a6fe;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  font-family: Oswald, Impact, Arial, sans-serif;
  line-height: 1;
  z-index: 999;
  display: flex;
  flex-direction: row;
  position: 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;
}
nav.navigation-bar .entry a {
  color: #f2f2f2 !important;
  text-decoration: none;
}
nav.navigation-bar .entry:hover {
  background-color: #1aa0fe;
}
nav.navigation-bar .icon {
  display: none;
}
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.responsive {
    position: relative;
  }

  .navigation-bar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

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

@media screen and (max-width: 1366px) {
  .navigation-bar.expanded {
    position: relative;
  }

  .navigation-bar.expanded .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

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

.button.primary {
  background-color: #29a6fe;
  color: white;
}
.button.primary:hover {
  background-color: #018ff3;
}
.button.primary.has-shadow:hover {
  box-shadow: 0 0 15px #29a6fe, 0 0 15px #29a6fe, 0 0 15px #29a6fe;
}

.button.red {
  background-color: red;
  color: white;
}
.button.red:hover {
  background-color: #cc0000;
}
.button.red.has-shadow:hover {
  box-shadow: 0 0 15px red, 0 0 15px red, 0 0 15px red;
}

.button.pink {
  background-color: #fe29a6;
  color: white;
}
.button.pink:hover {
  background-color: #f3018f;
}
.button.pink.has-shadow:hover {
  box-shadow: 0 0 15px #fe29a6, 0 0 15px #fe29a6, 0 0 15px #fe29a6;
}

.button.light-green {
  background-color: #37ef8d;
  color: white;
}
.button.light-green:hover {
  background-color: #12e173;
}
.button.light-green.has-shadow:hover {
  box-shadow: 0 0 15px #37ef8d, 0 0 15px #37ef8d, 0 0 15px #37ef8d;
}

.button.purple {
  background-color: #8d37ef;
  color: white;
}
.button.purple:hover {
  background-color: #7312e1;
}
.button.purple.has-shadow:hover {
  box-shadow: 0 0 15px #8d37ef, 0 0 15px #8d37ef, 0 0 15px #8d37ef;
}

.button.black {
  background-color: #000000;
  color: white;
}
.button.black:hover {
  background-color: black;
}
.button.black.has-shadow:hover {
  box-shadow: 0 0 15px #000000, 0 0 15px #000000, 0 0 15px #000000;
}

.button.xtwitter {
  background-color: #3b3b3c;
  color: white;
}
.button.xtwitter:hover {
  background-color: #222222;
}
.button.xtwitter.has-shadow:hover {
  box-shadow: 0 0 15px #3b3b3c, 0 0 15px #3b3b3c, 0 0 15px #3b3b3c;
}

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

.invisible {
  visibility: hidden;
}

.blinking-pose {
  visibility: hidden;
}

.blushing-pose {
  visibility: hidden;
}

.dark-sweater-pose {
  visibility: hidden;
}

.odd-wrapper {
  background-color: var(--background-wrapper-primary);
  background-image: linear-gradient(-90deg, #43b1ff00, var(--background-wrapper-primary) 15%, var(--background-wrapper-primary) 85%, #43b1ff00), url("../img/website_bg.png");
}
.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%;
}

#content .even-wrapper:last-child {
  padding-bottom: 2em;
}
#content .odd-wrapper:last-child {
  padding-bottom: 2em;
}

.even-wrapper {
  background-color: var(--background-wrapper-secondary);
  background-image: linear-gradient(-90deg, #43b1ff00, var(--background-wrapper-secondary) 15%, var(--background-wrapper-secondary) 85%, #43b1ff00), url("../img/website_bg.png");
}
.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: 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%;
  text-align: center;
}
@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;
} */
h1 {
  font-family: Pacifico, Lato, sans-serif;
  font-size: 4em;
  font-weight: normal;
}

h2 {
  font-size: 2.5em;
  font-weight: 800;
}

.inline-emoji {
  height: 1.3em;
  position: relative;
  top: 0.3em;
}

.title-with-emoji {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.title-with-emoji .emoji-title {
  height: 100px;
}

@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 .odd-wrapper {
  background-color: #2c2f33;
  background-image: linear-gradient(-90deg, #43b1ff00, #2c2f33 15%, #2c2f33 85%, #43b1ff00), url("../img/website_bg.png");
}
.dark .odd-wrapper.wobbly-bg::before {
  background-image: url("../img/wobby-lines-odd-dark.svg");
}
.dark .even-wrapper {
  background-color: #23272a;
  background-image: linear-gradient(-90deg, #43b1ff00, #23272a 15%, #23272a 85%, #43b1ff00), url("../img/website_bg.png");
}
.dark .even-wrapper.wobbly-bg::before {
  background-image: url("../img/wobby-lines-even-dark.svg");
}
.dark .dark-sweater-pose {
  visibility: visible;
}
.dark #sidebar-wrapper #left-sidebar {
  background-image: linear-gradient(-90deg, #2c2f33 55%, #43b1ff00), url("../img/website_bg.png");
}
.dark #sidebar-wrapper #left-sidebar .contents .entry .subtitle {
  color: #fff9;
}
.dark details.fancy-details > summary {
  background-color: #26272b;
}
.dark details.fancy-details {
  background-color: #202225;
}

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