:root {
  --primary-text-color: rgb(255, 255, 255);
  --hover-text-color: rgb(130, 130, 190);
  --dark-0: rgb(0, 0, 0);
  --dark-1: rgb(20, 20, 20);
  --light-0: rgb(255, 255, 255);
  --border-radius-strong: 20px;
  --border-radius-weak: 10px;
  --font-md: 20px;
  --font-sm: 16px;
}

body {
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif !important;
  background-color: #000000 !important;
  background-attachment: fixed;
  background-image: radial-gradient(circle farthest-corner at top left, rgb(25, 17, 138) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(circle farthest-side at top right, rgb(44, 1, 135) 0%, rgba(181, 176, 177, 0) 20%), radial-gradient(circle farthest-corner at top right, rgb(15, 0, 45) 0%, rgba(15, 0, 45, 0) 80%), radial-gradient(circle farthest-corner at bottom right, rgb(25, 1, 77) 0%, rgba(204, 104, 119, 0) 33%), radial-gradient(ellipse at bottom center, rgb(79, 26, 114) 0%, rgba(254, 43, 0, 0) 80%);
}
body .container {
  max-width: 1366px;
  margin: 0 auto;
}
body nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: radial-gradient(circle, var(--dark-1) 0%, var(--dark-0) 100%);
}
body nav .menu-icon {
  position: absolute;
  transition: all 0.3s linear;
}
body nav .menu-icon input[type=checkbox] {
  position: absolute;
}
body nav .menu-icon input[type=checkbox] + label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  width: 20px;
  cursor: pointer;
}
body nav .menu-icon input[type=checkbox] + label span {
  transition: 0.3s;
  position: relative;
}
body nav .menu-icon input[type=checkbox] + label span:before, body nav .menu-icon input[type=checkbox] + label span:after {
  transition: 0.3s;
  position: absolute;
  content: "";
}
body nav .menu-container {
  position: absolute;
  width: 250px;
  height: calc(100vh - 30px);
  color: var(--primary-text-color);
  background: rgba(0, 0, 0, 0.9);
  transition: all 0.3s linear;
  overflow-y: auto;
}
body nav #menu-logo {
  white-space: nowrap;
}
body nav #menu-logo a {
  font-weight: 800;
  font-size: 20px;
  color: var(--primary-text-color);
  text-decoration: none;
}
body nav #menu-logo a:hover {
  color: var(--hover-text-color);
}
body nav #menu-logo svg {
  max-height: 28px;
  margin-right: 12px;
  transition-duration: 0.8s;
  transition-property: transform;
}
body nav #menu-logo svg path {
  fill: var(--primary-text-color);
  transform-origin: center 150px;
}
body nav #menu-logo:hover svg {
  transform: rotate(360deg);
}
body nav #menu-logo:hover svg path {
  fill: var(--hover-text-color);
}
body nav #menu-games .menu-icon {
  top: 0;
  left: 10px;
}
body nav #menu-games .menu-icon--opened {
  left: 250px;
}
body nav #menu-games .menu-container {
  top: 30px;
  left: 0;
}
body nav #menu-games .menu-container--hidden {
  left: -250px;
}
body nav #menu-games .menu-content {
  margin: auto;
}
body nav #menu-games .menu-content img {
  height: 60px;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
body nav #menu-games .menu-content img:hover {
  outline: 2px solid var(--primary-text-color);
}
body nav #menu-games .menu-icon input[type=checkbox] {
  left: -100vw;
}
body nav #menu-games .menu-icon input[type=checkbox] + label span {
  width: 20px;
  height: 3px;
  background-color: var(--light-0);
}
body nav #menu-games .menu-icon input[type=checkbox] + label span:before {
  width: inherit;
  height: inherit;
  background: inherit;
  top: -8px;
}
body nav #menu-games .menu-icon input[type=checkbox] + label span:after {
  bottom: -8px;
  width: inherit;
  height: inherit;
  background: inherit;
}
body nav #menu-games .menu-icon input[type=checkbox]:checked + label span:before {
  transform: translate3d(-5px, -4px, 0px) rotate(-45deg) scaleX(0.7);
  top: 0;
}
body nav #menu-games .menu-icon input[type=checkbox]:checked + label span::after {
  bottom: 0;
  transform: translate3d(-5px, 4px, 0) rotate(45deg) scaleX(0.7);
}
body nav #menu-toolbox .menu-icon {
  top: 0;
  right: 10px;
}
body nav #menu-toolbox .menu-container {
  top: 30px;
  right: 0;
  min-width: 760px;
  max-width: 95%;
  resize: horizontal;
  direction: rtl;
}
body nav #menu-toolbox .menu-container::-webkit-scrollbar {
  background-color: #000;
  width: 10px;
  border-radius: 10px;
}
body nav #menu-toolbox .menu-container::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
}
body nav #menu-toolbox .menu-container::-webkit-scrollbar-thumb {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, rgb(79, 26, 114)), color-stop(1, rgb(44, 1, 135)));
  border-radius: 10px;
}
body nav #menu-toolbox .menu-container::-webkit-resizer {
  background-color: #000;
  background-image: url("../static/img/resize.png");
  background-size: contain;
}
body nav #menu-toolbox .menu-container > div {
  direction: ltr;
}
body nav #menu-toolbox .menu-container--hidden {
  right: -760px;
  max-width: 0 !important;
}
body nav #menu-toolbox .menu-content h4 {
  align-self: start;
  margin-right: 14px;
}
body nav #menu-toolbox .menu-content small {
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 18px;
}
body nav #menu-toolbox .menu-content textarea {
  width: 100%;
  background: rgb(30, 30, 30);
  border: 1px solid rgb(100, 100, 100);
  color: white;
}
body nav #menu-toolbox .menu-content ul {
  list-style: none;
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
}
body nav #menu-toolbox .menu-content ul li label {
  flex-grow: 1;
  max-width: calc(100% - 40px);
  padding-left: 10px;
  padding-right: 10px;
  line-break: strict;
}
body nav #menu-toolbox .menu-content ul li input[type=checkbox]:checked + label {
  text-decoration: line-through;
}
body nav #menu-toolbox .menu-content ul button {
  height: 20px;
  width: 20px;
  line-height: 18px;
  font-size: 13px;
  padding: 1px 1px 0 0;
  margin: 0;
  text-align: center;
}
body nav #menu-toolbox .menu-content button {
  height: 30px;
  width: 30px;
  line-height: 28px;
  font-size: 18px;
  background: rgb(15, 15, 15);
  color: rgb(50, 50, 50);
  border: 1px solid rgb(15, 15, 15);
  border-radius: 7px;
}
body nav #menu-toolbox .menu-content button:hover {
  color: white !important;
  border: 1px solid white;
}
body nav #menu-toolbox .menu-content button.active {
  border: 1px solid white;
  color: rgb(150, 150, 150);
}
body nav #menu-toolbox .menu-content .localstorage-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
body nav #menu-toolbox .menu-content .localstorage-modal-container {
  position: fixed;
  width: 500px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -250px;
  background: rgb(0, 0, 0);
  border-radius: 10px;
  z-index: 20;
}
body nav #menu-toolbox .menu-content .localstorage-modal-container textarea {
  resize: none;
}
body nav #menu-toolbox .menu-content .localstorage-tooltip {
  top: 8px;
  left: 90px;
  width: 220px;
  left: 90px;
  padding: 2px 7px;
  border: 1px solid rgb(150, 150, 150);
  border-radius: 7px;
  font-size: 11px;
}
body nav #menu-toolbox .menu-content .checklist-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
body nav #menu-toolbox .menu-content .checklist-modal-container {
  position: fixed;
  width: 500px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -250px;
  background: rgb(0, 0, 0);
  border-radius: 10px;
  z-index: 20;
}
body nav #menu-toolbox .menu-content .checklist-modal-container textarea {
  resize: none;
}
body nav #menu-toolbox .menu-content .checklists-container {
  -moz-column-gap: 8px;
       column-gap: 8px;
  orphans: 1;
  widows: 1;
}
body nav #menu-toolbox .menu-content .checklists-container:not([data-mode=edit]) button {
  display: none;
}
body nav #menu-toolbox .menu-content .checklists-container[data-column-number="1"] {
  -moz-column-count: 1;
       column-count: 1;
}
body nav #menu-toolbox .menu-content .checklists-container[data-column-number="2"] {
  -moz-column-count: 2;
       column-count: 2;
}
body nav #menu-toolbox .menu-content .checklists-container > div {
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body nav #menu-toolbox .menu-content .checklists-container input {
  margin-right: 10px;
}
body nav #menu-toolbox .menu-content .checklists-container li input[type=text] {
  max-height: 24px;
}
body nav #menu-toolbox .menu-icon input[type=checkbox] {
  left: -100vw;
}
body nav #menu-toolbox .menu-icon input[type=checkbox] + label span {
  width: 20px;
  height: 3px;
  background-color: var(--light-0);
  border-radius: 2px 2px 0 0;
}
body nav #menu-toolbox .menu-icon input[type=checkbox] + label span:before {
  width: 5px;
  height: inherit;
  background: inherit;
  top: -3px;
  margin-left: 8px;
}
body nav #menu-toolbox .menu-icon input[type=checkbox] + label span:after {
  bottom: -8px;
  width: inherit;
  height: inherit;
  background: inherit;
  border-radius: 0 0 2px 2px;
}
body nav #menu-toolbox .menu-icon input[type=checkbox]:checked + label span {
  border-radius: 0;
}
body nav #menu-toolbox .menu-icon input[type=checkbox]:checked + label span:before {
  width: 20px;
  transform: translate3d(-3px, -4px, 0px) rotate(45deg) scaleX(0.7);
  top: 0;
}
body nav #menu-toolbox .menu-icon input[type=checkbox]:checked + label span::after {
  bottom: 0;
  transform: translate3d(4px, 5px, 0) rotate(-45deg) scaleX(0.7);
  border-radius: 0;
}
body header .banner-hero {
  position: relative;
}
body header .banner-hero svg {
  height: 200px;
  margin-right: 24px;
}
body header .banner-hero svg path {
  fill: var(--primary-text-color);
  fill-opacity: 30%;
  transform-origin: center 187px;
}
body header .banner-hero .title-banner {
  margin-left: -100px;
  color: var(--primary-text-color);
  font-size: 64px;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}
body main {
  background: #22232a;
  box-shadow: rgb(0, 0, 0) 0px 3px 10px;
}
@media screen and (min-width: 1366px) {
  body main {
    border-radius: 20px;
  }
}
body main fieldset {
  margin-top: 20px;
  margin-bottom: 20px;
}
body main legend {
  font-size: 18px;
}
body main label img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
body main button {
  background-color: rgb(40, 40, 40);
  border-radius: 7px;
  border: 1px solid rgb(10, 10, 10);
  box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0 0 inset;
  box-sizing: border-box;
  color: var(--primary-text-color);
  cursor: pointer;
  padding: 6px 12px;
}
body main button:hover, body main button:focus, body main button:active {
  background-color: rgb(30, 30, 30);
  color: var(--primary-text-color);
}
body main button:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}
body main button:active {
  box-shadow: none;
}
body main button.active {
  background-color: transparent;
  border: 2px solid rgb(255, 255, 255);
  font-weight: 600;
  cursor: default;
}
body main button.active:hover, body main button.active:active, body main button.active:focus {
  background-color: transparent;
  box-shadow: none;
}
body main button.button--small {
  font-size: 12px;
  padding: 3px;
}
body main #intro {
  border-right: 1px solid #444;
  padding-right: 14px;
}
body main #game-list {
  margin: 20px;
}
body main #game-list h2 {
  color: var(--primary-text-color);
  text-align: center;
}
body main #game-list a {
  text-decoration: none;
}
body main #game-list img {
  border-radius: 10px;
  box-sizing: border-box;
}
body main #game-list img:hover {
  outline: 2px solid var(--primary-text-color);
}
body main .filters-container {
  padding-top: calc(var(--bs-gutter-x) * 0.5);
}
body main .filters-container .filters-legend {
  margin-bottom: 0.5rem;
}
body main .filters-container .filters-legend h4 {
  margin-bottom: 0 !important;
  margin-right: 0.5rem;
}
body main .filters-container .container {
  background: #2d2d34;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  padding: 14px;
  color: var(--primary-text-color);
}
body main .filters-container .container label {
  margin-left: 8px;
}
body main .cards-container {
  --gap: calc(var(--bs-gutter-x)* .5);
  --columns: 1;
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 1.5);
  gap: var(--gap);
}
@media (min-width: 768px) {
  body main .cards-container {
    --columns: 2;
  }
}
@media (min-width: 992px) {
  body main .cards-container {
    --columns: 3;
  }
}
@media (max-width: 768px) {
  body main .cards-container {
    padding-left: 0;
  }
}
body main .cards-container .container {
  width: calc(100% / var(--columns) - var(--gap) + var(--gap) / var(--columns));
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
body main .cards-container .container .card-name {
  max-width: 100%;
  max-height: 40px;
  overflow: visible;
  color: var(--primary-text-color);
  font-size: 20px;
  font-weight: 800;
  text-shadow: rgba(255, 255, 255, 0.3) 0px 3px 3px;
}
body main .cards-container .container .card-name .text--sm {
  font-size: 15px;
}
body main .cards-container .container .card-name .text--xs {
  font-size: 12px;
}
body main .cards-container .container .card-picture {
  padding: 20px;
}
body main .cards-container .container .card-picture img {
  max-height: 150px;
}
body main .cards-container .container .card-description {
  color: var(--primary-text-color);
}
body main .cards-container .container .card-description-infos {
  --gap: calc(var(--bs-gutter-x)* .5);
  --columns: 2;
  display: flex;
  gap: var(--gap);
}
body main .cards-container .container .card-description-infos span {
  width: calc(100% / var(--columns) - var(--gap) + var(--gap) / var(--columns));
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
body main .cards-container .container .card-description-infos span:first-child {
  text-align: right;
}
body main .cards-container .container .card-description-infos span:last-child {
  text-align: left;
}
body main .cards-container .container .card-description table {
  margin: auto;
  position: relative;
  z-index: 10;
  border-collapse: separate;
  border-spacing: 0;
}
body main .cards-container .container .card-description table thead {
  border: 1px solid rgb(30, 30, 30);
  border-bottom: 2px solid rgb(30, 30, 30);
}
body main .cards-container .container .card-description table tr {
  line-height: 20px;
}
body main .cards-container .container .card-description table tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
body main .cards-container .container .card-description table tr th {
  position: sticky;
  top: 0;
  background-color: rgb(40, 40, 40);
  border-top: 2px solid rgb(30, 30, 30);
  border-bottom: 2px solid rgb(30, 30, 30);
  border-right: 2px solid rgb(30, 30, 30);
}
body main .cards-container .container .card-description table tr th:first-child {
  border-left: 2px solid rgb(30, 30, 30);
}
body main .cards-container .container .card-description table tr td {
  border-bottom: 2px solid rgb(30, 30, 30);
  border-right: 2px solid rgb(30, 30, 30);
}
body main .cards-container .container .card-description table tr td:first-child {
  border-left: 2px solid rgb(30, 30, 30);
  max-width: 95px;
  font-size: 12px;
  padding-right: 8px;
  padding-left: 8px;
  background-color: rgb(40, 40, 40);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body main .cards-container .container .card-description table tr td:first-child:first-letter {
  text-transform: uppercase;
}
body main .cards-container .container .card-description img {
  width: 20px;
  height: 20px;
}
body main .cards-container .container .flip-card-back .card-name {
  margin-bottom: 5px;
}
body main .cards-container .container .flip-card-back .card-description {
  text-align: left;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100% - 40px);
}
body main .cards-container .container .flip-card-back .card-description::-webkit-scrollbar {
  background-color: #000;
  width: 4px;
  border-radius: 10px;
}
body main .cards-container .container .flip-card-back .card-description::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
}
body main .cards-container .container .flip-card-back .card-description::-webkit-scrollbar-thumb {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.5, rgb(79, 26, 114)), color-stop(1, rgb(44, 1, 135)));
  border-radius: 10px;
}
body main #monsters-cards .container {
  height: 300px;
}
body main #animals-cards .container {
  height: 200px;
  --columns: 2;
}
@media (min-width: 992px) {
  body main #animals-cards .container {
    --columns: 4;
  }
}
body main #animals-cards .container .card-picture {
  padding: 10px;
}
body main #animals-cards .container .card-picture img {
  max-height: 100px;
}
body main .flip-card {
  height: 100%;
  background-color: transparent;
  perspective: 1000px;
}
body main .flip-card:not([disabled]) {
  cursor: pointer;
}
body main .flip-card--flipped .flip-card-inner {
  transform: rotateY(180deg);
}
body main .flip-card-inner {
  position: relative;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
body main .flip-card-back {
  transform: rotateY(180deg);
}
body main .flip-card-front, body main .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 10px;
  background: #2d2d34;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  backface-visibility: hidden;
}
body main .flip-card-front:hover, body main .flip-card-back:hover {
  box-shadow: rgb(0, 0, 0) 0px 3px 10px;
}
body main .text-switch {
  position: relative;
  height: 20px;
  width: 40px;
}
body main .text-switch-button {
  position: relative;
  width: 40px;
  height: 20px;
}
body main .text-switch-checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
body main .text-switch-circle {
  z-index: 2;
}
body main .text-switch-circle:before {
  content: attr(data-text-false);
  position: absolute;
  top: 2px;
  left: 3px;
  width: 16px;
  height: 16px;
  color: #fff;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding-top: 3.5px;
  background-color: rgb(68, 34, 141);
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}
body main .text-switch-background {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.3s ease all;
  z-index: 1;
}
body main .text-switch-checkbox:checked {
  /*
  & ~ .text-switch-background {
    background-color: #fcebeb;
  }
  */
}
body main .text-switch-checkbox:checked + .text-switch-circle:before {
  content: attr(data-text-true);
  left: 21px;
  background-color: rgb(26, 75, 139);
}
body main .text-switch-button, body main .text-switch-background {
  border-radius: 100px;
}
body main .text-switch-container, body main .text-switch-circle, body main .text-switch-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body main .text-switch-circle, body main .text-switch-circle:before, body main .text-switch-background {
  transition: 0.3s ease all;
}
body main .conversation {
  display: flex;
  flex-direction: column;
  color: white;
  font-size: 14px;
}
body main .conversation p {
  border-radius: 30px;
  padding: 8px 16px;
  width: -moz-fit-content;
  width: fit-content;
}
body main .conversation p.text-left {
  background-color: #1D1E25;
}
body main .conversation p.text-right {
  align-self: flex-end;
  background-color: #2d2d34;
}
body main .conversation .text-notice {
  color: #444;
  font-size: 10px;
}
body footer {
  background: radial-gradient(circle, rgb(20, 20, 20) 0%, rgb(0, 0, 0) 100%);
  color: var(--primary-text-color);
  font-size: 18px;
  line-height: 18px;
  z-index: 10;
}/*# sourceMappingURL=style.css.map */