.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dropdown-button {
  float: left;
  width: 100%;
  background: #ED5274;
  padding: 10px 12px;
  cursor: pointer;
  border: 1px solid #ED5274;
  box-sizing: border-box;
  color: #fff;
}
.dropdown-button .dropdown-label, .dropdown-button .dropdown-quantity {
  float: left;
}
.dropdown-button .dropdown-quantity {
  margin-left: 4px;
}
.dropdown-button .fa-search {
  float: right;
  padding-top: 5px;
}

.dropdown-list {
  float: left;
  width: 100%;
  border: 1px solid lightgray;
  border-top: none;
  box-sizing: border-box;
  padding: 10px 12px;
}
.dropdown-list input[type=search] {
  padding: 5px 5px;
  width: 100%;
}
.dropdown-list ul {
  margin: 10px 0;
  max-height: 150px;
  overflow-y: auto;
}
.dropdown-list ul input[type=checkbox] {
  position: relative;
  top: 2px;
}