.colorpicker {
  position: relative;
  background: #fff;
  width: 300px;
  padding-left: 8px;
  box-shadow: 0 16px 32px -2px rgba(0, 0, 0, 0.3);
  display:none;
}
.colorpicker .hue {
  width: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  transform: translate(-100%, 0);
  background: linear-gradient(to bottom, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red);
}
.colorpicker .hue .drag {
  --y: 0;
  width: 10px;
  height: 2px;
  top: -2px;
  right: 0;
  position: absolute;
  background: #000;
  transform: translate(0, var(--y));
}
.colorpicker .field {
  --backgroundHue: 150;
  width: 100%;
  padding-bottom: 112%;
  position: relative;
  background: hsl(var(--backgroundHue), 100%, 50%);
}
.colorpicker .field .fieldOverlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, #000), linear-gradient(to right, #fff, transparent);
}
.colorpicker .field .fieldOverlay .drag {
  --x: 0;
  --y: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: -10px;
  top: -10px;
  border: 2px solid #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
  transform: translate(var(--x), var(--y));
}
.colorpicker label {
  text-align: center;
  color: #000;
  font-size: 14px;
  display: none;
  margin: 12px 0 0 0;
}
.colorpicker input {
  outline: none;
  border: none;
  font-family: inherit;
  padding: 5px;
  display: none;
  text-align: center;
  color: #333;
  font-size: 16px;
  margin: 6px 0 20px 12px;
  background: #eee;
  width: calc(300px - 34px);
}
.colorpicker ul {
  padding: 0 10px 10px 8px;
  margin: 0;
  list-style: none;
  display: none;
  justify-content: space-between;
}
.colorpicker ul li {
  font-size: 12px;
  text-align: center;
  min-width: 30px;
  color: #000;
  margin: 0 4px 4px;
}
.colorpicker ul li strong {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 5px 10px;
  min-width: 60px;
  margin: 0 0 6px;
  background: #eee;
}

.colorreflection{
	border: 1px #080808 solid;
    width: 73px;
    height: 20px;
    padding-right: 80px;
    background: red;
	cursor:pointer;
}

