* {
    font-family: 'Montserrat Alternates', sans-serif;
    margin: 0;
    color: white;
    /* background-color: black; */
    overflow: hidden;
}

body {
    background-color: black;
}

.main {
    display: flex;
    height: 100vh;
}

.sidebar {
    background-color: black;
    width: 340px;
    border-radius: 1rem;
    margin-right: 0.5rem;
}

.content {
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;
}

.player-music {
    background-color: black;
    bottom: 0px;
    width: 100%;
    position: fixed;
    height: 72px;
    display: flex;
}

a {
    text-decoration: none;
}

.nav {
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    height: 100px;
    padding: 0.5rem 0.75rem;
    padding: 0.5rem;
}

.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.2rem;
}

.nav-option a {
    font-size: 1rem;
    margin-left: 1rem;
}

.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 {
    width: 1.25rem;
    height: 1.25rem;
}

.icons {
    font-size: 1.25rem;
    display: flex;

}

.icons i {
    margin-right: 1rem;
    opacity: 0.7;
}

.icons i:hover {
    opacity: 1;
}

.box {
    height: 8rem;
    background-color: #232323;
    border-radius: 0.75rem;
    margin: 0.5rem 0 0.5rem 0;
    padding: 1.25rem 1rem;
}

.box-p1 {
    font-size: 1rem;
    font-weight: 500;
}

.box-p2 {
    font-size: 0.85rem;
    opacity: 0.9;
}

.badge {
    background-color: white;
    color: black;
    border: none;
    border-radius: 100px;
    padding: 0.25rem 1rem;
    font-weight: 700;
    height: 2rem;
    margin-top: 1.75rem;
    width: fit-content;
}

.dark-badge{
    background-color: black;
    color: white;
}
.position-sticky {
    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-icon {
    margin-left: 0.75rem;
}

.sticky-nav-control {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item{
    margin-right: 1rem;
}

.sticky-nav-control .user i{
    margin-top: 2.25rem;
    height: 1.5rem;
    width: 1.5rem;
}
h2{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.card-container{
    display: flex;
    flex-wrap: wrap;
}
.class-card{
    border-radius: 0.5rem;
    background-color: #232323;
    width: 150px;
    padding: 1rem;
    margin-left: 1.5rem;
    margin-top: 1rem;

}

.card-img{
    width: 100%;
    border-radius: 0.5rem;
    padding-bottom: 0.5rem;
}

.p-title{
    font-weight: 600;
    padding-bottom: 0.5rem;
}

.p-info{
    font-size: 0.85rem;
    opacity: 0.8;
    padding-bottom: 0.5rem;
}

footer{
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.line{
    width: 90%;
    height: 50%;
    border-top: 1px solid white;
    opacity: 0.3;
}

.player-music{
    justify-content: space-between;
    align-items: center;
}

.album{
    width: 25%;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.text{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.para1{
    font-weight: 600;
}

.para2{
    opacity: 0.8;
}
.playlists{
    height: 2rem;
    width: 2rem;
}
.player{
    width: 50%;
}
.player-control{
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 2px;
}
.controls{
    width: 25%;
    display: flex;
    margin-right: 5px;
    justify-content: space-around;
    /* align-items: center; */
}

.controls i{
    font-size: 1.25rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}


.playlist{
    width: 2rem;
    height:2rem;
    object-fit: cover;
    margin-right: 0.5rem;
}



.player-control-icon{
    height: 1rem;
    margin-left: 1.75rem;
    opacity: 0.7;
}

.player-control-icon:hover{
    opacity: 1;
}

.playback-bar{
    display: flex;
    justify-content: center;
}

.progress-bar{
    width: 70%;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
}

.progress-bar::-webkit-slider-runnable-track{
    background-color: white;
    border-radius: 100px;
    height: 0.2rem;
}

.progress-bar::-webkit-slider-thumb{
    appearance: none;
    height: 16px;
    border-radius: 50%;
    width: 16px;
    z-index: 1;
    background-color: #2d1;
    margin-top: -6px;
}

::-webkit-scrollbar{
    background-color: #121212;
    color: black;
    /* appearance: none; */
}

::-webkit-scrollbar-button{
    color: #3d3c3c;
    background-color: #232323;
}
@media screen and (max-width:1000px){
    .hide{
        display: none;
    }
}