/*Player Version 3*/

.grid-container {
    display: inline-grid;
    column-gap: 1px;
    row-gap: 0px;
}

.player {
    display: flex;
    grid-row-start: 3;
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
    align-items: center;
}

.PlayBtn {
    opacity: 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    cursor: pointer;
}

#btn-img {
    width: 120px;
}

.song-info {
    display: grid;
    justify-content: left;
    color: #11bf0a;
    row-gap: 0px;
    margin: 0px;
    padding-left: 20px;
    position: center;
    margin-bottom: -10px;
}

#nowPlayTitle {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: large;
    font-style: italic;
    bottom: 0px;
    text-align: left;
}

#song {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: medium;
    font-style: italic;
    bottom: 0px;
    text-align: left;
}

#backgroundDiv {
    display: flex;
    /* Ajusta la altura según tus necesidades */
    background-size: cover;
    background-position: center;
    color: #11bf0a;
    /* Ajusta el color del texto según tu diseño */
    text-align: center;
    align-items: bottom;
    padding: 10px;
    /*background: #73AD21;*/
    margin: 0;
}

body {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

.bars {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 150px;
    height: 200px;
    grid-row-start: 1;
    grid-column-start: 1;
    grid-column-end: 3;
    padding-top: 0%;
}

.bars .wave {
    width: 6px;
    height: 2px;
    border-radius: 10px;
    background-color: #ffffff;
    animation: upDown 1.5s ease-in-out infinite;
}

@keyframes upDown {

    0%,
    100$ {
        height: 2px;
    }

    50% {
        height: 40px;
    }
}

.bars .wave:nth-child(1) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgb(255, 255, 255) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 1ms;
}

.bars .wave:nth-child(2) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 0.4s;
}

.bars .wave:nth-child(3) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 0.8s;
}

.bars .wave:nth-child(4) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
}

.bars .wave:nth-child(5) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 0.3s;
}

.bars .wave:nth-child(6) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 0.1s;
}

.bars .wave:nth-child(7) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 0.6s;
}

.bars .wave:nth-child(8) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 0.8;
}

.bars .wave:nth-child(9) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 0.3s;
}

.bars .wave:nth-child(10) {
    background: linear-gradient(0deg, rgba(17, 191, 10, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(255, 255, 255, 1) 56%, rgba(17, 191, 10, 1) 100%);
    animation-delay: 0.1s;
}