/**
 * This file should get overwritten if Method 1 is used. If Method 2 is chosen,
 * remove this comment and start adding your styles to this file.
 */

/* CSS Document */
@charset "utf-8";

/*@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');*/

:root {
    --cDBlu: #00175a;   /*Blu profondo*/
    --cCiano: #006fcf;  /*Blu brillante*/
    --cLGray: #c8c9c7;  /*Grigio 3*/
    --cGray: #75787B;   /*Grigio 9*/
    --cDGray: #63666a;  /*Grigio 10*/
    --cBlack: #000000;
    --cWhite: #FFFFFF;  /*Bianco*/
}


/* SYSTEM */

.wide {
    margin: 0 -9999px;
    padding: 0px 9999px;
    position: relative;
/*    background-color: #FFFFFF;*/
}

.wide.odd { background-color: #00175a; }

.wide.even { background-color: #006fcf; }

.padding-vertical { padding-bottom: 1em; padding-top: 1em; }
.padding-vertical2 { padding-bottom: 2em; padding-top: 2em; }
.padding-vertical3 { padding-bottom: 3em; padding-top: 3em; }
.padding-vertical4 { padding-bottom: 4em; padding-top: 4em; }
.padding-left { padding-left: 15px; }
.padding-right { padding-right: 15px; }
.padding-top { padding-top: 1em; }
.padding-bottom { padding-bottom: 1em; }
.padding-top2 { padding-top: 2em; }
.padding-bottom2 { padding-bottom: 2em; }
.padding-top3 { padding-top: 3em; }
.padding-bottom3 { padding-bottom: 3em; }
.padding-top4 { padding-top: 4em; }
.padding-bottom4 { padding-bottom: 4em; }
.nopadding-top { padding-top: 0;}
.nopadding-bottom { padding-bottom: 0;}
.margin-top { margin-top: 1em; }
.margin-bottom { margin-bottom: 1em; }
.margin-top2 { margin-top: 2em; }
.margin-bottom2 { margin-bottom: 2em; }
.nomargin { margin: 0;}
.nomargin-top { margin-top: 0;}
.nomargin-bottom { margin-bottom: 0;}
.vh-100 { height: 100vh; }
.h-100 { height: 100%; }
.h-75 { height: 75%; }
.w-100 { width: 100%; }
.mx-auto { margin: auto 0; }
.m-auto { margin: auto auto; }
.m-auto-i { margin: auto auto !important; }
.my-auto { margin: 0 auto; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.alpha { padding-left: 0px; }
.omega { padding-right: 0px; }

.table { margin: 0; padding: 1em 0; }

.grid-flex {
    width: 100%;
    float: left;
    position: relative;
    display: block;
}

.row-flex  {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
/*  width: 100%;*/
}

/*.d-flex-column  {   */
/*  display: flex;*/
/*  flex-direction: column; */
/*}*/

/*.sm-d-flexr-row  { flex-direction: row-reverse; }*/
/*.sm-d-flexr-column { flex-direction: column-reverse; }*/

.row-full {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
}

#page { 
    overflow: hidden;
/*  background-color: #003c84;
	-webkit-appearance: none;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
  box-shadow: 5px 5px 20px #666666;
  margin: 50px 0 20px;*/
}

/* DEFAULT */

body {
    background: none no-repeat scroll 0 0 #FFFFFF;
    font: 21px/1.4 Helvetica,Arial, sans-serif;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-weight: 300;
    color: #00175a;
    margin: 0px 0px;
}

h1, h2, h3, h4, h5, h6, p { 
    font-family: Helvetica,Arial, sans-serif;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #00175a;
    line-height: 1.2;
}

h1, .h1 { font-weight: 100; font-size: 3.2em; font-size: 3em; line-height: 1.2; } /*75*/

h1.big, .h1.big { font-weight: 100; font-size: 12em; font-size: 16em; line-height: 0.6 } /*400*/

h2, .h2 { font-weight: 300; font-size: 1.8em; line-height: 1.2; } /*50*/

h3, .h3 { font-weight: 300; font-size: 1.6em; line-height: 1.6; } /*40*/

h4, .h4 { font-weight: 300;  font-size: 1em; line-height: 1.6; } /*25*/

h5, .h5 { font-weight: 300;  font-size: 0.9em; line-height: 1.6; } /*20*/

h6, .h6 { font-weight: 300;  font-size: 0.8em; line-height: 1.6; } /*16*/

p, ul { 
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    color: #00175a;
    line-height: 1.6;
    font-weight: 300;
    margin-top: 0px;
}


ul.bullet-image {  list-style: outside url("../images/arrow.png") none; padding-left: 3em; }
ul.list-unstyled {  list-style: outside none none; padding-left: 2em; }
ul.list-bullet { padding-left: 1.5em; list-style: outside none none;  }
ul.list-bullet li { display: block; margin-bottom: 0.3em; }
ul.list-bullet li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e258";
    font-family: 'Glyphicons Halflings';
    font-size: 1em;
    float: left;
    margin-top: 4px;
    margin-left: -1.1em;
    color: #005573;
}

p.big { font-size: 1.3em; }

.lheight { line-height: 1.3; }

.thin { font-weight: 100!important; }
.extra-light { font-weight: 200!important; }
.light { font-weight: 300!important; }
.normal { font-weight: 400!important; }
.medium { font-weight: 500!important; }
.semi-bold { font-weight: 600!important; }
.bold { font-weight: 700!important; }
.extra-bold { font-weight: 800!important; }
.ultra-bold { font-weight: 900!important; }


/* STYLE */

a, img { border: 0 none; transition: all 0.25s ease-in-out 0s; }

a:link, a:visited, li a:link, li a:visited { color: #75787B; text-decoration: none; }

a:hover, a:focus, li a:hover { color: var(--cDCiano); outline: none; }

a:active, li a:active, a.active, li a.active { color: var(--cDCiano);  }

hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 5px solid #FFFFFF;
  width: 4em;
  text-align: left;
  display: inline-block;
}


.marker, .form-required, .request { color: var(--cLBlack); display: none; }

.evidenza { color: #FFFFFF; }
.DBlu { color: #00175a; }
.Ciano { color: #006fcf; }
.LGray { color: #c8c9c7; }
.Gray { color: #75787B; }
.DGray { color: #63666a; }
.White { color: #FFFFFF; }
.Black, .CText { color: #000000; }

.fprimary { font-family: 'Helvetica Neue', sans-serif; }

.bgDBlu { background-color: #00175a; }
.bgCiano { background-color: #006fcf; }
.bgLGray { background-color: #c8c9c7; }
.bgGray { background-color: #75787B; }
.bgDGray { background-color: #63666a; }
.bgWhite { background-color: #FFFFFF; }
.bgBlack { background-color: #000000; }


.gradCB {
  background: #006fcf/* Old Browsers */
  background: -moz-linear-gradient(left, #006fcf 0%, #006fcf 50%, #00175a 50%, #00175a 100%); /* FF3.6+ */
  background: -webkit-gradient(left top, right top, color-stop(0%, #006fcf), color-stop(50%, #006fcf), color-stop(50%, #00175a), color-stop(100%, #00175a));/* Chrome, Safari4+ */
  background: -webkit-linear-gradient(left, #006fcf 0%, #006fcf 50%, #00175a 50%, #00175a 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #006fcf 0%, #006fcf 50%, #00175a 50%, #00175a 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #006fcf 0%, #006fcf 50%, #00175a 50%, #00175a 100%); /* IE 10+ */
  background: linear-gradient(to right, #006fcf 0%, #006fcf 50%, #00175a 50%, #00175a 100%);/* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006fcf', endColorstr='#00175a', GradientType=1 );/* IE6-9 */
}

.gradCW {
  background: #006fcf;/* Old Browsers */
  background: -moz-linear-gradient(left, #006fcf 0%, #006fcf 50%, #FFFFFF 50%, #FFFFFF 100%); /* FF3.6+ */
  background: -webkit-gradient(left top, right top, color-stop(0%, #006fcf), color-stop(50%, #006fcf), color-stop(50%, #FFFFFF), color-stop(100%, #FFFFFF));/* Chrome, Safari4+ */
  background: -webkit-linear-gradient(left, #006fcf 0%, #006fcf 50%, #FFFFFF 50%, #FFFFFF 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, #006fcf 0%, #006fcf 50%, #FFFFFF 50%, #FFFFFF 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, #006fcf 0%, #006fcf 50%, #FFFFFF 50%, #FFFFFF 100%); /* IE 10+ */
  background: linear-gradient(to right, #006fcf 0%, #006fcf 50%, #FFFFFF 50%, #FFFFFF 100%);/* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006fcf', endColorstr='#FFFFFF', GradientType=1 );/* IE6-9 */
}

strong,b { font-weight: 700; }

span.sup { font-size: 70%; position: relative; top: -0.5em; }

sub { font-size: 70%; position: relative; top: 2px; }

.btn { border: none; padding: 0.6em 1em 0.8em; }

.btn,
.webform-client-form .form-actions .form-submit,
.webform-client-form .form-actions .webform-next.form-submit,
.webform-client-form .form-actions .webform-previous.form-submit { 
  border: none; 
  background: #00175a !important;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1em; 
  font-weight: 400;
  color: #FFFFFF !important;
  padding: 0.5em 0.5em 0.5em;
  padding: 0.3em 1em;
  -webkit-border-radius: 0px; 
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-decoration: none; 
  transition: all 0.25s ease-in-out 0s;
  outline: none;
  text-shadow: none;
  text-transform: none;
}

.btn:hover,
.webform-client-form .form-actions .form-submit:hover,
.webform-client-form .form-actions .webform-next.form-submit:hover,
.webform-client-form .form-actions .webform-previous.form-submit:hover {
/*  background: #006fcf !important;*/
  color: #006fcf !important;
}


.btn .icon-custom:before {  
  transition: all 0.25s ease-in-out 0s;
/*  color: #96d915;*/
  font-size: 1em;
  font-weight: 400;
  position: relative;
/*  top: 2px;*/
}

/*.btn:hover,*/
/*.btn:hover .icon-custom:before { color: #006fcf !important; }*/

.btn .icon-custom:before { color: #FFFFFF !important; }
.btn:hover .icon-custom:before { color: #006fcf !important; }


.gradient-hor { 
    background: #FFF; /* For browsers that do not support gradients */    
    background: -webkit-linear-gradient(left, #FFF, #000); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #FFF, #000); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #FFF, #000); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #FFF , #000); /* Standard syntax (must be last) */
}


.border { border: 0px solid #75787B; }



/*SCROLL-TO-TOP*/
.scroll-to-top {
    position: fixed;
    display: none;
    text-align: center;
    color: var(--cGreen);
    background: none;
    line-height: 1;
    z-index: 98;
    background:#FFFFFF;
    padding: 0;
    right: 0.5em;
    bottom: 0.5em;
    width: 2em;
    height: 2em;
    border-radius: 50px;
    transition: all 0.25s ease-in-out 0s;
}
.scroll-to-top a { color: var(--cGreen); }
.scroll-to-top a:focus, .scroll-to-top a:hover { #00175a; }
.scroll-to-top:hover {    -webkit-filter: invert(.2);  filter: invert(.2); }
.scroll-to-top i { color: var(--cGreen); font-size: 1em; line-height: 0; }


/*STRUCTURE*/

.structure { max-width: 2000px; }
/*.structure .container-fluid.grid { padding-left: 0; padding-right: 0; }*/
.layout  { border: 0px solid red; width: 100%; }
.layout > .container { border: 0px solid yellow; width: 100%; max-width: 2000px; }

/*START*/
/*.start .layout { padding-top: 5em; }*/

.start .Caption { padding-top: 0em; } 
.start .h1 { font-size: 2.8em; } 
.start .h1.big { font-size: 12em; text-align: right; }
.start .btn { font-size: 0.9em; white-space: unset; }

/*FIX*/
.start.row-flex.scroll,
.sondaggio.row-flex.scroll,
.sondaggio .layout.row-flex.scroll,  
.inviato.row-flex.scroll { display: block; }

/*SONDAGGIO*/

.sondaggio .h-custom {  height: 95%; height: 90%; height: 90%; } 
.sondaggio .calign-start { align-content: start; }
.sondaggio .calign-stretch { align-content: stretch; }
.sondaggio .calign-center { align-content: center; }

.sondaggio .region-content { border: 0px solid purple; width: 100%; }
.sondaggio .container-step { border: 0px solid green; width: 100%; }
.sondaggio .container-step > .panel-body.row-flex { min-height: 60vh; height: auto; }

/*.sondaggio .colsx-step .webform-component-markup { padding-top: 2em; }*/

.sondaggio .container-step .nstep {
    margin-left: 1em;
    margin-left: 3em;
    margin-top: 1em;
    margin-bottom: 1em;
    width: 4em;
    height: 4em;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    position: relative;
/*    position: fixed; top: 2em; */
}

      .sondaggio .container-step .nstep.fixed { position: fixed; top: 1em; margin-top: 1em; }

.sondaggio .container-step .nstep p {
  font-size: 2em;
  color: #FFFFFF;
  font-weight: 100;
  position: relative;
  left: 0.2em;
  top: 0.45em;
  line-height: 1;
}
.sondaggio .container-step .nstep p span { color:  #00175a; } 


.sondaggio .container-step .cstep .question { border: 0px solid red; }
.sondaggio .container-step .step.campo-custom { margin: 0 0em 1em; padding: 0; margin: auto; }

.sondaggio .container-step .image-big,
.sondaggio .container-step .image-small { text-align: center; }
.sondaggio .container-step .image-big { display: block; }
.sondaggio .container-step .image-small { display: none; }
.sondaggio .container-step .COLSX .image-small { display: none; }

.sondaggio .container-step .text-custom { margin-left: auto !important; margin-right: auto !important;  }
.sondaggio .container-step .text-custom.other-custom { margin-top: 5px; position: relative; top: -1em; top: 0em; }



.sondaggio .container-end .cstep-end .calign-center { align-content: start !important; }

.sondaggio .container-end { padding-top: 2em; }
.sondaggio .container-end .box-corpo { padding: 1.5em 1em; }

.sondaggio .container-end p { line-height: 1.2; }
.sondaggio .container-end p.title { margin: 0 0 1em; }
.sondaggio .container-end p.h5 { margin-bottom: 1em; }
.sondaggio .container-end p.image-ilmio img { max-width: 40%; }
.sondaggio .container-end p.image-footer img { max-width: 40%; position: relative; left: -25px; left: 0px; }

.sondaggio .container-end .image-logo { display: none; }
.sondaggio .container-end .colbt-step { margin-top: 4em; }


.sondaggio-end .webform-client-form .form-actions { position: absolute; bottom: 20%; bottom: 24%; width: 100%; right: 5%; left: unset;  }
/*.sondaggio.row-flex.scroll .webform-client-form .form-actions { position: relative; bottom: 0em; }*/

.sondaggio.scroll .webform-client-form .form-actions .webform-next.form-submit { position: relative; bottom: 2em; bottom: 0em; bottom: 2em; }
/*.sondaggio.scroll .container-step .text-custom.other-custom { margin-bottom: 4em; }*/


.sondaggio-end .webform-client-form .form-actions .webform-next.form-submit { float: right; }

/*INVIATO*/
.inviato .Caption .h2 { margin-top: 0em; }

/*FOOTER*/
.footer.container { display: none; }

/*  WEBFORM  */
/*.alert.alert-dismissible.messages { display: none; }*/

.alert-success {
    color: #FFFFFF;
    background-color: #75787B;
    border-color: #FFFFFF;
    font-weight: 300;
    position: absolute;
/*    bottom: 0;*/
    right: 0;
    position: fixed;
}
.alert-success .close { color: #FFFFFF; opacity: 1; }

div.error, table tr.error {
    background-color: #FFFFFF;
    color: var(--cLPurple);
    border-color: var(--cDPurple);
    font-weight: 300;
}


.form-group.error input, .form-group.has-error input, .form-group.error textarea, .form-group.has-error textarea, .form-group.error select, .form-group.has-error select, .form-group.error .uneditable-input, .form-group.has-error .uneditable-input { color: #FFFFFF; border: 0px solid #75787B; }

.form-group.error label, .form-group.has-error label, .form-group.error .control-label, .form-group.has-error .control-label {
    color: var(--cLPurple);
    font-weight: 300;
}


.webform-client-form p,
.webform-client-form label {  }

.webform-component-fieldset.COLSX,
.webform-component-fieldset.COLDX,
.webform-component,
.webform-component input,
.webform-component select,
.webform-component textarea,
.webform-client-form fieldset,
.webform-component label,
.webform-component .description
.webform-client-form .form-actions {
    font-family: 'Helvetica Neue', sans-serif;
    display: inline;
    float: left;
    margin: 0.5em 0px;
    margin: 1em 0 0;
    position: relative;
    font-weight: 300;
    font-size: 0.9em; 
}

.webform-component label,
.webform-component .description,
.webform-component .help-block,
.webform-component label em {
    font-family: 'Helvetica Neue', sans-serif;
    display: inline;
    float: left;
    margin: 0 0 1em;
    font-size: 1em; 
    text-transform: none;
    position: relative;
    color: #FFFFFF;
    font-weight: 300;
    width: 100%;
    line-height: 1.15;
    line-height: 1.25;
}

.webform-component .description,
.webform-component .help-block,
.webform-component label em { float: unset; text-align: center; font-size: 80%; }

.webform-component input,
.webform-component select,
.webform-component textarea,
.webform-client-form fieldset {
    border: 0px solid #75787B;
    border-bottom: 1px solid #75787B;
    background:  none no-repeat scroll 0 0 #FFFFFF;
    display: inline;
    float: left;
    font-size: 1em; 
    font-weight: 300;
    margin: 0;
    position: relative;
    padding: 0.5em 0.5em 0.5em;
    height: auto;
    color: #75787B; 
    box-shadow: none;
}

.webform-client-form fieldset { border: 0px solid #75787B; padding: 0 0.5em; }

.webform-component-fieldset.COLDX { margin-top: 0; }


.webform-component-fieldset.COLSX,
.webform-component-fieldset.COLDX { padding: 0; margin: 0;}

.webform-component textarea { resize: none; }

.webform-component .form-type-checkbox,
.webform-component .form-type-radio {
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 0;
    margin-top: 5px;
    width: 50%;
    float: left;
}

.webform-component .form-type-checkbox label,
.webform-component .form-type-checkbox .description,
.webform-component .form-type-radio label,
.webform-component .form-type-radio .description {
    text-transform: none;
    font-size: 1em; 
    color: #FFFFFF;
    font-weight: 300;
    line-height: 1.15;
    width: 100%;
    margin: 0.2em;
    margin: 0.4em 0.5em;
    padding-left: 1.5em;
}

.webform-component .form-type-checkbox input,
.webform-component .form-type-radio input {
    background-color: transparent;
    margin: 0.2em 0;
    margin-left: -20px;
    margin: 0.1em 0 0.2em -25px;
    margin-left: -20px;
    width: auto; 

    margin: 0;
    margin-left: -1.5em;
    width: 1em;
    height: 1em;
}


.campo-custom.campo-custom > .control-label { text-align: center; }

.webform-component .form-type-checkbox,
.webform-component .form-type-radio {  width: 100%; }

.webform-component.check-list .form-type-checkbox,
.webform-component.radio-list .form-type-radio { width: 100%; padding: 0 0.5em; }

.webform-component.radio-center .form-type-checkbox,
.webform-component.radio-center .form-type-radio { width: 50%; padding: 0 1em; width: 48%; }

.webform-component.radio-center .form-type-checkbox label,
.webform-component.radio-center .form-type-radio label { text-align: left; }

.webform-component.radio-center .form-radios .form-type-radio:nth-child(odd) label { text-align: right; }


.webform-component .form-control { color: #00175a; }
.webform-component .form-control::-webkit-input-placeholder { color: #75787B;  } /* Chrome/Opera/Safari */
.webform-component .form-control::-moz-placeholder { color: #75787B;   } /* Firefox 19+ */ 
.webform-component .form-control:-ms-input-placeholder { color: #75787B;   } /* IE 10+ */ 
.webform-component .form-control:-moz-placeholder { color: #75787B;   } /* Firefox 18 */


.webform-component.campoform { margin: 0.5em 0 0; font-size: 0.7em; padding: 0 7px; font-weight: 400;} 

.webform-component.campoform input,
.webform-component.campoform select,
.webform-component.campoform textarea,
.webform-client-form fieldset { border-bottom: 1px solid #75787B;  background: none; border-radius: 0; font-weight: 400; }

.webform-component.campoform .form-control { color: #00175a; }
.webform-component.campoform .form-control::-webkit-input-placeholder { color: #75787B;  } 
.webform-component.campoform .form-control::-moz-placeholder { color: #75787B;   }
.webform-component.campoform .form-control:-ms-input-placeholder { color: #75787B;   }
.webform-component.campoform .form-control:-moz-placeholder { color: #75787B;   } 

.webform-client-form fieldset { background: none; border: none; box-shadow: none; margin: 0; }
.webform-client-form .panel-body { padding: 0; }

.webform-component.webform-component-markup { width: 100%; margin-top: 0; padding: 0 0px; }

.container-visual .webform-component.webform-component-markup { padding: 0px; }


.webform-component.campoform label,
.webform-component.campoform .description {
    color: #75787B;
}

.webform-component-markup .campi { font-weight: 300; font-size: 0.6em; padding: 15px 15px 0; }

.webform-component.privacy .form-type-checkbox, 
.webform-component.privacy .form-type-radio { width: 100%; }

.webform-component.privacy { margin: 0.5em 0 0 }
.webform-component.privacy a  { color: #006fcf; }
.webform-component.privacy .control-label { text-transform: none; font-size: 0.6em; line-height: 1.4; font-weight: 400; color: #00175a; }


.webform-client-form.webform-client-form-87 { float: left; position: relative; width: 100%; }

.webform-client-form .form-actions { 
/*  position: relative; */
/*  width: 100%;*/
  position: absolute;
  bottom: -1em;
  bottom: 0em;
  left: 0;
  width: 50%;
  width: 45%;


  bottom: 2em;
/*  position: relative; bottom: 0em;*/
}




.webform-client-form .form-actions .form-submit,
.webform-client-form .form-actions .webform-next.form-submit,
.webform-client-form .form-actions .webform-previous.form-submit { 
  padding: 0.3em 1em;

/*  position: absolute;*/
/*  top: -6em;*/
/*  top: -3em;*/
/*  right: 0;*/
/*  margin: 0;*/
  width: auto;
  position: relative;
  float: right;
/*  bottom: 0;*/
/*  left: 27vw;*/
/*  left: 30%;*/
  left: 0;
  font-size: 0.9em;
}

.webform-client-form .form-actions .webform-next.form-submit { }

.webform-client-form .form-actions .webform-next.form-submit:hover {  }

.webform-client-form .form-actions .webform-previous { display: none; }



.webform-client-form .form-actions .form-submit.webform-submit { 
  color: #FFFFFF !important;
  background-color: #006fcf !important;
  position: relative;
  margin-top: 0;
  top: 0;
}

.webform-client-form .form-actions .form-submit.webform-submit:hover {   color: #FFFFFF !important; background-color: #00175a !important; }


.webform-client-form .form-actions .form-submit.webform-submit .icon-custom:before { color: #FFFFFF !important; }
.webform-client-form .form-actions .form-submit.webform-submit:hover .icon-custom:before { color: #c8c9c7 !important; }





/*==================================================
=            Bootstrap 3 Media Queries             =
==================================================*/

.img-responsive { display: inline-block; }


    /*==========  Mobile First Method  ==========*/

    /* Custom, iPhone Retina */ 
    @media only screen and (min-width : 300px) {

        body { font-size: 21px; }

    }

    /* Extra Small Devices, Phones */ 
    @media only screen and (min-width : 480px) {

        body { font-size: 22px; }
    }

    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {

        body { font-size: 23px; }

      /*START*/
      .start .h1 { font-size: 1.7em; } 
      .start .h1.big { font-size: 9em; } 
      .start .btn { font-size: 0.7em; }

      /*SONDAGGIO*/
      .sondaggio .container-end .col-sm-offset-1 { margin-left: 8.33333333% !important; }

    }

    /* Medium Devices, Desktops */
    @media only screen and (min-width : 992px) {

        body { font-size: 24px; }

      /*START*/
      .start .h1 { font-size: 1.9em; } 
      .start .h1.big { font-size: 11em; } 
      .start .btn { font-size: 0.9em; }

      .start .COLDX { margin-top: 2em; }

      /*SONDAGGIO*/
      .sondaggio .container-end .col-md-offset-1 { margin-left: 8.33333333% !important; margin-left: 1% !important; margin-right: 1% !important; }
      .sondaggio .container-end .col-md-5 { width: 41.66666667%; width: 48%; border: 0px solid red;  }

      .sondaggio .container-step .webform-component-fieldset.COLDX { position: relative; top: -3em; }
      .sondaggio .container-end .webform-component-fieldset.COLDX { position: relative; top: 0; }

      /*WEBFORM*/
      .webform-component.check-list .form-type-checkbox,
      .webform-component.radio-list .form-type-radio { padding-left: 30%; padding-left: 35%; }

      .webform-component.check-list.check-list-custom .form-type-checkbox,
      .webform-component.radio-list.check-list-custom .form-type-radio { padding-left: 5%; width: 50%; }

      .webform-component.check-list-full .form-type-checkbox,
      .webform-component.radio-list-full .form-type-radio { padding-left: 10%; }


    }

    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1200px) {

       body { font-size: 25px; }

      /*START*/
      .start .h1 { font-size: 2.2em; } 
      .start .h1.big { font-size: 11em; } 

      /*SONDAGGIO*/
      .inviato .COLSX .col-lg-10,
      .sondaggio .container-step .col-lg-10 { width: 100%; }
      .sondaggio .container-end .col-lg-offset-1 { margin-left: 8.33333333% !important; margin-left: 7.5% !important; margin-right: 0% !important;  }
      .sondaggio .container-end .col-lg-4 { width: 33.33333333%; width: 40%; border: 0px solid red; }

      /*WEBFORM*/
      .webform-component.radio-inline .form-type-checkbox,
      .webform-component.radio-inline .form-type-radio { width: 25%; padding: 0 0.5em; }

      .webform-component.radio-inline5 .form-type-checkbox,
      .webform-component.radio-inline5 .form-type-radio { width: 20%;  }


      .webform-component.radio-inline .form-type-checkbox label, 
      .webform-component.radio-inline .form-type-checkbox .description, 
      .webform-component.radio-inline .form-type-radio label, 
      .webform-component.radio-inline .form-type-radio .description {
          margin: 0;
          padding: 0.5em 0 0;
          top: 0.5em;
          width: 100%;
          display: block;
          position: relative;
          text-align: center;
      }

      .webform-component.radio-inline .form-type-checkbox input, 
      .webform-component.radio-inline .form-type-radio input { display: block; position: relative; width: 100%; margin: 0 auto; top: -0.5em; 
        position: absolute;
        left: 40%;
        height: 1em;
        width: 1em;
        top: -1em;
      }

      .webform-component.check-list.check-list-custom .form-type-checkbox,
      .webform-component.radio-list.check-list-custom .form-type-radio { padding-left: 35%; width: 100%; }

      .webform-component.check-list-full .form-type-checkbox,
      .webform-component.radio-list-full .form-type-radio { padding-left: 20%; padding-left: 10%; }

      .webform-client-form .form-actions .form-submit,
      .webform-client-form .form-actions .webform-next.form-submit,
      .webform-client-form .form-actions .webform-previous.form-submit { bottom: 1em; bottom: 2em; }
      .sondaggio.scroll .webform-client-form .form-actions .webform-next.form-submit { bottom: 3em; bottom: 6em; }

    }


    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1440px) {

      /*START*/
      .start .h1 { font-size: 2.7em; } 
      .start .h1.big { font-size: 12em; line-height: 0.8; } 
      .start .Caption { padding-top: 1em; } 
      .start .Blink br { display: none; }

      .start .COLDX { margin-top: 4em; }

      /*SONDAGGIO*/
      .inviato .COLSX .col-lg-offset-1,
      .sondaggio .container-step .col-lg-offset-1 { margin-left: 8.33333333% !important; }
      .sondaggio .container-step .col-lg-10 { width: 83.33333333%; }

      .sondaggio .container-step .image-big img { max-width: 90%; max-width: 80%; max-width: 100%; }
      .sondaggio-end .webform-client-form .form-actions { bottom: 24%; bottom: 30%; right: 4%; }

      .sondaggio .container-step .nstep { width: 5.5em; height: 5.5em; width: 5em; height: 5em; }
      .sondaggio .container-step .nstep p { font-size: 2.5em; left: 0.3em; top: 0.5em; left: 0.2em; top: 0.45em; }

      .sondaggio .container-end .colbt-step { margin-top: 5em; }

      /*WEBFORM*/
      .webform-component.check-list .form-type-checkbox,
      .webform-component.radio-list .form-type-radio { padding-left: 40%; }

      .webform-component.check-list.check-list-custom .form-type-checkbox,
      .webform-component.radio-list.check-list-custom .form-type-radio { padding-left: 40%; }

      .webform-component.check-list-full .form-type-checkbox,
      .webform-component.radio-list-full .form-type-radio { padding-left: 30%; }

    }


    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1600px) {

      /*START*/
      .start .h1 { font-size: 3em; } 
      .start .h1.big { font-size: 16em; } 

      .start .COLDX { margin-top: 6em; }

    }


    /*==========  Non-Mobile First Method  ==========*/

    /* Large Devices, Wide Screens LG */
    @media only screen and (max-width : 1440px) {

      /*SONDAGGIO*/
      .sondaggio .container-step > .panel-body.row-flex { height: 75vh; min-height: 50vh; height: auto;   }
      .sondaggio .container-step .nstep { margin-left: 2em; }
/*      .sondaggio-end .webform-client-form .form-actions { bottom: 20%; }*/

    }


    /* Large Devices, Wide Screens LG */
    @media only screen and (max-width : 1200px) {

      /*SONDAGGIO*/
      .sondaggio-end .webform-client-form .form-actions { right: 0; left: 0; padding: 0 1em; } 



    }

    /* Medium Devices, Laptop MD*/
    @media (min-width: 992px) and (max-width: 1199px) { 

/*      .gradCB {*/
/*        background: #006fcf/* Old Browsers */*/
/*        background: -moz-linear-gradient(left, #006fcf 0%, #006fcf 58%, #00175a 58%, #00175a 100%); /* FF3.6+ */*/
/*        background: -webkit-gradient(left top, right top, color-stop(0%, #006fcf), color-stop(58%, #006fcf), color-stop(58%, #00175a), color-stop(100%, #00175a));/* Chrome, Safari4+ */*/
/*        background: -webkit-linear-gradient(left, #006fcf 0%, #006fcf 58%, #00175a 58%, #00175a 100%); /* Chrome10+,Safari5.1+ */*/
/*        background: -o-linear-gradient(left, #006fcf 0%, #006fcf 58%, #00175a 58%, #00175a 100%); /* Opera 11.10+ */*/
/*        background: -ms-linear-gradient(left, #006fcf 0%, #006fcf 58%, #00175a 58%, #00175a 100%); /* IE 10+ */*/
/*        background: linear-gradient(to right, #006fcf 0%, #006fcf 58%, #00175a 58%, #00175a 100%);/* W3C */*/
/*        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006fcf', endColorstr='#00175a', GradientType=1 );/* IE6-9 */*/
/*      }*/

/*      .gradCW {*/
/*        background: #006fcf;/* Old Browsers */*/
/*        background: -moz-linear-gradient(left, #006fcf 0%, #006fcf 58%, #FFFFFF 58%, #FFFFFF 100%); /* FF3.6+ */*/
/*        background: -webkit-gradient(left top, right top, color-stop(0%, #006fcf), color-stop(58%, #006fcf), color-stop(58%, #FFFFFF), color-stop(100%, #FFFFFF));/* Chrome, Safari4+ */*/
/*        background: -webkit-linear-gradient(left, #006fcf 0%, #006fcf 58%, #FFFFFF 58%, #FFFFFF 100%); /* Chrome10+,Safari5.1+ */*/
/*        background: -o-linear-gradient(left, #006fcf 0%, #006fcf 58%, #FFFFFF 58%, #FFFFFF 100%); /* Opera 11.10+ */*/
/*        background: -ms-linear-gradient(left, #006fcf 0%, #006fcf 58%, #FFFFFF 58%, #FFFFFF 100%); /* IE 10+ */*/
/*        background: linear-gradient(to right, #006fcf 0%, #006fcf 58%, #FFFFFF 58%, #FFFFFF 100%);/* W3C */*/
/*        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006fcf', endColorstr='#FFFFFF', GradientType=1 );/* IE6-9 */*/
/*      }*/

      /*SONDAGGIO*/
      .sondaggio .container-step { padding: 0; }
      .sondaggio .container-step > .panel-body.row-flex { height: 75vh; min-height: 50vh; height: auto; }

      /*WEBFORM*/
      .webform-component .form-type-checkbox,
      .webform-component .form-type-radio {  width: 50%; }

      .webform-client-form .form-actions { width: 58%; width: 50%;  width: 45%;}

      .webform-client-form .form-actions .form-submit, 
      .webform-client-form .form-actions .webform-next.form-submit, 
      .webform-client-form .form-actions .webform-previous.form-submit { font-size: 0.8em; }

      /*INVIATO*/
      .inviato .Caption .h2 { font-size: 1.7em; }
      .inviato .Caption .h3 { font-size: 1.5em; }
      .inviato .Caption .h4 { font-size: 0.85em; }

    }

    /* Medium Devices, Desktops MD*/
    @media only screen and (max-width : 991px) {

      .gradCB, .gradCW { background: #006fcf; }

      /*FIX*/
      .start.row-flex,
      .sondaggio.row-flex,
      .sondaggio .layout.row-flex,
      .inviato.row-flex { display: block; height: auto; }

      /*START*/
      .start .h1 { font-size: 2em; } 
      .start .h1.big { font-size: 9em; font-size: 11em;} 

      .start .COLSX { margin-top: 2em; }
      .start .COLDX { margin-top: 1em; margin-bottom: 1em; }

      /*INVIATO*/
      .inviato .Caption { margin-top: 2em; margin-bottom: 1em; text-align: center; }


      /*SONDAGGIO*/

      .sondaggio .layout.m-auto { margin: 2em 0 0; margin: 0;  }
      .sondaggio .container-step > .panel-body.row-flex { height: auto; min-height: 50vh; min-height: auto; } /* flex-direction: column-reverse; */

      .sondaggio .container-step .nstep { margin: 2em auto; }

      .sondaggio .container-step .image-big { display: none; }
      .sondaggio .container-step .image-small { display: block; }
      .sondaggio .container-step .colsx-step .cstep { height: auto; }
      .sondaggio .container-step .coldx-step .h-100 { height: auto; }

      .sondaggio .container-step .step.campo-custom { margin: 2em 0 1em; padding: 0; }

      .sondaggio .container-step { padding: 0; }
      .sondaggio .container-step fieldset { padding: 0; }
      .sondaggio .container-step .nstep { margin: 2em auto 0em; }
      .sondaggio .container-step .cstep .question { height: auto;}

      .sondaggio .container-end .image-logo { display: block; }
      .sondaggio .container-end .image-footer { display: none; }

      .sondaggio .container-end { font-size: 1.3em; }

      .sondaggio .container-end .image-step-end { padding: 4em 0 4em; }

      .sondaggio .container-end .colsx-step p { line-height: 1.4; font-size: 100%; }
      .sondaggio .container-end .colsx-step p.title { margin: 1em 0; font-size: 150%; }



      .sondaggio .container-end p.h5.visible-sm.visible-xs { padding-top: 2em; }
      .sondaggio .container-end p.h5 { text-align: center; }
      .sondaggio .container-end p.h5 br { display: none; }

      .sondaggio .container-end .colsx-step p.arrow { font-size: 1.5em; text-align: center;  }

      .sondaggio .container-end .colbt-step { margin-top: 1em; }

      /*WEBFORM*/
      .webform-component .form-type-checkbox,
      .webform-component .form-type-radio {  width: 50%; }

      .webform-component.radio-center .form-type-checkbox .control-label,
      .webform-component.radio-center .form-type-radio .control-label { padding: 0 1em; }

      .webform-component.radio-inline .form-type-checkbox,
      .webform-component.radio-inline .form-type-radio { width: 50%;  padding-left: 5%; padding-right: 25%; }

      .webform-component.radio-inline .form-radios .form-type-radio:nth-child(odd) { padding-left: 30%; padding-right: 0; }

      .webform-component.check-list .form-type-checkbox,
      .webform-component.radio-list .form-type-radio { width: 50%; padding-left: 5%; padding-right: 20%; }

      .webform-component.check-list .form-checkboxes .form-type-checkbox:nth-child(odd) { padding-left: 25%; padding-right: 0; }

      .webform-component.check-list-full .form-type-checkbox,
      .webform-component.radio-list-full .form-type-radio { width: 50%; padding-left: 5%; padding-right: 5%; }

      .webform-component.check-list-full .form-checkboxes .form-type-checkbox:nth-child(odd) { padding-left: 5%; padding-right: 0; }

      .sondaggio.scroll .webform-client-form .form-actions .webform-next.form-submit { bottom: 0em; }

      .webform-client-form .form-actions,
      .sondaggio-end .webform-client-form .form-actions {
          position: relative;
          bottom: unset;
          left: unset;
          width: 100%;
          text-align: center;

          position: fixed; bottom: 0; left: 0;
          background-color: #006fcf;
          margin: 0;
          padding: 0.2em 0px 0.2em;
      }

      .sondaggio-end .webform-client-form .form-actions { position: relative; bottom: unset; left: 0; top: 0; background-color: transparent; padding: 1em 0; }

      .webform-client-form .form-actions .form-submit,
      .webform-client-form .form-actions .webform-next.form-submit,
      .webform-client-form .form-actions .webform-previous.form-submit,
      .sondaggio-end .webform-client-form .form-actions .form-submit,
      .sondaggio-end .webform-client-form .form-actions .webform-next.form-submit,
      .sondaggio-end .webform-client-form .form-actions .webform-previous.form-submit { position: relative; float: unset; left: 0; }



    }

    /* Portrait tablets and small desktops */
    @media (min-width: 768px) and (max-width: 991px) {

      /*START*/
      .start .Blink br { display: none; }

      .start .COLDX .bigimg { max-width: 70%; }

      /*INVIATO*/
      .inviato .COLDX .bigimg { max-width: 70%; }

    }

    /* Small Devices, Tablets SM*/
    @media only screen and (max-width : 767px) {

      /*START*/
      .start .COLSX { padding: 0em; }

      .start .h1.big { font-size: 8em; font-size: 10em; position: relative; left: -10px; }

      .start .Blink,
      .start .Blink .btn { padding: 0em; }
      .start .Blink .btn { margin-top: 1em; }

      /*SONDAGGIO*/

      .sondaggio .row-content { padding: 0 7px; }


      /*WEBFORM*/
      .webform-component.radio-inline .form-type-checkbox,
      .webform-component.radio-inline .form-type-radio { width: 100%; }

      .webform-component.check-list .form-type-checkbox,
      .webform-component.radio-list .form-type-radio { width: 100%; }

      .webform-component.check-list-full .form-type-checkbox,
      .webform-component.radio-list-full .form-type-radio { width: 100%; }

    }


    /* Small Devices, Tablets SM*/
    @media screen and (max-width: 767px) and (orientation: landscape) {

      /*START*/
      .start .COLDX .bigimg { max-width: 70%; }

      /*SONDAGGIO*/
      .sondaggio .container-step .image-small img { max-width: 50%; }

      /*INVIATO*/
      .inviato .COLDX .bigimg { max-width: 70%; }

    }


    /* Medium Devices, Laptop MD*/
    @media (max-width: 767px) and (min-width: 576px) { 


      /*WEBFORM*/
      .webform-component.radio-inline .form-type-checkbox,
      .webform-component.radio-inline .form-type-radio,
      .webform-component.radio-inline .form-radios .form-type-radio,
      .webform-component.radio-inline .form-radios .form-type-radio:nth-child(odd) { padding-left: 40%; padding-right: 0; }

      .webform-component.check-list .form-type-checkbox,
      .webform-component.radio-list .form-type-radio,
      .webform-component.check-list .form-checkboxes .form-type-checkbox,
      .webform-component.check-list .form-checkboxes .form-type-checkbox:nth-child(odd) { padding-left: 40%; padding-right: 0; }

      .webform-component.check-list-full .form-type-checkbox,
      .webform-component.radio-list-full .form-type-radio,
      .webform-component.check-list-full .form-checkboxes .form-type-checkbox,
      .webform-component.check-list-full .form-checkboxes .form-type-checkbox:nth-child(odd) { padding-left: 30%; padding-right: 0; }


    }


    /* Small Devices, Tablets SM*/
    @media only screen and (max-width : 575px) {

      /*START*/
      .start .h1 { font-size: 1.3em; }

      /*WEBFORM*/
      .webform-component.radio-inline .form-type-checkbox,
      .webform-component.radio-inline .form-type-radio,
      .webform-component.radio-inline .form-radios .form-type-radio,
      .webform-component.radio-inline .form-radios .form-type-radio:nth-child(odd) { padding-left: 32%; padding-right: 0; }

      .webform-component.check-list .form-type-checkbox,
      .webform-component.radio-list .form-type-radio,
      .webform-component.check-list .form-checkboxes .form-type-checkbox,
      .webform-component.check-list .form-checkboxes .form-type-checkbox:nth-child(odd) { padding-left: 30%; padding-right: 0; }

      .webform-component.check-list-full .form-type-checkbox,
      .webform-component.radio-list-full .form-type-radio,
      .webform-component.check-list-full .form-checkboxes .form-type-checkbox,
      .webform-component.check-list-full .form-checkboxes .form-type-checkbox:nth-child(odd) { padding-left: 10%; padding-right: 0; }

    }



    /* Mobile Large, Extra Small Devices, Phones XS*/ 
    @media only screen and (max-width : 480px) {

    }

    /* Mobile Medium, iPhone Retina */ 
    @media only screen and (max-width : 375px) {


    }

    /* Mobile Small, Custom iPhone Retina */ 
    @media only screen and (max-width : 320px) {

      /*START*/
      .start .h1.big { font-size: 7em; }
      .start .h1 { font-size: 1.15em; }

      /*SONDAGGIO*/
      .sondaggio .container-end .colsx-step p.title { font-size: 130%; }

    }

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) {  }

/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) {  }

/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) {  }


@media (max-width: @screen-xs-max) {  }
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {  }
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) {  }
@media (min-width: @screen-lg-min) {  }



/*HOOK EXPLORER11*/

@media all and (-ms-high-contrast:none) {

  .start.row-flex,
  .sondaggio.row-flex,
  .sondaggio .layout.row-flex,  
  .inviato.row-flex { display: block; }


  .webform-component .form-type-checkbox input, .webform-component .form-type-radio input { background-color: transparent; } 

  .webform-component.radio-center .form-type-checkbox,
  .webform-component.radio-center .form-type-radio { width: auto; margin-left: 40% }
  .webform-component.radio-center .form-radios .form-type-radio:nth-child(odd) label { text-align: left; }

  .webform-client-form .form-actions,
  .sondaggio-end .webform-client-form .form-actions { bottom: 5em; position: relative; }


    @media only screen and (max-width : 991px) {
      .webform-client-form .form-actions .form-submit,
      .webform-client-form .form-actions .webform-next.form-submit,
      .webform-client-form .form-actions .webform-previous.form-submit,
      .sondaggio-end .webform-client-form .form-actions .form-submit,
      .sondaggio-end .webform-client-form .form-actions .webform-next.form-submit,
      .sondaggio-end .webform-client-form .form-actions .webform-previous.form-submit {  float: unset !important; text-align: center; }
   }


}



