.reproductor{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: #090909;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 9999;
}

.radio-info{
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-radio{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #00d66b;
    object-fit: cover;
}

.texto-radio{
    display: flex;
    flex-direction: column;
}

.en-vivo{
    color: #00d66b;
    font-size: 14px;
    font-weight: bold;
}

.texto-radio h3{
    color: white;
    margin: 2px 0;
    font-size: 18px;
}

.texto-radio p{
    color: white;
    margin: 0;
    font-size: 14px;
}

.linea{
    width: 1px;
    height: 45px;
    background: #555;
}

#play-btn{

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: transparent;

    border: 4px solid #00d66b;

    color: #00d66b;

    font-size: 24px;

    cursor: pointer;

    transition: .3s;
}

#play-btn:hover{
    transform: scale(1.05);
}

.cancion span{
    color: #00d66b;
    font-weight: bold;
}

.cancion h3{
    color: white;
    margin: 0;
    font-size: 18px;
}

.volumen{
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

/* BARRA DE VOLUMEN */

#volumen{
    width: 180px;

    appearance: none;
    -webkit-appearance: none;

    background: transparent;
}

#volumen::-webkit-slider-runnable-track{
    height: 4px;
    background: #555;
    border-radius: 20px;
}

#volumen::-webkit-slider-thumb{
    -webkit-appearance: none;

    width: 16px;
    height: 16px;

    background: #00d66b;

    border-radius: 50%;

    margin-top: -6px;

    cursor: pointer;
}

#volumen::-moz-range-track{
    height: 4px;
    background: #555;
}

#volumen::-moz-range-thumb{
    width: 16px;
    height: 16px;
    background: #00d66b;
    border: none;
    border-radius: 50%;
}


/* ===== TABLETS ===== */

@media(max-width:992px){

    .logo-radio{
        width:55px;
        height:55px;
    }

    #play-btn{
        width:55px;
        height:55px;
        font-size:20px;
    }

    .texto-radio p{
        font-size:12px;
    }

    #volumen{
        width:120px;
    }

}


/* ===== CELULARES ===== */

@media(max-width:768px){

    .reproductor{
        padding:0 10px;
        gap:10px;
    }

    .texto-radio p,
    .linea,
    .cancion{
        display:none;
    }

    .logo-radio{
        width:50px;
        height:50px;
    }

    .texto-radio h3{
        font-size:15px;
    }

    #play-btn{
        width:50px;
        height:50px;
        font-size:18px;
    }

    #volumen{
        width:80px;
    }

}


/* ===== MOVILES PEQUEÑOS ===== */

@media(max-width:480px){

    .logo-radio{
        width:40px;
        height:40px;
    }

    .texto-radio h3{
        font-size:13px;
    }

    .en-vivo{
        font-size:11px;
    }

    #play-btn{
        width:45px;
        height:45px;
        font-size:16px;
    }

    #volumen{
        width:60px;
    }

}