@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@500&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

p.alert {
  max-width: 90vw;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  margin: 15px 0;
}
p.alert.error {
  color: rgb(246, 100, 100);
}
p.alert.success {
  color: rgb(121, 255, 121);
}

body.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: 0;
}
body.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

body#admin main section .main-button:not(.danger-button) {
  background-color: lightcyan;
  border: 1px solid steelblue;
}
body#admin main section .main-button:not(.danger-button):not([disabled]):hover {
  cursor: pointer;
  background-color: #99ffff;
}
body#admin main section .main-button.danger-button {
  background-color: lightpink;
  border: 1px solid orangered;
}
body#admin main section .main-button.danger-button:not([disabled]):hover {
  cursor: pointer;
  background-color: #ff6f84;
}

table#status-bar {
  margin: 0 auto;
  background-color: transparent;
  border-collapse: collapse;
}
table#status-bar td {
  border: 1px solid #000;
  padding: 2px;
}
table#status-bar td.status-bar-sideicons {
  width: 33px;
  position: relative;
  border: none;
  background: transparent;
}
table#status-bar td.status-bar-sideicons img {
  width: 100%;
  position: absolute;
  top: 50%;
  right: unset;
  bottom: unset;
  left: 50%;
  transform: translate(-50%, -50%);
}
table#status-bar td:not(.status-bar-sideicons) {
  height: 50px;
  width: 50px;
  border-collapse: collapse;
}
table#status-bar td:not(.status-bar-sideicons) .status-bar-tile {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  background-color: #fff;
  line-height: 45px;
  text-align: center;
  font-size: 29px;
  font-weight: bold;
  color: #fff;
}
table#status-bar td:not(.status-bar-sideicons) .status-bar-tile.inroom {
  background-color: #FF6F0F;
}
table#status-bar td:not(.status-bar-sideicons) .status-bar-tile.failed {
  background-color: #880015;
}
table#status-bar td:not(.status-bar-sideicons) .status-bar-tile.done {
  background-color: #22B14C;
}
table#status-bar td:not(.status-bar-sideicons) .status-bar-tile img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  right: unset;
  bottom: unset;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swal-overlay {
  background-color: rgba(190, 207, 237, 0.45);
}

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

noscript.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(190, 207, 237, 0.45);
  z-index: 400;
}

noscript.alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 478px;
  max-width: 90vw;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 300px;
  z-index: 500;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
}
noscript.alert img {
  width: 88px;
  aspect-ratio: 1;
}
noscript.alert p {
  font-family: 'Lato, "Helvetica Neue", Helvetica, sans-serif';
  text-align: center;
  color: rgba(0, 0, 0, 0.65);
}
noscript.alert p.alert-title {
  font-size: 27px;
  font-weight: 600;
}
noscript.alert .alert-confirm {
  text-decoration: none;
  background-color: #7cd1f9;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Lato, "Helvetica Neue", Helvetica, sans-serif';
  padding: 10px 24px;
}
noscript.alert .alert-confirm:hover {
  background-color: #78cbf2;
}
noscript.alert .alert-confirm:active {
  background-color: #70bce0;
}
noscript.alert .alert-confirm:focus {
  outline: none;
  box-shadow: 0 0 1px #fff, 0 0 0 3px rgba(43, 114, 165, 0.29);
}

body#admin header {
  height: 90px;
  background-color: #ff7f27;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
body#admin main {
  min-height: calc(100vh - 90px);
  background: linear-gradient(50deg, rgba(255, 166, 105, 0.7), #ff9a55);
}
body#admin main section {
  padding-top: 35px;
}
body#admin main section h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 25px auto;
  font-size: 40px;
  color: #fff;
  text-shadow: 1px 1px 5px darkblue;
  border-bottom: 3.5px solid darkblue;
}
body#admin main section#index-disambiguation {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
body#admin main section#init-form .info-banner {
  background-color: rgba(255, 255, 255, 0.75);
  width: 530px;
  padding: 25px;
  border-radius: 12px;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
body#admin main section#init-form .info-banner div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body#admin main section#init-form .info-banner div p {
  font-size: 23px;
  font-weight: bold;
}
body#admin main section#init-form .info-banner div .danger-button {
  padding: 7px 19px;
  margin-top: 20px;
  font-size: 19px;
}
body#admin main section#init-form > form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  width: 450px;
  padding: 25px;
  border-radius: 8px;
  margin: 0 auto;
}
body#admin main section#init-form > form input[type=text], body#admin main section#init-form > form input[type=password] {
  padding: 5px 11px;
  font-size: 18px;
}
body#admin main section#init-form > form input[type=submit] {
  padding: 7px 19px;
  margin-top: 20px;
  font-size: 19px;
}
body#admin main section#access-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body#admin main section#access-form form input {
  font-size: 19px;
  border: 1px solid #000;
  border-radius: 4px;
}
body#admin main section#access-form form input[type=text], body#admin main section#access-form form input[type=password] {
  padding: 7px 11px;
  outline: none;
}
body#admin main section#access-form form input[type=submit] {
  padding: 8px 21px;
  margin-top: 8px;
}
body#admin main section#control-panel form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  width: 60%;
  margin: 0 auto;
}
body#admin main section#control-panel form fieldset {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  gap: 30px;
  width: 100%;
  padding: 20px;
  background-color: rgba(128, 128, 128, 0.65);
  border: 1px solid black;
  border-radius: 9px;
}
body#admin main section#control-panel form fieldset legend {
  background-color: lightgoldenrodyellow;
  padding: 5px 9px;
  border: 2px solid darkgoldenrod;
  border-radius: 5px;
  font-size: 18.5px;
}
body#admin main section#control-panel form fieldset legend > span {
  margin-left: 5px;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
}
body#admin main section#control-panel form fieldset .run {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-size: 18.5px;
}
body#admin main section#control-panel form fieldset .run p {
  font-weight: bold;
}
body#admin main section#control-panel form fieldset .run .status {
  margin: 0 50px;
  width: 60px;
  height: 30px;
}
body#admin main section#control-panel form fieldset .run .status.enabled-0 {
  background-color: red;
  box-shadow: 0 0 10px red;
}
body#admin main section#control-panel form fieldset .run .status.enabled-1 {
  background-color: green;
  box-shadow: 0 0 10px green;
}
body#admin main section#control-panel form fieldset .run .status.enabled--1 {
  background-color: yellow;
  box-shadow: 0 0 10px yellow;
}
body#admin main section#control-panel form fieldset .run input[type=submit].main-button {
  padding: 7px 15px;
  font-size: 16px;
}
body#admin main section#results {
  min-height: 100vh;
  height: unset;
  padding: 20px;
  position: relative;
  background: linear-gradient(50deg, rgba(255, 172, 116, 0.63), #ff7f27);
}
body#admin main section#results p#date {
  text-align: center;
  font-size: 33px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px darkblue;
}
body#admin main section#results table {
  font-size: x-large;
}
body#admin main section#results table#results {
  width: 100%;
  margin: 0 auto;
  border: 2px solid #000;
  border-collapse: collapse;
  text-align: center;
}
body#admin main section#results table#results thead {
  background-color: bisque;
}
body#admin main section#results table#results thead th {
  border: 1px solid #000;
  border-bottom: 3px solid #000;
  padding: 3px;
}
body#admin main section#results table#results tbody tr.mr:not(.highlighted) {
  background-color: #fff;
}
body#admin main section#results table#results tbody tr.mr.highlighted {
  font-weight: bold;
}
body#admin main section#results table#results tbody tr.mr.highlighted.first {
  background-color: gold;
}
body#admin main section#results table#results tbody tr.mr.highlighted.second {
  background-color: silver;
}
body#admin main section#results table#results tbody tr.mr.highlighted.third {
  background-color: #CD7F32;
}
body#admin main section#results table#results tbody tr.mr.highlighted.third td {
  border-bottom: 3px solid #000;
}
body#admin main section#error {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: larger;
  text-align: center;
}
body#admin main section#error a {
  display: block;
  color: #000;
  padding: 8px 18px;
  text-decoration: none;
}
body:not(#admin) header {
  height: 90px;
  background-color: green;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
body:not(#admin) header #logo {
  height: 63px;
  margin-left: 20px;
}
body:not(#admin) header #login-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-right: 20px;
}
body:not(#admin) header #login-bar p {
  color: #fff;
  font-weight: bold;
  font-size: 17.5px;
}
body:not(#admin) header #login-bar #login-bar-icon {
  height: 30px;
}
body:not(#admin) main section#index {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: calc(100vh - 90px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body:not(#admin) main section#index h1 {
  color: #fff;
  margin-bottom: 17vh;
  text-align: center;
  text-transform: capitalize;
  font-size: min(75px, 10vw);
  font-family: "Lexend Giga", sans-serif;
}
body:not(#admin) main section#index #login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body:not(#admin) main section#index #login #login-form, body:not(#admin) main section#index #login #auth-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 83vw;
}
body:not(#admin) main section#index #login #login-form input, body:not(#admin) main section#index #login #auth-form input {
  max-width: 100%;
}
body:not(#admin) main section#index #login #login-form input#login-form-code, body:not(#admin) main section#index #login #auth-form input#login-form-code, body:not(#admin) main section#index #login #login-form input#login-form-password, body:not(#admin) main section#index #login #auth-form input#login-form-password {
  padding: 11px 17px;
  border: 3.5px solid darkgray;
  border-radius: 25px;
  font-size: 19.5px;
  background: rgba(211, 211, 211, 0.3);
  color: #fff;
}
body:not(#admin) main section#index #login #login-form input#login-form-code::-moz-placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-code::-moz-placeholder, body:not(#admin) main section#index #login #login-form input#login-form-password::-moz-placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-password::-moz-placeholder {
  color: #fff;
}
body:not(#admin) main section#index #login #login-form input#login-form-code::placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-code::placeholder, body:not(#admin) main section#index #login #login-form input#login-form-password::placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-password::placeholder {
  color: #fff;
}
body:not(#admin) main section#index #login #login-form input#login-form-code::-ms-input-placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-code::-ms-input-placeholder, body:not(#admin) main section#index #login #login-form input#login-form-password::-ms-input-placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-password::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
body:not(#admin) main section#index #login #login-form input#login-form-code:focus, body:not(#admin) main section#index #login #auth-form input#login-form-code:focus, body:not(#admin) main section#index #login #login-form input#login-form-password:focus, body:not(#admin) main section#index #login #auth-form input#login-form-password:focus {
  border-color: green;
  outline: none;
  background-color: rgba(255, 255, 255, 0.83);
  color: #000;
}
body:not(#admin) main section#index #login #login-form input#login-form-code:focus::-moz-placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-code:focus::-moz-placeholder, body:not(#admin) main section#index #login #login-form input#login-form-password:focus::-moz-placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-password:focus::-moz-placeholder {
  color: #000;
}
body:not(#admin) main section#index #login #login-form input#login-form-code:focus::placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-code:focus::placeholder, body:not(#admin) main section#index #login #login-form input#login-form-password:focus::placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-password:focus::placeholder {
  color: #000;
}
body:not(#admin) main section#index #login #login-form input#login-form-code:focus::-ms-input-placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-code:focus::-ms-input-placeholder, body:not(#admin) main section#index #login #login-form input#login-form-password:focus::-ms-input-placeholder, body:not(#admin) main section#index #login #auth-form input#login-form-password:focus::-ms-input-placeholder {
  color: #000;
}
body:not(#admin) main section#index #login #login-form input[type=submit], body:not(#admin) main section#index #login #auth-form input[type=submit] {
  padding: 11px 13px;
  border-radius: 25px;
  font-size: 17px;
}
body:not(#admin) main section#index #login #login-form input[type=submit]:not([disabled=disabled]), body:not(#admin) main section#index #login #auth-form input[type=submit]:not([disabled=disabled]) {
  background-color: rgba(255, 255, 255, 0.83);
  border: 3px solid darkgray;
}
body:not(#admin) main section#index #login #login-form input[type=submit]:disabled, body:not(#admin) main section#index #login #auth-form input[type=submit]:disabled {
  border: 3px solid gray;
  background-color: rgba(211, 211, 211, 0.3);
  cursor: not-allowed;
}
body:not(#admin) main section#index #login #login-form input[type=submit]:not([disabled=disabled]):hover, body:not(#admin) main section#index #login #auth-form input[type=submit]:not([disabled=disabled]):hover, body:not(#admin) main section#index #login #login-form input[type=submit]:not([disabled=disabled]):focus, body:not(#admin) main section#index #login #auth-form input[type=submit]:not([disabled=disabled]):focus {
  outline: none;
  cursor: pointer;
  border-color: green;
}
body:not(#admin) main section#index #login #login-form input[type=submit]:active, body:not(#admin) main section#index #login #auth-form input[type=submit]:active {
  background-color: gray;
}
body:not(#admin) main section#index #login #auth-form input[type=submit] {
  width: 200px;
}
body:not(#admin) main section#index #login #auth-form input[type=submit]#auth-form-relogin {
  border: 3px solid gray;
  background-color: rgba(211, 211, 211, 0.3);
}
body:not(#admin) main section#index #login #auth-form input[type=submit]#auth-form-relogin:hover {
  border-color: green;
  background-color: rgba(211, 211, 211, 0.6);
}
body:not(#admin) main section#game-page {
  width: 100%;
  height: calc(100vh - 90px);
  padding: 30px;
  background: linear-gradient(50deg, rgba(0, 205, 0, 0.63), green);
  position: relative;
}
body:not(#admin) main section#game-page .template {
  border: 3.5px double rgba(0, 128, 0, 0.6);
  box-shadow: 0 0 2.5px #000;
  width: 100%;
  height: calc(100vh - 90px - 60px);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
body:not(#admin) main section#game-page .template::before {
  content: "";
  position: absolute;
  top: 50%;
  right: unset;
  bottom: unset;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(211, 211, 211, 0.62);
  box-shadow: 3px 3px 5px darkgray;
  border: 1px solid darkslategray;
  border-radius: 9px;
  width: min(450px, 100vw - 100px);
  height: 65%;
}
body:not(#admin) main section#game-page .template h2 {
  font-size: 32px;
  color: green;
  z-index: 300;
  width: min(450px, 100vw - 100px);
}
body:not(#admin) main section#game-page .template h2 .highlight {
  color: #00cd00;
}
body:not(#admin) main section#game-page .template h2 .highlight.italic {
  font-style: italic;
}
body:not(#admin) main section#game-page .template img {
  width: 55px;
  z-index: 300;
}
body:not(#admin) main section#game-page .template p {
  font-size: 18.5px;
  z-index: 300;
  width: min(450px, 100vw - 100px);
}
body:not(#admin) main section#game-page .template #progress-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 80%;
  z-index: 300;
}
body:not(#admin) main section#game-page .template #progress-form #answer-input {
  width: min(370px, 100%);
  padding: 11px 17px;
  text-align: center;
  border: 3px solid rgb(41, 54, 54);
  border-radius: 13px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.5);
  color: #333;
}
body:not(#admin) main section#game-page .template #progress-form #answer-input::-moz-placeholder {
  color: #333;
}
body:not(#admin) main section#game-page .template #progress-form #answer-input::placeholder {
  color: #333;
}
body:not(#admin) main section#game-page .template #progress-form #answer-input::-ms-input-placeholder {
  color: #333;
  opacity: 1;
}
body:not(#admin) main section#game-page .template #progress-form #answer-input:focus {
  border-color: green;
  outline: none;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 3px #00c200;
  color: #000;
}
body:not(#admin) main section#game-page .template #progress-form #answer-input:focus::-moz-placeholder {
  color: #000;
}
body:not(#admin) main section#game-page .template #progress-form #answer-input:focus::placeholder {
  color: #000;
}
body:not(#admin) main section#game-page .template #progress-form #answer-input:focus::-ms-input-placeholder {
  color: #000;
}
body:not(#admin) main section#game-page .template #progress-form #progress-button {
  max-width: 100%;
  padding: 11.5px 22px;
  border-radius: 25px;
  font-size: 16.5px;
  color: #000;
}
body:not(#admin) main section#game-page .template #progress-form #progress-button:not([disabled=disabled]):hover, body:not(#admin) main section#game-page .template #progress-form #progress-button:not([disabled=disabled]):focus {
  outline: none;
  cursor: pointer;
}
body:not(#admin) main section#game-page .template #progress-form #progress-button:not([disabled=disabled]):not(:active):hover, body:not(#admin) main section#game-page .template #progress-form #progress-button:not([disabled=disabled]):not(:active):focus {
  border-color: #00a400;
  box-shadow: 0 0 2px cyan;
}
body:not(#admin) main section#game-page .template #progress-form #progress-button:not([disabled=disabled]) {
  background-color: rgba(255, 255, 255, 0.83);
  border: 3px solid green;
}
body:not(#admin) main section#game-page .template #progress-form #progress-button:not([disabled=disabled]):active {
  background-color: darkgray;
  border-color: green;
}
body:not(#admin) main section#game-page .template #progress-form #progress-button:disabled {
  border: 3px solid darkgray;
  background-color: rgba(211, 211, 211, 0.6);
  cursor: not-allowed;
}
body:not(#admin) main section#game-page .template #progress-form #progress-button:disabled:active {
  background-color: darkgray;
  box-shadow: none;
}/*# sourceMappingURL=style.css.map */