.HideOnDesktop {
  display: block;
}

.HideOnMobile {
  display: none;
}

.btnBAUSTOFFE {
  border: none;
  background-color: #ebddf7;
  color: #333;
  font-size: 1.05rem;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}
.btnBAUSTOFFE:hover {
  background-color: #5c068c;
  color: #fbf4ff;
}

.inptSEARCH {
  color: #5c068c;
  height: 38px;
  width: 350px;
  /*margin-left: 30px;*/
  padding: 5px;
  border: none;
  background-color: #5c068c;
  float: left;
  font-size: 23px;
  color: white;
}
.inptSEARCH:focus {
  background-color: #5c068c;
  color: white;
}

.inptSearchClear {
  color: #5c068c;
  height: 40px;
  width: 55px;
  margin-left: 10px;
  border: none;
  background-color: #ebddf7;
  float: left;
  font-size: 27px;
  cursor: pointer;
}

.baustoffeLabel {
  font-size: 15px;
  color: #5c068c;
}

.divBAUSTOFFZEILE {
  height: auto;
  min-height: 80px;
  width: 100%;
  min-width: 500px;
  float: left;
  padding: 2px 5px;
  border: none;
  color: #333;
  /* border-radius: 10px; */
  margin-bottom: 1px;
  /*cursor: pointer;*/
  /*margin-left: 6px;*/
  display: grid;
  grid-template-columns: 480px 200px 110px 110px 150px;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #e8d6f5, #dcc1f1);
}
.divBAUSTOFFZEILE:hover {
  background: #ebddf7;
}

.divBAUSTOFFE {
  float: left;
  text-align: left;
  padding: 0px 5px;
  margin: 5px;
  /*border: 1px solid rgba(100,100,100,0.2); */
}

.divBLOCK_NAME {
  grid-area: 1/1/2/2;
}

.divBLOCK_WARENGRUPPE {
  grid-area: 1/2/2/3;
}

.divBLOCK_EINHEIT {
  grid-area: 1/3/2/4;
}

.divBLOCK_PREISE {
  grid-area: 1/4/2/5;
}

.divBLOCK_ANFRAGE {
  grid-area: 1/5/2/6;
}

@media only screen and (min-width: 150px) and (max-width: 1280px) {
  .HideOnDesktop {
    display: none;
  }
  .HideOnMobile {
    display: block;
  }
  .inptSEARCH {
    height: auto;
    padding: 0.6rem;
    font-size: 2rem;
    /*margin-bottom: 25px;*/
  }
  .inptSearchClear {
    height: 80px;
    width: 78px;
    margin-left: 15px;
    font-size: 45px;
  }
  .baustoffeLabel {
    color: #5c068c;
  }
  .btnBAUSTOFFE {
    background-color: #ebddf7;
    color: #333;
    font-size: 1.35rem;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 0.6rem 0.8rem;
  }
  .divBAUSTOFFZEILE {
    min-height: 120px;
    width: 100%;
    min-width: 100%;
    padding: 0;
    border: 2px solid #7c850e;
    border: none;
    /* border-radius: 10px; */
    margin-bottom: 10px;
    /*cursor: pointer;*/
    /*margin-left: 6px;*/
    grid-template-columns: auto 310px;
    grid-template-rows: auto auto auto;
    grid-column-gap: 10px;
    grid-row-gap: 5px;
  }
  .divBAUSTOFFE {
    float: left;
    text-align: left;
    padding: 0px 5px;
    /*margin: 5px;*/
    /*border: 1px solid rgba(100,100,100,0.2); */
  }
  .divBLOCK_NAME {
    grid-area: 1/1/3/2;
  }
  .divBLOCK_WARENGRUPPE {
    grid-area: 3/1/4/2;
  }
  .divBLOCK_EINHEIT {
    grid-area: 1/2/2/3;
  }
  .divBLOCK_PREISE {
    grid-area: 2/2/3/3;
  }
  .divBLOCK_ANFRAGE {
    grid-area: 3/2/4/3;
    align-content: top;
  }
}