@import url("https://fonts.googleapis.com/css2?family=Italianno&family=Lato:ital,wght@0,400;0,700;1,300&display=swap");
*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Lobster Two';
  src: local("Lobster Two"), local("LobsterTwo"), url("/fonts/subset-LobsterTwo.woff2") format("woff2"), url("/fonts/subset-LobsterTwo.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lobster Two';
  src: local("Lobster Two Italic"), local("LobsterTwo-Italic"), url("/fonts/subset-LobsterTwo-Italic.woff2") format("woff2"), url("/fonts/subset-LobsterTwo-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

a {
  color: #c3c3c3;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.6px;
}

a.quickLink {
  color: #ce9e55;
}

a:hover, a:focus {
  color: #fff;
}

h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  background-image: linear-gradient(66deg, #ce9e55 50%, #d9b57d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.3rem;
    margin: 1rem 0;
  }
}

h2 {
  font-size: 2rem;
  color: #e2e2e2;
  margin-bottom: 0.5rem;
  letter-spacing: 1.6px;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  color: #12a9c4;
  font-size: 1.5rem;
}

h5 {
  font-weight: 400;
}

h5.mb {
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  font-weight: 400;
}

.warning {
  margin: 1rem 0 0;
  color: #f53027;
}

.warning[data-state=hidden] {
  display: none;
}

.warning[data-state=shown] {
  display: block;
}

p {
  max-width: 80ch;
  line-height: 1.4rem;
  font-size: 1.1rem;
  color: #d9d9d9;
}

@media screen and (max-width: 767px) {
  p {
    line-height: 1.2rem;
    font-size: 1rem;
  }
}

p + p {
  margin-top: 1rem;
}

p.extraInfo {
  color: #3ec412;
  text-align: center;
  font-size: 1.05rem;
}

p#version {
  color: #c3c3c3;
  margin-top: 0.5rem;
  font-size: 1rem;
}

p.center {
  text-align: center;
  width: 100%;
}

p.gold {
  color: #ce9e55;
}

p.blue {
  color: #12a9c4;
}

p.italic {
  font-style: italic;
}

p.mt {
  margin-top: 0.5rem;
}

p#newPB {
  display: none;
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p#newPB::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -55px;
  width: 45px;
  height: 2px;
  background: linear-gradient(-90deg, #d9d9d9 0%, transparent 100%);
}

p#newPB::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -55px;
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, #d9d9d9 0%, transparent 100%);
}

#skip_link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}

button, .button {
  background: #0b0b0b;
  padding: 0.5rem 1rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #d9d9d9;
  border: 1px solid #d9d9d9;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

button:hover, button:focus, .button:hover, .button:focus {
  border-color: #ce9e55;
  color: #ce9e55;
}

button.style1, .button.style1 {
  border: 2px solid #ce9e55;
  font-weight: 400;
  color: #d9d9d9;
  border-radius: 0;
  padding: 0.5rem 1.4rem;
}

button.style1::before, button.style1::after, .button.style1::before, .button.style1::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  height: 100%;
  width: 35%;
  z-index: -1;
  background: #ce9e55;
  transform: skewX(45deg) translate(-50%, 0%);
}

button.style1::after, .button.style1::after {
  left: unset;
  right: -20%;
  transform: skewX(45deg) translate(50%, 0%);
}

button.style1:hover, button.style1:focus, .button.style1:hover, .button.style1:focus {
  color: #ce9e55;
}

input {
  padding: 0.3rem;
  border-radius: 8px;
}

select {
  background: #080808;
  color: #d9d9d9;
}

#mobileHeader {
  display: none;
  width: 100vw;
  height: 55px;
  background-color: #080808;
  position: sticky;
  top: 0;
  z-index: 98;
  box-shadow: 0 -4px 7px 0px #e2e2e2;
}

@media screen and (max-width: 767px) {
  #mobileHeader {
    display: block;
  }
}

#hamburger {
  display: none;
  position: fixed;
  left: 10px;
  top: 14px;
  width: 35px;
  height: 30px;
  z-index: 99;
  transition: transform ease-out 0.5s;
  border-radius: 8px;
  border: 1px solid #ce9e55;
  background-color: #030303;
  padding: 0;
}

@media screen and (max-width: 767px) {
  #hamburger {
    display: block;
  }
}

#hamburger:focus {
  outline: none;
}

#hamburger::before, #hamburger::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 15%;
  width: 70%;
  height: 2px;
  border-radius: 5px;
  background-color: #ce9e55;
  transition: transform ease-out 0.5s, background-color ease-out 0.5s;
}

#hamburger::after {
  top: 60%;
  width: 55%;
}

#hamburger[data-state=active] {
  transform: rotate(-180deg);
  border-color: #e2e2e2;
}

#hamburger[data-state=active]::before {
  transform: rotate(45deg) translate(15%, 180%);
  background-color: #e2e2e2;
}

#hamburger[data-state=active]::after {
  transform: rotate(-45deg) translate(10%, -140%);
  background-color: #e2e2e2;
  width: 68%;
}

#hamburger[data-state=inactive] {
  transform: rotate(0deg);
}

#hamburger[data-state=inactive]::before, #hamburger[data-state=inactive]::after {
  transform: rotate(0deg);
  background-color: #ce9e55;
}

.navigation_card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 8px;
  border: 3px solid #909090;
  padding: 0.5rem 1rem 1rem;
  z-index: 1;
  position: relative;
  width: 600px;
  max-width: 100%;
}

.navigation_card.purple {
  border-color: #0e3649;
}

.navigation_card h3 {
  margin-left: auto;
  color: #c3c3c3;
  font-size: 1.2rem;
}

.navigation_card a {
  margin-left: auto;
  margin-bottom: 0.2rem;
}

.navigation_card p {
  color: #c3c3c3;
  margin: 1rem 0;
  font-size: 1rem;
}

.navigation_card p.personalBest {
  color: #12a9c4;
  font-style: italic;
  font-weight: bold;
  font-size: 0.9rem;
}

.navigation_card .pbRow {
  width: 100%;
  align-items: center;
}

.navigation_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background-image: var(--url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  filter: brightness(0.1);
}

@media screen and (max-width: 767px) {
  .navigation_card::before {
    filter: brightness(0.15);
  }
}

.doubleCard {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  align-items: stretch;
  margin: 1rem 0;
}

.doubleCard .navigation_card {
  width: calc(300px - 0.5rem);
  max-width: 100%;
  margin: 0 0.5rem;
}

.doubleCard .navigation_card a {
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  .doubleCard {
    flex-direction: column;
    margin: 0;
  }
  .doubleCard .navigation_card {
    width: 100%;
    margin: 1rem 0;
  }
}

#continueButton {
  margin-top: 1.5rem;
  width: 200px;
  max-width: 90%;
}

#continueButton[data-state=hidden] {
  display: none;
}

#continueButton[data-state=shown] {
  display: inline-block;
}

.backButton {
  margin-top: 2rem;
  color: #c3c3c3;
  font-weight: 400;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  user-select: none;
}

#timer {
  position: relative;
}

#timer .extraTime {
  display: inline-block;
  position: absolute;
  top: -15px;
  font-size: 1.2rem;
  margin: 0 1.2rem;
  font-weight: 800;
  z-index: 99;
  opacity: 0;
}

#timer .extraTime:first-of-type {
  color: #f53027;
  left: -3rem;
}

#timer .extraTime:last-of-type {
  color: #12a9c4;
  right: -3rem;
}

#timer .extraTime[data-state=animating] {
  transition: 0.5s transform, 1s opacity;
  opacity: 0;
  transform: translateY(-40px);
}

@media screen and (max-width: 767px) {
  #timer .extraTime[data-state=animating] {
    transform: translateY(-20px);
  }
}

#timer .extraTime[data-state=ready] {
  transition: 0s;
  opacity: 1;
  transform: translateY(0);
}

.loadingSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 5rem 0 2rem;
}

.loadingSection .loadingRow {
  padding: 2rem 0;
}

.loadingSection .loadingRow span {
  display: inline-block;
  width: 8px;
  height: 30px;
  border-radius: 8px;
  margin: 0 0.3rem;
  background-color: #f53027;
  animation: grow 2.5s ease-in-out 0s infinite forwards;
  transition: 0.25s transform;
}

.loadingSection .loadingRow span:nth-of-type(2) {
  animation-delay: 0.25s;
  background-color: #3ec412;
}

.loadingSection .loadingRow span:nth-of-type(3) {
  animation-delay: 0.5s;
  background-color: #12a9c4;
}

.loadingSection .loadingRow span:nth-of-type(4) {
  animation-delay: 0.75s;
  background-color: #12a9c4;
}

.loadingSection .loadingRow span:nth-of-type(5) {
  animation-delay: 1s;
  background-color: #c3c3c3;
}

@keyframes grow {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(2);
  }
  100% {
    transform: scaleY(1);
  }
}

#logoutForm button {
  border: none;
  color: #c3c3c3;
  font-size: 1.2rem;
  font-weight: 800;
  font-style: italic;
  background: transparent;
  padding: 0 0.5rem;
  margin: 0;
  transition: 0.2s color;
}

#logoutForm button:hover, #logoutForm button:focus {
  color: #f53027;
}

form label {
  color: white;
  color: white;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

form input {
  width: 100%;
  border-color: #080808;
  background-color: white;
  color: black;
  border-width: 1px;
  border-style: ridge;
  margin-bottom: 1rem;
}

form input[data-state=error] {
  border-color: #f53027;
  background-color: #1c0201;
  color: white;
  border-width: 2px;
}

form input[data-state=normal] {
  border-color: #080808;
  background-color: white;
  color: black;
  border-width: 1px;
}

form select {
  padding: 0.3rem;
  text-align-last: center;
  border-radius: 8px;
}

form button {
  margin-top: 1.5rem;
}

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

form .formInfo {
  color: #c3c3c3;
  margin: 0.4rem;
  font-size: 0.9rem;
}

span.delimiter {
  display: inline-block;
  margin: 1.5rem 0;
  position: relative;
  width: 80%;
}

span.delimiter::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, #000 0%, #888 20%, #888 80%, #0000 100%);
  filter: opacity(0.8);
}

span.delimiter.small {
  margin: 1rem 0;
}

span.delimiter.gold::before {
  background: linear-gradient(90deg, #000 0%, #ce9e55 20%, #ce9e55 80%, #0000 100%);
}

#audioControls i {
  border: 1px solid black;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url("/img/audiocontrols.webp");
  background-position: center;
  background-size: cover;
  margin-left: 1rem;
  transition: transform 0.3s;
  position: relative;
}

#audioControls i:hover, #audioControls i:focus {
  transform: scale(1.1);
}

#audioControls i:hover[data-state=off], #audioControls i:focus[data-state=off] {
  filter: opacity(0.6);
}

#audioControls i::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 20%;
  width: 102%;
  height: 5px;
  background-color: transparent;
  transform-origin: 0% 100%;
  transform: rotate(-45deg);
}

#audioControls[data-state=off] i {
  filter: grayscale(0.8) opacity(0.3);
}

#audioControls[data-state=off] i::after {
  background-color: #080808;
}

@media screen and (max-width: 767px) {
  #audioControls i {
    position: fixed;
    top: 14px;
    right: 10px;
    z-index: 99;
  }
}

.slidingPanel {
  overflow-y: auto;
  height: 100%;
  width: 100%;
  position: absolute;
  padding-top: 5rem;
  top: 0;
  left: 0;
  background: #080808;
  z-index: 1;
  transition: transform 0.3s;
  border: 1px solid #c3c3c3;
}

.slidingPanel[data-state=left] {
  transform: translateX(-50%);
}

.slidingPanel[data-state=right] {
  transform: translateX(50%);
}

.slidingPanel[data-state=normal] {
  transform: translateX(0%);
}

.slidingPanel#roundStatisticsSection {
  z-index: 2;
}

.slidingPanel#roundStatisticsSection .row-between.importantStats + .row {
  margin-top: 1.2rem;
}

.slidingPanel#roundStatisticsSection .row-between.importantStats label, .slidingPanel#roundStatisticsSection .row-between.importantStats p {
  font-size: 1.1rem;
}

.slidingPanel#roundStatisticsSection .row-between[data-state=red] label, .slidingPanel#roundStatisticsSection .row-between[data-state=red] p {
  color: #f53027;
}

.slidingPanel#roundStatisticsSection .row-between[data-state=yellow] label, .slidingPanel#roundStatisticsSection .row-between[data-state=yellow] p {
  color: #d4e727;
}

.slidingPanel#roundStatisticsSection .row-between[data-state=green] label, .slidingPanel#roundStatisticsSection .row-between[data-state=green] p {
  color: #3ec412;
}

.slidingPanel#roundStatisticsSection .row-between[data-state=na] label, .slidingPanel#roundStatisticsSection .row-between[data-state=na] p {
  color: #c3c3c3;
}

.slidingPanel#wrongAnswersSection {
  padding-top: 3rem;
}

.slidingPanel#wrongAnswersSection .wrongAnswer {
  padding: 1rem 0 2rem;
  border-bottom: 1px solid #c3c3c3;
  width: 80%;
  position: relative;
}

.slidingPanel#wrongAnswersSection .wrongAnswer:first-of-type {
  margin-top: 2rem;
}

.slidingPanel#wrongAnswersSection .wrongAnswer:last-of-type {
  border-bottom: none;
}

.slidingPanel#wrongAnswersSection .wrongAnswer::before {
  counter-increment: wrongAnswer;
  content: "#" counter(wrongAnswer);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.8rem;
  color: #c3c3c3;
}

.slidingPanel#wrongAnswersSection .card {
  --dim: 3vw;
}

@media screen and (max-width: 767px) {
  .slidingPanel#wrongAnswersSection .card {
    --dim: 12vw;
  }
}

.slidingPanel#wrongAnswersSection .card p {
  margin: 0;
  font-size: 1.2rem;
  top: 3px;
  color: #030303;
}

.slidingPanel#wrongAnswersSection p {
  margin: 0.5rem 0;
  color: #c3c3c3;
}

.slidingPanel#wrongAnswersSection p.winningHand {
  margin-bottom: 0;
  color: white;
}

.slidingPanel#wrongAnswersSection .choice {
  margin: 0 0.5rem;
}

#gameOver {
  display: none;
  width: 100%;
}

#gameOver #gameOverContainer {
  border: 1px solid #888;
  background: #000a;
  width: 600px;
  max-width: 100%;
  height: 500px;
  max-height: 70vh;
  position: relative;
}

#gameOver #gameOverContainer .buttonRow {
  width: 100%;
  z-index: 10;
  align-items: center;
}

#gameOver #gameOverContainer .buttonRow button {
  flex: 1;
  border-width: 2px;
  transition: border-color;
  border-radius: 0;
}

#gameOver #gameOverContainer .buttonRow button[data-state=active] {
  color: #d9d9d9;
}

#gameOver #gameOverContainer .buttonRow button[data-state=inactive] {
  color: #888;
  border-color: #888;
}

#gameOver #gameOverContainer .buttonRow button:hover, #gameOver #gameOverContainer .buttonRow button:focus {
  border-color: #d9d9d9;
  color: #d9d9d9;
}

.studyOptions {
  width: 200px;
  max-width: 90%;
}

.studyOptions form button {
  margin: 1rem 0;
}

#messageBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 70%;
  max-width: 300px;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 2px ridge #c3c3c3;
  padding: 0.5rem;
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translate(-50%, 0);
  background: #080808;
  z-index: 99;
  border-radius: 8px;
  transition: transform 0.3s;
}

#messageBox[data-state=open] {
  transform: translate(-50%, 0);
}

#messageBox[data-state=closed] {
  transform: translate(-50%, -150%);
}

#messageBox p {
  margin: 0.3rem;
}

#messageBox #title {
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.2px;
  margin-bottom: 1rem;
}

#messageBox #title[data-state=error] {
  color: #f53027;
}

#messageBox #title[data-state=info] {
  color: #3ec412;
}

#messageBox #text {
  color: #c3c3c3;
}

#messageBox #closeButton {
  font-size: 0.7rem;
  padding: 0.3rem;
  border-color: #888;
  margin-top: 0.5rem;
  border-width: 2px;
  border-radius: 6px;
}

#messageBox #closeButton:hover, #messageBox #closeButton:focus {
  border-color: #c3c3c3;
}

#gameSection {
  width: 800px;
  max-width: 90%;
}

#correctAnswer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #c3c3c3;
  width: 450px;
  max-width: 100%;
}

#correctAnswer[data-state=hidden] {
  display: none;
}

#correctAnswer[data-state=shown] {
  display: flex;
}

.explanation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(145deg, #040404 0%, #0d0d0d 100%);
  padding: 2.5rem 4rem;
  border: 5px double #171717;
  border-radius: 20px;
}

.explanation h1 {
  text-align: left;
  margin-bottom: 2rem;
}

.explanation .task {
  color: #12a9c4;
}

.explanation .rank {
  color: #ce9e55;
  font-size: 1rem;
}

.explanation h2 {
  margin-bottom: 0.2rem;
}

.explanation .hand {
  margin-bottom: 2rem;
}

.explanation .hand .handDescRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin: 0.5rem 0 0;
}

.explanation .hand .handDescRow p {
  max-width: 30ch;
  font-size: 0.9rem;
}

.explanation .hand .handDescRow p:not(.handExample) {
  margin-left: 1rem;
}

.explanation .handExample {
  font-style: italic;
  font-size: 0.8rem;
}

.explanation .explanationImg {
  border-radius: 5px;
  border: 5px ridge #555555;
  margin: 2rem auto 1rem;
}

.explanation .tip {
  color: #3ec412;
  text-align: center;
  width: 100%;
}

.explanation.scenario {
  align-items: flex-start;
}

.explanation.scenario .task {
  margin: 1rem 0 0;
  text-align: center;
}

.explanation.scenario p:first-child {
  font-style: italic;
  font-size: 0.9rem;
  font-weight: bold;
  color: #ce9e55;
}

.explanation.scenario .chipPool h3 {
  color: #ce9e55;
}

.explanation.scenario .chipPool ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin: 1rem 3rem;
}

.explanation.scenario .chipPool ul li {
  position: relative;
}

.explanation.scenario .chipPool ul li + li {
  margin-left: 2rem;
}

.explanation.scenario .chipPool ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -1.4em;
  width: 1em;
  height: 1em;
  background-color: transparent;
  transform: translateY(-50%);
  border-radius: 50%;
}

.explanation.scenario .chipPool ul li[data-value=red]::before {
  background-color: #f53027;
}

.explanation.scenario .chipPool ul li[data-value=blue]::before {
  background-color: #12a9c4;
}

.explanation.scenario .chipPool ul li[data-value=green]::before {
  background-color: #3ec412;
}

.explanation.scenario .chipPool ul li[data-value=orange]::before {
  background-color: #f84;
}

.explanation.scenario .chipPool ul li[data-value=pink]::before {
  background-color: #bb10ca;
}

.explanation.scenario .chipPool ul li[data-value=grey]::before {
  background-color: #888;
}

.explanation.scenario #rules {
  margin: 1rem 1rem;
}

.explanation.scenario #rules li {
  list-style: none;
}

.explanation.scenario #rules li + li {
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .explanation {
    padding: 2rem;
  }
  .explanation .task, .explanation .tip {
    text-align: center;
  }
  .explanation img {
    width: 95%;
  }
  .explanation .hand .handDescRow {
    flex-direction: column;
  }
  .explanation .hand .handDescRow p {
    max-width: 100%;
  }
  .explanation .hand .handDescRow p:not(.handExample) {
    margin: 1rem 0 0;
  }
  .explanation.scenario {
    align-items: center;
  }
  .explanation.scenario p:first-child {
    text-align: center;
  }
  .explanation.scenario h2 {
    font-size: 1.4rem;
    text-align: center;
  }
  .explanation.scenario .chipPool ul {
    flex-direction: column;
    margin: 1rem 2rem;
  }
  .explanation.scenario .chipPool ul li + li {
    margin: 0.2rem 0 0;
  }
}

#listOfModules {
  margin: 2rem 0;
}

#listOfModules a {
  border: 1px solid #c3c3c3;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  margin: 0 0.5rem;
}

@media screen and (max-width: 767px) {
  #listOfModules {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    margin: 1rem 0;
  }
  #listOfModules a {
    width: 45%;
    margin: 0.5rem;
    text-align: center;
  }
}

#quickPath {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: end;
  margin: auto auto 0.5rem 1rem;
  flex-wrap: wrap;
}

#quickPath a, #quickPath p {
  line-height: 1px;
  font-size: 0.8rem;
  color: #888;
  margin: 0 0.05rem;
}

#quickPath a:hover, #quickPath a:focus, #quickPath p:hover, #quickPath p:focus {
  color: #c3c3c3;
}

@media screen and (max-width: 767px) {
  #quickPath {
    margin: 0 0 1rem;
  }
  #quickPath a, #quickPath p {
    margin: 0;
  }
}

/***********************Start Popup CSS/***********************/
.overlay {
  width: 100vw;
  height: 100vh;
  background-color: #000c;
  z-index: 90;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  /*******STATE CHANGES********/
}

.overlay[data-state=hidden] {
  display: none;
}

.overlay[data-state=shown] {
  display: flex;
}

.popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 600px;
  width: auto;
  background: #080808;
  padding: 1rem;
  border-radius: 8px;
  transition: opacity 0.3s;
  backface-visibility: hidden;
  perspective: 1000px;
  opacity: 0;
  z-index: -1;
  max-height: 55vh;
  overflow-y: auto;
}

.popup[data-state=hidden] {
  pointer-events: none;
}

.popup[data-state=shown] {
  transition: opacity 0.5s;
  opacity: 1;
  z-index: 92;
}

.popup #confirm {
  margin: 1rem 0 0.3rem;
}

.popup section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 1rem 0;
}

.popup label {
  text-align: center;
}

.popup button {
  margin: 1rem 0.5rem;
}

.popup p {
  max-width: 60ch;
  text-align: center;
}

.popup h2 {
  font-size: 1.2rem;
}

.popup .buttonRow {
  margin-top: 1rem;
}

.popup .buttonRow button {
  margin-top: 0;
}

.popup #cancel {
  margin: 0.2rem 0 0;
}

@media screen and (max-width: 767px) {
  .popup {
    top: 25%;
    left: 5%;
    transform: translate(0, 0);
    width: 90%;
    min-width: 90%;
    max-height: calc(60vh - 10%);
    overflow-y: auto;
    justify-content: flex-start;
  }
  .popup form input {
    max-width: 80%;
  }
  .popup .buttonRow button {
    margin: 0 0.3rem;
  }
  .popup button {
    margin: 0.4rem 0;
    width: 100%;
    font-size: 0.9rem;
  }
}

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

.popupContent[data-state=hidden] {
  display: none;
}

.popupContent[data-state=shown] {
  display: flex;
}

.waiterOverlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000e;
  z-index: 99;
}

.waiterOverlay[data-state=hidden] {
  display: none;
}

.waiterOverlay[data-state=shown] {
  display: flex;
}

#handChoices .container, #nlhHandChoiceSection .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

#handChoices .potentialHand, #nlhHandChoiceSection .potentialHand {
  margin: 0.5rem;
  border: 1px solid transparent;
  padding: 1rem;
  border-radius: 8px;
}

#handChoices .potentialHand[data-state=chosen], #nlhHandChoiceSection .potentialHand[data-state=chosen] {
  border-color: #d9d9d9;
}

#handChoices .potentialHand[data-state=unchosen], #nlhHandChoiceSection .potentialHand[data-state=unchosen] {
  border-color: transparent;
}

#handChoices .potentialHand[data-state=correct], #nlhHandChoiceSection .potentialHand[data-state=correct] {
  border-color: #12a9c4;
}

#handChoices .potentialHand[data-state=incorrect], #nlhHandChoiceSection .potentialHand[data-state=incorrect] {
  border-color: #f53027;
}

#rakeInfo {
  margin: 0.5rem 0 1rem;
}

#rakeInfo p {
  margin: 0 1rem;
  font-size: 1 0.5em;
}

#calculator .screen {
  border: 2px solid #12a9c4;
  background: #3333;
  width: 94%;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 8px 8px 0 0;
}

#calculator .screen .screenPanel {
  flex: 1;
  text-align: center;
}

#calculator .screen #questionScreen {
  border-right: 1px solid #c3c3c3;
}

#calculator .screen #answerScreen {
  border-left: 1px solid #c3c3c3;
}

#calculator .button {
  margin: 0.2rem;
  border-color: #888;
  border-radius: 4px;
  border-width: 2px;
  color: #d9d9d9;
}

#calculator .button:hover, #calculator .button:focus {
  border-color: #12a9c4;
  border-radius: 4px;
  border-width: 2px;
  color: #fff;
}

#sandbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
}

#sandbox[data-state=hidden] {
  display: none;
}

#sandbox[data-state=shown] {
  display: flex;
}

.chipPot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
}

.chipPot .chipStack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0.5rem 0.1rem;
}

.chipPot .chipStack .chip {
  display: inline-block;
  border: 0.5px solid #1c0201;
  height: 5px;
  width: 25px;
  background-color: #f53027;
  border-radius: 3px;
}

.chipPot .chipStack .chip[data-value=red] {
  border-color: #1c0201;
  background-color: #f53027;
}

.chipPot .chipStack .chip[data-value=blue] {
  border-color: black;
  background-color: #12a9c4;
}

.chipPot .chipStack .chip[data-value=green] {
  border-color: #206709;
  background-color: #3ec412;
}

.chipPot .chipStack .chip[data-value=orange] {
  border-color: #dd5000;
  background-color: #f84;
}

.chipPot .chipStack .chip[data-value=pink] {
  border-color: #64096b;
  background-color: #bb10ca;
}

.chipPot .chipStack .chip[data-value=grey] {
  border-color: #555555;
  background-color: #888;
}

.chipPot .chipStack .amount {
  font-size: 0.7rem;
  color: #888;
}

#chipLegend {
  margin-bottom: 1rem;
}

#chipLegend p {
  margin: 0 1rem;
  position: relative;
}

#chipLegend p::before {
  content: '';
  display: inline-block;
  position: absolute;
  background-color: black;
  width: 0.8em;
  height: 0.8em;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  border-radius: 50%;
}

#chipLegend p[data-state=red]::before {
  background-color: #f53027;
}

#chipLegend p[data-state=blue]::before {
  background-color: #12a9c4;
}

#chipLegend p[data-state=green]::before {
  background-color: #3ec412;
}

#chipLegend p[data-state=orange]::before {
  background-color: #f84;
}

#chipLegend p[data-state=pink]::before {
  background-color: #bb10ca;
}

#chipLegend p[data-state=grey]::before {
  background-color: #888;
}

.answerRow {
  margin-top: 1rem;
}

.answerRow p {
  margin-right: 0.4rem;
}

.answerRow input {
  max-width: 50%;
  padding: 0.2rem;
}

#nameOfModule {
  color: #ce9e55;
  font-weight: 400;
  text-align: center;
}

#nameOfModule[data-state=hidden] {
  display: none;
}

#nameOfModule[data-state=shown] {
  display: flex;
}

.winningCardsRow {
  margin-top: 1.5rem;
}

#handChoices .handName {
  margin: 0.5rem;
  border: 1px solid #888;
  padding: 1rem;
  border-radius: 8px;
  min-width: 150px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

#handChoices .handName[data-state=chosen] {
  border-color: #12a9c4;
}

#handChoices .handName[data-state=unchosen] {
  border-color: #888;
}

#handChoices .handName[data-state=correct] {
  border-color: #12a9c4;
}

#handChoices .handName[data-state=incorrect] {
  border-color: #f53027;
}

.fiveCardHandChoice {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin: 0.5rem;
  border: 1px solid transparent;
  padding: 1rem;
  border-radius: 8px;
  min-width: 150px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.fiveCardHandChoice[data-state=chosen] {
  border-color: #12a9c4;
}

.fiveCardHandChoice[data-state=unchosen] {
  border-color: transparent;
}

.fiveCardHandChoice[data-state=correct] {
  border-color: #12a9c4;
}

.fiveCardHandChoice[data-state=incorrect] {
  border-color: #f53027;
}

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

.tableTestSection[data-state=hidden] {
  display: none;
}

.tableTestSection[data-state=shown] {
  display: flex;
}

.tableTestSection section[data-state=hidden], .tableTestSection div[data-state=hidden] {
  display: none;
}

.tableTestSection section[data-state=shown], .tableTestSection div[data-state=shown] {
  display: flex;
}

.card {
  --dim: 4vw;
  --url: url('/img/chip.webp');
  width: var(--dim);
  height: calc(var(--dim) * 1.4);
  border-radius: 5px;
  border: 1px solid #c3c3c3;
  background-color: #d9d9d9;
  margin: 0 0.3rem;
  position: relative;
  z-index: 0;
  user-select: none;
}

@media screen and (max-width: 767px) {
  .card {
    --dim:15vw;
  }
}

.card p {
  position: absolute;
  top: 3px;
  left: 3px;
  font-family: sans-serif;
  font-size: 1.5rem;
}

.card p[data-suit=spades], .card p[data-suit=clubs] {
  color: #030303;
}

.card p[data-suit=hearts], .card p[data-suit=diamonds] {
  color: #f53027;
}

.card::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 30%;
  border-radius: 8px;
  background-image: var(--url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.card[data-state=darken] {
  filter: brightness(0.3);
}

.card[data-state=normal] {
  filter: brightness(1);
}

.clickableCard {
  filter: brightness(0.8);
  transition: 0.2s transform;
  cursor: pointer;
}

.clickableCard[data-state=selected] {
  filter: brightness(1);
  transform: translateY(-15px);
}

.clickableCard[data-state=unselected] {
  filter: brightness(0.8);
  transform: translateY(0);
}

.clickableCard[data-state=unselected]:hover {
  transform: translateY(-5px);
  filter: brightness(0.9);
}

.clickableCard[data-state=waiting] {
  cursor: default;
  filter: brightness(0.8);
  transform: translateY(0);
}

.clickableCard.correct {
  position: relative;
}

.clickableCard.correct::after {
  content: '';
  background-image: url("/img/tick.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
}

.clickableCard.incorrect {
  position: relative;
}

.clickableCard.incorrect::after {
  content: '';
  background-image: url("/img/cross.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
}

.communityCards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 0;
}

.communityCards[data-state=hidden] {
  display: none;
}

.communityCards[data-state=shown] {
  display: flex;
}

#handNumber {
  font-weight: 400;
}

#handNumber #hash {
  font-size: 1.5rem;
}

#handAccuracy {
  font-weight: 400;
  color: #d9d9d9;
  font-size: 1rem;
}

.winningHandString {
  margin-top: 1rem;
  color: #c3c3c3;
}

.winningHandString[data-state=hidden] {
  display: none;
}

.winningHandString[data-state=shown] {
  display: block;
}

/* width */
::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.4rem;
  cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
  background: #888;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #e2e2e2;
}

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

html, body {
  scroll-behavior: smooth;
  scroll-padding: 4rem;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, #080808 0%, #030303 100%);
  color: #d9d9d9;
  min-height: 100vh;
  width: 100vw;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  counter-reset: wrongAnswer;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-image: url("/img/bg/4.webp");
  filter: brightness(0.1) grayscale(0.85);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 1440px;
  max-width: 85%;
  outline: none;
  padding: 2rem 0;
}

@media screen and (max-width: 767px) {
  main {
    max-width: 90%;
    padding: 1rem 0 2rem;
  }
}

header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  background: #080808;
  width: 100%;
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  z-index: 98;
  box-shadow: 0 -12px 15px 5px #e2e2e2;
}

header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header nav img {
  max-width: 50px;
}

header ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

header ul li {
  margin: 0 0.5rem;
}

header ul li a {
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 1.5px;
  width: 100%;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  header {
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    height: 100vh;
    transition: 0.5s ease-out;
    padding: 7rem 1rem 2rem;
    background: linear-gradient(180deg, #030303 0%, #080808 100%);
    z-index: 97;
  }
  header[data-state=active] {
    transform: translateX(0);
  }
  header[data-state=inactive] {
    transform: translateX(-100%);
  }
  header ul {
    flex-direction: column;
    width: 100%;
  }
  header ul li {
    padding: 1rem 0;
    min-width: 50%;
    text-align: center;
    position: relative;
  }
  header ul li:last-of-type {
    margin-bottom: 1rem;
  }
  header ul li::before {
    content: '';
    width: 130%;
    height: 1px;
    background-image: linear-gradient(90deg, black, white, black);
    position: absolute;
    bottom: 0;
    left: -15%;
  }
  header nav {
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
  }
  header nav img {
    margin-bottom: 2rem;
  }
}

section {
  margin: 1rem 0;
}

li {
  list-style: none;
}

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

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

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

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

.fw {
  width: 100%;
}

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

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

.row-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}

.row-between p + p {
  margin: 0;
}

.row-between.fw {
  width: 100%;
}

.row-between + .row-between {
  margin-top: 0.1rem;
}

footer {
  margin-top: auto;
  border-top: 1px solid #c3c3c3;
  width: 100%;
  padding: 1rem;
  background: #030303;
}

footer p, footer a {
  font-size: 0.8rem;
}
/*# sourceMappingURL=main.css.map */