@import "./reset.css";
/* raleway-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/raleway-v37-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  src: url("/assets/fonts/raleway-v37-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/raleway-v37-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-600italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: italic;
  font-weight: 600;
  src: url("/assets/fonts/raleway-v37-latin-600italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*,
html {
  font-family: Raleway;
  font-size: 14px;
}

[disabled] {
  opacity: 0.5;
  cursor: default !important;
}

#login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#login label {
  display: block;
  font-weight: bold;
}

body {
  position: relative;
  padding: 5rem 1rem 5rem 1rem;
}
body.login {
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  cursor: pointer;
}

strong {
  font-weight: bold;
}

.filterOptions {
  position: relative;
}
.filterOptions button.active {
  background-color: #d8efd8;
}
.filterOptions div.filterListe {
  position: absolute;
  left: 0px;
  bottom: -10px;
  transform: translateY(100%);
  background-color: #EEE;
  padding: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.filterOptions div.filterListe label {
  display: flex;
  gap: 0.5rem;
  opacity: 1;
  align-items: center;
}
.filterOptions div.filterListe label input {
  height: 1em;
}
.filterOptions div.filterListe strong {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}
.filterOptions div.filterListe div ~ strong {
  margin-top: 1rem;
}
.filterOptions div.filterListe > div {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.addPositionForm {
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}
.addPositionForm .innerBg {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}
.addPositionForm .inner {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 1rem;
  background: white;
  padding: 1rem;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
}
.addPositionForm .inner input {
  padding: 4px;
}
.addPositionForm .inner label {
  font-weight: bold;
  display: block;
}
.addPositionForm .inner .search {
  margin-bottom: 0.5rem;
}
.addPositionForm .inner .bigger {
  margin-top: 2rem;
  font-size: 1.35rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.addPositionForm .inner .bigger svg {
  width: 2rem;
  cursor: pointer;
}
.addPositionForm .inner .qty {
  margin: 1rem auto 0 0;
  text-align: center;
  display: flex;
}
.addPositionForm .inner .qty input {
  border-radius: 0px;
  border: 1px solid black;
  max-width: 3rem;
  font-size: 1.35rem;
  text-align: center;
}
.addPositionForm .inner .qty .value-button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: black;
  color: white;
  font-size: 2rem;
  border: 1px solid black;
  width: 2rem;
}
.addPositionForm .inner .qty .value-button:first-child {
  border-radius: 6px 0px 0px 6px;
}
.addPositionForm .inner .qty .value-button:last-child {
  border-radius: 0px 6px 6px 0px;
}
.addPositionForm .inner .inputTag {
  margin-top: 0.5reM;
  display: flex;
  gap: 1rem;
}
.addPositionForm .inner .tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.addPositionForm .inner .tag_list .tag {
  padding: 4px 1rem;
  background-color: #ffffff;
  white-space: nowrap;
  font-size: 1.3rem;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  color: black;
  cursor: pointer;
}
.addPositionForm .inner .tag_list .tag.selected {
  background-color: #5ad970;
  border: 1px solid #5ca75c;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.addPositionForm .inner .list {
  max-height: 20rem;
  overflow-y: scroll;
  position: absolute;
  margin-top: 0rem;
  background: #f5fff7;
  /* border: 1px solid black; */
  border-radius: 2px;
  padding: 4px;
}
.addPositionForm .inner .list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.addPositionForm .inner .list ul li {
  border: 1px solid #adadad;
  padding: 4px 10px;
  border-radius: 2px;
  cursor: pointer;
  white-space: normal;
  max-width: 40%;
  background: white;
  flex: 0 0 auto;
}

.addPosition {
  position: fixed;
  display: flex;
  gap: 1rem;
  bottom: 1rem;
  right: 1rem;
  color: green;
  z-index: 101;
}
.addPosition button {
  color: green;
  background: white;
  background-color: transparent;
  border: 0px;
  cursor: pointer;
}
.addPosition button svg {
  width: 50px;
}
.addPosition.hide .addNew {
  color: green;
}
.addPosition.hide button {
  color: black;
}

.filter {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: auto;
  background: white;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
  z-index: 50;
}
.filter label {
  font-size: 0.85em;
  opacity: 0.7;
}

.downloadcsv {
  cursor: pointer;
}

.downloadcsv svg {
  height: 1em;
}

.hiddenfilter {
  display: none !important;
}

.big {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.tablegebinde {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.tablegebinde > div {
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 5px;
  flex: 0 0 calc(100% - 1em);
  box-sizing: border-box;
}
@media only screen and (min-width: 300px) {
  .tablegebinde > div {
    flex: 0 0 calc(50% - 1em);
  }
}
@media only screen and (min-width: 601px) {
  .tablegebinde > div {
    flex: 0 0 calc(33% - 1em);
  }
}
@media only screen and (min-width: 1000px) {
  .tablegebinde > div {
    flex: 0 0 calc(25% - 1em);
  }
}
@media only screen and (min-width: 1200px) {
  .tablegebinde > div {
    flex: 0 0 calc(20% - 1em);
  }
}

.red {
  background-color: rgba(0, 222, 0, 0.5);
}

.tablegebinde .bold {
  margin: 10px auto;
}

.linetop {
  border-top: 1px solid black;
}

.tablegebinde .bold,
.tablegebinde .datelabel {
  font-weight: bold;
}

.tablegebinde .item.summarize {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

body.showOverview .table {
  opacity: 1;
  height: auto;
  overflow: auto;
}

body.showProductfilter .tablegebinde {
  opacity: 1;
  height: auto;
  overflow: auto;
}

body.showKpi .kpi {
  opacity: 1;
  height: auto;
  overflow: auto;
}

.filter h1 {
  font-size: 1.25rem;
  margin-right: 4rem;
}

.filter > div:not(.loader) {
  display: flex;
  flex-flow: column;
  margin-right: 1rem;
}

.filter input,
.filter select {
  height: 2rem;
  padding: 0px;
}

.loader {
  border: 6px solid rgba(0, 0, 0, 0.05);
  /* Light grey */
  border-top: 6px solid rgba(0, 0, 0, 0.75);
  /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

.table {
  margin: 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.table h2 {
  border-bottom: 1px solid black;
  font-weight: bold;
  font-style: italic;
  background-color: #dcdcdc;
  padding: 0.5rem;
}

.table .datelabel {
  font-weight: bold;
  border-bottom: 1px solid black;
  margin: 1rem 0rem 0rem 0rem;
}
@media only screen and (min-width: 1000px) {
  .table .datelabel {
    margin: 1rem 1rem 0rem 1rem;
  }
}

.table .item {
  margin: 0rem 0rem 0rem 0rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 10rem;
  padding: 0.5rem;
}
.table .item:hover {
  background-color: #bdebc5 !important;
}
@media only screen and (min-width: 1000px) {
  .table .item {
    margin: 0rem 1rem 0rem 1rem;
  }
}

.table .item:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table .item .itemname {
  width: auto;
}

svg {
  width: 1rem;
}

.itemvalue .status_man {
  line-height: 1em;
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.itemvalue .status_man span {
  width: auto;
  border-radius: 3px;
}
.itemvalue .status_man span.tag {
  padding: 2px;
  background: yellow;
}
.itemvalue .status_man span.standort {
  padding: 2px;
  background: lightgray;
}

svg.fa-eye {
  cursor: pointer;
  margin-left: 1rem;
}

.itemvalue {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
}
.itemvalue span {
  display: inline-flex;
  justify-content: start;
  gap: 0.5rem;
}
.itemvalue span.inhouse {
  color: green;
}
.itemvalue span.manual {
  color: #b94b4b;
}
.itemvalue span small {
  color: green;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.itemall {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0rem;
}
.itemall > div {
  white-space: nowrap;
}
.itemall p {
  border: 1px solid black;
  border-radius: 4px;
  padding: 3px 10px;
  display: inline;
  background: #f1f1f1;
  margin-right: 10px;
  line-height: 2rem;
}
.itemall p.infoManual {
  background: #efbdbd;
}
.itemall p.infoManual span.standort {
  font-weight: bold;
  display: inline;
}
.itemall p.infoManual span:not(.standort) {
  background: #b94b4b;
  display: inline;
  padding: 2px 10px;
  border-radius: 6px;
  color: white;
  font-size: 0.85em;
}
.itemall p.status_paid {
  background: #c2ecc3;
}
.itemall p.status_open {
  background: #f7a6a6;
}

.itemall p .itemall p .datelabel {
  background: rgba(195, 189, 222, 0.1490196078);
  padding: 0.25rem;
}

.datelabel.summarize {
  background: rgba(239, 0, 255, 0.1490196078);
  padding: 0.5rem;
}

.item.summarize {
  font-style: italic;
}

.hideImportant {
  display: none !important;
}

.showImportant {
  display: block !important;
}

.kpi > div {
  background: #FCFCFC;
  padding: 0.5rem;
}

.kpi > div .itemvalue {
  margin: 0.25rem auto;
}

.kpi > div span {
  font-weight: bold;
  width: 50%;
}

@media only screen and (max-width: 600px) {
  body {
    padding-top: 10rem;
  }
  .loader {
    position: absolute;
    right: 2rem;
    top: 1rem;
  }
  .table {
    margin: 0rem;
  }
  .filter {
    max-width: 100vw;
    display: block;
  }
  .filter button {
    margin-top: 1rem;
  }
  .filter h1 {
    width: 100%;
  }
  .filter > div:not(.loader) {
    float: left;
  }
}/*# sourceMappingURL=style.css.map */