	#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: #c11a1a;*/
		/*background: radial-gradient(circle at top left, #96a825, #009ba4);*/
		background: radial-gradient(circle at top left, #f5897f, #195e9f);
	}	
	.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) / 7) - 1px); /*100% - fascia chiudi / numero di item - il pixel del border-bottom*/
		justify-content: center;
		border-bottom: solid 1px #fff;
	}
	.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: #000;
    }

