
/* Box styles */
.myBox {
border: none;
padding: 5px;
overflow: scroll;
}

/* Scrollbar styles */
::-webkit-scrollbar {
width:10px;
height:10px;
}

::-webkit-scrollbar-track 
{box-shadow:inset 0 0 6px lightblue;
 border-radius:10px;
}

::-webkit-scrollbar-thumb 
{border-radius:5px;
 background:lightblue; 
 box-shadow:inset 0 0 10px rgba(0,0,0,0.5); 
}

::-webkit-scrollbar-thumb:hover
{background: orange;
}
/* FINESTRE DI INPUT USCITE */
a { white-space: nowrap; }

.modalDialog {
	position: fixed;
	font-family: Century Gothic;font-size:10pt;top:0;right:0;bottom:0;left:0;
	background: rgba(0,0,0,0.2);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
	}
.modalDialog:target {
	opacity:1;
	pointer-events: auto;
	}
.modalDialog > div {
	position:fixed;
	margin:5% auto;
	padding:1px 1px 1px 1px;
	border-radius:5px;
	background: -webkit-linear-gradient(white,#999);
	}
.close {
        line-height:0px;
        position:relative;
        text-align:center;
        top: 15px;
        left: 212px;
        width: 0px;
       }

.close:hover {background:blue;color:white;}

input[type="date"] {
     -webkit-align-items: center;
     display: -webkit-inline-flex;
     font-family: Arial;
     overflow: hidden;
     padding: 0;
     -webkit-padding-start:1px;
}