*{
    padding: 0;
    margin: 0;
}

body{
    background-color: #121212;
    font-family: 'Montserrat',sans-serif;
}

.sidebar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 196px;
    background-color: #000;
    padding: 24px;
}

.sidebar img{
    width: 136px;
}

.sidebar .navigation ul{
    margin-top: 20px;
    list-style: none;
}

.sidebar .navigation ul li{
    padding: 10px 0px;
}

.sidebar .navigation ul li a{
    color: #b3b3b3 ;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

.sidebar .navigation ul li a:hover,
.sidebar .navigation ul li a:active,
.sidebar .navigation ul li a:focus{color: #fff;}

.sidebar .navigation ul li a:hover .fa,
.sidebar .navigation ul li a:active .fa,
.sidebar .navigation ul li a:focus .fa {
    color: #b3b3b3;
}

.sidebar .navigation ul li .fa{
    font-size: 20px;
    margin-right: 10px;
}

.sidebar .navigation ul li a:hover .fa:hover,
.sidebar .navigation ul li a:active .fa:active,
.sidebar .navigation ul li a:focus .fa:active{color:#fff;}

.sidebar .policies{
    position: absolute;
    bottom: 100px;
}

.sidebar .policies ul{
    list-style: none;
}

.sidebar .policies ul li{
    padding-bottom: 5px;
}

.sidebar .policies ul li a{
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 500;
    font-size: 10px;
}

.sidebar .policies ul li a:hover,
.sidebar .policies ul li a:active,
.sidebar .policies ul li a:focus{text-decoration: underline;}

.main-container{
    padding-left: 245px;
    padding-bottom: 100px;
}

.topbar{
    display: flex;
    justify-content: space-between;
    background-color: #101010;
    padding: 14px 30px;

}

.topbar .prev-next-button button{
    width: 34px;
    height: 34px;
    border-radius: 100%;
    cursor: not-allowed;
    color: #7a7a7a;
    background-color: #000;
    border: 0;
    margin-right: 10px;
    font-size: 13px;
}

.topbar .navbar{
    display: flex;
    align-items: center;
}

.topbar .navbar ul{
    list-style: none;
}

.topbar .navbar ul li{
    display: inline-block;
    margin: 0px 8px;
    width: 70px;
}

.topbar .navbar ul li a{
    color: #b3b3b3;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.topbar .navbar ul li a:hover,
.topbar .navbar ul li a:active,
.topbar .navbar ul li a:focus{
    color: #fff;
    font-size: 15px;
}

.topbar .navbar ul li.divider{
    color: #fff;
    font-size: 26px;
    margin: 0px 20px;
    width: auto;
}

.topbar .navbar button{
    background-color: #fff;
    color: #000;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 30px;
    border: 0px;
    margin-left: 20px;
}

.topbar .navbar button:hover,
.topbar .navbar button:active,
.topbar .navbar button:focus{background-color: #f2f2f2;}

.spotify-playlists{
    padding: 20px 40px;
}

.spotify-playlists h2{
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.spotify-playlists .list{
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.spotify-playlists .list .item{
    min-width: 140px;
    width: 150px;
    border-radius: 6px;
    padding: 15px;
    background-color: #181818;
    cursor: pointer;
    transition: all ease 0.4s;
}

.spotify-playlists .list .item:hover{background-color: #252525;}

.spotify-playlists .list .item img{
    width: 100px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.spotify-playlists .list .item .play{
    position: relative;
}

.spotify-playlists .list .item .fa{
    position: absolute;
    right: 10px;
    top: -60px;
    padding: 18px;
    background-color: #1db954;
    border-radius: 100%;
    opacity: 0;
    transition: all ease 0.4s;
}

.spotify-playlists .list .item:hover .play .fa{
    opacity: 1;
    transform: translateY(-20px);
}

.spotify-playlists .list .item h4{
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.spotify-playlists .list .item p{
    color: #989898;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
}

.spotify-playlists hr{
    margin: 70px 0px 0px;
    background-color: #636363;
}

.preview{
    position: fixed;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right,#ae2896,#509bf5);
    justify-content: space-between;
    padding: 15px 40px;
}


.preview h6{
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 10px;
}

.preview p{
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.preview button{
    color: #000;
    background-color: #fff;
    font-size: 16px;
    border: 0;
    border-radius: 40px;
    cursor: pointer;
    padding: 14px 30px;
    font-weight: bold;
}
