/* --- MUSIC PLAYER SECTION --- */

.music {
    height: 100%;
    background-color: black;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    color: white;
    text-align: center;
    
}

.music h2 {
    margin: 5px 0 15px;
    font-family: "Jersey 15";
    letter-spacing: 3px;
    font-size: 2em;
}

#musicplayer{
    color: white;
    border: 2px solid white;
    width: 210px;
}

.songtitle{
    padding: 5px;
    border-bottom: 2px solid white;
    display:block;

    font-family: "Jersey 15";
    font-weight: 100;
    letter-spacing: 1px;
}

.controls{
    font-size: 18px !important; 
    background-color: black; 
    text-align:center;
    width: 100%;
}

.controls td{
padding: 10px 5px 0 5px; 
}

.seeking{
    background-color: black;

    display:flex;
    justify-content: space-evenly;
    padding: 5px;

    font-family: "Jersey 15";
    font-weight: 100;
    letter-spacing: 1px;

    color: white;
}

.current-time{
    padding-right: 5px;
}

.total-duration{
    padding-left: 5px;
}

i.fas:hover{
    cursor: pointer;
}

i.fas.fa-pause, i.fas.fa-play, i.fas.fa-forward, i.fas.fa-backward{
    color: white;  
}

input[type=range] {
-webkit-appearance: none;
    width: 100%;
    background-color: black;
}

input[type=range]:focus {
outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 7px;
cursor: help;
background: white;
}

input[type=range]::-webkit-slider-thumb {
height: 12px; 
width: 12px; 
border-radius: 0; 
background: black; 
cursor: pointer;
-webkit-appearance: none;
    border: solid 2px white;
margin-top: -2.5px;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: help;
    background: var(--accent2);
}

input[type=range]::-moz-range-thumb {
    height: 10px;
    width: 10px; 
    border-radius: 0;
    background: var(--accent2);
    cursor: pointer;
    border: none;
}