<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">	#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: #fff;
	}	
	.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;
		text-align: center;
		display: flex;
		height: calc(((100% - 50px) / 10) - 1px); /*100% - fascia chiudi / numero di item - il pixel del border-bottom*/
		justify-content: center;
		border-bottom: solid 1px #999;
		line-height: 1.5em;
	}
	.module__item:last-child{
		border-bottom: none;
	}
	.module__item a, .module__item a:link{
		color:#000;
		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: #333;
    }

</pre></body></html>