/* TAPE SELECTOR */

#tapeRange input[type=range] {

    background: none;
    width: 100%;
    height: 26px;
    margin: 10px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*remove default appearance */

}


/* lable */
#tapeRange datalist {
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: relative;
    background-color: none;
    color: #e7820f;
    text-shadow: 0 0 10px #e38113f0, 0 0 2px #7c5d0ced, 0 0 3px #e7820faa, 0 0 4px #ff8700aa;
    font-family: 'MuseoModerno', cursive;
    
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: 600;
    margin: -32px 0 0 0;
    user-select: none;
}

#tapeRange input[type=range]:focus {
    outline: none;
}

#tapeRange input[type=range]::-webkit-slider-runnable-track {
    width: 181px;
    height: 30px;
    margin: 0 auto;
    cursor: pointer;
    display: block;
    position: relative;
    cursor: pointer;
    border-radius: 0;
    background-clip: padding-box;
    background-color: #111;
    box-shadow: 1px 1px 0 rgba(255, 255, 255, .25);
    padding: 0px 3px;
}

#tapeRange input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background-color: #776f6b; */
    background: url("https://mellowmonks.in/demos/mixtape/4/images/fader.png");
    background-repeat:no-repeat;
    background-size:contain;
    filter:invert(100%);
    width: 18%;
    height: 25px;
    margin: 2px 40px 0px 0px;
    position: relative;
    z-index: 1;
    pointer-events: all;
    cursor: pointer;
    /* border-radius: 10px; */
    background-clip: padding-box;    
    /* background-color: #776f6b; */
    /* background-image: linear-gradient(0deg, #615957 0%, #837b75 19.78%, #736d69 30.44%, #736d69 69.56%, #fdf3eb 89.77%, #aba19b 100%); */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75), 0 0px 0px -20px rgba(0, 0, 0, 0.75), 0 0px 0px 0px rgba(0, 0, 0, 0.75);
    transition: margin 0.3s ease-in;
}

#tapeRange input[type=range]:focus::-webkit-slider-runnable-track {
    /* background: #50555C; */
}

#tapeRange input[type=range]::-moz-range-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    animation: 0.2s;
    box-shadow: 1px 1px 1px #50555C;
    background: #50555C;
    border-radius: 14px;
    border: 0px solid #000000;
}

#tapeRange input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #000000;
    height: 20px;
    width: 40px;
    border-radius: 12px;
    background: #529DE1;
    cursor: pointer;
}

#tapeRange input[type=range]::-ms-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    animation: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

#tapeRange input[type=range]::-ms-fill-lower {
    background: #50555C;
    border: 0px solid #000000;
    border-radius: 28px;
    box-shadow: 1px 1px 1px #50555C;
}

#tapeRange input[type=range]::-ms-fill-upper {
    background: #50555C;
    border: 0px solid #000000;
    border-radius: 28px;
    box-shadow: 1px 1px 1px #50555C;
}

#tapeRange input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #000000;
    border: 0px solid #000000;
    height: 20px;
    width: 40px;
    border-radius: 12px;
    background: #529DE1;
    cursor: pointer;
}

#tapeRange input[type=range]:focus::-ms-fill-lower {
    background: #50555C;
}

#tapeRange input[type=range]:focus::-ms-fill-upper {
    background: #50555C;
}

.rangeStrip {
    position: absolute;
    z-index: 10;
    display: inline-block;
    width: 69px;
    margin-left: -88px;
    margin-top: 14px;
    opacity: 0.55;
    visibility: hidden;
}

.rangeStrip:before, .rangeStrip:after {
    content: "";
    height: 18px;
    position: absolute;
    display: inline-block;
    width: 1px;
    background: black;
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.75), 4px 0 0 black, 3px 0 0 rgba(255, 255, 255, 0.75), -3px 0 0 black, -4px 0 0 rgba(255, 255, 255, 0.75)
}

.rangeStrip:before {
    float: left;
    left: 0
}

.rangeStrip:after {
    float: right;
    right: 0
}


/* END TAPE SELECTOR */