#musicplayer{ 
z-index: 1;
font-family: 'MS UI Gothic';
          font-size: 14px;
          height:30px;
          width:100%;
          left:0;
          bottom:0;
          position:fixed; 
          display:flex;
          background-image: url(https://file.garden/ZceRIIBo0FZgJaaA/shrine%20asset/clover042.gif);
          outline: ridge 2px #B6D102;  
          font-weight: bold;
          color: black;
            }
         
       .songtitle{ 
    display:block;
    padding:2px; /* padding around song title */
font-family: 'MS UI Gothic';
    margin-top:4px;
    margin-right: 5px; 
    font-size:14px;
    color:black;
    letter-spacing: 1px; 
    background: white;/* background of song title */
    border: ridge 1px #B6D102; 
    text-shadow: none; 
       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; /* size of controls */
      text-align:center;
      width:100px;
      height:20px;
      text-decoration:none;
    }
 
    .controls td{
       padding-top:5px; /* padding around controls */
    }
 
    .seeking{
      width:75%;
      background: transparent;/* background color of seeking bar */
      display:flex;
      justify-content: space-evenly;
      padding:7px; /* padding around seeking bar */
       
    }
 
    .current-time{  
      padding-right:5px;
      margin-right: 3px; 
       
    }
 
    .total-duration{
      padding-left:5px;
    }
  .ctrlimg {
   height:16px;
   width:16px;
   }
    
    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; /* thickness of seeking track */
        border-radius: 6px;
        background: white; /* color of seeking track */
        border: ridge 1px #B6D102; 
    }

    input[type=range]::-webkit-slider-thumb {
      
        height: 10px; /* height of seeking square */
        width: 10px; /* width of seeking square */
        background-image:  url('https://file.garden/ZceRIIBo0FZgJaaA/shrine%20asset/ball_s_04.gif'); /* image of  seeking square */
        background-size: 10px;
        -webkit-appearance: none;
        margin-top: -3px;
        
    }
    
input[type=range].volume_slider::-webkit-slider-runnable-track { 
    background: white; /* color of volume seeking track */
    }
    
 input[type=range].volume_slider::-webkit-slider-thumb {
    background-image: url(https://file.garden/ZceRIIBo0FZgJaaA/shrine%20asset/tumblr_4e370fbf976df3d46dc0341c26e9c93b_cf7cbbb3_75.gif);/* image of volume seeking square */
    background-size: 20px;
    height: 20px; /* height of volume seeking square */
    width: 20px; 
    margin-top: -8px;
   }
 
 
.slider_container {  
width: 15%;       /* width of volume seeker */
display: flex;
justify-content: center;
align-items: center;
}