@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    overflow: hidden;
}
/*   1rem = 16px */
body{
    background-color: black;
}

.main{
    display: flex;
    height: 100vh;
    width: 100vw;
    border-radius: 1rem;
    background-color: #000;
}

.sidebar{
    background-color: #000;  
    width: 340px;
    border-radius: 1rem;
}
.main-content{
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;
    padding-left: 1.5rem;
    overflow: auto;
}

.music-player{
    background-color: #000 ;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 72px;
}

a{
    text-decoration: none;
    color: #fff;
}
.nav{
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: 0.5rem 0.75rem;
    margin: 0.5rem;
}
.nav_option{
   line-height: 2.5rem;
   opacity: 0.7;
   padding: 0.5rem 1rem;
}

.nav_option:hover{
   opacity: 1;  
}
.nav_option i {
    font-size: 1.25rem;
}
.nav_option a {
    font-size: 1rem;
    margin-left: 1rem;
}
.library{
       background-color: #121212;
       border-radius: 1rem;
       margin: 0 0.5rem 0.5rem;
       height: 100%;
}
.options{
    display: flex;
    padding: 0.5rem 1rem;
    justify-content: space-between;
    align-items: center;
}
.lib_options img{
    height: 1.25rem;
    width: 1.25rem;
}
.icons i {
    margin-right: 0.2rem;
    font-size: 1.25rem;
    opacity: 0.7;
}
.icons i:hover{
    opacity: 1;
}

.box{ 
    padding: 1rem 1.25rem;
    background-color: #232323;
    border-radius: 1rem;
    margin: 0.5rem 0.5rem 1.25rem ;

}
.box_p1{
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.box_p2{
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 1rem;


}
.badge{
    font-size: 0.8rem;
    font-weight: 700;
    background-color: #fff;
    color: black;
    border-radius: 1rem;
    padding: 0 1rem;
    height: 2rem;
    width: fit-content;
    border: none;
    margin-bottom: 0.75rem;
}

.fa-circle-down{
    color: black;
}

.sticky_nav{
    position: sticky;
    top: 0;
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    align-items: center;  
    z-index: 5;
}

.nav_icons {
    margin-left: 0.75rem;
}   

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

.nav_btn button , .nav_btn > i {
    margin-right: 0.7rem;
}

.dark_badge{
    background-color: #121212;
    color: white;
    border: 2px solid white;
}
.dark_badge >i{
    color: white;
    margin-right: 0.25rem;
}

@media (max-width :1000px){
    .hide{
        display: none;
    }
}
.cards_container{
    display: flex;
    flex-wrap: wrap;
}
.card{
    background-color: #232323;
    width: 150px;
    border-radius: 0.5rem;
    padding: 0.7rem;
    margin-left: 1.5rem;
    margin-top: 1.5rem; 
}
.card_img{
   width: 100%; 
   border-radius: 0.5rem;
}

.card_tittle{
    font-weight: 600;
    margin: 0.6rem 0 0.6rem;
}
.card_info{
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0.6rem 0 0.6rem;
}
.footer{
    height: 300px;
    display: flex;
    justify-content: center;
}

.line{
    width: 90%;
    height: 30%;
    border-top: 1px solid #fff;
    opacity: 0.7;
    margin-top: 60px;
}

.made{
    text-align: center;
    margin-top: 50px;
}

.music-player{
    display: flex;
    /* align-items: center; */ 
    justify-content: space-between;
}
.album{
    width: 25%;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;

}
.album >img{
    height: 3rem;
    border-radius: 5px;
}
.album_text{
    display: flex;
    padding-left:0.4rem ;
    flex-direction: column;
    justify-content: space-evenly;
}
.album_tittle {
    font-size: 1rem;
    opacity: 1;
    margin-bottom: 0.2rem;
}
.album_singer {
    font-size: 0.5rem;
    opacity: 0.7;
}
.album_icons{
    margin-left: 1rem;
}
.album_icon{
    height: 1.5rem;
    
}
.player{
        width: 50%;
}
.player_controls{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0 0.5rem;
}
.player_icon{
    /* height: 2rem; */
   height: 1.2rem;
    margin : 0 0.75rem;
    opacity: 0.7;
}
.player_icon:hover{
    opacity: 1;
    height: 1.3rem;
}
#play{
    height: 1.8rem;
    opacity: 1;
}
#play:hover{
    height: 1.9rem;
}
.playback_bar{
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}

.progress-bar{
    width: 70%;
    border: none;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
    margin: 0 0.25rem;
}
.progress-bar::-webkit-slider-runnable-track{
    background: #aaa;
    border-radius: 21px;
    height: 0.2rem;
}
.progress-bar::-webkit-slider-thumb{
    appearance: none;
    height: 0.8rem;
    width: 0.8rem;
    background-color:#1bd760;
    border-radius: 50%;
    margin-top: -6px;
}

.controls{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.controls_img{
    height: 1rem;
    margin: 0 0.1rem;
}
.controls_img1 , .controls_img5 {
    height: 2.4rem;
}

.controls_img2 {
    height: 2rem;
}

#volume{
    width: 30%;
}
