:host {
  position: absolute;
  top: 85px;
  right: 40px;
  width: calc(100% - 140px);
  height: calc(100% - 150px);
  padding: 20px;
  background-color: #FFF;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 1px #CCC;
  z-index: 5;
}

.cont {
  display: flex;
  width: 100%;
  height: 100%;
}

.sect {
  height: 100%;
}

.sect-title {
  color: #09F;
}

.sect-ops {
  cursor: pointer;
}
.sect-ops.add {
  color: #329b46;
}
.sect-ops.delete {
  color: #D00;
}

.sect-list {
  width: 200px;
  height: 200px;
  overflow: auto;
}

.sect-list-item {
  overflow: hidden;
  text-overflow: ellipsis;
}
.sect-list-item.selected {
  background-color: #66F;
}