@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
body{
    background-color: black;
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
   background: black;  
}
::-webkit-scrollbar-thumb{
   border-radius: 25px; 
   background: rgba(114, 114, 167, .2)  
}
header{
    width: 100%;
    height: 95%;
    display: flex;
    flex-wrap: wrap;
    color: white;
}
header .songlist{
    width: 20%;
    height: 63%;
    background-color: black;
    
}
header .songdetails{
    width: 80%;
    height: 85%;
    background-color: rgb(15, 15, 15);
    overflow-y: scroll;
}
header .playarea{
    width: 100%;
    height: 10%;
    background-color: black;
    margin-top: -40px;
}
header .songlist h1{
    margin: 20px 0px 0px 20px;
    margin-left: 120px;
    font-size: 25px;
}
header .songlist .playlist {
    margin: 40px 0px 0px 20px;
    
}
header .songlist .playlist h4 {
    font-size: 15px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: rgb(114, 114, 167);
    transition: .4s linear;
}
header .songlist .playlist h4:hover {
    color: white;
}
header .songlist .playlist h4 span{
    position: relative;
    margin-right: 20px;
}
header .songlist .playlist h4 span::before{
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px  rgb(114, 114, 167);
    border-radius: 50%;
    top: -4px;
    transition: .4s linear;
}
header .songlist .playlist h4:hover span::before{
    color: white;
}
header .songlist .playlist h4 .bi{
   display: none;
}
header .songlist .playlist .active{
    color: #547afa ;
 } 
 header .songlist .playlist .active span{
    display: none;
 } 
 header .songlist .playlist .active .bi {
    display: flex;
    margin: right 20px; ;
 } 
header .songlist .menuesong{
    width: 100%;
    height: 100% ;
    margin-top: 40px;
    overflow-y: scroll;
    overflow-x: hidden;
}
header .songlist .menuesong::-webkit-scrollbar{
 width: 10px;
}
header .songlist .menuesong::-webkit-scrollbar-track{
 background: black;
}
header .songlist .menuesong::-webkit-scrollbar-thumb{
    max-height: 5px;
}
header .songlist .menuesong li{
    list-style-type: none;
    position: relative;
    padding: 5px 0px 5px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px ;
    cursor: pointer;
    transition: .3s linear;
}
header .songlist .menuesong li:hover{
   background: rgb(114, 114, 167,.2);
}
header .songlist .menuesong li span{
    font-size: 12px;
    color: rgb(114, 114, 167);
 }
 header .songlist .menuesong li img{
   width: 30px;
   width: 30px;
   margin-left: 25px;
 }
 header .songlist .menuesong li h5{
   font-size: 11px;
   margin-left: 15px;
   width: 160px;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
  }
  header .songlist .menuesong li h5 .subtitle{
    font-size: 8px;
    color: rgb(114, 114, 167) ;
   }
   header .songlist .menuesong li .bi{
    position: absolute;
    right: 15px;
   }   
   header .playarea{
    display: flex;
    padding: 0px 20px;

   }
   header .playarea .wave{
   width: 30px;
   height: 30px;
   padding-bottom: 5px;
   display: flex;
   align-items: flex-end;
   margin-right: 10px;
   margin-top: 30px;

}
header .playarea .wave .wave1{
 width: 3px;
 height:10px ;
 background: #547afa;
 margin-right: 3px;
 border-radius: 10px 10px 0px 0px;
 animation: unset;
}

/* js classe*/
header .playarea .active1 .wave1{
    animation: wave .5s linear infinite;
}
 
header .playarea .active1 .wave1:nth-child(2){
    animation-delay: .4s;
   }
   
   header .playarea .active1 .wave1:nth-child(3){
    
    animation-delay: .8s;
   }
   @keyframes wave {
    0%{
        height: 10px;
    }
    50%{
        height: 15px;
    }
    100%{
        height: 10px;
    }
}
header .playarea img {
    width: 50px;
    height: 50px;
    margin-left: 5px;
    margin-top: 10px;
}
header .playarea h5 {
    width: 150px;
    margin-left: 10px;
    margin-top: 20px;
    color: white;
    line-height: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    text-align: center;
}
header .playarea h5 .subtitle{
   font-size: 10px;
   color: rgb(114, 114, 167);
   width: 100%;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}
header .playarea .icons{
    font-size: 20px;
    color: white;
    margin: 0px 20px 0px 40px;
    outline: none;
    display: flex;
    align-items: center;

 }
 header .playarea .icons .bi{
    cursor: pointer;
    outline: none;
 }
 header .playarea .icons .shuffle {
    font-size: 17px;
    margin-right:10px ;
    width: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;

 }
 header .playarea .icons #downmusic {
   text-decoration: none;
   color: white;
    font-size: 20px;
    margin-left: 10px;
 }
 header .playarea .icons .bi:nth-child(3){

    padding: 1px 5px 0px 7px;
    margin: 0px 5px;
 }
header .playarea span{
    color: white; 
    width: 32px;  
    font-weight: 600;
    font-size: 13px; 
}
header .playarea #currentstart{
    margin: 20px 0px 0px 10px;
}
header .playarea .bar {
    background: rgb(114, 114, 167,.2);
    position: relative;
    width: 50%;
    height: 2px;
    margin: 30px 15px 0px 10px ;
}
header .playarea .bar .bar2 {
    background: #547afa;
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    transition: .2s linear;

}
header .playarea .bar .dot{
    position: absolute;
    background: #547afa;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    top: -1.5px;
    left: 0%;
    transition: .2s linear;
}
header .playarea .bar .dot.dot::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #547afa;
    border-radius: 50%;
    left: -5.8px;
    top: -6px;
    box-shadow: inset 0px 0px 3px #547afa ;
}
header .playarea .bar input{
    position: absolute;
    top: -7px;
    width: 100%;
    left: 0;
    cursor: pointer;
    z-index:  99999999999999999999999999;
    opacity: 0;
}
header .playarea .vol{
    position:relative;
    height: 2px;
    background: rgb(114, 114, 167,.2);
    width: 100px;
    margin-left: 50px;
    cursor: pointer;
    margin: 30px 0px 0px 60px ;
}
header .playarea #currentend{
    margin: 20px 0px 0px 10px;
}
header .playarea .vol .bi{
    position:absolute;
    font-size: 25px;
    top: -17px;
    left: -30px;
    margin: 0px 0px 0px -5px;
}
header .playarea .vol input{
    position:absolute;
    width: 100%;
    top: -1px;
    left: 0;
    z-index: 99999999999999999999999999;
    opacity: 0;
    cursor: pointer;
    margin: -6px 0px 0px -5px;
}
header .playarea .vol .volbar{
    position:absolute;
    width: 100%;
    height: 100%;
    background: #547afa;
    top: 0;
    transition: .2s linear;
}
header .playarea .vol .dot{
    position: absolute;
    background: #547afa;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    top: -1.5px;
    left: 100%;
    transition: .2s linear;
}
header .playarea .vol .dot::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #547afa;
    border-radius: 50%;
    left: -5.8px;
    top: -6px;
    box-shadow: inset 0px 0px 3px #547afa ;
}
header .songdetails nav{
    width: 90%;
    height: 10%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .songdetails nav a {
    text-decoration: none;
    color:rgb(114, 114, 167) ;
}
header .songdetails nav ul li a:hover {
    color:white ;
}
header .songdetails nav a:visited {
   text-decoration: none;
    color:rgb(114, 114, 167) ;
}
header .songdetails nav a:active {
    text-decoration: none;
     
 }
header .songdetails nav ul{
    display: flex;
}
header .songdetails nav ul li{
    list-style: none;
    position: relative;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    margin-right: 30px;
    color:rgb(114, 114, 167) ;
    transition: .2s linear;
}
header .songdetails nav ul li:hover{
    color:white ;
}

header .songdetails nav{
    z-index: 2;
}
header .songdetails nav .search{
    margin-left: 200px ;
    position: relative;
    width: 40%;
    padding: 1px 10px;
    border-radius: 25px;
    color: #717171;
    border: 1px solid rgb(255, 255, 255 ,.05);
}
header .songdetails nav .search::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(56, 56, 56, 0.5);
    border-radius: 25px;
    margin-top: -1px;
    margin-left: -10px;
    backdrop-filter: blur(5px);
    z-index: -1;
    
}
header .songdetails nav .search .searchresults {
    position: absolute;
    width: 100%;
    height: 200px;
    margin-top: 10px;
    overflow: auto;
    border-radius: 10px;
    z-index: 5;

}
header .songdetails nav .search .searchresults .card{
    display: flex;
    align-items: center;
    width: 97%;
    min-height: 45px;
    background: rgba(56, 56, 56, .8);
    margin-bottom: 5px;
    text-decoration: none;
    display: none;
}

header .songdetails nav .search .searchresults .card img {
    width: 35px;
    height: 35px;
    border-radius: 5px;
}
header .songdetails nav .search .searchresults .card .content {
    margin-left: 10px;
    width: 80%;
    height: 100%;
   padding: 0;
   font-size: 14px;
   color: white;
   font-weight: 200;
}
header .songdetails nav .search .searchresults .card .content .subtitle {
    font-size: 10px;
   font-weight: 100;
   color: rgb(148, 148, 203);

}
header .songdetails nav .search .bi{
    font-size: 13px;
    padding: 3px 0px 0px 10px ;
    cursor: pointer;
}
header .songdetails nav .search input{
    background: none;
    border: none;
    color: white;
    outline: none;
    padding: 0px 10 px;
    font-size: 12px;
    width: 85%;
    align-items: center;
}

header .songdetails nav .log
{   
    display: flex;
    position: relative;
    display: flex;
    align-items: end;
    padding: 0;
    cursor: pointer;
   
}
header .songdetails nav .user{
    position: relative;
    width: 30px;
    height: 30px;
   
    border-radius: 50px;
   cursor: pointer;
}

header .songdetails nav .user img{
    width: 100%;
    height: 100%;
    border-radius: 50px;
    box-shadow: 2px 2px 8px rgb(20, 20, 20);
}

 /*Treanding now*/


header .songdetails .trend{
    width: 90%;
    height: auto;
    margin: auto;
    margin-top: 20px;  
}
header .songdetails .trend .h4{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
header .songdetails .trend .h4 .bi{
    color: #a4a8a4;
    cursor: pointer;
    transition: .2s linear;
}
header .songdetails .trend .h4 .bi:hover{
    color: white;
}
header .songdetails .trend .trnd{
    width: 100%;
    height: 120px;
    margin-top: 15px;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
    
}
header .songdetails .trend .trnd::-webkit-scrollbar{
    display: none;
   }

   header .songdetails .trend .trnd li  {
    width: 85px;
    height: 100%;
    list-style: none;
margin-right: 10px;
transition: .2s linear;

}

header .songdetails .trend .trnd li:hover{
    background: rgb(114, 114, 167,.2);
}

header .songdetails .trend .trnd li .imgplay{
position: relative;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
header .songdetails .trend .trnd li .imgplay img{
    width: 100%;
    height: 100%;
    margin-left: 5px;
    margin-top: 5px;
}
header .songdetails .trend .trnd li .imgplay .bi{
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    transition: .2s linear;
    opacity: 0;
}
header .songdetails .trend .trnd li:hover .imgplay .bi{
    opacity: 1;
}
header .songdetails .trend .trnd li h5{
    padding: 5px 0px 0px 5px;
    line-height: 15px;
    font-size: 11px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header .songdetails .trend .trnd li h5 .subtitle{
    font-size: 8px;
    color: rgb(114, 114, 167) ;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
   }


   /*trnd1*/

   header .songdetails .trend .trnd1{
    width: 100%;
    height: 120px;
    margin-top: 15px;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
    
}
header .songdetails .trend .trnd1::-webkit-scrollbar{
    display: none;
   }

   header .songdetails .trend .trnd1 li  {
    width: 85px;
    height: 100%;
    list-style: none;
margin-right: 10px;
transition: .2s linear;

}

header .songdetails .trend .trnd1 li:hover{
    background: rgb(114, 114, 167,.2);
}

header .songdetails .trend .trnd1 li .imgplay{
position: relative;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
header .songdetails .trend .trnd1 li .imgplay img{
    width: 100%;
    height: 100%;
    margin-left: 5px;
    margin-top: 5px;
}
header .songdetails .trend .trnd1 li .imgplay .bi{
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    transition: .2s linear;
    opacity: 0;
}
header .songdetails .trend .trnd1 li:hover .imgplay .bi{
    opacity: 1;
}
header .songdetails .trend .trnd1 li h5{
    padding: 5px 0px 0px 5px;
    line-height: 15px;
    font-size: 11px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header .songdetails .trend .trnd1 li h5 .subtitle{
    font-size: 8px;
    color: rgb(114, 114, 167) ;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
   }

   /*trnd2*/

   header .songdetails .trend .trnd2{
    width: 100%;
    height: 120px;
    margin-top: 15px;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
    
}
header .songdetails .trend .trnd2::-webkit-scrollbar{
    display: none;
   }

   header .songdetails .trend .trnd2 li  {
    width: 85px;
    height: 100%;
    list-style: none;
margin-right: 10px;
transition: .2s linear;

}

header .songdetails .trend .trnd2 li:hover{
    background: rgb(114, 114, 167,.2);
}

header .songdetails .trend .trnd2 li .imgplay{
position: relative;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
header .songdetails .trend .trnd2 li .imgplay img{
    width: 100%;
    height: 100%;
    margin-left: 5px;
    margin-top: 5px;
}
header .songdetails .trend .trnd2 li .imgplay .bi{
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    transition: .2s linear;
    opacity: 0;
}
header .songdetails .trend .trnd2 li:hover .imgplay .bi{
    opacity: 1;
}
header .songdetails .trend .trnd2 li h5{
    padding: 5px 0px 0px 5px;
    line-height: 15px;
    font-size: 11px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header .songdetails .trend .trnd2 li h5 .subtitle{
    font-size: 8px;
    color: rgb(114, 114, 167) ;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
   }


   /*trnd3*/

   header .songdetails .trend .trnd3{
    width: 100%;
    height: 120px;
    margin-top: 15px;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
    
}
header .songdetails .trend .trnd3::-webkit-scrollbar{
    display: none;
   }

   header .songdetails .trend .trnd3 li  {
    width: 85px;
    height: 100%;
    list-style: none;
margin-right: 10px;
transition: .2s linear;

}

header .songdetails .trend .trnd3 li:hover{
    background: rgb(114, 114, 167,.2);
}

header .songdetails .trend .trnd3 li .imgplay{
position: relative;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
}
header .songdetails .trend .trnd3 li .imgplay img{
    width: 100%;
    height: 100%;
    margin-left: 5px;
    margin-top: 5px;
}
header .songdetails .trend .trnd3 li .imgplay .bi{
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    transition: .2s linear;
    opacity: 0;
}
header .songdetails .trend .trnd3 li:hover .imgplay .bi{
    opacity: 1;
}
header .songdetails .trend .trnd3 li h5{
    padding: 5px 0px 0px 5px;
    line-height: 15px;
    font-size: 11px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header .songdetails .trend .trnd3 li h5 .subtitle{
    font-size: 8px;
    color: rgb(114, 114, 167) ;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
   }

    /*trnd5*/

    header .songdetails .trend .trnd5{
        width: 100%;
        height: 120px;
        margin-top: 15px;
        display: flex;
        overflow: scroll;
        scroll-behavior: smooth;
        
    }
    header .songdetails .trend .trnd5::-webkit-scrollbar{
        display: none;
       }
    
       header .songdetails .trend .trnd5 li  {
        width: 85px;
        height: 100%;
        list-style: none;
    margin-right: 10px;
    transition: .2s linear;
    
    }
    
    header .songdetails .trend .trnd5 li:hover{
        background: rgb(114, 114, 167,.2);
    }
    
    header .songdetails .trend .trnd5 li .imgplay{
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    header .songdetails .trend .trnd5 li .imgplay img{
        width: 100%;
        height: 100%;
        margin-left: 5px;
        margin-top: 5px;
    }
    header .songdetails .trend .trnd5 li .imgplay .bi{
        position: absolute;
        font-size: 20px;
        cursor: pointer;
        transition: .2s linear;
        opacity: 0;
    }
    header .songdetails .trend .trnd5 li:hover .imgplay .bi{
        opacity: 1;
    }
    header .songdetails .trend .trnd5 li h5{
        padding: 5px 0px 0px 5px;
        line-height: 15px;
        font-size: 11px;
        width: 100px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    header .songdetails .trend .trnd5 li h5 .subtitle{
        font-size: 8px;
        color: rgb(114, 114, 167) ;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
       }  

 /*artists*/


header .songdetails .artist{
    width: 89%;
    height: auto;
    margin: auto;
    margin-top: 20px;  
    
}
header .songdetails .artist .h4{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
header .songdetails .artist .h4 .bi{
    color: #a4a8a4;
    cursor: pointer;
    transition: .2s linear;
}
header .songdetails .artist .h4 .bi:hover{
    color: white;
}
header .songdetails .artist .art{
    width: 100%;
    height: 120px;
    margin-top: 15px;
    display: flex;
    overflow: auto;
    scroll-behavior: smooth;
}
header .songdetails .artist .art::-webkit-scrollbar{
    display: none;
   }

   header .songdetails .artist .art li  {
    position: relative;
    width: 85px;
    height: 85px;
    border-radius: 50px;
    cursor: pointer;
margin-right: 15px;
margin-left: 45px;
margin-top: 10px;
list-style: none;
align-items: center;

}



header .songdetails .artist .art li  img{
    width: 100%;
    height: 100%;
    border-radius: 50px;

}
header .songdetails .artist .art li h5{
    line-height: 15px;
    font-size: 11px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;  
}



/* Login Style */

header  .left_bx1 ,.right_bx1 {
    position: relative;
    width: 65%;
    height: 100%;
    background: #0b1320;
    display: flex;
    align-items: center;
    justify-content: center;
}
header  .left_bx1 {
    width: 35%;
    background: #fff;
    box-shadow: 5px 0px 2px #090f1f;

}
header  .left_bx1 .content {
    width: 75%;
    height: auto;
    padding: 25px 20px;
    background: #fff;
    color: black;
    
}

header  .left_bx1 .content .card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
}
header  .left_bx1 .content .card label {
   font-size: 14px;
}
header  .left_bx1 .content .card input {
    width: 100%;
    padding: 6px 10px;
    background: rgb(238 ,238 ,238) ;
    margin-top: 5px;
    margin-left:5px;
 }
 header  .left_bx1 .content  .submit {
    margin-top: 30px;
    padding: 8px 20px;
    color: white;
    background: rgb(23, 23, 66);
    width: 100%;
    cursor: pointer;


 }
 header  .left_bx1 .content  .check {
    margin-top: 10px;
    align-items: center;
    display: flex;


 }
 header  .left_bx1 .content  .check span {
    margin-left: 5px;
    font-size: 14px;
 }

 header  .left_bx1 .content   p {
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
 }
 header  .left_bx1 .content   p  a{
   text-decoration: none;
   color: rgb(131, 106, 232);
   
 }
 header  .right_bx1 img {
    width: 75%;
    height: 85%;
    border-radius: 15px;
    
 }

 header  .right_bx1 h3 {
    position: absolute;
    background: rgb(142, 179, 223);
   color: black;
   right: 0;
   bottom: 20px;
   padding: 3px 10px;
   border-radius: 5px 0px 0px 5px;
   font-size: 14px;

    
 }

 header .menu nav{
    width: 90%;
    height: 10%;
    margin: auto;
    
    align-items: center;
    
}
header .menu nav a {
    text-decoration: none;
    color:rgb(114, 114, 167) ;
}
header .menu nav ul li a:hover {
    color:white ;
}
header .menu nav a:visited {
   text-decoration: none;
    color:rgb(114, 114, 167) ;
}
header .menu nav a:active {
    text-decoration: none;
     
 }

header .menu nav ul li{
    list-style: none;
    margin-left: 15px;
    margin-top: 50px;
    position: relative;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    margin-right: 30px;
    color:rgb(114, 114, 167) ;
    transition: .2s linear;
}
header .menu nav ul li:hover{
    color:white ;
}

header .menu nav{
    z-index: 2;
}
header .input{
    width: 80%;
    height: 63.3%;
    background-color: rgb(15, 15, 15);
    overflow: hidden;
    overflow-y: scroll;
}
header #footer {
 position: fixed;
 bottom: 0;
 margin-left: 330px;
 padding: 10px 10px 13px 10px;
 font-size: 16px;
}
.terms h1 {
   font-style: italic;
   padding: 10px 20px ;
} 
header .terms p {
   padding: 20px 40px;
   font-weight: 400;
}
header .terms p span {
    font-style: italic;
    font-weight: bolder;
 }

 header .input2{
    width: 80%;
    height: 95%;
    background-color: rgb(15, 15, 15);
    overflow: hidden;
    overflow-y: scroll;
}
.songlist h1 img{
    margin-bottom: -5px;
    margin-left: -20px;
    width: 25px;
    height: 25px;
}