/**
 * 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=Montserrat:400,500,700,800&display=swap');

:root {
    --cBlu: #0069a9;
    --cDBlu: #354766;
    --cArancio: #ec680d;
    --cCiano: #0093d3;
    --cLGray: #eae9e9;
    --cGray: #a9acaf;
    --cAntra: #556370;
    --cDAntra: #3f434c;
    --cBlack: #000000;
    --cLWhite: #f4f3f3;
    --cWhite: #FFFFFF;
}


/* SYSTEM */

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

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

.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);
    font: 16px/1.6 Helvetica,Arial,sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--cBlack);
    margin: 0px 0px;
}

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

h1, .h1 { font-weight: 400; font-size: 3em; line-height: 1; } /*65*/

h1.big, .h1.big { font-weight: 400; font-size: 3.5em; line-height: 1; } /*70*/

h2, .h2 { font-weight: 400; font-size: 2.65em; line-height: 1; } /*53*/

h3, .h3 { font-weight: 400; font-size: 1.75em; line-height: 1.6; } /*35*/

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

h5, .h5 { font-weight: 400;  font-size: 0.95em; line-height: 1.6; } /*18*/

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

p, ul { 
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: var(--cBlack);
    line-height: 1.6;
    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: 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; }

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

.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(--cBlu); 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(--cBlu); }
.Blu { color: var(--cBlu); }
.DBlu { color: var(--cDBlu); }
.Arancio { color: var(--cArancio); }
.Ciano { color: var(--cCiano); }
.LGray { color: var(--cLGray); }
.Gray { color: var(--cGray); }
.Antra { color: var(--cAntra); }
.DAntra { color: var(--cDAntra); }
.LWhite { color: var(--cLWhite); }
.White { color: var(--cWhite); }
.Black, .CText { color: var(--cBlack); }

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


.bgBlu { background-color: var(--cBlu); }
.bgDBlu { background-color: var(--cDBlu); }
.bgArancio { background-color: var(--cArancio); }
.bgCiano { background-color: var(--cCiano); }
.bgLGray { background-color: var(--cLGray); }
.bgGray { background-color: var(--cGray); }
.bgAntra { background-color: var(--cAntra); }
.bgDAntra { background-color: var(--cDAntra); }
.bgLWhite { background-color: var(--cLWhite); }
.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(--cBlack) !important;
  background-color: var(--cBlack);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  color: var(--cWhite) !important;
  padding: 0.5em 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;
  box-shadow: 0px 3px 6px #666666;
  box-shadow: none;
/*  border-radius: 27px;*/
  text-transform: none;
}

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

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

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


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

.btn-secondary:hover {
  background-color: var(--cBlu) !important;
  border-color: var(--cBlu) !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(--cBlack) !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(--cBlack);
    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 { var(--cDBlu); }
.scroll-to-top:hover {    -webkit-filter: invert(.2);  filter: invert(.2); }
.scroll-to-top i { color: var(--cBlack); font-size: 1.6em; line-height: 0; }


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

/*HEADER*/
.header { background: #000000 url('../images/header_bg.jpg') no-repeat scroll bottom center / cover; 
/*  min-height: 55em;*/
  padding-top: 6em;
  padding-bottom: 10em;
  padding-top: 0em;
  padding-bottom: 15em;
}

.header .tlogo { text-align: right; position: relative; right: -15px; }

.header .padding-logo { padding-bottom: 5em; padding-right: 60px; }
.header .valo { position: relative; top: 1em; }
.header .valo .HL { padding: 0 30px 0 0;  position: relative; }
/*.header .valo .HL .padding-logo { padding-right: 60px; }*/
.header .valo .HR { padding: 0 0 0 30px; position: relative; left: 30px; left: 40px; }
/*.header .valo .HR .padding-logo { padding-right: 60px; }*/


.header .elements .col-md-2 { width: 18%; padding: 0 8px; }
/*.header .element img { border: 1px solid #FFF; }*/

.header .colors { position: absolute; bottom: 12em; padding-right: 90px; }
/*.header .colors img { width: 110%; }*/

/*ACCESSORI*/
.accessori { background: #f4f3f3 url('../images/accessori_bg_bottom.jpg') no-repeat scroll bottom right / auto; 
  background-size: contain; 
  padding-top: 1em;
  padding-bottom: 8em; 
}

.accessori .abox { padding-bottom: 1em;  }
.accessori .abox.even { padding-left: 0; padding-right: 0; }

.accessori .abox .caption { -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; }
.accessori .abox .caption  .h5 { margin: 0; font-size: 1em; line-height: 1.2; padding: 0.5em; }

/*CONTATTI*/
.contatti { padding-top: 2em; padding-bottom: 0; }

/*VIDEO*/
.video { background: #000000 url('../images/video_bg.png') no-repeat scroll top center / cover; }

.video .row1 .h3 { margin: 0; }
.video .row1 .icon { position: absolute; top: 1em; }

.video .caption {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video .play.on img:hover { 
  -webkit-filter: invert(.2);  filter: invert(.2);
}


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

/*  WEBFORM  */

.webform-client-form .show { display: block !important; }

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

.webform-component label,
.webform-component .description {
    font-family: 'Montserrat', sans-serif;
    display: inline;
    float: left;
    margin: 0 0 5px;
    font-size: 0.95em;
    position: relative;
    color: var(--cBlack);
    font-weight: 400;
}

.webform-component.evidenza label,
.webform-component.evidenza .description,
.webform-component.evidenza label .form-required { font-weight: 700 !important; color: var(--cBlu) !important; }



.webform-component.evidenza  label[for=edit-submitted-domande-promozione-rpromozione] { font-size: 1.15em !important; margin-bottom: 1em; }

.webform-component .description { }

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

.webform-component textarea { resize: none; }

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

.webform-component .form-type-checkbox .control-label,
.webform-component .form-type-radio .control-label { color: var(--cBlack); }



.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: 33%;
    width: 20%;
    width: 25%;
}


.webform-component.check-custom label strong { 
    display: block; 
    clear: right; 
    color: var(--cBlack); 
    font-weight: 400; 
    margin-left: 2px;
    margin-bottom: 5px;
    width: 1em;
    text-align: center;
    font-size: 1.25em;
}

.webform-component.check-custom label { 
    color: var(--cBlack);
    font-weight: 400; 
    width: 100%;
    font-size: 0.95em;
    font-size: 0.9em;
    margin: 0.2em 0 0;
}

.webform-component.check-custom .form-type-checkbox,
.webform-component.check-custom .form-type-radio { width: 33%; width: 5em; position: relative;  }


.webform-component.check-custom.color label {  }

.webform-component.check-custom.full label { 
/*    font-size: 1em;*/
/*    font-family: 'Montserrat', sans-serif;*/
/*    color: #6c6e6e; */
}

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

.webform-component.check-custom .form-type-checkbox img,
.webform-component.check-custom .form-type-radio img { 
    background-color: #FFFFFF;
}

.webform-component.check-custom .form-type-checkbox.highlight img,
.webform-component.check-custom .form-type-radio.highlight img { 
    background-color: var(--cBlu);
}

.webform-component.check-custom .form-type-checkbox input,
.webform-component.check-custom .form-type-radio input { 

/*display: none; */

    position: absolute; 
    z-index:-1000; 
    left:-1000px; 
    left:0px; 
    top: auto;
    clip: rect(0 0 0 0);
    overflow: hidden;  
    height:1px; 
    width:1px; 
    margin:-1px; 
    padding:0; 
    border:0;
}

.webform-component.check-custom .form-type-checkbox label,
.webform-component.check-custom .form-type-checkbox .description,
.webform-component.check-custom .form-type-radio label,
.webform-component.check-custom .form-type-radio .description { 

}

.webform-component.check-custom .form-required {  }


.webform-component.check-custom-inline label { margin-bottom: 1.7em; }

.webform-component.check-custom-inline label strong { 
    display: inline-block; 
    clear: none; 
    margin-left: 10px;
    width: auto;
    text-align: left;
    position: absolute;
    margin: 0px 0 0 10px;
}

.webform-component .box-header { text-align: center;  margin-bottom: 2em;  }
.webform-component .box-header h2 { margin-bottom: 0.5em; }
.webform-component .box-header h2 span { font-size: 65%;  }



.webform-component .form-control { color: var(--cBlu); }
.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; padding: 0; margin: 0 0 1em; float: left; }
.webform-client-form .panel-body { padding: 0; }


.webform-component-fieldset.domande fieldset { order: 3; }

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

.webform-component-markup .campi { font-size: 0.8em; margin: 0.5em 0; }

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

.webform-component.privacy { margin: 0; padding-left: 40px; }

.webform-component.privacy .control-label { font-size: 0.8em; line-height: 1.2; color: var(--cBlack); }

.webform-client-form .form-actions { 
  top: -4em;
  top: -3em;
  position: relative;
  text-align: right;
  width: 100%;
  margin: 0;
}

.webform-client-form .form-actions .form-submit { 
    color: #FFFFFF;
    line-height: 1;
    margin: 0;
    font-size: 1.25em;
    padding: 0.5em 1em;
    text-shadow: none;
    text-transform: uppercase;
    width: auto;
}

.webform-client-form .form-actions .form-submit:hover { background-color: var(--cBlack); }




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

    }


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


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

      /*HEADER*/
      .header .valo .HL,
      .header .valo .HR { padding: 0 15px; }
      .header .padding-logo { padding-right: 35px; }

      /*ACCESSORI*/
      .accessori { background-size: auto;  }

      /*VIDEO*/
      .video .play img { max-width: 25%; margin-top: 1em;}

      /*  WEBFORM  */
      .webform-component.evidenza  label[for=edit-submitted-domande-promozione-rpromozione] { font-size: 1.1em !important; }

    }

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

    }

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

      h2, .h2 { font-size: 2.2em; }

      /*HEADER*/
      .header .tlogo img { max-width: 30%; }

      .header .padding-logo { padding-right: 0; }
      .header .valo .HR { left: 0; }

      .header .elements .col-md-2 { width: 20%; }

      .header .colors { bottom: 10em; padding-right: 40px; padding-right: 2em; }

      /*ACCESSORI*/
      .accessori { padding-bottom: 4em; }
      .accessori .abox.odd { padding-left: 0; }
      .accessori .abox { padding: 0 5px 1em !important; }
      .accessori .abox .caption .h5 { font-size: 0.8em; }

      .accessori .aboxes-mobile .abox .grid-flex-left { width: 62%; }
      .accessori .aboxes-mobile .abox .grid-flex-right { width: 34%; left: 15px; }

      /*VIDEO*/
      .video .play img { max-width: 15%; margin-top: 2em; }

      .video .videos { min-height: 25em; }

      /*  WEBFORM  */
      .webform-component-fieldset.domande fieldset.prodotti { order: 1; }
      .webform-component-fieldset.domande fieldset.aprodotti { order: 2; }

    }

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

    }

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

      h1, .h1 { font-size: 2.8em; }
      h2, .h2 { font-size: 2.3em; }
      h3, .h3 { font-size: 1.35em; }

      .padding-vertical3 { padding-bottom: 2em; padding-top: 2em; }

      /*HEADER*/
      .header { background-image: url(../images/header_bg_mobile.jpg);  padding-bottom: 0em; }
      .header .tlogo img { max-width: 50%; }
      .header .padding-logo { padding-bottom: 3em; }
      .header .valo { top: 0; }
      .header .colors { bottom: 5em; }

      /*ACCESSORI*/
      .accessori { padding-top: 4em; }
      .accessori .abox { padding-bottom: 2em !important; }

      /*VIDEO*/
      .video .videos {  min-height: 15em; }
      .video .play img { max-width: 15%; }
      .video .caption { width: 100%; }
      .video .caption .h3 { font-size: 1.35em; }

      /*FOOTER*/
      .footer-first { padding-bottom: 2em; padding-top: 2em; }
      .footer-first span { position: relative; clear: both; display: block; font-size: 0; }

      /*  WEBFORM  */
      .webform-component .box-header h2 span { font-size: 60%; }
      .webform-client-form .form-actions { top: 0; text-align: center; margin: 1em 0 3em; }

    }

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

    }

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

/*      .accessori .aboxes-mobile .abox .grid-flex-left { width: 62%; left: 0; }*/
/*      .accessori .aboxes-mobile .abox .grid-flex-right { width: 34%; left: 15px; }*/

    }

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


    }

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

      /*  WEBFORM  */
      .webform-client-form .form-actions .form-submit { font-size: 1.1em; }

    }

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

