/**
 * 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=Dosis:200,300,400,500,600,700,800');*/

:root {
    --cAcqua: #06e5d9;
    --cLCiano: #2ad2c9;
    --cCiano: #23b4ac;
    --cLGray: #eeedec;
    --cBlack: #000000;
    --cDBlack: #3d3935;
    --cWhite: #FFFFFF;
}

/* SYSTEM */

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

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

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

.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 !important; }
.nomargin-top { margin-top: 0;}
.nomargin-bottom { margin-bottom: 0;}
.h-100 { height: 100%; }
.w-100 { width: 100%; }
.mx-auto { margin: auto 0; }
.my-auto { margin: 0 auto; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: 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;
}

.row-flex  {
  -ms-box-orient: horizontal;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -moz-box;
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -moz-flex;
  display: -webkit-flex;  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;

  position: relative;
}

.row-flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*FIX SAFARI*/
.row-flex:before, .row-flex:after { display: none; }


/*.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%;
}

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

.row-fullR {
  width: 50vw;
  position: relative;
  margin-left: -50vw;
  left: 50vw;
}

.row-fullL .wrapper,
.row-fullL .wrapper .popup .box-header { max-width: 555px; margin-left: auto; width: 100%; }
.row-fullR .wrapper,
.row-fullR .wrapper .popup .box-header { max-width: 555px; margin-right: auto; width: 100%; }

#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;*/
}

/* EFFECT */
.rotate-icon {
  -webkit-animation-name: rotate-icon;
  animation-name: rotate-icon;
}

.rotate-icon:before {
  -webkit-transform:rotate(0deg); /* Chrome, iOS, Safari e Android */
  -moz-transform:rotate(0deg); /* Firefox */
  -o-transform:rotate(0deg); /* Opera */
  -ms-transform:rotate(0deg); /* IE 9 */
  transform:rotate(0deg); /* tutti i nuovi browser */
   -webkit-transition: all 0.25s 0s ease-in-out;
    -moz-transition: all 0.25s 0s ease-in-out;
    -o-transition: all 0.25s 0s ease-in-out;
    -ms-transition: all 0.25s 0s ease-in-out;
    transition: all 0.25s 0s ease-in-out;
}

.rotate-icon:hover:before,
.btn-actions:hover .rotate-icon:before,
.active .rotate-icon:before {
  -webkit-transform:rotate(225deg); /* Chrome, iOS, Safari e Android */
  -moz-transform:rotate(225deg); /* Firefox */
  -o-transform:rotate(225deg); /* Opera */
  -ms-transform:rotate(225deg); /* IE 9 */
  transform:rotate(225deg); /* tutti i nuovi browser */
}



/* DEFAULT */

body {
    background: #FFFFFF none no-repeat scroll 0 0;
    background-color: var(--cWhite);
    font: 16px/1.2 Helvetica,Arial,sans-serif;
    font-family: "neue-haas-grotesk-display";
    font-weight: 500;
    color: var(--cDBlack);
    margin: 0px 0px;
}

h1, h2, h3, h4, h5, h6, p,
.h1, .h2, .h3, .h4, .h5, .h6 { 
    font-family: Helvetica,Arial,sans-serif;
    font-family: "neue-haas-grotesk-display";
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--cDBlack);
    line-height: 1.2;
}


h1, .h1 { font-weight: 500; font-size: 2.25em; line-height: 1.1; }  /*45*/

h1.title, .h1.title { font-weight: 500; font-size: 2em; line-height: 1.1; } /*40*/

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

h2.title, .h2.title { font-weight: 500; font-size: 1.65em; line-height: 1.2; } /*33*/

h3, .h3 { font-weight: 500; font-size: 1.4em; line-height: 1.2; } /*28*/

h4, .h4 { font-size: 1.25em; line-height: 1.2; } /*25*/

h5, .h5 { font-size: 0.9em; line-height: 1.2; } /*18*/

h6, .h6 { font-size: 0.75em; line-height: 1.2; } /*15*/

p, ul { 
    font-family: "neue-haas-grotesk-display";
    font-size: 1em;
    color: var(--cDBlack);
    line-height: 1.2;
    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: 0em; }
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: "\e802";
    font-family: 'fontello';
    font-size: 1em;
    float: left;
    margin-top: 4px;
    margin-left: -1.1em;
    color: var(--cDBlack);
}

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

.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; 
 -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
}

.transition {
 -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
}

.cover img,
.img-cover { width: 100%; height: 50vw; height: auto; object-fit: cover; object-position: 50% 50%;  object-position: center top; }

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(--Acqua); outline: none; }

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

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

.evidenza { color: var(--cAcqua); }
.Acqua { color: var(--cAcqua); }
.LCiano { color: var(--cLCiano); }
.Ciano { color: var(--cCiano); }
.LGray { color: var(--cLGray); }
.White { color: var(--cWhite); }
.Black { color: var(--cBlack); }
.DBlack, .CText  { color: var(--cDBlack); }

.fprimary { font-family: "neue-haas-grotesk-display"; }

.bgAcqua { background-color: var(--cAcqua); }
.bgLCiano { background-color: var(--cLCiano); }
.bgCiano { background-color: var(--cCiano); }
.bgLGray { background-color: var(--cLGray); }
.bgDBlack { background-color: var(--cDBlack); }
.bgWhite { background-color: var(--cWhite); }
.bgBlack { background-color: var(--cBlack); }

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,
.btn-primary, .btn-secondary { 
  border: 1px solid var(--cLCiano) !important;
  background-color: var(--cLCiano);
  font-family: "neue-haas-grotesk-display";
  font-size: 1em;
  font-weight: 500 !important;
  color: var(--cDBlack) !important;
  padding: 0.5em 1.8em;
  -webkit-border-radius: 0px; 
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-decoration: none; 
 -webkit-transition: all 0.25s ease-in-out 0s; 
  -moz-transition: all 0.25s ease-in-out 0s; 
  -o-transition: all 0.25s ease-in-out 0s; 
  -ms-transition: all 0.25s ease-in-out 0s; 
  transition: all 0.25s ease-in-out 0s; 
  outline: none;
  box-shadow: 0px 3px 6px #666666;
  box-shadow: none;
/*  border-radius: 27px;*/
  text-transform: none;
  white-space: normal;
}

.btn:hover,
.btn.active {
  background-color: var(--cAcqua) !important;
  border-color: var(--cAcqua) !important; 
  color: var(--cDBlack) !important;
}

.btn-primary,
.webform-client-form .form-actions .form-submit,
.webform-client-form .form-actions .webform-previous.form-submit,
.webform-client-form .form-actions .webform-next.form-submit {
  background-color: var(--cLCiano) !important;
  border-color: var(--cLCiano) !important; 
  color: var(--cDBlack) !important;
}

.btn-primary:hover,
.webform-client-form .form-actions .form-submit:hover,
.webform-client-form .form-actions .webform-previous.form-submit:hover,
.webform-client-form .form-actions .webform-next.form-submit:hover {
  background-color: var(--cAcqua) !important;
  border-color: var(--cAcqua) !important; 
  color: var(--cDBlack) !important;
}


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

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


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

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

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

.btn-padding { padding: 0.5em 4em; }

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


/*TOP*/
.top { 
  background: transparent none no-repeat scroll top center / cover; 
  background-color: var(--cWhite);
}

.top .sponsor { display: none; }
.sondaggio-end .top .sponsor { display: block; }

.top .barretta { 
  max-width: 12em;
  width: 100%;
  padding: 0.5em 1em;
  background-color: var(--cDBlack);
  float: right;
  position: relative;
  margin-top: 0.3em;
  margin-top: 1em;
}
.sondaggio-end .top .barretta {  margin-top: 1em; }
.top .barretta p { color: var(--cWhite); text-align: center; font-weight: 500; }

.top-start { background-image: url("../images/motivo.png"); }

.top-brand { background-image: none; }
.top-brand .sponsor { display: block; }

.top .layout-barretta  { min-height: 5em; }

.top .layout-caption {
  background: transparent url("../images/motivo.png") no-repeat scroll top center / cover; 
  background-color: var(--cDBlack);
}

.top .layout-caption .row-caption { min-height: 4em; }

/*START*/
.start .COLSX .visual { position: absolute; width: 150%;  left: -11em; }

/*SONDAGGIO*/
.sondaggio .layout-sondaggio { padding: 0; }

.sondaggio .row-step {
  background: transparent url("../images/motivo.png") no-repeat scroll top center / cover; 
  background-color: var(--cDBlack);
  padding-bottom: 1em;
  padding-top: 1em;
}
.sondaggio .row-step .row-flex { min-height: 3em; padding: 0 15px; }
.sondaggio .row-step .nstep p { color: var(--cWhite); font-weight: 300; margin: 0; }
.sondaggio .row-step .nstep p span { color: var(--cLCiano); font-weight: 600; }



/*INVIATO*/
.inviato .COLSX .scritta { position: relative; left: -5px; left: -10px; }

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

.footer-first .layout-footer p { }


/*  WEBFORM  */
.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: "neue-haas-grotesk-display";
    display: inline;
    float: left;
    margin: 0.5em 0px;
    position: relative;
    font-weight: 500;
    font-size: 1em;
}

.webform-component label,
.webform-component .description {
    font-family: "neue-haas-grotesk-display";
    display: inline;
    float: left;
    margin: 0 0 0.5em;
    font-size: 1em;
    position: relative;
    color: var(--cDBlack);
    font-weight: 500;
    width: 100%;
    line-height: 1.3;
}

.webform-component .description { }

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

.webform-component textarea { resize: none; }


.webform-component .input-group-addon {
  font-family: "neue-haas-grotesk-display";
  border: 0px solid var(--cLGray);
  background:  none no-repeat scroll 0 0 transparent;
  font-weight: 600;
  font-size: 0.9em;
}

.webform-component .form-control { font-size: 0.85em; }

.webform-component.campoform { margin: 0.5em 0px 0.5em; padding: 0; }
.webform-component.campoform input,
.webform-component.campoform select,
.webform-component.campoform textarea {  }

.webform-component .form-type-checkbox,
.webform-component .form-type-radio {
    font-family: "neue-haas-grotesk-display";
    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 {
    font-size: 1em;
    color: var(--cDBlack);
    font-weight: 500;
    line-height: 1.2;
    width: 100%;
    margin: 0.2em;
    padding-left: 1.5em;
}


.webform-component.option-big .form-type-checkbox .control-label,
.webform-component.option-big .form-type-radio .control-label { font-size: 1.2em; }


.webform-component .form-type-checkbox .control-label strong,
.webform-component .form-type-radio .control-label strong { 
    display: block; 
    clear: right; 
    color: var(--cDBlack); 
    font-weight: 500; 
    margin-left: 5px;
}

.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; 
    background: none;
    border: none;
}

.webform-component .form-type-checkbox input,
.webform-component .form-type-radio input { width: 1.5em; height: 1em; }

input[type="radio"] {
  -webkit-appearance: radio;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
/*  width: 16px;*/
/*  height: 16px;*/
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  background-color: transparent;
}


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


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

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

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

.webform-component-fieldset.container { padding: 0; margin-top: 3em; }


.webform-component-fieldset.container .domanda { margin-bottom: 1.5em; }

.webform-component.domanda .form-control { left: 2.5em; width: 80%; }

.webform-component.domanda input { margin-top: 0.3em; }

.webform-component.domanda.label-fake { margin-bottom: 0; }

.webform-component-fieldset.container .domanda.webform-component-select { margin-bottom: 1em; }

.webform-component-fieldset.container .domanda label { position: relative; left: 2em; width: 90%; }

.webform-component.domanda .control-label strong { 
  background-color: var(--cDBlack);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  color: var(--cWhite);
  font-weight: 600;
  font-weight: 500;
  display: inline-block;
  line-height: 1.9em;
  margin-right: 0.5em;
  text-align: center;
  width: 2em;
  height: 2em;

  position: absolute;
  left: -2.5em;
  top: -0.3em;
}


.webform-component-fieldset.container .domanda .form-radios { }
.webform-component-fieldset.container .domanda .form-type-checkbox,
.webform-component-fieldset.container .domanda .form-type-radio { left: 0.5em; width: 50%; }
.webform-component-fieldset.container .domanda .form-type-checkbox label,
.webform-component-fieldset.container .domanda .form-type-radio label { font-size: 0.85em; font-weight: 500; line-height: 1.5; }

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


.webform-component-fieldset.container .radio-set-value .form-type-radio { width: 18%; left: 0em; }
.webform-component-fieldset.container .radio-set-value .form-type-radio label { 
  font-weight: 500;
  width: 100%;
  padding: 1em 0 0;
  position: relative;
  text-align: center;
  margin: 1em 0 0 0;
  border-top: 1px solid var(--cBlack);
}
.webform-component-fieldset.container .radio-set-value .form-type-radio label em { 
  clear: both; 
  display: block;
  font-size: 0.8em;
  font-style: normal;
 }
.webform-component-fieldset.container .radio-set-value .form-type-radio input { 
  width: 100%;
  z-index: 1;
  position: absolute;
  top: -1em;
  outline: none;
  width: 1em;
  height: 1em;
/*  border: none;*/
  margin-top: 0.5em;
  margin-right: 0;
  margin-left: 0;

  width: 1.5em;
  left: 2em;

  width: 100%; left: 0em;
  width: 1.5em;
  left: 2.1em;
}


.webform-component.webform-component--container-step-end--stepend-modulo-dx--campi { padding: 0 !important; }
.webform-component-markup .campi { font-weight: 500; font-size: 0.75em; margin: 1em 0 0; }

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

.webform-component.privacy { margin: 1em 0 0; }
.webform-component.privacy a { color: var(--cCiano); }
.webform-component.privacy .control-label {  font-size: 0.9em; line-height: 1.2; font-weight: 500; }


.webform-client-form .form-actions { 
  position: relative;
  text-align: right;
  margin-top: 0em;
  margin-bottom: 0;
}

.webform-client-form .webform-client-form-109 { }

.webform-client-form .form-actions .webform-next.form-submit,
.webform-client-form .form-actions .webform-previous.form-submit,
.webform-client-form .form-actions .form-submit {  margin-top: 0em; left: -3em; }

.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 { 
  font-family: "neue-haas-grotesk-display";
/*  border: none;*/
/*  color: var(--cBlack) !important;*/
  margin-top: -8em;
  font-size: 1em;
  padding: 0.5em 2em;
  text-shadow: none;
  text-transform: none;
  font-weight: 500;
  z-index: 1;
/*  transition: all 0.25s ease-in-out 0s;*/
/*  text-transform: uppercase;*/
/*  border-radius: 0;*/
  position: relative;
  outline: none;
  width: auto;

}

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


.webform-submit.button-primary:hover,
.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: 16px; }

    }

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

        body { font-size: 17px; }
    }

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

        body { font-size: 18px; }

    }

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

        body { font-size: 19px; }

    }

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

        body { font-size: 20px; }

        /*START*/
        .start .COLSX .visual { width: 200%; left: -13em; }

    }

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


        /*TOP*/
        .top .barretta { margin-right: -7em; float: right; }

    }


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


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

    }

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

        h2.title, .h2.title { font-size: 1.5em; }
        .btn, .btn-primary, .btn-secondary { font-size: 0.9em; }

        .webform-component-fieldset.container .radio-set-value .form-type-radio input { left: 1.7em; }

    }

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



    }

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

        .btn, .btn-primary, .btn-secondary { font-size: 0.8em; }

        /*TOP*/
        .top .layout-caption .h1 { font-size: 1.8em; }

        /*START*/
        .start .COLSX .visual { left: -9em; }

        /*WEBFORM*/
        .webform-component.domanda .control-label strong { 
/*          text-indent: -2px; */
        }

        /*INVIATO*/
        .inviato .h4 { font-size: 1.1em; }

        .webform-component-fieldset.container .radio-set-value .form-type-radio input { left: 1.2em; }

    }


    /*HOOK EXPLORER11*/
    @media all and (max-width : 991px) and (-ms-high-contrast:none) { 


    }

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

    }

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

        .row-flex  { display: block; }

        /*TOP*/
        .top .layout-barretta { padding: 0em 0 0; min-height: unset; }
        .top .barretta { max-width: 100%; width: 100%; margin-top: 0em; }
        .top .sponsor { text-align: center; }
        .top .barretta p { text-align: center; }
        .top .layout-caption .h1 { text-align: center; }

        .sondaggio-end .top .layout-barretta { padding: 1em 0 0; }
        .sondaggio-end .top .barretta { margin-top: 1em; }



        /*START*/
        .start .COLSX .visual { opacity: 0.4; top: 2em; left: 0; width: 100%; }
        .start .COLDX  { text-align: center; }

        /*SONDAGGIO*/
        .sondaggio .row-step .nstep p { line-height: 1.5; }

        /*WEBFORM*/
        .webform-component-fieldset.container .radio-set-value .form-type-radio label { border-top: 0px solid var(--cBlack); }
        .webform-component-fieldset.container .radio-set-value .form-type-radio input { 
/*          width: 100%; left: 0em;*/
          left: 1.5em;
          background: none;
          background-color: #FFFFFF;
          opacity: 1;
          box-shadow: none;
        }



        .webform-component-fieldset.webform-component--container-step-end--stepend-modulo-dx { padding: 0 15px; }
        .webform-client-form .form-actions .webform-next.form-submit,
        .webform-client-form .form-actions .webform-previous.form-submit,
        .webform-client-form .form-actions .form-submit {  margin-top: 1em; left: -1em; }

        /*INVIATO*/
        .inviato .guida { padding-top: 3em; }

    }


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

      .btn, .btn-primary, .btn-secondary { font-size: 0.65em; }

    }



/*Se desideri scegliere come target solo i browser Webkit su Mac (Safari e Chrome), 
puoi associare questo suggerimento alla query multimediale proprietaria di webkit come segue:*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* this will target only Mac Safari and Chrome browsers */

}

/*Allo stesso modo, se si desidera che stili specifici siano indirizzati ai singoli browser Mac, 
è possibile effettuare le seguenti operazioni:*/
/*if(navigator.userAgent.indexOf('Mac') > 0)*/
/*$('body').addClass('mac-os');if(navigator.userAgent.indexOf('Safari') > 0)*/
/*$('body').addClass('safari');if(navigator.userAgent.indexOf('Chrome') > 0)*/
/*$('body').addClass('chrome');*/


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

