@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Josefin+Sans&family=Montserrat&family=Yeseva+One&display=swap");
@font-face {
  font-family: "Poppins-Regular";
  src: url("Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --secondary-font: "Montserrat", sans-serif;
  --main-font: "Poppins-Regular", sans-serif;
  --main-blue: #66fcf1;
  --main-white: #fff;
  --main-black: #0b0c10;
  --secondary-blue: #45a29e;
  --secondary-grey: #c5c6c7;
  --secondary-black: #1f2833;
}

/* width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--secondary-black);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  background-color: var(--main-black);
  color: var(--main-white);
  font-family: var(--main-font);
  font-size: 10pt;
  margin: 0;
  /* 1. Ensure this sits above everything when visible */
}
body h1 {
  color: var(--main-blue);
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
}
body h1 > span {
  text-transform: uppercase;
}
body nav {
  display: flex;
  justify-content: space-between;
}
body nav .login, body nav > form .logout {
  padding: 0.5rem;
  background: none;
  text-transform: uppercase;
  color: var(--secondary-grey);
  transition: 0.4s;
}
body nav .login:hover, body nav > form .logout:hover {
  color: var(--main-blue);
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
  transition: 0.4s;
  background-color: unset;
}
body .trademark {
  color: #696a6a;
  padding-right: 1rem;
}
body .neon {
  font-size: 14pt;
  border-radius: 7px;
  padding: 9px;
  color: var(--main-blue);
  position: absolute;
  left: 50%;
  border: 1px solid;
  bottom: -31px;
  transform: translate(-50%, -50%);
  font-weight: 400;
  letter-spacing: 8px;
  margin: 0;
  text-decoration: unset;
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
}
@media (max-width: 1921px) {
  body .neon {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 1821px) {
  body .neon {
    display: none;
    visibility: hidden;
  }
}
body .flicker-slow {
  animation: flicker 3s linear infinite;
}
body .flicker-fast {
  animation: flicker 1s linear infinite;
}
@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 0.9;
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.7;
  }
}
body .modal,
body .modal-help {
  position: absolute;
  z-index: 10000; /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
body .modal.is-visible,
body .modal-help.is-visible {
  visibility: visible;
  position: fixed;
}
body .modal-overlay,
body .modal-help-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
body .modal.is-visible body .modal-overlay,
body .modal.is-visible body .modal-help-overlay,
body .modal-help.is-visible body .modal-overlay,
body .modal-help.is-visible body .modal-help-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
body .modal-wrapper,
body .modal-help-wrapper {
  position: absolute;
  z-index: 9999;
  left: 40%;
  width: 45%;
  margin-left: -16em;
  background-color: rgba(0, 0, 0, 0);
}
body .modal-transition,
body .modal-help-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
body .modal.is-visible .modal-transition, body .modal.is-visible .modal-help-transition,
body .modal-help.is-visible .modal-transition,
body .modal-help.is-visible .modal-help-transition {
  transform: translateY(0);
  opacity: 1;
}
body .modal.is-visible .modal-wrapper,
body .modal-help.is-visible .modal-wrapper {
  padding-left: 1rem;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  text-align: center;
}
body .modal.is-visible .modal-wrapper > .modal-header > button,
body .modal-help.is-visible .modal-wrapper > .modal-header > button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
}
body .modal.is-visible .modal-wrapper > .modal-header > button > i,
body .modal-help.is-visible .modal-wrapper > .modal-header > button > i {
  color: var(--secondary-grey);
  font-size: 12pt;
}
body .modal.is-visible .modal-wrapper > .modal-header > button:hover > i,
body .modal-help.is-visible .modal-wrapper > .modal-header > button:hover > i {
  color: var(--main-blue);
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
}
body .modal.is-visible .modal-wrapper > .modal-body,
body .modal-help.is-visible .modal-wrapper > .modal-body {
  width: 100%;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content {
  display: flex;
  flex-direction: column;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .bio,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .bio {
  border-radius: 15px;
  padding-bottom: 2rem;
  background: linear-gradient(180deg, RGBA(31, 40, 51, 1), RGBA(11, 12, 16, 1)) fixed;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: auto;
  text-align: left;
  margin-top: 1rem;
  border-bottom: 6px solid palevioletred;
  border-left: 6px solid palevioletred;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .bio > ul > h1,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .bio > ul > h1 {
  text-shadow: unset;
  color: palevioletred;
  margin-bottom: 0.3rem;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .bio > ul > li a,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .bio > ul > li a {
  text-decoration: unset;
  color: var(--secondary-blue);
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .bio > ul > li a:hover,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .bio > ul > li a:hover {
  color: var(--main-blue);
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .bio img,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .bio img {
  height: 170px;
  margin-right: 4rem;
  margin-left: 3rem;
  border-radius: 50%;
  box-shadow: 0 0 5px palevioletred, 0 0 10px palevioletred, 0 0 20px palevioletred, 0 0 40px palevioletred;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk {
  padding: 1rem;
  border-radius: 15px;
  padding-top: 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  max-height: 515px;
  background: linear-gradient(180deg, RGBA(31, 40, 51, 1), RGBA(11, 12, 16, 1)) fixed;
  border-bottom: 6px solid var(--main-blue);
  border-left: 6px solid var(--main-blue);
  margin-top: 1rem;
  overflow: auto;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk > h1,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk > h1 {
  text-shadow: unset;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk details,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk details {
  padding-top: 1rem;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk details summary,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk details summary {
  color: var(--secondary-blue);
  cursor: pointer;
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk details summary:hover,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk details summary:hover {
  color: var(--main-blue);
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk details[open] summary,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content .nerd-talk details[open] summary {
  color: var(--main-blue);
}
body .modal.is-visible .modal-wrapper > .modal-body > .modal-content > a,
body .modal-help.is-visible .modal-wrapper > .modal-body > .modal-content > a {
  display: block;
  margin: 17% auto 0 auto;
  width: 128px;
}
body .error {
  text-align: left;
  padding: 1rem;
  display: flex;
  font-size: 8pt;
  align-items: center;
  color: var(--secondary-grey);
}
body .error > i {
  color: var(--main-blue);
  font-size: 13pt;
  padding-right: 0.5rem;
}
body button,
body .button {
  background-color: var(--secondary-blue);
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 12pt;
  color: var(--main-white);
  border-radius: 30px;
  padding: 1rem;
  margin: 1rem;
  cursor: pointer;
  transition: 0.4s;
}
body button:hover,
body .button:hover {
  transition: 0.4s;
  background-color: var(--main-blue);
  color: var(--secondary-black);
}
body .secondary-button {
  height: 30px;
  font-size: unset;
  display: flex;
  align-items: center;
  background-color: unset;
  border: unset;
}
body .secondary-button:hover {
  background: unset;
  border: unset;
  color: var(--main-blue);
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
  transition: 0.4s;
}
body .sticky {
  width: 100%;
  justify-content: center;
  display: flex;
  position: sticky;
  top: 0px;
  background-color: var(--main-black);
  flex-direction: column;
  align-items: center;
}
body .sticky input {
  background-color: unset;
  border: unset;
  border-bottom: 1px solid var(--main-white);
  font-family: inherit;
  padding-top: 1rem;
  color: var(--main-white);
}
body ul {
  margin: 0;
  padding: 0;
}
body ul li {
  list-style: none;
}
body input[type=text]:focus {
  outline: none;
}
body input[type=text].inputFilterItem {
  background-color: var(--main-black);
  border: none;
  font-family: var(--main-font);
  color: var(--main-white);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body input[type=text].inputSteamId {
  background-color: var(--secondary-black);
  border: none;
  border-bottom: 1px solid var(--secondary-blue);
  margin: 1rem;
  color: var(--main-white);
  font-family: var(--main-font);
}
body .tag {
  background-color: var(--secondary-grey);
  color: var(--main-black);
  font-family: var(--secondary-font);
  opacity: 70%;
  padding: 0 9px;
  font-size: 9.5pt;
  font-weight: 600;
  border-radius: 5px;
}
body #feels-tag {
  margin: 2px;
}
body .feels-select {
  visibility: hidden;
  height: 0.1px;
}
body #feels-select-label {
  display: block;
  cursor: pointer;
}
body #mainGameHeader {
  height: 155px;
}
body .error-404 {
  position: relative;
  text-align: center;
}
body .error-404__overlay {
  position: absolute;
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
  color: var(--main-blue);
  font-size: 70pt;
  left: 47%;
  top: 47%;
  display: flex;
  flex-direction: column;
}
body .shuffle {
  max-width: 1810px;
  width: 97%;
  background-color: var(--secondary-black);
  border-radius: 10px;
  margin: auto;
  margin-top: 1rem;
  padding: 1rem;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
body .shuffle ::-webkit-scrollbar {
  width: 4px;
}
body .shuffle ::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
body .shuffle ::-webkit-scrollbar-thumb {
  background: var(--main-black);
  border-radius: 5px;
}
body .shuffle ::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body .shuffle__content {
  display: flex;
  width: 100%;
  height: 750px;
}
body .shuffle__content-input {
  width: 20%;
  height: 768px;
  border-right: 1px solid var(--secondary-blue);
  padding: 0 1.5rem 0 0;
}
body .shuffle__content-input__top {
  font-family: var(--secondary-font);
  color: var(--secondary-grey);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
body .shuffle__content-input__top__filter-selection {
  overflow-x: auto;
  display: inline-flex;
  flex-wrap: wrap;
}
body .shuffle__content-input__top__filter-selection-item {
  list-style: none;
  padding: 0 5px;
  margin: 0 2px;
  background-color: grey;
  font-size: 10pt;
  margin-bottom: 2px;
}
body .shuffle__content-input__top__filter-remove {
  cursor: pointer;
}
body .shuffle__content-input__top__help {
  position: absolute;
  width: 370px;
  background-color: var(--secondary-black);
}
body .shuffle__content-input__top__help, body .shuffle__content-input__top__filters {
  display: none;
}
body .shuffle__content-input__top__help details > summary, body .shuffle__content-input__top__filters details > summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
body .shuffle__content-input__top__help details > summary::marker,
body .shuffle__content-input__top__help details > summary::-webkit-details-marker, body .shuffle__content-input__top__filters details > summary::marker,
body .shuffle__content-input__top__filters details > summary::-webkit-details-marker {
  display: none;
}
body .shuffle__content-input__top__help > details[open] p a, body .shuffle__content-input__top__filters > details[open] p a {
  color: var(--secondary-blue);
  text-decoration: none;
}
body .shuffle__content-input__top__help > details[open] p a:hover, body .shuffle__content-input__top__filters > details[open] p a:hover {
  color: var(--main-blue);
}
body .shuffle__content-input__top__help > details[open] summary::after, body .shuffle__content-input__top__filters > details[open] summary::after {
  content: "-";
  display: block;
}
body .shuffle__content-input__top__help > details, body .shuffle__content-input__top__filters > details {
  padding: 0.5rem 0;
}
body .shuffle__content-input__top__help > details > summary, body .shuffle__content-input__top__filters > details > summary {
  border-bottom: 1px solid var(--secondary-blue);
  color: var(--secondary-grey);
}
body .shuffle__content-input__top__help > details > summary::after, body .shuffle__content-input__top__filters > details > summary::after {
  content: "+";
  display: block;
}
body .shuffle__content-input__top__filters {
  position: absolute;
  height: 720px;
  overflow: auto;
  width: 330px;
  background-color: rgba(11, 12, 16, 0.99);
  border-radius: 15px;
  margin-top: 0.4rem;
  padding: 1rem;
  z-index: 1000;
  padding-top: 0;
}
body .shuffle__content-input__top__filters > .form__filters {
  list-style: none;
}
body .shuffle__content-input__top .active {
  color: var(--secondary-blue);
}
body .shuffle__content-input__top .filters {
  display: flex;
}
body .shuffle__content-input__top .filters::after {
  content: "+";
  padding-left: 4px;
  display: block;
  font-size: 11pt;
}
body .shuffle__content-input__top .filters,
body .shuffle__content-input__top .help {
  transition: 0.4s;
}
body .shuffle__content-input__top .filters:hover,
body .shuffle__content-input__top .help:hover {
  transition: 0.4s;
  color: var(--secondary-blue);
}
body .shuffle__content-input__top > span {
  cursor: pointer;
}
body .shuffle__content-input__middle {
  text-align: center;
  padding: 10rem 0;
}
body .shuffle__content-input__middle > .shuffle-all {
  margin-bottom: 2rem;
}
body .shuffle__content-input__middle > div > span {
  color: var(--main-blue);
  font-weight: 600;
  font-size: 16pt;
  font-family: var(--secondary-font);
}
body .shuffle__content-input__middle > .shuffle-block {
  display: flex;
  flex-direction: column;
  max-width: 240px;
  margin: auto;
}
body .shuffle__content-input__middle > .shuffle-block > input[type=text] {
  margin-top: 2rem;
  margin-bottom: 0;
}
body .shuffle__content-output {
  overflow: auto;
}
body .shuffle__content-output-loader {
  display: none;
}
body .shuffle__content-output-bottom {
  margin-right: 1rem;
  margin-left: 1rem;
  display: flex;
  padding-top: 2rem;
  height: 735px;
  justify-content: space-between;
}
body .shuffle__content-output-bottom__details {
  width: 400px;
}
body .shuffle__content-output-bottom__details-socials {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}
body .shuffle__content-output-bottom__details-socials li {
  list-style: none;
  color: var(--secondary-grey);
}
body .shuffle__content-output-bottom__details-socials li > span {
  color: var(--main-white);
  font-weight: 600;
  font-family: var(--secondary-font);
}
body .shuffle__content-output-bottom__details-socials > img {
  width: 300px;
  padding: 1rem 0;
}
body .shuffle__content-output-bottom__details-socials > span {
  font-family: var(--secondary-font);
  font-weight: 600;
  padding-bottom: 1rem;
}
body .shuffle__content-output-bottom__about {
  width: 930px;
  max-height: 700px;
  padding: 1rem;
  overflow: auto;
  background: linear-gradient(180deg, RGBA(31, 40, 51, 1), RGBA(11, 12, 16, 1)) fixed;
  background-size: cover;
  text-align: center;
  display: flex;
  flex-direction: column;
}
body .shuffle__content-output-bottom__about > li {
  list-style: none;
  color: var(--main-blue);
  padding: 2rem 0 1rem 0;
}
body .shuffle__content-output-top {
  margin-right: 1rem;
  margin-left: 1rem;
  height: 100%;
  overflow: auto;
  height: 727px;
  display: flex;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--secondary-blue);
}
body .shuffle__content-output-top__images {
  width: 100%;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-self: self-start;
  /* cell number */
}
body .shuffle__content-output-top__images .carousel {
  margin-bottom: 20px;
  width: 930px;
  height: auto;
  padding-left: 1rem;
  margin: auto;
  margin-bottom: 1rem;
}
body .shuffle__content-output-top__images .navigation {
  height: 80px;
  width: 100px;
  filter: brightness(60%);
}
body .shuffle__content-output-top__images .carousel-cell {
  max-width: 890px;
  width: 890px;
  height: 500px;
  max-height: 500px;
  transition: 0.4s;
  padding-left: 0.5rem;
}
body .shuffle__content-output-top__images .carousel-cell:hover {
  transition: 0.4s;
}
body .shuffle__content-output-top__images .carousel-nav .carousel-cell {
  height: 100px;
  width: 165px;
  padding-right: 10px;
}
body .shuffle__content-output-top__images .carousel-nav .carousel-cell.is-nav-selected {
  filter: unset;
}
body .shuffle__content-output-top__specification {
  max-width: 430px;
  max-height: 750px;
  width: 450px;
  overflow: auto;
  margin-top: 1rem;
}
body .shuffle__content-output-top__specification-bio {
  padding: 1rem 0;
  text-align: left;
}
body .shuffle__content-output-top__specification-lang {
  padding-top: 1.5rem;
}
body .shuffle__content-output-top__specification-lang > span {
  font-family: var(--secondary-font);
  font-weight: 600;
}
body .shuffle__content-output-top__specification-support {
  padding: 1rem;
  margin: 1rem 0;
  background: linear-gradient(90deg, RGBA(31, 40, 51, 1), RGBA(11, 12, 16, 1)) fixed;
  margin-right: 1rem;
  overflow: auto;
  max-height: 53px;
}
body .shuffle__content-output-top__specification-support > span {
  font-family: var(--secondary-font);
  font-weight: 600;
}
body .shuffle__content-output-top__specification-support > li > img {
  height: 15px;
  width: auto;
}
body .shuffle__content-output-top__specification-details {
  border-top: 1px solid var(--secondary-blue);
  padding-top: 1.5rem;
}
body .shuffle__content-output-top__specification-details > li {
  color: var(--secondary-grey);
}
body .shuffle__content-output-top__specification-details > li:first-of-type {
  color: var(--main-white);
}
body .shuffle__content-output-top__specification-details > li > span {
  color: var(--main-white);
  font-family: var(--secondary-font);
  font-weight: 600;
}
body .shuffle__content-output-top__specification-filters {
  text-align: center;
}
body .shuffle__content-output-top__specification-filters > img {
  max-width: 325px;
  padding-bottom: 1rem;
}
body .shuffle__content-output-top__specification-filters > span {
  font-family: var(--secondary-font);
  font-weight: 600;
}
body .shuffle__content-output-top__specification-filters > ul {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
  overflow: auto;
  max-height: 50px;
}
body .shuffle__content-output-top__specification-filters > ul > li {
  align-self: center;
  list-style: none;
  flex-basis: calc(33.3333333333% + 33px);
  display: inline;
  margin: 2px;
}
body .feelings {
  border-left: 3px solid var(--main-blue);
  border-bottom: 3px solid var(--main-blue);
  height: 845px;
  padding-left: 1rem;
  margin: 5.5rem auto;
  max-width: 1810px;
}
body .feelings__bottom {
  display: flex;
  overflow: auto;
  height: 100%;
}
body .feelings__bottom > .carousel > .flickity-viewport {
  height: 626px !important;
}
body .feelings__bottom-item {
  transition: 0.4s;
  filter: brightness(85%);
  text-align: center;
  height: 705px;
  width: 545px;
  list-style: none;
  background: linear-gradient(180deg, RGBA(31, 40, 51, 1), RGBA(11, 12, 16, 1)) fixed;
  padding: 1rem;
  margin: 1rem;
  border-radius: 35px;
}
body .feelings__bottom-item:hover {
  box-shadow: 0 0 2.5px var(--main-blue), 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue);
  transition: 0.4s;
  filter: brightness(100%);
}
body .feelings__bottom-item:hover .feelings__bottom-item__about > h1 {
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
}
body .feelings__bottom-item:hover .feelings__bottom-item__about > h1 > a {
  color: var(--main-blue);
}
body .feelings__bottom-item:hover .feelings__bottom-item__icon {
  text-shadow: 0 0 5px #ffcb9a, 0 0 10px #ffcb9a, 0 0 20px #ffcb9a, 0 0 40px #ffcb9a;
}
body .feelings__bottom-item:hover .feelings__bottom-item__icon > i {
  color: #ffcb9a;
}
body .feelings__bottom-item__price {
  color: var(--secondary-blue);
}
body .feelings__bottom-item__icon {
  text-align: right;
  padding-bottom: 1rem;
  font-size: 7pt;
  display: flex;
  flex-direction: column;
  align-items: end;
}
body .feelings__bottom-item__icon > i {
  color: grey;
}
body .feelings__bottom-item__icon .tooltip {
  display: none;
}
body .feelings__bottom-item__icon:hover .tooltip {
  display: block;
  width: 100%;
  background-color: blue;
  height: 92px;
  font-size: 10pt;
  overflow: auto;
  text-align: left;
}
body .feelings__bottom-item > a > img {
  width: 300px;
}
body .feelings__bottom-item__spec {
  margin-bottom: 2rem;
  background-color: var(--main-black);
}
body .feelings__bottom-item__store-view {
  display: inline;
  padding: 1rem;
  cursor: pointer;
  color: var(--main-blue);
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
  font-family: var(--secondary-font);
  font-weight: 600;
  float: right;
}
body .feelings__bottom-item__store-view:hover > i {
  transition: 0.4s;
  transform: translateX(5px);
}
body .feelings__bottom-item__store-view > i {
  padding-right: 1rem;
  transition: 0.4s;
}
body .feelings__bottom-item__spec {
  padding-top: 0.5rem;
  display: flex;
  justify-content: space-evenly;
  height: 95px;
  margin-top: 1rem;
  overflow: auto;
}
body .feelings__bottom-item__spec-support {
  width: 270px;
}
body .feelings__bottom-item__about {
  border-top: 1px solid var(--secondary-blue);
  max-height: 150px;
  overflow: auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
body .feelings__bottom-item__about > h1 {
  text-shadow: unset;
}
body .feelings__bottom-item__about > h1 > a {
  text-decoration: none;
  color: grey;
}
body .feelings__bottom-item__tags {
  text-align: left;
  padding: 1rem;
  display: flex;
  max-height: 30px;
  flex-wrap: wrap;
  overflow: auto;
}
body .feelings__bottom-item__tags > span {
  font-family: var(--secondary-font);
  font-weight: 600;
}
body .feelings__bottom > ul {
  overflow-x: auto;
}
body .feelings__bottom > ul > li {
  height: 100%;
  padding: 1rem;
  margin: 1rem;
  width: 300px;
  background: linear-gradient(180deg, RGBA(31, 40, 51, 1), RGBA(11, 12, 16, 1)) fixed;
  display: inline-block;
}
body .feelings__top {
  display: flex;
  flex-direction: row;
  /* Hide The disclosure widget: */
  /* Detache details content */
  /* Closing the dropdown on clicking anywhere else */
}
body .feelings__top > h1 {
  margin-top: 0;
}
body .feelings__top .dropdown {
  display: inline-block;
  position: relative;
  z-index: 100;
}
body .feelings__top .dropdown summary {
  list-style: none;
  cursor: pointer;
}
body .feelings__top .dropdown summary::-webkit-details-marker {
  display: none;
}
body .feelings__top .dropdown .dropdown-content {
  position: absolute;
  min-inline-size: -moz-max-content;
  min-inline-size: max-content;
  background-color: white;
  /* In case the dropdown should open to the left: */
  /* right: 0; */
}
body .feelings__top .dropdown details[open] summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  cursor: default;
}
body .feelings__top .dropdown .dropdown-trigger {
  padding: 0.5rem 0;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--secondary-blue);
  margin-left: 1rem;
  color: var(--secondary-grey);
  width: 100%;
}
body .feelings__top .dropdown .dropdown-trigger > i {
  color: var(--main-blue);
  transition: 0.4s;
}
body .feelings__top .dropdown details[open] i {
  transform: rotate(180deg);
}
body .feelings__top .dropdown .dropdown-content {
  background-color: var(--main-black);
  padding: 0.5rem;
  margin-left: 0.6rem;
  height: 360px;
}
body .feelings__top .dropdown .dropdown-content > ul > li {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--secondary-blue);
  width: 140px;
  height: 15px;
}
body .feelings__top .dropdown .dropdown-content > ul > li:first-of-type {
  border: unset;
}
body .feelings__top .dropdown .dropdown-content > ul > li:last-of-type {
  margin-bottom: 0;
}
body .services {
  height: 600px;
  margin: 4rem 0;
}
body .services__parallax {
  min-height: 515px;
  padding: 4rem;
  display: flex;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)) fixed, url("https://images.unsplash.com/photo-1579567761406-4684ee0c75b6?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1887&q=80");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: self-end;
}
body .services__parallax-info > i {
  color: var(--secondary-blue);
  transition: 0.4s;
  cursor: pointer;
}
body .services__parallax-info > i:hover {
  color: var(--main-blue);
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
  transition: 0.4s;
}
body .services__parallax-servers {
  width: 463px;
  border-radius: 49px;
  margin: auto;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, RGBA(31, 40, 51, 1), RGBA(11, 12, 16, 1)) fixed;
}
body .services__parallax-servers > h1 {
  position: absolute;
  text-align: center;
}
body footer {
  background-color: var(--secondary-black);
  width: 100%;
  display: flex;
  padding: 1rem 0;
  justify-content: space-between;
  color: var(--secondary-grey);
}
body footer > ul > li {
  display: inline;
  padding: 1rem;
  cursor: pointer;
}
body footer > ul > li a {
  color: unset;
  text-decoration: none;
}
body footer > ul > li:hover {
  color: var(--main-blue);
  text-shadow: 0 0 5px var(--main-blue), 0 0 10px var(--main-blue), 0 0 20px var(--main-blue), 0 0 40px var(--main-blue);
}
body footer > ul > li:hover > i {
  transition: 0.4s;
  transform: translateX(5px);
}
body footer > ul > li > i {
  padding-right: 1rem;
  transition: 0.4s;
}
body footer > .sup-nerd {
  color: var(--secondary-black);
}
body footer > .sup-nerd > span {
  color: #ffcb9a;
  padding-right: 1rem;
}
@media (max-width: 576px) {
  body #mainGameDescFull img {
    width: 100%;
  }
  body .modal {
    display: none;
  }
  body .feelings__bottom-item {
    width: 100%;
  }
  body .feelings__bottom-item__video {
    width: 240px !important;
  }
  body .shuffle__content {
    display: flex;
    flex-direction: column;
  }
  body .shuffle__content-input {
    width: 100%;
    border-right: unset;
    padding: unset;
  }
  body .shuffle__content-input__middle {
    padding: 1rem 0;
  }
  body .shuffle__content-output-bottom {
    flex-direction: column-reverse;
    margin: 0;
  }
  body .shuffle__content-output-bottom__details {
    width: 100%;
  }
  body .shuffle__content-output-bottom__about {
    width: 100%;
    padding: unset;
  }
  body .shuffle__content-output-top {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }
  body .shuffle__content-output-top__specification {
    width: 100%;
  }
  body .shuffle__content-output-top__images {
    display: none;
  }
}/*# sourceMappingURL=css.css.map */