/* COLORPICKER 1 EXAMPLE */
#colorPicker {
  width: 30px;
  height: 30px;
  position: relative;
  clear: both;
}

#colorPicker .track {
  background: #fff
    url(https://wenzels.app/public/assets/text-color.png)
    no-repeat 50% 50%;
  height: 150px;
  width: 150px;
  padding: 10px;
  position: absolute;
  cursor: crosshair;
  float: left;
  left: -35px;
  top: -71px;
  display: none;
  z-index: 10;
  -webkit-border-radius: 150px;
  -moz-border-radius: 150px;
  border-radius: 150px;
}
#colorPicker input.colorInput{
    position: absolute;
    top:8px;
    left:80px;
    border: none;
    background-color: transparent;
    z-index: 8;
    color: #495057;
}
#colorPicker .color {
  width: 70px;
  height: 36px;
  display: block;
  position: relative;
  z-index: 5;
  background-color: #ccc;
  cursor: pointer;
}

#colorPicker .colorInner {
  z-index: 5;
  width: 70px;
  height: 36px;
}

#colorPicker .dropdown {
  list-style: none;
  display: none;
  width: 27px;
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 1000;
}

#colorPicker .dropdown li {
  height: 35px;
  cursor: pointer;
}
