#palette_icon_holder {
    position: absolute;
    height: 25px;
    width: 55px;
    top: 195px;
    left: 20px;
    border-radius: 5px;
}


#palette {
    width: 250px;
    height:50px;
    position: absolute;
    border-radius: 25px;
    top: 190px;
    left: 80px;
    visibility: hidden;
    background-color: black;
}

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.6;
    border-radius: 25px;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 0.8;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: rgb(95, 161, 97);
    border-radius: 25px;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: rgb(100, 167, 102);
    cursor: pointer;
}

