body {
  margin: 0;
  background: #13151a;
  font-family: "Rubik";
  color: white;
  padding-bottom: 20px;
  padding-top: 50px;
  min-height: calc(100vh - 70px);
}

div.content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

input {
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 110px;
  font-size: 16px;
  padding: 13px 20px;
  outline: none;
  box-sizing: border-box;
  width: 400px;
  color: rgba(255,255,255,0.8);
}

button {
  display: inline-flex;
  margin-left: 15px;
  background-color: #034c7b;
  color: white;
  font-size: 16px;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-weight: 700;
  border-radius: 6px;
  flex: 1;
  justify-content: center;
  box-shadow: 0 0 8px 1px rgba(0,0,0,0.2);
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.2s, background-color 0.2s;
}

#adminlogout {
  margin-left: 0;
  margin-bottom: 40px;
}

button.disabled {
  cursor: default;
  background-color: rgba(255,255,255,0.2);
}

button:hover {
  background-color: #045286;
  transform: scale(1.04);
}

button.disabled:hover {
  background-color: rgba(255,255,255,0.2);
  transform: inherit;
}

div.hidden {
  display: none;
}

.quantity .number {
  font-weight: 700;
  font-size: 32px;
  color: #1471a3;
}

.quantity .descriptor {
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}