.itemsFloatingPanel{
  top: -10000px;
  left: -10000px;
  z-index: 1050;
  font-size: 12px;
  width: 150px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: stretch;
  padding: 5px;
  background-color: #ffffff;
  color: #333333;
  opacity: 0.9;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  overflow: auto;
}
.itemsFloatingPanel.extend{
  height: 420px;
  position: fixed;
}
.floatingPanel-head{
  font-size: 14px;
  height: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  flex-grow: 0;
}
.floatingPanel-extend{
  position: relative;
  width: 15px;
  height: 15px;
  flex-grow: 0;
  border-radius:2px;
  border:1px solid rgba(85,130,243,1);
  cursor: pointer;
}
.floatingPanel-extend::before{
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-left: 1px solid rgba(85,130,243,1);
  border-bottom: 1px solid rgba(85,130,243,1);
  top: 5px;
  left: 3px;
}
.floatingPanel-extend::after{
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background: rgba(85,130,243,1);
  bottom: 3px;
  left: 3px;
  transform-origin: left bottom;
  transform: rotate(45deg);
}
.floatingPanel-search{
  height: 25px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 2px;
  margin-top: 5px;
}
.floatingPanel-searchInput{
  flex-grow: 1;
  outline: none;
  border: none;
  margin: 0 20px 0 3px;
}
.floatingPanel-searchIcon{
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.floatingPanel-searchIcon:before{
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
}
.floatingPanel-searchIcon:after{
  content: "";
  width: 7px;
  height: 1px;
  background: #c0c0c0;
  position: absolute;
  top: 10px;
  left: 10px;
  transform-origin: left top;
  transform: rotate(45deg);
}
.floatingPanel-list-content{
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-direction: column;
  align-items: stretch;
  overflow: auto;
}
.floatingPanel-list{
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
  align-items: stretch;
  padding: 0px;
  margin: 5px 0px 0px;
  overflow: auto;
}
.floatingPanel-list-item{
  padding: 4px 5px;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-shrink: 0;
}
