@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
html,
body,
#root {
  width: 100%;
  height: 100%;
}

body {
  background: #000;
  color: #fff;
  margin: 0;
  font-family: "Rubik", sans-serif;
}

div {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.loading {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.inventory__tabs-container {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.inventory__tabs {
  flex-direction: row;
  width: 100%;
  max-width: 1030px;
  margin: auto;
  justify-content: space-evenly;
}
.inventory__tab {
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.inventory__tab--selected {
  color: #cf720a;
}
.inventory__category {
  width: 100%;
  max-width: 1030px;
  margin: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 4px;
}
.inventory__category__name {
  font-size: 24px;
  text-transform: capitalize;
  margin: 4px;
}
.inventory__category__history__date {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.inventory__category__history__date__title {
  font-size: 20px;
  margin: 12px 4px;
}
.inventory__category__history__date__items {
  flex-direction: row;
  flex-wrap: wrap;
}
.inventory__category__history__date__item {
  background: #222;
  height: 100px;
  flex-direction: row;
  border-radius: 12px;
  margin: 4px;
  flex: 1;
  min-width: 300px;
  display: flex;
  color: #fff;
  text-decoration: none;
}
.inventory__category__history__date__item--buffer {
  height: 0;
  margin: 0 4px;
}
.inventory__category__history__date__item__image-container {
  width: 80px;
  height: 100px;
  background-color: #fff;
  padding: 10px;
  border-radius: 12px 0 0 12px;
}
.inventory__category__history__date__item__image {
  width: 60px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.inventory__category__history__date__item__info {
  flex: 1;
  justify-content: center;
  padding-left: 10px;
}
.inventory__category__history__date__item__action {
  font-size: 18px;
  font-weight: 500;
}
.inventory__category__history__date__item__name {
  font-size: 16px;
}
.inventory__category__history__date__item__details {
  font-size: 14px;
  color: #aaa;
}
.inventory__category__history__date__item__time {
  font-size: 12px;
  color: #777;
}
.inventory__category__status {
  margin: 16px 4px;
}
.inventory__category__status__name {
  font-size: 18px;
}
.inventory__category__status__counts {
  font-size: 14px;
  color: #aaa;
}
.inventory__category__status__bar-container {
  width: 100%;
  height: 20px;
  background: #222;
  margin: 4px 0;
  border-radius: 4px;
  overflow: hidden;
}
.inventory__category__status__bar {
  height: 20px;
  background: green;
}
.inventory__category__list {
  flex-direction: row;
  flex-wrap: wrap;
}
.inventory__category__list__item {
  flex: 1;
  min-width: 120px;
  background: #222;
  margin: 4px;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.inventory__category__list__item--buffer {
  background: transparent;
  margin: 0 4px;
}
.inventory__category__list__item__image-container {
  width: 100%;
  height: 180px;
  background-color: #fff;
  padding: 20px 0;
}
.inventory__category__list__item__image {
  width: 100%;
  height: 140px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.inventory__category__list__item__name {
  font-size: 14px;
  margin: 4px;
}
.inventory__category__list__item__details {
  font-size: 12px;
  color: #aaa;
  margin: 0 4px 8px 4px;
}
.inventory__item {
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.inventory__item__image-container {
  width: 100%;
  height: 200px;
  background-color: #fff;
  padding: 20px 0;
}
.inventory__item__image {
  width: 100%;
  height: 160px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.inventory__item__info {
  padding: 8px;
}
.inventory__item__info__name {
  margin: 4px;
  font-size: 24px;
}
.inventory__item__info__details {
  margin: 4px;
  font-size: 16px;
  color: #aaa;
}
.inventory__item__storages {
  padding: 4px;
}
.inventory__item__storage {
  background: #222;
  height: 60px;
  margin: 4px;
  border-radius: 16px;
  flex-direction: row;
  align-items: center;
  padding: 8px;
}
.inventory__item__storage__count {
  background: #333;
  width: 36px;
  height: 42px;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
}
.inventory__item__storage__name {
  flex: 1;
  font-size: 18px;
  margin: 0 12px;
  font-weight: 400;
}
.inventory__item__storage__add {
  background: #335033;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}
.inventory__item__storage-popup {
  background: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
}
.inventory__item__storage-popup__content {
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.inventory__item__storage-popup__close {
  background: #222;
  width: 120px;
  height: 60px;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.inventory__item__storage-popup__label {
  font-size: 16px;
  margin: 4px 12px;
  color: #aaa;
}
.inventory__item__storage-popup__input {
  background: #222;
  height: 36px;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  margin: 4px 12px 12px 12px;
  border: none;
  outline: none;
  padding: 0 12px;
  -webkit-appearance: none;
}
.inventory__item__storage-popup__count {
  font-size: 24px;
  text-align: center;
}
.inventory__item__storage-popup__remove {
  background: #422;
  height: 48px;
  margin: 18px auto 30px auto;
  border-radius: 16px;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
}
.inventory__item__storage-popup__storage {
  background: #222;
  height: 60px;
  margin: 4px 16px;
  border-radius: 16px;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
}

@media (min-width: 400px) {
  .inventory__item__image-container {
    border-radius: 20px;
    margin-top: 20px;
  }
}
.event-tickets {
  padding: 12px;
}
.event-tickets__ticket {
  background: #222;
  margin: 12px;
  border-radius: 12px;
  padding: 12px;
}
.event-tickets__ticket__event-name {
  font-size: 14px;
  color: #aaa;
  margin: 2px;
}
.event-tickets__ticket__name {
  font-size: 18px;
  margin: 2px;
}
.event-tickets__ticket__scanned-at {
  font-size: 14px;
  margin: 2px;
}

.categories {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  margin: auto;
}
.categories__save {
  background: green;
  padding: 2px 10px;
  margin: 4px;
  border-radius: 8px;
  color: #fff;
  outline: none;
  border: none;
  height: 50px;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
}
.categories__category {
  background: #222;
  padding: 4px;
  margin: 10px;
  flex-direction: row;
  align-items: center;
  border-radius: 12px;
  cursor: pointer;
}
.categories__category__name {
  flex: 1;
  margin: 4px;
}
.categories__category__button {
  background: #444;
  padding: 2px 10px;
  margin: 4px;
  border-radius: 8px;
}
.categories__category__input {
  width: 20px;
  background: #444;
  padding: 2px 10px;
  margin: 4px;
  border-radius: 8px;
  color: #fff;
  outline: none;
  border: none;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
}

.recipes {
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
}
.recipes__title {
  font-size: 30px;
  font-weight: 500;
  margin: 8px;
}
.recipes__new {
  margin: 8px;
}
.recipes__recipe {
  background: #222;
  margin: 8px;
  border-radius: 12px;
  padding: 8px;
  flex-direction: row;
}
.recipes__recipe div {
  margin-right: 10px;
}

.recipe {
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
}
.recipe__top {
  flex-direction: row;
}
.recipe__button, .recipe__name, .recipe__dropdown {
  flex: 1;
  background: #222;
  padding: 12px 10px;
  margin: 4px;
  border-radius: 8px;
  color: #fff;
  outline: none;
  border: none;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  -webkit-appearance: none;
}
.recipe__dropdown {
  flex: 0.5;
}
.recipe__button {
  background: green;
  flex: 0.3;
}
.recipe__ingredient {
  background: #151515;
  margin: 4px;
  border-radius: 12px;
  padding: 8px;
}

.quizmaster {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
.quizmaster h2 {
  font-size: 30px;
}
.quizmaster h3 {
  font-size: 24px;
}
.quizmaster__status {
  flex-direction: row;
  align-items: center;
}
.quizmaster__status__button {
  background: transparent;
  height: 30px;
  color: #fff;
  border: 1px solid #444;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 15px;
  font-size: 14px;
  padding: 0 8px;
}
.quizmaster__status__button:hover {
  background: #333;
}
.quizmaster__quiz-box {
  background: #222;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  margin: 10px 0;
  border: 1px solid #555;
  cursor: pointer;
}
.quizmaster__quiz-box:hover {
  background: #333;
}
.quizmaster__quiz-list__item {
  background: #222;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  margin: 10px 0;
}
.quizmaster__quiz-list__item__header {
  flex-direction: row;
  align-items: center;
}
.quizmaster__question-button {
  background: transparent;
  height: 30px;
  border: 1px solid #555;
  padding: 0 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px;
  margin-right: 10px;
}
.quizmaster__move-button {
  background: transparent;
  height: 30px;
  border: 1px solid #555;
  padding: 0 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px 0 0 15px;
}
.quizmaster__move-button:last-child {
  border-radius: 15px;
}
.quizmaster__move-button:nth-child(4) {
  border-left: none;
  border-radius: 0 15px 15px 0;
}
.quizmaster__move-button:hover {
  background: #333;
}
.quizmaster__answer {
  flex-direction: row;
  border-top: 1px solid #555;
  padding: 6px 0;
  align-items: center;
}
.quizmaster__answer:first-child {
  margin-top: 10px;
}
.quizmaster__button {
  background: transparent;
  height: 30px;
  color: #fff;
  border: 1px solid red;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 15px;
  font-size: 16px;
  padding: 0 12px;
}
.quizmaster__button:hover {
  background: #552222;
}
.quizmaster__button--correct {
  border: 1px solid green;
}
.quizmaster__button--correct:hover {
  background: #224422;
}
.quizmaster__header {
  flex-direction: row;
  align-items: center;
}
.quizmaster__header__button {
  background: transparent;
  min-height: 40px;
  color: #fff;
  border: 1px solid #444;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 20px;
  font-size: 16px;
  padding: 6px 12px;
}
.quizmaster__header__button:hover {
  background: #333;
}
.quizmaster__images {
  flex-direction: row;
}
.quizmaster__images img {
  max-width: 200px;
  max-height: 200px;
}

.tv {
  width: 100vw;
  height: 100vh;
  position: absolute;
  overflow: hidden;
}
.tv__hdf {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: shift 2000s infinite;
  position: absolute;
}
.tv__hdf__logo {
  width: 30vw;
}
.tv__hdf__date {
  font-size: 4vw;
  color: #fff;
  margin: 1vw 0 2vw 0;
}
.tv__hdf__text {
  width: 50vw;
  font-size: 2.8vw;
  color: #fff;
  text-align: center;
  line-height: 3.5vw;
}
.tv__quiz {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tv__quiz__name {
  font-size: 4vw;
  margin: 1vw 0 2vw 0;
  color: transparent;
  color: #fff;
  /*text-shadow:
      calc(1 * 0.15vw) calc(1 * 0.15vw) 0 white,
      calc(2 * 0.15vw) calc(2 * 0.15vw) 0 red,
      calc(3 * 0.15vw) calc(3 * 0.15vw) 0 orange,
      calc(4 * 0.15vw) calc(4 * 0.15vw) 0 yellow,
      calc(5 * 0.15vw) calc(5 * 0.15vw) 0 green,
      calc(6 * 0.15vw) calc(6 * 0.15vw) 0 cyan,
      calc(7 * 0.15vw) calc(7 * 0.15vw) 0 blue,
      calc(8 * 0.15vw) calc(8 * 0.15vw) 0 purple;*/
}
.tv__quiz__subtitle {
  font-size: 3vw;
  margin-bottom: 2vw;
}
.tv__quiz__info {
  font-size: 1.6vw;
  margin-bottom: 2vw;
  text-align: center;
  line-height: 2.3vw;
}
.tv__quiz__team {
  width: 100vw;
  font-size: 1.6vw;
  margin: 0.4vw 0;
  text-align: center;
}

@keyframes shift {
  0% {
    transform: translate(-2%, -2%);
  }
  25% {
    transform: translate(3%, 2%);
  }
  50% {
    transform: translate(2%, -2%);
  }
  75% {
    transform: translate(-3%, 2%);
  }
  100% {
    transform: translate(-2%, -2%);
  }
}
.tablet {
  min-height: 100%;
  padding: 20px;
}
.tablet h1 {
  margin-top: 0;
}
.tablet__columns {
  display: flex;
  flex-direction: row;
}
.tablet__column {
  width: 400px;
  margin-right: 40px;
}
.tablet__use {
  margin: 4px 0;
}
.tablet__use__name {
  font-size: 30px;
}
.tablet__use__time {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.tablet--ringing {
  animation: ring 1s infinite;
}

@keyframes ring {
  0% {
    background-color: #000;
  }
  50% {
    background-color: white;
  }
  100% {
    background-color: #000;
  }
}
.member {
  font-family: "Quicksand";
  padding: 40px;
}
.member__value {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
.member__label {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 20px;
  font-weight: 500;
}
