.hacked-select {
  width: 100%;
}

.hacked-select-label {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #e3e3e3;
  cursor: pointer;
  background-color: white;

  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.hacked-select-label-text, .hacked-select-label-icon {
  display: inline;
}

.hacked-select-label-icon {
  float: right;
  margin: 3px 0px;
  font-size: 12px;
}

.hacked-select-options {
  width: calc(100% - 30px);
  display: none; 
  position: absolute;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0px 0px 12px -7px;

  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.hacked-select-options > div {
  padding: 8px;
  background-color: white;
}

.hacked-select-options > div:hover {
  color: white;
  cursor: pointer;
  background-color: #3699FF;
}

.hacked-select-options > div:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.hacked-select-options > div:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.hacked-select-delete-btn {
  float: right;
}
