/**
 * 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/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap');

:root {
    --cArancio: #e84e0e;
    --cDArancio: #ce4709;
    --cLBlu: #3399cc;
    --cELCiano: #6ed2e7;
    --cLCiano: #30a2b8;
    --cCiano: #37a2b8;
    --cDCiano: #297b8c;
    --cRame: #ad4b04;
    --CAcciaio : #adb0b7;
    --cCartone: #c8ae81;
    --cPlastica: #7288b9;
    --cBlack: #043533;
    --cWhite: #FFFFFF;
}


/* SYSTEM */

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

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

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

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

#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(--cWhite);
    background-color: var(--cWhite);
    font: 16px/1.2 Helvetica,Arial,sans-serif;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: var(--cBlack);
    margin: 0px 0px;
}

h1, h2, h3, h4, h5, h6, p,
.h1, .h2, .h3, .h4, .h5, .h6 { 
    font-family: Helvetica,Arial,sans-serif;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 0px;
    color: var(--cBlack);
    line-height: 1.2;
}

h1, .h1 { font-size: 3.125em; line-height: 1; } /*75*/

h1.small, .h1.small { font-size: 2.5em; line-height: 1; } /*60*/

h2.big, .h2.big { font-size: 2em; line-height: 1.2; } /*48*/

h2, .h2 { font-size: 1.667em; line-height: 1.2; } /*40*/

h3, .h3 { font-size: 1.458em; line-height: 1.2; } /*35*/

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

h5.big, .h5.big { font-size: 0.917em; line-height: 1.2; } /*22*/

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

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

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


p, ul { 
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    color: var(--cBlack);
    line-height: 1.2;
    font-weight: 400;
    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: 1em; }
ul.list-unstyled-custom {  list-style: outside none none; padding-left: 0em; }
ul.list-unstyled-custom li span { color: var(--cArancio); font-weight: 700; }
ul.list-unstyled-custom li { text-align: left; border-bottom: 1px solid var(--cBlack); margin: 0.3em 0 0.3em;  padding-bottom: 0.3em; }
ul.list-unstyled-custom li:last-child { border-bottom: none 0; padding-bottom: 0em; }

ul.list-bullet { padding-left: 1.5em; list-style: outside none none;  }
ul.list-bullet li { display: block; margin: 0.3em 0 0.8em; }
ul.list-bullet li span { color: var(--cDArancio); font-weight: 500; }
ul.list-bullet li:before {
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e804";
    font-family: 'fontello';
    font-size: 2em;
    float: left;
    margin-left: -1.1em;
    color: var(--cArancio);
    margin-top: 0;
    position: relative;
    top: -0.3em;
    left: 0.5em;
}

ul.list-icon { padding-left: 0em; list-style: outside none none;  }
ul.list-icon li { display: block; margin: 0.3em 0 0.8em; }
ul.list-icon li span { margin-right: 0.5em; }




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

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

.marker, .form-required, .request { color: var(--cBlack); }

.evidenza { color: var(--cArancio); }
.Arancio { color: var(--cArancio); }
.DArancio { color: var(--cDArancio); }
.LBlu { color: var(--cLBlu); }
.ELCiano { color: var(--cELCiano); }
.LCiano { color: var(--cLCiano); }
.Ciano { color: var(--cCiano); }
.DCiano { color: var(--cDCiano); }
.Rame { color: var(--cRame); }
.Acciaio { color: var(--cAcciaio); }
.Cartone { color: var(--cCartone); }
.Plastica { color: var(--cPlastica); }
.White { color: var(--cWhite); }
.Black, .CText { color: var(--cBlack); }

.fprimary { font-family: 'Roboto', sans-serif; }
.fsecondary { font-family: 'Lato', sans-serif; }

.bgArancio { background-color: var(--cArancio); }
.bgDArancio { background-color: var(--cDArancio); }
.bgLBlu { color: var(--cLBlu); }
.bgELCiano { background-color: var(--cELCiano); }
.bgLCiano { background-color: var(--cLCiano); }
.bgCiano { background-color: var(--cCiano); }
.bgDCiano { background-color: var(--cDCiano); }
.bgRame { background-color: var(--cRame); }
.bgAcciaio { background-color: var(--cAcciaio); }
.bgCartone { background-color: var(--cCartone); }
.bgPlastica { background-color: var(--cPlastica); }
.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(--cArancio) !important;
  background-color: var(--cArancio);
  font-family: 'Roboto', sans-serif;
  font-size: 1em; 
  font-weight: 700;
  color: var(--cWhite) !important;
  padding: 0.4em 3em;
  -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;
}

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

.btn-primary,
.webform-client-form .form-actions .form-submit {
  background-color: var(--cArancio) !important;
  border-color: var(--cArancio) !important; 
  color: var(--cWhite) !important;
}

.btn-primary:hover,
.webform-client-form .form-actions .form-submit:hover {
  background-color: var(--cCiano) !important;
  border-color: var(--cCiano) !important; 
  color: var(--cWhite) !important;
}


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

.btn-secondary:hover {
  background-color: var(--cArancio) !important;
  border-color: var(--cArancio) !important; 
  color: var(--cWhite) !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: 400;
  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, #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) */
}


/*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(--cBlack); }
.scroll-to-top a:focus, .scroll-to-top a:hover { color: var(--cBlack); }
.scroll-to-top:hover {    -webkit-filter: invert(.2);  filter: invert(.2); }
.scroll-to-top i { color: var(--cBlack); font-size: 1.2em; line-height: 0; }


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

      .row-flex {   display: block; }

      h1, .h1 { font-size: 3em; }

      .btn-secondary { border: 1px solid var(--cCiano) !important; }
      .btn-secondary:hover {  border: 1px solid var(--cArancio) !important; }

  }


/*STRUCTURE*/
.structure { max-width: 2000px; }
/*.structure .container-fluid.grid { padding-left: 0; padding-right: 0; }*/

.barretta { margin: 0em 0 1em; }

.boxes {
  padding: 0.4em 1em;
  /*float: left;*/
  width: auto;
  display: inline-block;
  position: relative;
}

/*TOP*/
.top .row-logo { text-align: right; }

/*SUBTITLE*/
.subtitle { background-color: var(--cCiano); }

/*HEADER*/
.header { margin-bottom: 3em; }
.header .row-content .COL-SX { padding-right: 0em; }
.header .row-content .COL-SX .grid-title { padding: 3em 0 1em; }

.header .row-content .COL-DX .absolute { 
  position: absolute;
  bottom: -4.4em;
  left: -7em;
  left: -6em;
  width: 200%;
}

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

  /*HEADER*/
  .header .row-content .COL-DX .absolute {   bottom: -5.6em; }

}

/*SANIFICATORE*/
.sanificatore .row-content .COL-SX { padding: 0em; }
.sanificatore .row-content .COL-SX .padding-custom { padding-bottom: 0.2em; }

/*GARANTITI*/
.garantiti  .layout-top .row-top .visual img { position: absolute; left: 0; top: -5em; }

.garantiti .layout-content .row-content .caption { padding-top: 0.3em; }
.garantiti .layout-content .row-bottom .icona { padding-right: 0; margin-left: 8.33333333%; }

/*PROBLEMA*/
.problema .row-content .boxes { padding: 1em 3em;  }
.problema .row-content .COL-SX .absolute { position: absolute;  top: -10.5em; left: 0; }
.problema .row-content .COL-SX .front { position: relative; top: -1em; left: 1em; }

/*RESISTE*/
.resiste .box { }
.resiste .box .grid-row { background-color: var(--cWhite); min-height: 3em; padding: 0.5em 0.2em; }
.resiste .box .grid-row1 { border-bottom: 5px solid var(--cDArancio); }
.resiste .box .grid-title { background: transparent none repeat-x scroll left top; background-color: var(--cWhite); padding: 0; }
.resiste .box .grid-title p { line-height: 1; }
.resiste .box-rame .grid-title { background-image: url("../images/gradient_rame.jpg"); }
.resiste .box-acciaio .grid-title { background-image: url("../images/gradient_acciaio.jpg"); }
.resiste .box-cartone .grid-title { background-image: url("../images/gradient_cartone.jpg"); }
.resiste .box-plastica .grid-title { background-image: url("../images/gradient_plastica.jpg"); }


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

  .resiste .box .grid-title p { margin-top: 1em; }
  .resiste .box-acciaio .grid-title p { margin-top: 0.5em; }

}


/*SOLUZIONE*/
.soluzione .row-content .padding-tasto { padding-top: 1em; }
.soluzione .row-content .grid-marchi { padding: 0em; padding-left: 1em; }

/*SISTEMA*/
.sistema { background: #dddddd url("../images/sistema_bg.jpg") no-repeat scroll center top / cover ; background-color: var(--cWhite); }

.sistema .box-step { position: absolute; top: 0; left: 0; }
.sistema .box-step img { position: relative; }
.sistema .box-step.step1 { top: 0em; left: 22em; }
.sistema .box-step.step1 img { top: 4em; left: -7em; }
.sistema .box-step.step2 { top: 1em; left: 24em; }
.sistema .box-step.step2 img { top: -4em; left: -4em; }
.sistema .box-step.step3 { top: 0em; left: 35em; }
.sistema .box-step.step3 img { top: -4em; left: -6em; }
.sistema .box-step.step4 { top: -2em; left: 37em; }
.sistema .box-step.step4 img { top: 3em; left: 0.5em; }
.sistema .box-step.step4 .h5 { text-align: center; }
.sistema .box-step.step5 { top: 10em; left: 36em; }
.sistema .box-step.step6 { top: 13em; left: 23em;}
.sistema .box-step.step7 { top: 13em; left: 11em; }

.sistema .box-end { position: relative; padding-left: 3em; display: inline-block; }

/*PERSISTENZA*/

  /* MICRORGANISMI-BULLET */
  .microrganismi-bullet {  text-align: center; z-index: 1;}
  .microrganismi-bullet .absolute .action-open { 
    position: absolute;
    left: 70%;
    top: 25%;
    width: 2em;
    height: 2em;
  }
  .microrganismi-bullet .action-open { 
    z-index: 2; 
    cursor: pointer; 
    font-size: 1em; 
    line-height: 1; 
    border: 1px solid #FFF; 
	  -moz-border-radius: 50%;
	  -webkit-border-radius: 50%;
	  border-radius: 50%;
  }
  .microrganismi-bullet .action-open:hover {  }

  .microrganismi-bullet .plus { z-index: 20; }
  .microrganismi-bullet .plus svg  #tondo {  }
  .microrganismi-bullet .plus svg  #icona {  }

  .microrganismi-bullet .plus svg .cls-1 {
   -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;
    fill: var(--cArancio);
    border: 1px solid #FFF;
  }
  .microrganismi-bullet .plus svg:hover .cls-1 { fill: var(--cDArancio); }

  .microrganismi-bullet.spento { display: none !important; }

  /* MICRORGANISMI-CAPTION */
  .microrganismi-caption { 
    background: transparent none no-repeat scroll center center / auto; 
    background-color: var(--cWhite); 
    display: none !important; 
  }
  .microrganismi-icon-icon1 .microrganismi-caption { background-image: url("../images/icon_virus_big.png"); }
  .microrganismi-icon-icon2 .microrganismi-caption { background-image: url("../images/icon_funghi_big.png"); }
  .microrganismi-icon-icon3 .microrganismi-caption { background-image: url("../images/icon_batteri_big.png"); }
  .microrganismi-caption .icon-custom { cursor: pointer; float: right; font-size: 1em; margin-right: 5px; }


  .microrganismi-caption.animated { 
    background-color: var(--cWhite);
    position: absolute;
    display: block;
    display: flex!important;
    padding: 1em;
    padding: 0.8em 0.8em;
    top: -3em;
    width: auto;
    height: auto; 
    z-index: 99;
    position: relative;
    top: 0em;
    min-height: 12em;
  }

.microrganismi-caption.spento { z-index: -1; display: none !important; }


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

      .microrganismi-caption  .box-title { margin-bottom: 0.5em; }

  }




/*PROTEGGI*/
.proteggi .row3 .boxes {   padding: 1em 2em; }

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

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

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

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

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

.webform-component .description { }

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

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

.webform-component textarea { resize: none; }

.webform-component .form-type-checkbox,
.webform-component .form-type-radio {
    font-family: 'Roboto', 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: var(--cBlack); 
    font-weight: 400;
    line-height: 1.2;
    width: 100%;
    margin: 0em;
    padding-left: 1.5em;
}

.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.custom-full .form-type-checkbox,
.webform-component.custom-full .form-type-radio { width: 100%; }

.webform-component.custom-full .form-item { margin-bottom: 0.5em; padding-right: 3em; margin-top: 1em; }


.webform-component.custom-full em { 
  font-weight: 400;
  color: var(--cBlack);
  font-style: normal;
  clear: both;
  display: block;
  position: relative;
}

.webform-component.custom-full em > em { 
  font-weight: 400;
  color: var(--cBlack);
  clear: right;
} 

.webform-component .form-control { color: var(--cCiano); }
.webform-component .form-control::-webkit-input-placeholder { color: var(--cBlack);  } /* Chrome/Opera/Safari */
.webform-component .form-control::-moz-placeholder { color: var(--cBlack);   } /* Firefox 19+ */ 
.webform-component .form-control:-ms-input-placeholder { color: var(--cBlack);   } /* IE 10+ */ 
.webform-component .form-control:-moz-placeholder { color: var(--cBlack);   } /* 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 { width: 100%; margin-top: 0; padding: 0 15px; }

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

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

.webform-component-markup .campi { font-weight: 400; font-size: 0.833em; margin-top: -3em; margin-left: 15px; }

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

.webform-component.privacy { margin-top: 1em; }
.webform-component.privacy a  { color: var(--cLBlu); font-weight: 400; text-decoration: underline; }

.webform-component.privacy .control-label { text-transform: none; font-size: 0.833em; line-height: 1.2; font-weight: 400; color: var(--cBlack); }


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

.webform-client-form .form-actions .form-submit { 
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  padding: 0.4em 3em;
  font-weight: 400;
  text-shadow: none;
  text-transform: none;
  z-index: 1;
  text-transform: uppercase;
/*  border-radius: 0;*/
/*  background: var(--cDBlu) none no-repeat scroll 0 0;*/
  position: relative;
  outline: none;
  width: auto;

}

.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: 18px; }
    }

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

        body { font-size: 15px; }

    }

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

    }


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


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

        ul.list-icon li { margin: 0.3em 0 0.3em; }

        .barretta { margin-top: 0.5em; }

        /*HEADER*/
        .header .row-content .COL-DX .front { margin-top: 2em; }
        .header .row-content .COL-DX .absolute { bottom: -4.7em;  }

        /*SOLUZIONE*/
        .soluzione .row-content .COL-SX .padding-bottom { padding-bottom: 2em; }
        .soluzione .row-content .grid-marchi { padding: 1em 0 0.5em 1em;  }

        /*SISTEMA*/
        .sistema .h5.big { font-size: 1em; }

        .sistema .row-content .visual { max-width: 50%; }

        .sistema .box-step.step1 { top: 3em; }
        .sistema .box-step.step2 { top: 4em; }
        .sistema .box-step.step3 { top: 3em; }
        .sistema .box-step.step4 { top: 2em; }
        .sistema .box-step.step4 img { top: 4em; }
        .sistema .box-step.step5 { top: 16em; }
        .sistema .box-step.step6 { top: 16em; }
        .sistema .box-step.step7 { top: 14em; left: 11em; }

        /*  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-size: 1em; }

    }

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

        /*HEADER*/
        .header .row-content .COL-DX .front { margin-top: 4em; }
        .header .row-content .COL-DX .absolute { bottom: -5.4em;  }

    }



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

      /*GARANTITI*/
      .garantiti  .layout-top .row-top .visual img { max-width: 70%; }

    }

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

        /*HEADER*/
        .header .row-content .COL-DX .front { margin-top: 4em; }
        .header .row-content .COL-DX .absolute { bottom: -4.525em; }

    }

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

        /*HEADER*/
        .header .row-content .COL-DX .front { margin-top: 5em; }
        .header .row-content .COL-DX .absolute { bottom: -5.05em;  }

    }

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

        ul.list-unstyled-custom { font-size: 0.9em; }

        ul.list-icon li span img { max-width: 20%; }

        /*TOP*/
        .top .row-logo img { max-width: 40%; padding: 0.5em 0; }

        /*SUBTITLE*/
        .subtitle .row-subtitle .h5 { font-size: 1em; }

        /*GARANTITI*/
        .garantiti  .layout-top .row-top .visual img { max-width: 70%; }
        .garantiti .layout-content .row-bottom .icona { margin-left: 5.33333333%; }

        /*RESISTE*/
        .resiste .box { padding: 0 5px; }
        .resiste .box .h6.small { font-size: 0.8em; line-height: 1.4; }

        /*SOLUZIONE*/
        .soluzione .row-content .grid-marchi img { max-width: 30% }

        /*SISTEMA*/
        .sistema .h5.big {  font-weight: 700; }

        .microrganismi-icon { padding: 0 5px; }
        .microrganismi-bullet .absolute .action-open { top: 30%; left: 85%; }
        .microrganismi-caption { background-size: contain; }
        .microrganismi-caption  .box-title { margin-bottom: 0.5em; }

    }

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

        .container-fluid { padding-right: 0; padding-left: 0; }

        h1, .h1 { font-size: 2.35em; }
        h1.small, .h1.small { font-size: 2.2em; }
        h2, .h2 { font-size: 1.55em; }
        h3, .h3 { font-size: 1.4em; }
/*        h5, .h5 { font-size: 0.8em; }*/

        br { display: none; }
        br.br-xs { display: block; }

        .btn, .btn-primary, .btn-secondary { font-size: 1.1em; padding: 0.4em 3em; min-width: 14em; }

        ul.list-icon li { display: block; margin: 0.3em 0 0.3em; }
        ul.list-icon li:first-child { margin-top: 1.5em; }
        ul.list-icon li span img { max-width: 20% }

        ul.list-unstyled-custom { font-size: 0.9em; }
        ul.list-unstyled-custom li,
        ul.list-unstyled-custom li span { color: var(--cWhite); }
        ul.list-unstyled-custom li { margin: 0.5em 0 0.5em; }


        .text-center-xs { text-align: center; }

        .barretta { max-width: 30%; margin-top: 0.5em; }


        /*TOP*/
        .top .row-logo { text-align: center; }
        .top .row-logo img { max-width: 80%; padding: 1em 0; }

        /*SUBTITLE*/
        .subtitle { background-color: var(--cArancio); }
        .subtitle .boxes { display: block; width: 100%; padding: 1em 0; text-align: center; }

        /*HEADER*/
        .header { margin-bottom: 0em; }
        .header .row-content .COL-SX { padding-right: 15px; }

        /*SANIFICATORE*/
        .sanificatore .row-content .COL-SX { padding: 0em 15px; }

        /*GARANTITI*/
        .garantiti .layout-content .row-bottom .icona { margin-left: 0; }

        /*PROBLEMA*/
        .problema  { 
          background: transparent url("../images/problema_mobile_bg.png") no-repeat scroll right 5px; 
          background-size: 22% auto;
          background-size: 16% auto;
          background-color: var(--cDArancio); 
        }
        .problema .row-content .boxes { 
          background: transparent url("../images/problema_mobile_sars_virus.png") no-repeat scroll 98% 10px;
          background-size: 12% auto;
          background-color: var(--cCiano);
          padding: 1em 2em;
          display: block;
          width: 100%;
          margin-top: 1em; 
        }

        /*RESISTE*/
        .resiste .row-title .h2 { font-size: 1.25em;  }

        .resiste .box { margin-bottom: 2em; }
        .resiste .box:last-child { margin-bottom: 0em; }
        .resiste .box .h4 { font-size: 1.5em;  }
        .resiste .box .h6 { font-size: 1em;  }
        .resiste .box .grid-title p { line-height: 1.2; font-size: 1.25em; }

        /*SOLUZIONE*/
        .soluzione .row-content .grid-marchi { padding: 1em 15px;  }
        .soluzione .row-content .grid-marchi img { max-width: 30% }

        /*PERSISTENZA*/
        .persistenza .row-title .h2 { font-size: 1.3em; }

        .microrganismi-icon { margin: 0em 0 1em; }
/*        .persistenza .microrganismi-icon:last-child { margin: 0em 0 0em; }*/

        .microrganismi-bullet,
        .microrganismi-caption,
        .microrganismi-caption.spento { 
          background: none !important; 
          display: block !important; 
          position: relative; 
          float: left; 
          z-index: 1;
          opacity: 1 !important;
        }

        .microrganismi-bullet .absolute,
        .microrganismi-caption  .box-title { display: none; }

        .microrganismi-bullet {  width: 34% !important; padding-bottom: 1em; padding-right: 0.5em; }

        .microrganismi-caption { width: 66% !important;  }

        /*PROTEGGI*/
        .proteggi .row2 .h2 { font-size: 1.3em; }

        .proteggi .row3 .boxes { padding: 1em 1em; }
        .proteggi .row3 .boxes .h3 { font-size: 1.3em; }

        /*  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-size: 1em; }


        .webform-component.custom-full .form-item { padding-right: 0em; }
        .webform-component.custom-full em { clear: none; display: inline; }
        .webform-component.custom-full label { font-size: 0.95em; }

        .webform-component-markup.webform-component--campi { width: 100%; }
        .webform-component-markup .campi { font-size: 0.9em;  margin-top: 1em; }

        .webform-component.privacy .control-label { font-size: 0.9em; }

        .webform-client-form .form-actions { text-align: center; margin-top: 2em; }
        .webform-client-form .form-actions .form-submit { font-size: 1.2em; width: 100%; padding: 0.4em 1em; }


    }

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

      .resiste .box .grid-title p { margin-top: 0.6em; }
      .resiste .box-acciaio .grid-title p { margin-top: 0.6em; }

    }



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

        body { font-size: 13px; }

    }

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

    /*==========  CROSS BROWSER  ==========*/

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

}


