.container-check {
  width: auto;
}

ul.ks-cboxtags {
  list-style: none;
  padding: 20px;
}

ul.ks-cboxtags li {
  display: inline;
}

ul.ks-cboxtags li label {
  display: block;
  background-color: rgba(248,246,246,0.9);
  border: 2px solid rgba(118,88,53,0.28);
  color: rgba(118,88,53,0.58);
  border-radius: 10px;
  white-space: nowrap;
  /*-webkit-user-select: none;*/
  /*-moz-user-select: none;*/
  /*-ms-user-select: none;*/
  user-select: none;
  transition: all 0.2s;
  width: auto;
  vertical-align: middle;
}

ul.ks-cboxtags li label {
  padding: 8px 12px;
  cursor: pointer;
}

ul.ks-cboxtags li label::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  padding: 2px 6px 2px 2px;
  transition: transform 0.3s ease-in-out;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label {
  border: 2px solid #765835;
  background-color: #765835;
  color: #fff;
  transition: all 0.2s;
}

ul.ks-cboxtags li input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

ul.ks-cboxtags li input[type="checkbox"]:checked + label:after {
  content: "✔";
  color: white;
  position: absolute;
  margin-left: 2vh;
}

