/*
form css
*/
/*--- form ---*/
input::-webkit-input-placeholder {
    font-family: 'Lato', sans-serif;
    font-size:20px;
    color: #acacac;
}

input:-moz-placeholder { /* Firefox 18- */
    font-family: 'Lato', sans-serif;
    font-size:20px;
    color: #acacac;
}

input::-moz-placeholder {  /* Firefox 19+ */
    font-family: 'Lato', sans-serif;
    font-size:20px;
    color: #acacac;
}

input:-ms-input-placeholder {
    font-family: 'Lato', sans-serif;
    font-size:20px;
    color: #acacac;
}
textarea::-webkit-input-placeholder {
    font-family: 'Lato', sans-serif;
    font-size:20px;
    color: #acacac;
}

textarea:-moz-placeholder { /* Firefox 18- */
    font-family: 'Lato', sans-serif;
    font-size:20px;
    color: #acacac;
}

textarea::-moz-placeholder {  /* Firefox 19+ */
    font-family: 'Lato', sans-serif;
    font-size:20px;
    color: #acacac;
}

textarea:-ms-input-placeholder {
    font-family: 'Lato', sans-serif;
    font-size:20px;
    color: #acacac;
}

input:focus::-webkit-input-placeholder {
    transition: opacity 0.5s ease-out;
    opacity: 0;
}
input:focus::-moz-placeholder {
    transition: opacity 0.5s ease-out;
    opacity: 0;
}
input:focus:-moz-placeholder {
    transition: opacity 0.5s ease-out;
    opacity: 0;
}

form {
    margin:0;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-font-smoothing: inherit;
    border: none;
    background: transparent;
    line-height: normal;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

label {
    cursor: text;
    margin: 0;
    padding: 0;
    left: 15px;
    top: 9px;
    position: absolute;
    color: #aaa;
    transition: all 0.3s ease;
}

label.active {
    top: -3px;
    font-size: 12px;
}

label.active.focusIn {
    color: #aaa;
}

select {
    background-image:url(../../assets/images/form/dropdown-arrow.svg);
    background-position:95% center;
    background-size: 25px;
    background-repeat: no-repeat;
    -moz-appearance: none;
    cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

.form-001-container {
    position: relative;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.form-001-content {
    position: relative;
    margin: 0 0 0 0;
    padding: 20px 0 20px 0;
}

.form-001-content:after {
    clear: both;
    content: "";
    display: table;
}

small {
    font-family: 'Lato', sans-serif;
    font-size:12px;
}

small.bold {
    font-family: 'Lato', sans-serif;
    font-size:12px;
}

.has-error .error {
    box-shadow: 0 0 0 1px #cc0000;
}

.field-input select {
    color:#ddd;
}

.form-error {
    font-family: 'Lato', sans-serif;
    font-size:14px;
    font-weight:700;
    line-height: 16px;
    text-align: left;
    color:#ff0000;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    opacity:0;
    transform: scale(0.5);
    position: relative;
    top: -7px;
}

.fieldset .form-error {
    top: 0;
}

.alert {
    position: fixed;
    left: 50%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 180px;
    margin: -90px 0 0 -250px;
    padding: 50px 50px 50px 50px;
    background-color: rgba(255,255,255,1);
    z-index: 70999;
}

.alert a.close {
    position: absolute;
    top: 15px;
    right: 15px;
    left: auto;
    bottom: auto;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 71000;
}

.alert p {
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 18px;
    line-height: 25px;
    font-family: 'Lato', sans-serif;
    z-index: 71000;
}

.alert-form-error {
    position: fixed;
    bottom:-100px;
    left:0;
    background-color:#cc0000;
    color:#fff;
    font-size:18px;
    font-weight: 400;
    line-height:100px;
    text-align: center;
    width:100%;
    height: 100px;
    z-index: 77;
}

.fieldset {
    position: relative;
    width: 100%;
    clear: both;
    padding: 0 8px;
    box-sizing: border-box;
    line-height: 20px;
}

.field {
    position: relative;
    width: 100%;
    float: left;
    padding: 5px 0;
    box-sizing: border-box;
}

.field.no-gap {
    padding: 0 0;
}

.field.no-shadow {
    padding: 7px 0 0 0;
}

.field-half {
    width: 50%;
}

@media (min-width: 50px) {
    .field-col2 {
        width: 70%;
    }
}

@media (min-width: 750px) {
    .field-col1 {
        width: 30%;
    }
}

@media (min-width: 750px) {
    .field-col3-8 {
        width: 37.5%;
    }
}

@media (min-width: 50px) {
    .field-col3-4 {
        width: 25%;
    }
}

.field-input {
    border-left: 5px solid #e9e9e9;
    background-color: #e9e9e9;
    color: #353535;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 0 8px;
    word-break: normal;
    outline: none;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
}

.field-input.required {
    border-left: 5px solid #ffa200;
}

.wd-70 {
    width: 70%;
}

.wd-60 {
    width: 60%;
}

.wd-50 {
    width: 50%;
}

.wd-40 {
    width: 40%;
}

.wd-30 {
    width: 30%;
}

.wd-response {
    width: 36%;
    max-width: 90px;
}

.field-input.border-only-left {

}

.btn-disabled {
    cursor: default;
    background: #c8c8c8;
    box-shadow: none;
}

.input-btn {
    width: auto;
    white-space: nowrap;
    display: block;
    padding: 5px 27px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    position: relative;
    background-color: #ffa200;
    color: #fff;
    outline: none;
    height: 50px;
    line-height: 40px;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
}

.input-btn:hover {
    background-color: #00ab2c;
}

.input-btn.bg-2 {
    background-color: #ffa200;
}

.input-btn.bg-2:hover {
    background-color: #00ab2c;
}

.input-btn.border-full {
    width: 100%;
}

.input-btn.btn-adjacent {
    padding: 5px 20px 5px 20px;
    outline: none;
}

.btn-right {
    margin: 0 0 0 auto;
}

button:disabled {
    opacity:0.5;
    cursor: default;
}

.input-btn.btn-inline {
    padding: 10px 30px;
}

.content-box {
    background: #e9e9e9;
    height: 160px;
}

textarea {
    width: 100%;
    height: 160px;
    padding: 5px 8px;
    outline: none;
    resize: none;
}

.content-box.pad-l15 {
    padding-left:15px;
}


a.link-informativa {
    position: relative;
    width: 100%;
    display: inline;
    padding: 0 0 0 0;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    line-height: 50px;
    text-transform: uppercase;
    text-align: left;
    color: #333;
    text-decoration: underline;
}

a.link-informativa:hover {
    text-decoration: none;
}

.input-checkbox,
.input-radio {
    width: 18px;
    height: 18px;
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
    vertical-align: -5px;
    outline: 0;
}

.input-radio {
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: -3px;
}

.input-checkbox:checked,
.input-radio:checked {
    border: none;
    box-shadow: 0 0 0 10px #525252 inset;
}

.input-checkbox,
.input-radio {
    border-color: #e9e9e9;
}

.input-checkbox {
    border-left: 5px solid #ffa200;
    background-color: #e9e9e9;
}

.input-checkbox:hover,
.input-radio:hover {
}

.input-checkbox:checked:after,
.input-radio:checked:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}

.input-radio:checked:after {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    transition: all 0.2s ease-in-out 0.1s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.input-radio:checked:after {
    width: 4px;
    height: 4px;
    margin-left: -2px;
    margin-top: -2px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.input-checkbox:after {
    width: 10px;
    height: 8px;
    margin-left: -5px;
    margin-top: -4px;
    background-image: url(../../assets/images/form/checkbox-tick.svg);
    background-size: 10px 8px;
    background-repeat: no-repeat;
    background-position: center;
}

.input-checkbox:checked:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.radio-label,
.checkbox-label {
    cursor: pointer;
    width: 100%;
}

.radio-label {
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
}

.checkbox-label {

}

.login-label {
    margin-right:5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.label-radio-box {
    margin:0 0 0 30px;
    font-family: 'Lato', sans-serif;
    font-size:14px;
    font-weight:300;
    line-height: 16px;
    text-align: left;
}

.label-radio-box span {
    font-weight:700;
}

.text-caption {
    position: relative;
    display: block;
    margin:0 0 0 15px;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size:14px;
    font-weight:300;
    line-height: 16px;
}

.text-mini {
    position: relative;
    display: block;
    margin:0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size:14px;
    font-weight:300;
    line-height: 16px;
}

.text-med {
    position: relative;
    margin: 0 0 0 0;
    padding: 0;
    clear: both;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
}

.text-label {
    position: relative;
    margin: 0 0 0 0;
    padding: 0;
    clear: both;
    font-family: 'Lato', sans-serif;
    font-size:12px;
    line-height: 18px;
    text-align: left;
}

.text-label b {
    font-family: 'Lato', sans-serif;
}

.check-captcha {
    position: relative;
    margin:0 10px 0 0;
}

.check-captcha span {
    position: relative;
    margin:0 10px 0 0;
    padding:0 0 0 0;
    float: left;
    line-height: 50px;
}

.contatti-invio {
    position: relative;
    padding: 30px 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color:#2d2d2d;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}

.form-upload {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

@media only screen and (max-width: 1399px) {

    .field-half {
        width: 100%;
    }

}

@media only screen and (max-width: 375px) {

    [class*="wd-"] {
        width:100%;
    }

    .wd-response {
        width: 30%;
    }

    .checkbox,
    .check-captcha {
        float: none;
        width: 100%;
    }

}

