#musicplayer{ 
  font-family: "Kanit", sans-serif;
  font-weight: normal;
  height:30px;
  width:100%;
  left:0;
  position:fixed;
  margin-bottom:20px;
  display:flex;
  
  background: linear-gradient(180deg, #eff7fa 0%, #a5cae5 25%, #a5cae5 75%, #eff7fa 100%);/* Player Background */
  border:none; /* Player Border */
  outline: none;  

    }
 
    .songtitle{ 
    display:block;
    padding:2px; /* Title Padding */
    font-family: "Kanit", sans-serif;
    font-weight: normal;
    margin-top:1px;
    margin-right: 5px; 
    font-size:15px;
    color: #6c93d8;
    letter-spacing: 1px; 

    background: white; /* Title Background */
    border: #6c93d8 inset 1px;
       border-radius:6px;
       box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
    }
 
    .controls{
      font-size:12px; /* Control */
      text-align:center;
      width:100px;
      height:20px;
      margin-top:-1px;
      text-decoration:none;
      filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0.5px #a5cae5) drop-shadow(0 0.5px #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5);
    }
 
    .controls td{
       padding-top:5px; /* Control Padding */
    }
 
    .seeking{
      width:75%;
      background: transparent;/* Colour of Seek Bar */
      display:flex;
      justify-content: space-evenly;
      padding:7px; /* Seek Bar Padding */
        
    }
 
    .current-time{  
      padding-right:5px;
      margin-right: 3px; 
      margin-top: -5px;
      color: #6c93d8;
     filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0.5px #a5cae5) drop-shadow(0 0.5px #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5);
       
    }
 
    .total-duration{
      padding-left:5px;
      margin-top: -5px;
      color: #6c93d8;
      filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white)  drop-shadow(-0.5px 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0.5px #a5cae5) drop-shadow(0 0.5px #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5);
    }
 
    i.fas:hover{
        cursor:cell;
    }
 
    i.fas.fa-pause, i.fas.fa-play, i.fas.fa-forward, i.fas.fa-backward{
        color: #6c93d8; /* Control Colours */
        font-style: normal;
       
    }
    
    input[type=range] {
        -webkit-appearance: none;
        width: 100%;
      background: transparent;
    }
    
    input[type=range]:focus {
        outline: none;
    }
    
    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 6px; /* Track Seek Thickness */
        cursor: grab;
        border-radius: 6px;
        background: white; /* Track Seek Colour */
        
    }

    input[type=range]::-webkit-slider-thumb {
        height:58px;
        width:58px;
        background-image:  url(https://files.catbox.moe/815g2h.gif); /* Image of Seeker */
        background-size: 58px;
        -webkit-appearance: none;
        margin-top: -25px;
        filter:drop-shadow(-0.5px 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0.5px #a5cae5) drop-shadow(0 0.5px #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5);  /* Outline of Volume Seeker */ 
        
    }
    
input[type=range].volume_slider::-webkit-slider-runnable-track { 
    background: white; /* Colour of Volume Seeker */
     filter:drop-shadow(-0.5px 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0 #a5cae5) drop-shadow(0 0.5px 0.5px #a5cae5) drop-shadow(0 0.5px #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5) drop-shadow(0.5px 0.5px 0 #a5cae5);  /* Outline of Volume Seeker */ 
    }
    
 input[type=range].volume_slider::-webkit-slider-thumb {
    background-image: url(https://files.catbox.moe/9ls2ew.gif);/* Image of Volume Seeker Thumb */
    background-size: 32px;
    height: 32px;
    width: 32px; 
    margin-top: -15px;
   }
 
 
.slider_container {  
  width: 15%;  /* Width of Volume Seeker */
  display: flex;
  justify-content: center;
  align-items: center;
}    


