body{
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: #000;
  color: #fff;
  overflow: hidden;

}

.main{
    display: flex;
    height: 100vh;
    margin: 1rem;
}

.sidebar{
    background-color: red;
    width: 340px;
    border-radius: 1rem; /*16px*/
    background-color:black;
    margin-right: .5rem;

}
.main-content{
    background-color: blue;
    flex: 1;
    border-radius: 1rem; /*16px*/
    overflow: auto;
    background-color: #121212;
    padding: 0 1.5rem 0 1.5rem  ;  /* top left right bottom*/
}
.music-player{
    background-color: #000;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 72px;
    display: flex;

}
a{
    text-decoration: none;
    color: white;
}

.nav{

    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction:column;
    justify-content: center;
    height: 100px;
    padding: .5rem .7rem;

}
.nav-option{
    line-height: 2.5rem;
    padding: .5rem ;
    opacity: .7;
}
.nav-option:hover{
    opacity: 1;
}
.nav-option i{
    font-size: 1.25rem;
}
.nav-option a{
    font-size: 1rem;
    padding-left: .5rem;
}
.library{
    background-color:#121212;
    border-radius: 1rem;
    height: 100%;
    margin-top: .5rem;
    padding: .5rem .75rem;
}
.options{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lib-options img{
    height: 1.25rem;
    width: 1.25rem;
    
}
.icons{
    font-size: 1.25rem;
    display: flex;
}
.icons i{
    opacity: 0.7;
    margin-right: 1rem;
}
.icons i:hover{
    opacity: 1;
    margin-right: 1rem;
}

.box{
    background-color: #232323;
    height: 8rem;
    border-radius: .75rem;
    margin: .75rem 0 1.75rem 0;
    padding: 1rem 1.25rem;
}
.box-p1{
    font-size: 1rem;
    font-weight: 500;
}
.box-p2{
    font-size: 0.75rem;
    opacity: .85;
}
.badge{
    background-color: #fff;
    border: none;
    border-radius: 6rem;
    padding: .25rem 1rem;
    font-weight:700 ;
    margin-top: .5rem;
    height: 2rem;
    width: fit-content;
}
.sticky-nav{
    position: sticky;
    top: 0;
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:1rem 0 1rem 0 ;
    z-index: 10;
}
.sticky-nav-icons img{
    width: 1.2rem;
    height: 1.2rem;
}
.sticky-nav-options{
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-items{
    margin-right: 1rem;
}
.dark-batch{
    background-color: #000;
    color: #fff;
}

@media (max-width:1000px){
    .hide{
        display: none;
    }
}

.card{
    background-color: #232323;
    width: 150px;
    border-radius: .5rem;
    padding: 1rem ;
    margin-left: 1.5rem;
    margin-top: 1.5rem;
}
.card-container{
    display: flex;
    flex-wrap: wrap;

}
.card-img{
    width: 100%;
    border-radius: .5rem;
}
.card-title{
    font-weight: 600;

}
.card-info{
    font-size: .5rem;
    opacity: .8;
}
.footer{
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.line{
    width: 90%;
    height:0%;
    border-top:1px solid white;
    opacity: .4;
}
.music-player{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.album{/*part1*/
    width: 25%;
}
.player{/*part2*/
    width: 50%;

}
.controls{/*part3*/
    width:25%;

}
.player-controls{
    display: flex;
    justify-content: center;
    align-items: center;
}
.player-control-icon{
    height: 1rem;
    margin-right: 1.7rem;
    opacity: .7;
}
.player-control-icon:hover{
    opacity: 1;
}
.playback-bar{
    display: flex;
    justify-content: center;
    align-items: center;
}
.progress-bar{
    width: 70%;
    cursor: pointer;
    appearance: none;
    background-color: transparent;
}
.progress-bar::-webkit-slider-runnable-track{
   background-color: white;
   border-radius: 100px;
   height: .2rem;
}
.progress-bar::-webkit-slider-thumb{
    appearance: none;
    height: 1rem;
    width: 1rem;
    background-color: #1bd760;
    border-radius: 50%;
    margin-top: -.4rem;
}
.icons{
    display: flex;
    /* justify-content: space-evenly; */
    align-items: center;
}
.icon-buttons{
    opacity: .7;
    cursor: pointer;
    font-size:1.8rem;
    transition-duration: .3s ease;
    padding-right: .5rem;
}
.icon-buttons:hover{
    cursor: pointer;
    font-size:1.8rem;
    opacity: 1;
}
.img_1{
    width: 3.2rem;
    height: 3.2rem;
    border-radius: .3rem;
}
.album{
    display: flex;
    justify-content:space-between;
    align-items: center;
}
.album-img{
    margin-right: 20px;
    flex-shrink: 0;
}
.album-details{
    flex-grow: 1;
    text-align: left;

}
.album-title{
    font-size: .9rem;
    font-weight: bold;
}
.album-artist{
    font-size: 11px;
    opacity: .7;
}
.add-button {
    background-color:black;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    margin-right: 15px;
    opacity: .7 ;
    border: none;
}
.add-button:hover {
    opacity: 1;
}
