* {
  font-family: 'Fira Sans', sans-serif;
  xfont-family: 'Quicksand', sans-serif;
}

html,
body {
  margin: 0;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
}

:root {
  --orange_purple_gradient: linear-gradient(24deg, rgba(237, 112, 0, 1) 0%, rgba(132, 68, 221, 1) 100%);
  --standard_box_shadow: 0 8px 8px -4px rgba(69, 121, 245, .12), 0 16px 24px 0 rgba(69, 121, 245, .24), 0 2px 4px -1px rgba(27, 10, 82, .12), 0 0 1px 0 rgba(69, 121, 245, .24);
  --subtle_box_shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.32);
  --button_radius: 12px;
  --purple: #8444dd;
  --white: #fff;

}

a {
  color: inherit;
}

.smaller {
  font-size: 0.8rem;
}

hr {
  border: 1px solid #aaa;
}

#holder,
.holder {
  max-width: 440px;
  flex: 1;
  width: 100%;
}

img {
  max-width: 100%;
}

#holder {
  margin: 5rem auto;
  overflow: hidden;
  padding: 1rem;
  box-sizing: border-box;
}

#menu {
  display: flex;
  max-width: 440px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  top: 0;
  padding-left: 2.5rem;
  padding-top: 1rem;
  position: fixed;
  background-color: #fff;
  padding-bottom: 0.6rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(132, 68, 221, 1) 50%, rgba(132, 68, 221, 1) 100%);
  box-shadow: 0 8px 8px -4px rgba(69, 121, 245, .12), 0 16px 24px 0 rgba(69, 121, 245, .24), 0 2px 4px -1px rgba(27, 10, 82, .12), 0 0 1px 0 rgba(69, 121, 245, .24);


}

#menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;

  display: flex;
  width: 100%;
}

#menu ul a {
  flex: 0 0 calc(20% - 1rem);
}

#menu ul li {
  margin-right: 1rem;
  text-align: center;

}

#login label {
  display: block;
  margin-bottom: 1rem;
}

#login input {
  padding: 1rem;
  margin-bottom: 1rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

#login input[type="submit"] {

  box-shadow: var(--standard_box_shadow);
}

.order label {
  display: flex;
}

.order label>* {}

.order .admin {
  margin-left: auto;
  flex: 0 0 auto;

}

.order input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
}

.products_to_pick {
  margin-top: 1rem;
}

.turnbyturn {
  display: flex;
  min-height: 70vh;

  flex-wrap: nowrap;
  overflow: hidden;
}

.turnbyturn .product {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;

}

.turnbyturn .product>* {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
}

.turnbyturn .product img {
  max-width: 100%;
  max-height: 40vh;

}

.hidden {
  display: none !important;
}

.user {
  display: flex;
  margin-bottom: 0.4rem;
}

.product {
  display: flex;

}

.user div,
.product div {
  margin-right: 1rem;
}

.c_small,
.c_verysmall,
.c_medium {
  font-size: 0.8rem;
}

.c_small {
  flex: 0 0 2.8rem;
}

.c_verysmall {
  flex: 0 0 1rem;
}

.c_medium {
  flex: 0 0 7rem;
}

.dudewtf {
  background-color: red;
}

.done {
  background-color: green;
}

.red_button,
.pick_submit {
  display: block;
  background-color: red;
  color: #fff;
  font-size: 3rem;
  padding: 2rem;
  border: 0;
  width: 100%;
}

.feedback {
  padding: 2rem;
  margin-top: 1rem;
  background-color: #ffbfa9;
}

#menu {
  position: fixed;
}

input[type="submit"] {
  background-color: #8444dd;
  background: var(--orange_purple_gradient);
  padding: 2rem;
  border: 0;
  font-size: 1rem;
  color: #fff;
  border-radius: var(--button_radius);
}

svg {}

.c_center {
  text-align: center;
}

.locked {
  color: #aaa;
}

.notification {
  background-color: #eee;
  transition: opacity 0.3s, visibility 0.3s;
  position: fixed;
  margin-top: 0.2rem;
  top: 0;
  left: 50%;
  max-width: 440px;
  padding: 1rem;
  width: calc(100% - 3rem);
  border-radius: 1rem;
  transform: translateX(-50%);
}

.stats_orders {
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: bold;
}

.stats_orders .head {
  margin-bottom: 1rem;
  font-weight: normal;
}

.stats_orders div {
  flex: 0 0 50%;
  text-align: center;
}

.countdown {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  margin-top: 2rem;
}

.countdown-message {
  text-align: center;
}

.achievement_notification {
  display: flex;
}

.icon {
  flex: 0 0 20%;
}

.icon svg {
  width: 70%;
}

.achievement_text {
  flex: 0 0 80%;
}

.achievement_text h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.achievement_text p {
  font-size: 0.8rem;
  margin-top: 0;
}

.icon svg {
  fill: #12b506;
}

.who_am_i {
  margin-left: auto;
  color: #fff;
  margin-right: 1rem;
}

.order_data {
  margin-left: 0.3rem;
}

.order_data .pick_data {
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.order_createdAt {
  font-size: 0.8rem;
  display: block;
}

#scanner {
  display: none;
}

#order_scan {
  margin-bottom: 1rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
}


.stats .label {
  flex: 0 0 50%;
  font-weight: bold;
}

#hamburger {
  width: 2rem;
  fill: aliceblue;
  flex: 0 0 2rem;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transform: translateX(-2000px);
  padding: 2rem;
  box-sizing: border-box;
  font-size: 1.5rem;
  overflow-y: scroll;
}

#stats_holder {
  max-width: 440px;
  padding: 0 2rem 1rem 2.5rem;
  color: #fff;
  font-size: 0.8rem;
  flex: 0 1 auto
}

.forgot {
  flex-direction: column !important;
}

.forgot_item {
  display: block;
  width: 100%;
  align-items: center;
  display: flex;
}

#overlay .close {
  float: right;

  font-weight: bold;
  cursor: pointer;
}

#overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#overlay ul li {
  margin-bottom: 1rem;
}

#overlay.active {
  transform: translateX(0px);
}

.button-holder {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 440px;
}

.label_print {
  font-size: 2rem;
  cursor: pointer;
  padding: 1.6rem;
  background-color: #ed7000;
  color: #fff;
  width: 100%;
  background: rgb(237, 112, 0);
  background: linear-gradient(24deg, #ed7000 0%, #8444dd 100%);
  border: 0;
  box-shadow: 0 8px 8px -4px rgba(69, 121, 245, .12), 0 16px 24px 0 rgba(69, 121, 245, .24), 0 2px 4px -1px rgba(27, 10, 82, .12), 0 0 1px 0 rgba(69, 121, 245, .24);
  font-weight: bold;
  border-radius: 12px;
  margin: 1rem 0;
}


.customer_data {}

.customer_data input,
.customer_data label {
  display: block;
  margin-bottom: 1rem;
}

.customer_data label {
  font-size: 0.8rem;
}

.customer_data button {
  background-color: #8444dd;
  background: var(--orange_purple_gradient);
  padding: 1rem 2rem;
  border: 0;
  font-size: 1rem;
  color: #fff;
  border-radius: var(--button_radius);

}

.customer_data #status {
  display: inline-block;
}

.customer_data .ok {
  animation: ok 2s ease-in-out;
}


@keyframes ok {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.customer_data #status img {
  max-height: 2.8rem;
}

.button_bar {
  display: flex;
}

.customer_data textarea,
.customer_data input {
  padding: 1rem;
  border-radius: 5px;
  border: 0;
  background-color: #efefef;
  color: #262626;
  font-size: 1rem;
}

.customer_data textarea {

  resize: none;
  margin-bottom: 2rem;
}

#dialog {
  opacity: 0;
  padding: 1rem 2rem;
  background-color: #8444dd;
  color: #fff;
  border-radius: 15px;
}

#dialog.active {
  opacity: 1;
}

#result {
  display: flex;
  max-width: 14rem;
  flex-wrap: wrap;
  display: none;
  justify-content: space-between;
}

#result>div {}

#result.active {
  display: flex;
}

#product_name {
  flex: 0 0 100%;
  margin-bottom: 1rem;
}

#location,
#qty {
  padding: 1rem;
  border-radius: 1rem;
  min-width: 1rem;
  min-height: 1rem;
  text-align: center;
}

.exp {
  font-size: 0.6rem;
  display: block;
}

#location {
  background-color: #8444dd;
  color: #fff;
}

#qty {
  background-color: #aaa;
}

.skip {
  background-color: var(--purple);
  align-items: center;
  display: flex;
  margin-bottom: 3rem;
  color: var(--white);
}

#infobox {
  background-color: #8444dd;
  color: #fff;
  max-width: 400px;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.profile {
  border-radius: 1rem;
  background-color: #fff;
  padding: 1rem;
  box-shadow: var(--subtle_box_shadow);
  max-width: 300px;
}

.profile label {
  display: block;
  margin-bottom: 1rem;
}

.profile h1 {
  margin-bottom: 0;
  font-size: 2rem;
}

.profile .part_of {
  margin-bottom: 1rem;
  display: block;
  color: #aaa;
  font-style: italic;
}

footer {
  width: 100%;
  background-color: var(--purple);
  padding: 1rem 0;
  margin-top: auto;
}

footer img {
  max-width: 110px;
}

footer .holder {
  margin: 0 auto;
}

table {
  table-layout: auto;
  width: 100%;
  border-collapse: collapse;
}

th {
  background-color: #F05365;
  padding: 1rem;
  border-bottom: 1px solid #F2EDEB;
  text-align: left;
  color: #fff;
}

th:first-of-type {
  border-top-left-radius: 1rem;
}

td {
  border: 0;
  padding: 1rem;
}

.tbutton {
  background-color: #F2EDEB;
  text-decoration: none;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbutton svg {
  margin-right: 1rem;
}

.real_stock {
  display: none;
}

@media (min-width: 1250px) {

  #holder,
  .holder {
    max-width: 1250px;
  }

  #menu {
    max-width: 1250px;
  }
}
