.scombobox {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  background-color: #fff;
  line-height: 20px;
  padding: 0 40px 0 20px;
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
}
.scombobox select {
  display: none;
}

.scombobox-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0 none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.scombobox-display:focus {
  outline: none;
}
.scombobox-display:disabled {
  background: #F2F2F2;
}
.scombobox-display.scombobox-invalid {
  background: rgba(228, 77, 50, 0.35);
}
.scombobox-display-div {
  border: 1px solid #CCC;
  border-radius: 4px;
  cursor: pointer;
}
.scombobox-display-div-holder {
  padding: 2px;
}
.scombobox-display-div-item {
  border: 1px solid #CCC;
  margin: 2px;
  border-radius: 4px;
  float: left;
  height: 100%;
  max-width: 150px;
  padding: 4px 18px 4px 8px;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  background: #F8F8F8;
  display: none;
}
.scombobox-display-div-item-text {
  max-width: 140px;
  overflow: hidden;
}
.scombobox-display-div-item-remove {
  position: absolute;
  right: 2px; top: 2px;
  background: #A0A0A0;
  border-radius: 100px;
  color: white;
  cursor: pointer;
  line-height: 90%;
  padding: 1px 3px 0px;
}
.scombobox-display-div-item-remove:hover {
  background: #408CBE;
}
.scombobox-display-div-item-remove:active {
  background: #3075A3;
}

.scombobox-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  padding: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  margin-top: 4px;
  overflow: hidden;
  z-index: 10;
}
.scombobox-list p {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  margin: 0;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.scombobox-list p input[type="checkbox"] {
  margin-right: 8px;
	vertical-align: middle;
}
.scombobox-list p:hover, .scombobox-list p.scombobox-hovered {
  background-color: #f6f6f6;
  font-weight: 600;
}
.scombobox-list p.scombobox-separator {
  height: 2px;
  padding: 0;
  cursor: default;
  background: #EEE;
}
.scombobox-list p.scombobox-header {
  cursor: default;
  background: #EEE;
}

.scombobox-dropdown-arrow {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  display: block;
  height: 8px;
  width: 8px;
  margin-top: -5px;
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 50%;
  opacity: 0.75;
  -webkit-transform-origin: 66% 66%;
      -ms-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;

}
.scombobox-dropdown-arrow:hover {
  opacity: 1;
}
.scombobox-dropdown-arrow-up {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.scombobox-dropdown-background {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
}
.scombobox-dropdown-background-invalid {
  border-left: 1px solid #CCC;
}

.scombobox-marker {
  background: #73c482;
  color: white;
  border-radius: 2px;
  padding: 0 2px;
  margin: 0 2px;
}

.scombobox input[type="checkbox"] {
  cursor: pointer;
}

.scombobox-disabled .scombobox-dropdown-background,
.scombobox-disabled .scombobox-dropdown-arrow {
  display: none;
}
.scombobox-disabled .scombobox-display-div {
    background: #F8F8F8;
    cursor: default;
}
