@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root{
   --a:0;
   --top:165px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

body{
    background-color: black;
    color: white;
}
.left{
    width: 30%;
}
.right{
    position: relative;
    width: 70%;
}

.home ul li{
    
    list-style: none;
    width: 26px;
    font-size: 18px;
    margin: 3px 0px 11px 0px;
    display: flex;
    gap: 13px;
}
.home{
    border: 1px solid black;
    padding: 18px;
    margin: 8px;
    border-radius: 6px;
}


.library{
    position: relative;
    border: 1px solid black;
    margin: 8px;
    min-height: 83vh;
    border-radius: 6px;
    /* overflow: hidden; */
}

.library_header{
    font-size: 12px;
    align-items: center;
    gap: 12px;
    padding: 10px;
}
.library_header img{
    width: 30px;
}
.footer{
    position: absolute;
    bottom: 10px;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11px;
}
.footer a{
    padding: 6px;
   text-decoration: none;
   color: gray;
}

.header{
    /* border: 1px solid blue; */
    justify-content: space-between;
    padding: 12px;
    background-color: #282828;
    margin: 5px;
    border-radius: 6px;
}
.cards-container{
    /* border: 1px solid green; */
    /* padding: 39px; */
    gap: 18px;
    flex-wrap: wrap;
    margin: 4px;
    max-height: 68vh;
    overflow-y: auto;

}

.cards{
    position: relative;
    /* margin: 10px 0px 10px 0px; */
    /* border: 1px solid white; */
    width: 15vw;
    background-color: #232323;
    border-radius: 4px;
    padding: 14px;
    transition: all 0.8s;
}
.cards:hover{
    cursor: pointer;
    background-color: rgb(76, 76, 76);
    --a:1;
    --top:145px;
}

.cards img{
    width: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.Spotify_Pla >h2{
    padding: 7px;
    margin-top: 18px;
    margin-bottom: 22px;
}

.cards>h3{
    margin: 5px 0px 10px 0px;
}

.cards >p{
    font-size: 12px;
    word-wrap: break-word;
}


.circle-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #15de15;
    border-radius: 50%;
    right: 13px;
    top: var(--top);
    opacity: var(--a);
    transition: all 0.7s ease-out;
}

.svg-icon {
    width: 20px;
    height: 20px;
}

.btn > *{
    margin: 0px 10px 0px 5px;
}

.singUp_btn{
 background-color: #282828;
 color: white;
 border: none;
 font-size: 13px;
 font-weight: bold;
 transition: all 0.5s ease-out;
 margin-right: 12px;
}
.singUp_btn:hover{
    cursor: pointer;
    font-size: 14px;
}

.logIn_btn{
    border: none;
    background-color: white;
    width: 78px;
    font-weight: bold;
    border-radius: 10px;
    padding: 6px;
    font-size: 12px;
}

.logIn_btn:hover{
    background-color: #f6f6f6;
}

.footer_musicPLay{
    margin-left: 12px;
    width: 67%;
    position: fixed;
    padding: 14px;
    border-radius: 12px;
    background-color: #1d2626;
    bottom: 21px;
}

.songBtn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.songBtn > *{
    margin: 6px;
}

.songsList ul{
    
    padding: 0px 25px;
}
.songsList ul li{
    padding: 2px;
    list-style-type: decimal;
}

.songBox{
    border: 1px solid white;
    min-height: 51px;
    padding: 4px;
    width: 290px;
    border-radius: 6px;
    cursor: pointer;
    /* justify-content: space-between; */
    align-items: center;
    margin: 6px;
}

.song_Detail_container{
    /* border: 1px solid green; */
    font-size: 11px;
    width: 166px;
    margin-left: 5px;
    line-height: 15px;
}

.play_song_end{
    align-items: center;
    gap: 6px;
    margin-left: 4px;
    font-size: 10px;
}

.songsList{
    height: 70vh;
    overflow-y: scroll;
}

/* .bottom_play{
    position: absolute;
} */

.seekBar{
    position: absolute;
    width: 96%;
    margin-left: 9px;
    border-radius: 12px;
    height: 5px;
    bottom: 0;
   border: 2px solid white;
   cursor: pointer;

}
.circle{
    position: relative;
    width: 16px;
    border-radius: 50%;
    height: 16px;
    background-color: rgb(255, 255, 255);
    bottom: 8px;
    left: -2px;
    transition: left 0.5s;
}

.songBar{
    align-items: center;
    justify-content: space-between;
}
.songInfo{
    margin-left: 10px;
    width: 22vw;
    font-size: 15px;
    font-size: 13px;
}
.songTime{
    /* margin-right: 20px; */
    font-size: 14px;
    width: 10vw;
    text-align: center;
}

.songBtn{
    margin: 0px 4px;
    width: 14vw;
}

.hamburger{
    display: none;
}

.home{
    position: relative;
}
.cross{
    position: absolute;
    right: 31px;
    top: 22px;
    display: none;
}
.volume{
    align-items: center;
    width: 13vw;
    gap: 4px;
}
.volume img{
    cursor: pointer;
}
.range input{
    margin-top: 4px;
    cursor: pointer;
}

.SongTime_range{
    display: flex;
    align-items: center;
    gap: 7px;
}

@media (max-width: 1182px) {
   .left{
    width: 45%;
    transition: all 0.6s ;
    position: relative;
    height: 100vh;
     background: black;
    left: -100%;
    z-index: 1;
   }

   .nav_Bar_Icon{
    display: none;
   }

   .hamburger{
    display: block;
}
   .hamburger img{
    width: 27px;
}
.right{
    width: 100%;
    position: absolute;
}
.footer_musicPLay{
    width: 96%;
}
.volume{
    width:169px;;
}



.songInfo{
        width: 30vw;
}
/*
.songBtn > *{
    margin: 0px;
}

.songBar{
    height: 7vh;
}
.songTime{
    margin-right: 10px;
    font-size: 10px;
    /* margin-left: 233px;} */


.cross{
    display: block;
}


.cards{
    padding: 12px;
}
.cards-container{
    justify-content: center;
    padding: 7px;
    gap: 12px;
}

.header{
    margin: 0;
}

  }

  @media (max-width: 800px){
    .cards{
        width: 40vw;    
    }
    .left{
        width: 100%;
  }
  /* .songTime{
    margin-left: 25px;
} */
  
}

  @media (max-width: 520px){
    .cards{
        width: 42vw;
    }
    .songBar{
        flex-direction: column;
    }
    .footer_musicPLay {
        width: 97%;
        margin: 0;
    }
    .songInfo {
        width: 100%;
        margin: 8px;
        text-align: center;
        font-size: 16px;
    }
    .songBtn{
        width: 0px;
        margin: 0px;
    }
    
.SongTime_range {
    display: flex;
    /* position: relative; */
    width: 100%;
    /* align-items: center; */
    justify-content: space-around;
}
.seekBar {
    width: 95%;
}
.cards-container{
    padding-bottom: 66px;
}
  }

  @media (max-width:358px) {
    .songBox{
        width: 233px;
        margin: 2px;
    }
  }