    #boxmenumobile{
        display: none;
        position:fixed;
        z-index: 20000;
        top:0;
        width: calc(100% - 20px);
        padding:0 10px;
        height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
        height: calc(var(--vh, 1vh) * 100);
        margin: 0 auto;
        /*max-width: 30%;*/
        background-color: #931F46;
    }
    .prewchiudi{javascript:chiudimobile()

        height: 30px;
        padding: 10px 0;
        /*background-color: #0f0;*/
        text-align: right;
    }

    .boxmenumobile {
        height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
        height: calc(var(--vh, 1vh) * 100);
        margin: 0 auto;
        max-width: 30%;
    }
    .module__item {
        align-items: center;
        display: flex;
        height: calc(((100% - 50px) / 8) - 1px); /*100% - fascia chiudi / numero di item - il pixel del border-bottom*/
        justify-content: center;
        border-bottom: solid 1px #61152E;
    }
    .module__item:last-child{
        border-bottom: none;
    }
    .module__item a, .module__item a:link{
        color:#fff;
        text-decoration:none;
        display: block;
        white-space: nowrap;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
    }
    .module__item a:hover, .module__item a:focus, .module__item a:active{
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
        color: #F1C1DA;
    }