.reisfilterhome ul {
  column-count: 4;
  column-gap: 2rem;
  list-style-position: inside; /* keeps bullets from getting clipped at column edges */
  padding: 0;
  margin: 30px 0 0 0;
}

.reisfilterhome ul li label {
  display: flex;
}

.reisfilterhome ul li label input {
  min-width: 15px;
  min-height: 15px;
}

.reisfilterhome ul li {
  break-inside: avoid;          /* don't split a single item across columns */
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;     /* old WebKit/Safari */
}
.reisfilterhome ul li div {
  color: #111;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .reisfilterhome ul {
    column-count: 2;
  }
  .reisfilterhome ul li label input{
    margin-right: 8px !important;
  }
}

@media only screen and (max-width: 380px) {
  .reisfilterhome ul {
    column-count: 1;
  }
}
