@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  font-family: "Roboto", Tahoma, sans-serif;
  font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
}

body {
  background-color: hsl(30, 26%, 49%);
}

p {
  line-height: 1.2em;
}

.websiteContent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
  background-color: hsl(37, 28%, 70%);
  width: 85%;
  height: 100%;
  max-width: 1445px;
  max-height: 100%;
}

footer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  padding: 1rem 0;
  background-color: hsl(15, 23%, 23%);
  width: 100%;
  height: 100%;
}

.footerContent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 75%;
  height: 100%;
}
.footerContent__box {
  padding: 0 1rem;
  color: hsl(56, 57%, 92%);
  font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footerContent__box {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}

.gameData__title {
  padding-top: clamp(1.2656rem, 1.0944rem + 0.856vw, 1.7578rem);
  font-size: clamp(1.6018rem, 1.2036rem + 1.9909vw, 2.7466rem);
  font-weight: bold;
}

.gameData {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0rem clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
  width: 100%;
  height: 100%;
}
.gameData__info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  margin: 1rem;
  padding: 1.25rem;
}
.gameData__info.-key {
  min-width: 20rem;
  min-height: auto;
}
.gameData__info img {
  width: clamp(1.125rem, 1.0272rem + 0.4891vw, 1.4063rem);
  height: clamp(1.125rem, 1.0272rem + 0.4891vw, 1.4063rem);
  vertical-align: text-top;
}
@media (max-width: 992px) {
  .gameData {
    flex-direction: column;
  }
}

.headerBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.headerBox > :nth-child(1) {
  align-self: center;
  text-align: center;
}

.tooltip {
  position: relative;
  border-bottom: 3px dotted hsl(15, 23%, 23%);
}
.tooltip__text {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1rem;
  width: max-content;
  height: max-content;
  max-width: 18rem;
  max-height: auto;
  border-radius: 0.3rem;
  background-color: hsl(15, 23%, 23%);
  font-size: 1rem;
  color: white;
  transform: translateX(-100%) translateY(-25%);
}

.tooltip:hover .tooltip__text {
  visibility: visible;
}

.jumpLink {
  color: black;
  text-decoration: none;
}

.inlineList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
  text-align: center;
}
.inlineList__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-shrink: 1;
  width: auto;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
.inlineList.-alternatingColor1 > .inlineList__item:nth-child(even), .inlineList.-alternatingColor2 > .inlineList__item:nth-child(odd) {
  background-color: hsl(56, 57%, 92%);
}
.inlineList.-alternatingColor2 > .inlineList__item:nth-child(even), .inlineList.-alternatingColor1 > .inlineList__item:nth-child(odd) {
  background-color: hsl(51, 47%, 86%);
}

.carousel {
  position: relative;
}
.carousel__slide {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}
.carousel__slide > img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.carousel__slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}
.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
  border: none;
  background: none;
  background-color: rgba(0, 0, 0, 0.05);
  width: auto;
  height: 100%;
  color: rgba(0, 0, 0, 0.7);
  z-index: 2;
  font-size: clamp(1.6018rem, 1.2036rem + 1.9909vw, 2.7466rem);
  cursor: pointer;
}
.carousel__button:hover, .carousel__button:focus {
  color: black;
  background-color: rgba(0, 0, 0, 0.2);
}
.carousel__button:focus {
  outline: 1px solid black;
}
.carousel__button.-prev {
  left: 0rem;
}
.carousel__button.-next {
  right: 0rem;
}

.rating {
  font-family: inherit;
}
.rating_full {
  background: linear-gradient(to right, hsl(15, 23%, 23%), hsl(15, 23%, 23%) 100%, #ddd 100%, #ddd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating_half {
  background: linear-gradient(to right, hsl(15, 23%, 23%), hsl(15, 23%, 23%) 50%, #ddd 50%, #ddd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rating_empty {
  background: linear-gradient(to right, hsl(15, 23%, 23%), hsl(15, 23%, 23%) 0%, #ddd 0%, #ddd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ratingTick {
  position: relative;
  width: 0px;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-left: var(--rating);
}

.gameDropdown {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.gameDropdown[open] .dropdownHeader__arrow {
  transform: rotate3d(1, 0, 0, 180deg);
}
.gameDropdown[open] .dropdownHeader__closed {
  display: none;
}
.gameDropdown[open] .dropdownHeader__open {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}

.tableHeader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: hsl(44, 43%, 77%);
  width: 100%;
  height: auto;
}
.tableHeader__center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.tableHeader__labels {
  width: auto;
  height: 4.5rem;
  max-width: 92%;
  max-height: auto;
  font-weight: bold;
}
.tableHeader__labels.-small {
  display: none;
}

.gameDropdown, .tableHeader__center {
  width: 90%;
  height: auto;
}
@media (max-width: 1200px) {
  .gameDropdown, .tableHeader__center {
    width: 100%;
    height: auto;
  }
}

.dropdownHeader {
  display: inline-flex;
  background-color: hsl(51, 47%, 86%);
  width: 100%;
  height: 4.5rem;
  list-style: none;
}
.dropdownHeader__information {
  min-width: 92%;
  min-height: auto;
}
.dropdownHeader__closed, .dropdownHeader__open, .dropdownHeader__stay {
  width: 100%;
  height: 100%;
}
.dropdownHeader__open, .dropdownHeader__ratingShort {
  display: none;
}
.dropdownHeader__stay {
  font-size: clamp(1.125rem, 1.0272rem + 0.4891vw, 1.4063rem);
}
@media (max-width: 576px) {
  .dropdownHeader__stay {
    font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
  }
}
@media (max-width: 920px) {
  .dropdownHeader__ratingLong {
    display: none;
  }
  .dropdownHeader__ratingShort {
    display: flex;
  }
}
.dropdownHeader__openItem {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: hsl(51, 47%, 86%);
  text-align: center;
}
.dropdownHeader__openItem:nth-child(1) {
  margin: 2rem 0 0 2rem;
  width: 30%;
  height: 100%;
}
.dropdownHeader__openItem:nth-child(2) {
  margin: 1rem 0 0 2rem;
  width: 20%;
  height: 130%;
}
.dropdownHeader__openItem:nth-child(3) {
  margin: 2rem 0 0 2rem;
  width: 25%;
  height: 100%;
}
.dropdownHeader__arrowBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: hsl(51, 47%, 86%);
}
.dropdownHeader__arrow {
  width: 50%;
  height: auto;
  transition: 0.2s;
}

.dropdownBody {
  background-color: hsl(44, 43%, 77%);
  padding: 2rem 0;
  width: 100%;
  height: auto;
}
@media (max-width: 1400px) {
  .dropdownBody {
    padding: 0 0 1rem 0;
  }
}
.dropdownBody__header {
  padding-top: 0.5rem;
  width: auto;
  height: 3rem;
}
.dropdownBody__header > .dropdownBody__item {
  padding: 0.5rem;
  margin: 0.5rem;
  background-color: hsl(56, 57%, 92%);
}
.dropdownBody__row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .dropdownBody__row {
    flex-direction: column;
  }
}
.dropdownBody__column {
  flex-basis: 50%;
  width: 100%;
  height: 100%;
}
.dropdownBody__item {
  padding: 1.5rem;
  background-color: hsl(56, 57%, 92%);
  margin-bottom: 1rem;
  width: 80%;
  height: auto;
}
.dropdownBody__item.-list {
  padding: 0;
  height: 4rem;
}
.dropdownBody__imageBox {
  margin-bottom: 5%;
  width: 70%;
  height: auto;
  border-radius: 1rem;
  background-color: hsl(51, 47%, 86%);
  aspect-ratio: 1/1;
  overflow: hidden;
}

.gameInformation {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 0.5rem 0;
  width: 90%;
  height: auto;
}
.gameInformation__row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
.gameInformation__column {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.gameInformation__image {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border-radius: 2rem;
}

.gradientBar {
  width: 100%;
  height: 1rem;
  background: linear-gradient(to right, rgb(255, 57, 57), rgb(255, 210, 96), rgb(57, 169, 57));
}

.modificationIcon {
  position: relative;
  width: 0;
  height: 0;
  color: transparent;
}
.modificationIcon.-green {
  text-shadow: 0 0 0 rgb(57, 169, 57);
}
.modificationIcon.-yellow {
  text-shadow: 0 0 0 rgb(255, 210, 96);
}
.modificationIcon.-red {
  text-shadow: 0 0 0 rgb(255, 57, 57);
}

.questionsList {
  list-style: decimal;
}
.questionsList li {
  margin-bottom: 0.5rem;
}

.mt--1 {
  margin-top: -1rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mt-0_5 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-auto {
  margin-top: auto;
}

.mb--1 {
  margin-bottom: -1rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mb-0_5 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-auto {
  margin-bottom: auto;
}

.ml--1 {
  margin-left: -1rem;
}

.ml-0 {
  margin-left: 0rem;
}

.ml-0_5 {
  margin-left: 0.5rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-5 {
  margin-left: 5rem;
}

.ml-auto {
  margin-left: auto;
}

.mr--1 {
  margin-right: -1rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mr-0_5 {
  margin-right: 0.5rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mr-auto {
  margin-right: auto;
}

.mx--1 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.mx-0_5 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-2 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-5 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my--1 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.my-0_5 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.m--1 {
  margin: -1rem;
}

.m-0 {
  margin: 0rem;
}

.m-0_5 {
  margin: 0.5rem;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-5 {
  margin: 5rem;
}

.m-auto {
  margin: auto;
}

.pt-0_5 {
  padding-top: 0.5rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-1_5 {
  padding-top: 1.5rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-auto {
  padding-top: auto;
}

.pb-0_5 {
  padding-bottom: 0.5rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-1_5 {
  padding-bottom: 1.5rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-auto {
  padding-bottom: auto;
}

.pl-0_5 {
  padding-left: 0.5rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-1_5 {
  padding-left: 1.5rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-auto {
  padding-left: auto;
}

.pr-0_5 {
  padding-right: 0.5rem;
}

.pr-0 {
  padding-right: 0rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-1_5 {
  padding-right: 1.5rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-auto {
  padding-right: auto;
}

.px-0_5 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-1_5 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-auto {
  padding-left: auto;
  padding-right: auto;
}

.py-0_5 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-1_5 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}

.p-0_5 {
  padding: 0.5rem;
}

.p-0 {
  padding: 0rem;
}

.p-1 {
  padding: 1rem;
}

.p-1_5 {
  padding: 1.5rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-auto {
  padding: auto;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-inline {
  display: inline;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-inline-flex {
  display: inline-flex;
}

.d-inline-grid {
  display: inline-grid;
}

.d-table {
  display: table;
}

.d-inline-table {
  display: inline-table;
}

.d-list-item {
  display: list-item;
}

.d-none {
  display: none;
}

.d-contents {
  display: contents;
}

.fb-auto {
  flex-basis: auto;
}

.fb-90 {
  flex-basis: 90%;
}

.fb-80 {
  flex-basis: 80%;
}

.fb-70 {
  flex-basis: 70%;
}

.fb-60 {
  flex-basis: 60%;
}

.fb-55 {
  flex-basis: 55%;
}

.fb-50 {
  flex-basis: 50%;
}

.fb-40 {
  flex-basis: 40%;
}

.fb-45 {
  flex-basis: 45%;
}

.fb-24 {
  flex-basis: 24%;
}

.fb-22 {
  flex-basis: 22%;
}

.fb-20 {
  flex-basis: 20%;
}

.fb-18 {
  flex-basis: 18%;
}

.fb-14 {
  flex-basis: 14%;
}

.fb-12 {
  flex-basis: 12%;
}

.fb-8 {
  flex-basis: 8%;
}

.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
}

.w-83 {
  width: 83%;
}

.w-80 {
  width: 80%;
}

.w-70 {
  width: 70%;
}

.w-60 {
  width: 60%;
}

.w-50 {
  width: 50%;
}

.w-40 {
  width: 40%;
}

.w-30 {
  width: 30%;
}

.w-25 {
  width: 25%;
}

.w-20 {
  width: 20%;
}

.w-10 {
  width: 10%;
}

.w-auto {
  width: auto;
}

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

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

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

.ta-justify {
  text-align: justify;
}

.as-flex-start {
  align-self: flex-start;
}

.as-flex-end {
  align-self: flex-end;
}

.as-center {
  align-self: center;
}

.as-baseline {
  align-self: baseline;
}

.as-stretch {
  align-self: stretch;
}

.bg-lightest {
  background-color: hsl(0, 0%, 100%);
}

.bg-lighter {
  background-color: hsl(56, 57%, 92%);
}

.bg-light {
  background-color: hsl(51, 47%, 86%);
}

.bg-base {
  background-color: hsl(44, 43%, 77%);
}

.bg-dark {
  background-color: hsl(37, 28%, 70%);
}

.bg-darker {
  background-color: hsl(30, 26%, 49%);
}

.bg-darkest {
  background-color: hsl(15, 23%, 23%);
}

.fs-100 {
  font-size: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
}

.fs-150 {
  font-size: clamp(1.125rem, 1.0272rem + 0.4891vw, 1.4063rem);
}

.fs-200 {
  font-size: clamp(1.2656rem, 1.0944rem + 0.856vw, 1.7578rem);
}

.fs-250 {
  font-size: clamp(1.4238rem, 1.1548rem + 1.3451vw, 2.1973rem);
}

.fs-350 {
  font-size: clamp(1.6018rem, 1.2036rem + 1.9909vw, 2.7466rem);
}

.fs-400 {
  font-size: 4rem;
}

.xl-content {
  display: none;
}

.xxl-content, .xl-content {
  width: 100%;
  height: 100%;
}

@media (max-width: 1400px) {
  .xxl-content {
    display: none;
  }
  .xl-content {
    display: block;
  }
}
.border {
  border: 1px solid black;
}

.bold {
  font-weight: bold;
}

.img-150 > img {
  width: clamp(1.125rem, 1.0272rem + 0.4891vw, 1.4063rem);
  height: clamp(1.125rem, 1.0272rem + 0.4891vw, 1.4063rem);
}

.w-max {
  width: max-content;
}

.flex-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}

.flex-column {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.gap-1 {
  gap: 1rem;
}

.rounded {
  border-radius: 1rem;
}

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