/* Main CSS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
html, body {
    font-family: 'Roboto', sans-serif;
    color: #f3f3f3;
    color: #ffffff;
    border: none;
    outline: 0px;
    text-decoration: none;
    margin: 0px;
    border: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #5773ff;
}
    
/*img {
	-moz-filter: brightness(85%);
	filter: brightness(85%);
	-webkit-filter: brightness(85%);
}
/
    All other elements should inherit font-family and color
    Do not specify font-family anywhere else, use 'font-family: inherit'
    so if you want to change it you only change once; above code
*/
body {
    min-width:  360px;
    background: #050505;/*linear-gradient(#050505, #18181d);*/
    padding: 0px;
    margin: 0px;
    font-size: 16px;
}

.page-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    margin: 0px;
    padding: 0px;
    z-index: 4;
    display: none;
    height: 4px;
    width: 100%;
    --c:no-repeat linear-gradient(#5773ff 0 0);
    background: var(--c),var(--c),#f3f3f3;
    background-size: 60% 100%;
    animation: l16 3s infinite;
}

@keyframes l16 {
    0%   {background-position:-150% 0,-150% 0}
    66%  {background-position: 250% 0,-150% 0}
    100% {background-position: 250% 0, 250% 0}
}

.sidebar {
    width: 200px;
    height: 100vh;
    position: fixed;
    top: 0px;
    background-color: #18181d;
    bottom: 0px;
}

.sidebar .sidebar-main img {
    height: 200px;
    width: 200px;
}

.sidebar .sidebar-item {
    margin: 16px 0px;
    padding-left: 6px;
}

.sidebar .sidebar-item i {
    filter: opacity(0.9);
    margin: 0px 10px 0px 16px;
}

.sidebar .sidebar-item img[class="sidebar-profile-pic"] {
    border-radius: 50%;
    vertical-align: middle;
}

nav {
    padding: 4px 0px;
}

nav .nav-header {
    margin: 6px 4px 8px 4px;
}

nav .nav-header .logo i {
    margin-right: 6px;
    color: #5773ff;
}

nav .nav-header .right-icons {
    float: right;
}

nav .nav-header .right-icons i {
    margin: 0px 6px;
}

nav .nav-shortcuts {
    color: rgb(224, 224, 224);
    background-color: #18181d;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    padding: 8px 6px;
}

form p[class="error"] {
    font-size: 14px;
    color: red;
}
form .red {
    color: red;
}

form .green {
    color: green;
}

form input[type="submit"][class="red"] {
    color: inherit;
    background: red!important;
}

form input[type="submit"][class="green"] {
    color: inherit;
    background: green!important;
}

nav .nav-shortcuts i {
    margin-right: 6px;
}

.trending-song {
    display: flex;
    justify-content: space-between;
}
.trending-song-plays {
    color: rgb(151, 151, 151);
}

.trending-song-play-button a {
    background-color: #5773ff;
}


.trending-song-play-button a:hover {
    color: inherit;
}

.trending-song .trending-song-art {
    float: right;
    display: flex;
}
    
.trending-song-artist {
    font-weight: 700;
    color: rgb(224, 224, 224);
}

.trending-song .trending-song-art img {
    overflow: hidden;
}

.collection .playlist {
    display: flex;
}

.collection .playlist .genres .header,
.collection .playlist .music-list .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.collection .playlist .genres .header a,
.collection .playlist .music-list .header a {
    color: #919191;
}

.collection .playlist .genres .header a:hover,
.collection .playlist .music-list .header a:hover {
    color: inherit;
}

.collection .playlist .genres .items {
    display: grid;
    grid-template-columns: 1fr;
}

.collection .playlist .genres .items .item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.collection .playlist .genres .items  .item:nth-child(1){
    background-color: #476a8a;
}

.collection .playlist .genres .items .item:nth-child(2){
    background-color: #a69984;
}

.collection .playlist .genres .items .item:nth-child(3){
    background-color: #a24c34;
}

.collection .playlist .genres .items .item:nth-child(4){
    background-color: #0d4045;
}

.collection .playlist .genres .items .item:nth-child(5){
    background-color: #a67894;
}

.collection .playlist .genres .items .item:nth-child(6){
    background-color: #5547a5;
}

.collection .playlist .music-list .items .item,
.collection .playlist .music-list .items .best-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #202026;
    cursor: pointer;
    margin-bottom: 8px;
    border-radius: 4px;
    padding-left: 20px;
}

.collection .playlist .music-list .items .active {
    background-color: rgba(54, 73, 167, 0.8);
}

.collection .playlist .music-list .items .item:last-child
.collection .playlist .music-list .items .best-item:last-child {
    margin-bottom: 0;
}

.collection .playlist .music-list .items .item .info,
.collection .playlist .music-list .items .item .actions,
.collection .playlist .music-list .items .best-item .info,
.collection .playlist .music-list .items .best-item .actions {
    display: flex;
    align-items: center;
}

.collection .playlist .music-list .items .item .info p,
.collection .playlist .music-list .items .best-item .info p {
    color: #919191;
    font-weight: bold;
    font-size: 12px;
    margin-top: 6px;
}

.collection .playlist .music-list .items .item .actions p,
.collection .playlist .music-list .items .best-item .actions p {
    color: #919191;
}

.collection .playlist .music-list .items .item .actions .icon,
.collection .playlist .music-list .items .best-item .actions .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
}

.collection .playlist .music-list .items .item .actions .icon i,
.collection .playlist .music-list .items .best-item .actions .icon i {
    color: #475dcc;
    padding: 10px;
}

.collection .playlist .music-list .items .item .actions i,
.collection .playlist .music-list .items .best-item .actions i {
    color: #919191;
}
    
.collection .playlist .music-list .items .active .info p,
.collection .playlist .music-list .items .active .actions .icon i,
.collection .playlist .music-list .items .active .actions p {
    color: #f3f3f3;
    color: #ffffff;
}

.music-list .items .item .info .details,
.music-list .items .best-item .info .details {
    padding: 0px;
    margin: 0px 0px 6px 0px;
    line-height: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog h2 {
    text-align: center;
}

.blog .article-date {
    color: #bdbdbd;
}

.blog .short-paragraph a {
    color: #5773ff;
}

.artists-collection {
    text-align: center;
}

.artists-collection .artists  {
    display: flex;
    overflow: hidden;
    justify-content: space-between;
}

.artists-collection .artists .artist  {
    display: inline-block;
    background-color: #18181d;
}
    
.artists-collection .artists .artist .artist-name  {
    font-weight: 700;
    color: rgb(224, 224, 224);
    margin: 4px 0px;
}
    
.artists-collection img {
    border-radius: 50%;
}

a[class="active"]  {
    color: #5773ff;
}

.artists-collection .see-all-link  {
    display: block;
    color: #5773ff;
    margin: 10px 0px 22px 0px;
}

body footer {
    background-color: #000000;
    text-align: center;
    padding: 10px 0px 0px 0px;
    font-size: 14px;
    margin: unset;
    margin: 0px;
}

form h1, form h2, form h3 {
    text-align: center;
}

form p {
    font-size: 15px;
}

form h1 {
    font-size: 16px;
}

form h2 {
    font-size: 16px;
}

form h3 {
    font-size: 15px;
}

footer .important-links {
    margin: 10px 0px;
}

footer .important-links a {
    text-transform: uppercase;
    margin: 0px 6px;
}

footer .social-media-icons {
    margin: 10px 0px;
}

footer .social-media-icons i {
    font-size: 24px;
    margin: 0px 10px;
}

footer .copyright {
    font-size: 12px;
}

#play, #pause {
    display: none;
}

/* Phone and Tablet */
@media screen  and (max-width: 1080px) {

    body {
        font-size: 16px;
    }

    .desktop-only {
        display: none;
    }

    nav {
        padding: 4px 0px;
        margin: 0px;
    }

    nav .nav-header {
        margin: 0px;
        position: fixed;
        padding: 20px 0px 18px 0px;
        border-bottom: 1px solid #383838;
        font-size: 22px;
        left: 0;
        top: 0;
        right: 0;
        background: #06001f;
        z-index: 1;
    }

    .nav-header i[id="hamburger"] {
        padding: 6px 2px 6px 16px;
    }

    nav .nav-header .logo {
        margin-left: 6px;
        font-weight: 600;
        font-size: 22px;
    }

    nav .nav-header .logo i {
        display: none;
    }

    nav .nav-shortcuts {
        width: 1000px;
        font-size: 15px;
        display: flex;
        width: 100%;
        overflow: auto;
        white-space: nowrap;
        margin: 62px 0px 0px 0px;
        padding: 8px 0px;
    }

    .nav-shortcuts a {
        margin: 6px 12px;
    }

    .nav-shortcuts span:nth-of-type(1) a {
        margin-left: 4px;
    }

    .nav-shortcuts span:last-of-type a {
        margin-right: 4px;
    }

    nav .nav-header-padded {
        margin: 0px;
        position: fixed;
        padding: 20px 0px 18px 0px;
        border-bottom: 1px solid #383838;
        font-size: 22px;
        left: 0;
        top: 0;
        right: 0;
        background: #06001f;
        z-index: 1;
    }

    .sidebar {
        left: -100%;
        font-size: 15px;
        z-index: 3;
        transition: left 1s ease-in-out;
    }

    .sidebar .sidebar-item img[class="sidebar-profile-pic"] {
        width: 14px;
        height: 14px;
        margin: 0px 9px 0px 17px;
    }

    .mask {
        display: none;
        background-color: rgb(0, 0, 0);
        opacity: 0;
        margin: 0px;
        padding: 0px;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        transition: opacity 1s;
    }

    .collection .playlist .genres {
        display: none;
    }

    .trending-song {
        margin: 0px 4px;
        padding: 10px;
        display: flex;
        justify-content: space-between;
    }
    
    .trending-song-headline {
        padding-left: 4px;
        margin: 12px 10px 0px 12px;
        font-size: 12px;
        font-weight: 400;
    }
    
    .trending-song-details {
        margin-top: 2px;
    }
    
    .trending-song-name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }
    
    .trending-song-artist {
        font-size: 14px;
    }
    
    .trending-song-extra {
        margin-bottom: 10px;
    }
    
    .trending-song-plays {
        font-size: 13px;
        font-weight: 600;
        margin-left: 4px;
    }

    .trending-song-play-button {
        margin-top: 14px;
    }
    
    .trending-song-play-button a {
        font-size: 12px;
        font-weight: 400;
        padding: 8px 18px;
        border-radius: 10px;
    }
    
    
    .trending-song-play-button a:hover {
        color: inherit;
    }
    
    .trending-song .trending-song-art img {
        border-radius: 6px;
        width: 100px;
        height: 80px;
        overflow: hidden;
    }

    .collection {
        margin: 0px;
        border-radius: 8px;
    }
    
    .collection .playlist {
        margin-top: 0px;
        gap: 0px;
    }

    .collection .playlist .genres .header a,
    .collection .playlist .music-list .header a {
        font-size: 12px;
    }
    
    .collection .playlist .genres .items {
        gap: 0px;
    }

    .collection .playlist .genres .items .item,
    .collection .playlist .genres .items .best-item {
        padding: 8px;
        border-radius: 6px;
    }

    .collection .playlist .genres .items .item p,
    .collection .playlist .genres .items .best-item p {
        font-size: 12px;
    }
    
    .collection .playlist .music-list   {
        padding: 0px 20px 20px 20px;
        border-radius: 6px;
        width: 100%;
        margin: 0px;
    }
    
    .collection .playlist .music-list .items .item:last-child{
        margin-bottom: 0;
    }
    
    .collection .playlist .music-list .items .item .info,
    .collection .playlist .music-list .items .item .actions,
    .collection .playlist .music-list .items .best-item .info,
    .collection .playlist .music-list .items .best-item .actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .collection .playlist .music-list .items .item .info img,
    .collection .playlist .music-list .items .best-item .info img {
        width: 50px;
        height: 50px;
        border-radius: 4px;
    }
    
    .collection .playlist .music-list .items .item .actions p,
    .collection .playlist .music-list .items .best-item .actions p {
        font-size: 10px;
    }
    
    .collection .playlist .music-list .items .item .actions .icon,
    .collection .playlist .music-list .items .best-item .actions .icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .collection .playlist .music-list .items .item .actions .icon i,
    .collection .playlist .music-list .items .best-item .actions .icon i {
        font-size: 20px;
    }

    .blog, .artists-collection {
        font-size: 13px;
        padding: 4px 22px;
    }
    
    .blog h2, .artists-collection h2 {
        font-size: 14px;
    }
    
    .blog .first-paragraph {
        font-weight: 600;
    }
    
    .artists-collection img {
        height: 80px;
        width: 80px;
    }
    
    .artists-collection .artists  {
        margin: 0px;
        overflow: scroll;
    }
    
    .artists-collection .artists .artist  {
        padding: 8px;
        margin: 0px 10px;
        border-radius: 4px;
    }
    
    .artists-collection .artists .artist .artist-name  {
        font-size: 12px;
        overflow: hidden;
        height: 14px;
    }

    footer .copyright {
        padding-bottom: 5px;
    }
}
@media screen and (max-width: 1080px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 700px;
    }
}
@media screen and (max-width: 1000px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 650px;
    }
}
@media screen and (max-width: 950px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 600px;
    }
}
@media screen and (max-width: 900px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 550px;
    }
}
@media screen and (max-width: 850px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 500px;
    }
}
@media screen and (max-width: 800px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 450px;
    }
}
@media screen and (max-width: 750px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 400px;
    }
}
@media screen and (max-width: 700px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 350px;
    }
}
@media screen and (max-width: 650px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 300px;
    }
}

@media screen and (max-width: 600px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 250px;
    }
}

@media screen and (max-width: 550px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 200px;
    }
}

@media screen and (max-width: 500px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 150px;
    }
}

@media screen and (max-width: 450px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 125px;
    }
}

@media screen and (max-width: 400px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 100px;
    }
}

@media screen and (max-width: 360px) {
    .music-list .items .best-item .info .details,
    .music-list .items .item .info .details {
        max-width: 75px;
    }
}

/* Laptop and Desktop */
@media screen and (min-width: 1081px) {

    .mobile-only {
        display: none;
    }

    .sidebar {
        left: 0px;
    }

    .sidebar .sidebar-item img[class="sidebar-profile-pic"] {
        width: 17px;
        height: 17px;
        margin: 0px 9px 0px 16px;
    }

    nav {
        margin: 0px 45px 0px 245px;
        font-size: 24px;
    }

    nav .nav-header {
        margin: 4px 0px 12px 0px;
    }

    nav .nav-header-padded {
        margin-left: 10px;
        margin-right: 8px;
    }

    nav .nav-header .logo {
        font-weight: 800;
    }

    .page-content {
        margin-left: 204px;
    }

    .trending-song {
        margin: 0px 62px;
        padding: 10px;
    }
    
    .trending-song-headline {
        margin: 24px 10px 0px 50px;
        font-size: 13px;
        font-weight: 600;
    }
    
    .trending-song-details {
        width: 50%;
        margin-top: 10px;
    }
    
    .trending-song-name {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 12px;
    }
    
    .trending-song-artist {
        font-size: 16px;
    }
    
    .trending-song-extra {
        margin-bottom: 26px;
    }
    
    .trending-song-plays {
        font-size: 15px;
        font-weight: 600;
        margin-left: 12px;
    }

    .trending-song-play-button {
        margin-top: 40px;
    }
    
    .trending-song-play-button a {
        font-size: 13px;
        font-weight: 600;
        padding: 14px 30px;
        border-radius: 14px;
    }
    
    
    .trending-song-play-button a:hover {
        color: inherit;
    }
    
    .trending-song .trending-song-art img {
        border-radius: 10px;
        width: 200px;
        height: 180px;
    }

    .collection {
        margin: 0px 70px 40px 70px;
        background-color: #18181d;
        border-radius: 8px;
    }
    
    .collection .playlist {
        margin-top: 14px;
        gap: 20px;
    }
    
    
    .collection .playlist .genres {
        padding: 0px 20px 20px 20px;
        border-radius: 6px;
        width: 30%;
    }
    
    .collection .playlist .genres .header,
    .collection .playlist .music-list .header {
        margin: 0px;
    }
    
    .collection .playlist .genres .header a,
    .collection .playlist .music-list .header a {
        font-size: 12px;
    }
    
    .collection .playlist .genres .items {
        gap: 8px;
    }
    
    .collection .playlist .genres .items .item,
    .collection .playlist .genres .items .best-item {
        padding: 8px;
        border-radius: 6px;
    }
    
    .music-list .items .item .info .details,
    .music-list .items .best-item .info .details {
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 6px 0px;
        line-height: 0px;
    }

    .collection .playlist .genres .items .item p,
    .collection .playlist .genres .items .best-item p {
        font-size: 14px;
        font-weight: bold;
    }
    
    .collection .playlist .music-list   {
        background: linear-gradient(#18181d, #050505);
        padding: 0px 20px 20px 20px;
        border-radius: 6px;
        width: 65%;
    }

    .music-list .items .item .info .details,
    .music-list .items .best-item .info .details {
        max-width: 450px;
    }

    .collection .playlist .music-list .items .item:last-child{
        margin-bottom: 0;
    }
    
    .collection .playlist .music-list .items .item .info,
    .collection .playlist .music-list .items .item .actions,
    .collection .playlist .music-list .items .best-item .info,
    .collection .playlist .music-list .items .best-item .actions {
        gap: 20px;
    }
    
    .collection .playlist .music-list .items .item .info img,
    .collection .playlist .music-list .items .best-item .info img {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }
    
    .collection .playlist .music-list .items .best-item .actions p,
    .collection .playlist .music-list .items .item .actions p {
        font-size: 12px;
    }

    .blog, .artists-collection {
        font-size: 14px;
        padding: 4px 10px;
    }
    
    .blog h2, .artists-collection h2 {
        font-size: 18px;
    }
    
    .blog .first-paragraph {
        font-weight: 600;
    }
    .artists-collection img {
        height: 150px;
        width: 150px;
    }
    
    .artists-collection .artists  {
        margin: 6px 0px;
        overflow: hidden;
    }
    
    .artists-collection .artists .artist  {
        padding: 8px;
        margin: 0px 10px;
        border-radius: 4px;
    }
    
    .artists-collection .artists .artist .artist-name  {
        font-size: 16px;
        font-weight: 700;
        color: rgb(224, 224, 224);
        margin: 4px 0px;
    }
}