body{
    

  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
    background-color: black;
    color: white;
    margin: 0;
    overflow: hidden;
    
}
.main{
   display: flex;
   padding: 0.5rem;
   height: 100vh;
}
.sidebar{
    height: 100vh;
    background-color: #121212;
    width: 450px;
    border-radius: 1rem;
    margin-right: 0.5rem;

}
.maincontent{
    height: 100vh;
    background-color: #121212;
    flex:1;
    border-radius: 1rem;
    overflow: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.musicplayer{
    position: fixed;
    bottom: 0;
    background-color: #121212;
    width: 100%;
    height: 72px;
    
}
.nav-bar{
    background-color: rgb(179,179,179,0.1);
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    line-height: 2.4rem;
    height: 100px;
    padding:1.7rem ;
    margin: 0.4rem;
    
    
    
}
.nav-home a{
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    opacity: 1;
}
.nav-search a{
    text-decoration: none;
    color: #fff;
    font-size:1.3rem ;
    opacity: 0.7;
}
.nav-home i{
    font-size:1.3rem ;
    padding: 1rem;
}
.nav-search i{
    font-size: 1.3rem;
    padding: 1rem;
    
}
.nav-search :hover{
    opacity: 1;
}
.library{
    background-color: rgb(179,179,179,0.1);
   border-radius: 2rem;
   height: 100%;
   padding:0.7rem ;
   margin: 0.4rem;
    
}
.sub-lib {
    display: flex;
    justify-content: space-around;
    
   
    
    align-items: center;
    line-height: 3rem;
    
}
.sublibimg{
    height: 1.25rem;
    width: 1.25rem;
    margin-right: 0.8rem ;
    opacity: 0.7;
}
img:hover{
    opacity: 1;
}
.lib-opt i{
    font-size: 1.3rem;
    padding: 1rem;
    opacity: 0.7;
}
.lib-opt i:hover{
    opacity: 1;
}
.boxes{
    margin-top: 1rem;
    background-color: #121212;
    border-radius: 1rem;
    height: 10rem;
}
.box{
    margin-top: 0.5rem;
    padding: 0.5rem 0 0 0.9rem;
}
.p1{
    font-size: 1rem;
    font-weight: 700;
    

}
.p2{
    font-size: 0.9rem;
    opacity: 0.7;
}
.badge{
    height: 2rem;
    border: none;
    width:fit-content;
    padding: 0.25rem 1rem;
    
    border-radius:100px ;
    padding: 0.5rem;
    font-weight: 700;
    background-color: #fff;
   
}
.badge:hover{
    background-color: #121212;
    color: white;
    transition: 1s ease-in;
}
.sticky-nav-bar{
    height: 5vh;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    background-color: rgb(179,179,179,0.1);
    border-radius: 1rem;
   

}
.sticky-icons {
    display: flex;
    justify-content: space-around;
    

}
.sticky-icons img{
    padding-left: 1rem;
    opacity: 0.5;

    
}
.sticky-icons img:hover{
    opacity: 1;
    scale: 1.1;
}
.sticky-badge{
    width: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.sticky-badge button{
    margin-right: 1rem;
    }
.sticky-badge button i{
    padding-right: 0.3rem;
    
}  
@media(max-width:1000px)  {
    .forward {
        display: none;
    }
    .badge{
        display: none;
    }
}
.subcard-1{
    
    display: flex;
    flex-wrap: wrap;

    
    
}

.card-1{
    width: 150px;
    background-color: rgb(179,179,179,0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-right: 2rem;
    margin-bottom: 2rem;
}
.card-1 .card-img{
    width: 100%;
    border-radius:0.5rem ;
}
.card-title{
    font-weight: 700;

}
.card-info{
    font-size: 0.8rem;
    opacity: 0.7;
}
.footer{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.line{
    border-top:1px solid #fff;
    width:90% ;
    opacity: 0.4;
    height:70% ;
}
.musicplayer{
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
.album{
    width: 25%;
      display: flex;  
      align-items: center;
      justify-content: center;
      
}
.player{
    width: 50%;
}
.controls{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-controls{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.player-icons{
    height: 1rem;
    margin-right: 1rem;
    opacity: 0.5;
}
.player-icons-1{
    height: 1.8rem;
    margin-right:1rem ;
    
}
.player-icons-1:hover{
    scale: 1.1;
}
.player-icons:hover{
    opacity: 1;
}
.progress-bar{
    display: flex;
    justify-content: center;
    align-items: center;

}
.progress-bar-time{
    appearance: none;
    width: 70%;
    cursor: pointer;
}
.progress-bar-time::-webkit-slider-runnable-track{
    background-color: #fff;
    height: 0.2rem;
    border-radius: 100px;
}
.progress-bar-time::-webkit-slider-thumb{
    appearance: none;
   
    height:1rem ;
    width: 1rem;
    background-color: green;
    border-radius: 50%;
    margin-top: -6px;
}
.album-pic{
    border-radius: 0.5rem;
    height: 3.6rem;
    margin-right: 1.3rem;
}
.album-p1{
    list-style: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 1rem;
}
.album-p2{
    list-style: none;
    font-size: 0.7rem;
    opacity: 0.7;
}
.alb-icon{
    height: 1.5rem;
    margin-left: 1rem;
}
.con-icon{
    height: 1.5rem;
    margin-right: 1rem;
}
.con-range::-webkit-slider-thumb{
    appearance: none;
   
    height:1rem ;
    width: 1rem;
    background-color: rgb(35, 135, 35);
    border-radius: 50%;
    margin-top: -6px;

}
.con-range::-webkit-slider-runnable-track{
    background-color: #fff;
    height: 0.2rem;
    border-radius: 100px;
}