

/*///////*/


@media (prefers-color-scheme: dark) {   color: white;   background: black}

html {
  box-sizing: border-box;
  font-size: 10px;
  background-color: 'black';
  font-family: helvetica, sans-serif;
  margin: 0;
  border: 0;

}
*, *:before, *:after {
  box-sizing: inherit;
}


body{
  background:#222;
  margin: 0;
}

a {
  color: white;
}

canvas{
  position:absolute;
  //border:5px solid rgba(255,255,255,0.1);
  //box-shadow:inset 0 0 100px #4162a9;
  //transform:translateZ(0);
}

.player{
  width: 100vw;
  height: 60px;
  background-color: rgba(0,0,0,0.5);
  padding-left: 10px;
  position: absolute;
  top: 100vh;
}

/* Buttons styles start */
button {
  width: 60px;
  height: 100%;
  display: inline-block;
  border: none;
  //padding: 1rem 2rem;
  margin: 0;
  text-decoration: none;
  background-color: #111;
  color: #fff;
  font-family: sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: background-color 150ms ease-in-out, transform 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}

button:hover{
    background: #0053ba;
}
button:focus {
    background: #0053ba;
}

button:focus {
    outline: 1px solid #fff;
    //outline-offset: -4px;
}

#palette{
  width: 100vw;
  height: 0;
  background-color: #000;
  position: absolute;
  bottom: 0px;
  transition: all 500ms;
}

.qty-slider{
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.color-slider{
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.color-box{
  min-width: 60px;
  height: 60px;
  color: white;
  background-color: #222;
  border: 4px solid #000;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-dot{
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.slider-box{
  width: 100%;
  height: auto;
  //flex-shrink: 1;
}

input[type=range] {
  width: 75%;
  -webkit-appearance: none;
  background-color: black;
  margin: 0;
}
input[type=range]:focus {
  outline: none;
}
.color-input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 15px;
  cursor: pointer;
  //box-shadow: 0 4px 4px rgba(0,0,0,0.3) inset;
  background: linear-gradient(to right, #ff99ff, #99ccff 25%, #99ff99 55%, #ffff99 75%, #ff9999);
  border-radius: 4px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  border: 2px solid #000000;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  background: white;
  cursor: grab;
  -webkit-appearance: none;
  margin-top: -8px;
}

.qty-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 15px;
  cursor: pointer;
  //box-shadow: 0 4px 4px rgba(0,0,0,0.3) inset;
  background: linear-gradient(to right, #222222, #ffffff);
  border-radius: 4px;
  border: 0.2px solid #010101;
}



/*//////////*/
