.colorPicker{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	margin: auto;
	background: var(--bgdark);
	padding: 8px;
	z-index: 5000;
	display: none;
	flex-wrap: wrap;
	max-width: 600px;
	gap: 8px;
}
.colorPicker.visible{
	display: flex;
}
.colorPicker .c_caja:nth-child(2){
	flex-basis: 100%;
	width: 100%;
}
.c_caja{
	display: flex;
	flex-basis: 40%;
	flex-grow: 1;
	flex-direction: column;
}
.colorPicker .hue::-webkit-slider-runnable-track{
  background: linear-gradient(to right, 
        hsl(0, 100%, 50%), 
        hsl(30, 100%, 50%), 
        hsl(60, 100%, 50%), 
        hsl(90, 100%, 50%), 
        hsl(120, 100%, 50%), 
        hsl(150, 100%, 50%), 
        hsl(180, 100%, 50%), 
        hsl(210, 100%, 50%), 
        hsl(240, 100%, 50%), 
        hsl(270, 100%, 50%), 
        hsl(300, 100%, 50%), 
        hsl(330, 100%, 50%), 
        hsl(360, 100%, 50%)
    );
}
.colorPicker .hue::-moz-range-track{
  background: linear-gradient(to right, 
        hsl(0, 100%, 50%), 
        hsl(30, 100%, 50%), 
        hsl(60, 100%, 50%), 
        hsl(90, 100%, 50%), 
        hsl(120, 100%, 50%), 
        hsl(150, 100%, 50%), 
        hsl(180, 100%, 50%), 
        hsl(210, 100%, 50%), 
        hsl(240, 100%, 50%), 
        hsl(270, 100%, 50%), 
        hsl(300, 100%, 50%), 
        hsl(330, 100%, 50%), 
        hsl(360, 100%, 50%)
    );
}
/*FIN COLOR*/
input[type="range"] {
   -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    outline: none;
}
/***** Chrome, Safari, Opera and Edge Chromium styles *****/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
   background-color: #053a5f;
   border-radius: 10px;
   height: 20px;  
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
   appearance: none;
   margin: 0; /* Centers thumb on the track */

   /*custom styles*/
   background-color: transparent;
   border: 2px double white;
   outline: 2px solid black;
   height: 20px;
   width: 20px;
   border-radius: 50%;
  /*mask-image: url('../img/icons/indicador.svg');
   mask-image-repeat: no repeat;
   -webkit-mask-repeat: no-repeat;*/
}
/*MUESTRA*/
.color_de_muestra{
	width: 100%;
	height: 50px;
	border: 1px solid silver;
	display: flex;
	justify-content: center;
	align-items: center;
}
.color_de_muestra .valor_hsl{
	mix-blend-mode: difference;
    color: white;
    font-weight: bold;
    letter-spacing: 3px;
}