html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  max-width: 100vw;
}

section#main {
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  height: max-content;
  display: flex;
  flex-direction: column;
  background-color: #181818;
  overflow-x: hidden;
}
section#main div.title {
  min-height: 180px;
  height: auto;
  display: flex;
}
section#main div.title h1 {
  color: #888888;
  text-align: center;
  margin: auto;
  display: block;
  font-weight: bold;
  font-size: 2.5rem;
}
section#main div.card {
  min-height: 450px;
  height: max-content;
  max-height: 70%;
  width: 90%;
  padding: 12px;
  margin: auto;
  margin-top: 20px;
  background-color: #202020;
/*  border-radius: 10px; */
  border: 1px solid rgb(136, 136, 136);
  color: #888888;
  display: flex;
  flex-direction: column;
}
section#main div.card h1 {
  text-align: center;
  font-size: xx-large;
  margin-top: auto;
  margin-bottom: auto;
}
section#main div.card form {
  margin-top: auto;
  margin-bottom: auto;
}
section#main div.card form .error {
  text-align: center;
  color: red;
  font-weight: bold;
  font-size: 1.3rem;
}
section#main div.card form div#group {
  display: flex;
  flex-direction: column;
}
section#main div.card form div#group label {
  margin-top: 12px;
  font-weight: 700;
  font-size: x-large;
  margin-bottom: 4px;
}
section#main div.card form div#group input {
  background: none;
  outline: none;
  border: none;
  border-bottom: solid #888888 3px;
  margin-bottom: 12px;
  color: #888888;
  font-family: "Roboto", sans-serif;
  font-size: large;
}
section#main div.card form button {
  display: block;
  margin: auto;
  width: 90%;
  height: 20%;
  min-height: 40px;
  background-color: #181818;
  color: #888888;
  font-family: "Roboto", sans-serif;
  font-size: large;
  text-align: center;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}
section#main div.card form button:hover {
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}
section#main div.card form button:active {
  transform: translateY(3px);
}
section#main div.card form button:disabled, section#main div.card form button[disabled] {
  background-color: gray;
  color: darkgray;
  cursor: not-allowed;
}
section#main div.card div#loading {
  width: 100%;
  display: flex;
  margin: auto;
}
section#main div.card.big {
  max-height: none;
  margin-bottom: 16px;
}
section#main div.card.big h2.error {
  color: red;
  text-align: center;
}
section#main div.card.big div.items {
  display: flex;
  flex-direction: column;
}
section#main div.card.big div.items div.category {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 80px;
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: solid black 2px;
  display: flex;
  flex-direction: column;
}
section#main div.card.big div.items div.category div.group {
  display: flex;
  flex-direction: row;
  height: calc(150px / 2);
}
section#main div.card.big div.items div.category div.group:first-child {
  margin-bottom: 4px;
}
section#main div.card.big div.items div.category div.group.stats {
  flex-direction: column;
}
section#main div.card.big div.items div.category div.group.stats p {
  display: block;
  margin: auto;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
}
section#main div.card.big div.items div.category div.group input {
  color: #888888;
  font-family: "Roboto", sans-serif;
  height: 90%;
  width: 100%;
  font-size: medium;
  font-weight: 700;
  min-height: 50px;
  outline: none;
  border: none;
  background-color: #181818;
  text-align: center;
  border-radius: 10px;
}
section#main div.card.big div.items div.category div.group svg {
  padding: 8px;
  height: calc(150px / 4);
  width: calc(150px / 4);
  margin: auto;
  color: #888888;
  cursor: pointer;
}
section#main div.card.big div.items div.category div.group button {
  cursor: pointer;
  margin-top: 4px;
  display: block;
  width: 100%;
  height: 80%;
  min-height: calc(80px * 0.65);
  color: #888888;
  font-family: "Roboto", sans-serif;
  font-size: large;
  font-weight: 700;
  background-color: #aa2a2a;
  border-radius: 10px;
  border: none;
  outline: none;
}
section#main div.card.big div.items div.category div.group button:hover {
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}
section#main div.card.big div.items div.category div.group button:active {
  transform: translateY(3px);
}
section#main div.card.big div.items div.category div.group button:disabled, section#main div.card.big div.items div.category div.group button[disabled] {
  background-color: gray;
  color: darkgray;
  cursor: not-allowed;
}
section#main div.card.big div.items div.category div.group div#icon {
  display: block;
  height: calc(150px / 4);
  width: calc(150px / 4);
  padding: 8px;
  margin: auto;
}
section#main div.card.big form#add {
  margin-top: 4px;
}
section#main div.card.big form#add div.group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
section#main div.card.big form#add div.group label {
  font-size: larger;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 2px;
}
section#main div.card.big form#add div.group input {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 10px;
  background-color: #181818;
  color: #888888;
  font-size: medium;
  font-weight: 700;
  min-height: 35px;
  text-align: center;
  height: 90%;
  margin-bottom: 6px;
}
section#main div.card.big form#add button {
  margin: auto;
  margin-top: 8px;
  margin-bottom: 4px;
  display: block;
  width: 90%;
  height: 20%;
  min-height: 40px;
  background-color: #086108;
  color: #888888;
  font-family: "Roboto", sans-serif;
  font-size: large;
  text-align: center;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}
section#main div.card.big form#add button:hover {
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}
section#main div.card.big form#add button:active {
  transform: translateY(3px);
}
section#main div.card.big form#add button:disabled, section#main div.card.big form#add button[disabled] {
  background-color: gray;
  color: darkgray;
  cursor: not-allowed;
}
section#error {
  width: 100vw;
  height: 100vh;
  background-color: #181818;
  display: flex;
  overflow: hidden;
}
section#error div.card {
  width: 90%;
  height: max-content;
  min-height: 420px;
  display: flex;
  margin: auto;
  color: #888888;
  background-color: #1f2937;
  padding: 10px;
  border-radius: 10px;
}
section#error div.card h1 {
  color: red;
  text-align: center;
  display: block;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-size: xx-large;
}

@media (min-width: 800px) {
  section#main div.title {
    height: 25%;
  }
  section#main div.card {
    width: 35%;
  }
  section#main div.card button {
    width: 50%;
  }
  section#main div.card.big {
    width: 80%;
    height: max-content;
  }
  section#main div.card.big div.items div.category {
    width: 100%;
    flex-direction: row;
    height: calc(150px / 4);
    min-height: unset;
  }
  section#main div.card.big div.items div.category div.group {
    width: calc(100% / 2.5);
    height: max-content;
    min-height: max-content;
  }
  section#main div.card.big div.items div.category div.group:last-child {
    width: calc(100% - ((100% / 2.5) * 2));
  }
  section#main div.card.big div.items div.category div.group.stats p {
    font-size: max(0.95vw, 1rem);
  }
  section#main div.card.big div.items div.category div.group input {
    min-height: 35px;
    height: 100%;
    display: block;
    margin: auto;
  }
  section#main div.card.big div.items div.category div.group button {
    min-height: 35px;
    height: 35px;
    margin-bottom: 2px;
  }
  section#main div.card.big div.items div.category div.group svg {
    width: 30px;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  section#main div.card.big form#add {
    display: flex;
    flex-direction: row;
  }
  section#main div.card.big form#add div.group {
    width: calc((100% / 3) - (6px * 4));
    margin-right: 6px;
    margin-left: 6px;
    padding: 4px;
  }
  section#main div.card.big form#add div.group button {
    width: 100%;
    margin-top: auto;
    margin-bottom: 6px;
    min-height: 35px;
    height: 55%;
    background-color: #086108;
    padding: 4px;
  }
  section#error div.card {
    width: 60%;
  }
}

/*# sourceMappingURL=style.css.map */