#recreo{
    background-color: var(--grisOscuro);
    width: 100%;
    height: 15px;
    border-radius: 0 0 10px 10px;
    color: var(--blanco);
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    transition: height 0.9s;
}

#barraSup{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;

    opacity: 0;
    transition: opacity 3s;

    ul{
        list-style-type: none;
    }
    li{
        display: inline-block;
    }
}

/* barra arrastrable del recreo: div con imagen dentro */
#divHandle{
    position: absolute;
    bottom: -10px;
    text-align: center;
    width: 100%; /* para que funcione el text-align */
    transition: transform 0.3s;
    &:hover{
        transform: scale(1.2);
    }
}


#recreo.expandido{
    height: 200px;
}

#barraSup.contenidoVisible{
    opacity: 1;
}