#bf_query_list ul {
  margin: 0px;
  padding: 0;
  
  width:30%;
}

.btn-groups{
	display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  flex-direction:row;
}

/* Style the list items */
#bf_query_list ul li {
  cursor: pointer;
  position: relative;
  padding: 12px 8px 12px 40px;
  list-style-type: none;
  background: #eee;
  font-size: 18px;
  transition: 0.2s;
 
  
  /* make the list items unselectable */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
}

/* Set all odd list items to a different color (zebra-stripes) */
#bf_query_list ul li:nth-child(odd) {
  background: #f9f9f9;
}

/* Darker background-color on hover */
#bf_query_list ul li:hover {
  background: #ddd;
}

/* When clicked on, add a background color and strike out text */
#bf_query_list ul li.checked {
  background: #888;
  color: #fff;
  text-decoration: line-through;
}

/* Add a "checked" mark when clicked on */
#bf_query_list ul li.checked::before {
  content: '';
  position: absolute;
  border-color: #fff;
  border-style: solid;
  border-width: 0 2px 2px 0;
  top: 10px;
  left: 16px;
  transform: rotate(45deg);
  height: 15px;
  width: 7px;
}

/* Style the close button */
#bf_query_list .rem {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 15px 10px 15px;
  background-color: black;
  color: white;
  border-radius:50%;
}

.dq_collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.dq_active, .dq_collapsible:hover {
  background-color: #555;
}

.dq_content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.dq_close {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0%;
  padding: 12px 16px;
  transform: translate(0%, -50%);
}

.dq_close:hover {background: #bbb;}
.dq_multiselect {
  width: 200px;
}

.dq_selectBox {
  position: relative;
}

.dq_selectBox select {
  width: 100%;
  font-weight: bold;
}

.dq_overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#dq_checkboxes {
  display: none;
  border: 1px #dadada solid;
}

#dq_checkboxes label {
  display: block;
}

#dq_checkboxes label:hover {
  background-color: #1e90ff;
}