

.dual-list-box {
  width: 100%;
  &__comment-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5px;
    height: 19px;
  }
  &__comment {
    display: flex;
    align-items: flex-end;
  }
  &__inner-comment {
    background-color: transparent;
    border-radius: 2px;
    font-size: 11px;
    margin-right: 5px;
    &_filtered {
      font-size: 8px;
      font-weight: bold;
      background-color: #f0ad4e;
      color: white;
      padding: 2px 5px;
    }
  }
  &__comment-info {
    font-size: 11px;
    user-select: none;
  }
  &__show-all-btn {
    user-select: none;
    cursor: pointer;
    font-size: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    height: 19px;
    padding: 1px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color ease .2s 0s;
    &:hover, &:focus {
      background-color: #e6e6e6;
    }
  }
  &__filter {
    width: 100%;
    height: 30px;
    margin-bottom: 5px;
  }
  &__filter-input {
    width: 100%;
    min-width: 0;
    outline: none;
    height: 100%;
    border: 1px solid #e5e6e7;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    padding: 6px 12px;
    border-radius: 1px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    &:focus {
      box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
      border-color: #66afe9;
    }
  }
  &__list-wrapper {

  }
  &__move-all {
    cursor: pointer;
    user-select: none;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cccccc;
    border-radius: 4px 4px 0 0;
    font-size: 24px;
    i {
      margin-right: 1px;
    }
  }
  &__list-container {
    overflow-y: scroll;
    height: 162px;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #e5e6e7;
  }
  &__option {
    user-select: none;
    padding-left: 15px;
    &_selected {
      background-color: #00acee;
    }
  }
}
