/** FORM.CSS **/
.pt-30{padding-top:30px !important;}
.pb-30{padding-bottom:30px !important;}

.form .titolo h2 {
    font-size: 15px;
    border-bottom: 1px solid #00446b;
    margin: 10px 0;
    color: #00446b;
}


.form label {
    color: #262626;
    font-size: 10px;
    text-transform: uppercase; 
    position: absolute;
    top: 14px;
    cursor: text;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    transition: all .25s ease;
    font-weight: 700;
    left: 25px;
}

.form .campo {
    padding: 20px 16px 6px 9px;
    height: auto;
	font-size: 13px;
	outline: none;
	box-shadow: inset 1px 2px 0 rgba(0, 0, 0, 0.06);
	border: 1px solid #D9D9D9;
	overflow-x: hidden;
	margin: 7px 0;
}

.campo {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}


.form select.tendina {
    font-size: 11px;
    font-weight: 600;
    outline: none;
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    background-repeat: no-repeat;
    background-size: 6px 12px;
    background-position-y: center;
    background-position-x: calc( 100% - 10px );
    text-transform: uppercase;
    padding-left: 10px;
    color: #909090;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    padding: 20px 16px 6px 9px;
	width: 100%;
	margin: 7px 0;
}

.form select.tendina option {
    padding: 0px;
}


.form input[type="radio"] {
    width: auto;
    margin: 39px 5px 7px 5px;
}

.si-no  {
    font-size: 13px;
    font-weight: 600;
}


.form input:read-only { 
    border: 1px solid #ea2001;
}


.form input.campo[type=text]:disabled, .form input.campo[type=tel]:disabled, .form input.campo[type=email]:disabled {
    background: #ededed;
	color: #000000;
	font-weight: 600;
	border: 1px solid #00446b;
}


.form .upload_file {
    font-size: 13px;
    padding: 33px 0px 7px 7px;
	margin: 7px 0;
}

.form .file p {
    font-size: 13px;
	margin-bottom: 7px;
	padding-left: 10px;
	
}

.btn.button_general {
	background: none;
	border: 0;
	color: #fff;
	text-shadow: none;
	padding: 10px 20px;
	line-height: 1.6;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 13px;
	font-weight: 700;
	-webkit-transition: background-color .15s ease-out;
	transition: background-color .15s ease-out;
	border-width: 0;
	position: relative;
}

.btn.button_general::before {
    content: "";
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: skewX(-8deg);
    transform: skewX(-8deg);
    -webkit-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    z-index: -1;
	background-color: #00446b;
	width: auto;
}

.btn.button_general:hover::before,
.btn.button_general:focus::before, 
.btn.button_general:active::before {
	background-color: #a41a1b;
}