.nova-icon-select {
  background-color: var(--bgColorBody);
  position: relative;
}
.nova-icon-select * {
  box-sizing: border-box;
}
.nova-icon-select .nova-select-button {
  height: 26px;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--borderColorContent);
  cursor: pointer;
}
.nova-icon-select .nova-select-button .nova-select-button-content {
  display: flex;
  align-items: center;
}
.nova-icon-select .nova-select-button .nova-select-button-content .nova-icon {
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nova-icon-select .nova-select-button .nova-dropdown-icon-container svg {
  fill: #777777;
}
.nova-icon-select .nova-select-list {
  background-color: var(--bgColorBody);
  position: absolute;
  top: 26px;
  left: 0;
  z-index: 1000;
  border: 1px solid var(--borderColorContent);
  border-top: none;
  width: 100%;
}
.nova-icon-select .nova-select-list .nova-select-item {
  height: 26px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nova-icon-select .nova-select-list .nova-select-item:hover {
  border-color: var(--borderColorActived);
  background: var(--bgColorActived) !important;
  color: var(--fcActived);
}
.nova-icon-select .nova-select-list .nova-select-item .nova-icon {
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
