* {
  box-sizing: border-box; }

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Helvetica', 'Verdana', sans-serif;
/*  font-weight: 400;*/
  font-display: optional;
  color: #444;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  }

body {
  background-color: #F2F2F2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  /*background: #ececec; */}

#stickyButton-Plus {
  height: 10vh;
  position: fixed;
  right: 1vw;
  bottom: 12vh;
  border-radius: 2rem;
  box-shadow: 0 120px 30px rgba(0,0,0,0.19), 0 20px 30px rgba(0,0,0,0.2);
  animation-duration: 3s;
  animation-delay: 3s;
  animation-iteration-count: infinite;
}

#stickyButton-RucksackLeeren {
  height: 10vh;
  position: fixed;
  left: 1vw;
  bottom: 12vh;
  border-radius: 50px;
  box-shadow: 0 20px 30px rgba(0,0,0,0.19), 0 20px 30px rgba(0,0,0,0.2);
}

.Tab {
  padding-bottom: 8vh;
  color: blue;
}

.TabLeer_BildDiv {
  float: left;
  height: auto;
  width: 50vw;
}

.TabLeer_TextDiv {
  float: left;
  height: auto;
  width: 40vw;
  margin-top: 10vh;
}

/*.Tab::after {
  content: "";
  background: url("../icons/unverpackt.png");
  opacity: 0.1;
  height: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}*/

/*.Tab::after {
  height: 150px;
  background: transparent;
  width: 100%;
  position: relative;
  left: 0;
  content: ".\A.ewfwaef\Awa<br>awejföweoaijf weöoifjweöoifjweöofijewaöofij efwe\Asdfdsf";
}*/

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  to {
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); } }

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  to {
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg); } }

@-webkit-keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0; }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@keyframes line {
  0% {
    stroke-dasharray: 2, 85.964;
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    stroke-dasharray: 65.973, 21.9911;
    stroke-dashoffset: 0; }
  100% {
    stroke-dasharray: 2, 85.964;
    stroke-dashoffset: -65.973;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

 .loader {
  border: .2rem solid #f3f3f3; /* Light grey */
  border-top: .2rem solid #3498db; /* Blue */
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.dialogBild-container {
  position: relative; 
  text-align: center;
  width: 100%;
}

.dialogBild-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: blue;
  opacity: 0.8;
}


.dialog-container {
  background: rgba(0, 0, 0, 0.57);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  -webkit-transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1); 
}

.dialog-container--visible {
  opacity: 1;
  pointer-events: auto; }

.dialog-fenster {
/*  display: none;*/
  background: #FFF;
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.24), 0 14px 28px rgba(0, 0, 0, 0.48);
  min-width: 280px;
  max-height: 50%;
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateY(30px);
          transform: translate(-50%, -50%) translateY(30px);
  -webkit-transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s;
  transition: transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s, -webkit-transform 0.333s cubic-bezier(0, 0, 0.21, 1) 0.05s; 
}

.dialog-fenster > div {
  padding-left: 1rem;
  padding-right: 1rem; }

.dialog-fenster > input {
  border: solid blue;
  padding-left: 1rem;
  padding-right: 1rem; }

.dialog-title {
  padding-top: 1rem; }

.dialog-body {
  padding-top: 1rem;
  padding-bottom: 1rem; }
  .dialog-body select {
    width: 100%;
    font-size: 0.5em; }
  .dialog-body input {
    /*border: solid blue;*/
  }
  .dialog-body span {
    font-size: 0.8em;
  }

.dialog-buttons {
  padding: 8px !important;
  float: center; }


.dialogInput-Bezeichnung {
  font-size: 120%;
  color: blue;
  border: none;
  text-align: center;
  }

.dialogInput-Bezeichnung:focus {
  outline: none;
}

.dialogInput-Gewicht {
 /* font-size: 110%;*/
  border: none;
  text-align: center;
  color: blue;
}

.dialogInput-Gewicht:focus {
  outline: none;
}

.dialogZusatz-Gewicht {
  left: -0.4rem;
  position: relative;
  font-size: 0.5em;
/*  font: inherit;*/
/*  font-size: 100%;*/
}

.dialogBehaeltnisID {
  display: none;
}

.fastest {
  -webkit-animation-duration: 200ms;
  -moz-animation-duration: 200ms;
  animation-duration: 200ms;
}

.card {
  /*height: 345px;*/
  position: relative;
  z-index: 0;
  width: 30vw;
  height: 45vh;
  left: 2.5%;
  right: 2.5%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border-radius: 15px 15px 15px 15px;
  transition: all .2s ease-in-out;
  transform: scale(.85);
  }

/*.card:hover {
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.19), 0 1rem 2rem rgba(0,0,0,0.2);
    transform: scale(0.88);
    cursor: pointer;
  }*/

.TextImTitel {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width : 70%;        /* the width of your outer block */
  margin : 0 auto;    /* to center the outer block */
}

.cardtitle {
  /*border-radius: 1.2rem 1.2rem 0 0;*/
  height: 10vh;
  padding: 0;
  border-radius: 12px 12px 0 0;
}

.bezeichnungsangabe {
  font-family: 'Montserrat', sans-serif;
  margin-top: 1%;
  font-size: 60%;
}

.gewichtsangabe {
  font-family: 'Montserrat', sans-serif;
  font-size: 60%;
}

.cardcontent {
  position: relative;
  text-align: center;
  height: 35vh;
  border-radius: 0 0 15px 15px;
}

.barcode {
  top: -8vh;
  position: relative;
  width: 100%;
}

.HatKeinGewicht {
  /*opacity: 0.5;*/
  }

.IstInRucksack {
	/*border: solid green;*/
  }

.IstNichtInRucksack {
	/*border: dotted red;*/
  /*opacity: 0.6;*/
  }

.IstInGalerie {
	border: none;
}

.IstNichtInGalerie {
	border: dotted orange;
  }

.inDenRucksack {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0.5rem;
  top: 1rem;
  border-radius: 0.4rem;
}

::placeholder {
  color: inherit;
}

.gewichtsangabe-input {
    background: none;
    border: none;
    font-size: inherit;
    color: inherit;
    outline: none;
    margin-bottom: 10%;
}

.titleIconRight {
  width: 3.5vh;
  position: absolute;
  right: 3.25vh;
  top: 3.25vh;
  border-radius: 5px;
}

.titleIconLeft {
  width: 3.5vh;
  position: absolute;
  left: 3.25vh;
  top: 3.25vh;
  border-radius: 5px;
}

.pfeilhoch {
  z-index: 10;
  width: 7%;
  height: 7%;
  position: absolute;
  right: 5%;
  top: 23%;
  border-radius: 15px;
  box-shadow: 0rem .5rem 1rem rgba(0,0,0,.3);
}

.pfeilrunter {
  z-index: 10;
  width: 7%;
  height: 7%;
  position: absolute;
  right: 5%;
  bottom: 5%;
  border-radius: 15px;
  box-shadow: 0rem .5rem 1rem rgba(0,0,0,.3);
}

.iconAendern {
  z-index: 10;
  width: 7%;
  height: 7%;
  position: absolute;
  right: 5%;
  bottom: 38%;
  border-radius: 15px;
  box-shadow: 0rem .5rem 1rem rgba(0,0,0,.3);
}

.iconIstInGalerie {
  width: 7%;
  height: 7%;
  position: absolute;
  left: 20%;
  top: 5%;
  border-radius: 0.4rem;
  border-radius: 1rem;
  box-shadow: 0rem .5rem 1rem rgba(0,0,0,.3);
}

  .navleiste {
    height: 11vh;
    background-color: grey;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .navleiste-spalte {
    box-shadow: 0rem .5rem 1rem rgba(0,0,0,.3);
    float: left;
    width: 33.33%;
    height: 100%;
    padding: 2vh;
    color: white;
    font-family: 'Montserrat', sans-serif;
    border-radius: 0.3rem 0.3rem 0 0;
    font-size: 60%;
    /*height: 300px;  Should be removed. Only for demonstration */
  }

  .navleiste-icon {
    height: 4vh;
    margin-top: -1vh;
  }

   /* Float three columns side by side */
  .column {
    float: left;
    height: 45vh;
    width: 33%;
  }

  /* Responsive columns - one column layout (vertical) on small screens */
  @media screen and (max-width: 500px) {
    .column {
       float: left;
       width: 100vw;
       height: 45vh;
    }

    .card {
      z-index: 0;
      width: 95vw;
      height: 45vh;
      position: relative;
      left: 2.5%;
      right: 2.5%;
    }

    .TabLeer_BildDiv {
      height: 45vh;
      width: 70vw;
      margin-left: 15vw;
      margin-right: 15vw;
    }

    .TabLeer_TextDiv {
      height: 45vh;
      width: 70%;
      margin-top: 0;
      margin-left: 15%;
      margin-right: 15%
    }

    .navleiste {
      height: 7vh;
    }
    .navleiste-icon {
      height: 3vh;
      margin-top: -1vh;
    }
    .bezeichnungsangabe {
      font-size: 120%;
    }
    .gewichtsangabe {
      font-size: 120%;
    }
    #stickyButton-RucksackLeeren {
  		height: 7vh;
      bottom: 8vh;
  	}
    #stickyButton-Plus {
      height: 8vh;
      bottom: 8vh;
    }
  }

  .contentBild {
    height: 100%;
    width: 100%;
    position: relative;
    /*object-fit: cover;*/
    border-radius: 0 0 12px 12px;/*1.2rem 1.2rem;*/
    }


  .dialogBild {
      margin-top: 1rem;
      max-height: 180px;
      /*width: 100%;*/
      height: 100%;
      object-fit: contain;
      border-radius: 0.3rem;
    }


  svg {
    width: 98%; 
    height: 100%;
    border-radius: 0 0 1.2rem 1.2rem;
  }

  .active {
    background-color: green;
  }

