/* google font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');


/* https://kazzkiq.github.io/balloon.css/ */
:root {
    --balloon-color: rgba(165, 165, 165, 0.541);
  }

/* * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
} */

/* header {
    
} */

.message-box {
    display: flex;
    position: absolute;
    align-self: start;
    justify-self: start;
    width: 100%;
    z-index: 5;
    height: 64px;
}

body {

    font-family: "Roboto", sans-serif;
    width: 100%;
    height: 100vh;
    background: #121213;

}

/* header - nav */
.song_side {
    width: 90%;
    height: 100%;
    /* border: 1px solid #fff; */
    margin: auto;
    color: #fff;

}
/* .song_side .bi{
    
    color: goldenrod;

} */

.song_side nav {
    width: 90%;
    height: 10%;
    /* border: 1px solid #fff; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.song_side nav ul {
    display: flex;
    margin-bottom: 0;


}

.song_side nav ul li {
    list-style: none;
    position: relative;
    font-size: 13px;
    color: #4C5262;
    margin-right: 25PX;
    cursor: pointer;
    transition: .3S linear;
}

.song_side nav ul li:hover {
    color: #fff;
}

.song_side nav ul li.active {

    color: #fff;
    border-bottom: 2.5px solid #36e2ec;
    animation: fadeEffect 1s;

}

.song_side nav ul li span {
    position: absolute;
    width: 100%;
    height: 2.5px;
    background: #36e2ec;
    bottom: -5px;
    left: 0;
    border-radius: 20px;
}

.search {
    position: relative;
    /* width: 25%; */
    padding: 1px 8px;
    border-radius: 20px;
    /* border: 1px solid #fff; */
    color: gray;
    background: #36e3ec15;
    display: flex;
}

.search::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(184, 184, 184, .1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    z-index: -1;
}

.search .bi {
    font: 13px;
    padding: 3px 0px 0px 10px;
}

.search input {
    background: none;
    border: none;
    outline: none;
    padding: 0px 10px;
    color: #fff;
    font-size: 12px;
    width: 150px;
}

.search .search-a {
    display: flex;
}

.search .search-a .bi{
    color: gray;
    justify-self: right;
    align-self: center;
    transition: 0.3s linear;
}

.search .search-a .bi:hover{
    color: goldenrod;
    justify-self: right;
    align-self: center;
}

/* -------------------------  USER MENU -------------------------*/

.song_side nav .user {
    position: relative;
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff2a;
    border-radius: 50%;
}

.song_side nav .user img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 2px 2px 8px #121213;
    cursor: pointer;
}


.sub-menu-wrap {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 320px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
    z-index: 20;
}

.sub-menu-wrap.open-menu {
    max-height: 400px;
}

.sub-menu-wrap .sub-menu {
    background: #fff;
    padding: 20px;
    margin: 10px;
}

.sub-menu-wrap .sub-menu .user-info {
    display: flex;
    align-items: center;
}

.sub-menu-wrap .sub-menu .user-info h4 {
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    font-weight: 500;
    color: #111727;
}

.sub-menu-wrap .sub-menu .user-info img {
    width: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.sub-menu-wrap .sub-menu hr {
    border: 0;
    height: 1px;
    width: 100%;
    background: #ccc;
    margin: 15px 0 10px;
}

.sub-menu-wrap .sub-menu .sub-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #525252;
    margin: 12px 0;
    justify-content: center;
}

.sub-menu-wrap .sub-menu .sub-menu-link p {
    width: 70%;
    margin-bottom: 0;
}

.sub-menu-wrap .sub-menu .sub-menu-link:hover p {
    font-weight: 600;
}

.sub-menu-wrap .sub-menu .sub-menu-link .bi {
    width: 40px;
    /* background: #e5e5e5; */
    border-radius: 50%;
    padding: 8px;
    margin-right: 20px;
}

.sub-menu-wrap .sub-menu .sub-menu-link:hover .bi {
    color: rgb(255, 123, 0);
}

.sub-menu-wrap .sub-menu .sub-menu-link span {
    font-size: 22px;
    transition: transform 0.5s;
}

.sub-menu-wrap .sub-menu .sub-menu-link:hover span {
    transform: translateX(5px);
}

/* -------------------searach-bar------------------- */
.sub-search-wrap {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 320px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
    z-index: 20;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(25px);
    
}

.open-search {
    max-height: 400px;
}

.sub-search-wrap .sub-search {
    background: #313b4762;
    padding: 4px 4px 4px 4px;
    margin: 4px 4px 4px 4px;
    border-radius: 5px;
}

.sub-search-wrap .sub-search .search-item {
    display: flex;
    align-items: center;
    margin: 8px 0 0 0;
    transition: 0.3s linear;
    background-color: #090f1f48;
    border-radius: 30px 0 0 30px;
}
.sub-search-wrap .sub-search .search-item:hover {
    background-color: #15535759;
    
}

.sub-search-wrap .sub-search .search-item a {
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.sub-search-wrap .sub-search .search-item .search-img img {
    width: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.sub-menu-wrap .sub-menu hr {
    border: 0;
    height: 1px;
    width: 100%;
    background: #ccc;
    margin: 15px 0 10px;
}

.sub-menu-wrap .sub-menu .sub-menu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #525252;
    margin: 12px 0;
    justify-content: center;
}

.sub-menu-wrap .sub-menu .sub-menu-link p {
    width: 70%;
    margin-bottom: 0;
}

.sub-menu-wrap .sub-menu .sub-menu-link:hover p {
    font-weight: 600;
}

.sub-menu-wrap .sub-menu .sub-menu-link .bi {
    width: 40px;
    /* background: #e5e5e5; */
    border-radius: 50%;
    padding: 8px;
    margin-right: 20px;
}

.sub-menu-wrap .sub-menu .sub-menu-link:hover .bi {
    color: rgb(255, 123, 0);
}

.sub-menu-wrap .sub-menu .sub-menu-link span {
    font-size: 22px;
    transition: transform 0.5s;
}

.sub-menu-wrap .sub-menu .sub-menu-link:hover span {
    transform: translateX(5px);
}

.credit-points{
    display: flex;
    justify-content: center;
    align-items: center;
}
.credit-points .cp{
    display: flex;
    justify-content: center;
    align-items: center;
}
.credit-points .cp p{
    margin-bottom: 0;
    color: gray;
}


.tab-content{
    animation: fadeEffect 1s;
    overflow: auto;
    height: 100%;
    padding-bottom: 70px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.tab-content::-webkit-scrollbar {
    display: none;
  }



.song_side .content-music {
    width: 90%;
    height: 30%;
    /* border: 1px solid #fff; */
    margin: auto;
    padding-top: 20px;
}

.song_side .content-music h1 {
    font-size: 25px;
    font-weight: 600;
}

.song_side .content-music p {
    font-size: 11px;
    font-weight: 400;
    color: #4C5262;
    margin: 5px;
}

.buttons {
    display: flex;
    margin-top: 15px;
    margin-left: 8px;
}

.buttons button {
    width: 130px;
    height: 30px;
    border: 2px solid #36e3ec7e;
    outline: none;
    border-radius: 20px;
    background: #5ad9e07e;
    color: #fff;
    cursor: pointer;
    transition: .3s linear;
}

.buttons button:hover {
    background: none;
    color: #36e3ec;
}

.buttons button:nth-child(2) {
    background: none;
    color: #36e3ec7e;
}

.buttons button:nth-child(2):hover {
    background: #36e3ec7e;
    color: #fff;
}

.song_side .popular_song {
    width: 90%;
    height: auto;
    margin: auto;
    margin-top: 15px;
    /* border: 1px solid #fff; */
}

.song_side .popular_song .h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.song_side .popular_song .h4 .bi {
    color: #a4a8b4;
    cursor: pointer;
    transition: .3s linear;
}

.song_side .popular_song .h4 .bi:hover {
    color: #fff;

}

.song_side .popular_song .pop_song {
    width: 100%;
    height: 150px;
    margin-top: 15px;
    display: flex;
    /* border: 1px solid #fff; */
    overflow: auto;
    scroll-behavior: smooth;
}

.song_side .popular_song .pop_song ul {
    display: inline-flex;
    width: 164px;
}

.song_side .popular_song .pop_song::-webkit-scrollbar {
    display: none;
}

.song_side .popular_song .pop_song li {
    min-width: 100px;
    height: 140px;
    list-style-type: none;
    margin-right: 10px;
    transition: .3s linear;
    border-radius: 10px 10px 0 0;
}

.song_side .popular_song .pop_song li:hover {
    background: rgb(105, 105, 170, .1);
}

.song_side .popular_song .pop_song li .img_play {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
}



.song_side .popular_song .pop_song li .img_play img {
    width: 100%;
    height: 100%;
    transition: .3s linear;
}

/* .song_side .popular_song .pop_song li .img_play:hover img {
    border-radius: 10px 10px 0 0;
} */

.song_side .popular_song .pop_song li .img_play .box_actions {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
    height: 100%;
    width: 100%;
}

.song_side .popular_song .pop_song li:hover .img_play .box_actions {
    background-color: #05077234;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    /* border-radius: 10px 10px 0 0; */
    /* width: 80px; */
    /* height: 60px; */
    /* border: 1px solid #03043a94; */
}
.song_side .popular_song .pop_song li:hover .img_play .box_actions a{
    color: #fff;
}

.song_side .popular_song .pop_song li .img_play .box_actions .bi {
    /* position: absolute; */
    font-size: 20px;
    cursor: pointer;
    transition: .3s linear;
    opacity: 0;
    padding: 0 10px;

}
.song_side .popular_song .pop_song li .img_play .box_actions .bi:hover {
    color: goldenrod;
}

.song_side .popular_song .pop_song li:hover .img_play .bi {
    opacity: 1;
}

.song_side .popular_song .pop_song li h5 {
    padding: 5px 0px 0px 5px;
    line-height: 15px;
    font-size: 10px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.song_side .popular_song .pop_song li h5 a {
    padding: 5px 0px 0px 5px;
    line-height: 15px;
    font-size: 12px;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #fff;
    transition: .3s linear;
}
.song_side .popular_song .pop_song li h5 a:hover {
    
    color: goldenrod;
}

.song_side .popular_song .pop_song li h5 .subtitle {
    font-size: 9px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #4C5262;
}
.song_side .popular_song .pop_song li h5 .subtitle a {
    font-size: 9px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #6c6f79;
    text-decoration: none;
    cursor: pointer;
}

.song_side .popular_artists {
    width: 90%;
    height: auto;
    /* border: 1px solid #fff; */
    margin: auto;
    margin-top: 15px;
}

.song_side .popular_artists .h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.song_side .popular_artists .h4 .bi {
    color: #a4a8b4;
    cursor: pointer;
    transition: .3s linear;
}

.song_side .popular_artists .h4 .bi:hover {
    color: #fff;

}

.song_side .popular_artists .item {
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    /* border: 1px solid #fff; */
    overflow: auto;
    scroll-behavior: smooth;

}

.song_side .popular_artists .item::-webkit-scrollbar {
    display: none;
}

.song_side .popular_artists .item ul {
    display: inline-flex;
    /* flex-wrap: nowrap; */
    /* overflow: hidden; */

}

.song_side .popular_artists .item ul li {

    list-style-type: none;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    cursor: pointer;
}

.song_side .popular_artists .item ul li img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #ffffff56;
}





main {
    position: absolute;
    width: 100%;
    height: 90%;
    /* display: grid; */
    /* place-items: center; */
}

main .content {
    /* margin-top: 100px; */
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    /* border: 1px solid #fff; */
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
main .content .menu_side{
        /* display: none; */

}

main .content .menu_side,
.song_side {
    width: 25%;
    height: 100%;
    /* border: 1px solid #fff; */
    background: #111727;
    box-shadow: 5px 0px 2px #090f1f;
    color: #fff;
}

main .content .menu_side .logo_link {
    display: inline-flex;
    margin: 10px;
    text-decoration: none;
}

main .content .menu_side .logo_img {
    max-width: 50px;
    max-height: 50px;
    margin-left: 15px;
}

main .content .menu_side h1 {
    font-size: 20px;
    margin: 15px 0px 0px 10px;
    font-weight: 500;
    color: #fff;

}

main .content .menu_side .left_list {

    margin: 25px 0px 0px 20px;

}

main .content .menu_side .left_list a {

    text-decoration: none;

}

main .content .menu_side .left_list h4 {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 10px;
    color: #4c5262;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: .3s linear;
}

main .content .menu_side .left_list h4:hover {
    color: #fff;
}

main .content .menu_side .left_list h4 .bi {
    display: none;
}

main .content .menu_side .left_list .active {
    color: #36e2ec;

}

/* main .content .menu_side .left_list .not_active {} */

main .content .menu_side .left_list .active span {
    display: none;

}

main .content .menu_side .left_list .active .bi {
    display: flex;
    margin-right: 20px;

}

main .content .menu_side .menu_song {
    width: 100%;
    height: 390px;
    /* border: 1px solid #fff; */
    margin-top: 4px;
    overflow: auto;
}

main .content .menu_side .menu_song::-webkit-scrollbar {
    display: none;
}


main .content .menu_side .menu_song li {
    list-style-type: none;
    position: relative;
    padding: 5px 0px 5px 8px;
    left: -16px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* cursor: pointer; */
    transition: .3s linear;
    /* background: rgb(105, 105, 105, .0); */
    border-radius: 8px;
}

main .content .menu_side .menu_song li:hover {
    background: rgb(105, 105, 105, .1);
}

main .content .menu_side .menu_song li span {
    font-size: 12px;
    font-weight: 600;
    color: #4c5262;
}

main .content .menu_side .menu_song li img {
    width: 32px;
    height: 32px;
    margin-left: 25px;
}

main .content .menu_side .menu_song li h5 {
    font-size: 11px;
    margin-left: 15px;
    width: 60%;
    /* border: 1px solid #fff; */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

main .content .menu_side .menu_song li h5 .subtitle {
    font-size: 9px;
    color: #4c5262;
}

main .content .menu_side .menu_song li .playlist-keys{
    display: flex;
    
}
main .content .menu_side .menu_song li .bi {
    display: inline;
    position: relative;
    margin-right: 4px;
    cursor: pointer;
    opacity: 0.2;
    transition: 0.3s linear;
}
main .content .menu_side .menu_song li .bi:hover {
    opacity: 1;
}

main .content .menu_side .left_list h4 span {
    position: relative;
    margin-right: 20px;
}

main .content .menu_side .left_list h4 span::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px solid #4c5262;
    border-radius: 50%;
    top: -4px;
    transition: .3s linear;
}

main .content .menu_side .left_list h4:hover span::before {
    border: 2px solid;
}

main .content .menu_side .playlist_val {
    height: 14px;

    display: flex;
    position: relative;
    justify-content: space-between;
}
main .content .menu_side .playlist_val .pl-details{
    display: flex;
    position: relative;
}

main .content .menu_side .playlist_val  p {
    font-size: 12px;
    padding-inline: 20px;
    color: #36e3ec81;
}
main .content .menu_side .playlist_val .pl-details .bi {
    font-size: 12px;
    padding-inline: 20px;
    color: #36e3ec81;
}
main .content .menu_side .playlist_val .pl-details .clear_pl{
    cursor: pointer;
    transition: .3s linear;
}
main .content .menu_side .playlist_val .pl-details .clear_pl:hover{
    color: goldenrod;
}

main .content .song_side {
    width: 75%;
    background: #0b1320;

}



/* song side */

/* main .content .song_side {
    z-index: 2;
} */

/* main .content .song_side::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 300px;
    background: url('bg.png');
    background-size: cover;
    z-index: -1;
} */

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

