/*ALTRI */
body {
	margin: 0px 0px 0px 0px;
	font-family: 'PT Sans', sans-serif;
	color: #101010;
	line-height: 1.4;
	font-size: 16px;
	font-weight: 400;
}
body strong {
    font-weight: bold;
}
body h1 {
	font-weight:normal;
	line-height: 1.4;
	font-size: 28px;
	font-weight:bold;
}
body h2 {
	font-weight:normal;
	line-height: 1.4;
	font-size: 20px;
	margin-bottom:2px;
}
body h3 {
	font-weight:normal;
	line-height: 1.4;
	font-size: 16px;
}
body h4 {
	font-weight:normal;
	line-height: 1.4;
	font-size: 12px;
}


/*FORM */

input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color:brown;
    color: white;
    padding: 20px 20px;
    margin: 18px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
	font-size:20px;
	font-weight:bold;
}

input[type=submit]:hover {
    background-color: #336600;
}

/*EFFETTO ON FOCUS */

input[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  border: 1px solid #DDDDDD;
}
 
input[type=text]:focus, textarea:focus {
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  border: 1px solid rgba(81, 203, 238, 1);
}

/*Tabella Ricerca */
#tabella-ricerca {
	padding:20px 20px 0px 20px;
	border:1px solid #ccc;
	border-radius:10px;
	background-color:#ffffff;
}
#tabella-ricerca i {
	color:brown;
	vertical-align:middle;
}
#tabella-risultato {
	padding:20px;
	border:1px solid #ccc;
	border-radius:10px;
	background-color:#ffffff;
}
#tabella-risultato i {
	vertical-align:middle;
}