.whatsapp-float {
    position: fixed;       /* siempre visible */
    bottom: 20px;          /* distancia desde abajo */
    right: 20px;           /* distancia desde la derecha */
    z-index: 100;          /* encima de otros elementos */
   
}

.whatsapp-float img {
    
    
    width: 70px;
    height: 70px;
   

    transition: transform 0.3s ease;
   
}

.whatsapp-float img:hover {
    transform: scale(1.1); /* efecto al pasar el mouse */
}

/* Black bar */

#black
{
   
     background-color: #0b1b2b;
     color: rgb(255, 255, 255);
     padding: 5px ;
}

#black .max-width
{
   display: flex;
   justify-content: space-between;
}


#black .elink
{
 padding-right: 30px;
}

.slink span
{
   
   background-color: rgba(255, 255, 255, .12);
   padding: 2px 10px;
   border-radius: 20px;
   border: 1px solid black;
}

.elink span
{
   
   
   padding: 2px 10px;
   border-radius: 20px;
   
   
}

@media (max-width: 900px)
{

    #black .max-width
    {
       display: flex;
       justify-content: center;
    }
    
    .slink span
    {
    display: none;
    }

    .elink .x
    {
        display: none;
    }
}
