body{
	width:100%;
	height:100%;
	margin: 0;
	padding: 0;
	overflow:auto;
	font-family: 'Montserrat', sans-serif;
	color: #616f7f;
	font-weight: 300;
}

#container 
{
	margin: 0 auto;
	margin-left:10px;
	margin-right:20px;
    margin-top: -20px;
	max-width:100%;
	position:relative;
}

img {border: none}


label {
	width:95%;
	height:20px;
	margin-top: 15px;
	background:transparent;	
	float:left;
	display:block;	
	font-size: 1em;
	padding-left: 4px;
	
}

p{
	font-size: 1em;
	
}
a{
	padding-left:4px;
	font-size: 1em;
	color:#0e609d;
}

a:hover{
	color:#0fb7fa;
}


#privacy a{
   	padding-top:5px;
	padding-left:4px;
	font-size: 1em;
	color:#0e609d;
}

#privacy a:hover{
	color:#0fb7fa;
}

.quantita{
	width:80px;
	background-color:#fbfbfb;
	color: #808080;
	border: 2px solid #e5e5e5;
	height: 26px;
	padding: 0 6px;
	margin: 10px 5px 5px 10px;
}

input[type="number"]{
	width:90px;
	background-color:#fbfbfb;
	color: #808080;
	border: 2px solid #e5e5e5;
	height: 26px;
	padding: 0 2px;
	margin: 5px 5px 5px 10px;
}

input[type="text"] {
 background-color:#f5f5f5;
        color: #808080;
	width:100%;
        border-left: 4px solid #fff;
        border-top:0;
        border-bottom:0;
        border-right:0;
        font-size: 1em;
        height: 35px;
        float: left;
	padding-left: 5px;
}

input[type="text"]:hover{
	       border-left: 4px solid #0fb7fa;
}

textarea.box {

 background-color:#f5f5f5;
        color: #808080;
	width:100%;
        border-left: 4px solid #fff;
        border-top:0;
        border-bottom:0;
        border-right:0;
        font-size: 1em;
        height: 100px;
	padding-left: 5px;
}

textarea.box:hover{
	     border-left: 4px solid #0fb7fa;
}

input[type="radio"] {
cursor:pointer;
}
input[type="checkbox"] {
cursor:pointer;
}

#container input[type="text"]:focus {
            border-left: 4px solid #0e609d;
            background-color: #f1f1f1;
            color: #333;
        }

 #container textarea:focus {
            border-left: 4px solid #0e609d;
            background-color: #f1f1f1;
            color: #333;
        }

 #container input[type="submit"]:focus {
	border: solid 0px #333;
            color: #ffffff;
        }

 #container input[type="reset"]:focus {
	border: solid 0px #333;
            color: #ffffff;
        }

input:focus{
 outline:none;
}

select:focus{
 outline:none;
}

textarea:focus{
 outline:none;
}

#imAgreePanel {
    margin:0 auto;
    max-width: 500px;
	text-align: left;
	}

.button-send {
	padding: 5px 5px 5px 5px;
	border: solid 0px #333;
	cursor: pointer;
	display: inline-block;
	background-color: #0e609d;
	font-size: 1em;
	height: 45px;
	width: 100px;
	color: #ffffff;
	margin-right: 15px;
	margin-top: 10px;
	position:relative;

transition: all .6s ease;

}

.button-send:hover {
	color: #ffffff;
	border: solid 0px #0fb7fa;
	background-color: #0fb7fa;
}

#button {
	width:95%;
}

.flex-split {
	    flex-direction:row;
  flex-wrap: wrap;
  }

.sinistra .btn:hover{
  box-shadow: 20vw 0 0 #0fb7fa inset;
}

.btn{
	max-width: 100px;
	background-color: #0e609d;
	border: none;
    color: #fff;
    padding: 15px 18px;
    text-align: center;
    text-decoration: none;
    display: inline;
    font-size: 1.2em;
	cursor: pointer;
margin-right: 15px;
	margin-top: 10px;
	position:relative;
  
  transition: all .6s ease;
}

.btn:hover{
  color: #fff;
}

p:not(#foo) > input[type='radio'], /* Nasconde checkbox e radio button */
p:not(#foo) > input[type='checkbox'] {
 position: absolute;
 clip: rect(1px, 1px, 1px, 1px);
}


p:not(#foo) > input[type='radio'] + label,
p:not(#foo) > input[type='checkbox'] + label {
  margin: 0;/* Azzera i margini */
 padding: 10px 0 0px 40px; /* Crea spazio con il padding sinistro per ospitare l'immagine di sfondo */
 cursor: pointer; /* Imposta il cursore */
 background: url('start.png') left center no-repeat; /* Imposta lo sfondo iniziale per checkbox e radio button */
}

p:not(#foo) > input[type='radio']:checked + label { /*Modifica lo sfondo del radio button quando viene attivato */
 background-image: url('radiobutton.png');
}

p:not(#foo) > input[type='checkbox']:checked + label { /*Modifica lo sfondo del checkbox quando viene attivato */
 background-image: url('checkbox.png');


