*{
    font-family: "Montserrat", sans-serif;
    margin: 0px ;
    background-color: black;
    color: white;
    overflow: hidden;
} 
.main{
    display: flex;
    height: 100vh;
    padding: 0.7rem;
}

.side_bar {
    
    width: 340px;
    border-radius: 1rem;  /*16px */
    background-color: black;
    margin-right: 05rem;
}

.main_content{
    background-color:  #121212;
    flex:1;
    border-radius: 1rem;
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;
}

.music_player{
    background-color: black;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 72px ;
}
a{
    text-decoration: none;
    color: white;
    
}
.nav{
    background-color:#121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding:0.5rem 0.75rem;
    
}
.nav_option{ 

    line-height: 2.5rem;
    opacity: 0.7;
    padding: 0.7rem;
}
.nav_option i{

    font-size: 1.25rem;

}
.nav_option a{

    font-size: 1rem;
    margin-left:1rem ;
}

.nav_option:hover{

opacity: 1;

}
.library{
    background-color:#121212;
    border-radius: 1rem;
    height:100%; 
    margin-top: 0.5rem;
    padding:0.5rem 0.75rem;
}
.option{
    display: flex;
    justify-content: space-between;
    align-items: center;
   
   
}
.lib_option img{
    height: 1.25rem;
    width: 1.25rem;
}
.icons{
    font-size: 1.25rem;
    display: flex;
    
}
.icons i {
    opacity: 0.5;
    margin-right: 1rem;
}
.icons i:hover{
  
opacity: 1;

}
.box{
    height: 8rem;
    background-color: #232323;
    border-radius: 0.75rem;
    margin: 0.5rem 0 1.75rem 0;
    padding: 1rem 1.2rem;
    line-height: 2.5rem;
    padding-left: 1.75rem;
}
.box-p1{
  font-size: 1rem;
  font-weight: 600;
  background-color: #232323;
}
.box-p2{
    font-size: 0.75rem;
    opacity: 0.75;
    background-color: #232323;
}
.badge{
    border: none;
    border-radius: 100px;
    padding:0.25rem 1rem ;
    font-weight: 700;
    margin-top: 0.5rem;
    height: 2rem;
    width: fit-content;
    background-color: white;
    color: #121212;
}
.sticky_nav{
    position:sticky;
    top: 0 ;
    display: flex;
    justify-content: space-between;
    background-color: #121212;
    align-items: center;
    padding:1rem 0 1rem 0 ;
    z-index: 1;
}
.sticky_nav_icons{
    margin-left: 0.75rem;
   
}
.nav_item{
 margin-right: 1.5rem;
}
.dark_badge{
    background-color:  #121212;
    color: #ffffff;
}

@media ( max-width: 1000px){
    .hide{
        display:none;
    }
}
.card{
    background-color: #232323;
    width: 150px ;
    border-radius: 0.6rem;
    padding: 1rem;
    margin-left: 1.5rem;
    
    

}

.card img{
    width: 150px;
    border-radius: 0.6rem;
}
.card_title{
    font-weight: 700;
    background-color: #232323;
}
.card_info{
    font-size: 0.75rem;
    background-color: #232323;

}
.cards_container{
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem ;
}
.footer{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.line{
    width: 90%;
    height: 50%;
    border-top: 1px solid white;
    opacity: 1;
    
}
.music_player{
    display: flex;
    justify-content: center;
    align-items: center;
}
.album{
    width: 25%;
}
.player{
    width: 50%;
}
.control{
    width: 25%;
}
.player_control_icon{
    height: 1rem;
    margin-right: 2rem ;
    opacity: 0.7;
}
.player_controls{
   
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.player_control_icon:hover{
   opacity: 1;
}
.playback_bar{
    display: flex;
    align-items: center;
    justify-content: center;
   
}
.progress_bar{
    width: 70%;
    appearance:none;
    cursor: pointer;

}
.progress_bar::-webkit-slider-runnable-track{
    background-color: #ddd;
    border-radius: 8.4rem;
    height: 0.2rem;
}
.progress_bar::-webkit-slider-thumb{
    appearance: none;
    height: 1rem;
    width: 1rem;
    background-color: #00ff5e;
    border-radius: 50%;
    margin-top: -6px;

}
