﻿.menu {
    background-color: rgba(55, 184, 119, 1);
}

.menu .item {
    /* background: red; */
    padding: 10px;
}

.menu .item h2 {
    /* background: yellow; */
    font-size: 15px;
    color: rgba(17, 130, 73, 1);
    width: 98%;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
    padding-bottom: 2px;
    margin-top: -1px;
}

.menu .item div {
    background-color: rgba(255,255,255,1);
    display: block;
    float: left;
    text-align: center;
    width: 100%;
    padding: 10px;
    height: 100px;
    overflow: hidden;
}

.menu .item div span {
    background: black;
    display: inline-block;
    width: 60px;
    height: 40px;
    font-size: 16px;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    line-height: 35px;
    margin-bottom: 5px;
}

.menu .titulo h2 {
    font-size: 18px;
    /* padding: 5px 7px; */
    color: rgba(255,255,255,1);
    float: left;
    margin: 10px 0px 0px;
}

    .zoom{
        /* Aumentamos la anchura y altura durante 2 segundos */
        transition: width .5s, height .5s, transform .5s;
        -moz-transition: width .5s, height .5s, -moz-transform .5s;
        -webkit-transition: width .5s, height .5s, -webkit-transform .5s;
        -o-transition: width .5s, height .5s,-o-transform .5s;
    }
    .zoom:hover{
        /* tranformamos el elemento al pasar el mouse por encima al doble de
           su tamaño con scale(2). */
        transform : scale(1.5);
        -moz-transform : scale(1.5);      /* Firefox */
        -webkit-transform : scale(1.5);   /* Chrome - Safari */
        -o-transform : scale(1.5);        /* Opera */
    }