/* General Layout */
/* 8create Werbeagentur */

/* Colors */
:root {
  --textfarbe: #212121;
  --hintergrundfarbe: #eeeeee;
  --dunkelgrau: #e6e6e6;
  --grau: #969696;
  --zimmerbauergruen:#596724;
}

/* Layout */
html, body, ul, li, h1 {
  padding:0;
  margin:0;
}
html, body {
  height:100%;
  font-family: 'Open Sans', sans-serif;
  font-size:16px;
  line-height: 22px;
  color: var(--textfarbe);
  background: var(--hintergrundfarbe);
}
img {
  display: block;
}
.wrapper {
  max-width:1100px;
  margin:0 auto;
  position: relative;
}
.site {
  min-height:100%;
}
h1 {
  color: var(--textfarbe);
  font-size:45px;
  line-height:40px;
  font-weight: 100;
  margin-bottom:45px;
}
h2 {
  color: var(--textfarbe);
  font-size:20px;
  line-height:20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.flex-column {
  flex-grow: 1;
}
/* Header */
.header {
  background:#ffffff;
  padding:20px 0;
  border-bottom:5px solid var(--dunkelgrau);
}
.header .wrapper {
  display: flex;
}
.header .mainNavi {
  line-height: 135px;
  justify-content: end;
  display: flex;  
}
.header .mainNavi li {
  list-style:none;
  float: left;
  margin-right: 20px;
}
.header .mainNavi li:last-child {
  margin-right: 0;
}
.header .mainNavi li a {
  text-decoration: none;
  color:var(--textfarbe);
  text-transform: uppercase;
}
.header .mainNavi li a:hover {
  color:var(--zimmerbauergruen);
}
.header .mainNavi li.active a {
  color: var(--zimmerbauergruen);
  border-bottom:1px solid var(--zimmerbauergruen);
}

/* Main */
.main {
  padding:55px 0;
  text-align: center;
}
.main .button.primary {
  background:var(--zimmerbauergruen);
  border:none;
  color:#ffffff;
  padding:10px 20px;
  font-size: 20px;
  border-radius: 3px;
  text-transform: uppercase;
  cursor: pointer;
}
.main input.clients {
  margin:0;
  border:0;
  width:45%;
  font-size: 20px;
  padding:10px 10px;
  border-radius: 3px;
  margin-right:10px;
}
.main .order-output {
  text-align: left;
}
.main .order-output .entry {
  background:var(--dunkelgrau);
  border-bottom:1px solid rgba(0,0,0,0.2);
  padding:10px;
}
.order-output .entry:first-child {
  background-color: var(--zimmerbauergruen);
  color:#ffffff;
}
.main .order-output .entry ul li {
  display:inline-block;
  vertical-align: top;
  list-style: none;
}
.main .order-output .entry ul li.first-column {
  width:15%;
}
.main .order-output .entry ul li.second-column {
  width:50%;
}
.main .order-output .entry ul li.third-column {
  width:10%;
}
.main .order-output .entry ul li.fourth-column {
  width:10%;
}
.main .order-output .entry ul li.fifth-column {
  width:15%;
}
.order-output__header {
    text-align: left;
    margin-top: 25px;
    color: var(--textfarbe);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background: #ffffff;
    padding: 10px;
}
.customer-output__header {
    text-align: left;
    margin-top: 25px;
    color: var(--textfarbe);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background: #ffffff;
    padding: 10px;
}
.customer-output ul {
  list-style: none;
  max-height: 300px;
  overflow: auto;
}

.customer-list__item {
  padding: 10px;
  background-color: var(--dunkelgrau);
  text-align: left;
}

.customer-list__item[data-shop="new"] {
  background-color: rgba(96, 0, 255, 0.1);
}

.customer-list__item:hover, .customer-list__item.active {
  background-color: var(--grau);
  cursor: pointer;
}

.loading-indicator {
  animation:loader;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  text-align: center;
}
.row {
  margin-top: 66px;
}
.row .left, .row .right {
  display:inline-block;
  vertical-align: top;
  width:49%;
}



@keyframes loader {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Footer */
.footer {
  margin-top:-40px;
}
