.nav-wrapper { 
    padding: 0px;
}
.item-description {
  font-style: bold;
}


@media (max-width: 992px) {
    .tabs {
        display: none; 
    }
}

#cartItems .cartItem{
    border-bottom: 1px solid #DDD;
    padding-top:15px;
    padding-bottom: 15px;
  }
  #cartItems .cartItemHeader{
    border-bottom: 1px solid #DDD;
  }
  
  #cartItems .cartItem .productPicture{
    width: 60%;
    height: auto;
  }
  #cartItems .price{
    font-weight: bold;
    color:red;
  }
  .pdf-container{
    width: 21cm;
    height: 29.7cm;
    position: relative;
    z-index: 1;
  }
  .pdf-container section#products table tfoot td[colspan]{
    text-align: right;
  }
  .pdf-container section#products table tfoot .total *{
    font-weight: bold;
  }
  
  #products #newProduct a{
    font-size: 5em;
  }
  .card{
    margin-bottom: 1em;
  }
  .card.DRAFT{
    border:1px solid red;
  }
  .is-dragover .drop-zone{
    background: #cacaca;
  }
  form.droppable .advanced{
    display: none;
  }
  form.can-drop .advanced{
    display: inline;
  }
  
  .drop-zone label{
    top:30%;
    position: relative;
    cursor: pointer;
  }
  .drop-zone{
    min-height: 300px;
  }
  .drop-zone input[type="file"]{
    display: none;
  }
  #ajaxLoader{
    position: relative;
    text-align: center;
  }
  
  .dot{
    width: 2em;
    height: 2em;
    border:2px solid  #007bff;
    background-color: #cce5ff;
    display: inline-block;
    border-radius: 50%;
    margin: 0 .5em;
    transform: scale(0);
    animation: dotanimation 1000ms ease infinite 0ms;
  }
  .dot:nth-child(2){
    animation: dotanimation 1000ms ease infinite 200ms;
  }
  .dot:nth-child(3){
    animation: dotanimation 1000ms ease infinite 400ms;
  }
  .dot:nth-child(4){
    animation: dotanimation 1000ms ease infinite 0ms;
  }
  .dot:nth-child(4){
    animation: dotanimation 1000ms ease infinite 200ms;
  }
  
  
  @keyframes dotanimation{
    50%{
      transform: scale(1);
      opacity: 1;
    }
    100%{
      opacity: 0;
    }
  }



body {
  margin: 0;
  padding: 0;
  
  background-color: #f8f8f8;
  box-sizing: border-box;
  min-height: 100vh;
  width: 100vw;

}
.header {
  margin: 10px;
  padding: 10px;
  width: 100%;

}
.returnButton {
 /* Abstand oben & unten: 20px, zentriert horizontal */
  padding: 10px;
  display: flex;       /* Flexbox für zentrierte Ausrichtung */

}

.returnButton .btn {
 
  border-radius: 5px; /* Abgerundete Ecken für schöneres Design */
  background-color: rgb(18, 20, 38);
  size: 12520%;
}
