.comp-selector {
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow: hidden;
}
.left {
  width: 180px;
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  border-right: 1px solid #999;
  &__item {
    height: 42px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 12px;
    &:hover, &--active {
      background-color: #F2F2F2;
    }
  }
}
.right {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  &__title {
    padding-left: 12px;
    padding-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
    height: 52px;
    border-bottom: 1px solid #999;
    display: flex;
    flex-direction: row;
    align-items: center;
    &__search {
      width: 200px;
      display: inline-block;
      margin-left: auto;
    }
  }
  &__content {
    padding: 12px;
  }
}
