body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.main{
    display: flex;
    height: 100vh;
    padding: 1rem 0.5rem;
}

.sidebar{
    margin-right: 0.5rem;
    width: 340px;
}

.main-content{
    background-color: #121212;
    flex: 1;
    border-radius:.7rem ;
    overflow: auto;
    padding: 0 1.5rem;
}

.music-player{
    background-color: #000;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 72px;
}
.nav{
    background-color: #121212;
    border-radius:.7rem ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: .5rem .75rem;

}
a{
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.nav-option{
    line-height: 2.5rem;
    opacity: 0.7;
    padding: 0.5rem 0.75rem;
}

.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:.7rem ;
    height: 100%;
    margin-top: .5rem;
    padding: 0.5rem 0.75rem;
}
.options{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lib-option img{
    height: 1.25rem;
    width: 1.25rem;
}

.lib-icons i{
    font-size: 1.25rem;
    opacity: .7;
    margin-right: .5rem;
    cursor: pointer;
}
.lib-icons i:hover{
    opacity: 1;
}

.box{
    background-color: #232323;
    height: 8rem;
    border-radius: .7rem;
    margin: 1.75rem 0;
    padding: .75rem 1rem;
}
.box-p1{
    font-size: 1rem;
    font-weight: 500;
}
.box-p2{
    font-size: 0.85rem;
    opacity: 0.9;
}

.badge{
    background-color: #fff;
    border: none;
    border-radius: 2rem;
    padding: .25rem 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    height: 2rem;
    width: fit-content;
    cursor: pointer;
    opacity: .9;
}
.badge:hover{
    opacity: 1;
}
.dark-badge{
    background-color: #000;
    color: #fff;
}

.sticky-nav{
    position: sticky;
    top: 0;
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    z-index: 1;
}
.sticky-nav-icons {
    margin-left: .75rem;
    cursor: pointer;
}
.sticky-nav-icons img {
    opacity: .7;
}
.sticky-nav-icons img:hover {
    cursor: pointer;
    opacity: 1;
}

.sticky-nav-options{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.75rem;
}
.sticky-nav-options .badge{
    margin-right: 1.25rem;
}
.sticky-nav-options i{
    opacity: .7;
    cursor: pointer;
}
.sticky-nav-options i:hover{
    opacity: 1;
}

.card-container{
    display: flex;
    flex-wrap: wrap;
}
.card{
    background-color: #232323;
    width: 150px;
    border-radius: 1.5rem;
    padding: 1rem;
    margin: .5rem .75rem;
    cursor: pointer;
    opacity: .9;
}
.card:hover{
    opacity: 1;
}
.card-img{
    width: 100%;
    border-radius: .5rem;
}

.card-title{
    font-weight: 600;
}
.card-info{
    font-size: 0.85rem;
    opacity: .5;
}

.footer{
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.line{
    width: 90%;
    height: 50%;
    border-top: 1px solid #fff;
    opacity: .5;
}

.music-player{
    display: flex; 
    justify-content: space-between;
    align-items: center;
}
.album{
    width: 25%;
}
.player{
    /* background-color: orange; */
    width: 50%;
}
.player-control{
    display: flex; 
    justify-content: center;
    align-items: center;
}
.controls{
    width: 25%;
}

.player-control-icon{
    height: 1rem;
    margin: 0 .75rem;
    opacity: .7;
    cursor: pointer;
}
.player-control-icon:hover{
    opacity: 1;
}
.player-control-icon:nth-child(3){
    opacity: 1;
    height: 2rem;
}

.playback-bar{
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-bar{
    width: 70%;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
}
.sm-bar{
    width: 30%;
}

.progress-bar::-webkit-slider-runnable-track{
    background-color: #ddd;
    border-radius: 100px;
    height: .2rem;
}
.progress-bar::-webkit-slider-thumb{
    appearance: none;
    height: 1rem;
    width: 1rem;
    background-color: #1bd760;
    border-radius: 50%;
    margin-top: -6px;
}

.album{
    display: flex;
    align-items: center;
    padding: 0 .5rem;
    margin-top: .5rem;
    /* background-color: red; */
}

.album-pic{
    width: 3.5rem;
    border-radius: .25rem;
}

.album-info{
    margin: 0 1rem;
}
.album-name{
    font-size: 1rem;
    font-weight: 600;
    margin: 0
}
.album-artist{
    font-size: .75rem;
    opacity: .7;
    margin: 0;
}

.album-icon{
    height: 1.25rem;
    cursor: pointer;
    opacity: .7;
}
.album-icon:hover{
    opacity: 1;
}

.controls{
    display: flex;
    align-items: center;
    height: 2rem;
}

.controls img{
    height: 1rem;
    width: 1rem;
    margin: 0 .3rem;
    opacity: .7;
    cursor: pointer;
}
.controls img:hover{
    opacity: 1;
}


@media (max-width: 1000px){
    .hide{
        display: none;
    }
    .music-player{
        justify-content: center;
    }
}