.colorPickWrapper {
  position: relative;
  width: 0;
  height: 0;
}
#colorPick * {
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
#colorPick {
  background: #ffffff;
  -webkit-backdrop-filter: blur(15px);
  position: absolute;
  border-radius: 1rem;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
  gap: 0.3rem;
  width: 120px;
  padding: 0.6rem;
  box-sizing: content-box;
  z-index: 999;
}
#colorPick span {
  user-select: none;
  font-size: 9pt;
  text-transform: uppercase;
  font-weight: bold;
  color: #bbb;
  margin-bottom: 5px;
  display: block;
  clear: both;
}
.customColorHash {
  border-radius: 5px;
  height: 23px;
  width: 122px;
  margin: 1px 4px;
  padding: 0 4px;
  border: 1px solid #babbba;
  outline: none;
}
.customColorHash.error {
  border-color: #ff424c;
  color: #ff424c;
}
.colorPickButton {
  border-radius: 50px;
  width: 23px;
  height: 23px;
  margin: 0px 3px;
  cursor: pointer;
  display: inline-block;
  border: 2px solid white;
}
.colorPickButton:hover {
  border: 2px solid rgba(0, 0, 0, 0.2);
}
.colorPickDummy {
  background: #fff;
  border: 1px dashed #bbb;
}
