/**
 * 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=Poppins:300,400,500,600&display=swap');

:root {
    --cBlu: #092860;
    --cGiallo: #DBD51F;
    --cCiano: #5DB2DB;
    --cDCiano: #7588B1;
    --cGray: #6e7c87;
    --cBlack: #000000;
    --cWhite: #FFFFFF;
}


/* SYSTEM */

.wide {
    margin: 0 -9999px;
    padding: 0px 9999px;
    position: relative;
/*    background-color: var(--cWhite);*/
}

.wide.odd { background-color: var(--cDCiano); }

.wide.even { background-color: var(--cCiano); }

.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;
}

/*.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 var(--cBlu);
    font: 17px/1.6 Helvetica,Arial,sans-serif;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--cWhite);
    margin: 0px 0px;
}

h1, h2, h3, h4, h5, h6, p { 
    font-family: Helvetica,Arial,sans-serif;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--cWhite);
    line-height: 1.2;
}

h1, .h1 { font-weight: 500; font-size: 2.5em; line-height: 1.2; } /*60*/

h1.big, .h1.big { font-weight: 500; font-size: 2.2em; line-height: 1; } /*90*/

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

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

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

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

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

p, ul { 
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: var(--cWhite);
    line-height: 1.6;
    font-weight: 500;
    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.legend { color: var(--cCiano); font-weight: 600; padding-bottom: 1em; }

.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: var(--cCiano); 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);  }

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

.evidenza { color: var(--cCiano); }
.Blu { color: var(--cBlu); }
.Giallo { color: var(--cGiallo); }
.Ciano { color: var(--cCiano); }
.DCiano { color: var(--cDCiano); }
.Gray { color: var(--cGray); }
.White, .CText { color: var(--cWhite); }
.Black { color: var(--cBlack); }

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

.bgBlu { background-color: var(--cBlu); }
.bgGiallo { background-color: var(--cGiallo); }
.bgCiano { background-color: var(--cCiano); }
.bgDCiano { background-color: var(--cDCiano); }
.bgGray { background-color: var(--cGray); }
.bgWhite { background-color: var(--cWhite); }
.bgBlack { background-color: var(--cBlack); }

strong,b { font-weight: 500; }

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,
.btn-primary, .btn-secondary,
.webform-client-form .form-actions .form-submit { 
  border: 0px solid var(--cCiano) !important;
  background-color: var(--cCiano);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7em;
  font-weight: 500;
  color: var(--cWhite) !important;
  padding: 0.8em 4.5em;
  -webkit-border-radius: 38px; 
  -moz-border-radius: 38px;
  border-radius: 38px;
  opacity: 1;
  text-decoration: none; 
  outline: none;
  box-shadow: 0px 3px 6px #666666;
  box-shadow: none;

  text-transform: none;

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5db2db+0,7588b1+100 */
  background: var(--cCiano); /* Old browsers */
  background: -moz-linear-gradient(-45deg, var(--cCiano) 0%, var(--cDCiano) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, var(--cCiano) 0%, var(--cDCiano) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, var(--cCiano) 0%, var(--cDCiano) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--cCiano)', endColorstr='var(--cDCiano)',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

/*  transition: all 0.25s ease-in-out 0s;*/

  -webkit-transition: all 0.2s linear;
     -moz-transition: all 0.2s linear;
       -o-transition: all 0.2s linear;
          transition: all 0.2s linear;

}

.btn:hover,
.webform-client-form .form-actions .form-submit:hover {
  background: var(--cDCiano) !important; 
  background: -moz-linear-gradient(-45deg, var(--cDCiano) 0%, var(--cCiano) 100%) !important; 
  background: -webkit-linear-gradient(-45deg,  var(--cDCiano) 0%, var(--cCiano) 100%) !important; 
  background: linear-gradient(135deg,  var(--cDCiano) 0%, var(--cCiano) 100%) !important; 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--cDCiano)', endColorstr='var(--cCiano)',GradientType=1 ) !important; 
  border-color: var(--cBlu) !important; 
  color: var(--cWhite) !important;
}

.btn-primary {
  background-color: var(--cCiano) !important;
  border-color: var(--cCiano) !important; 
  color: var(--cWhite) !important;
}

.btn-primary:hover {
  background-color: var(--cDCiano) !important;
  border-color: var(--cDCiano) !important; 
  color: var(--cWhite) !important;
}

.btn-secondary {
  background-color: var(--cDCiano) !important;
  border-color: var(--cDCiano) !important; 
  color: var(--cWhite) !important;
}

.btn-secondary:hover {
  background-color: var(--cCiano) !important;
  border-color: var(--cCiano) !important; 
  color: var(--cWhite) !important;
}

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

.btn:hover .icon-custom:before { color: var(--cWhite) !important; }

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


/*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:var(--cWhite);
    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 { var(--cDBlu); }
.scroll-to-top:hover {    -webkit-filter: invert(.2);  filter: invert(.2); }
.scroll-to-top i { color: var(--cGreen); font-size: 1.6em; 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; }*/


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

.inviato .row-flex.scroll { display: block; height: auto; }

.start .row-flex.scroll .layout-footer .flogo,
.sondaggio .layout.row-flex.scroll .layout-footer .flogo,  
.inviato .row-flex.scroll  .layout-footer .flogo { padding: 0 0 1em; } 


/*START*/
/*.start .COLSX { padding-top: 3em; }*/
.start .Caption { padding-top: 2em; }
.start .Blink { text-align: right; margin-bottom: 2em; }



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

/*SONDAGGIO*/
.sondaggio .container-step { border: 0px solid white; width: 100%; padding: 0; }

.sondaggio .webform-component.step { padding: 0 0; }

.sondaggio .COLSX .webform-component-markup { text-align: center; padding: 0; padding: 1em 0 0em; }
.sondaggio .COLSX .webform-component-markup .image-big {}

.sondaggio .COLDX { padding-top: 5em; }

.sondaggio .COLDX .webform-component-markup { margin-bottom: 0; }

.sondaggio.sondaggio-end .layout-footer { display: none; }
.sondaggio.sondaggio-end .container-wrapper { margin: auto auto; }
.sondaggio.sondaggio-end .row-content { padding-top: 0; }


/*INVIATO*/
.inviato .layout-top { height: 60%; position: relative; }
.inviato .layout-bottom { height: 40%; position: relative; }

.inviato .layout-top .karos-scritta { padding-bottom: 4em; }

.inviato .layout-bottom .karos-scatola  img { 
  position: absolute;
  left: 25%;
  top: -7em;
  /*position: relative;*/
  /*left: 0;*/
}

.inviato .layout-bottom .karos-grazie { padding: 5em 0 0; }

.inviato .layout-bottom .libsa img { position: absolute; left: 0; top: -5em; }


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

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

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

.webform-client-form h2 { font-size: 3em; line-height: 1.2; }
.webform-client-form h3 { font-size: 1.8em; line-height: 1.2; }
.webform-client-form h4 { font-size: 1.3em; line-height: 1.3; }

.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: 'Poppins', sans-serif;
    display: inline;
    float: left;
    margin: 0.5em 0px;
    margin: 0 0 1.5em;
    position: relative;
    font-weight: 500;
    font-size: 1em;
}

.webform-component label,
.webform-component .description {
    font-family: 'Poppins', sans-serif;
    display: inline;
    float: left;
    margin: 0 0 0.5em;
    font-size: 1em;
    text-transform: none;
    position: relative;
    color: var(--cWhite); 
    font-weight: 500;
    width: 100%;
    line-height: 1.4;

    margin-bottom: 2em;

}

.webform-component .description { }

.webform-component input,
.webform-component select,
.webform-component textarea,
.webform-client-form fieldset {
    border: 0px solid var(--cCiano); 
    background:  none no-repeat scroll 0 0 transparent;
    display: inline;
    float: left;
    font-size: 1em;
    font-weight: 500;
    margin: 0;
    position: relative;
    padding: 0.2em 0.5em;
    padding: 0.5em 0.5em;
    height: auto;
    color: var(--cWhite); 
    border-radius: 0;
    box-shadow: none;
}

.webform-component input,
.webform-component select,
.webform-component textarea { border: 1px solid var(--cCiano); }

.webform-component textarea { resize: none; }

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

    border: 1px solid var(--cCiano); 
    padding: 0.9em;
    margin-bottom: 1em;

}

.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: 0.8em;
    color: var(--cWhite);
    font-weight: 500;
    line-height: 1;
    width: 100%;
    margin: 0;
    padding-left: 1.5em;
    text-transform: uppercase;
    text-align: left;
}

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

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

.webform-component.radio-custom .form-radios { left: 20%; position: relative; }

.webform-component.radio-custom .form-type-checkbox input,
.webform-component.radio-custom .form-type-radio input {
    float: right;
    margin: 0;
    position: relative;
    margin: 0 0.5em;
    width: 1em;
    height: 1em;
}


/* SLIDER */
  .slider select,
  .slider select:focus  { 
    border: none 0;
    color: var(--cBlu) !important;
/*    height: 0;*/
    z-index: -1;
    display: inline-block !important;
    font: inherit;
    font-size: 0;

    margin: 0; 
    outline: 0;
    box-shadow: none;

/*    -webkit-box-sizing: border-box;*/
    -moz-box-sizing: border-box;
    box-sizing: border-box;

/*    -webkit-appearance: none;*/
    -moz-appearance: none;
  
    background: none;
  }

  .slider select:after {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f00;
    position: absolute;
    top: 40%;
    right: 5px;
    content: "";
    z-index: 98;
 }

  .webform-component .ui-slider { clear: both; top: 1em; }

  .webform-component .ui-widget-content {
      background: var(--cWhite) none repeat scroll 0 0;
      border: 0px solid var(--cBlu);
      border: none;
      border-bottom: 2px solid var(--cBlu);
      color: var(--cWhite);
      height: 7px;
      top: -1em;

      font-weight: 500; 
      background: var(--cWhite) none repeat scroll 0 0;
      border: 0px solid var(--cBlu);
      border: none;
      border: 0px solid var(--cBlu);
      color: var(--cWhite); 
      height: 6px;
      top: 1em;
      border-radius: 8px;


  }

  .webform-component .ui-slider { padding: 0 15px; left: 15px; margin-bottom: 2em; }
  .webform-component .ui-slider-horizontal .ui-slider-handle { }
  .webform-component .ui-slider .ui-slider-handle { width: 1em; height: 1em; top: -.4em;  border: 1px solid var(--cCiano);  }


  .webform-component .ui-slider li span.ui-widget-content, .webform-component .ui-slider dd span.ui-widget-content {
      border-left-width: 0px;
  }

  .webform-component .ui-slider li span.ui-slider-label-show, .webform-component .ui-slider dd span.ui-slider-label-show {
      cursor: pointer; left: -0.5em; 
  }


  .webform-component .ui-slider li span.ui-slider-tic { border: 2px solid var(--cBlu); border-radius: 0; left: -0.5em; height: 7px; top: -2.2em; } 

  .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { background: var(--cCiano); border-radius: 50px; } 

  .ui-state-hover, 
  .ui-widget-content .ui-state-hover, 
  .ui-widget-header .ui-state-hover, 
  .ui-state-focus, 
  .ui-widget-content .ui-state-focus, 
  .ui-widget-header .ui-state-focus { background: var(--cCiano); }

  .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { background: var(--cDCiano); } 

  .webform-component .ui-slider li, 
  .webform-component .ui-slider dd { color: var(--cCiano); font-size: 0.6em; font-weight: 500; }

  .webform-component .ui-slider li:first-child span.ui-slider-label-show { display: none }
  .webform-component .ui-slider li:first-child:before { content: "Seleziona";  content: ""; left: -2em; position: relative; }

  .webform-component.slider { }

  .ui-slider-handle.ui-state-default.ui-corner-all.error { background-color: red; }

  .ui-slider {clear: both; }




/* END SLIDER */


.webform-component .form-control { color: var(--cCiano); }
.webform-component .form-control::-webkit-input-placeholder { color: var(--cWhite);  } /* Chrome/Opera/Safari */
.webform-component .form-control::-moz-placeholder { color: var(--cWhite);   } /* Firefox 19+ */ 
.webform-component .form-control:-ms-input-placeholder { color: var(--cWhite);   } /* IE 10+ */ 
.webform-component .form-control:-moz-placeholder { color: var(--cWhite);   } /* Firefox 18- */

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



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

.webform-component.campoform input,
.webform-component.campoform select,
.webform-component.campoform textarea { border: 1px solid var(--cCiano);  background: none; border-radius: 0; font-weight: 300; }

.webform-component.campoform .form-control { color: var(--cCiano); }
.webform-component.campoform .form-control::-webkit-input-placeholder { color: var(--cWhite);  } /* Chrome/Opera/Safari */
.webform-component.campoform .form-control::-moz-placeholder { color: var(--cWhite);   } /* Firefox 19+ */ 
.webform-component.campoform .form-control:-ms-input-placeholder { color: var(--cWhite);   } /* IE 10+ */ 
.webform-component.campoform .form-control:-moz-placeholder { color: var(--cWhite);   } /* Firefox 18- */

.webform-component.campoform label,
.webform-component.campoform .description {  color: var(--cWhite); font-weight: 600; margin: 1em 0 0.5em; text-align: left; }

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

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

.webform-component-markup.webform-component--campi { width: 50%; text-align: right; }

.webform-component-markup .campi { font-weight: 500; font-size: 0.65em; margin: 1em 0 0.5em; }

.webform-component.privacy .form-type-checkbox, 
.webform-component.privacy .form-type-radio { width: 100%; border: none 0; padding: 0 15px; }

.webform-component.privacy { margin: 1em 0 0.5em; }
.webform-component.privacy a  { color: var(--cCiano); font-weight: 500; text-decoration: underline; }

.webform-component.privacy .control-label { text-transform: none; font-size: 0.7em; line-height: 1.4; font-weight: 300; color: var(--cWhite); }


.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-family: 'Poppins', sans-serif;
/*  border: none;*/
/*  color: var(--cDBlu) !important;*/
  font-size: 0.7em;
  padding: 0.8em 4.5em;
  padding: 0.8em 2.5em;
  text-shadow: none;
  text-transform: none;
  font-weight: 500;
  z-index: 1;
  text-transform: none;

  outline: none;
  width: auto;

  position: relative;
  top: -3em;


}

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


.webform-client-form .form-actions { 
  position: relative;
  text-align: right;
  float: left;
  width: 100%;
  margin: 0;
  margin-bottom: 1em;
}

.webform-client-form .form-actions .form-submit { position: relative; top: 0em; }

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

}


/*==================================================
=            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: 17px; }

    }

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

        body { font-size: 18px; }
    }

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

        body { font-size: 19px; }

    }

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

        body { font-size: 20px; }

    }

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

        body { font-size: 21px; }

    }


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


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

      /*SONDAGGIO*/
      .sondaggio .container-wrapper  { width: 100%; }

      /*INVIATO*/
      .inviato .layout-bottom .karos-scatola img { left: 20%; }
      .inviato .layout-bottom .libsa img { left: 2em; }

    }

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

    }

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

      /*FIX*/
      .start .row-flex,
      .sondaggio .layout,  
      .inviato .row-flex {  padding: 1em 0 0 !important; text-align: center; }


      .layout-footer.mt-auto { margin-top: 0; }

      .inviato .row-flex {  padding: 1em 0 0 !important; }

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

      /*START*/
      .start .COLSX { padding-top: 1em; }
      .start .Blink { padding-top: 2em; text-align: center; }
      .start .COLSX { padding-bottom: 2em; }

      /*  SLIDER  */
      .webform-component.slider { padding: 0 15px; }

      /*SONDAGGIO*/
      .sondaggio .container-wrapper  { width: 100%; padding: 0; margin: auto auto; }

      .sondaggio .container-wrapper { margin: auto auto; }

/*      .sondaggio .layout-footer { position: fixed; top: 0; z-index: 2; }*/

/*      .sondaggio .row-content { padding: 0; padding-top: 3em; }*/
      .sondaggio .row-content .region-content { width: 100%; }

      .sondaggio .COLSX .webform-component-markup { padding-top: 0em; padding-bottom: 1em; }

      .sondaggio .COLDX { padding-top: 0em; }

      /*INVIATO*/
      .inviato .container-wrapper  { width: 100%; }
      .inviato .layout-top .karos-scritta { padding-bottom: 6em; }
      .inviato .layout-bottom .karos-scatola img { left: 10%; }
      .inviato .layout-bottom .libsa img { position: relative; left: 0; top: 0; }


      /*WEBFORM*/
      .webform-component.step { padding: 0; }

      .webform-component.radio-custom .form-radios { left: 0; position: relative; }

      .webform-client-form .form-actions { 
        background: var(--cBlu);
        text-align: center;
        margin: 0;
/*        padding: 0.5em 0;*/
        padding: 1.5em 0;
        padding: 3.5em 0;
        position: relative;
/*        position: fixed;*/
/*        bottom: 0;*/
/*        left: 0;*/
/*        z-index: 3;*/
      }

      .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 { top: 0; } 


/*    .sondaggio.sondaggio-end .form-actions { position: relative; }*/


    }

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

      /*FIX*/
      .col-sm-offset-2 { margin-left: 16.66666667%!important; }

      /*WEBFORM*/
/*      .webform-client-form .form-actions { position: absolute; top: 35%; right: -10px; }*/


    }

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

      .xs-d-flexr-column { flex-direction: column-reverse; }

      /*FIX*/
      .start .COLDX,
      .sondaggio .COLDX,  
      .inviato .COLDX { text-align: center; }

      /*START*/
      .start .COLSX { padding-top: 1em; }
      .start .Blink { padding-top: 2em; text-align: center; }
      .start .Caption { padding-top: 0em; }

      /*SONDAGGIO*/
      .sondaggio .container-end .webform-client-form .form-actions .form-submit { position: relative; }

      /*INVIATO*/
      .inviato .layout-top { height: auto; }
      .inviato .layout-top .karos-scritta { padding: 2em 15px; }

      .inviato .layout-bottom { height: 100%; }
      .inviato .layout-bottom .karos-grazie { padding: 0 0 1em; }
      .inviato .layout-bottom .karos-scatola img { position: relative; left: 0; top: 0; }

      /* SLIDER */
      .webform-component .ui-slider { left: 5px; }
      .webform-component .ui-slider .ui-slider-handle { width: 1.5em; height: 1.5em; }

      .webform-component .ui-slider-horizontal .ui-slider-handle { top: -.5em; }

      .webform-component .ui-slider li, 
      .webform-component .ui-slider dd { font-size: 0.6em; padding-top: 0.5em; }

/*      .webform-component .ui-slider li span.ui-slider-label-show, */
/*      .webform-component .ui-slider dd span.ui-slider-label-show { left: -40px; }*/

      /*WEBFORM*/
      .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-align: left; }

      .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: 1em; }

    }

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

      br { display: none; }

      .bottone { text-align: center; }

    }




    /* 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) {

    }

/* 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) {  }

