﻿.MenuVerticale, .MenuVerticale li
{
    list-style-type:none;
}
.MenuVerticale
{
    padding:10px;
}
.MenuVerticale table
{
    border-collapse:collapse;
    width:240px;
}
.MenuVerticale table .Cella0,
.MenuVerticale table .Cella1
{
    /*border:1px solid black;*/
}
.MenuVerticale table .Cella0
{
    width:calc(100% - 20px);
}
.MenuVerticale table .Cella1
{
    position:relative;
    width:20px;
    color:silver;/*colore dell'icona*/
}
.MenuVerticale table .Cella1 i
{
    position:relative;
    font-size:20px;
    /*background-color:Green;*/
    letter-spacing:normal;
    width:20px;
    height:20px;
    transform:rotate(45deg);
    transition: transform 0.5s;
    cursor:pointer;
}
.MenuVerticale li a
{
    text-decoration:none;
    color:Silver;
}
.MenuVerticale li a:hover
{
    font-weight:bold;
}
.MenuVerticale li.Livello0
{
    padding-top:10px;
    padding-bottom:10px;
}
.MenuVerticale li.Livello0::after
{
    position:relative;
    content:" ";
    margin-top:5px;
    display:block;
    height:1px;
    width:220px;
    background-color:silver;
}
.RotateI
{
    transform:rotate(90deg) !important;
}
.Sottolivello
{
    font-size:14px;
    max-height:0px;
    overflow:hidden;
    transition: max-height 0.5s ease-out;
}
.ShowDynamicItem
{
    max-height:300px;
    transition: max-height 0.5s ease-in;
}
@media screen and (min-width:460px)
{
    .MenuVerticale
    {
        padding:35px;
    }
}
