@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Space+Grotesk:wght@300..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Varela+Round&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.6.0/fonts/remixicon.css');

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #efefef;
}

.albumInfoBg {
    width: 100%;
    background-color: black;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 10px;
}

#album-info {
    display: flex;
    align-items: center;
}

#album-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 50%;
}

#album-artist {
    color: rgb(184, 184, 184);
}

#album-desc {
    color: rgb(143, 143, 143);
}

#songs-list {
    list-style-type: none;
    padding: 0;
}

.song-item {
    cursor: pointer;
    padding: 10px;
    background-color: #2828285e;
    margin-bottom: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.song-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 15px;
}

.song-info {
    flex: 1;
}

.song-artist {
    font-size: 14px;
    color: #b3b3b3;
}

.song-item:hover {
    background-color: #383838;
}

.control-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
}

.control-button {
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
}

.control-button:hover {
    color: var(--hover-color);
}

#song-info {
    display: flex;
    align-items: center;
    flex: 1;
    margin-left: 10px;
}

#song-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
    transition: transform 0.3s;
}

#song-image:hover {
    transform: scale(1.1);
}

#song-details {
    display: flex;
    flex-direction: column;
}

#song-artist,
#current-time {
    color: gray;
    font-size: 17px;
}

#progress-bar {
    position: relative;
    width: 100%;
    height: 0.3em;
    background-color: #eeeeee15;
    margin: 1em 0;
    border-radius: 0.18em;
    cursor: pointer;
}

#current-progress {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    height: 100%;
    width: 20%;
    border-radius: 0.18em;
    filter: brightness(2.5);
}

.progress-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.time-container {
    display: flex;
    align-items: center;
}

#volume-bar {
    margin-left: 20px;
}

.hide {
    display: none;
}

#play,
#pause,
#prev,
#playlist,
#mute,
#next,
#lyrics-button,
.home {
    font-size: 32px;
    filter: brightness(3.0);
    margin-left: 4px;
    margin-right: 4px;
    background-color: transparent;
}

#lyrics-button {
    color: white;
}
#lyrics-button:hover {
    color: rgb(109, 109, 109);
}

.i-vol {
    color: #fff;
}

.show-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    z-index: 1000;
    /* Certifique-se de que o botão fique acima de outros elementos */
}

.close-button-ly {
    position: absolute;
    margin-top: 14px;
    right: 10px;
    background-color: transparent;
    border: none;
    height: 2em;
    width: 2em;
    cursor: pointer;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    background-color: #33333325;
    border-radius: 50px;
}

.close-button-ly:hover, .close-button:hover {
    color: #c7c7c7;
    background-color: #333;
}

.mobile-extra {
    display: none;
}

/* Estilo do popup */
.hidden {
    display: none;
}

.lyrics-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    overflow-y: auto;
    z-index: 1000;
    transition: var(--transição);
}

.lyrics-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #444;
}

.album-cover {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin-right: 15px;
}

.lyrics-info {
    flex: 1;
}

.artist-name {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.lyrics-content {
    padding: 20px;
    text-align: center;
}

.lyrics {
    text-align: left;
    color: #ffffff34;
    justify-content: center;
    padding: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.lyric-line {
    font-size: 27.6px;
    padding: 5px 0;
    cursor: pointer;
    /* Adiciona um cursor de ponteiro para indicar que a linha é clicável */
    transition: 0.3s;
    font-weight: 200;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.lyric-line:hover {
    color: #ececec;
    background-color: #0000002f;
    transition: 0.3s;
    border-radius: 10px;
}

.highlight {
    color: rgb(255, 255, 255);
    /* Cor inicial quando a linha é destacada 
    animation: changeColor 10s forwards;*/
    /* Muda a cor após 10 segundos */
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.highlight:hover {
    font-weight: 500;
    transition: 0.3s;
}

.translation-line {
    color: #ffffff3d;
    /* Cor diferenciada para a tradução */
    cursor: pointer;
    transition: 0.3s;
    font-size: 20.2px;
    font-weight: 500;
}

.translation-line:hover {
    color: #fff679ad;
    transition: 0.3s;
}

.translation-line.hide {
    display: none;
    /* Oculta as traduções quando a classe 'hide' está presente */
}

.tl-highlight {
    color: #fff240;
    /* cor mais clara para diferenciação 
    animation: changeTsColor 10s forwards;*/
    /* Muda a cor após 10 segundos */
    font-weight: 500;
    transition: 0.3s;
}

.separatorly {
    margin-top: 4px;
    margin-bottom: 18px;
}

.songList {
    overflow: scroll;
    height: 270px;
    border: none;
    border-radius: 5px;
    overflow-x: hidden;
    transition: var(--transição);
}

.playing-icon {
    margin-right: 10px;
    font-size: 17px;
    color: #fff;
}

/* SCROLLBAR */
/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 4px;
    border: none;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: transparent;
    border: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffffff1c;
    border-radius: 30px;
    border: none;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #a0a0a0;
    border: none;
}

.filter-options {
    flex: 0 0 auto;
    padding: 10px 20px;
    border-radius: 50px;
    background: #f0f0f0;
    border: 1px solid transparent;
    margin-right: 10px;
    color: #1b1b1b;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-options.gray {
    background-color: rgb(255, 255, 255, 0.35);
    color: #ffffff;
}

.filter-options.gray:hover {
    background-color: rgb(255, 255, 255, 0.90);
    color: #000000;
}

.lyrics-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    z-index: 1000;
    padding: 20px;
    display: none;
    color: white;
    transition: background-color 0.3s ease;
}

.close-button-ly {
    position: fixed; /* Fixa o botão na tela */
    top: 10px; /* Distância do topo */
    right: 20px; /* Distância da direita */
    font-size: 25px;
    cursor: pointer;
    z-index: 1000; /* Mantém acima dos outros elementos */
    background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente */
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.pontoSp {
    color: gray;
}

.lyric-gif {
    width: 28px; /* Ajuste conforme necessário */
    height: 28px;
    margin: 0;
}

@media (max-width: 916px) {
    .miniplayer {
        font-size: 19px;
    }

    #volume-bar,
    #mute,
    .i-vol {
        display: none;
    }

    .popup-content {
        height: 74%;
        margin-bottom: 80px;
        padding: 35px;
    }

    .minP {
        margin-bottom: 4px;
        border: 2px rgba(223, 223, 223, 0.164) solid;
    }

    .songList {
        height: 50%;
    }
}

@media (max-width: 494px) {
    .miniplayer {
        font-size: 14px;
    }

    #song-artist,
    #song-artist2 {
        font-size: 14px;
        display: none;
    }

    #current-time {
        font-size: 14px;
    }

    #song-image {
        width: 35px;
        height: 35px;
    }

    #volume-bar,
    #mute,
    .i-vol {
        display: none;
    }

    .minP {
        margin-bottom: 10px;
    }

    .songList {
        height: 56%;
    }

    .pontoSp {
        display: none;
    }
}

@media (max-width: 900px) {
    .sidebar {
        display: none;
    }

    .container,
    .large-container {
        padding-left: 5%;
        padding-right: 5%;
    }

    /* .nav-right img{
  
    display: none;
   } */

    .nav-right .user-icon {
        display: block;
        width: 30px;
    }

    .nav-middle .search-box {
        width: 100px;
        display: none;

    }

    .nav-middle .mic-icon {
        display: none;
    }

    .logo {
        width: 90px;
    }

    .collapse_menubar {
        width: 100%;
    }

}

@media (max-width: 1125px) {
    .collapse_menubar {
        width: 100%;
    }

    .miniplayer {
        left: 178px;
    }

    .a_menubar {
        color: #c5c5c5;
        cursor: pointer;
        padding: 4px 6px;
        font-size: 10px;
    }

    .user_credentials_menubar {
        font-size: 10px;
    }

    .title_menubar {
        font-size: 12px;
    }

    .miniplayer_DL {
        left: 69px;
    }
}

@media (max-width: 900px) {

    .play-video {
        flex-basis: 100%;
    }


    .right-sidebar {
        flex-basis: 100%;
        margin-top: 35px;
    }

    .play-container {
        padding-left: 5%;
    }

    .vid-des {
        padding-left: 5px;
    }

    .play-video .play-video-info a {
        margin-left: 0;
        margin-right: 15px;
        margin-top: 15px;
    }

    .hide-hr {
        display: block;
    }

}

@media (max-width: 911px) {
    .miniplayer {
        left: 10px;
    }

    /* INPUTS */
    input[type=text] {
        width: 100%;
    }

    input[type=email] {
        width: 100%;
    }

    .textarea {
        width: 100%;
    }

    .selectr {
        width: 100%;
    }

    input[type=submit] {
        width: 100%;
    }

    input[type=file] {
        width: 100%;
    }

    /* FOCUS (QUANDO CLICA) */
    input[type=text]:focus {
        width: 100%;
    }

    input[type=email]:focus {
        width: 100%;
    }

    .textarea:focus {
        width: 100%;
    }

    .selectr:focus {
        width: 100%;
    }

    input[type=submit]:focus {
        width: 100%;
    }

    input[type=file]:focus {
        width: 100%;
    }

    /* NAVEGAÇÃO */
    .nav_c {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 55px;
        box-shadow: 0 0 3px transparent;
        display: flex;
        overflow-x: auto;
    }

    nav .flex-div {
        display: none;
    }

    .nav_c {
        background-color: #0e0e0e73;
        filter: opacity(0.98);
        backdrop-filter: blur(55px);
        -webkit-backdrop-filter: blur(75px);
    }

    .nav_c a {
        cursor: pointer;
    }

    .nav__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        min-width: 50px;
        overflow: hidden;
        white-space: nowrap;
        font-weight: 100;
        font-size: 14px;
        color: #c7c7c7;
        text-decoration: none;
        transition: background-color 0.1s ease-in-out;
    }

    .nav__link:hover {
        background-color: #201f1f4d;
    }

    .nav__link--active {
        color: #d97e14;
        background-color: #0000000a;
        font-weight: 500;
        filter: opacity(10);
        filter: brightness(1.2);
    }

    .nav__icon {
        font-size: 28px;
    }

    .mobile-extra {
        display: block;
    }
}

@media (max-width: 916px) {
    .miniplayer {
        border-radius: 10px;
        font-size: 19px;
        margin-bottom: 45.2px;
        left: 10px;
    }

    #volume-bar,
    #mute,
    .i-vol {
        display: none;
    }

    .popup-content {
        height: 74%;
        margin-bottom: 80px;
        padding: 35px;
    }

    .minP {
        margin-bottom: 4px;
        border: 2px rgba(223, 223, 223, 0.164) solid;
    }
}

@media (max-width: 530px) {

    #song-artist,
    #song-artist2 {
        display: none;
    }

    .pontoSp {
        display: none;
    }
}

@media (max-width: 496px) {
    .miniplayer {
        font-size: 14px;
        margin-bottom: 45.2px;
        left: 10px;
    }

    #current-time {
        font-size: 14px;
    }

    #song-image {
        width: 35px;
        height: 35px;
    }

    #volume-bar,
    #mute,
    .i-vol {
        display: none;
    }

    .minP {
        margin-bottom: 10px;
    }

    .song-name {
        width: 145px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 415px) {
    .song-name {
        width: 115px;
    }
}

@media (max-width: 415px) {
    .song-name {
        width: 95px;
    }
}

@media (max-width: 366px) {
    .song-name {
        display: none;
    }
}