#iconsSelector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
  grid-gap: 1px;
}

#iconsSelector span {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 2.5px dotted #fff;
  border-radius: 3px;
}

#iconsSelector span img {
  max-width: 90%;
  max-height: 90%;
  opacity: 0.6;
}

#iconsSelector span.selectedIcon img {
  opacity: 1;
}

#iconsSelector span.selectedIcon {
  border: 2px solid black !important;
  background-color: rgb(192, 250, 191) !important;
}

span.icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-color: #ccc;
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 0;
  margin: 0;
}

.icon.big img {
  padding: 3px;
}

.icon.small {
  width: 24px;
  height: 24px;
}

#iconsWizardModal {
  display: none;
  z-index: 10000;
  width: 100%;
  height: 500px;
  background-color: #ccc;
  position: absolute;
  top: 0;
  opacity: 0.95;
}

.icon-selector .icon:hover {
  cursor: pointer;
}

.bi-eye {
  background-image: url(/images.631/misc/eye.svg) !important;
}

.bi-eye-slash {
  background-image: url(/images.631/misc/eye-slash.svg) !important;
}

