$grey: #d9d9d9;

@keyframes grow-chip {
  0% {
    transform: scale(0)
  }
  60% {
    transform: scale(1.1)
  }
  100% {
    transform: scale(1)
  }
}

.chips_input_container {
  display: flex;
  align-items: center;
  padding: 5px;
  min-height: 50px;
  border-radius: 5px;
  border: 1px solid grey;
  background-color: white;
}

.chips_wrapper {
  display: flex;
  flex-wrap: wrap;
  flex: 0 100%;
  margin-left: 10px;
  position: relative;
  input {
    font-size: 1rem;
    line-height: 26px;
    letter-spacing: 0.3px;
    outline: none;
    margin-left: 5px;
    background-color: rgba(0,0,0,0);
    &:focus {
      border: none;
      outline: none;
    }
    &::placeholder {
      color: $grey;
      opacity: 1;
    }
  }
}

.results_container {
  position: absolute;
  width: 100%;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, .19);
  left: 0;
  border-radius: 5px;
}

.input_container {
  height: auto;
  align-items: center;
  display: flex;
  flex: 1;
}

.search_container {
  width: 100%;
  &_input {
    display: block;
    align-items: center;
    padding-right: 5px;
    & input {
      width: 100%;
      min-width: 200px;
      border: none;
    }
  }
}

.chip {
  padding: 5px 10px 5px 10px;
  margin: 5px;
  text-transform: uppercase;
  display: flex;
  border-radius: 50px;
  background-color: #969696;
  font-size: 12px;
  font-weight: 600;
  line-height: 2.17;
  letter-spacing: 0.2px;
  align-items: center;
  color: white;
  animation: grow-chip 250ms cubic-bezier(0.32, 0.62, 0.2, 0.88);
  cursor: pointer;
  > div {
    margin-left: 10px;
    height: 24px;
    width: 24px;
    color: white;
  }
  &:hover {
    &:after {
      display: block;
    }
  }
}

.nothing_found_container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid white;
  height: 60px;
  color: $grey;
  background-color: white;
}

.list_item {
  background-color: white;
  color: black;
  padding: 10px;
  cursor: pointer;
  &:hover {
    background-color: grey;
    color: white;
  }
  &.selected {
    color: white;
    background-color: grey;
  }
  &.pre_selected {
    background-color: lightgray;
  }

}



