.shadow-1 {
  box-shadow: 2px 2px 2px #0a3a65;
}
.shadow-2 {
  box-shadow: 4px 4px 16px #434d56;
}
.shadow-3 {
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.shadow-4 {
  box-shadow: 0 24px 28px -12px black;
}
.shadow-5 {
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 5px;
}
.shadow-6 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px 2px, rgba(0, 0, 0, 0.3) 10px 10px 3px 2px;
}
.text-shadow-1 {
  text-shadow: 2px 2px 2px #484848bf;
}
/* List */
.inventory-list {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-style: solid none;
  border-width: 1px;
  border-color: #dcc9b5;
  color: #A97D4F;
}
.inventory-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  cursor: pointer;
}
.inventory-date {
  flex-basis: 100px;
  flex-grow: 1;
}
.inventory-location-name {
  flex-basis: 400px;
  flex-grow: 1;
}
/* Detail */
.inventory-detail-control-button-section {
  position: fixed;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
  justify-content: center;
  background-color: #fdfcfa;
  z-index: 8;
}
.inventory-detail-control-button-block,
.inventory-detail-control-button-large-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #fdfcfa;
  z-index: 8;
}
.inventory-detail-control-button-block {
  gap: 20px;
}
.inventory-detail-control-button-large-block {
  gap: 40px;
}
.inventory-detail-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.inventory-detail-header {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.inventory-detail-header-row {
  display: flex;
  flex-direction: row;
  gap: 10px 50px;
  align-items: center;
  font-size: 1.8em;
  flex-wrap: wrap;
}
.inventory-detail-ro-block,
.inventory-detail-ro-block-wide {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inventory-detail-ro-block-wide {
  width: 100%;
}
.inventory-detail-ro-label {
  font-size: 0.8em;
}
.inventory-detail-ro-label-text {
  text-align: left;
}
.inventory-detail-ro-label-numeric {
  text-align: right;
}
.inventory-detail-ro-value {
  font-size: 1.2em;
}
.inventory-detail-value {
  padding: 4px 8px;
  font-size: 1.2em;
}
.inventory-detail-value-different {
  color: #ff0202;
}
.inventory-detail-value-quantity {
  width: 80px;
  text-align: right;
}
.inventory-detail-body {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.inventory-item-chooser-block {
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  border-style: solid none none none;
  border-color: #A97D4F;
  border-width: 1px;
  background-color: #9f5143;
}
.inventory-item-chooser-title {
  font-size: 1.2em;
}
.inventory-item-chooser {
  padding: 8px;
}
.inventory-item-chooser-control-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.inventory-use-scanner {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.inventory-editor {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.inventory-editor-section {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-style: solid none;
  border-width: 1px;
  border-color: #A97D4F;
}
.inventory-editor-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inventory-editor-item-id {
  display: none;
}
.inventory-editor-item-code {
  font-size: 1.4em;
}
.inventory-editor-item-name {
  font-size: 1.2em;
}
.inventory-editor-item-subname {
  font-size: 1em;
}
.inventory-editor-block {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.inventory-editor-label {
  width: 250px;
}
.inventory-editor-value {
  padding: 4px;
}
.inventory-editor-value-big {
  font-size: 2em;
  padding: 8px;
}
.inventory-checkbox {
  cursor: pointer;
}
.inventory-checkbox-label {
  cursor: pointer;
}
.quantity-input {
  width: 120px;
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .inventory-detail-header-row {
    justify-content: center;
  }
  .inventory-detail-ro-block {
    gap: 2px;
    text-align: center;
  }
  .inventory-item-chooser-block {
    flex-direction: column;
    gap: 5px;
  }
  .inventory-detail-section {
    gap: 30px;
  }
  .inventory-editor {
    gap: 25px;
  }
}
