@charset "UTF-8";
/* VARS
Questa cartella contiene uno o più file contententi tutte le variabili globali
del progetto. Qui si possono sovrascrivere le variabili di default di Foundation
e all'occorrenza crearne di nuove, organizzandole come meglio si crede.
*/
/* BOURBON
Può essere incluso Bourbon se necessario, previa installazione tramite Bower.
*/
/* HAMBURGER MENU */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,700,700italic,500,500italic");
.hamburger {
  padding: 15px 30px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 30px;
  height: 18px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #000;
    border-radius: 0;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 60px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 60px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 60px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 60px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(6px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-6px, -7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 8px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 8px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 16px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 8px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -60px;
      top: -60px;
      transform: translate3d(60px, 60px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -60px;
      top: -60px;
      transform: translate3d(-60px, 60px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 8px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -60px;
      top: 60px;
      transform: translate3d(60px, -60px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -60px;
      top: 60px;
      transform: translate3d(-60px, -60px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 1px; }
  .hamburger--slider .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 16px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-4.28571px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 16px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(4.28571px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 8px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 8px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -16px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/* FOUNDATION
Qui vengono inclusi singolarmente tutti i moduli componenti sass di Foundation
in base alle esigenze del progetto.
*/
/**
 * Foundation for Sites by ZURB
 * Version 6.1.2
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS and IE text size adjust after device orientation change,
   *    without disabling user zoom.
   */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
   * Remove default margin.
   */
body {
  margin: 0; }

/* HTML5 display definitions
     ========================================================================== */
/**
   * Correct `block` display not defined for any HTML5 element in IE 8/9.
   * Correct `block` display not defined for `details` or `summary` in IE 10/11
   * and Firefox.
   * Correct `block` display not defined for `main` in IE 11.
   */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
   */
[hidden],
template {
  display: none; }

/* Links
     ========================================================================== */
/**
   * Remove the gray background color from active links in IE 10.
   */
a {
  background-color: transparent; }

/**
   * Improve readability of focused elements when they are also in an
   * active/hover state.
   */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
     ========================================================================== */
/**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */
abbr[title] {
  border-bottom: 1px dotted; }

/**
   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
   */
b,
strong {
  font-weight: bold; }

/**
   * Address styling not present in Safari and Chrome.
   */
dfn {
  font-style: italic; }

/**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari, and Chrome.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
   * Address styling not present in IE 8/9.
   */
mark {
  background: #ff0;
  color: #000; }

/**
   * Address inconsistent and variable font size in all browsers.
   */
small {
  font-size: 80%; }

/**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
     ========================================================================== */
/**
   * Remove border when inside `a` element in IE 8/9/10.
   */
img {
  border: 0; }

/**
   * Correct overflow not hidden in IE 9/10/11.
   */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
     ========================================================================== */
/**
   * Address margin not present in IE 8/9 and Safari.
   */
figure {
  margin: 1em 40px; }

/**
   * Address differences between Firefox and other browsers.
   */
hr {
  box-sizing: content-box;
  height: 0; }

/**
   * Contain overflow in all browsers.
   */
pre {
  overflow: auto; }

/**
   * Address odd `em`-unit font size rendering in all browsers.
   */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
     ========================================================================== */
/**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */
/**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */
button {
  overflow: visible; }

/**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */
button,
select {
  text-transform: none; }

/**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
   * Re-set default cursor for disabled elements.
   */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
   * Remove inner padding and border in Firefox 4+.
   */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */
input {
  line-height: normal; }

/**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
   */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
   * Define consistent border, margin, and padding.
   * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
   */
/* fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  } */
/**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Remove default vertical scrollbar in IE 8/9/10/11.
   */
textarea {
  overflow: auto; }

/**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */
optgroup {
  font-weight: bold; }

/* Tables
     ========================================================================== */
/**
   * Remove most spacing between table cells.
   */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=80em&xxlarge=120em"; }

html {
  font-size: 100%;
  box-sizing: border-box; }

*,
*:before,
*:after {
  box-sizing: inherit; }

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #666666;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0; }

select {
  width: 100%;
  border-radius: 0; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1; }

.is-visible {
  display: block !important; }

.is-hidden {
  display: none !important; }

.row {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    content: ' ';
    display: table; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }
    .row .row.collapse {
      margin-left: 0;
      margin-right: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-left: auto;
      margin-right: auto; }

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 1.25rem;
  padding-right: 1.25rem; }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }
  .row .column.row.row, .row .row.row.columns {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }

.small-1 {
  width: 8.33333%; }

.small-push-1 {
  position: relative;
  left: 8.33333%; }

.small-pull-1 {
  position: relative;
  left: -8.33333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.66667%; }

.small-push-2 {
  position: relative;
  left: 16.66667%; }

.small-pull-2 {
  position: relative;
  left: -16.66667%; }

.small-offset-1 {
  margin-left: 8.33333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.66667%; }

.small-4 {
  width: 33.33333%; }

.small-push-4 {
  position: relative;
  left: 33.33333%; }

.small-pull-4 {
  position: relative;
  left: -33.33333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.66667%; }

.small-push-5 {
  position: relative;
  left: 41.66667%; }

.small-pull-5 {
  position: relative;
  left: -41.66667%; }

.small-offset-4 {
  margin-left: 33.33333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.66667%; }

.small-7 {
  width: 58.33333%; }

.small-push-7 {
  position: relative;
  left: 58.33333%; }

.small-pull-7 {
  position: relative;
  left: -58.33333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.66667%; }

.small-push-8 {
  position: relative;
  left: 66.66667%; }

.small-pull-8 {
  position: relative;
  left: -66.66667%; }

.small-offset-7 {
  margin-left: 58.33333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.66667%; }

.small-10 {
  width: 83.33333%; }

.small-push-10 {
  position: relative;
  left: 83.33333%; }

.small-pull-10 {
  position: relative;
  left: -83.33333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.66667%; }

.small-push-11 {
  position: relative;
  left: 91.66667%; }

.small-pull-11 {
  position: relative;
  left: -91.66667%; }

.small-offset-10 {
  margin-left: 83.33333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.66667%; }

.small-up-1 > .column, .small-up-1 > .columns {
  width: 100%;
  float: left; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  width: 50%;
  float: left; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  width: 33.33333%;
  float: left; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  width: 25%;
  float: left; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  width: 20%;
  float: left; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  width: 16.66667%;
  float: left; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  width: 14.28571%;
  float: left; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  width: 12.5%;
  float: left; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

.small-collapse .row {
  margin-left: 0;
  margin-right: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-left: 1.25rem;
  padding-right: 1.25rem; }

.small-centered {
  float: none;
  margin-left: auto;
  margin-right: auto; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0;
  float: left; }

@media screen and (min-width: 40em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 1.25rem;
    padding-right: 1.25rem; }
  .medium-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 1.25rem;
    padding-right: 1.25rem; }
  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 80em) {
  .xlarge-1 {
    width: 8.33333%; }
  .xlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xlarge-offset-0 {
    margin-left: 0%; }
  .xlarge-2 {
    width: 16.66667%; }
  .xlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .xlarge-3 {
    width: 25%; }
  .xlarge-push-3 {
    position: relative;
    left: 25%; }
  .xlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .xlarge-4 {
    width: 33.33333%; }
  .xlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .xlarge-5 {
    width: 41.66667%; }
  .xlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .xlarge-6 {
    width: 50%; }
  .xlarge-push-6 {
    position: relative;
    left: 50%; }
  .xlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .xlarge-7 {
    width: 58.33333%; }
  .xlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .xlarge-8 {
    width: 66.66667%; }
  .xlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .xlarge-9 {
    width: 75%; }
  .xlarge-push-9 {
    position: relative;
    left: 75%; }
  .xlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .xlarge-10 {
    width: 83.33333%; }
  .xlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .xlarge-11 {
    width: 91.66667%; }
  .xlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .xlarge-12 {
    width: 100%; }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
    width: 100%;
    float: left; }
    .xlarge-up-1 > .column:nth-of-type(1n), .xlarge-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-1 > .column:nth-of-type(1n+1), .xlarge-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .xlarge-up-1 > .column:last-child, .xlarge-up-1 > .columns:last-child {
      float: left; }
  .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
    width: 50%;
    float: left; }
    .xlarge-up-2 > .column:nth-of-type(1n), .xlarge-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-2 > .column:nth-of-type(2n+1), .xlarge-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .xlarge-up-2 > .column:last-child, .xlarge-up-2 > .columns:last-child {
      float: left; }
  .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .xlarge-up-3 > .column:nth-of-type(1n), .xlarge-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-3 > .column:nth-of-type(3n+1), .xlarge-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .xlarge-up-3 > .column:last-child, .xlarge-up-3 > .columns:last-child {
      float: left; }
  .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
    width: 25%;
    float: left; }
    .xlarge-up-4 > .column:nth-of-type(1n), .xlarge-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-4 > .column:nth-of-type(4n+1), .xlarge-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .xlarge-up-4 > .column:last-child, .xlarge-up-4 > .columns:last-child {
      float: left; }
  .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
    width: 20%;
    float: left; }
    .xlarge-up-5 > .column:nth-of-type(1n), .xlarge-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-5 > .column:nth-of-type(5n+1), .xlarge-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .xlarge-up-5 > .column:last-child, .xlarge-up-5 > .columns:last-child {
      float: left; }
  .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .xlarge-up-6 > .column:nth-of-type(1n), .xlarge-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-6 > .column:nth-of-type(6n+1), .xlarge-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .xlarge-up-6 > .column:last-child, .xlarge-up-6 > .columns:last-child {
      float: left; }
  .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .xlarge-up-7 > .column:nth-of-type(1n), .xlarge-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-7 > .column:nth-of-type(7n+1), .xlarge-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .xlarge-up-7 > .column:last-child, .xlarge-up-7 > .columns:last-child {
      float: left; }
  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .xlarge-up-8 > .column:nth-of-type(1n), .xlarge-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-8 > .column:nth-of-type(8n+1), .xlarge-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .xlarge-up-8 > .column:last-child, .xlarge-up-8 > .columns:last-child {
      float: left; }
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .xlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-left: 1.25rem;
    padding-right: 1.25rem; }
  .xlarge-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 120em) {
  .xxlarge-1 {
    width: 8.33333%; }
  .xxlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xxlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xxlarge-offset-0 {
    margin-left: 0%; }
  .xxlarge-2 {
    width: 16.66667%; }
  .xxlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xxlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xxlarge-offset-1 {
    margin-left: 8.33333%; }
  .xxlarge-3 {
    width: 25%; }
  .xxlarge-push-3 {
    position: relative;
    left: 25%; }
  .xxlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xxlarge-offset-2 {
    margin-left: 16.66667%; }
  .xxlarge-4 {
    width: 33.33333%; }
  .xxlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xxlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xxlarge-offset-3 {
    margin-left: 25%; }
  .xxlarge-5 {
    width: 41.66667%; }
  .xxlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xxlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xxlarge-offset-4 {
    margin-left: 33.33333%; }
  .xxlarge-6 {
    width: 50%; }
  .xxlarge-push-6 {
    position: relative;
    left: 50%; }
  .xxlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xxlarge-offset-5 {
    margin-left: 41.66667%; }
  .xxlarge-7 {
    width: 58.33333%; }
  .xxlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xxlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xxlarge-offset-6 {
    margin-left: 50%; }
  .xxlarge-8 {
    width: 66.66667%; }
  .xxlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xxlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xxlarge-offset-7 {
    margin-left: 58.33333%; }
  .xxlarge-9 {
    width: 75%; }
  .xxlarge-push-9 {
    position: relative;
    left: 75%; }
  .xxlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xxlarge-offset-8 {
    margin-left: 66.66667%; }
  .xxlarge-10 {
    width: 83.33333%; }
  .xxlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xxlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xxlarge-offset-9 {
    margin-left: 75%; }
  .xxlarge-11 {
    width: 91.66667%; }
  .xxlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xxlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xxlarge-offset-10 {
    margin-left: 83.33333%; }
  .xxlarge-12 {
    width: 100%; }
  .xxlarge-offset-11 {
    margin-left: 91.66667%; }
  .xxlarge-up-1 > .column, .xxlarge-up-1 > .columns {
    width: 100%;
    float: left; }
    .xxlarge-up-1 > .column:nth-of-type(1n), .xxlarge-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-1 > .column:nth-of-type(1n+1), .xxlarge-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .xxlarge-up-1 > .column:last-child, .xxlarge-up-1 > .columns:last-child {
      float: left; }
  .xxlarge-up-2 > .column, .xxlarge-up-2 > .columns {
    width: 50%;
    float: left; }
    .xxlarge-up-2 > .column:nth-of-type(1n), .xxlarge-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-2 > .column:nth-of-type(2n+1), .xxlarge-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .xxlarge-up-2 > .column:last-child, .xxlarge-up-2 > .columns:last-child {
      float: left; }
  .xxlarge-up-3 > .column, .xxlarge-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .xxlarge-up-3 > .column:nth-of-type(1n), .xxlarge-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-3 > .column:nth-of-type(3n+1), .xxlarge-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .xxlarge-up-3 > .column:last-child, .xxlarge-up-3 > .columns:last-child {
      float: left; }
  .xxlarge-up-4 > .column, .xxlarge-up-4 > .columns {
    width: 25%;
    float: left; }
    .xxlarge-up-4 > .column:nth-of-type(1n), .xxlarge-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-4 > .column:nth-of-type(4n+1), .xxlarge-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .xxlarge-up-4 > .column:last-child, .xxlarge-up-4 > .columns:last-child {
      float: left; }
  .xxlarge-up-5 > .column, .xxlarge-up-5 > .columns {
    width: 20%;
    float: left; }
    .xxlarge-up-5 > .column:nth-of-type(1n), .xxlarge-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-5 > .column:nth-of-type(5n+1), .xxlarge-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .xxlarge-up-5 > .column:last-child, .xxlarge-up-5 > .columns:last-child {
      float: left; }
  .xxlarge-up-6 > .column, .xxlarge-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .xxlarge-up-6 > .column:nth-of-type(1n), .xxlarge-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-6 > .column:nth-of-type(6n+1), .xxlarge-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .xxlarge-up-6 > .column:last-child, .xxlarge-up-6 > .columns:last-child {
      float: left; }
  .xxlarge-up-7 > .column, .xxlarge-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .xxlarge-up-7 > .column:nth-of-type(1n), .xxlarge-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-7 > .column:nth-of-type(7n+1), .xxlarge-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .xxlarge-up-7 > .column:last-child, .xxlarge-up-7 > .columns:last-child {
      float: left; }
  .xxlarge-up-8 > .column, .xxlarge-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .xxlarge-up-8 > .column:nth-of-type(1n), .xxlarge-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-8 > .column:nth-of-type(8n+1), .xxlarge-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .xxlarge-up-8 > .column:last-child, .xxlarge-up-8 > .columns:last-child {
      float: left; }
  .xxlarge-collapse > .column, .xxlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .xxlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .xxlarge-uncollapse > .column, .xxlarge-uncollapse > .columns {
    padding-left: 1.25rem;
    padding-right: 1.25rem; }
  .xxlarge-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .xxlarge-uncentered,
  .xxlarge-push-0,
  .xxlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  font-size: inherit;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility; }

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 80%;
  line-height: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    color: #cacaca;
    line-height: 0; }

h1 {
  font-size: 1.5rem; }

h2 {
  font-size: 1.25rem; }

h3 {
  font-size: 1.1875rem; }

h4 {
  font-size: 1.125rem; }

h5 {
  font-size: 1.0625rem; }

h6 {
  font-size: 1rem; }

@media screen and (min-width: 40em) {
  h1 {
    font-size: 3rem; }
  h2 {
    font-size: 2.5rem; }
  h3 {
    font-size: 1.9375rem; }
  h4 {
    font-size: 1.5625rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; } }

a {
  color: #c62828;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #aa2222; }
  a img {
    border: 0; }

hr {
  max-width: 100rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid white;
  border-left: 0;
  margin: 1.25rem auto;
  clear: both; }

ul,
ol,
dl {
  line-height: 1.6;
  margin-bottom: 1rem;
  list-style-position: outside; }

li {
  font-size: inherit; }

ul {
  list-style-type: disc;
  margin-left: 1.25rem; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

dl {
  margin-bottom: 1rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold; }

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #8a8a8a; }

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a; }
  cite:before {
    content: '\2014 \0020'; }

abbr {
  color: #666666;
  cursor: help;
  border-bottom: 1px dotted #212121; }

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #212121;
  background-color: #e6e6e6;
  border: 1px solid #cacaca;
  padding: 0.125rem 0.3125rem 0.0625rem; }

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #e6e6e6;
  color: #212121;
  font-family: Consolas, "Liberation Mono", Courier, monospace; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a; }

.lead {
  font-size: 125%;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat {
    margin-top: -1rem; }

.no-bullet {
  margin-left: 0;
  list-style: none; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

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

.text-justify {
  text-align: justify; }

@media screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

@media screen and (min-width: 80em) {
  .xlarge-text-left {
    text-align: left; }
  .xlarge-text-right {
    text-align: right; }
  .xlarge-text-center {
    text-align: center; }
  .xlarge-text-justify {
    text-align: justify; } }

@media screen and (min-width: 120em) {
  .xxlarge-text-left {
    text-align: left; }
  .xxlarge-text-right {
    text-align: right; }
  .xxlarge-text-center {
    text-align: center; }
  .xxlarge-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #c62828;
  color: #fff; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #a82222;
    color: #fff; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary {
    background-color: #c62828;
    color: #fff; }
    .button.primary:hover, .button.primary:focus {
      background-color: #9e2020;
      color: #fff; }
  .button.secondary {
    background-color: #e6e6e6;
    color: #fff; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #b8b8b8;
      color: #fff; }
  .button.success {
    background-color: #DFF2BF;
    color: #fff; }
    .button.success:hover, .button.success:focus {
      background-color: #bbe377;
      color: #fff; }
  .button.alert {
    background-color: #fbcec7;
    color: #fff; }
    .button.alert:hover, .button.alert:focus {
      background-color: #f58573;
      color: #fff; }
  .button.warning {
    background-color: #ffae00;
    color: #fff; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #fff; }
  .button.hollow {
    border: 1px solid #c62828;
    color: #c62828; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #631414;
      color: #631414; }
    .button.hollow.primary {
      border: 1px solid #c62828;
      color: #c62828; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #631414;
        color: #631414; }
    .button.hollow.secondary {
      border: 1px solid #e6e6e6;
      color: #e6e6e6; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #737373;
        color: #737373; }
    .button.hollow.success {
      border: 1px solid #DFF2BF;
      color: #DFF2BF; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #7fb425;
        color: #7fb425; }
    .button.hollow.alert {
      border: 1px solid #fbcec7;
      color: #fbcec7; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #d2290f;
        color: #d2290f; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none; }
  .button.dropdown::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    border-color: #ffffff transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: relative;
    top: 0.4em;
    float: right;
    margin-left: 1em;
    display: inline-block; }
  .button.arrow-only::after {
    margin-left: 0;
    float: none;
    top: 0.2em; }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #212121;
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(33, 33, 33, 0.1);
  border-radius: 0;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    border: 1px solid #8a8a8a;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
    height: auto; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: default; }

[type='submit'],
[type='button'] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none; }

input[type='search'] {
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }

label > [type='checkbox'],
label > [type='label'] {
  margin-right: 0.5rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #212121; }
  label.middle {
    margin: 0 0 1rem;
    padding: 0.5625rem 0; }

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #333; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem; }
  .input-group > :first-child {
    border-radius: 0 0 0 0; }
  .input-group > :last-child > * {
    border-radius: 0 0 0 0; }

.input-group-label, .input-group-field, .input-group-button {
  display: table-cell;
  margin: 0;
  vertical-align: middle; }

.input-group-label {
  text-align: center;
  width: 1%;
  height: 100%;
  padding: 0 1rem;
  background: #e6e6e6;
  color: #212121;
  border: 1px solid #cacaca;
  white-space: nowrap; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 2.5rem; }

.input-group-button {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
    margin: 0; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

legend {
  margin-bottom: 0.5rem;
  max-width: 100%; }

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
    background: #ffffff;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #212121;
  background-color: #ffffff;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%2851, 51, 51%29"></polygon></svg>');
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
    background-color: #e6e6e6;
    cursor: default; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto; }

.is-invalid-input:not(:focus) {
  background-color: rgba(251, 206, 199, 0.1);
  border-color: #fbcec7; }

.is-invalid-label {
  color: #fbcec7; }

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fbcec7; }
  .form-error.is-visible {
    display: block; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: -0.0625em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important; } }

@media screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 64em) and (max-width: 79.9375em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.9375em), screen and (min-width: 80em) {
  .show-for-large-only {
    display: none !important; } }

@media screen and (min-width: 80em) {
  .hide-for-xlarge {
    display: none !important; } }

@media screen and (max-width: 79.9375em) {
  .show-for-xlarge {
    display: none !important; } }

@media screen and (min-width: 80em) and (max-width: 119.9375em) {
  .hide-for-xlarge-only {
    display: none !important; } }

@media screen and (max-width: 79.9375em), screen and (min-width: 120em) {
  .show-for-xlarge-only {
    display: none !important; } }

@media screen and (min-width: 120em) {
  .hide-for-xxlarge {
    display: none !important; } }

@media screen and (max-width: 119.9375em) {
  .show-for-xxlarge {
    display: none !important; } }

@media screen and (min-width: 120em) {
  .hide-for-xxlarge-only {
    display: none !important; } }

@media screen and (max-width: 119.9375em) {
  .show-for-xxlarge-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto; }

.show-for-landscape,
.hide-for-portrait {
  display: block !important; }
  @media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
      display: block !important; } }
  @media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
      display: none !important; } }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }

.accordion {
  list-style-type: none;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  border-radius: 0;
  margin-left: 0; }

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #c62828;
  position: relative;
  border-bottom: 1px solid #e6e6e6; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #e6e6e6; }
  .accordion-title::before {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -0.5rem; }
  .is-active > .accordion-title::before {
    content: '–'; }

.accordion-content {
  padding: 1rem;
  display: none;
  border-bottom: 1px solid #e6e6e6;
  background-color: #ffffff; }

.is-accordion-submenu-parent > a {
  position: relative; }
  .is-accordion-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: #c62828 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 1rem; }

.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
  transform-origin: 50% 50%;
  transform: scaleY(-1); }

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(33, 33, 33, 0.25);
  border-radius: 0;
  position: relative;
  color: #666666;
  background-color: white; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #f8dddd; }
  .callout.secondary {
    background-color: #fbfbfb; }
  .callout.success {
    background-color: #fafdf5; }
  .callout.alert {
    background-color: #fef8f7; }
  .callout.warning {
    background-color: #fff3d9; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.flex-video {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  margin-bottom: 1rem;
  overflow: hidden; }
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .flex-video.widescreen {
    padding-bottom: 56.25%; }
  .flex-video.vimeo {
    padding-top: 0; }

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0; }
  table thead,
  table tbody,
  table tfoot {
    border: 1px solid #f2f2f2;
    background-color: #ffffff; }
  table caption {
    font-weight: bold;
    padding: 0.5rem 0.625rem 0.625rem; }
  table thead,
  table tfoot {
    background: #f9f9f9;
    color: #666666; }
    table thead tr,
    table tfoot tr {
      background: transparent; }
    table thead th,
    table thead td,
    table tfoot th,
    table tfoot td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-weight: bold;
      text-align: left; }
  table tbody tr:nth-child(even) {
    background-color: #f2f2f2; }
  table tbody th,
  table tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

table.hover tr:hover {
  background-color: #fafafa; }

table.hover tr:nth-of-type(even):hover {
  background-color: #ededed; }

.tabs {
  margin: 0;
  list-style-type: none;
  background: #ffffff;
  border: 1px solid #e6e6e6; }
  .tabs::before, .tabs::after {
    content: ' ';
    display: table; }
  .tabs::after {
    clear: both; }

.tabs.vertical > li {
  width: auto;
  float: none;
  display: block; }

.tabs.simple > li > a {
  padding: 0; }
  .tabs.simple > li > a:hover {
    background: transparent; }

.tabs.primary {
  background: #c62828; }
  .tabs.primary > li > a {
    color: #ffffff; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #bc2626; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    line-height: 1;
    font-size: 12px;
    color: #c62828; }
    .tabs-title > a:hover {
      background: #ffffff; }
    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
      background: #e6e6e6; }

.tabs-content {
  background: #ffffff;
  transition: all 0.5s ease;
  border: 1px solid #e6e6e6;
  border-top: 0; }

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0; }

.tabs-panel {
  display: none;
  padding: 1rem; }
  .tabs-panel.is-active {
    display: block; }

.has-tip {
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: help; }

.tooltip {
  background-color: #212121;
  color: #ffffff;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.6495rem);
  max-width: 10rem !important;
  border-radius: 0; }
  .tooltip::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent transparent #212121;
    border-bottom-style: solid;
    border-top-width: 0;
    bottom: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: #212121 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    top: 100%;
    bottom: auto; }
  .tooltip.left::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent transparent transparent #212121;
    border-left-style: solid;
    border-right-width: 0;
    bottom: auto;
    left: 100%;
    top: 50%;
    transform: translateY(-50%); }
  .tooltip.right::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent #212121 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    transform: translateY(-50%); }

/* UTILS
Questa cartella contiene tutti gli helper sass che possono
servire l'interno del progetto come ad esempio funzioni, mixin e placeholder.
Come regola generale da questa cartella non deve uscire nessuna riga di css.
Questi file non dovrebbero essere intesi come specifici del progetto in quanto
contengono solamente delle utility che possono essere riutilizzate ovunque.
*/
@keyframes preloader {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes indicate-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(10px); }
  60% {
    transform: translateY(5px); } }

/*
@mixin background-rgba($color,$alpha){
background:rgba($color,$alpha);
}
*/
/* BASE
Questa cartella contiente gli stili di default dei tag HTML.
Dovrebbe essere utilizzata solo nel caso ci sia la necessità di dare uno stile
base e condiviso in tutto il sito a determinati elementi html. Pensatelo come ad
una sorta di normalizer specifico del progetto. Per una questione di ordine e
coerenza non è consentito l'utilizzo di selettori diversi dagli element
selector, quindi non è consentita la presenza di selettori di classe, id,
attributo, ecc.. É importante evitare di utilizzare stili troppo "aggressivi" in
per evitare di doverli sovrascrivere in seguito.
*/
::-webkit-input-placeholder {
  color: #666666; }

:-moz-placeholder {
  color: #666666; }

::-moz-placeholder {
  color: #666666; }

:-ms-input-placeholder {
  color: #666666; }

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
input[type=number],
input[type=search],
select,
textarea {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.9375rem; }

input:focus,
textarea:focus {
  color: #666666; }

table {
  width: 100%;
  background: #fff;
  margin-bottom: 1.25rem;
  border: solid 1px 1px solid #f2f2f2;
  table-layout: auto; }
  table th {
    color: #212121 !important;
    font-weight: 600 !important;
    text-transform: uppercase; }
  table strong {
    font-weight: 700; }
  table .alert-box.info {
    margin-bottom: 0; }
  table a {
    text-decoration: underline; }

@media only screen and (max-width: 768px) {
  /* Force table to not be like tables anymore */
  table {
    margin-top: 0.9375rem; }
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block !important; }
  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -624.938em;
    /*-9999px / 16px*/
    left: -624.938em;
    /*-9999px / 16px*/ }
  /*tr { border: 1px solid #ccc; }*/
  table td,
  table th {
    border-left: none !important; }
  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 2px solid #e6e6e6;
    position: relative;
    padding-left: 50%; }
  table tbody td:not([data-label]) {
    padding-left: 0.714em !important;
    /*useful for button*/ }
  table tbody td[data-label]:last-child {
    padding-bottom: 0.938rem;
    /*15px/16px*/ }
  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 0.643em;
    /*9px/14px*/
    left: 0.714em;
    /*10px/14px*/
    width: 45%;
    padding-right: 0.714em;
    /*10px/14px*/
    white-space: nowrap;
    font-size: 1em;
    /*14px/14px*/
    /*filter:alpha(opacity=100); -moz-opacity:1.00; -khtml-opacity:1.00; opacity:1.00;*/
    /* Label the data */
    content: attr(data-label); } }

@media screen and (max-width: 600px) {
  table {
    width: 100%; }
  thead {
    display: none; }
  table tbody {
    border: 0px; }
  tr:nth-of-type(2n) {
    background-color: transparent !important; }
  tr td:first-child {
    background: #e6e6e6;
    font-weight: bold;
    font-size: 1.0em; }
  tbody td {
    display: block;
    text-align: center; }
  tbody td:before {
    content: attr(data-th);
    display: block;
    text-align: center; } }

/* GLOBALS
Questa cartella contiene stili utilizzati in tutto il sito e non specifici di un
determinato componente. I selettori da utilizzare per questi elementi sono
esclusivamente selettori di classe oppure at-rule. Generalmente sono stili
generici che si possono applicare a in molteplici casi indpendentemente
dall'elemento/componente in cui vengono utilizzati. In linea di massima possono
far parte di questa cartella classi helpers  (es. clearfix, text-align, ecc..),
classi relative a griglie e spaziature, classi relative a sfondi, bordi,
visibility ecc..oppure at-rule globali come @font-face, @keyframes ecc..
Le regole di questi stili possono essere utilizzate con la direttiva !important
in quanto vanno a sovrascrivere gli stili di default. Le classi globali non
possono avere selettori innestati, nel caso ci si trovi nella situazione di
sentirne il bisogno probabilmente è più conveniente creare un componente.
*/
.bg-primary {
  background-color: #ffffff; }

.bg-secondary {
  background-color: #f2f2f2; }

.bg-secondary-light {
  background-color: #f9f9f9; }

.bg-dark {
  background-color: #2a2a2a; }

/* Iconmoon */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.eot?-rdnm34");
  src: url("../fonts/icomoon/icomoon.eot?#iefix-rdnm34") format("embedded-opentype"), url("../fonts/icomoon/icomoon.woff?-rdnm34") format("woff"), url("../fonts/icomoon/icomoon.ttf?-rdnm34") format("truetype"), url("../fonts/icomoon/icomoon.svg?-rdnm34#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.clearfix {
  overflow: auto; }

.block {
  display: block; }

.relative {
  position: relative; }

.block {
  display: block;
  width: 100%;
  clear: both; }

figure {
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  color: #666666; }

.uppercase {
  text-transform: uppercase !important; }

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
  .small-text-center {
    text-align: center; } }

.bold {
  font-weight: 700 !important; }

.vertical-centered {
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .vertical-centered {
      top: 0;
      transform: none; } }

.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.2s linear; }
  .grayscale.grayscale--hover:hover, .grayscale.grayscale--hover:focus {
    -webkit-filter: grayscale(0);
    filter: grayscale(0); }

.tap-to-close {
  display: none; }

/* remove tap-to-close on tooltip */
/* margins */
.no-margin {
  margin: 0 !important; }

.no-margin-bottom {
  margin-bottom: 0 !important; }

.no-margin-top {
  margin-top: 0 !important; }

.margin-top-1 {
  margin-top: 0.625rem; }

.margin-bottom-1 {
  margin-bottom: 0.625rem; }

.padding-top-1 {
  padding-top: 0.625rem; }

.padding-bottom-1 {
  padding-bottom: 0.625rem; }

.margin-top-2 {
  margin-top: 1.25rem; }

.margin-bottom-2 {
  margin-bottom: 1.25rem; }

.padding-top-2 {
  padding-top: 1.25rem; }

.padding-bottom-2 {
  padding-bottom: 1.25rem; }

.margin-top-3 {
  margin-top: 1.875rem; }

.margin-bottom-3 {
  margin-bottom: 1.875rem; }

.padding-top-3 {
  padding-top: 1.875rem; }

.padding-bottom-3 {
  padding-bottom: 1.875rem; }

.margin-top-4 {
  margin-top: 2.5rem; }

.margin-bottom-4 {
  margin-bottom: 2.5rem; }

.padding-top-4 {
  padding-top: 2.5rem; }

.padding-bottom-4 {
  padding-bottom: 2.5rem; }

.margin-top-5 {
  margin-top: 3.125rem; }

.margin-bottom-5 {
  margin-bottom: 3.125rem; }

.padding-top-5 {
  padding-top: 3.125rem; }

.padding-bottom-5 {
  padding-bottom: 3.125rem; }

.margin-top-6 {
  margin-top: 3.75rem; }

.margin-bottom-6 {
  margin-bottom: 3.75rem; }

.padding-top-6 {
  padding-top: 3.75rem; }

.padding-bottom-6 {
  padding-bottom: 3.75rem; }

.margin-top-7 {
  margin-top: 4.375rem; }

.margin-bottom-7 {
  margin-bottom: 4.375rem; }

.padding-top-7 {
  padding-top: 4.375rem; }

.padding-bottom-7 {
  padding-bottom: 4.375rem; }

.margin-top-8 {
  margin-top: 5rem; }

.margin-bottom-8 {
  margin-bottom: 5rem; }

.padding-top-8 {
  padding-top: 5rem; }

.padding-bottom-8 {
  padding-bottom: 5rem; }

.margin-top-9 {
  margin-top: 5.625rem; }

.margin-bottom-9 {
  margin-bottom: 5.625rem; }

.padding-top-9 {
  padding-top: 5.625rem; }

.padding-bottom-9 {
  padding-bottom: 5.625rem; }

.margin-top-10 {
  margin-top: 6.25rem; }

.margin-bottom-10 {
  margin-bottom: 6.25rem; }

.padding-top-10 {
  padding-top: 6.25rem; }

.padding-bottom-10 {
  padding-bottom: 6.25rem; }

/* paddings */
.no-padding {
  padding: 0 !important; }

.no-padding-bottom {
  padding-bottom: 0 !important; }

.no-padding-top {
  padding-top: 0 !important; }

.vertical-padding-10 {
  padding: 0.625rem 0; }

.vertical-padding-20 {
  padding: 1.25rem 0; }

.vertical-padding-30 {
  padding: 1.875rem 0; }

.vertical-padding-40 {
  padding: 2.5rem 0; }

.vertical-padding-50 {
  padding: 3.125rem 0; }

.vertical-padding-60 {
  padding: 3.75rem 0; }

.vertical-padding-70 {
  padding: 4.375rem 0; }

.vertical-padding-80 {
  padding: 5rem 0; }

/* text-length */
.text-length {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.4em;
  /* fallback */
  max-height: 15.625rem;
  /* fallback */
  -webkit-line-clamp: 11;
  /* number of lines to show */
  -webkit-box-orient: vertical; }

/* phone behavior */
.js-phone {
  cursor: pointer; }

.js-phone.disabled,
.js-phone.disabled:hover {
  cursor: text;
  text-decoration: none !important;
  opacity: 1.0; }

html,
body {
  height: 100%; }

html:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  opacity: 0.7;
  animation-name: fade-out;
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  opacity: 0; }

@-webkit-keyframes fade-out {
  from {
    opacity: 0.85;
    z-index: 99; }
  to {
    opacity: 0.00;
    z-index: 0; } }

@keyframes fade-out {
  from {
    opacity: 0.85;
    z-index: 99; }
  to {
    opacity: 0.00;
    z-index: 0; } }

body {
  position: relative; }

#container {
  position: relative; }

main {
  animation-name: fade-in;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  opacity: 1;
  background: #ffffff;
  min-height: 100vh; }

@-webkit-keyframes fade-in {
  from {
    opacity: 0.0; }
  to {
    opacity: 1.00; } }

@keyframes fade-in {
  from {
    opacity: 0.0; }
  to {
    opacity: 1.00; } }
  @media screen and (min-width: 64em) {
    main {
      margin: 0 1rem; } }
  main.new-layout {
    margin: 0 0; }

@media screen and (min-width: 40em) {
  .content-padding {
    margin: 0 1.25rem; } }

@media screen and (min-width: 120em) {
  .inner-content-padding {
    padding-left: 2.5rem;
    padding-right: 2.5rem; } }

@media screen and (min-width: 80em) {
  .inner-content-padding--bottom {
    padding-bottom: 2.5rem; } }

section {
  position: relative; }

/* units */
.unit {
  position: relative;
  padding: 1.875rem 0; }
  @media screen and (min-width: 120em) {
    .unit {
      padding: 3.75rem 0; } }

.unit.unit--small {
  position: relative;
  padding: 1.875rem 0; }

.unit.unit--no-pdt {
  padding-top: 0; }

.unit.unit--no-pdb {
  padding-bottom: 0; }

@media screen and (min-width: 64em) {
  .two-columns-text {
    column-count: 2;
    column-gap: 50px; } }

.img-full-height {
  display: block;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%; }

.vertical-centered {
  padding-top: 0.9375rem; }
  @media screen and (min-width: 64em) {
    .vertical-centered {
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10; } }

.vertical-centered_product-detail {
  padding-top: 0.9375rem; }
  @media screen and (min-width: 80em) {
    .vertical-centered_product-detail {
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10; } }

@media (max-width: 1280px) {
  .small-large-reset-centered {
    transform: translateY(0); } }

.custom-panel {
  padding: 1.875rem;
  background: #dedede;
  text-align: center;
  margin-top: 0.9375rem; }
  @media screen and (min-width: 40em) {
    .custom-panel {
      padding: 1.875rem;
      margin-top: 0;
      text-align: left; } }
  @media screen and (min-width: 120em) {
    .custom-panel {
      padding: 3.75rem; } }
  .custom-panel--top-img {
    padding: 0 0 1.875rem; }
    @media screen and (min-width: 80em) {
      .custom-panel--top-img {
        padding: 0 0 3.75rem; } }
  .custom-panel--blocks .column, .custom-panel--blocks .columns {
    padding: 1.875rem; }
  .custom-panel--dark {
    background: #2a2a2a; }

.title {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.25rem;
  font-weight: 700;
  color: #212121;
  line-height: 1.2em;
  display: block;
  margin-bottom: 0.625rem; }
  @media screen and (min-width: 40em) {
    .title {
      font-size: 1.75rem; } }
  @media screen and (min-width: 80em) {
    .title {
      font-size: 1.75rem; } }
  @media screen and (min-width: 120em) {
    .title {
      font-size: 3rem; } }
  .title--underline {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem; }
    .title--underline:after {
      content: '';
      position: absolute;
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0);
      bottom: 0;
      width: 2.5rem;
      height: 1px;
      background-color: rgba(102, 102, 102, 0.5); }

.pagetitle {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.375rem;
  font-weight: 600;
  color: #212121;
  line-height: 1.2em;
  display: block;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem; }
  @media screen and (min-width: 40em) {
    .pagetitle {
      font-size: 1.375rem;
      margin-top: 0.9375rem;
      margin-bottom: 0.9375rem; } }
  @media screen and (min-width: 64em) {
    .pagetitle {
      font-size: 1.375rem;
      margin-top: 0.9375rem;
      margin-bottom: 0.9375rem; } }
  @media screen and (min-width: 80em) {
    .pagetitle {
      font-size: 1.625rem;
      margin-top: 0.625rem;
      margin-bottom: 0.9375rem; } }
  @media screen and (min-width: 120em) {
    .pagetitle {
      font-size: 1.875rem;
      margin-bottom: 0.625rem; } }
  .pagetitle--underline {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem; }
    .pagetitle--underline:after {
      content: '';
      position: absolute;
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0);
      bottom: 0;
      width: 2.5rem;
      height: 1px;
      background-color: rgba(102, 102, 102, 0.5); }

.subtitle {
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: normal;
  font-size: 1.375rem;
  font-weight: 700;
  color: #212121;
  line-height: 1.2em;
  display: block;
  margin-bottom: 1.875rem; }
  @media screen and (min-width: 40em) {
    .subtitle {
      font-size: 1.375rem; } }
  @media screen and (min-width: 80em) {
    .subtitle {
      font-size: 1.625rem; } }
  @media screen and (min-width: 120em) {
    .subtitle {
      font-size: 1.875rem; } }
  .subtitle--negative {
    color: #ffffff; }
  .subtitle--underline {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem; }
    .subtitle--underline:after {
      content: '';
      position: absolute;
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0);
      bottom: 0;
      width: 2.5rem;
      height: 1px;
      background-color: rgba(102, 102, 102, 0.5); }
  .subtitle--light {
    font-weight: 400; }

.titoletto {
  font-size: 1rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  color: #212121; }
  @media screen and (min-width: 80em) {
    .titoletto {
      font-size: 0.875rem; } }
  @media screen and (min-width: 120em) {
    .titoletto {
      font-size: 1rem; } }
  @media screen and (min-width: 80em) {
    .titoletto + p {
      font-size: 0.8125rem; } }
  @media screen and (min-width: 120em) {
    .titoletto + p {
      font-size: 0.875rem; } }

.section-title {
  font-size: 1.125rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  color: #212121;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 1px; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .section-title {
      margin-bottom: 0; } }
  .section-title--negative {
    color: #ffffff; }
  .section-title--nomargin {
    margin-bottom: 0.625rem; }
  .section-title--left {
    text-align: left; }
  .section-title--label {
    font-size: 1rem;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.0625rem; }
  .section-title.small {
    font-size: 98%; }

.label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.875rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px; }

body {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: normal; }

p,
.text {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 1rem; }
  p.big,
  .text.big {
    font-size: 1.125rem; }
  p.medium,
  .text.medium {
    font-size: 1.375rem; }
  p.large,
  .text.large {
    font-size: 1.5rem; }
  p.light-gray,
  .text.light-gray {
    color: rgba(102, 102, 102, 0.7); }
  p a,
  .text a {
    color: #666666;
    text-decoration: underline; }
  p.negative,
  .text.negative {
    color: #ffffff; }
    p.negative a,
    .text.negative a {
      color: #ffffff; }

a:hover {
  color: #c62828; }

a.underline {
  text-decoration: underline; }

ul {
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666666; }
  @media screen and (min-width: 40em) {
    ul {
      font-size: 1rem; } }
  ul.check-list {
    margin-left: 0; }
    ul.check-list li {
      list-style-type: none;
      background: url(../images/spritesheet/check-list.svg) no-repeat 0% 3px transparent;
      background-size: 0.8125rem 0.8125rem;
      padding-left: 1.5625rem;
      margin: 0.625rem 0 0 0;
      line-height: 1.3em; }

/* type utils */
small,
.small {
  font-size: 75%; }

.uppercase {
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.light,
.light p {
  font-weight: 300; }

strong,
.bold {
  font-weight: 700; }

.ico-plus:before {
  content: ""; }

.ico-arrow-down:before {
  content: ""; }

.ico-download:before {
  content: ""; }

.ico-arrow-right:before {
  content: ""; }

.ico-cart:before {
  content: ""; }

.ico-cross:before {
  content: ""; }

.ico-filter:before {
  content: ""; }

.ico-lock:before {
  content: ""; }

.ico-logout:before {
  content: ""; }

.ico-search:before {
  content: ""; }

.ico-settings:before {
  content: ""; }

.ico-star:before {
  content: ""; }

.ico-user:before {
  content: ""; }

.ico-list:before {
  content: ""; }

.ico-thumb:before {
  content: ""; }

.ico-arrow-left:before {
  content: ""; }

.ico-refresh:before {
  content: ""; }

.ico-check:before {
  content: ""; }

.ico-warning:before {
  content: ""; }

.ico-info:before {
  content: ""; }

.ico-file:before {
  content: ""; }

.ico-pdf:before {
  content: ""; }

.ico-checkbox-checked:before {
  content: ""; }

.ico-checkbox-unchecked:before {
  content: ""; }

.ico-clock:before {
  content: ""; }

.ico-file-excel:before {
  content: ""; }

.ico-calendar:before {
  content: ""; }

.ico-layers:before {
  content: ""; }

.ico-table:before {
  content: ""; }

.ico-add:before {
  content: ""; }

.ico-remove:before {
  content: ""; }

.ico-key:before {
  content: ""; }

@font-face {
  font-family: 'campagnolo-icons';
  src: url("../fonts/dacom-icons.eot?udw3bj");
  src: url("../fonts/dacom-icons.eot?udw3bj#iefix") format("embedded-opentype"), url("../fonts/dacom-icons.ttf?udw3bj") format("truetype"), url("../fonts/dacom-icons.woff?udw3bj") format("woff"), url("../fonts/dacom-icons.svg?udw3bj#dacom-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="ico-"], [class*=" ico-"] {
  font-family: 'campagnolo-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  [class^="ico-"].ico--left, [class*=" ico-"].ico--left {
    margin-right: 0.625rem; }
  [class^="ico-"].ico--right, [class*=" ico-"].ico--right {
    margin-left: 0.625rem; }
  [class^="ico-"].ico--primary, [class*=" ico-"].ico--primary {
    fill: #c62828; }
  [class^="ico-"].ico--secondary, [class*=" ico-"].ico--secondary {
    fill: #e6e6e6; }
  [class^="ico-"].ico--white, [class*=" ico-"].ico--white {
    fill: #ffffff; }

/* icons language */
.icon-language {
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  position: relative;
  display: inline-block; }
  .icon-language::before {
    content: '';
    position: relative;
    display: block;
    width: 16px;
    height: 12px; }
  .icon-language.language--it::before {
    background-image: url("../images/spritesheet/flags/it.svg");
    background-position: 0 0;
    background-size: 16px 12px;
    background-origin: inherit; }
  .icon-language.language--en::before {
    background-image: url("../images/spritesheet/flags/en.svg");
    background-position: 0 0;
    background-size: 16px 12px;
    background-origin: inherit; }
  .icon-language.language--fr::before {
    background-image: url("../images/spritesheet/flags/fr.svg");
    background-position: 0 0;
    background-size: 16px 12px;
    background-origin: inherit; }
  .icon-language.language--de::before {
    background-image: url("../images/spritesheet/flags/de.svg");
    background-position: 0 0;
    background-size: 16px 12px;
    background-origin: inherit; }
  .icon-language.language--es::before {
    background-image: url("../images/spritesheet/flags/es.svg");
    background-position: 0 0;
    background-size: 16px 12px;
    background-origin: inherit; }

/* COMPONENTS
Questa cartella contiente la maggior parte degli stili del sito ed
è suddivisa in componenti indipendenti tra loro. I selettori consentiti per i
componenti sono solamente selettori di classe ed è consigliato utilizzare una
sintssi di tipo BEM o similari. All'interno del componente è consentito ma
sconsigliato, l'utilizzo di altri tipi di selettori. Ogni file deve contenere
all'interno un solo componente principale, definito da una classe con lo stesso
nome del file. Se necessario, è possibile raggruppare i componenti dello stesso
tipo in sottocartelle per una miglior organizzazione. I componenti possono
essere innestati uno dentro l'altro ma non devono interagire tra di loro, ovvero
lo stile di un componente non deve dipendere dal componente che lo contiene.
*/
.breadcrumbs {
  border: none;
  padding: 0.625rem 0 0.9375rem;
  text-align: center !important; }
  @media screen and (min-width: 40em) {
    .breadcrumbs {
      text-align: left !important;
      margin-left: 1.25rem; } }
  @media screen and (min-width: 64em) {
    .breadcrumbs {
      text-align: left !important;
      margin-left: 1.25rem;
      padding: 0.9375rem 0; } }
  @media screen and (min-width: 120em) {
    .breadcrumbs {
      margin-left: 0; } }

.breadcrumbs a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.2;
  color: #999999;
  transition: all 300ms ease-out;
  display: inline-block;
  padding-top: 6px;
  text-transform: lowercase; }
  @media screen and (min-width: 40em) {
    .breadcrumbs a {
      font-size: 0.6875rem;
      letter-spacing: 0px; } }
  @media screen and (min-width: 80em) {
    .breadcrumbs a {
      font-size: 0.75rem;
      letter-spacing: 0px; } }
  @media screen and (min-width: 64em) {
    .breadcrumbs a {
      line-height: 1.6; } }
  .breadcrumbs a span {
    max-width: 21.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block; }
    @media screen and (min-width: 64em) {
      .breadcrumbs a span {
        max-width: 7.5rem; } }
    @media screen and (min-width: 120em) {
      .breadcrumbs a span {
        max-width: 10.625rem; } }

.breadcrumbs a:hover {
  opacity: 0.80;
  color: #c62828; }
  .breadcrumbs a:hover svg {
    fill: #c62828; }

.breadcrumbs a:hover,
.breadcrumbs div:hover a {
  text-decoration: none; }

.breadcrumbs * {
  margin: 0;
  display: inline; }

.breadcrumbs div:before {
  content: "⁄";
  color: rgba(153, 153, 153, 0.5);
  margin: 0px 0.25rem;
  position: relative;
  top: 0px;
  font-size: 19px;
  display: inline-block; }
  @media screen and (min-width: 64em) {
    .breadcrumbs div:before {
      top: -2px; } }

.breadcrumbs div:first-child:before {
  display: none; }

.breadcrumbs a.current {
  color: #999999;
  cursor: default; }

.button {
  font-size: 0.75rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 0.9375rem;
  letter-spacing: 0px;
  transition: all 300ms ease-out; }
  .button.radius {
    border-radius: 3px; }
  .button:hover, .button:focus {
    text-decoration: none; }
  .button--inverted {
    background: #ffffff;
    border: 0 solid #fff !important;
    color: #c62828 !important;
    font-weight: 600 !important; }
    .button--inverted:hover {
      background: #c62828 !important;
      color: #ffffff !important; }
  .button.secondary.hollow {
    border: 0.125rem solid #e6e6e6 !important; }
    .button.secondary.hollow svg {
      fill: #e6e6e6 !important;
      transition: all 300ms ease-out; }
    .button.secondary.hollow:hover {
      background: #e6e6e6 !important;
      color: #ffffff !important; }
      .button.secondary.hollow:hover svg {
        fill: #ffffff !important; }
    .button.secondary.hollow--gray {
      color: #a6a6a6;
      border: 0.125rem solid #cdcdcd !important; }
      .button.secondary.hollow--gray:hover {
        border-color: transparent !important; }
    .button.secondary.hollow.lighten {
      opacity: 0.6 !important; }
      .button.secondary.hollow.lighten:hover {
        opacity: 1 !important; }
  .button.secondary {
    background-color: #666666;
    color: #fff; }
  .button.grey {
    background-color: #e6e6e6 !important;
    color: #fff; }
    .button.grey:hover {
      background-color: #c62828 !important; }
  .button__icon {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: left;
    position: relative; }
    .button__icon:before, .button__icon:after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 0.9375rem;
      display: block;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat; }
    .button__icon:before {
      left: 0.9375rem; }
    .button__icon:after {
      right: 0.9375rem; }
    .button__icon-arrow {
      padding-right: 2.1875rem !important;
      margin-top: 2rem;
      background-image: url(../images/svg/arrow-negative.svg);
      background-repeat: no-repeat;
      background-size: 14px 14px;
      background-position: 80% 50%; }
      .button__icon-arrow:after {
        width: 0.875rem;
        height: 0.875rem;
        background-image: url(../images/spritesheet/arrow-negative.svg); }
      .button__icon-arrow:hover:after {
        background-image: url(../images/spritesheet/arrow.svg); }
    .button__icon-download {
      padding-right: 2.1875rem !important; }
      .button__icon-download:after {
        width: 0.875rem;
        height: 0.875rem;
        background-image: url(../images/spritesheet/ico-download.svg); }
    .button__icon-link {
      padding-right: 2.1875rem !important; }
      .button__icon-link:after {
        width: 0.875rem;
        height: 0.875rem;
        background-image: url(../images/spritesheet/ico-link.svg); }
    .button__icon-cart {
      padding-right: 2.1875rem !important; }
      .button__icon-cart:after {
        width: 1.25rem;
        height: 1.25rem;
        background-image: url(../images/spritesheet/cart.svg); }
    .button__icon-mail {
      padding-right: 2.1875rem !important; }
      .button__icon-mail:after {
        width: 1.25rem;
        height: 1.25rem;
        background-image: url(../images/spritesheet/mail.svg); }
      .button__icon-mail:hover:after {
        background-image: url(../images/spritesheet/mail-negative.svg); }
    .button__icon-telephone {
      padding-right: 2.1875rem !important;
      margin-top: 2rem; }
      .button__icon-telephone:after {
        width: 0.875rem;
        height: 0.875rem;
        background-image: url(../images/spritesheet/ico-telephone.svg); }
      .button__icon-telephone:hover:after {
        background-image: url(../images/spritesheet/ico-telephone-negative.svg); }
    .button__icon-edit {
      padding-right: 2.1875rem !important;
      margin-top: 2rem; }
      .button__icon-edit:after {
        width: 0.875rem;
        height: 0.875rem;
        background-image: url(../images/spritesheet/ico-edit.svg); }
      .button__icon-edit:hover:after {
        background-image: url(../images/spritesheet/ico-edit-negative.svg); }
    .button__icon-directions {
      padding-right: 2.1875rem !important;
      margin-top: 2rem; }
      .button__icon-directions:after {
        width: 0.875rem;
        height: 0.875rem;
        background-image: url(../images/spritesheet/ico-directions.svg); }
      .button__icon-directions:hover:after {
        background-image: url(../images/spritesheet/ico-directions-negative.svg); }
  .button--text {
    padding: 0;
    margin-top: 10px;
    background: transparent;
    color: #c62828;
    font-size: 0.75rem;
    font-weight: 700; }
    .button--text.button__icon-right {
      padding-right: 1.5rem;
      position: relative; }
      .button--text.button__icon-right:after {
        content: '';
        display: block;
        width: 0.75rem;
        height: 0.75rem;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background: url(../images/arrow-right_2--red.svg) no-repeat 50% 50%;
        background-size: contain; }
    .button--text:hover {
      background: transparent;
      color: #c62828;
      border-bottom: 1px solid #c62828; }
  .button--readmore {
    background: transparent;
    color: #c62828;
    text-align: left;
    display: inline-block !important;
    padding: 0.3125rem 1.875rem 0.3125rem 0;
    width: auto;
    border-bottom: 1px solid transparent;
    letter-spacing: 0;
    font-size: 0.8125rem;
    position: relative; }
    .button--readmore:after {
      content: '';
      display: block;
      width: 0.625rem;
      height: 0.625rem;
      position: absolute;
      top: 50%;
      right: 0.625rem;
      background: url(../images/spritesheet/arrow-down--red.svg) no-repeat 50% 50%;
      background-size: contain;
      margin-top: -0.3125rem; }
    .button--readmore:hover {
      background: transparent;
      color: #c62828;
      border-bottom: 1px solid #c62828; }
    .button--readmore.less:after {
      transform: rotate(-180deg); }
  .button.hollow {
    border: 0.125rem solid #666666 !important;
    color: #212121 !important; }
    .button.hollow:hover {
      background: #666666 !important;
      color: #ffffff !important; }
    .button.hollow--negative {
      background: transparent;
      border: 0.125rem solid rgba(255, 255, 255, 0.5) !important;
      color: #fff !important; }
      .button.hollow--negative:hover {
        background: #ffffff !important;
        color: #212121 !important; }
    .button.hollow.lighten {
      opacity: 0.6 !important; }
      .button.hollow.lighten:hover {
        opacity: 1 !important; }
  .button.light {
    background: #eee;
    color: #666 !important; }
    .button.light:hover {
      background: #bbbbbb;
      color: #ffffff !important; }
  .button--rounded {
    border-radius: 3.125rem !important; }
  .button--tiny {
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0;
    padding: 0.625rem 0.9375rem;
    letter-spacing: 1px; }
  .button--medium {
    font-size: 0.875rem;
    letter-spacing: 0;
    padding: 0.75rem 1.25rem; }
  .button--large {
    font-size: 0.75rem;
    padding: 0.75rem 0.9375rem; }
    @media screen and (min-width: 120em) {
      .button--large {
        font-size: 1rem;
        padding: 1.25rem; } }
  .button--xlarge {
    font-size: 1.125rem;
    padding: 0.9375rem 1.5625rem;
    letter-spacing: 0; }
    @media screen and (min-width: 120em) {
      .button--xlarge {
        font-size: 1.25rem;
        padding: 1.25rem 3.125rem; } }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .button.expand-small {
      width: 100%; } }
  .button.add2cart {
    text-transform: uppercase;
    padding: 1.125rem 0.9375rem;
    color: #ffffff;
    font-size: 0.9375rem; }
    .button.add2cart:hover {
      color: #ffffff; }

.button-group {
  margin: 0 0 3.75rem; }
  .button-group li {
    display: inline-block;
    margin: 0 0.3125rem; }
  .button-group .button {
    position: relative;
    padding: 0.9375rem 2.8125rem 0.9375rem 1.5625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: none; }
    .button-group .button:not(.hollow) {
      background-color: #c62828 !important; }
    .button-group .button.hollow {
      border: 0.125rem solid rgba(198, 40, 40, 0.5) !important;
      color: #c62828; }
      .button-group .button.hollow svg {
        fill: #c62828 !important; }
      .button-group .button.hollow:hover {
        background-color: #c62828 !important;
        border-color: transparent !important; }
      .button-group .button.hollow.lighten {
        opacity: 0.6 !important; }
        .button-group .button.hollow.lighten:hover {
          opacity: 1 !important; }
    .button-group .button.no-icon {
      padding: 0.9375rem 1.5625rem 0.9375rem 1.5625rem; }
    .button-group .button svg {
      width: 1rem;
      height: 1rem;
      position: absolute;
      top: 50%;
      right: 1.25rem;
      margin-top: -0.5rem; }
      .button-group .button svg:not(.hollow) {
        fill: #ffffff; }
    .button-group .button.expand-small {
      margin: 0.25rem 0; }
    .button-group .button:hover {
      background-color: #c62828; }

/* button group */
.button-group {
  position: relative;
  display: block;
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 1.875rem 0 0 0;
  text-align: center;
  /* item right */
  /* links */
  /* buttons */ }
  @media screen and (min-width: 40em) {
    .button-group {
      text-align: left; } }
  .button-group > li {
    display: block;
    padding: 0; }
    @media screen and (min-width: 40em) {
      .button-group > li {
        display: inline-block;
        padding-right: 0.625rem; }
        .button-group > li:last-of-type {
          padding: 0; } }
  .button-group.group--centered {
    text-align: center; }
    .button-group.group--centered > li {
      float: none; }
  .button-group__item.item--right {
    display: block;
    padding: 0; }
    @media screen and (min-width: 40em) {
      .button-group__item.item--right {
        float: right;
        display: inline-block; } }
  .button-group__link {
    display: block;
    padding: 0.4375rem 0;
    font-size: 0.875rem;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    transition: all 300ms ease-out; }
    @media screen and (min-width: 40em) {
      .button-group__link {
        float: left;
        padding: 0; }
        .button-group__link:not(:last-of-type) {
          border-right: 1px solid #cccccc;
          padding-right: 0.9375rem;
          margin-right: 0.9375rem; } }
  .button-group__button {
    display: block;
    text-transform: uppercase;
    padding: 1.125rem 0.9375rem;
    color: #ffffff;
    font-size: 0.9375rem;
    width: 100%; }
    @media screen and (min-width: 40em) {
      .button-group__button {
        display: inline-block;
        width: auto;
        margin-bottom: 0; } }

/* button quantity */
.button-quantity {
  position: relative;
  display: table;
  overflow: hidden; }
  .button-quantity__input {
    display: table-cell;
    vertical-align: middle;
    max-width: 2.1875rem;
    height: 1.625rem !important;
    padding: 0.1875rem !important;
    margin: 0 !important;
    border: 1px solid #cccccc !important;
    background-color: #ffffff !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    color: #666666 !important;
    text-align: center;
    -moz-appearance: textfield; }
    .button-quantity__input:focus {
      outline: none; }
    .button-quantity__input::-webkit-outer-spin-button, .button-quantity__input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .button-quantity ::-webkit-input-placeholder {
    color: #cccccc; }
  .button-quantity :-moz-placeholder {
    color: #cccccc; }
  .button-quantity ::-moz-placeholder {
    color: #cccccc; }
  .button-quantity :-ms-input-placeholder {
    color: #cccccc; }
  .button-quantity__minus, .button-quantity__plus {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    background-color: #cccccc;
    text-align: center;
    width: 1.625rem;
    height: 1.625rem;
    transition: all 0.5s ease; }
    .button-quantity__minus i, .button-quantity__plus i {
      color: #ffffff;
      line-height: 26px;
      font-size: 0.5rem;
      vertical-align: middle;
      opacity: 0.90;
      transition: all 0.5s ease; }
    .button-quantity__minus:hover, .button-quantity__minus:focus, .button-quantity__plus:hover, .button-quantity__plus:focus {
      background-color: #999999; }
      .button-quantity__minus:hover i, .button-quantity__minus:focus i, .button-quantity__plus:hover i, .button-quantity__plus:focus i {
        opacity: 1.00; }
    .button-quantity__minus:active i, .button-quantity__plus:active i {
      -webkit-animation-name: iconPop;
      animation-name: iconPop;
      -webkit-animation-duration: 0.3s;
      animation-duration: 0.3s;
      -webkit-animation-timing-function: linear;
      animation-timing-function: linear;
      -webkit-animation-iteration-count: 1;
      animation-iteration-count: 1; }
  .button-quantity__input:focus + .button-cart__button {
    background-color: #d6d6d6; }

#footer-form {
  position: relative;
  display: none;
  opacity: 0; }

#footer-form.open {
  display: block;
  opacity: 1; }

/*-------------------
FORM
-------------------*/
.form .row.collapse .column, .form .row.collapse .columns,
.form .row.collapse .columns {
  padding: 0 1.25rem; }

input[type="text"], input[type="password"], input[type="date"],
input[type="datetime"], input[type="datetime-local"], input[type="month"],
input[type="week"], input[type="email"], input[type="number"], input[type="search"],
input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea, select {
  color: #666666;
  font-size: 0.9375rem;
  height: 2.9375rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border: 1px solid rgba(230, 230, 230, 0.3);
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  padding: 0.5rem 0.9375rem;
  transition: all 0.2s linear;
  margin-bottom: 2.5rem; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus,
  input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus,
  input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus,
  input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="color"]:focus, textarea:focus, select:focus {
    background: rgba(255, 255, 255, 0);
    box-shadow: none; }

.prefix,
.postfix {
  height: 2.9375rem; }

label {
  font-family: "Montserrat", Arial, sans-serif;
  color: #212121;
  line-height: 1.5;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding-bottom: 0.3125rem; }

input[type="checkbox"] + label,
input[type="radio"] + label {
  width: 100%;
  vertical-align: top;
  line-height: 1.3; }
  input[type="checkbox"] + label a,
  input[type="radio"] + label a {
    color: #666666;
    text-decoration: underline;
    display: inline-block;
    font-size: 0.875rem; }
  input[type="checkbox"] + label span,
  input[type="radio"] + label span {
    margin-bottom: 1rem; }

/*-------------------
FORM Footer
-------------------*/
.form--footer input[type="text"], .form--footer input[type="password"], .form--footer input[type="date"],
.form--footer input[type="datetime"], .form--footer input[type="datetime-local"], .form--footer input[type="month"],
.form--footer input[type="week"], .form--footer input[type="email"], .form--footer input[type="number"], .form--footer input[type="search"],
.form--footer input[type="tel"], .form--footer input[type="time"], .form--footer input[type="url"], .form--footer input[type="color"], .form--footer textarea, .form--footer select {
  color: #ffffff;
  font-size: 0.9375rem;
  height: 2.9375rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-width: 0 0 2px 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
  padding: 0.5rem 0.9375rem;
  transition: all 0.2s linear;
  margin-bottom: 2.5rem; }
  .form--footer input[type="text"]:focus, .form--footer input[type="password"]:focus, .form--footer input[type="date"]:focus,
  .form--footer input[type="datetime"]:focus, .form--footer input[type="datetime-local"]:focus, .form--footer input[type="month"]:focus,
  .form--footer input[type="week"]:focus, .form--footer input[type="email"]:focus, .form--footer input[type="number"]:focus, .form--footer input[type="search"]:focus,
  .form--footer input[type="tel"]:focus, .form--footer input[type="time"]:focus, .form--footer input[type="url"]:focus, .form--footer input[type="color"]:focus, .form--footer textarea:focus, .form--footer select:focus {
    background: rgba(255, 255, 255, 0);
    border-width: 0 0 2px 0;
    border-style: solid;
    border-color: white;
    box-shadow: none; }

.form--footer textarea {
  height: auto;
  min-height: 2.9375rem; }

.form--footer p {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, sans-serif; }
  .form--footer p a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
    text-decoration: underline; }
    .form--footer p a:hover {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.7); }

.form--footer div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox {
  position: absolute;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  opacity: 0; }
  .form--footer div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label {
    margin: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    font-family: "Roboto", Arial, sans-serif;
    letter-spacing: 0.005rem; }
    @media screen and (min-width: 64em) {
      .form--footer div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label {
        font-size: 0.875rem; } }
  .form--footer div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    transition: all 300ms ease-out; }
    @media screen and (min-width: 64em) {
      .form--footer div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label a {
        font-size: 0.875rem; } }
  .form--footer div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label a:hover {
    color: white; }
  .form--footer div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label span.custom-checkbox__shape {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin: -0.125rem 0.625rem 0 0;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    cursor: pointer;
    float: left; }
  .form--footer div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox:checked + .custom-checkbox__label span.custom-checkbox__shape {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3); }

.form--footer div:not(.switch) input[type="checkbox"]:checked + .custom-checkbox__label span.custom-checkbox__shape:after {
  background-image: url("../images/spritesheet/check--white.svg") !important; }

/*-------------------
FORM GENERICO
-------------------*/
.form.form--generic input[type="text"], .form.form--generic input[type="password"], .form.form--generic input[type="date"], .form.form--generic input[type="datetime"], .form.form--generic input[type="datetime-local"],
.form.form--generic input[type="month"], .form.form--generic input[type="week"], .form.form--generic input[type="email"], .form.form--generic input[type="tel"], .form.form--generic input[type="time"], .form.form--generic input[type="url"],
.form.form--generic input[type="color"], .form.form--generic input[type="number"], .form.form--generic input[type="search"], .form.form--generic input[type="file"], .form.form--generic textarea, .form.form--generic select {
  color: #666666;
  font-size: 0.9375rem;
  height: 2.9375rem;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border: 0.125rem solid #d5d5d5;
  box-shadow: none;
  padding: 0.5rem 0.9375rem;
  transition: all 0.2s linear;
  margin-bottom: 1.25rem; }
  .form.form--generic input[type="text"]:focus, .form.form--generic input[type="password"]:focus, .form.form--generic input[type="date"]:focus, .form.form--generic input[type="datetime"]:focus, .form.form--generic input[type="datetime-local"]:focus,
  .form.form--generic input[type="month"]:focus, .form.form--generic input[type="week"]:focus, .form.form--generic input[type="email"]:focus, .form.form--generic input[type="tel"]:focus, .form.form--generic input[type="time"]:focus, .form.form--generic input[type="url"]:focus,
  .form.form--generic input[type="color"]:focus, .form.form--generic input[type="number"]:focus, .form.form--generic input[type="search"]:focus, .form.form--generic input[type="file"]:focus, .form.form--generic textarea:focus, .form.form--generic select:focus {
    background: white;
    border-color: rgba(198, 40, 40, 0.85); }

.form.form--generic.white-fields input[type="text"],
.form.form--generic.white-fields input[type="file"],
.form.form--generic.white-fields input[type="email"],
.form.form--generic.white-fields textarea,
.form.form--generic.white-fields select {
  background-color: #ffffff; }

.form.form--generic input[type=file] {
  padding: 0.75rem 0.625rem;
  height: auto;
  font-size: 0.875rem;
  color: #666666; }

.form.form--generic select {
  background-image: url(../images/spritesheet/arrow-down.svg);
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  color: rgba(102, 102, 102, 0.7);
  padding: 0.5rem 0 0.5rem 0.9375rem !important; }
  .form.form--generic select:focus {
    background-position: calc(100% - 15px) center !important;
    background-image: url(../images/spritesheet/arrow-down.svg) !important;
    background-repeat: no-repeat !important; }

.form.form--generic textarea {
  height: auto; }

.form.form--generic div[class*="privacy"] a {
  font-size: 0.875rem;
  text-decoration: underline; }
  .form.form--generic div[class*="privacy"] a:hover {
    color: #c62828;
    text-decoration: none; }

.form.form--generic div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label span.custom-checkbox__shape {
  border: 2px solid #d5d5d5;
  margin-bottom: 2rem;
  background-color: #ffffff;
  border-radius: 0px;
  margin-right: 0.4375rem; }
  @media screen and (min-width: 40em) {
    .form.form--generic div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label span.custom-checkbox__shape {
      margin-bottom: 1rem; } }
  @media screen and (min-width: 64em) {
    .form.form--generic div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label span.custom-checkbox__shape {
      margin-bottom: 0.25rem; } }

.form.form--generic div:not(.switch) input[type="checkbox"]:checked + .custom-checkbox__label span.custom-checkbox__shape:after {
  background-image: url("../images/spritesheet/check--gray.svg");
  top: 0px;
  opacity: 0.7; }

.form.form--generic .select-panel {
  margin-bottom: 1.875rem;
  padding: 0.75rem 0.9375rem 0.25rem;
  background: #e1e1e1;
  border-radius: 2px; }
  @media screen and (min-width: 40em) {
    .form.form--generic .select-panel {
      padding: 1.25rem 1.875rem 0.9375rem; } }
  .form.form--generic .select-panel label {
    margin-bottom: 0.5rem; }
  .form.form--generic .select-panel select {
    background-color: #ffffff; }

.form.form--generic .row.collapse .column, .form.form--generic .row.collapse .columns,
.form.form--generic .row.collapse .columns {
  padding-right: 0;
  padding-left: 0; }
  @media screen and (min-width: 40em) {
    .form.form--generic .row.collapse .column, .form.form--generic .row.collapse .columns,
    .form.form--generic .row.collapse .columns {
      padding-right: 1.25rem;
      padding-left: 0; } }

.form.form--generic input[type="radio"] {
  display: none; }

.form.form--generic input[type="radio"] + label {
  color: #424242;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0 0 0 1.375rem;
  font-size: 0.75rem;
  text-transform: none !important; }

.form.form--generic input[type="radio"] + label:before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  margin: -1px 4px 0 0;
  vertical-align: top;
  cursor: pointer;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0; }

.form.form--generic input[type="radio"] + label:before {
  background-color: #fff;
  border: 0.3125rem solid transparent;
  box-shadow: 0 0 1px rgba(33, 33, 33, 0.7); }

.form.form--generic input[type="radio"]:checked + label:before {
  background-color: #424242;
  border: 0.3125rem solid #fff; }

.form.form--generic input[type="radio"] + label:before,
.form.form--generic input[type="radio"]:checked + label:before {
  -webkit-transition: background-color 100ms linear;
  -o-transition: background-color 100ms linear;
  -moz-transition: background-color 100ms linear;
  transition: background-color 100ms linear; }

/*-------------------
FORM Newsletter
-------------------*/
.form--newsletter {
  position: relative;
  margin-top: 0.4375rem;
  margin-bottom: 1.875rem;
  display: inline-block;
  text-align: center; }
  @media screen and (min-width: 80em) {
    .form--newsletter {
      margin-bottom: 0; } }
  .form--newsletter input,
  .form--newsletter input:focus {
    border: 0;
    background-color: #ffffff;
    color: #666666;
    font-size: 0.8125rem;
    padding: 0.625rem 0.875rem;
    height: 40px;
    display: inline-block;
    margin: 0;
    text-align: center; }
    @media screen and (min-width: 40em) {
      .form--newsletter input,
      .form--newsletter input:focus {
        padding: 0.625rem 9.375rem 0.625rem 0.875rem;
        text-align: left; } }
  .form--newsletter__button {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.8125rem;
    color: #ffffff;
    text-transform: uppercase;
    background: #c62828;
    border: 2px solid #ffffff;
    height: 40px;
    display: inline-block;
    margin-top: 0.625rem;
    padding: 0.625rem 0.875rem;
    transition: all 300ms ease-out; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .form--newsletter__button {
        width: 100%; } }
    @media screen and (min-width: 40em) {
      .form--newsletter__button {
        margin: 0;
        position: absolute;
        right: 0;
        top: 0;
        border-left: none; } }
    .form--newsletter__button:hover {
      background-color: #ffffff;
      color: #c62828; }
  .form--newsletter .custom-checkbox__label {
    color: #212121 !important;
    font-size: 0.6875rem;
    text-align: left !important; }
    .form--newsletter .custom-checkbox__label a {
      color: #212121 !important;
      font-size: 0.6875rem;
      padding-left: 1.875rem; }
      @media screen and (min-width: 0em) and (max-width: 39.9375em) {
        .form--newsletter .custom-checkbox__label a {
          padding-left: 0; } }
  .form--newsletter div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label span.custom-checkbox__shape {
    border: 1px solid #a1a1a1 !important; }
  .form--newsletter div:not(.switch) input[type="checkbox"]:checked + .custom-checkbox__label span.custom-checkbox__shape:after {
    background-image: url("../images/spritesheet/check.svg") !important; }

/*-------------------
ERRORS
-------------------*/
.form-error input,
.form-error textarea,
.form-error select {
  margin-bottom: 1rem !important; }

[data-abide] .form-error label {
  color: #fbcec7; }

[data-abide] .is-invalid-input + small.form-error,
[data-abide] .is-invalid-input + input + small.form-error {
  display: inline-block;
  position: relative;
  border: 2px solid #fbcec7;
  background: #fbcec7;
  color: #ffffff;
  font-weight: 400;
  left: 0;
  bottom: 1rem;
  margin: 0;
  padding: 0.3125rem;
  font-size: 0.8125rem;
  line-height: 1;
  width: 100%; }
  [data-abide] .is-invalid-input + small.form-error::before,
  [data-abide] .is-invalid-input + input + small.form-error::before {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    margin: auto;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fbcec7;
    right: initial;
    left: 0.4375rem; }

.error--privacy .is-invalid-label + small.form-error {
  display: inline-block;
  position: relative;
  border: 2px solid #fbcec7;
  background: #fbcec7;
  color: #ffffff;
  font-weight: 400;
  left: 0;
  right: 0;
  top: 0;
  float: none;
  bottom: 1rem;
  margin: 0;
  padding: 0.3125rem;
  font-size: 0.8125rem;
  line-height: 1; }
  .error--privacy .is-invalid-label + small.form-error::before {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    margin: auto;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fbcec7;
    left: 0;
    right: initial; }

/*-------------------
PLACEHOLDER
-------------------*/
.form--footer ::-webkit-input-placeholder {
  color: white; }

.form--footer :-moz-placeholder {
  color: white; }

.form--footer ::-moz-placeholder {
  color: white; }

.form--footer :-ms-input-placeholder {
  color: white; }

.form--generic ::-webkit-input-placeholder,
.form--newsletter ::-webkit-input-placeholder {
  color: #666666; }

.form--generic :-moz-placeholder,
.form--newsletter :-moz-placeholder {
  color: #666666; }

.form--generic ::-moz-placeholder,
.form--newsletter ::-moz-placeholder {
  color: #666666; }

.form--generic :-ms-input-placeholder,
.form--newsletter :-ms-input-placeholder {
  color: #666666; }

/*-------------------
CUSTOM CHECKBOX
-------------------*/
.check-privacy-container p {
  margin: 0 0 0.5625rem 0;
  font-size: 0.8125rem; }

.custom-checkbox {
  margin: 0 0 0.125rem 0;
  position: relative; }

.form:not(.form--generic) .custom-checkbox__label {
  color: #666666; }
  .form:not(.form--generic) .custom-checkbox__label a {
    color: #666666; }

div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox {
  position: absolute;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  opacity: 0; }
  div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label {
    font-family: "Roboto", Arial, sans-serif;
    text-transform: none;
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
    text-align: left; }
  div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox + .custom-checkbox__label span.custom-checkbox__shape {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin: -0.125rem 0.625rem 0 0;
    border: 2px solid rgba(102, 102, 102, 0.3);
    background-color: rgba(102, 102, 102, 0);
    border-radius: 3px;
    cursor: pointer;
    float: left;
    position: relative; }
  div:not(.switch) input[type="checkbox"].custom-checkbox__checkbox:checked + .custom-checkbox__label span.custom-checkbox__shape {
    background-color: rgba(102, 102, 102, 0); }

div:not(.switch) input[type="checkbox"]:checked + .custom-checkbox__label span.custom-checkbox__shape:after {
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: -1px;
  line-height: 1.4;
  text-align: center;
  width: 18px;
  height: 18px;
  background-image: url("../images/spritesheet/check.svg");
  background-position: center center;
  background-size: 70% 70%;
  background-repeat: no-repeat; }

.switch input[type="checkbox"] + .custom-checkbox__label {
  color: inherit !important;
  text-indent: 4.375rem;
  white-space: nowrap; }
  .switch input[type="checkbox"] + .custom-checkbox__label:hover {
    background-color: #999;
    color: #262626 !important; }

.fieldset-box {
  padding: 0.9375rem 0.9375rem 0.3125rem !important;
  border: 0.125rem solid #d4d4d4;
  border-radius: 3px;
  background: #e1e1e1; }
  .fieldset-box__description {
    font-size: 0.9375rem;
    line-height: 1.2em;
    font-weight: 500;
    font-family: "Montserrat", Arial, sans-serif;
    margin: 0.3125rem 0 1.25rem; }
  .fieldset-box .customradio {
    margin-bottom: 0.9375rem; }
  .fieldset-box .customradio label {
    font-size: 0.8125rem;
    font-family: "Montserrat", Arial, sans-serif; }
    .fieldset-box .customradio label:before {
      border-color: #b3b3b3; }
  .fieldset-box .customradio input[type="radio"]:checked + label:before {
    background: #c62828;
    box-shadow: 0 0 2px #c62828; }

.fieldset-registration {
  border: 0.0625rem solid rgba(198, 40, 40, 0.7);
  margin: 0.625rem 0 1.875rem;
  padding: 0.3125rem 0.9375rem;
  border-radius: 3px; }
  .fieldset-registration legend {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5625rem;
    padding: 0 15px;
    color: #c62828; }

/*-------------------
CUSTOM RADIO
-------------------*/
.customradio {
  margin-bottom: 5px;
  float: left;
  position: relative; }

.customradio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 1.563rem;
  margin-right: .938rem; }

.customradio input[type="radio"] {
  display: none; }

.customradio input[type="radio"] + label {
  margin-left: 0; }

.customradio label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: .625rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  border-radius: 1rem;
  border: .063rem solid #ccc; }

.customradio .radio label:before {
  border-radius: .5rem; }

.customradio input[type="radio"]:checked + label:before {
  content: "";
  text-align: center;
  width: 16px;
  height: 16px;
  line-height: 16px;
  background-color: #424242;
  border: 4px solid #fff; }

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
  .form .button {
    width: 100%;
    margin-top: 0.625rem; } }

.qty {
  width: 60px;
  height: 25px;
  text-align: center;
  display: inline-block; }

input.qtyplus {
  width: 25px;
  height: 25px;
  display: inline-block; }

input.qtyminus {
  width: 25px;
  height: 25px;
  display: inline-block; }

.fieldsetpanel {
  margin-bottom: 2.8125rem;
  padding: 0 0.9375rem 1.875rem;
  border: 0.1875rem solid #cdcdcd; }
  .fieldsetpanel input:not(.button),
  .fieldsetpanel select {
    outline: 0px;
    background-color: #fff;
    border: 0; }
  .fieldsetpanel label {
    font-weight: 400; }
  .fieldsetpanel legend {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 auto;
    display: inline-block;
    color: #b3b3b3;
    font-family: "Montserrat", Arial, sans-serif;
    background: #f2f2f2;
    position: relative;
    margin-top: -17px;
    padding: 0 15px; }
  .fieldsetpanel .collapse .columns {
    margin: 0 !important;
    padding: 0 !important; }

.js .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.inputfile + label {
  max-width: 80%;
  font-size: 1rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  /* 10px 20px */ }

.no-js .inputfile + label {
  display: none; }

.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px; }

.inputfile + label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */ }

.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  /* 4px */
  margin-right: 0.25em;
  /* 4px */ }

/* style 1 */
.inputfile-1 + label {
  max-width: 100%;
  display: block;
  font-size: 0.8125rem;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 600;
  color: #ffffff !important;
  background-color: transparent;
  border: 0.125rem solid gray;
  padding: 0.625rem 1.25rem;
  position: relative;
  transition: all 300ms ease-out; }
  .inputfile-1 + label:after {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    right: 0.9375rem;
    background: url(../images/upload--white.svg) no-repeat 50% 50%;
    background-size: contain;
    margin-top: -0.5rem;
    opacity: 0.7; }
  .inputfile-1 + label:hover {
    background: #646c70 !important;
    border-color: transparent;
    color: #ffffff; }
  @media screen and (min-width: 40em) {
    .inputfile-1 + label {
      font-size: 0.8125rem; } }
  @media screen and (min-width: 64em) {
    .inputfile-1 + label {
      font-size: 0.8125rem;
      padding: 0.625rem 1.25rem; } }
  @media screen and (min-width: 120em) {
    .inputfile-1 + label {
      font-size: 0.8125rem; } }

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
  background-color: transparent;
  outline: none; }

/* errors */
.error {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0.9375rem;
  right: 0.9375rem;
  transform: translate(0, 100%);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1;
  color: #ffffff !important;
  margin: 0;
  padding: 0.3125rem;
  background-color: #cc0000;
  z-index: 999 !important; }
  .collapse > .column > .error, .collapse > .columns > .error,
  .collapse > .columns > .error {
    left: 0;
    right: 0; }
  .error::before {
    content: '';
    position: absolute;
    display: block;
    left: 0.625rem;
    margin: auto;
    top: -6px;
    bottom: initial;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #cc0000;
    border-top: none; }
  .error.negative-top {
    bottom: 1.875rem !important; }

.form label {
  padding-top: 0.75rem; }

.form.form--generic input[type="text"],
.form.form--generic input[type="password"],
.form.form--generic input[type="date"],
.form.form--generic input[type="datetime"],
.form.form--generic input[type="datetime-local"],
.form.form--generic input[type="month"],
.form.form--generic input[type="week"],
.form.form--generic input[type="email"],
.form.form--generic input[type="tel"],
.form.form--generic input[type="time"],
.form.form--generic input[type="url"],
.form.form--generic input[type="color"],
.form.form--generic input[type="number"],
.form.form--generic input[type="search"],
.form.form--generic input[type="file"],
.form.form--generic textarea,
.form.form--generic select {
  margin-bottom: 0.25rem; }

.form.form--generic .form-error {
  margin-top: 0;
  margin-bottom: 0; }

.form.form--generic span.form-error.show-error,
.form.form--generic span.form-error[style*="visibility: visible"] {
  display: block; }

#google-container {
  position: relative;
  width: 100%;
  height: 18.75rem;
  background-color: #f2f2f2;
  border-top: 0 solid #ffffff; }
  #google-container.medium {
    height: 12.5rem; }

@media only screen and (min-width: 768px) {
  #google-container {
    height: 28.125rem; }
    #google-container.medium {
      height: 18.75rem; } }

@media only screen and (min-width: 1170px) {
  #google-container {
    height: 37.5rem; }
    #google-container.medium {
      height: 34.375rem; } }

#cd-google-map {
  position: relative; }

.js-cd-top {
  z-index: 999;
  display: inline-block;
  height: 3.125rem;
  width: 3.125rem;
  position: fixed;
  bottom: 0.625rem;
  right: 0.625rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #c62828 url(../images/spritesheet/cd-top-arrow.svg) no-repeat center 50%;
  background-size: 80% 80%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  border-radius: 3px; }
  .js-cd-top.js-cd-is-visible {
    visibility: visible;
    opacity: 1; }
  .js-cd-top.js-cd-fade-out {
    opacity: 0.7; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .js-cd-top {
      height: 2.625rem;
      width: 2.625rem;
      right: 0.3125rem;
      bottom: 0.3125rem; }
      .js-cd-top:before {
        content: '';
        width: 1.125rem;
        height: 1.125rem; } }
  .js-cd-top:hover {
    background-color: #c62828;
    opacity: 1 !important; }
  @media screen and (min-width: 40em) {
    .js-cd-top.slideup {
      bottom: 4.0625rem; } }

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #fff;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("fancybox/fancybox_sprite.png"); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

/*#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url('fancybox/fancybox_loading.gif') center center no-repeat;
}*/
#fancybox-loading div {
  display: block;
  position: fixed;
  z-index: 999999;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: solid 2px transparent;
  border-top-color: #fff;
  border-left-color: #fff;
  border-radius: 50%;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
  margin: -25px 0 0 -25px; }

.fancybox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 8040;
  background-image: url("../images/spritesheet/close.svg") !important;
  background-size: contain !important; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("fancybox/fancybox_overlay.png"); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("fancybox/fancybox_sprite@2x.png"); } }

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #212121;
  background-color: rgba(33, 33, 33, 0.95);
  overflow-y: auto;
  transition: 0.5s;
  /*------------------*/
  /* LANGUAGE */
  /*------------------*/
  /*------------------*/
  /* SEARCH */
  /*------------------*/ }
  @media screen and (min-width: 40em) {
    .overlay {
      overflow-y: hidden; } }
  .overlay__closebtn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 1.875rem;
    height: 1.875rem;
    background: url(../images/close--white.svg) no-repeat 50% 50%;
    background-size: contain;
    opacity: 0.8; }
    .overlay__closebtn span {
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      font-size: 0px; }
    @media screen and (min-width: 40em) {
      .overlay__closebtn {
        top: 2.8125rem;
        right: 2.8125rem;
        width: 2.25rem;
        height: 2.25rem; } }
    .overlay__closebtn:hover {
      opacity: 1; }
  .overlay__content {
    position: relative;
    top: 15%;
    width: 100%;
    text-align: center;
    margin-top: 1.875rem; }
    @media screen and (min-width: 40em) {
      .overlay__content {
        top: 25%; } }
    .overlay__content ul {
      list-style: none;
      font-family: "Montserrat", Arial, sans-serif;
      text-transform: uppercase;
      font-weight: 700; }
    .overlay__content a {
      padding: 0.5rem;
      text-decoration: none;
      font-size: 1.25rem;
      color: #ffffff;
      display: block;
      transition: 0.3s; }
      @media screen and (min-width: 40em) {
        .overlay__content a {
          font-size: 2.25rem; } }
      .overlay__content a:hover, .overlay__content a:focus {
        color: #f1f1f1; }
  @media screen and (min-width: 40em) {
    .overlay--language .overlay__content {
      top: 15%; } }
  .overlay--language ul {
    display: inline-block;
    margin: 0;
    padding: 0; }
  .overlay--language li {
    margin-bottom: 0.9375rem; }
    .overlay--language li a {
      font-weight: 300;
      display: inline-block;
      padding: 0 2.8125rem; }
      @media screen and (min-width: 40em) {
        .overlay--language li a {
          font-size: 1.5rem; } }
      @media screen and (min-width: 64em) {
        .overlay--language li a {
          font-size: 1.625rem; } }
      @media screen and (min-width: 120em) {
        .overlay--language li a {
          font-size: 2rem; } }
      .overlay--language li a:not(.active):hover {
        background: white;
        color: #c62828; }
      .overlay--language li a.active {
        background: #c62828;
        color: #ffffff; }
  .overlay--search__box {
    position: relative; }
  .overlay--search__field {
    margin: 0px !important;
    padding: 0 2.8125rem 0 0.4375rem !important;
    height: 4.0625rem;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
    border-bottom: 0.125rem solid #ffffff !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    background-color: transparent;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.4em; }
    @media screen and (min-width: 40em) {
      .overlay--search__field {
        padding: 0 2.625rem 0 0.9375rem;
        height: 5.3125rem;
        font-size: 1.875rem; } }
    @media screen and (min-width: 64em) {
      .overlay--search__field {
        padding: 0 4.0625rem 0 0.9375rem !important;
        height: 5.9375rem !important;
        font-size: 1.875rem !important; } }
    .overlay--search__field:focus {
      border-bottom: 0.125rem solid #ffffff !important; }
  .overlay--search__button {
    display: block;
    position: absolute;
    top: 50%;
    right: 1.5625rem;
    transform: translateY(-50%);
    width: 1.375rem;
    height: 1.375rem;
    margin: 0px;
    border: 0px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0px;
    transition: all 300ms ease-out;
    background: url(../images/magnify--white.svg) no-repeat 50% 50%;
    background-size: contain;
    opacity: 0.7;
    cursor: pointer;
    outline: none; }
    .overlay--search__button:hover {
      opacity: 1; }
    @media screen and (min-width: 64em) {
      .overlay--search__button {
        right: 2rem;
        width: 1.875rem;
        height: 1.875rem; } }
  .overlay--search ::-webkit-input-placeholder {
    opacity: 0.7;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7) !important; }
  .overlay--search :-moz-placeholder {
    opacity: 0.7;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7) !important; }
  .overlay--search ::-moz-placeholder {
    opacity: 0.7;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7) !important; }
  .overlay--search :-ms-input-placeholder {
    opacity: 0.7;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7) !important; }

.js-phone {
  cursor: pointer; }
  .js-phone.disabled, .js-phone.disabled:hover {
    cursor: default;
    color: #666666;
    text-decoration: none !important;
    opacity: 1; }

p .js-phone.disabled, p .js-phone.disabled:hover {
  color: #666666; }

.footer .js-phone.disabled, .footer .js-phone.disabled:hover {
  color: #666666 !important; }

.page-nav {
  padding: 0;
  margin: 0;
  display: inline-block; }
  @media screen and (min-width: 40em) {
    .page-nav {
      margin-right: 1.25rem;
      position: relative;
      top: 50%;
      transform: translateY(-50%); } }
  @media screen and (min-width: 64em) {
    .page-nav {
      float: right;
      margin-right: 1.25rem;
      position: relative;
      top: 50%;
      transform: translateY(-50%); } }
  @media screen and (min-width: 80em) {
    .page-nav {
      margin-right: 0; } }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .page-nav {
      float: none;
      text-align: center;
      margin-right: 0;
      padding-bottom: 1.25rem; } }
  .page-nav li {
    display: inline-block;
    margin: 0 0.375rem;
    position: relative;
    transition: all 300ms ease-out; }
    .page-nav li a {
      display: block;
      text-align: center;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      font-size: 0px;
      transition: all 300ms ease-out;
      opacity: 1;
      width: 16px;
      height: 16px;
      background-size: 16px 16px;
      background-position: 50% 50%; }
      .page-nav li a.disabled {
        opacity: 0.2;
        cursor: auto; }
        .page-nav li a.disabled:hover {
          opacity: 0.2; }
      .page-nav li a:hover {
        opacity: 0.8; }
    .page-nav li.disabled {
      opacity: 0.2;
      cursor: default;
      pointer-events: none; }
    .page-nav li span {
      /* aprile 2022 */
      display: none; }
  .page-nav__left a {
    background: url(../images/spritesheet/page-arrow-left.svg) no-repeat 50% 50%; }
  .page-nav__grid a {
    background: url(../images/spritesheet/page-list.svg) no-repeat 50% 50%; }
  .page-nav__right a {
    background: url(../images/spritesheet/page-arrow-right.svg) no-repeat 50% 50%; }
  .page-nav .has-tip {
    border: none; }

.page-nav.center {
  margin-top: 0px;
  margin-bottom: 1.25rem;
  float: left;
  width: 100%;
  text-align: center; }

.pagination-centered {
  text-align: center; }

.pagination {
  margin: 0 auto;
  padding: 0 0;
  margin-bottom: 0em;
  border-top: 0 solid #d4d4d4;
  padding-bottom: 1.25rem;
  margin-top: -1.875rem; }
  @media screen and (min-width: 64em) {
    .pagination {
      margin: 0;
      padding-bottom: 2.5rem; } }
  .pagination ul {
    display: inline-block;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding-top: 0.4375rem; }
  .pagination ul > li {
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 0px;
    text-align: -webkit-match-parent; }
  .pagination ul > li > a,
  .pagination ul > li > span {
    float: left;
    padding: 0.6875rem 0.625rem;
    font-size: 0.875rem;
    line-height: 1.1875rem;
    text-decoration: none;
    color: #a6a6a6;
    border-bottom: 0px solid transparent;
    transition: all 300ms ease-out; }
    @media screen and (min-width: 64em) {
      .pagination ul > li > a,
      .pagination ul > li > span {
        padding: 0.6875rem 0.9375rem; } }
    .pagination ul > li > a:hover,
    .pagination ul > li > span:hover {
      color: #c62828;
      border-bottom: 0 solid transparent; }
  .pagination ul > li.active > a,
  .pagination ul > li.active > span,
  .pagination ul > li.active > a:hover {
    color: #c62828;
    cursor: default;
    border-bottom: 0 solid #c62828;
    font-weight: 600; }
  @media screen and (min-width: 64em) {
    .pagination {
      background-position: calc(100% - 15px) center; } }

.preload {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0px;
  width: 100%;
  background-color: #e6e6e6; }
  @media screen and (min-width: 40em) {
    .preload {
      min-height: 18.75rem; } }
  @media screen and (min-width: 64em) {
    .preload {
      min-height: 21.875rem; } }
  @media screen and (min-width: 80em) {
    .preload {
      min-height: 25rem; } }
  @media screen and (min-width: 120em) {
    .preload {
      min-height: 31.25rem; } }
  .preload:before {
    content: '';
    display: block;
    position: absolute;
    top: 20%;
    left: 50%;
    margin: -1rem 0 0 -1rem;
    z-index: 1;
    width: 2rem;
    height: 2rem;
    border: solid 0.125rem transparent;
    border-top-color: #ffffff;
    border-left-color: #ffffff;
    border-radius: 50%;
    animation: preloader 400ms linear infinite; }
    @media screen and (min-width: 40em) {
      .preload:before {
        top: 50%; } }
  .preload .slick-slider,
  .preload .slick-slider figure {
    position: relative;
    z-index: 2; }

.main-slider {
  overflow: hidden;
  margin: 0; }
  .main-slider__wrapper {
    position: relative;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0; }
    .main-slider__wrapper:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 125%; }
    .main-slider__wrapper > .main-slider {
      position: absolute;
      top: 0;
      right: 0px;
      bottom: 0px;
      left: 0px; }
    @media screen and (min-width: 40em) {
      .main-slider__wrapper:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 56.25%; }
      .main-slider__wrapper > .main-slider {
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0px;
        left: 15px; } }
  .main-slider .slick-dots {
    position: absolute;
    bottom: 2.5rem;
    right: 1.25rem;
    width: auto;
    margin: 0;
    padding-bottom: 0; }
    @media screen and (min-width: 40em) {
      .main-slider .slick-dots {
        right: 2.5rem; } }
    .main-slider .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0 0.3125rem; }
      .main-slider .slick-dots li button {
        position: relative;
        display: block;
        padding: 0;
        width: 0.75rem;
        height: 0.75rem;
        background-color: rgba(255, 255, 255, 0.5);
        margin: 0;
        border-radius: 100%;
        border: 2px solid rgba(255, 255, 255, 0);
        font: 0/0 !important;
        text-shadow: none;
        color: transparent;
        transition: all 0.3s linear;
        cursor: pointer; }
      .main-slider .slick-dots li button:before {
        display: none; }
      .main-slider .slick-dots li:hover button {
        background-color: white; }
      .main-slider .slick-dots li:focus button,
      .main-slider .slick-dots li.slick-active button {
        width: 1rem;
        height: 1rem;
        outline: none;
        background-color: rgba(255, 255, 255, 0);
        border: 2px solid #ffffff; }

.secondary-slider {
  overflow: hidden;
  margin: 0; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .secondary-slider__wrapper {
      padding-left: 0;
      padding-right: 0; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .secondary-slider__wrapper {
      padding-left: 0;
      padding-right: 0; } }
  .secondary-slider .slick-arrow {
    width: 2.5rem;
    height: 2.5rem;
    z-index: 10;
    display: none;
    opacity: 1;
    transition: all 300ms ease-out; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .secondary-slider .slick-arrow {
        top: auto;
        bottom: -2.5rem;
        width: 1.25rem;
        height: 1.25rem; } }
    .secondary-slider .slick-arrow:hover {
      opacity: 0.5; }
    .secondary-slider .slick-arrow.slick-prev {
      background: url(../images/spritesheet/arrow-left--white.svg) no-repeat 50% 50%;
      background-size: contain; }
      @media screen and (min-width: 0em) and (max-width: 39.9375em) {
        .secondary-slider .slick-arrow.slick-prev {
          left: 50%;
          bottom: -1.25rem;
          transform: translateX(-50%);
          margin-left: -2rem;
          opacity: 1; } }
      @media screen and (min-width: 40em) {
        .secondary-slider .slick-arrow.slick-prev {
          margin-left: 40px; } }
      .secondary-slider .slick-arrow.slick-prev:before {
        display: none; }
    .secondary-slider .slick-arrow.slick-next {
      background: url(../images/spritesheet/arrow-right--white.svg) no-repeat 50% 50%;
      background-size: contain; }
      @media screen and (min-width: 0em) and (max-width: 39.9375em) {
        .secondary-slider .slick-arrow.slick-next {
          right: 50%;
          bottom: -1.25rem;
          transform: translateX(50%);
          margin-right: -2rem;
          opacity: 1; } }
      @media screen and (min-width: 40em) {
        .secondary-slider .slick-arrow.slick-next {
          margin-right: 40px; } }
      .secondary-slider .slick-arrow.slick-next:before {
        display: none; }
  .secondary-slider .slick-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0;
    padding-bottom: 0; }
    .secondary-slider .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0 0.3125rem; }
      .secondary-slider .slick-dots li button {
        position: relative;
        display: block;
        padding: 0;
        width: 0.75rem;
        height: 0.75rem;
        background-color: rgba(255, 255, 255, 0.5);
        margin: 0;
        border-radius: 100%;
        border: 2px solid rgba(255, 255, 255, 0);
        font: 0/0 !important;
        text-shadow: none;
        color: transparent;
        transition: all 0.3s linear;
        cursor: pointer; }
      .secondary-slider .slick-dots li button:before {
        display: none; }
      .secondary-slider .slick-dots li:hover button {
        background-color: white; }
      .secondary-slider .slick-dots li:focus button,
      .secondary-slider .slick-dots li.slick-active button {
        width: 1rem;
        height: 1rem;
        outline: none;
        background-color: rgba(255, 255, 255, 0);
        border: 2px solid #ffffff; }

.carousel-wrapper {
  margin: 40px 20px; }
  .carousel-wrapper.full-width {
    margin: 40px 0px; }

.carousel .item {
  padding: 1.25rem; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .carousel .item {
      padding: 1.25rem 10px; } }

.carousel .slick-arrow {
  width: 1.875rem;
  height: 1.875rem;
  z-index: 10;
  display: none;
  opacity: 1;
  transition: all 300ms ease-out; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .carousel .slick-arrow {
      top: auto;
      bottom: -2.5rem;
      width: 1.25rem;
      height: 1.25rem; } }
  .carousel .slick-arrow:hover {
    opacity: 0.5; }
  .carousel .slick-arrow.slick-prev {
    background: url(../images/spritesheet/arrow-left--gray.svg) no-repeat 50% 50%;
    background-size: contain; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .carousel .slick-arrow.slick-prev {
        left: 50%;
        bottom: -1.25rem;
        transform: translateX(-50%);
        margin-left: -2rem;
        opacity: 1; } }
    @media screen and (min-width: 40em) {
      .carousel .slick-arrow.slick-prev {
        margin-left: 0px; } }
    .carousel .slick-arrow.slick-prev:before {
      display: none; }
  .carousel .slick-arrow.slick-next {
    background: url(../images/spritesheet/arrow-right--gray.svg) no-repeat 50% 50%;
    background-size: contain; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .carousel .slick-arrow.slick-next {
        right: 50%;
        bottom: -1.25rem;
        transform: translateX(50%);
        margin-right: -2rem;
        opacity: 1; } }
    @media screen and (min-width: 40em) {
      .carousel .slick-arrow.slick-next {
        margin-right: 0px; } }
    .carousel .slick-arrow.slick-next:before {
      display: none; }

.carousel .slick-dots {
  margin: 0 0 0 !important;
  padding-bottom: 0 !important;
  text-align: center;
  bottom: -2.5rem; }
  .carousel .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 0.3125rem; }
    .carousel .slick-dots li button {
      position: relative;
      display: block;
      padding: 0;
      width: 0.75rem;
      height: 0.75rem;
      background-color: rgba(172, 172, 172, 0.5);
      margin: 0;
      border-radius: 100%;
      border: 2px solid rgba(172, 172, 172, 0);
      font: 0/0 !important;
      text-shadow: none;
      color: transparent;
      transition: all 0.3s linear;
      cursor: pointer; }
    .carousel .slick-dots li button:before {
      display: none; }
    .carousel .slick-dots li:hover button {
      background-color: #acacac; }
    .carousel .slick-dots li:focus button,
    .carousel .slick-dots li.slick-active button {
      width: 1rem;
      height: 1rem;
      outline: none;
      background-color: rgba(172, 172, 172, 0);
      border: 2px solid #acacac; }

.slider {
  text-align: center;
  margin-bottom: 0; }
  .slider .item {
    text-align: center; }
    .slider .item figure {
      text-align: center; }
      .slider .item figure img {
        display: inline-block;
        text-align: center; }
  .slider .slick-arrow {
    width: 4.5rem;
    height: 4.5rem;
    z-index: 10;
    display: none;
    opacity: 0.3;
    transition: all 300ms ease-out; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .slider .slick-arrow {
        top: auto;
        bottom: -1.25rem;
        width: 2rem;
        height: 2rem; } }
    .slider .slick-arrow:hover {
      opacity: 1; }
    .slider .slick-arrow.slick-prev {
      background: url(../images/spritesheet/arrow-left--gray.svg) no-repeat 50% 50%;
      background-size: contain; }
      @media screen and (min-width: 0em) and (max-width: 39.9375em) {
        .slider .slick-arrow.slick-prev {
          left: 50%;
          transform: translateX(-50%);
          margin-left: -2rem;
          opacity: 1; } }
      @media screen and (min-width: 40em) {
        .slider .slick-arrow.slick-prev {
          margin-left: -4.5rem; } }
      @media screen and (min-width: 120em) {
        .slider .slick-arrow.slick-prev {
          margin-left: -4.5rem; } }
      .slider .slick-arrow.slick-prev:before {
        display: none; }
    .slider .slick-arrow.slick-next {
      background: url(../images/spritesheet/arrow-right--gray.svg) no-repeat 50% 50%;
      background-size: contain; }
      @media screen and (min-width: 0em) and (max-width: 39.9375em) {
        .slider .slick-arrow.slick-next {
          right: 50%;
          transform: translateX(50%);
          margin-right: -2rem;
          opacity: 1; } }
      @media screen and (min-width: 40em) {
        .slider .slick-arrow.slick-next {
          margin-right: -4.5rem; } }
      @media screen and (min-width: 120em) {
        .slider .slick-arrow.slick-next {
          margin-right: -4.5rem; } }
      .slider .slick-arrow.slick-next:before {
        display: none; }
  .slider .slick-dots {
    position: relative;
    margin: 0 0 0 !important;
    padding-bottom: 1.875rem;
    text-align: center;
    bottom: 0;
    width: auto; }
    .slider .slick-dots li {
      position: relative;
      display: inline-block;
      margin: 0 0.3125rem;
      width: auto;
      height: auto; }
      .slider .slick-dots li button {
        position: relative;
        display: block;
        padding: 0;
        width: 0.75rem;
        height: 0.75rem;
        background-color: rgba(172, 172, 172, 0.5);
        margin: 0;
        border-radius: 100%;
        border: 2px solid rgba(172, 172, 172, 0);
        font: 0/0 !important;
        text-shadow: none;
        color: transparent;
        transition: all 0.3s linear;
        cursor: pointer; }
      .slider .slick-dots li button:before {
        display: none; }
      .slider .slick-dots li:hover button {
        background-color: #acacac; }
      .slider .slick-dots li:focus button,
      .slider .slick-dots li.slick-active button {
        width: 1rem;
        height: 1rem;
        outline: none;
        background-color: rgba(172, 172, 172, 0);
        border: 2px solid #acacac; }

.brands-carousel.slick-slider {
  margin-bottom: 10px !important; }

.brands-carousel .item {
  text-align: center; }
  .brands-carousel .item a {
    text-align: center;
    display: block; }
    .brands-carousel .item a figure {
      text-align: center; }
      .brands-carousel .item a figure img {
        text-align: center;
        display: inline-block;
        transition: all 300ms ease-out;
        -webkit-filter: grayscale(100);
        filter: grayscale(100); }
    .brands-carousel .item a:hover figure img {
      -webkit-filter: grayscale(0);
      filter: grayscale(0); }

.brands-carousel .slick-prev,
.brands-carousel .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0px;
  transition: all 300ms ease-out;
  width: 1.875rem;
  height: 1.875rem; }

.brands-carousel .slick-prev:hover,
.brands-carousel .slick-next:hover {
  opacity: 0.8; }

.brands-carousel .slick-prev {
  left: -5%;
  background: url(../images/spritesheet/arrow-left--gray.svg) no-repeat 50% 50%;
  background-size: 1.875rem 1.875rem; }
  @media screen and (min-width: 40em) {
    .brands-carousel .slick-prev {
      margin-left: -1.375rem; } }
  @media screen and (min-width: 120em) {
    .brands-carousel .slick-prev {
      margin-left: -2rem; } }

.brands-carousel .slick-next {
  right: -5%;
  background: url(../images/spritesheet/arrow-right--gray.svg) no-repeat 50% 50%;
  background-size: 1.875rem 1.875rem; }
  @media screen and (min-width: 40em) {
    .brands-carousel .slick-next {
      margin-left: -1.375rem; } }
  @media screen and (min-width: 120em) {
    .brands-carousel .slick-next {
      margin-left: -2rem; } }

.social-list {
  list-style: none;
  text-align: center;
  float: none;
  margin: 0 auto;
  display: inline-block;
  padding-right: 0;
  width: 100%; }
  @media screen and (min-width: 80em) {
    .social-list {
      display: block;
      float: right;
      margin: 0; } }
  .social-list .social-list__text {
    font-size: 0.8125rem;
    color: #999999;
    display: inline-block;
    margin-right: 0.3125rem; }
  .social-list .social-list__item {
    display: inline-block;
    vertical-align: top;
    float: none;
    margin-right: 0.3125rem;
    margin-left: 0.3125rem; }
  .social-list .social-list__icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain; }
    .social-list .social-list__icon--googleplus {
      background-image: url(../images/spritesheet/googleplus-footer.svg); }
    .social-list .social-list__icon--linkedin {
      background-image: url(../images/spritesheet/social--linkedin.svg); }
    .social-list .social-list__icon--youtube {
      background-image: url(../images/spritesheet/social--youtube.svg); }
    .social-list .social-list__icon--twitter {
      background-image: url(../images/spritesheet/social--twitter.svg); }
    .social-list .social-list__icon--facebook {
      background-image: url(../images/spritesheet/social--facebook.svg); }
    .social-list .social-list__icon--google {
      background-image: url(../images/spritesheet/social--google.svg); }
    .social-list .social-list__icon--instagram {
      background-image: url(../images/spritesheet/social--instagram.svg); }
    .social-list .social-list__icon--pinterest {
      background-image: url(../images/spritesheet/social--pinterest.svg); }
  .social-list .social-list__link {
    opacity: 1;
    transition: all 300ms ease-out; }
  .social-list .social-list__link:hover,
  .social-list .social-list__link:focus {
    opacity: 0.75; }
  .social-list--product {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem; }
    @media screen and (min-width: 40em) {
      .social-list--product {
        text-align: right; } }
    .social-list--product .social-list__item {
      display: inline-block; }
  .social-list--general-page {
    text-align: left; }
    @media screen and (min-width: 40em) {
      .social-list--general-page {
        text-align: right; } }
  .social-list--footer {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-right: 0;
    padding-right: 0;
    display: inline-block;
    float: none;
    text-align: center; }
    @media screen and (min-width: 80em) {
      .social-list--footer {
        text-align: left; } }
    .social-list--footer .social-list__item {
      display: inline-block;
      vertical-align: top;
      float: none;
      margin-right: 0.625rem;
      margin-left: 0.625rem; }
      @media screen and (min-width: 64em) {
        .social-list--footer .social-list__item:first-child {
          margin-left: 0; } }
    .social-list--footer .social-list__icon {
      display: inline-block;
      width: 1.625rem;
      height: 1.625rem;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain; }
      .social-list--footer .social-list__icon--googleplus-footer {
        background-image: url(../images/spritesheet/googleplus-footer.svg); }
      .social-list--footer .social-list__icon--linkedin-footer {
        background-image: url(../images/spritesheet/social--linkedin__footer.svg); }
      .social-list--footer .social-list__icon--youtube-footer {
        background-image: url(../images/spritesheet/social--youtube__footer.svg); }
      .social-list--footer .social-list__icon--twitter-footer {
        background-image: url(../images/spritesheet/social--twitter__footer.svg); }
      .social-list--footer .social-list__icon--facebook-footer {
        background-image: url(../images/spritesheet/social--facebook__footer.svg); }
      .social-list--footer .social-list__icon--google-footer {
        background-image: url(../images/spritesheet/social--google__footer.svg); }
      .social-list--footer .social-list__icon--instagram-footer {
        background-image: url(../images/spritesheet/social--instagram__footer.svg); }
      .social-list--footer .social-list__icon--pinterest-footer {
        background-image: url(../images/spritesheet/social--pinterest__footer.svg); }
    .social-list--footer .social-list__link {
      opacity: 1; }
    .social-list--footer .social-list__link:hover,
    .social-list--footer .social-list__link:focus {
      opacity: 0.5; }

.has-tip {
  border: 0; }

.tooltip {
  background-color: #212121;
  border-radius: 2px;
  padding: 8px 15px;
  text-align: center;
  font-size: 0.75rem; }
  .tooltip:before {
    border-width: 6px !important; }

.side-open {
  overflow: hidden; }

.side-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #212121;
  z-index: 99;
  opacity: 0.8;
  transition: transform 0.3s ease;
  cursor: url(../images/spritesheet/custom-cursor.png), auto; }

.sidecart {
  height: 100%;
  width: 90%;
  transform: translateX(100%);
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  transition: transform 0.3s ease; }
  @media screen and (min-width: 40em) {
    .sidecart {
      width: 90%; } }
  @media screen and (min-width: 64em) {
    .sidecart {
      width: 50rem; } }
  .sidecart:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #212121;
    opacity: 0.5;
    z-index: 50; }
  .sidecart__list {
    display: block;
    position: relative;
    background-color: #ffffff; }
    @media screen and (min-width: 64em) {
      .sidecart__list {
        max-height: 37.5rem;
        max-height: 31.25rem;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0 0 1.875rem !important; } }
    @media screen and (min-width: 64em) {
      .sidecart__list {
        max-height: 31.25rem; } }
  .sidecart__title-container {
    border: 0.125rem solid rgba(230, 230, 230, 0.35);
    border-width: 0px 0 0.125rem;
    background-color: #ffffff; }
    .sidecart__title-container > .columns {
      padding-top: 1.375rem;
      padding-bottom: 1.375rem; }
      @media screen and (min-width: 64em) {
        .sidecart__title-container > .columns {
          padding-top: 1.375rem;
          padding-bottom: 1.375rem; } }
      @media screen and (min-width: 80em) {
        .sidecart__title-container > .columns {
          padding-top: 2rem;
          padding-bottom: 2rem; } }
  .sidecart__title {
    font-size: 0.875rem;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 0 0 0.9375rem;
    padding: 0 0 0 0;
    color: #212121;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    position: relative; }
    @media screen and (min-width: 40em) {
      .sidecart__title {
        margin: 0 0 0 1.875rem; } }
    .sidecart__title .num-items {
      display: inline;
      color: #c62828;
      font-style: normal;
      font-size: 0.875rem;
      font-family: "Montserrat", Arial, sans-serif;
      font-weight: 700; }
      .sidecart__title .num-items:before {
        content: '(';
        margin: 0 0.125rem;
        font-family: Arial, sans-serif; }
      .sidecart__title .num-items:after {
        content: ')';
        margin: 0 0.125rem;
        font-family: Arial, sans-serif; }
  .sidecart__item {
    border: 1px solid rgba(230, 230, 230, 0.6);
    border-width: 0px 0 1px;
    padding: 0.3125rem 0.9375rem 0.625rem; }
    @media screen and (min-width: 40em) {
      .sidecart__item {
        padding: 0.3125rem 1.875rem 0.3125rem; } }
    @media screen and (min-width: 80em) {
      .sidecart__item {
        padding: 0 3.125rem 0.625rem; } }
  .sidecart .item-side-padding {
    padding-left: 2.1875rem !important;
    padding-right: 2.1875rem !important; }
  .sidecart__image {
    width: 100%;
    display: inline-block;
    text-align: center; }
    @media screen and (min-width: 40em) {
      .sidecart__image {
        width: auto; } }
    .sidecart__image img {
      width: 6.25rem;
      display: inline-block; }
      @media screen and (min-width: 40em) {
        .sidecart__image img {
          width: auto;
          padding: 0.625rem; } }
  .sidecart__text {
    display: inline-block; }
    @media screen and (min-width: 40em) {
      .sidecart__text {
        position: relative;
        top: 50%;
        right: 0;
        transform: translateY(-50%); } }
  .sidecart__product-brand {
    font-size: 0.625rem;
    font-weight: 700;
    color: rgba(33, 33, 33, 0.5);
    margin-bottom: 0;
    text-transform: uppercase; }
    @media screen and (min-width: 40em) {
      .sidecart__product-brand {
        font-size: 0.6875rem;
        margin-bottom: 0.125rem; } }
  .sidecart__product-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0; }
    @media screen and (min-width: 40em) {
      .sidecart__product-name {
        font-size: 0.9375rem;
        margin-bottom: 0.3125rem; } }
  .sidecart__product-description {
    font-size: 0.8125rem;
    letter-spacing: 0;
    margin: 0; }
    @media screen and (min-width: 40em) {
      .sidecart__product-description {
        font-size: 0.875rem; } }
  .sidecart__price {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.25rem;
    text-align: left;
    display: block;
    margin-bottom: 0.9375rem; }
    @media screen and (min-width: 40em) {
      .sidecart__price {
        text-align: right;
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        margin-bottom: 0; } }
    .sidecart__price--previous {
      font-size: 0.8125rem;
      color: silver;
      font-family: "Roboto", Arial, sans-serif; }
    .sidecart__price--discount {
      font-size: 0.8125rem;
      background: none;
      display: inline-block;
      color: #c62828;
      font-family: "Roboto", Arial, sans-serif; }
      .sidecart__price--discount:before {
        content: '/';
        padding: 0 0.3125rem 0 0.125rem;
        display: inline-block;
        color: #d9d9d9; }
    .sidecart__price--current {
      display: block;
      font-size: 0.875rem;
      color: #545454;
      font-family: "Roboto", Arial, sans-serif;
      font-weight: 600;
      float: right;
      margin: 0.5rem 0 0 0;
      padding: 0; }
      @media screen and (min-width: 40em) {
        .sidecart__price--current {
          float: none;
          font-size: 1.125rem;
          line-height: 1.125rem;
          margin: 0;
          padding: 0; } }
  .sidecart a:hover {
    color: #e6e6e6; }
  .sidecart .closebtn {
    position: absolute;
    display: block;
    top: 50%;
    right: 0.125rem;
    width: 3.125rem;
    height: 3.125rem;
    margin-top: -25px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0px;
    transition: all 300ms ease-out;
    opacity: 0.8; }
    @media screen and (min-width: 40em) {
      .sidecart .closebtn {
        right: 0.9375rem; } }
    .sidecart .closebtn:before {
      content: '';
      width: 1.375rem;
      height: 1.375rem;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -0.6875rem 0 0 -0.6875rem;
      background: url(../images/spritesheet/close--gray-2.svg) no-repeat 50% 50%;
      background-size: contain; }
    .sidecart .closebtn:hover {
      opacity: 1; }
  .sidecart__quantity {
    padding-top: 0; }
    .sidecart__quantity > span {
      display: inline-block; }
    .sidecart__quantity input {
      margin: 0 !important;
      padding: 0;
      width: 2.8125rem;
      height: 1.875rem;
      float: left;
      border-color: #e5e5e5;
      background: #e5e5e5;
      border-left-color: #ffffff;
      border-right-color: #ffffff;
      color: #212121;
      font-family: "Montserrat", Arial, sans-serif;
      font-size: 0.8125rem; }
    .sidecart__quantity .qtyminus,
    .sidecart__quantity .qtyplus {
      background: #e5e5e5;
      border: 0;
      display: inline-block;
      outline: none;
      font-size: 1rem;
      transition: all 300ms ease-out;
      float: left;
      width: 1.875rem;
      line-height: 1.875rem;
      color: #212121;
      font-family: "Roboto", Arial, sans-serif; }
      .sidecart__quantity .qtyminus:hover,
      .sidecart__quantity .qtyplus:hover {
        background: silver;
        color: #ffffff; }
  .sidecart__total-amount-container {
    position: relative; }
    .sidecart__total-amount-container:before {
      content: '';
      height: 40px;
      position: absolute;
      top: -40px;
      left: 0;
      width: 100%;
      background: rgba(242, 242, 242, 0);
      background: -webkit-linear-gradient(rgba(242, 242, 242, 0), #f2f2f2);
      background: -o-linear-gradient(rgba(242, 242, 242, 0), #f2f2f2);
      background: -moz-linear-gradient(rgba(242, 242, 242, 0), #f2f2f2);
      background: linear-gradient(rgba(242, 242, 242, 0), #f2f2f2);
      display: none; }
      @media screen and (min-width: 64em) {
        .sidecart__total-amount-container:before {
          height: 40px;
          position: absolute;
          top: -40px;
          display: block; } }
    .sidecart__total-amount-container > .columns {
      padding: 0.9375rem 0.9375rem 0; }
      @media screen and (min-width: 40em) {
        .sidecart__total-amount-container > .columns {
          padding: 0.9375rem 1.875rem 0; } }
      @media screen and (min-width: 64em) {
        .sidecart__total-amount-container > .columns {
          padding: 2.8125rem 1.875rem 0; } }
      @media screen and (min-width: 80em) {
        .sidecart__total-amount-container > .columns {
          padding: 2.8125rem 3.125rem 0; } }
    .sidecart__total-amount-container strong {
      color: #c62828;
      text-transform: uppercase;
      font-family: "Montserrat", Arial, sans-serif;
      margin: 0;
      padding: 0;
      display: block;
      font-weight: 600;
      font-size: 0.75rem; }
      @media screen and (min-width: 40em) {
        .sidecart__total-amount-container strong {
          font-size: 0.9375rem; } }
    .sidecart__total-amount-container em {
      color: #666666;
      font-style: normal;
      font-size: 0.6875rem;
      line-height: 1.2em;
      margin: 0;
      padding: 0;
      letter-spacing: 0;
      display: block; }
      @media screen and (min-width: 40em) {
        .sidecart__total-amount-container em {
          font-size: 0.8125rem; } }
  .sidecart__total-amount {
    font-size: 1.125rem;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    color: #c62828; }
    @media screen and (min-width: 40em) {
      .sidecart__total-amount {
        font-size: 1.5rem; } }
    @media screen and (min-width: 64em) {
      .sidecart__total-amount {
        font-size: 1.5rem; } }
    @media screen and (min-width: 80em) {
      .sidecart__total-amount {
        font-size: 1.5rem; } }
  .sidecart__buttons-container > .columns {
    padding: 0 0.9375rem 0; }
    @media screen and (min-width: 40em) {
      .sidecart__buttons-container > .columns {
        padding: 0 1.875rem 0; } }
    @media screen and (min-width: 64em) {
      .sidecart__buttons-container > .columns {
        padding: 0 1.875rem 0; } }
    @media screen and (min-width: 80em) {
      .sidecart__buttons-container > .columns {
        padding: 0 3.125rem 0; } }
  .sidecart .button {
    margin: 0; }
  .sidecart__continue-shopping {
    cursor: pointer;
    text-decoration: underline;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
    letter-spacing: 0;
    display: inline-block; }
    @media screen and (min-width: 40em) {
      .sidecart__continue-shopping {
        margin-top: 0.6875rem;
        margin-bottom: 0; } }
    .sidecart__continue-shopping:hover {
      text-decoration: none; }
  .sidecart__remove {
    position: relative;
    margin-top: 0;
    padding: 0;
    width: 1.875rem;
    height: 1.875rem;
    display: inline-block; }
    .sidecart__remove em {
      padding: 0;
      background: transparent;
      color: rgba(230, 230, 230, 0.7);
      text-decoration: underline;
      font-style: normal;
      font-family: "Roboto", Arial, sans-serif;
      display: inline-block;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      font-size: 0px; }
    .sidecart__remove:after {
      content: '';
      width: 1.25rem;
      height: 1.25rem;
      background: red;
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -0.625rem 0 0 -0.625rem;
      background: url(../images/spritesheet/bin.svg) no-repeat 50% 50%;
      background-size: contain;
      opacity: 0.6;
      transition: all 300ms ease-out; }
    .sidecart__remove:hover em {
      text-decoration: none;
      color: #e6e6e6; }
    .sidecart__remove:hover:after {
      opacity: 0.9; }
    .sidecart__remove:hover {
      background: transparent;
      color: #c62828;
      text-decoration: none; }

.offcanvas a:focus {
  color: #e6e6e6; }

#wrapper {
  transition: transform 0.3s ease; }

.slide-wrapper {
  transform: translateX(-90%);
  position: relative; }
  @media screen and (min-width: 40em) {
    .slide-wrapper {
      transform: translateX(-90%); } }
  @media screen and (min-width: 64em) {
    .slide-wrapper {
      transform: translateX(-50rem); } }
  .slide-wrapper .side-overlay {
    display: block; }

.slide-side {
  width: 90%;
  transform: translateX(0);
  background-color: #f2f2f2;
  transition: transform 0.3s ease; }
  @media screen and (min-width: 40em) {
    .slide-side {
      width: 90%; } }
  @media screen and (min-width: 64em) {
    .slide-side {
      width: 50rem; } }
  .slide-side:before {
    display: none; }

/*-------------------
FORM Search
-------------------*/
.form--search {
  position: relative;
  top: 0.9375rem;
  width: 100%;
  height: 42px;
  background-color: transparent;
  display: inline-block; }
  @media screen and (min-width: 40em) {
    .form--search {
      top: 0;
      height: 28px; } }
  @media screen and (min-width: 80em) {
    .form--search {
      top: 0;
      height: 42px; } }
  .form--search input,
  .form--search input:focus {
    border: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: #666666;
    font-size: 0.75rem;
    text-transform: none;
    padding: 0.625rem 3.125rem 0.625rem 0.875rem !important;
    height: 42px;
    background-color: #e6e6e6 !important;
    border-radius: 50px;
    box-shadow: none;
    width: 100%;
    float: left;
    margin: 0;
    text-align: left; }
    @media screen and (min-width: 40em) {
      .form--search input,
      .form--search input:focus {
        font-size: 0.6875rem;
        height: 28px; } }
    @media screen and (min-width: 80em) {
      .form--search input,
      .form--search input:focus {
        font-size: 0.8125rem;
        height: 42px; } }
  .form--search__button {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    padding-bottom: 0;
    background-color: #c62828 !important;
    float: left;
    border-radius: 42px;
    transition: all 300ms ease-out;
    border: 3px solid #e6e6e6; }
    @media screen and (min-width: 40em) {
      .form--search__button {
        height: 28px; } }
    @media screen and (min-width: 80em) {
      .form--search__button {
        height: 42px; } }
    .form--search__button:after {
      content: '';
      display: block;
      width: 1.125rem;
      height: 1.125rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: url(../images/spritesheet/search--white.svg) no-repeat 50% 50%;
      background-size: 90% 90%;
      transition: all 300ms ease-out; }
      @media screen and (min-width: 40em) {
        .form--search__button:after {
          width: 0.875rem;
          height: 0.875rem; } }
      @media screen and (min-width: 80em) {
        .form--search__button:after {
          width: 1.125rem;
          height: 1.125rem; } }
    .form--search__button:hover:after {
      opacity: 0.5; }

.hamburger {
  position: absolute;
  transform: translateX(0);
  outline: none;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 0.9375rem;
  z-index: 20; }
  @media screen and (min-width: 64em) {
    .hamburger {
      left: 1.1875rem; } }
  .hamburger-inner {
    background-color: #212121; }
    .hamburger-inner::after, .hamburger-inner::before {
      background-color: #212121; }
  .hamburger-label {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    margin-right: 0.75rem; }
  .hamburger-box {
    display: inline-block;
    vertical-align: middle; }

.banner {
  display: block; }
  .banner figure {
    position: relative;
    display: block;
    overflow: hidden; }
    .banner figure img {
      width: 100%; }
    .banner figure figcaption {
      padding: 1.25rem; }
      @media screen and (min-width: 40em) {
        .banner figure figcaption {
          background-color: transparent !important;
          position: absolute;
          bottom: 0;
          left: 0;
          display: block;
          z-index: 2; } }
      @media screen and (min-width: 64em) {
        .banner figure figcaption {
          padding: 2.5rem; } }
    .banner figure:before {
      content: '';
      z-index: 1;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      transition: all 300ms ease-out; }
    .banner figure.has-overlay:before {
      content: '';
      z-index: 1;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      transition: all 300ms ease-out; }
  .banner-logo {
    margin-bottom: 1.875rem;
    width: 50%; }
    @media screen and (min-width: 80em) {
      .banner-logo {
        width: auto; } }
  .banner-label {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.625rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px; }
    @media screen and (min-width: 40em) {
      .banner-label {
        font-size: 0.6875rem; } }
    @media screen and (min-width: 120em) {
      .banner-label {
        font-size: 0.875rem; } }
  .banner-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1em; }
    @media screen and (min-width: 40em) {
      .banner-title {
        font-size: 1.75rem; } }
    @media screen and (min-width: 120em) {
      .banner-title {
        font-size: 3rem; } }
  .banner-description {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2em; }
    @media screen and (min-width: 40em) {
      .banner-description {
        font-size: 0.875rem; } }
    @media screen and (min-width: 120em) {
      .banner-description {
        font-size: 1.5rem; } }
  .banner-button {
    margin: 0.625rem 0 0 0; }
  .banner:hover figure:before {
    background: rgba(0, 0, 0, 0.3); }
  .banner:hover .button {
    background: #ffffff !important;
    color: #212121 !important; }
  .banner--side {
    margin: 1.25rem 0 1.25rem 0; }
    @media screen and (min-width: 40em) {
      .banner--side {
        width: 50%;
        float: left;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-left: 0;
        padding-right: 0;
        margin: 0 0 2.5rem 0; }
        .banner--side:last-child:not(:first-child) {
          float: right; } }
    @media screen and (min-width: 64em) {
      .banner--side {
        width: 100%;
        float: left;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-left: 0;
        padding-right: 0;
        margin: 0 0 2.5rem 0; }
        .banner--side:last-child:not(:first-child) {
          float: right; } }
  .banner--side-caption {
    position: relative;
    padding: 1.25rem; }
    @media screen and (min-width: 40em) {
      .banner--side-caption {
        padding: 2.5rem; } }
    @media screen and (min-width: 40em) {
      .banner--side-caption .inner {
        left: 2.5rem;
        bottom: 2.5rem;
        width: 80%; } }
    @media screen and (min-width: 64em) {
      .banner--side-caption .inner {
        position: absolute; } }
  .banner__hero--secondary {
    display: flex;
    justify-content: space-between; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .banner__hero--secondary__wrapper {
        padding-right: 10px;
        padding-left: 10px; } }
    .banner__hero--secondary a {
      margin-top: 20px; }
    .banner__hero--secondary a:nth-child(1) {
      margin-right: 5px; }
    .banner__hero--secondary a:nth-child(2) {
      margin-left: 5px; }
    @media screen and (min-width: 64em) {
      .banner__hero--secondary {
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        .banner__hero--secondary a {
          margin-top: 0px; }
        .banner__hero--secondary a:nth-child(1) {
          margin-right: 0; }
        .banner__hero--secondary a:nth-child(2) {
          margin-left: 0;
          margin-bottom: 18px; } }
    .banner__hero--secondary__item {
      position: relative;
      overflow: hidden; }
      @media screen and (min-width: 64em) {
        .banner__hero--secondary__item:before {
          display: block;
          content: "";
          width: 100%;
          padding-top: 56.25%; }
        .banner__hero--secondary__item > figure {
          position: absolute;
          top: 0;
          right: 0px;
          bottom: 0px;
          left: 0px;
          object-fit: cover;
          width: 100%;
          height: 100%; }
          .banner__hero--secondary__item > figure img {
            object-fit: cover;
            width: 100%;
            height: 100%; } }
  .banner-main {
    position: relative;
    overflow: hidden; }
    .banner-main:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 125%; }
    .banner-main > figure {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    @media screen and (min-width: 40em) {
      .banner-main:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 56.25%; }
      .banner-main > figure {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; } }
    .banner-main__caption {
      position: absolute;
      bottom: 0px;
      left: 0;
      z-index: 10;
      padding: 30px; }
      @media screen and (min-width: 64em) {
        .banner-main__caption {
          max-width: 50%; } }
      .banner-main__caption * {
        color: #fff; }
      .banner-main__caption--label {
        margin: 0;
        text-transform: uppercase;
        font-weight: 600;
        opacity: 0.8; }
      .banner-main__caption--title {
        margin: 0;
        font-weight: 700;
        margin-bottom: 0; }
        @media screen and (min-width: 0em) and (max-width: 39.9375em) {
          .banner-main__caption--title {
            font-size: 36px; } }
      .banner-main__caption--description {
        font-size: 20px;
        line-height: 1.4; }
      .banner-main__caption--button.button.hollow {
        margin: 0px;
        border: 0.125rem solid #fff !important;
        color: #fff !important; }
      .banner-main__caption--button.button.hollow:hover {
        background: #fff !important;
        color: #212121 !important; }
  .banner:hover .banner-main__caption--button.button.hollow {
    background: #ffffff !important;
    color: #212121 !important; }
  .banner-categories {
    position: relative;
    overflow: hidden; }
    @media screen and (min-width: 40em) {
      .banner-categories:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 56.25%; }
      .banner-categories > figure {
        position: absolute;
        top: 0;
        right: 0px;
        bottom: 0px;
        left: 0px; } }
    .banner-categories__caption {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 10;
      padding: 30px;
      transform: translate(-50%, -50%);
      text-align: center !important; }
      @media screen and (min-width: 0em) and (max-width: 39.9375em) {
        .banner-categories__caption {
          width: 100%; } }
      @media screen and (min-width: 64em) {
        .banner-categories__caption {
          max-width: 50%; } }
      .banner-categories__caption * {
        color: #fff; }
      .banner-categories__caption--label {
        margin: 0;
        text-transform: uppercase;
        font-weight: 600;
        opacity: 0.8; }
      .banner-categories__caption--title {
        margin: 0;
        font-weight: 700;
        margin-bottom: 15px; }
        @media screen and (min-width: 0em) and (max-width: 39.9375em) {
          .banner-categories__caption--title {
            font-size: 30px; } }
      .banner-categories__caption--description {
        font-size: 20px;
        line-height: 1.4; }
      .banner-categories__caption--button.button.hollow {
        margin: 0px;
        border: 0.125rem solid #fff !important;
        color: #fff !important; }
      .banner-categories__caption--button.button.hollow:hover {
        background: #fff !important;
        color: #212121 !important; }
  .banner:hover .banner-categories__caption--button.button.hollow {
    background: #ffffff !important;
    color: #212121 !important; }
  .banner-generic {
    display: block;
    position: relative;
    overflow: hidden; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .banner-generic {
        margin-bottom: 15px; } }
    .banner-generic:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 56.25%; }
    .banner-generic > figure {
      position: absolute;
      top: 0;
      right: 0px;
      bottom: 0px;
      left: 0px;
      object-fit: cover;
      width: 100%;
      height: 100%; }

.brand-list .item {
  position: relative;
  text-align: center;
  padding: 0 1.875rem 1.875rem 1.875rem;
  transition: all 300ms ease-out; }
  @media screen and (min-width: 120em) {
    .brand-list .item {
      padding: 1.875rem; } }
  .brand-list .item img {
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
  .brand-list .item:hover {
    opacity: 0.65; }

.link-row {
  text-align: center;
  margin: 0.625rem 0; }
  .link-row li {
    display: inline-block;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    border-right: 1px solid rgba(102, 102, 102, 0.5); }
    .link-row li a {
      color: #666666;
      text-decoration: none;
      padding: 0 1.25rem;
      transition: all 300ms ease-out; }
      .link-row li a:hover {
        color: #c62828; }
    .link-row li:last-child {
      border: 0; }

/* Ion.RangeSlider, Flat UI Skin
// css version 2.0.3
// © Denis Ineshin, 2014    https://github.com/IonDen
// ===================================================================================================================*/
/* =====================================================================================================================
// Skin details */
.irs-line-mid,
.irs-line-left,
.irs-line-right,
.irs-bar,
.irs-bar-edge,
.irs-slider {
  background: url(../components/ion.rangeSlider/img/sprite-skin-dacom.png) repeat-x; }

.irs {
  height: 40px; }

.irs-with-grid {
  height: 60px; }

.irs-line {
  height: 12px;
  top: 25px; }

.irs-line-left {
  height: 12px;
  background-position: 0 -30px; }

.irs-line-mid {
  height: 12px;
  background-position: 0 0; }

.irs-line-right {
  height: 12px;
  background-position: 100% -30px; }

.irs-bar {
  height: 12px;
  top: 25px;
  background-position: 0 -60px; }

.irs-bar-edge {
  top: 25px;
  height: 12px;
  width: 9px;
  background-position: 0 -90px; }

.irs-shadow {
  height: 3px;
  top: 34px;
  background: #000;
  opacity: 0.25; }

.lt-ie9 .irs-shadow {
  filter: alpha(opacity=25); }

.irs-slider {
  width: 16px;
  height: 16px;
  top: 21px;
  background-position: 0 -115px; }

.irs-slider.state_hover, .irs-slider:hover {
  background-position: 0 -115px; }

.irs-min, .irs-max {
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  top: 0;
  padding: 1px 3px;
  background: #e1e4e9;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.irs-from, .irs-to, .irs-single {
  color: #212121;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  /*background: $primary-color;
  -moz-border-radius: 4px;
  border-radius: 4px;*/ }

/*.irs-from:after, .irs-to:after, .irs-single:after {
position: absolute; display: block; content: "";
bottom: -6px; left: 50%;
width: 0; height: 0;
margin-left: -3px;
overflow: hidden;
border: 3px solid transparent;
border-top-color: $primary-color;
}*/
.irs-grid-pol {
  background: rgba(102, 102, 102, 0.65); }

.irs-grid-text {
  font-family: "Montserrat", Arial, sans-serif;
  color: #666666;
  font-size: 11px; }

.products-tool {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.6875rem;
  color: #999999;
  border: 1px solid #d7d7d7;
  border-width: 1px 0 1px 0; }
  .products-tool .columns {
    display: block; }
  .products-tool-label {
    padding-right: 1.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    float: left;
    margin: 0.8125rem 0;
    color: #212121; }
    @media screen and (min-width: 40em) {
      .products-tool-label {
        margin: 0.5625rem 0; } }
    @media screen and (min-width: 64em) {
      .products-tool-label {
        margin: 0.5625rem 0; } }
    @media screen and (min-width: 80em) {
      .products-tool-label {
        float: none;
        margin: 0 0; } }
    @media screen and (min-width: 120em) {
      .products-tool-label {
        font-size: 0.75rem; } }
  .products-tool select {
    display: inline-block;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.6875rem;
    color: #666666;
    text-transform: uppercase;
    width: 100%;
    height: 40px;
    outline: none;
    margin: 0 0 0 0;
    border-bottom: 1px solid #d7d7d7;
    letter-spacing: -0.3px;
    float: left;
    background-image: url(../images/spritesheet/arrow-down.svg);
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center !important;
    padding: 0 0 0 0.5rem !important; }
    @media screen and (min-width: 40em) {
      .products-tool select {
        width: 50%; } }
    @media screen and (min-width: 64em) {
      .products-tool select {
        padding: 0.5rem 0 0.5rem 0.5rem !important;
        font-size: 0.6875rem;
        width: 150px;
        height: 47px;
        border-right: 1px solid #d7d7d7;
        border-bottom: 0px solid #d7d7d7; } }
    @media screen and (min-width: 80em) {
      .products-tool select {
        padding: 0.5rem 0 0.5rem 0.5rem !important;
        font-size: 0.6875rem;
        width: 150px;
        height: 47px;
        border-right: 1px solid #d7d7d7;
        border-bottom: 0px solid #d7d7d7; } }
    @media screen and (min-width: 120em) {
      .products-tool select {
        padding: 0.5rem 0 0.5rem 0.9375rem !important; } }
    .products-tool select option {
      outline: none;
      border: 1px solid #e6e6e6; }
    .products-tool select:focus {
      background-position: calc(100% - 15px) center !important;
      background-image: url(../images/spritesheet/arrow-down.svg) !important;
      background-repeat: no-repeat !important;
      outline: none;
      background-color: #ffffff; }
    .products-tool select:first-child {
      width: 100%; }
      @media screen and (min-width: 40em) {
        .products-tool select:first-child {
          width: 50%;
          border-right: 1px solid #d7d7d7; } }
      @media screen and (min-width: 64em) {
        .products-tool select:first-child {
          width: 195px; } }
  .products-tool-pagination {
    margin: 0 auto;
    padding: 0 0.5rem; }
    @media screen and (min-width: 64em) {
      .products-tool-pagination {
        border-top: 1px solid #d7d7d7; } }
    @media screen and (min-width: 80em) {
      .products-tool-pagination {
        border-top: 0;
        padding: 0 0;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        transform: translateY(-55%); } }
    .products-tool-pagination ul {
      display: inline-block;
      margin: 0.625rem 0;
      float: right; }
      @media screen and (min-width: 40em) {
        .products-tool-pagination ul {
          margin: 0.375rem 0; } }
      @media screen and (min-width: 64em) {
        .products-tool-pagination ul {
          margin: 0.375rem 0; } }
      @media screen and (min-width: 80em) {
        .products-tool-pagination ul {
          float: none;
          margin-top: -0.0625rem;
          margin-top: 0;
          margin-left: 0;
          margin-bottom: 0; } }
    .products-tool-pagination ul > li {
      display: inline-block;
      margin-right: 4px;
      text-align: -webkit-match-parent;
      font-family: "Montserrat", Arial, sans-serif;
      font-size: 0.75rem; }
      @media screen and (min-width: 40em) {
        .products-tool-pagination ul > li {
          font-size: 0.6875rem; } }
      @media screen and (min-width: 0em) and (max-width: 39.9375em) {
        .products-tool-pagination ul > li:first-child {
          display: none; } }
      .products-tool-pagination ul > li:first-child a {
        padding-left: 0;
        cursor: text; }
        .products-tool-pagination ul > li:first-child a:hover {
          color: #999999; }
    .products-tool-pagination ul > li > a,
    .products-tool-pagination ul > li > span {
      padding: 0.125rem 0.3125rem;
      text-decoration: none;
      color: #999999;
      transition: all 300ms ease-out; }
      .products-tool-pagination ul > li > a:hover,
      .products-tool-pagination ul > li > span:hover {
        color: #212121; }
    .products-tool-pagination ul > li.active > a,
    .products-tool-pagination ul > li.active > span,
    .products-tool-pagination ul > li.active > a:hover {
      color: #212121;
      cursor: default;
      font-weight: 600; }
    @media screen and (min-width: 64em) {
      .products-tool-pagination {
        background-position: calc(100% - 15px) center; } }
    .products-tool-pagination-bottom {
      text-align: left;
      margin-bottom: 0.9375rem; }
      @media screen and (min-width: 40em) {
        .products-tool-pagination-bottom {
          margin-bottom: 0; } }
      @media screen and (min-width: 64em) {
        .products-tool-pagination-bottom {
          text-align: right; } }
  .products-tool-icon {
    padding: 0;
    margin: 0;
    display: inline-block;
    position: relative;
    float: left;
    height: 47px; }
    @media screen and (min-width: 64em) {
      .products-tool-icon {
        float: right; } }
    @media screen and (min-width: 80em) {
      .products-tool-icon {
        float: left; } }
    .products-tool-icon li {
      margin: 0;
      display: block;
      float: left;
      position: relative;
      transition: all 300ms ease-out;
      border-right: 1px solid #d7d7d7;
      text-align: center;
      width: 47px;
      height: 47px; }
      @media screen and (min-width: 64em) {
        .products-tool-icon li:last-child {
          border-right: 0px solid #d7d7d7; } }
      @media screen and (min-width: 80em) {
        .products-tool-icon li:last-child {
          border-right: 1px solid #d7d7d7; } }
      @media screen and (min-width: 120em) {
        .products-tool-icon li {
          width: 120px;
          height: auto;
          border-right: 1px solid #d7d7d7; } }
      .products-tool-icon li a {
        display: inline-block;
        text-align: center;
        font-size: 0.6875rem;
        text-transform: uppercase;
        opacity: 1;
        position: relative;
        color: #212121;
        transition: all 300ms ease-out;
        width: 47px;
        height: 47px;
        text-indent: 200%;
        white-space: nowrap;
        overflow: hidden;
        display: block;
        opacity: 0.5;
        cursor: pointer; }
        @media screen and (min-width: 120em) {
          .products-tool-icon li a {
            padding: 0.9375rem 1.75rem 0.9375rem 0;
            display: inline-block;
            width: auto;
            height: auto;
            text-indent: inherit;
            white-space: normal;
            overflow: inherit; } }
        .products-tool-icon li a:after {
          content: '';
          width: 16px;
          height: 16px;
          background-size: 16px 16px;
          background-position: 50% 50%;
          position: absolute;
          top: 50%;
          left: 50%;
          margin-top: -8px;
          margin-left: -8px; }
          @media screen and (min-width: 120em) {
            .products-tool-icon li a:after {
              right: 0;
              left: auto; } }
        .products-tool-icon li a.view--active {
          opacity: 1;
          cursor: pointer; }
          .products-tool-icon li a.view--active:hover {
            opacity: 1; }
        .products-tool-icon li a:hover {
          opacity: 1; }
      .products-tool-icon li.disabled {
        opacity: 0.5;
        cursor: default; }
      .products-tool-icon li:last-child {
        margin-right: 0; }
    .products-tool-icon__list a:after {
      background: url(../images/spritesheet/ico_list.svg) no-repeat 50% 50%; }
    .products-tool-icon__thumbs a:after {
      background: url(../images/spritesheet/ico_thumbs.svg) no-repeat 50% 50%; }

.enlarge {
  position: relative;
  display: block; }
  .enlarge figure {
    position: relative;
    display: block; }
  .enlarge .hover-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 1.875rem;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.65);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-out; }
    .enlarge .hover-caption .button {
      margin-bottom: 0;
      pointer-events: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  @media screen and (min-width: 64em) {
    .enlarge:hover .hover-caption {
      visibility: visible;
      opacity: 1; } }

.tabs {
  border: 0;
  display: inline-block;
  background: transparent;
  margin-bottom: 0.625rem; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .tabs {
      display: none; } }

.tabs-title a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #999999;
  letter-spacing: 1px;
  padding: 0.625rem 0.9375rem; }
  .tabs-title a:hover {
    background: transparent; }

.tabs-title:first-child a {
  padding-left: 0; }

.tabs-title > a:focus,
.tabs-title > a[aria-selected='true'] {
  background: transparent;
  color: #212121; }

.tabs-content {
  border: 0;
  background: transparent; }

.tabs-panel {
  padding: 0; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .tabs-panel {
      display: block; } }

.download-list {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .download-list .item {
    transition: all 300ms ease-out;
    position: relative;
    display: block;
    border-bottom: 1px solid #bcbcbc;
    padding: 1.25rem 0 1.25rem 2.8125rem;
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.2em;
    font-weight: 700;
    color: #666666; }
    .download-list .item:before {
      content: ' ';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      background-color: #b3b3b3;
      border-radius: 50%;
      height: 2rem;
      width: 2rem;
      background-image: url(../images/spritesheet/ico-download-negative.svg);
      background-size: 14px 14px;
      background-repeat: no-repeat;
      background-position: center center;
      transition: all 300ms ease-out; }
    .download-list .item:hover {
      color: #c62828; }
      .download-list .item:hover:before {
        background-color: #c62828; }

.sub-nav {
  /* tabbed navigation style on mobile - dropdown */
  position: relative;
  height: 2.5rem;
  width: 100%;
  z-index: 14 !important;
  display: inline-block;
  margin-top: 0.9375rem;
  margin-bottom: 0; }
  @media screen and (min-width: 40em) {
    .sub-nav {
      margin-top: 0; } }

.sub-nav::after {
  /* small arrow icon */
  content: '';
  position: absolute;
  right: 0.9375rem;
  top: 59%;
  bottom: auto;
  transform: translateY(-50%);
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  background: url("../images/spritesheet/bars.svg") no-repeat center center;
  pointer-events: none;
  opacity: 0.50; }

.sub-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-left: 0;
  margin-bottom: 0;
  padding-bottom: 0px;
  border: 0.0625rem solid transparent;
  list-style: none;
  background: #fff;
  border: 0.0625rem solid #dcdcdc;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.15); }

.sub-nav li {
  width: 100%;
  display: none;
  list-style: none;
  text-align: left; }

.sub-nav li:first-child {
  /* this way the placehodler is alway visible */
  display: block;
  text-transform: uppercase;
  font-weight: 400; }
  .sub-nav li:first-child a {
    height: 2.8125rem;
    line-height: 2.8125rem;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0.9375rem !important;
    font-size: 0.8125rem;
    opacity: 1;
    display: block;
    color: #999;
    font-weight: 600; }

.sub-nav a {
  display: block;
  /* set same size of the .sub-nav */
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  width: 100%;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  color: #666666;
  border-bottom: 0 solid #fff !important;
  text-align: left; }
  @media screen and (min-width: 40em) {
    .sub-nav a {
      text-align: center;
      padding-left: 0;
      padding-right: 0; } }

.sub-nav li:first-child a {
  text-align: left;
  padding-left: 0.75rem;
  font-weight: 400; }

.sub-nav .active a {
  background: #c62828;
  color: #ffffff; }

.sub-nav.is-open::after {
  /* small arrow rotation */
  background: url(../images/spritesheet/close-button.svg) no-repeat 50% 50%;
  opacity: 0.30; }

.sub-nav.is-open ul {
  box-shadow: 0 0px 0.625rem rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.5); }

.sub-nav.is-open ul li {
  display: block; }

.sub-nav.is-open .placeholder a {
  /* reduces the opacity of the placeholder on mobile when the menu is open */
  opacity: .7; }

@media screen and (min-width: 40em) {
  .sub-nav:not(.sub-nav--cms) {
    width: auto;
    height: auto;
    cursor: auto;
    height: auto;
    width: 100%;
    margin: 0 auto 0.625rem; }
  .sub-nav:not(.sub-nav--cms)::after {
    /* hide the arrow */
    display: none; }
  .sub-nav:not(.sub-nav--cms) ul {
    text-align: center;
    background: transparent;
    position: static;
    box-shadow: none;
    border: 0;
    margin-bottom: 0 !important;
    padding: 0 0 0 0; }
  .sub-nav:not(.sub-nav--cms) li {
    display: inline-block;
    text-align: center;
    width: auto;
    margin: 0 1.25rem; }
    .sub-nav:not(.sub-nav--cms) li:first-child {
      margin-left: 0 !important; }
  .sub-nav--centered:not(.sub-nav--cms) ul {
    text-align: center;
    border: 0.0625rem solid #e6e6e6;
    border-width: 0 0 0 0; }
    .sub-nav--centered:not(.sub-nav--cms) ul a {
      font-size: 0.9375rem;
      text-transform: uppercase;
      font-family: "Roboto", Arial, sans-serif; }
  .sub-nav:not(.sub-nav--cms) li.placeholder {
    display: none !important; }
  .sub-nav:not(.sub-nav--cms) a {
    position: relative;
    display: block;
    padding: 0.625rem 0 0.25rem;
    width: auto;
    color: rgba(33, 33, 33, 0.5);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.6em;
    transition: all, 300ms, ease-out;
    border-bottom: 0.3125rem solid transparent;
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0px; }
  .sub-nav:not(.sub-nav--cms) a:hover {
    color: #212121; }
  .sub-nav:not(.sub-nav--cms) .active a {
    background: transparent;
    color: #212121;
    border-bottom: 0.125rem solid #212121 !important; }
  .sub-nav:not(.sub-nav--cms).is-open ul li {
    display: inline-block; } }

@media screen and (min-width: 40em) and (min-width: 40em) {
  .sub-nav--cms {
    max-width: 21.875rem;
    margin-bottom: 0.75rem; }
    .sub-nav--cms a {
      text-align: left !important;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      line-height: 1.3em;
      font-weight: 500;
      letter-spacing: 0px !important;
      transition: all 300ms ease-out;
      font-size: 15px; }
    .sub-nav--cms li:not(.placeholder) a:hover {
      background: #e6e6e6; }
    .sub-nav--cms li.active a:hover {
      background: #c62828 !important; } }

.login-form {
  padding: 2.8125rem 3.75rem 1.875rem !important;
  display: inline-block; }
  .login-form aside {
    margin-top: 0; }
  .login-form__fields {
    background: #fff;
    border: 0.625rem solid #d9d9d9 !important;
    padding: 0.9375rem 1.875rem !important; }
    .login-form__fields h2 {
      font-size: 1.25rem;
      margin: 0.9375rem 0;
      font-family: "Montserrat", Arial, sans-serif;
      font-weight: 700;
      color: #212121;
      text-transform: uppercase; }
    .login-form__fields p {
      font-size: 0.8125rem;
      margin-bottom: 0.9375rem;
      letter-spacing: 0; }
    .login-form__fields label {
      font-size: 0.8125rem; }
    .login-form__fields .column.margin-bottom-20, .login-form__fields .margin-bottom-20.columns {
      margin-bottom: 0.9375rem !important;
      padding: 0px !important; }
    .login-form__fields .button {
      font-family: "Roboto", Arial, sans-serif;
      width: 100%;
      text-align: center;
      padding: 0.9375rem 0;
      background: #666666;
      text-decoration: none; }
      .login-form__fields .button:hover {
        background: #111;
        color: #fff; }
    .login-form__fields a {
      text-decoration: underline; }
      .login-form__fields a:hover {
        text-decoration: none;
        color: #111; }
  .login-form__panel {
    border: none;
    padding: 0.9375rem 1.875rem !important;
    background: #d9d9d9; }
    .login-form__panel .pricing-table {
      border: none;
      list-style: none;
      margin: 0;
      padding: 0px; }
      .login-form__panel .pricing-table > .title {
        font-size: 1.25rem;
        margin: 0.9375rem 0 0;
        padding: 0.625rem 0;
        font-family: "Montserrat", Arial, sans-serif; }
      .login-form__panel .pricing-table > li {
        text-align: left;
        border-bottom: 0 solid #e6e6e6 !important; }
      .login-form__panel .pricing-table > li:not(.title) {
        color: #212121; }
      .login-form__panel .pricing-table > li:last-child {
        border-bottom: none !important; }
      .login-form__panel .pricing-table li p {
        margin: 0;
        line-height: 1.3;
        font-size: 0.875rem;
        padding: 0.25rem 0;
        color: #212121; }
      .login-form__panel .pricing-table .description {
        font-size: 0.875rem;
        font-family: "Roboto", Arial, sans-serif !important;
        margin-bottom: 0.9375rem;
        background: transparent; }
      .login-form__panel .pricing-table .bullet-item {
        padding: 0.25rem 0 0.25rem 3.125rem;
        position: relative;
        background: transparent; }
      .login-form__panel .pricing-table .bullet-item span {
        font-size: 1.0rem;
        display: block;
        position: absolute;
        left: 1.5625rem;
        top: 0;
        margin-top: 0.5625rem;
        color: #c62828; }
      .login-form__panel .pricing-table .cta-button {
        margin-top: 1.25rem;
        background: transparent; }
        .login-form__panel .pricing-table .cta-button .button {
          padding: 0.9375rem; }
  .login-form input[type="checkbox"] {
    visibility: hidden;
    position: absolute; }
    .login-form input[type="checkbox"] + label {
      position: relative;
      margin-left: 0rem;
      padding: 0px !important; }
      .login-form input[type="checkbox"] + label a {
        text-decoration: underline; }
    .login-form input[type="checkbox"] + label:before {
      content: '';
      display: block;
      float: left;
      width: 1.25rem;
      height: 1.25rem;
      margin: 0 0.625rem 0 0;
      background-color: transparent;
      cursor: pointer;
      border: 1px solid #ccc; }
    .login-form input[type="checkbox"]:checked + label:before {
      content: '';
      background-color: #ffffff;
      position: relative; }
    .login-form input[type="checkbox"]:checked + label:after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      content: '';
      display: block;
      width: 1rem;
      height: 0.8125rem;
      opacity: 0.75;
      background-image: url("../images/check.svg");
      background-position: center center;
      background-size: 0.75rem 0.75rem;
      background-repeat: no-repeat;
      position: absolute;
      top: 0.625rem;
      left: 0.625rem; }
  .login-form .has-tip {
    border-bottom: dotted 0px #CCCCCC !important; }

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
  .login {
    padding: 0 0.9375rem 0 !important; } }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .login {
    padding: 0 0.9375rem 0 !important; } }

.focus {
  padding: 2.5rem 1.25rem 0 1.25rem; }
  .focus img {
    width: 100%; }
  .focus--item {
    background-color: #f2f2f2;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .focus--item {
        padding-left: 15px;
        padding-right: 15px; } }
  .focus--item__text {
    background: #fff; }
    @media screen and (min-width: 40em) {
      .focus--item__text {
        display: flex;
        align-items: center; } }
  .focus--inner {
    position: relative;
    padding: 1.25rem; }
    @media screen and (min-width: 40em) {
      .focus--inner {
        padding: 2.5rem; } }
  .focus--label {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.625rem;
    font-weight: 400;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px; }
    @media screen and (min-width: 40em) {
      .focus--label {
        font-size: 0.6875rem; } }
    @media screen and (min-width: 120em) {
      .focus--label {
        font-size: 0.875rem; } }
  .focus--title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #212121;
    line-height: 1.1em;
    margin-bottom: 1.25rem; }
    @media screen and (min-width: 40em) {
      .focus--title {
        font-size: 1.75rem; } }
    @media screen and (min-width: 120em) {
      .focus--title {
        font-size: 2.5rem; } }
  .focus--description {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: #666666;
    line-height: 1.6em;
    margin: 0 0 1.25rem 0; }
    @media screen and (min-width: 40em) {
      .focus--description {
        font-size: 0.875rem; } }
    @media screen and (min-width: 120em) {
      .focus--description {
        font-size: 1.125rem; } }
  .focus-button {
    margin: 0; }

.table-custom {
  margin: 0;
  /*.label{
        width: auto;
        
        @include breakpoint(medium) {
            width: 100%;
        }

        @include breakpoint(large) {
            width: auto;
        }
    }*/
  /* row colors */ }
  .table-custom tr {
    margin: 0.1875rem 0; }
  .table-custom .has-tip {
    font-weight: normal;
    vertical-align: text-top; }
  .table-custom-footer {
    margin: 0.9375rem 0; }
    .table-custom-footer .button {
      padding: 0.4375rem 0.3125rem;
      margin: 0 0.3125rem;
      text-transform: uppercase;
      font-size: 0.6875rem;
      width: 100%; }
    .table-custom-footer i {
      font-size: 0.75rem;
      margin-right: 0.1875rem; }
    @media screen and (min-width: 40em) {
      .table-custom-footer {
        text-align: right; }
        .table-custom-footer .button {
          width: inherit; } }
  .table-custom__button-icon {
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
    text-decoration: none;
    color: #666666; }
    .table-custom__button-icon i {
      font-size: 1.125rem;
      margin-right: 0.3125rem;
      vertical-align: baseline; }
    .table-custom__button-icon span {
      font-size: 0.6875rem; }
    @media screen and (min-width: 40em) {
      .table-custom__button-icon {
        display: inline-block;
        margin-bottom: 0; }
        .table-custom__button-icon i {
          margin: 0; }
        .table-custom__button-icon:not(:last-of-type) {
          margin-right: 0.4375rem; } }
  .table-custom__image {
    width: 100%;
    display: inline-block;
    text-align: center; }
    .table-custom__image img {
      width: 6.25rem;
      display: inline-block; }
  .table-custom__remove {
    position: relative;
    margin-top: 0;
    padding: 0;
    width: 1.875rem;
    height: 1.875rem;
    display: inline-block; }
    .table-custom__remove em {
      padding: 0;
      background: transparent;
      color: rgba(230, 230, 230, 0.7);
      text-decoration: underline;
      font-style: normal;
      font-family: "Roboto", Arial, sans-serif;
      display: inline-block;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      font-size: 0px; }
    .table-custom__remove:after {
      content: '';
      width: 1.25rem;
      height: 1.25rem;
      background: red;
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -0.625rem 0 0 -0.625rem;
      background: url(../images/spritesheet/bin.svg) no-repeat 50% 50%;
      background-size: contain;
      opacity: 0.6;
      transition: all 300ms ease-out; }
    .table-custom__remove:hover em {
      text-decoration: none;
      color: #e6e6e6; }
    .table-custom__remove:hover:after {
      opacity: 0.9; }
    .table-custom__remove:hover {
      background: transparent;
      color: #c62828;
      text-decoration: none; }
  .table-custom__float-right {
    display: block; }
    @media screen and (min-width: 40em) {
      .table-custom__float-right {
        float: right; } }
  .table-custom a {
    text-decoration: none; }
  .table-custom__row.row--ricambi {
    background-color: #f2f2f2; }
  .table-custom__row.row--stock {
    background-color: #dfdfdf; }
  .table-custom__row.row--gamma-componenti {
    background-color: #dbeffb; }
  .table-custom__row.row--gamma-ruote {
    background-color: #d5ffd5; }
  .table-custom__row.row--gamma-ruote-twd {
    background-color: #c1e8e8; }
  .table-custom__row.row--ordine-espresso {
    background-color: #ececec; }
  .table-custom__row.row--anniversary {
    background-color: #e8c0c0; }
  .table-custom__row.row--extra {
    background-color: #fffff; }

.table-responsive {
  table-layout: auto;
  width: 100%;
  background: #ffffff;
  margin-bottom: 1.875rem;
  /* alignments */
  /* SMALL layout */ }
  .table-responsive tr:nth-child(even) {
    background-color: #ffffff; }
  .table-responsive th,
  .table-responsive td {
    padding: 0.625rem;
    line-height: 1.2;
    text-align: left; }
  .table-responsive td {
    font-size: 0.8125rem; }
  .table-responsive th {
    padding: 1.25rem 0.625rem;
    color: #ffffff !important;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.6875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: #666666;
    border-bottom: 1px solid #cacaca;
    border-top: 1px solid #cacaca; }
    .table-responsive th:first-of-type {
      border-left: none; }
    @media screen and (min-width: 120em) {
      .table-responsive th {
        font-size: 0.75rem; } }
  .table-responsive tbody tr:nth-child(even) {
    border-top: solid 1px #cacaca;
    border-bottom: solid 1px #cacaca; }
    .table-responsive tbody tr:nth-child(even):not(.table-custom__row) {
      background-color: #ffffff; }
  .table-responsive tr.table-responsive__row-right > td:last-child {
    text-align: left; }
    @media screen and (min-width: 40em) {
      .table-responsive tr.table-responsive__row-right > td:last-child {
        text-align: right; } }
  .table-responsive th.table-responsive__th-center,
  .table-responsive td.table-responsive__td-center {
    text-align: left; }
    @media screen and (min-width: 40em) {
      .table-responsive th.table-responsive__th-center,
      .table-responsive td.table-responsive__td-center {
        text-align: center; } }
  .table-responsive th.table-responsive__th-right,
  .table-responsive td.table-responsive__td-right {
    text-align: left; }
    @media screen and (min-width: 40em) {
      .table-responsive th.table-responsive__th-right,
      .table-responsive td.table-responsive__td-right {
        text-align: right; } }
  @media screen and (max-width: 768px) {
    .table-responsive {
      position: relative;
      display: block;
      margin-top: 0.9375rem;
      /* hide tr */
      /*tbody td[data-label]:last-child {
	    padding-bottom: rem-calc(15);
	  }*/ }
      .table-responsive thead,
      .table-responsive tbody,
      .table-responsive th,
      .table-responsive td,
      .table-responsive tr {
        display: block; }
      .table-responsive thead tr {
        position: absolute;
        top: -624.9375rem;
        left: -624.9375rem; }
      .table-responsive td,
      .table-responsive th {
        border-left: none; }
      .table-responsive td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: calc(30% + 10px);
        min-height: 1.875rem;
        text-align: left; }
        .table-responsive td::before {
          content: attr(data-label);
          position: absolute;
          padding: 0.3125rem;
          left: 0;
          top: 0;
          width: 30%;
          text-transform: uppercase;
          font-size: 0.625rem;
          font-weight: 600;
          height: 100%;
          border-right: 1px solid #e6e6e6; }
      .table-responsive tbody td:not([data-label]) {
        padding-left: 0.625rem; } }

.table-header {
  position: relative;
  display: block;
  margin-bottom: 1.875rem;
  overflow: hidden;
  /* type */
  /* layout */
  /* input group */ }
  .table-header * {
    font-size: 0.875rem; }
  .table-header__title {
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin: 0; }
  .table-header__subtitle {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    margin-bottom: 0; }
  .table-header__text {
    font-size: 0.875rem; }
  .table-header__button-group {
    position: relative;
    margin: 0.9375rem 0 0 0;
    padding: 0.9375rem 0 0 0;
    border-top: 2px solid #e6e6e6;
    list-style: none;
    text-align: left; }
    .table-header__button-group > li {
      display: block;
      padding: 0; }
      @media screen and (min-width: 40em) {
        .table-header__button-group > li {
          display: inline-block; } }
    .table-header__button-group .button {
      text-transform: uppercase;
      width: auto;
      padding: 0.625rem 1.25rem; }
      .table-header__button-group .button i {
        font-size: 0.8125rem; }
      @media screen and (min-width: 40em) {
        .table-header__button-group .button {
          margin: 0; } }
    @media screen and (min-width: 40em) {
      .table-header__button-group.group--center {
        text-align: center; }
      .table-header__button-group.group--right {
        text-align: right; } }
  .table-header__item {
    background-color: rgba(230, 230, 230, 0.8);
    padding: 0.9375rem;
    margin: 0.1875rem 0; }
    .table-header__item.item--title {
      background-color: #666666;
      color: #ffffff; }
    .table-header__item--transparent {
      background-color: transparent !important; }
  .table-header__right {
    position: relative;
    display: block; }
    @media screen and (min-width: 40em) {
      .table-header__right {
        float: right;
        text-align: right; } }
  .table-header__input-group {
    display: block;
    width: 100%;
    margin-top: 0.625rem; }
    @media screen and (min-width: 40em) {
      .table-header__input-group {
        display: table; } }
  .table-header__label, .table-header__input, .table-header__postfix-button {
    display: block;
    vertical-align: middle; }
    @media screen and (min-width: 40em) {
      .table-header__label, .table-header__input, .table-header__postfix-button {
        display: table-cell; } }
  .table-header__label, .table-header__postfix-button {
    width: 100%;
    line-height: 2.9375rem; }
    @media screen and (min-width: 40em) {
      .table-header__label, .table-header__postfix-button {
        width: 1px;
        white-space: nowrap; } }
  .table-header__label {
    font-weight: 300;
    padding-right: 0.625rem;
    font-size: 0.875rem; }
    .table-header__label [class^="ico-"],
    .table-header__label [class*="ico-"] {
      color: #e6e6e6;
      vertical-align: middle; }
    .table-header__label small {
      font-size: 0.75rem; }
  .table-header__postfix-button {
    line-height: 1;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.625rem 0.9375rem; }
  .table-header input:not([type="submit"]):not([type='checkbox']):not([type='radio']),
  .table-header textarea,
  .table-header select {
    margin: 0;
    padding: 0.3125rem 0.625rem;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.9375rem;
    font-size: 0.9375rem;
    height: 2.9375rem;
    color: #666666;
    background-color: #ffffff;
    box-shadow: none;
    border: none;
    border: 0.125rem solid #d5d5d5; }
    .table-header input:not([type="submit"]):not([type='checkbox']):not([type='radio']):focus,
    .table-header textarea:focus,
    .table-header select:focus {
      border: 2px solid #c62828;
      box-shadow: none;
      outline: none; }
  .table-header select.table-header__select {
    background-image: url(../images/spritesheet/arrow-down.svg);
    background-position: calc(100% - 10px) center;
    background-size: 14px 14px;
    background-origin: inherit;
    color: rgba(138, 138, 138, 0.5); }
    .table-header select.table-header__select:focus {
      background-image: url(../images/spritesheet/arrow-down.svg) !important;
      background-position: calc(100% - 10px) center;
      background-repeat: no-repeat !important; }
    .table-header select.table-header__select.selected {
      color: #8a8a8a; }
  .table-header .input-group {
    margin-bottom: 0; }
  .table-header__check {
    position: relative;
    display: inline-block;
    margin-top: 0.4375rem; }
  @media screen and (min-width: 40em) {
    .table-header__input-group.group--data .table-header__label {
      width: 10%; } }
  @media screen and (min-width: 64em) {
    .table-header__input-group.group--data .table-header__label {
      width: 1px; } }
  .table-header__input-group.group--data select {
    margin-right: 0.625rem;
    width: calc((100% - 20px) / 3);
    float: left; }
    @media screen and (min-width: 40em) {
      .table-header__input-group.group--data select {
        float: none; } }
    .table-header__input-group.group--data select:last-of-type {
      margin-right: 0; }
  .table-header__input-group.group--radio .table-header__label {
    padding-right: 0.9375rem; }
  .table-header__input-group.group--radio .radio {
    margin: 0;
    display: inline-block; }
    .table-header__input-group.group--radio .radio:not(:last-of-type) {
      margin-right: 0.625rem; }
  .table-header__input-group.group--radio .radio__label {
    margin: 0; }
  .table-header__input-group.group--radio .radio__label::before {
    vertical-align: baseline; }
  .table-header .custom-checkbox__label [class^="ico-"],
  .table-header .custom-checkbox__label [class*="ico-"] {
    color: #666666;
    vertical-align: middle; }

.label {
  position: relative;
  display: inline-block;
  padding: 0.3125rem 0.3125rem;
  /* colors */ }
  .label i {
    margin-right: 0.3125rem;
    vertical-align: baseline; }
  .label.label--uppercase {
    font-size: 0.6875rem;
    text-transform: uppercase; }
  .label.alert {
    background-color: #ec5840;
    color: #ffffff; }
  .label.warning {
    background-color: #ffae00;
    color: #ffffff; }
  .label.success {
    background-color: #DFF2BF;
    color: #212121; }
  .squared-ico .label {
    display: inline-block;
    margin: 0 0.25rem;
    max-width: 1.375rem; }

.callout {
  position: relative;
  display: block;
  margin-bottom: 1.875rem;
  box-shadow: 0 2px 5px rgba(230, 230, 230, 0.5);
  /* borders */ }
  .callout p {
    color: rgba(102, 102, 102, 0.7);
    font-size: 0.875rem;
    font-weight: 400;
    padding-right: 1.25rem; }
  .callout p:last-of-type {
    margin-bottom: 0; }
  .callout .close-button {
    position: absolute;
    top: 0.625rem;
    right: 0.9375rem;
    color: rgba(102, 102, 102, 0.5);
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1;
    opacity: 0.50; }
    .callout .close-button span {
      line-height: 1; }
    .callout .close-button:focus {
      outline: none; }
  .callout.warning {
    border: none;
    border-left: 3px solid rgba(255, 174, 0, 0.4); }
  .callout.info {
    background-color: #eaf7ff;
    border: none;
    border-left: 3px solid #8c9499; }
  .callout.alert {
    background-color: #fbcec7;
    border: none;
    border-left: 3px solid #b0908b; }
  .callout.success {
    background-color: #DFF2BF;
    border: none;
    border-left: 3px solid #9ca986; }

.pricing-table {
  font-family: "Montserrat", Arial, sans-serif;
  list-style: none;
  padding: 0;
  margin-left: 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  /* price */ }
  .pricing-table > li {
    display: block;
    padding: 0.625rem 0;
    font-size: 0.875rem;
    text-align: center; }
    @media screen and (min-width: 40em) {
      .pricing-table > li {
        text-align: right; } }
    .pricing-table > li:not(:last-child) {
      border-bottom: 1px solid #cccccc; }
  .pricing-table__price {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase; }
    .pricing-table__price span {
      font-weight: 400; }

[action*="carrello"] .cd-main-content {
  background: #ffffff !important; }

.btn-remove {
  display: inline-block;
  padding: 0 0 0 0;
  position: relative;
  text-decoration: underline;
  transition: all 300ms ease-out; }
  .btn-remove [class*="fi"] {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 0.75rem;
    transform: translateY(-50%);
    transition: all 300ms ease-out; }
  .btn-remove:hover {
    text-decoration: none; }
    .btn-remove:hover [class*="fi"] {
      opacity: 1; }

/*-------------------
RUBRICA
-------------------*/
.generic-form .button-group {
  margin-top: 0.313rem; }

.generic-form .button-group .button {
  margin-bottom: 1px;
  display: block; }

.generic-form .button-group .button.with-icon {
  padding-top: 0.9375rem;
  padding-left: 0.938rem;
  padding-right: 0.938rem; }

.generic-form .button-group span {
  font-size: 1.125rem;
  margin-right: 0.938rem;
  float: left;
  margin-top: -0.188rem;
  margin-bottom: -0.188rem; }

.generic-form .button-group .close-icon {
  display: block;
  float: left;
  margin-right: 0.938rem;
  content: ' ';
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../images/plus_icon_negative.svg) center center no-repeat;
  background-size: contain;
  transform: rotate(45deg); }

/*-------------------
CARRELLO
-------------------*/
.quantity input {
  margin: 0 !important;
  width: 2.125rem;
  height: 2.125rem !important;
  display: block;
  position: relative;
  border-radius: 2px 2px 2px 2px !important;
  text-align: center;
  background: transparent;
  padding: 0;
  font-size: 0.6875rem;
  font-family: "Montserrat", Arial, sans-serif;
  border: 0px;
  border: 1px solid #dcdcdc;
  border-width: 1px 1px 1px 1px !important; }
  .quantity input:hover, .quantity input:focus {
    background: transparent !important;
    border: 1px solid #dcdcdc;
    border-width: 1px 1px 1px 1px !important; }

.quantity .button {
  height: 2.125rem !important;
  line-height: 2.125rem !important;
  font-size: 0.6875rem !important;
  padding: 0 12px !important;
  float: left;
  font-weight: 400 !important; }

.quantity__btn {
  display: inline-block; }
  .quantity__btn:first-child .button {
    position: relative;
    right: 0px;
    border-radius: 2px 2px 2px 2px !important; }
  .quantity__btn:last-child .button {
    position: relative;
    left: -0px;
    border-radius: 2px 2px 2px 2px !important; }

.quantity__field {
  display: inline-block;
  vertical-align: top;
  text-align: center !important; }

.shopping {
  padding-bottom: 1.5625rem;
  /*------------------------*/
  /*---------- KIT ---------*/
  /*------------------------*/
  /*------------------------*/
  /*------- END KIT --------*/
  /*------------------------*/ }
  .shopping .button-group span[class*="fi-"] {
    margin-right: 0rem; }
  .shopping tbody {
    border: 0px; }
  .shopping tr {
    border-bottom: 1px solid #eee; }
    .shopping tr.omaggio {
      background-color: #f7efc5 !important; }
      .shopping tr.omaggio .code,
      .shopping tr.omaggio strong {
        color: #e6e6e6; }
  @media screen and (min-width: 64em) {
    .shopping tr > td:first-child {
      text-align: center;
      width: 8%; } }
  .shopping table thead th {
    background: #8a8a8a; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .shopping .button-group {
      text-align: right;
      left: auto; }
    .shopping .button:not(.button--text) {
      width: 100%; }
    .shopping .quantity {
      text-align: right; } }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) and (min-width: 64em) {
    .shopping .quantity {
      text-align: left; } }
  .shopping .hide-td-mobile {
    display: none !important;
    line-height: 0px; }
    @media screen and (min-width: 64em) {
      .shopping .hide-td-mobile {
        display: table-cell !important;
        line-height: 1.125rem; } }
  .shopping tr.kit:not(.kitpadre) > td.bg-td-mobile {
    background: #f6f6f6 !important; }
    @media screen and (min-width: 64em) {
      .shopping tr.kit:not(.kitpadre) > td.bg-td-mobile {
        background: transparent !important; } }
  .shopping .kit:not(.kitpadre) > td:first-child {
    text-align: right; }
    .shopping .kit:not(.kitpadre) > td:first-child img {
      display: none;
      max-width: 80px;
      padding: 10px; }
  .shopping .kit:not(.kitpadre) {
    background-color: #f6f6f6;
    border-bottom: 0px solid #d3d3d3;
    border-left: 0 solid #d3d3d3;
    border-right: 0 solid #d3d3d3; }
    @media screen and (min-width: 64em) {
      .shopping .kit:not(.kitpadre) {
        background-color: #ffffff;
        border-bottom: 1px solid #d3d3d3;
        border-left: 0.0625rem solid #d3d3d3;
        border-right: 0.0625rem solid #d3d3d3; } }
    @media screen and (min-width: 64em) {
      .shopping .kit:not(.kitpadre) td {
        padding-top: 5px !important;
        padding-bottom: 5px !important; } }
    .shopping .kit:not(.kitpadre) td img {
      max-width: 50px;
      margin-left: 10px;
      padding: 0px;
      float: right; }
      @media screen and (min-width: 64em) {
        .shopping .kit:not(.kitpadre) td img {
          max-width: 50px;
          margin-right: 10px;
          padding: 0px;
          float: left; } }
    @media screen and (min-width: 64em) {
      .shopping .kit:not(.kitpadre) td:nth-child(1) {
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
        background: #ffffff; }
      .shopping .kit:not(.kitpadre) td:nth-child(2) {
        border-left: 0.0625rem solid #d3d3d3; }
      .shopping .kit:not(.kitpadre) td:last-child {
        border-right: 0.0625rem solid #d3d3d3; } }
    .shopping .kit:not(.kitpadre) .quantity {
      text-align: left; }
  .shopping .kit.kitpadre {
    position: relative;
    border-bottom-color: #d3d3d3; }
    .shopping .kit.kitpadre:before {
      content: '';
      display: block;
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      height: 0;
      width: 0;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      border-top: 20px solid #ffffff;
      z-index: 5; }
    .shopping .kit.kitpadre:after {
      content: '';
      display: block;
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      height: 0;
      width: 0;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      border-top: 20px solid #d3d3d3;
      z-index: 4; }
    @media screen and (min-width: 64em) {
      .shopping .kit.kitpadre:before {
        display: none; }
      .shopping .kit.kitpadre:after {
        display: none; } }
    .shopping .kit.kitpadre td:first-child {
      border-left: 0.0625rem solid #d3d3d3;
      border-bottom: 0.0625rem solid #d3d3d3;
      text-align: center; }
    @media screen and (min-width: 64em) {
      .shopping .kit.kitpadre td:last-child {
        border-right: 0.0625rem solid #d3d3d3; } }
    .shopping .kit.kitpadre td {
      border-top: 0.0625rem solid #d3d3d3; }
  .shopping tr.dopokit.kitpadre td:first-child {
    border-top: #e6e6e6 solid 0.5rem !important; }
    @media screen and (min-width: 64em) {
      .shopping tr.dopokit.kitpadre td:first-child {
        border-top: 0.0625rem solid #d3d3d3 !important; } }
  .shopping tr.dopokit td {
    border-top: 0.0625rem solid #d3d3d3 !important; }
    .shopping tr.dopokit td:first-child {
      border-top: 1px solid #d3d3d3 !important; }
  @media screen and (min-width: 64em) {
    .shopping tr.kit:last-child td {
      border-bottom: 0.0625rem solid #d3d3d3 !important; }
      .shopping tr.kit:last-child td:first-child {
        border-bottom: 1px solid #d3d3d3 !important; } }
  @media screen and (min-width: 64em) {
    .shopping tr.kit.fine td:first-child {
      border-bottom: 1px solid #ffffff !important; } }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .shopping tr.kit td[data-label] {
      border-bottom: 0px;
      border-right: 0px; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .shopping tr.kit td[data-label] {
      border-bottom: 0px;
      border-right: 0px; } }
  .shopping--small .title {
    font-size: 1.125rem;
    margin: 0 0 1.125rem; }
    @media screen and (min-width: 40em) {
      .shopping--small .title {
        font-size: 1.5rem; } }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .shopping--small .small-expand {
      width: 100%; } }
  .shopping table {
    width: 100% !important;
    margin-bottom: 0.9375rem;
    border-collapse: collapse; }
    .shopping table tr:nth-child(even) {
      background: #f6f6f6; }
    .shopping table th {
      background: #cacaca;
      color: #fff !important;
      vertical-align: middle;
      line-height: normal;
      font-size: 0.6875rem;
      padding: 0.1875rem 0.625rem;
      font-family: "Montserrat", Arial, sans-serif;
      border: 0; }
    .shopping table td {
      vertical-align: middle;
      border-color: #eee;
      font-family: "Roboto", Arial, sans-serif;
      font-size: 0.8125rem; }
    .shopping table td.text-right {
      white-space: nowrap !important; }
      .shopping table td.text-right strong {
        font-family: "Montserrat", Arial, sans-serif; }
    .shopping table .button {
      background: #d9d9d9;
      color: #666666;
      border: 0px; }
      .shopping table .button:hover {
        background: #cdcdcd; }
      .shopping table .button.prefix {
        border-radius: 0.125rem 0 0 0.125rem; }
      .shopping table .button.postfix {
        border-radius: 0 0.125rem 0.125rem 0; }
    .shopping table .bar-type .button span:before {
      float: left;
      width: 12px;
      height: 12px;
      display: none; }
    .shopping table td:nth-child(2) a,
    .shopping table td:nth-child(2) small {
      font-family: "Montserrat", Arial, sans-serif;
      color: #212121;
      font-size: 0.8125rem;
      display: block;
      text-decoration: none; }
    .shopping table td:nth-child(2) a:hover {
      color: #e6e6e6;
      text-decoration: underline; }
    .shopping table td:nth-child(2) small {
      font-family: "Roboto", Arial, sans-serif;
      font-size: 0.75rem;
      line-height: 1.2;
      color: #555; }
      .shopping table td:nth-child(2) small em {
        font-style: normal;
        font-family: "Montserrat", Arial, sans-serif; }
      .shopping table td:nth-child(2) small.personalizzazione {
        color: #111 !important;
        font-weight: 600; }
      .shopping table td:nth-child(2) small:nth-child(2) {
        font-size: 0.6875rem;
        display: block;
        margin-bottom: 0.3125rem;
        color: #999; }
    .shopping table td:nth-child(2) strong {
      display: block;
      margin: 0 0 0px;
      font-size: 0.6875rem;
      font-family: "Montserrat", Arial, sans-serif;
      color: #c62828; }
      .shopping table td:nth-child(2) strong span {
        display: block !important;
        font-weight: 400; }
    .shopping table td:nth-child(3) del {
      color: rgba(102, 102, 102, 0.6);
      font-size: 0.8125rem;
      display: block; }
  .shopping strong {
    font-weight: 600 !important; }
  .shopping .pricing-table {
    list-style: none;
    margin: 1.25rem 0;
    padding: 0;
    font-family: "Roboto", Arial, sans-serif;
    border: 0 solid rgba(102, 102, 102, 0.15) !important;
    font-family: 1.125rem; }
    .shopping .pricing-table strong {
      font-family: "Roboto", Arial, sans-serif; }
    .shopping .pricing-table .price {
      font-family: "Roboto", Arial, sans-serif;
      padding: 0.625rem 0; }
      .shopping .pricing-table .price strong {
        font-size: 0.875rem !important; }
      .shopping .pricing-table .price .value {
        font-size: 1.25rem !important; }
    .shopping .pricing-table .bullet-item {
      border-bottom: 0.0625rem solid rgba(102, 102, 102, 0.15) !important;
      font-family: "Roboto", Arial, sans-serif;
      padding: 0.3125rem 0;
      font-size: 0.875rem; }
      .shopping .pricing-table .bullet-item strong {
        font-family: "Montserrat", Arial, sans-serif; }
    .shopping .pricing-table .info-sped {
      display: block;
      font-size: 12px;
      margin-top: 0.375rem;
      color: #888 !important; }
  .shopping .button.postfix {
    padding: 0px !important; }
  .shopping .promo-code-container {
    background: transparent; }
    .shopping .promo-code-container fieldset.column, .shopping .promo-code-container fieldset.columns {
      padding: 0.625rem 0.625rem 0;
      display: block;
      background: #f3f3f3; }
    .shopping .promo-code-container fieldset {
      border: 0 solid #cdcdcd; }
      .shopping .promo-code-container fieldset > .row {
        padding: 0.3125rem 0.9375rem 0; }
    .shopping .promo-code-container legend {
      background: transparent;
      padding: 0px;
      font-family: "Montserrat", Arial, sans-serif;
      text-transform: uppercase;
      padding: 0 0 0.3125rem 0;
      font-size: 0.75rem;
      color: #666666; }
      @media screen and (min-width: 80em) {
        .shopping .promo-code-container legend {
          font-size: 0.8125rem;
          letter-spacing: 0.03125rem; } }
    .shopping .promo-code-container p {
      margin: 0px 0 1.5625rem;
      padding: 0px;
      font-size: 0.875rem;
      letter-spacing: 0.03125rem; }
    .shopping .promo-code-container small {
      font-size: 0.75rem;
      color: rgba(102, 102, 102, 0.8); }
    .shopping .promo-code-container input {
      background: #ffffff;
      box-shadow: none;
      height: 44px; }
    .shopping .promo-code-container .button {
      border-radius: 0;
      border: 1px solid transparent;
      background: transparent;
      margin-left: 0;
      min-height: 2.75rem;
      line-height: 2.5rem;
      padding: 0 0.9375rem;
      font-size: 0.875rem;
      opacity: 0.7; }
      .shopping .promo-code-container .button:hover {
        background: rgba(230, 230, 230, 0.6); }
  .shopping .cart-back {
    line-height: 48px;
    padding: 0.9375rem 0;
    font-family: "Roboto", Arial, sans-serif; }
  .shopping .button.secondary.bold.large {
    font-size: 0.9375rem; }
  .shopping table.stacktable th {
    background: #fff;
    border: 1px solid #dcdcdc !important;
    text-align: center; }
  .shopping table.stacktable th.st-head-row-main {
    display: none; }
  .shopping table.stacktable td.st-val a,
  .shopping table.stacktable td.st-val small {
    display: block; }
  .shopping table.stacktable td.st-val small {
    font-size: 0.6875rem;
    color: #999; }
  .shopping table.stacktable .prefix {
    padding: 0px !important; }
  .shopping table.stacktable .postfix {
    padding: 0px !important; }
  .shopping table.stacktable .st-val {
    width: 100% !important; }
    .shopping table.stacktable .st-val .medium-4 {
      max-width: 33% !important; }
    .shopping table.stacktable .st-val .prefix {
      display: inline-block !important; }
    .shopping table.stacktable .st-val input {
      display: inline-block !important; }
    .shopping table.stacktable .st-val .postfix {
      display: inline-block !important; }
  .shopping table.stacktable .st-key {
    text-align: center !important; }
  .shopping--small .button.button--text {
    font-weight: 500; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .shopping--small .button.button--text {
        margin-top: 20px; } }
  .shopping--small .button.small-expand {
    font-size: 0.875rem !important;
    margin-top: -0.4375rem !important;
    padding: 0.625rem 1.25rem;
    margin-bottom: 0 !important; }

/*-------------------
-------------------
SMALL SCREEN - max-width:768px
-------------------
-------------------*/
@media only screen and (max-width: 48em) {
  /*-------------------
  RUBRICA
  -------------------*/
  .button-group.stack-for-small > li {
    float: none;
    display: block; }
  /*-------------------
  ORDINI DETTAGLIO
  -------------------*/
  .dashboard > div {
    width: 100%;
    margin-bottom: 1rem; }
  /*-------------------
  CARRELLO
  -------------------*/
  .promo-code-container input {
    margin-bottom: 1rem; }
  .button-group.bar-type.actions li {
    border-top: none;
    margin-bottom: 1rem;
    width: 100%; }
  /*-------------------
  RESPONSIVE TABLE
  -------------------*/
  .shopping {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*tr { border: 1px solid #ccc; }*/ }
    .shopping table {
      border: none; }
    .shopping table,
    .shopping thead,
    .shopping tbody,
    .shopping th,
    .shopping td,
    .shopping tr {
      display: block !important; }
    .shopping thead tr {
      position: absolute;
      top: -624.938em;
      /*-9999px / 16px*/
      left: -624.938em;
      /*-9999px / 16px*/ }
    .shopping table td,
    .shopping table th {
      border-left: none !important; }
    .shopping td {
      /* Behave  like a "row" */
      border: none;
      border-bottom: 1px solid #eee;
      position: relative;
      padding-left: 50% !important; }
    .shopping table tbody td:not([data-label]) {
      padding-left: 0.714em !important;
      /*useful for button*/ }
    .shopping table tbody td[data-label]:last-child {
      padding-bottom: 0.938rem;
      /*15px/16px*/ }
    .shopping td:before {
      /* Now like a table header */
      position: absolute;
      /* Top/left values mimic padding */
      top: 0.643em;
      /*9px/14px*/
      left: 0.714em;
      /*10px/14px*/
      padding-right: 0.714em;
      /*10px/14px*/
      white-space: normal;
      font-size: 11px;
      /*14px/14px*/
      /*filter:alpha(opacity=100); -moz-opacity:1.00; -khtml-opacity:1.00; opacity:1.00;*/
      /* Label the data */
      content: attr(data-label);
      text-align: left; }
    .shopping tr {
      border-bottom: 0.5rem solid 1px solid #f2f2f2; }
    .shopping table tr.even,
    .shopping table tr.alt,
    .shopping table tr:nth-of-type(2n) {
      background: #fff; }
    .shopping .shopping td[data-label]:before {
      text-align: left; }
    .shopping .shopping .secondary {
      width: 100%; }
    .shopping .shopping .large-pull-6,
    .shopping .shopping .large-push-6 {
      text-align: center; }
  /*.checkout .column{
  padding: 0rem;
}*/
  .dashboard.checkout > .column, .dashboard.checkout > .columns {
    padding: 0 0px !important; }
  .dashboard.checkout .sub-title {
    text-align: center; }
  .mobile-margin-bottom-20 {
    margin-bottom: 20px; } }

/*-------------------
-------------------
MEDIUM SCREEN - max-width:360px
-------------------
-------------------*/
@media only screen and (max-width: 22.5em) {
  .content-container .top-bar li {
    display: block; }
  .content-container .top-bar li > a {
    display: inline-block;
    position: relative;
    width: auto; } }

.cart-popup {
  padding: 2.4375rem 0.9375rem; }
  .cart-popup__title {
    font-size: 0.875rem;
    color: #c62828;
    text-transform: uppercase;
    padding: 0 1.875rem 0.9375rem; }
  .cart-popup__image img {
    max-height: 9.0625rem; }
    @media only screen and (min-device-width: 375px) {
      .cart-popup__image img {
        max-height: 12.1875rem; } }
  .cart-popup__description {
    margin-bottom: 0.9375rem;
    padding: 0.625rem 0 0.75rem;
    border-bottom: 0.125rem solid #e6e6e6; }
    @media only screen and (min-device-width: 375px) {
      .cart-popup__description {
        padding: 0.625rem 0 2.25rem; } }
  .cart-popup__product-name {
    font-size: 1.125rem;
    line-height: 1.2em;
    color: #8a8a8a;
    margin: 0px; }
    .cart-popup__product-name strong {
      display: block;
      text-transform: uppercase;
      font-size: 0.875rem; }
  .cart-popup h3,
  .cart-popup h4 {
    font-size: 0.875rem;
    line-height: 1.0em;
    display: inline;
    font-weight: 400; }
  .cart-popup h3 + h4:before {
    content: '/';
    margin: 0 0.25rem 0 0; }
  .cart-popup__price {
    display: block;
    margin: 0.25rem 0 0.125rem; }
    .cart-popup__price del {
      font-size: 0.875rem;
      color: #b3b3b3; }
      .cart-popup__price del i {
        font-style: normal; }
    .cart-popup__price mark {
      font-size: 0.875rem;
      background: transparent;
      color: #c62828;
      font-weight: 600; }
    .cart-popup__price del + mark:before {
      content: '/';
      margin: 0 0.25rem;
      color: #ccc; }
    .cart-popup__price strong {
      display: block;
      font-size: 1.25rem;
      line-height: 1.0em; }
    .cart-popup__price em {
      font-style: normal; }

.cart__table {
  margin: 0 0 0 !important;
  border: 0.0625rem solid #cdcdcd;
  border-width: 0.0625rem 0.0625rem 0 0.0625rem; }
  .cart__table tr {
    border-bottom: 0.9375rem solid #cdcdcd; }
  .cart__table tr:last-child {
    border-bottom: 0 solid #cdcdcd; }
  .cart__table td {
    border-color: #cdcdcd; }
  .cart__table td[data-label]:last-child {
    padding-bottom: 0.4375rem; }

.cart__thumb {
  padding: 0.3125rem 0 !important;
  text-align: center; }

@media screen and (min-width: 64em) {
  .cart__item-description {
    width: 25%; } }

.cart__item-description strong {
  font-size: 13px;
  line-height: 1.3em;
  font-family: "Roboto", Arial, sans-serif; }

.cart__item-description small {
  font-family: "Roboto", Arial, sans-serif; }

.cart__item-description .personalizzazione {
  font-size: 14px !important;
  font-weight: 400 !important; }

.cart__item-description .promo-type-box {
  display: inline-block;
  background-color: #c62828;
  color: #ffffff;
  font-weight: 700;
  padding: 0.3125rem 0.375rem;
  border-radius: 3px;
  margin-top: 0.3125rem;
  letter-spacing: 1px; }

.cart__product-brand {
  font-size: 0.75rem;
  line-height: 1.3em; }

.cart__product-name {
  font-size: 0.8125rem;
  line-height: 1.3em;
  font-weight: 600; }
  a:hover .cart__product-name {
    color: #c62828 !important; }

.cart__product-description {
  font-size: 0.75rem;
  line-height: 1.3em; }

.cart__remove {
  position: relative;
  margin-top: 0;
  padding: 0;
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block; }
  .cart__remove em {
    padding: 0;
    background: transparent;
    color: rgba(230, 230, 230, 0.7);
    text-decoration: underline;
    font-style: normal;
    font-family: "Roboto", Arial, sans-serif;
    display: inline-block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0px; }
  .cart__remove:after {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -0.625rem 0 0 -0.625rem;
    background: url(../images/spritesheet/bin.svg) no-repeat 50% 50%;
    background-size: contain;
    opacity: 0.6;
    transition: all 300ms ease-out; }
  .cart__remove:hover em {
    text-decoration: none;
    color: #e6e6e6; }
  .cart__remove:hover:after {
    opacity: 0.9; }
  .cart__remove:hover {
    background: transparent;
    color: #c62828;
    text-decoration: none; }

.cart [class*="fi-x"]:before {
  margin-right: 0.3125rem !important;
  display: inline-block; }

.cart [class*="confezione"] img {
  margin-right: 0.3125rem;
  margin-bottom: 0px; }

.cart [class*="confezione"] a {
  color: #cacaca; }

.cart [class*="confezione"] input {
  margin-bottom: 0px; }

.cart [class*="confezione"] .nascosto + [style*="clear"] {
  padding-top: 0.625rem !important;
  display: block; }

.cart .promo-code {
  margin: 0.9375rem 0;
  padding: 0.9375rem 0.9375rem !important; }
  .cart .promo-code__title {
    display: block;
    color: #8a8a8a;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.3125rem 0; }
  .cart .promo-code__description {
    display: block;
    color: #8a8a8a;
    font-size: 0.875rem;
    line-height: 1.3em;
    font-weight: 400;
    margin: 0 0 0.625rem 0; }
  .cart .promo-code .button {
    font-size: 0.875rem !important;
    padding: 0.75rem 0 !important;
    margin: 0 0 0 0 !important; }

.cart__pricing-table {
  margin-bottom: 1.5625rem; }
  .cart__pricing-table span {
    display: block;
    text-align: right;
    border-bottom: 0.0625rem solid #e6e6e6;
    padding: 0.3125rem 0.625rem; }

.password-recovery a {
  text-decoration: underline; }

.button-quantity input {
  margin-bottom: 0 !important;
  max-width: 3.75rem;
  display: inline-block; }

.remove {
  text-align: left !important; }
  @media screen and (min-width: 64em) {
    .remove {
      text-align: center !important; } }

.item-price {
  text-align: right !important; }

.promo-code-container .column, .promo-code-container .columns,
.promo-code-container .columns,
.promo-code-container fieldset {
  background: transparent; }

.promo-code-container input {
  margin: 0; }

.promo-code-container .button.light.hollow {
  font-weight: 400 !important;
  border-color: rgba(33, 33, 33, 0.4) !important;
  letter-spacing: 0; }
  .promo-code-container .button.light.hollow:hover {
    background: rgba(33, 33, 33, 0.4) !important;
    border-color: transparent !important; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .promo-code-container .button.light.hollow {
      margin-top: 15px !important; } }

.shopping .promo-code-container fieldset {
  padding: 0;
  border: 0px solid #cccccc;
  background: #e2e2e2 !important; }

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
  .sidecart__price--current {
    float: none !important; } }

.shopping .button-group {
  margin: 0rem 0 0 0 !important; }
  .shopping .button-group .button-group__item:not(.item--right) {
    text-align: center; }
    @media screen and (min-width: 40em) {
      .shopping .button-group .button-group__item:not(.item--right) {
        text-align: left;
        width: 50%; }
        .shopping .button-group .button-group__item:not(.item--right) a {
          margin-top: 0.3125rem;
          margin-bottom: 0.3125rem;
          font-size: 0.75rem; } }

/*-------------------
ORDINI
-------------------*/
table td,
table th {
  border-left: 1px solid #ddd; }

th {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: normal !important; }

table td:first-child,
table th:first-child {
  border-left: none; }

table .button,
table .alert-box {
  margin-bottom: 0; }

table .button {
  width: 100%; }

.pricing-table .price {
  background-color: #FFF;
  padding: 0.9375rem; }

.shopping .pricing-table .price {
  background-color: transparent; }

.dashboard {
  background-color: white;
  padding-top: 0.938rem;
  padding-bottom: 0.938rem; }
  .dashboard--transparent {
    background-color: transparent; }
    .dashboard--transparent hr {
      border-bottom-color: #cacaca; }

.dashboard.row {
  margin-left: 0;
  margin-right: 0; }

@media screen and (min-width: 64em) {
  .dashboard > .column:nth-child(2), .dashboard > .columns:nth-child(2) {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd; } }

.dashboard > .column, .dashboard > .columns {
  padding: 0 1.875rem !important; }

.dashboard ul {
  list-style: none;
  margin: 0; }
  .dashboard ul li {
    margin-bottom: 0.3125rem;
    padding: 0px;
    font-size: 0.875rem; }

.dashboard ul li .alert-box,
.dashboard ul li .panel p {
  font-family: "Roboto", Arial, sans-serif;
  font-size: inherit; }

.dashboard .link {
  color: #c62828; }
  .dashboard .link:hover {
    color: #c62828; }

.orders {
  margin-top: 0;
  padding-bottom: 0.9375rem; }
  .dropdown-content .orders {
    padding-bottom: 0; }
  .orders table {
    width: 100% !important;
    margin-bottom: 1.875rem;
    border-collapse: collapse; }
  .orders th {
    background: #666666;
    color: #fff !important;
    vertical-align: middle;
    line-height: normal;
    font-size: 0.75rem;
    font-weight: 900 !important;
    padding: 0.3125rem 0.625rem 0.3125rem;
    font-family: "Roboto", Arial, sans-serif !important; }
  .orders tr:nth-child(even) {
    background: #eee; }
  .orders tr {
    border-bottom: 0.375rem solid #e6e6e6; }
    @media screen and (min-width: 40em) {
      .orders tr {
        border-bottom: 0 solid transparent; } }
  .orders td {
    vertical-align: middle;
    border-color: rgba(102, 102, 102, 0.15);
    font-size: 0.75rem; }
  .orders td:nth-child(1) {
    font-size: 0.6875rem !important;
    line-height: 1.2em; }
    .orders td:nth-child(1) .description {
      font-size: 0.6875rem;
      color: rgba(102, 102, 102, 0.6); }
  .orders td[data-label],
  .orders td[data-label].text-right {
    text-align: left !important;
    font-size: 1rem; }
    @media screen and (min-width: 40em) {
      .orders td[data-label],
      .orders td[data-label].text-right {
        font-size: 0.75rem; } }
    .orders td[data-label]:before,
    .orders td[data-label].text-right:before {
      display: block;
      position: static !important;
      top: 0;
      left: 0;
      margin: 0px;
      padding: 0px;
      text-align: left;
      font-weight: 400;
      font-size: 0.75rem; }
    .orders td[data-label] .alert-box,
    .orders td[data-label].text-right .alert-box {
      position: static !important;
      top: 0;
      left: 0;
      display: inline-block;
      padding: 0.3125rem 0.875rem; }
      @media screen and (min-width: 40em) {
        .orders td[data-label] .alert-box,
        .orders td[data-label].text-right .alert-box {
          display: block; } }
  .orders td[data-label].text-right {
    font-weight: 600; }
  .orders .button {
    font-size: 0.75rem !important;
    padding: 0.75rem 0.9375rem !important; }
    .orders .button.secondary {
      background: #675b5e; }
      .orders .button.secondary:hover {
        background: #e6e6e6; }
  .orders .alert-box {
    font-size: 0.75rem !important;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    line-height: 1.2em;
    text-align: center; }
    .orders .alert-box span {
      margin-right: 0;
      display: block;
      float: none;
      font-size: 1rem; }
  .orders .pagination__pager {
    margin: 2.8125rem 0 3.75rem;
    text-align: center !important; }
  .orders--list {
    background: #dcdcdc; }
    .orders--list td {
      font-size: 1rem !important; }
    .orders--list tr {
      border: 2px solid #dcdcdc;
      border-bottom: 0.9375rem solid #dcdcdc; }
    .orders--list tr:last-child {
      border-bottom: 0 solid #dcdcdc; }
    .orders--list td:nth-child(1) {
      font-size: 0.8125rem !important; }
      .orders--list td:nth-child(1) .description {
        font-size: 0.8125rem;
        color: rgba(102, 102, 102, 0.6); }
    .orders--list .button {
      font-size: 1rem !important;
      padding: 0.625rem 0.9375rem !important; }
    @media screen and (min-width: 40em) {
      .orders--list > .column, .orders--list > .columns {
        padding-top: 0.9375rem !important; } }
  .orders--detail__header {
    background: #eee;
    border: 0 solid #ddd;
    margin: 0 0 0.9375rem;
    padding: 0.625rem 0.9375rem 0.625rem; }
    .orders--detail__header h3 {
      font-size: 1rem;
      margin: 0; }
    .orders--detail__header p {
      font-size: 1rem;
      margin: 0; }
    .orders--detail__header p:first-child {
      margin: 0 0 0.4375rem;
      font-size: 0.875rem; }
  @media screen and (min-width: 40em) {
    .orders--detail .tablerow td {
      border: 1px solid #ddd; } }
  .orders--detail .tablerow.confreg {
    border-bottom: 0.5rem solid #ddd !important; }
  .orders--detail .tablerow.confreg td[colspan="3"] {
    display: none !important; }
    @media screen and (min-width: 40em) {
      .orders--detail .tablerow.confreg td[colspan="3"] {
        display: table-cell !important;
        background: #f2f2f2;
        border: 0 #ddd !important; } }
  .orders--detail .tablerow.confreg td[colspan="2"] {
    margin-top: -0.6875rem;
    border: 0.0625rem solid #ddd !important;
    border-width: 0.0625rem 0 0.0625rem 0 !important;
    background: #f2f2f2 !important;
    padding: 0.75rem 0.9375rem;
    text-align: right; }
    .orders--detail .tablerow.confreg td[colspan="2"] span {
      font-size: 0.8125rem !important; }
    @media screen and (min-width: 40em) {
      .orders--detail .tablerow.confreg td[colspan="2"] {
        border: 0 #ddd !important;
        background: #f2f2f2 !important; } }
  .orders--detail .tablerow a {
    text-decoration: none; }
    .orders--detail .tablerow a em:after {
      content: '/';
      margin: 0 0.25rem; }
    .orders--detail .tablerow a i,
    .orders--detail .tablerow a em {
      font-style: normal !important;
      font-size: 0.75rem; }
    .orders--detail .tablerow a strong {
      display: block; }
      .orders--detail .tablerow a strong em {
        text-transform: uppercase;
        display: block;
        font-size: 0.75rem; }
        .orders--detail .tablerow a strong em:after {
          display: none; }
  .orders--detail .tablerow .item {
    margin-top: 1.875rem; }
  .orders--detail .tablerow .itemtotal {
    padding-bottom: 0.5625rem; }
  @media screen and (min-width: 40em) {
    .orders--detail .tablerow .cart_listing_image {
      text-align: center; } }
  .orders--detail .subtotal span {
    display: block;
    border-bottom: 0.0625rem solid #ddd;
    padding: 0.4375rem 0; }
  .orders--detail .carttable {
    border-top: 0.125rem solid #ddd; }

.order-detail__header {
  background: #fff;
  margin-bottom: 0.9375rem !important;
  padding: 1.875rem;
  border: 0.125rem solid #dcdcdc; }

.order-detail .order-date h2 {
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 1.125rem;
  margin: 0px;
  font-weight: 600; }

.order-detail .order-date h3 {
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 0.875rem;
  margin: 0.4375rem 0 0 0;
  padding-right: 0.9375rem;
  font-weight: 400; }

.order-detail .order-date p {
  margin: 0px; }

@media screen and (min-width: 40em) {
  .order-detail .order-status {
    border-left: 0.0625rem solid rgba(230, 230, 230, 0.2); } }

.order-detail .order-status h3 {
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 0.9375rem;
  margin: 0.75rem 0.9375rem 0 0;
  font-weight: 500; }

.order-detail .order-status .alert-box {
  margin: 0px;
  padding: 0.75rem 0.9375rem;
  float: right;
  display: block;
  width: 100%;
  text-align: center;
  position: relative; }
  .order-detail .order-status .alert-box [class*="fi-"] {
    margin-right: 0.4375rem; }
  .order-detail .order-status .alert-box [class*="ico-"] {
    margin-right: 0.3125rem;
    font-size: 1.125rem;
    position: relative;
    transform: translateY(18%);
    display: inline-block; }

.order-detail .order-status em {
  font-style: normal; }

.order-detail .order-status .ico-order-status--cancellato + em {
  color: red;
  font-weight: 500; }

.order-detail .btn_verifica {
  margin-top: 1.25rem; }

.order-detail .custom-logo-buttons {
  list-style: none;
  margin: 0.4375rem 0;
  padding: 0;
  display: block; }
  .order-detail .custom-logo-buttons li {
    margin-bottom: 0.3125rem; }
  .order-detail .custom-logo-buttons a {
    text-decoration: underline;
    font-size: 0.75rem; }
    .order-detail .custom-logo-buttons a:hover {
      text-decoration: none; }
  .order-detail .custom-logo-buttons a.button {
    display: inline-block !important;
    width: auto !important;
    background: transparent;
    font-size: 0.75rem;
    padding: 0.625rem 0.9375rem; }
    .order-detail .custom-logo-buttons a.button:hover {
      text-decoration: none; }

.order-detail strong {
  font-weight: 600 !important; }

.order-detail .dashboard {
  border: 1px solid #ddd;
  margin-bottom: 1.25rem !important; }
  .order-detail .dashboard h3 {
    display: block;
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
    text-transform: uppercase; }
  .order-detail .dashboard li {
    line-height: 1.6em; }
  .order-detail .dashboard .button.secondary {
    background: #675b5e;
    margin-top: 0.625rem;
    padding: 0.4375rem 0.9375rem; }
    .order-detail .dashboard .button.secondary:hover {
      background: #e6e6e6; }
  .order-detail .dashboard .alert-box {
    font-size: 0.875rem;
    line-height: 1.2em;
    text-align: left;
    display: inline-block;
    padding: 0.9375rem 1.25rem; }
    .order-detail .dashboard .alert-box strong {
      text-transform: uppercase; }
  .order-detail .dashboard .panel {
    background: #f2f2f2;
    border: 1px solid #ddd; }

/*-------------------
-------------------
SMALL SCREEN - max-width:768px
-------------------
-------------------*/
@media only screen and (max-width: 48em) {
  .order-date {
    padding-bottom: 15px; }
    .order-date h2 {
      font-size: 24px; }
    .order-date h3 {
      font-size: 16px;
      line-height: 1.4em; }
  .order-date + .medium-3 h3 {
    font-size: 20px; }
  .order-date + .medium-3 .alert-box {
    margin-top: 5px; } }

.user__panel {
  background: white;
  border: 0 solid #ddd;
  padding: 0.9375rem 0.9375rem !important; }
  @media screen and (min-width: 40em) {
    .user__panel {
      padding: 1.875rem 2.5rem !important; } }
  .user__panel__title {
    font-size: 1.125rem;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 500;
    color: #ffffff; }
    @media screen and (min-width: 40em) {
      .user__panel__title {
        font-size: 1.5rem; } }
  .user__panel__text {
    font-size: 0.875rem;
    line-height: 1.4em;
    color: #ffffff; }
    @media screen and (min-width: 40em) {
      .user__panel__text {
        font-size: 0.9375rem; } }
    .user__panel__text a {
      color: #ffffff !important;
      text-decoration: underline; }
      .user__panel__text a:hover {
        text-decoration: none; }

.user__form .column, .user__form .columns,
.user__form .columns {
  position: relative; }

.user__fieldset, .user__fieldset--delete {
  background: white;
  margin-bottom: 1.875rem;
  border: 0 solid #e9e9e9;
  padding: 1.875rem 1.5625rem; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .user__fieldset .row > .column, .user__fieldset--delete .row > .column, .user__fieldset .row > .columns, .user__fieldset--delete .row > .columns {
      padding-right: 0;
      padding-left: 0; } }
  .user__fieldset__header {
    margin-bottom: 0.9375rem;
    text-align: left; }
    .user__fieldset__header legend {
      background: transparent;
      font-size: 1.25rem;
      font-weight: 700;
      color: #c62828;
      width: 100%;
      text-align: inherit;
      margin: 0px;
      padding: 0px; }
    .user__fieldset__header small {
      text-align: inherit;
      margin: 0px;
      padding: 0px; }
  .user__fieldset input, .user__fieldset--delete input,
  .user__fieldset select, .user__fieldset--delete select {
    background-color: #ffffff; }
  .user__fieldset select, .user__fieldset--delete select {
    background-color: #ffffff;
    background-image: url(../images/arrow-down--gray.svg) !important;
    background-size: 20px 10px;
    background-repeat: no-repeat;
    background-position: calc(100% - 0px) center !important; }
    .user__fieldset select:focus, .user__fieldset--delete select:focus {
      background-position: calc(100% - 15px) center !important;
      background-image: url(../images/arrow-down--gray.svg) !important;
      background-size: 20px 10px;
      background-repeat: no-repeat !important; }
  .user__fieldset--check {
    border: 0.3125rem solid #eee;
    border-width: 0 0 0.1875rem;
    margin: 0;
    padding: 0 1.5625rem 1.25rem; }
    .user__fieldset--check .check {
      position: relative;
      margin-bottom: 1.25rem; }
      .user__fieldset--check .check input {
        width: 1rem;
        height: 1rem;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        visibility: hidden;
        opacity: 0; }
        .user__fieldset--check .check input + label {
          font-family: "Roboto", Arial, sans-serif;
          font-size: 0.6875rem;
          color: #212121;
          text-transform: none;
          padding-left: 1.25rem;
          padding-top: 0;
          font-weight: 400; }
          @media screen and (min-width: 80em) {
            .user__fieldset--check .check input + label {
              font-size: 1rem; } }
        .user__fieldset--check .check input + label:before {
          content: '';
          width: 0.8125rem;
          height: 0.8125rem;
          margin: 0 0 0 0;
          display: block;
          position: absolute;
          top: 0.25rem;
          left: 0.25rem;
          background: url(../images/check--gray.svg) no-repeat 50% 50%;
          background-size: contain;
          opacity: 0; }
        .user__fieldset--check .check input + label:after {
          content: '';
          width: 1.25rem;
          height: 1.25rem;
          margin: 0 0 0 0;
          border: 2px solid #e6e6e6;
          border-radius: 0;
          background-color: transparent;
          display: block;
          position: absolute;
          top: 0;
          left: 0; }
          @media screen and (min-width: 80em) {
            .user__fieldset--check .check input + label:after {
              margin: 0 0 0 0; } }
        .user__fieldset--check .check input:checked + label:before {
          opacity: 1; }
        .user__fieldset--check .check input:checked + label {
          font-weight: 400; }
  .user__fieldset--delete {
    margin-top: 0;
    margin-bottom: 3.75rem;
    background: transparent; }
    .user__fieldset--delete .user__fieldset__header {
      margin: 0px; }
    .user__fieldset--delete .button {
      margin-top: 0.9375rem;
      margin-bottom: 0.625rem;
      min-width: 12.5rem !important; }
  .user__fieldset .button-group .button, .user__fieldset--delete .button-group .button {
    border: 0px;
    padding: 0.9375rem 1.25rem; }
    .user__fieldset .button-group .button [class*="fi-"], .user__fieldset--delete .button-group .button [class*="fi-"] {
      margin-right: 0.625rem; }

/*-------------------
CHECKOUT
-------------------*/
.contain-to-grid {
  background: #fff; }

.row.checkout.dashboard.generic-form {
  margin-top: 1.875rem; }

.checkout {
  display: inline-block;
  margin: 0 auto; }
  .checkout label {
    font-weight: 600;
    font-size: 0.75rem !important; }
  .checkout *:not(.button) {
    letter-spacing: 0px;
    text-align: left; }
  .checkout .section-title--primary {
    text-align: center !important;
    text-transform: uppercase;
    color: #c62828; }
  .checkout a:not(.button) {
    text-decoration: underline; }
  .checkout label {
    font-size: 0.875rem; }
  .checkout .column, .checkout .columns,
  .checkout .columns {
    position: relative; }
  .checkout .button {
    font-size: 0.875rem !important; }
  .checkout .content-container .top-bar {
    height: auto;
    padding: 0.938rem 0; }
  .checkout .content-container .top-bar .top-bar-section {
    top: auto; }
  .checkout .content-container .top-bar ul {
    text-align: center;
    display: block; }
  .checkout .content-container .top-bar li {
    display: inline-block;
    float: none; }
  .checkout .tabs {
    margin-top: 0.625rem !important;
    margin-bottom: 3.125rem !important;
    border: 0px; }
  .checkout .tabs-content {
    border: 0px; }
    .checkout .tabs-content .column, .checkout .tabs-content .columns,
    .checkout .tabs-content .columns {
      padding: 0; }
  .checkout .tabs dd {
    margin-right: 15px;
    opacity: 1;
    display: inline-block; }
  .checkout .tabs dd.is-active,
  .checkout .tabs dd:hover {
    opacity: 1; }
  .checkout .content-container .top-bar li a {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    position: relative; }
  .checkout .tabs dd a {
    font-family: "Montserrat", Arial, sans-serif;
    background-color: transparent;
    text-decoration: none;
    padding: 0;
    color: #212121;
    position: relative;
    transition: all 300ms ease-out; }
    .checkout .tabs dd a.emphasis {
      border: 0.125rem solid #8a8a8a;
      padding: 0.3125rem 0.9375rem 0.25rem;
      color: #8a8a8a;
      font-weight: 600;
      border-radius: 2px; }
      .checkout .tabs dd a.emphasis .stroke {
        display: none; }
      .checkout .tabs dd a.emphasis:hover {
        background: #8a8a8a;
        color: #fff; }
  .checkout .tabs dd.is-active a {
    color: #212121; }
    .checkout .tabs dd.is-active a.emphasis {
      background: #e6e6e6;
      color: #fff; }
  .checkout .tabs dd.is-active a,
  .checkout .tabs dd:hover a {
    /*color: #c39011;*/
    background-color: transparent; }
  .checkout .tabs .head a {
    font-size: 0.9375rem; }
  .checkout .tabs dd:hover a {
    color: #212121; }
  .checkout .content-container .top-bar-section li > a .stroke,
  .checkout .tabs > dd > a .stroke {
    display: block;
    content: ' ';
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    /*bottom:-0.313rem;*/
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
    transition: width 0.3s ease-out;
    -webkit-transition: width 0.3s ease-out;
    -moz-transition: width 0.3s ease-out;
    -o-transition: width 0.3s ease-out; }
  .checkout .content-container .top-bar-section li > a .stroke {
    background-color: #c39011; }
  .checkout .tabs > dd > a .stroke {
    border-left: none;
    border-right: none;
    background-color: #212121; }
  .checkout .content-container .top-bar-section li:hover > a .stroke,
  .checkout .content-container .top-bar-section li.active > a .stroke,
  .checkout .tabs dd:hover a .stroke,
  .checkout .tabs dd.is-active a .stroke {
    width: 100%; }
  .checkout .dashboard.checkout.row {
    margin-left: auto;
    margin-right: auto; }
  .checkout .step-number {
    text-align: center;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 33px;
    margin-right: 0.375rem;
    border-radius: 100%;
    border: 0.1875rem solid #c62828;
    font-family: "Montserrat", Arial, sans-serif;
    color: #c62828;
    font-size: 1.125rem; }
  .checkout .accordion {
    margin-bottom: 0.938rem; }
  .checkout .accordion-navigation > a {
    background-color: #707070;
    color: #fff;
    padding-left: 0.938rem; }
  .checkout .accordion-navigation > a:hover {
    background-color: #5a5a5a;
    color: #fff; }
  .checkout .accordion-navigation a [class*="fi-"] {
    display: inline-block;
    margin-right: 0.625rem;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out; }
  .checkout .accordion-navigation.active a [class*="fi-"] {
    transform: rotate(405deg);
    transform-origin: center; }
  .checkout .accordion-navigation .content {
    padding: 0.938rem; }
  .checkout .accordion-navigation .content .row {
    margin-left: 0;
    margin-right: 0; }
  .checkout .accordion-navigation .content .column, .checkout .accordion-navigation .content .columns {
    padding-left: 0.938rem !important;
    padding-right: 0.938rem !important; }
  .checkout .accordion-navigation .content .column input, .checkout .accordion-navigation .content .columns input {
    padding-left: 0.313rem;
    padding-right: 0.313rem; }
  .checkout label.inline {
    display: block;
    margin: 0 0 0.9375rem;
    padding: 0px; }
  .checkout .privacy-link {
    margin-left: 1.625rem; }
  .checkout .panel {
    border-style: solid;
    border-width: 0.1875rem;
    border-color: #e6e6e6;
    margin-bottom: 1.25rem;
    padding: 1.25rem !important;
    background: #e8e8e8; }
  .checkout .new-address {
    padding: 0 !important; }
  .checkout select {
    background-image: url(../images/arrow-down--gray.svg) !important;
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-color: #ffffff;
    color: rgba(102, 102, 102, 0.7);
    padding: 0.5rem 0 0.5rem 0.9375rem !important; }
    .checkout select:focus {
      background-position: calc(100% - 15px) center !important;
      background-image: url(../images/arrow-down--gray.svg) !important;
      background-size: 13px 13px;
      background-repeat: no-repeat !important; }
  .checkout input[type="text"],
  .checkout textarea,
  .checkout select {
    background-color: #ffffff;
    border: 1px solid #cccccc !important;
    margin: 0 0 1.8rem; }
  .checkout select[disabled] {
    background: #ddd !important; }
  .checkout input[type="checkbox"] {
    visibility: hidden;
    position: absolute; }
    .checkout input[type="checkbox"] + label {
      font-family: "Roboto", Arial, sans-serif;
      position: relative;
      padding: 0px !important;
      text-transform: none;
      letter-spacing: 0px;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.4em; }
      .checkout input[type="checkbox"] + label a {
        display: inline;
        text-decoration: underline; }
    .checkout input[type="checkbox"] + label:before {
      content: '';
      display: block;
      float: left;
      width: 1.25rem;
      height: 1.25rem;
      margin: 0 0.625rem 1.25rem 0;
      cursor: pointer;
      border: 1px solid #cccccc;
      background-color: #ffffff; }
    .checkout input[type="checkbox"]:checked + label:before {
      content: '';
      position: relative; }
    .checkout input[type="checkbox"]:checked + label:after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      content: '';
      display: block;
      width: 1rem;
      height: 0.8125rem;
      opacity: 0.75;
      background-image: url("../images/check.svg");
      background-position: center center;
      background-size: 0.75rem 0.75rem;
      background-repeat: no-repeat;
      position: absolute;
      top: 0.625rem;
      left: 0.625rem; }
  .checkout .check_disabled input[type="checkbox"]:disabled {
    visibility: visible !important;
    position: absolute !important;
    background-color: #e6e6e6 !important; }
  .checkout .check_disabled label.disabled {
    font-family: "Roboto", Arial, sans-serif;
    position: relative;
    padding: 0px;
    text-transform: none;
    letter-spacing: 0px;
    font-size: 0.875rem;
    line-height: 1.4em;
    cursor: default; }
  .checkout .check_disabled label.disabled:before {
    content: '';
    display: block;
    float: left;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 0.625rem 1.25rem 0;
    cursor: default;
    border: 1px solid #cccccc;
    background-color: #e1e1e1; }
  .checkout input[type="radio"] {
    display: none; }
  .checkout input[type="radio"] + label {
    color: #424242;
    font-size: 0.875rem;
    font-weight: 500; }
    .checkout input[type="radio"] + label .label-text {
      display: inline-block; }
      .checkout input[type="radio"] + label .label-text em {
        font-style: normal; }
  .checkout input[type="radio"] + label .check-shape {
    display: inline-block;
    width: 19px;
    height: 19px;
    margin: -1px 4px 0 0;
    vertical-align: top;
    cursor: pointer;
    -moz-border-radius: 50%;
    border-radius: 50%; }
  .checkout input[type="radio"] + label .check-shape {
    background-color: #fff;
    border: 0.3125rem solid transparent;
    box-shadow: 0 0 1px rgba(33, 33, 33, 0.7); }
  .checkout input[type="radio"]:checked + label .check-shape {
    background-color: #424242;
    border: 0.3125rem solid #fff; }
  .checkout input[type="radio"] + label .check-shape,
  .checkout input[type="radio"]:checked + label .check-shape {
    -webkit-transition: background-color 100ms linear;
    -o-transition: background-color 100ms linear;
    -moz-transition: background-color 100ms linear;
    transition: background-color 100ms linear; }
  .checkout .dashboard .errore {
    display: block;
    color: #fff !important;
    background: red;
    font-size: 0.75rem;
    line-height: 0.875rem;
    padding: 0.625rem; }
  .checkout .dashboard .has-tip {
    border-bottom: dotted 0px #ccc; }
    .checkout .dashboard .has-tip:hover {
      color: #e6e6e6; }
  .checkout .dashboard .content label {
    font-size: 0.75rem; }
  .checkout .dashboard .button {
    margin-bottom: 3px !important; }

#Panel_Login {
  background: #f2f2f2;
  border: 0.25rem solid #ddd;
  padding: 0.9375rem 1.875rem; }
  #Panel_Login p {
    font-family: "Roboto", Arial, sans-serif;
    margin: 0.625rem 0;
    font-size: 0.875rem;
    line-height: 1.4em;
    color: #212121; }
  #Panel_Login input {
    border: 1px solid #cccccc; }
  #Panel_Login .button.secondary {
    letter-spacing: 0px; }

#shipping-payment-box label {
  position: relative;
  display: inline-block;
  line-height: 1.4em; }
  #shipping-payment-box label.icon-cc {
    padding-right: 8.8125rem; }
  #shipping-payment-box label.icon-pp {
    padding-right: 3.125rem; }
  #shipping-payment-box label.icon-cc:after, #shipping-payment-box label.icon-pp:after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1.5625rem;
    position: absolute;
    top: 25%;
    right: 0;
    margin-top: -0.75rem; }

#complete-checkout .row {
  line-height: 1.3em !important;
  margin-bottom: 0.9375rem; }
  #complete-checkout .row .panel.callout {
    text-align: right;
    padding: 0.625rem;
    background-color: rgba(187, 222, 251, 0.25);
    border-color: rgba(187, 222, 251, 0.25);
    box-shadow: 0 0 0 transparent; }
    #complete-checkout .row .panel.callout p {
      font-family: "Roboto", Arial, sans-serif;
      text-align: right;
      color: #212121;
      margin: 0 0;
      padding: 0 0; }
      #complete-checkout .row .panel.callout p strong {
        font-family: "Roboto", Arial, sans-serif;
        display: inline-block;
        text-align: right; }
      #complete-checkout .row .panel.callout p:not(.price) br {
        display: none; }
      #complete-checkout .row .panel.callout p.price {
        padding-top: 0.4375rem;
        font-family: "Roboto", Arial, sans-serif; }
        #complete-checkout .row .panel.callout p.price strong {
          font-family: "Montserrat", Arial, sans-serif;
          font-size: 1.5rem;
          line-height: 1.4em; }
    #complete-checkout .row .panel.callout .shipping_cost {
      display: block;
      border-bottom: 0.0625rem solid #dcdcdc;
      padding: 0.4375rem 0; }
  #complete-checkout .row input[type="checkbox"]:checked + label span.check-shape:after {
    top: 0.125rem; }

#complete-checkout .panel {
  margin-bottom: 0px !important; }

#complete-checkout .row input[type="checkbox"]:checked + label span.check-shape:after {
  top: 0.5rem; }

.pick-and-pay {
  display: block;
  padding-top: 0.9375rem; }

.pick-address {
  line-height: 1.5em;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.75rem;
  color: #555657; }
  .pick-address strong {
    font-weight: 600; }

@media screen and (min-width: 40em) {
  .registration-form .column + .column, .registration-form .columns + .column, .registration-form .column + .columns, .registration-form .columns + .columns,
  .new-address .column + .column,
  .new-address .columns + .column,
  .new-address .column + .columns,
  .new-address .columns + .columns {
    padding-left: 0.9375rem !important; } }

.alert-box--configuratore {
  border-width: 0px;
  margin: 0px;
  padding: 0.625rem 0;
  z-index: 50;
  background-color: transparent;
  box-shadow: inset 0px 5px 10px -6px rgba(0, 0, 0, 0.55); }
  @media screen and (min-width: 64em) {
    .alert-box--configuratore.shirnk {
      position: fixed;
      width: 100%;
      margin-top: 72px;
      padding: 0.3125rem 0 0.625rem;
      box-shadow: 0px 5px 10px -6px rgba(0, 0, 0, 0.55) !important;
      animation-name: slide-down-c;
      animation-duration: 900ms;
      animation-iteration-count: 1;
      animation-timing-function: ease-in-out;
      opacity: 1; }
    @-webkit-keyframes slide-down-c {
      from {
        top: -15.625rem;
        opacity: 1; }
      to {
        top: 0;
        opacity: 1.00; } }
    @keyframes slide-down-c {
      from {
        top: -15.625rem;
        opacity: 1; }
      to {
        top: 0;
        opacity: 1.00; } } }
  @media screen and (min-width: 40em) {
    .alert-box--configuratore {
      padding: 0.3125rem 0; } }
  .alert-box--configuratore .button {
    margin: 0.3125rem 0 0 0;
    width: 100%; }
    @media screen and (min-width: 40em) {
      .alert-box--configuratore .button {
        width: auto;
        margin: 0.6875rem 0 0 0; } }
    @media screen and (min-width: 64em) {
      .alert-box--configuratore .button {
        margin-right: 0.9375rem; } }
    .alert-box--configuratore .button:hover {
      background: #e6e6e6;
      color: #fde840; }
  .alert-box--configuratore__img {
    display: inline-block;
    overflow: hidden;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 0px 0px 2px #eed402;
    margin: 0.3125rem 0 0 0;
    position: static; }
    @media screen and (min-width: 40em) {
      .alert-box--configuratore__img {
        width: 3.125rem;
        height: 3.125rem; } }
  .alert-box--configuratore__text {
    color: #e6e6e6;
    font-size: 0.875rem;
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
    .alert-box--configuratore__text p {
      color: #e6e6e6;
      line-height: 1.3em;
      font-size: 0.75rem;
      margin: 0px; }
      @media screen and (min-width: 40em) {
        .alert-box--configuratore__text p {
          line-height: 1.4em;
          font-size: 0.875rem;
          padding: 0 0px; } }
      @media only screen and (min-width: 375px) and (max-width: 667px) and (orientation: landscape) {
        .alert-box--configuratore__text p {
          line-height: 1.3em;
          font-size: 0.75rem; } }

.alert-box--error {
  border: 0.1875rem solid red;
  margin: 0.9375rem 0;
  padding: 1.25rem 2.8125rem;
  font-size: 1rem;
  color: red;
  font-weight: 600;
  display: inline-block;
  max-width: 80%; }

.alert-box.info {
  background-color: rgba(187, 222, 251, 0.25);
  border: 0.0625rem solid rgba(187, 222, 251, 0.5);
  color: #666666;
  padding: 1.25rem;
  font-size: 0.875rem; }
  .alert-box.info.order-list__pagamento, .alert-box.info.order-list__controllo {
    padding: 0.625rem;
    font-size: 0.875rem; }

.alert-box.alert {
  background-color: #fbcec7;
  border: 0.0625rem solid rgba(251, 206, 199, 0.5);
  color: #666666;
  padding: 1.25rem;
  font-size: 0.875rem; }
  .alert-box.alert.order-list__pagamento, .alert-box.alert.order-list__controllo {
    padding: 0.625rem;
    font-size: 0.875rem; }

.alert-box.success {
  background-color: rgba(0, 134, 35, 0.25);
  border: 0.0625rem solid rgba(0, 134, 35, 0.5);
  color: #666666;
  padding: 1.25rem;
  font-size: 0.875rem; }
  .alert-box.success.order-list__pagamento, .alert-box.success.order-list__controllo {
    padding: 0.625rem;
    font-size: 0.875rem; }

.alert-box.warning {
  background-color: #fff3d9;
  border: 0.0625rem solid rgba(255, 174, 0, 0.4);
  color: #666666;
  font-size: 0.875rem; }
  .alert-box.warning strong {
    font-size: 0.875rem; }
  .alert-box.warning.order-list__pagamento, .alert-box.warning.order-list__controllo {
    padding: 0.625rem;
    font-size: 0.875rem; }

.alert-box p {
  margin-bottom: 0; }

.notifications-cart {
  display: none;
  z-index: 9999;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #373c40;
  padding: 2.5rem 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); }

.notifications-cart p {
  color: #fff;
  margin: 0;
  line-height: 1.6em; }

.notifications-cart p strong {
  font-size: 0.9375rem; }

.notifications-cart .button {
  margin: 0; }

@media only screen and (max-width: 640px) {
  .notifications-cart .button {
    width: 100%;
    margin-top: 0.9375rem; } }

.notifications-cart:before {
  content: '';
  position: absolute;
  display: block;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 60px;
  height: 50px;
  background-color: #373c40;
  background-image: url("../images/check-progress-button.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 40%; }

.notifications-cart-error {
  display: none;
  z-index: 9999;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #dd042b;
  padding: 2.5rem 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); }

.notifications-cart-error p {
  color: #fff;
  margin: 0;
  line-height: 1.6em; }

.notifications-cart-error p strong {
  font-size: 0.9375rem; }

.notifications-cart-error .button {
  margin: 0; }

@media only screen and (max-width: 640px) {
  .notifications-cart-error .button {
    width: 100%;
    margin-top: 0.9375rem; } }

.notifications-cart-error:before {
  content: '';
  position: absolute;
  display: block;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 60px;
  height: 50px;
  background-color: #dd042b;
  background-image: url("../images/close_modal_window.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 40%; }

/* SECTIONS
Questa cartella è un'altra categoria di componenti e ne condivide le
stesse regole di creazione ed utilizzo. L'unica differenza è che mentre i
componenti sono piccoli moduli che possono ripetersi più volte all'interno di
una stessa pagina, le section sono dei macro moduli che vengono utilizzati una
sola volta all'interno della pagina. La scelta di inserire un modulo all'interno
di section piuttosto che di components è puramente organizzativa e può essere
paragonata alla scelta di utilizzare un selettore id al posto di un selettore di
classe.
*/
.cms {
  padding-bottom: 3.75rem; }

.cms-block {
  margin: 0.9375rem auto; }
  @media screen and (min-width: 40em) {
    .cms-block {
      margin: 1.875rem auto; } }
  .cms-block__title {
    color: #212121;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.125rem;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 0.625rem; }
    @media screen and (min-width: 40em) {
      .cms-block__title {
        font-size: 1.25rem; } }
    @media screen and (min-width: 64em) {
      .cms-block__title {
        font-size: 1.375rem; } }
    @media screen and (min-width: 80em) {
      .cms-block__title {
        font-size: 1.625rem; } }
  .cms-block__paragraphs b,
  .cms-block__paragraphs strong {
    font-weight: 700; }
  .cms-block__paragraphs p {
    font-size: 1rem; }
  .cms-block__paragraphs ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-left: 0; }
    .cms-block__paragraphs ul li {
      list-style-type: none;
      background: url(../images/spritesheet/check-list.svg) no-repeat 0% 5px transparent;
      background-size: 0.625rem 0.625rem;
      padding-left: 1.5625rem;
      margin: 0.625rem 0 0 0;
      line-height: 1.3em; }
  .cms-block__separator hr {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem; }
  .cms-block .wkp-media-element {
    margin-bottom: 0.9375rem; }
  .cms-block__media {
    margin-bottom: 1.125rem; }
    .cms-block__media--video figure {
      background-color: #ccc;
      text-align: center; }
    .cms-block__media img {
      width: 100%; }
  .cms-block__video-caption {
    background-color: #f2f2f2;
    font-family: "Roboto", Arial, sans-serif;
    text-align: left;
    font-size: 0.875rem;
    letter-spacing: 2px; }
  .cms-block__video-link {
    transition: all 300ms ease-out;
    display: block;
    padding: 0.9375rem 1.875rem;
    color: rgba(198, 40, 40, 0.8); }
    .cms-block__video-link .cms-block__video-icon {
      padding-right: 0.3125rem; }
      .cms-block__video-link .cms-block__video-icon svg {
        fill: rgba(198, 40, 40, 0.8); }
    .cms-block__video-link:hover {
      color: #ffffff;
      background-color: rgba(198, 40, 40, 0.8); }
      .cms-block__video-link:hover .cms-block__video-icon svg {
        fill: #ffffff;
        opacity: 1; }
  .cms-block__text {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    margin-bottom: 1.875rem; }
  .cms-block--one-column .cms-block__paragraphs p:last-child {
    margin-bottom: 1.875rem; }
  .cms-block--left-media-small {
    margin-top: 0.9375rem;
    margin-bottom: 0;
    border-bottom: 0.125rem solid #e6e6e6; }
    .cms-block--left-media-small .cms-block__title {
      font-size: 1.25rem; }
    .cms-block--left-media-small .cms-block__paragraphs p {
      font-size: 0.9375rem; }

.footer {
  position: relative; }
  @media screen and (min-width: 64em) {
    .footer {
      margin: 0 1.25rem; } }
  .footer__bottom {
    border-top: 1px solid #dcdcdc;
    margin: 0 0 0 0;
    padding-top: 2.5rem;
    padding-bottom: 1.875rem; }
    @media screen and (min-width: 64em) {
      .footer__bottom {
        padding-bottom: 3.125rem; } }
  .footer__logo {
    margin: 0 0 0.625rem 0;
    width: 100%;
    display: inline-block;
    text-align: center; }
    @media screen and (min-width: 40em) {
      .footer__logo {
        text-align: left; } }
    @media screen and (min-width: 80em) {
      .footer__logo {
        margin: 0 0 1.25rem 0; } }
  .footer__address {
    text-align: center; }
    @media screen and (min-width: 40em) {
      .footer__address {
        text-align: left;
        margin: 0; } }
    .footer__address-label {
      font-family: "Montserrat", Arial, sans-serif;
      font-weight: 700;
      font-size: 0.8125rem;
      color: rgba(33, 33, 33, 0.5);
      text-transform: uppercase;
      letter-spacing: 1px; }
    .footer__address-title {
      font-family: "Montserrat", Arial, sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: #212121;
      letter-spacing: 1px; }
    .footer__address-text {
      font-size: 0.8125rem;
      color: #666666; }
      .footer__address-text a {
        color: #666666; }
  .footer__nav {
    text-align: center;
    list-style: none;
    margin-bottom: 1.25rem; }
    @media screen and (min-width: 40em) {
      .footer__nav {
        margin-bottom: 0;
        text-align: left; } }
    @media screen and (min-width: 64em) {
      .footer__nav {
        margin-top: 0; } }
    .footer__nav a {
      font-family: "Roboto", Arial, sans-serif;
      display: block;
      font-size: 0.8125rem;
      color: #666666; }
      .footer__nav a:hover {
        color: #c62828; }
    .footer__nav-list {
      font-size: 0.8125rem;
      margin: 0;
      list-style: none; }
      .footer__nav-list li {
        position: relative;
        margin-bottom: 0.3125rem;
        font-family: "Roboto", Arial, sans-serif; }
        @media screen and (min-width: 40em) {
          .footer__nav-list li {
            margin-bottom: 0.1875rem; } }
        .footer__nav-list li :last-child {
          margin-bottom: 0; }
      .footer__nav-list li > a {
        opacity: 1.0;
        transition: all 0.3s ease-out;
        color: #666666; }
      .footer__nav-list li > a:hover,
      .footer__nav-list li > a:focus {
        color: #c62828; }
    .footer__nav-item-title {
      font-family: "Montserrat", Arial, sans-serif;
      color: #212121;
      font-size: 0.8125rem;
      line-height: 1.1em;
      margin-bottom: 0.9375rem; }
  .footer__inline-list {
    list-style: none;
    margin: 0;
    text-align: center; }
    @media screen and (min-width: 64em) {
      .footer__inline-list {
        text-align: left; } }
    .footer__inline-list > li {
      display: block;
      text-align: center;
      padding: 0.3125rem 0;
      color: #666666;
      font-size: 0.8125rem; }
      @media screen and (min-width: 40em) {
        .footer__inline-list > li {
          display: inline-block;
          padding: 0 1.25rem 0.625rem 1.25rem; } }
      @media screen and (min-width: 64em) {
        .footer__inline-list > li {
          float: left;
          display: inline-block;
          text-align: left;
          padding: 0 1.875rem 0.625rem 0; }
          .footer__inline-list > li:last-child {
            float: right;
            padding: 0; } }
      @media screen and (min-width: 80em) {
        .footer__inline-list > li {
          padding: 0 2.1875rem 0 0; } }
      @media screen and (min-width: 120em) {
        .footer__inline-list > li {
          padding: 0 3.125rem 0 0; } }
    .footer__inline-list > li a {
      display: block;
      color: #666666;
      transition: all 300ms ease-out; }
      .footer__inline-list > li a:hover, .footer__inline-list > li a:focus {
        color: #c62828; }

.header {
  position: relative;
  background-color: #ffffff;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem; }
  @media screen and (min-width: 64em) {
    .header {
      margin: 0 1rem;
      padding-bottom: 1.75rem; } }
  @media screen and (min-width: 80em) {
    .header {
      padding-top: 1.875rem;
      padding-bottom: 1.875rem; } }
  .header .container-logo {
    margin: 0 0 0 2.5rem;
    width: 100px;
    display: block; }
    @media screen and (min-width: 64em) {
      .header .container-logo {
        margin: 0 0 0 2.5rem; } }
    @media screen and (min-width: 80em) {
      .header .container-logo {
        margin: 0 0 0 3.625rem;
        width: 179px; } }
  .header .icon-nav {
    width: 100%;
    text-align: right; }
    .header .icon-nav ul {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      height: 42px;
      list-style: none; }
      .header .icon-nav ul li {
        display: inline-block;
        height: auto;
        border-right: 0px solid #bababa;
        width: auto; }
        @media screen and (min-width: 80em) {
          .header .icon-nav ul li {
            width: auto; } }
        .header .icon-nav ul li:last-child {
          border: 0; }
        .header .icon-nav ul li a {
          display: block;
          padding: 0 0.3125rem;
          display: flex;
          align-items: center;
          font-size: 13px;
          color: #777; }
          @media screen and (min-width: 80em) {
            .header .icon-nav ul li a {
              padding: 0 1.25rem; } }
    .header .icon-nav--cart, .header .icon-nav--user, .header .icon-nav--favourite, .header .icon-nav--language {
      position: relative; }
      .header .icon-nav--cart span, .header .icon-nav--user span, .header .icon-nav--favourite span, .header .icon-nav--language span {
        width: 100% !important;
        height: 1rem;
        margin: 0 0px;
        display: flex;
        padding-right: 1.875rem;
        position: relative;
        align-items: center;
        line-height: 1.05em; }
        @media screen and (min-width: 80em) {
          .header .icon-nav--cart span, .header .icon-nav--user span, .header .icon-nav--favourite span, .header .icon-nav--language span {
            width: 1.625rem;
            height: 1.625rem; } }
        .header .icon-nav--cart span:before, .header .icon-nav--user span:before, .header .icon-nav--favourite span:before, .header .icon-nav--language span:before {
          content: '';
          position: absolute;
          display: block;
          width: 1rem;
          height: 1rem;
          top: 50%;
          right: 0;
          margin: -8px 0 0 0;
          z-index: 6; }
          @media screen and (min-width: 80em) {
            .header .icon-nav--cart span:before, .header .icon-nav--user span:before, .header .icon-nav--favourite span:before, .header .icon-nav--language span:before {
              width: 1.25rem;
              height: 1.25rem;
              margin: -10px 0 0 0; } }
        .header .icon-nav--cart span em, .header .icon-nav--user span em, .header .icon-nav--favourite span em, .header .icon-nav--language span em {
          font-style: normal;
          display: none; }
        @media screen and (min-width: 80em) {
          .header .icon-nav--cart span em, .header .icon-nav--user span em, .header .icon-nav--favourite span em, .header .icon-nav--language span em {
            font-style: normal;
            display: block; } }
      .header .icon-nav--cart a span:before, .header .icon-nav--user a span:before, .header .icon-nav--favourite a span:before, .header .icon-nav--language a span:before {
        transition: all 300ms ease-out; }
      .header .icon-nav--cart a:hover span:before, .header .icon-nav--user a:hover span:before, .header .icon-nav--favourite a:hover span:before, .header .icon-nav--language a:hover span:before {
        opacity: 0.5; }
    .header .icon-nav--cart {
      position: relative; }
      .header .icon-nav--cart a {
        transition: all 300ms ease-out; }
        .header .icon-nav--cart a span:before {
          background: url(../images/spritesheet/cart--black.svg) no-repeat 50% 50%;
          background-size: contain; }
        .header .icon-nav--cart a .num-items {
          display: block;
          background: #c62828;
          width: 1.5rem;
          height: 1.5rem;
          line-height: 1.53125rem;
          color: #ffffff;
          text-align: center;
          position: absolute;
          top: -25px;
          right: -20px;
          font-style: normal;
          border-radius: 50%;
          z-index: 8; }
          @media screen and (min-width: 64em) {
            .header .icon-nav--cart a .num-items {
              right: -10px; } }
          @media screen and (min-width: 80em) {
            .header .icon-nav--cart a .num-items {
              right: -10px; } }
          @media screen and (min-width: 120em) {
            .header .icon-nav--cart a .num-items {
              right: -10px; } }
          .header .icon-nav--cart a .num-items:after {
            content: '';
            height: 0;
            width: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 10px solid #c62828;
            position: absolute;
            bottom: -0.125rem;
            left: -0.125rem;
            z-index: 7;
            transform: rotate(45deg); }
        .header .icon-nav--cart a .num-items:empty,
        .header .icon-nav--cart a .num-items[data-value*="0"] {
          display: none; }
    .header .icon-nav--user a {
      transition: all 300ms ease-out; }
      .header .icon-nav--user a span:before {
        transition: all 300ms ease-out;
        background: url(../images/spritesheet/user--black.svg) no-repeat 50% 50%;
        background-size: contain; }
      .header .icon-nav--user a.selected {
        background: #e6e6e6; }
        .header .icon-nav--user a.selected span:before {
          background: url(../images/spritesheet/user--white.svg) no-repeat 50% 50%;
          background-size: contain; }
    .header .icon-nav--user.logged {
      position: relative; }
      .header .icon-nav--user.logged:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        background: url(../images/spritesheet/logged.svg) no-repeat 50% 50%;
        background-size: contain;
        z-index: 10;
        width: 0.625rem;
        height: 0.625rem;
        margin-left: 0.25rem; }
        @media screen and (min-width: 40em) {
          .header .icon-nav--user.logged:before {
            top: -0.0625rem;
            width: 0.625rem;
            height: 0.625rem;
            margin-left: 0.3125rem; } }
        @media screen and (min-width: 80em) {
          .header .icon-nav--user.logged:before {
            width: 0.8125rem;
            height: 0.8125rem;
            margin-left: 0.4375rem; } }
    .header .icon-nav--favourite a {
      transition: all 300ms ease-out; }
      .header .icon-nav--favourite a span:before {
        background: url(../images/spritesheet/heart--black.svg) no-repeat 50% 50%;
        background-size: contain; }
    .header .icon-nav--language a {
      transition: all 300ms ease-out;
      padding-right: 0 !important; }
      .header .icon-nav--language a span {
        padding-right: 25px !important; }
        .header .icon-nav--language a span em {
          display: block !important; }
        .header .icon-nav--language a span:before {
          background: url(../images/spritesheet/arrow-down.svg) no-repeat 50% 50%;
          background-size: 10px 10px; }
    .header .icon-nav--user:hover .dropdown-content {
      display: block; }
    .header .icon-nav--user:hover:after {
      content: '';
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid #666666;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%); }
    .header .icon-nav .dropdown-content {
      text-align: left;
      display: none;
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0);
      top: 28px;
      background-color: #666666 !important;
      height: auto !important;
      min-width: 170px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      z-index: 50; }
      @media screen and (min-width: 80em) {
        .header .icon-nav .dropdown-content {
          top: 26px; } }
      .header .icon-nav .dropdown-content li {
        border: 0;
        width: 100%;
        height: auto; }
        .header .icon-nav .dropdown-content li a {
          width: 100%;
          font-size: 0.8125rem;
          color: #ffffff;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
          border-bottom: 1px solid #999999; }
          .header .icon-nav .dropdown-content li a:hover {
            background-color: #999999; }
          .header .icon-nav .dropdown-content li a:after {
            content: '';
            display: block;
            width: 1rem;
            height: 1rem;
            position: absolute;
            top: 50%;
            right: 0.9375rem;
            background: red;
            margin-top: -0.5rem; }
        .header .icon-nav .dropdown-content li:last-child a {
          border: 0; }
    .header .icon-nav .icon {
      position: relative; }
      .header .icon-nav .icon.login a:after {
        background: url(../images/spritesheet/login--white.svg) no-repeat 50% 50%;
        background-size: contain; }
      .header .icon-nav .icon.account a:after {
        background: url(../images/spritesheet/user--white.svg) no-repeat 50% 50%;
        background-size: contain; }
      .header .icon-nav .icon.orders a:after {
        background: url(../images/spritesheet/clipboard--white.svg) no-repeat 50% 50%;
        background-size: contain; }
      .header .icon-nav .icon.logout a:after {
        background: url(../images/spritesheet/logout--white.svg) no-repeat 50% 50%;
        background-size: contain; }
      .header .icon-nav .icon.address a:after {
        background: url(../images/spritesheet/agenda--white.svg) no-repeat 50% 50%;
        background-size: contain; }
      .header .icon-nav .icon.users a:after {
        background: url(../images/spritesheet/users--white.svg) no-repeat 50% 50%;
        background-size: contain; }
      .header .icon-nav .icon.suggest a:after {
        background: url(../images/spritesheet/favorite--white.svg) no-repeat 50% 50%;
        background-size: contain; }
  .header .top-nav {
    display: block;
    border-width: 1px 0px;
    border-color: #bcbcbc;
    border-style: solid;
    margin: 1.4375rem 0 0 0;
    list-style-type: none; }
    .header .top-nav li {
      display: inline-block; }
      .header .top-nav li a {
        display: block;
        font-family: "Montserrat", Arial, sans-serif;
        color: #212121;
        font-size: 0.75rem;
        transition: all 300ms ease-out;
        padding: 0.625rem 0.625rem; }
        @media screen and (min-width: 64em) {
          .header .top-nav li a {
            padding: 0.625rem 0.9375rem;
            font-size: 0.8125rem; } }
        @media screen and (min-width: 80em) {
          .header .top-nav li a {
            padding: 0.625rem 1.875rem;
            font-size: 0.875rem; } }
        .header .top-nav li a:hover, .header .top-nav li a.active {
          color: #c62828; }
      .header .top-nav li:first-child a {
        padding-left: 0; }

.form--search input {
  transition: all 300ms ease-out; }

.form--search input:focus {
  background: #f9f9f9 !important;
  box-shadow: 0 0 8px rgba(33, 33, 33, 0.25); }

.form--search a {
  background-color: transparent; }

.header,
.hamburger,
.form--search {
  transition: all 300ms ease-out; }

.header.smaller {
  background: #ffffff;
  box-shadow: 0px 5px 10px -6px rgba(50, 50, 50, 0.55);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 1.125rem;
  padding-bottom: 0.6875rem;
  z-index: 15;
  margin: 0; }
  @media screen and (min-width: 80em) {
    .header.smaller {
      padding-top: 1.125rem;
      padding-bottom: 0.6875rem; } }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .header.smaller .form--search {
      display: none; } }
  .header.smaller .top-nav {
    display: none; }
  .header.smaller.stick-it {
    position: -webkit-sticky;
    position: sticky; }
  .header.smaller.stick-it-out {
    animation-name: stick-to-fix;
    animation-duration: .8s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    opacity: 1; }

@-webkit-keyframes stick-to-fix {
  0% {
    position: -webkit-sticky;
    position: sticky;
    top: 0; }
  50% {
    top: 0px; }
  100% {
    position: fixed;
    top: 0; } }

@keyframes stick-to-fix {
  0% {
    position: -webkit-sticky;
    position: sticky;
    top: 0; }
  50% {
    top: 0px; }
  100% {
    position: fixed;
    top: 0; } }

.hamburger.smaller {
  top: 50%;
  left: 0.9375rem; }
  @media screen and (min-width: 64em) {
    .hamburger.smaller {
      left: 1.1875rem; } }

@media screen and (min-width: 80em) {
  .side-nav.smaller .side-nav-inner {
    padding: 1.6875rem 0 1.6875rem 1.625rem; } }

.nav-is-open {
  overflow: hidden; }

.navigation-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #212121;
  z-index: 99;
  opacity: 0.7;
  transition: transform 0.3s ease;
  cursor: url(../images/spritesheet/custom-cursor.png), auto; }

.side-nav {
  height: 100%;
  width: 80%;
  transform: translateX(-100%);
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #ffffff;
  transition: transform 0.3s ease; }
  @media screen and (min-width: 40em) {
    .side-nav {
      width: 240px; } }
  @media screen and (min-width: 64em) {
    .side-nav {
      width: 310px; } }
  .side-nav:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #212121;
    opacity: 0.5; }
  .side-nav nav {
    background-color: #f2f2f2; }
    .side-nav nav ul li a:hover, .side-nav nav ul li a.active {
      background-color: #e6e6e6; }
  .side-nav nav nav {
    background-color: #e6e6e6; }
    .side-nav nav nav ul li a:hover, .side-nav nav nav ul li a.active {
      background-color: #e6e6e6; }
  .side-nav-panel {
    position: fixed;
    transform: translateX(-15%);
    display: block;
    height: 100%;
    top: 0;
    left: 100%;
    width: 80%;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: transform 0.3s ease; }
    @media screen and (min-width: 40em) {
      .side-nav-panel {
        width: 240px; } }
    @media screen and (min-width: 64em) {
      .side-nav-panel {
        width: 310px; } }
    .side-nav-panel.is-active {
      /* aprile 2022 */
      transform: translateX(-100%);
      opacity: 1;
      visibility: visible;
      width: 100%; }
      @media screen and (min-width: 40em) {
        .side-nav-panel.is-active {
          /* aprile 2022 */
          transform: translateX(0%);
          opacity: 1;
          visibility: visible; } }
  .side-nav-inner {
    padding: 1.125rem 0 1.125rem 0.875rem; }
    @media screen and (min-width: 40em) {
      .side-nav-inner {
        padding: 1.125rem 0 1.125rem 1.625rem; } }
    @media screen and (min-width: 80em) {
      .side-nav-inner {
        padding: 2.25rem 0 2.25rem 1.625rem; } }
  .side-nav-title {
    /* aprile 2022 */
    font-family: "Montserrat", Arial, sans-serif;
    color: #212121;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    padding: 0.125rem 1.125rem 0 0.625rem; }
    .side-nav-title.first {
      /* aprile 2022 */
      padding: 0.125rem 1.125rem 0 0.625rem; }
  .side-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 1.875rem 0 0 0; }
    .side-nav ul li {
      position: relative; }
      .side-nav ul li a {
        position: relative;
        font-family: "Montserrat", Arial, sans-serif;
        color: #212121;
        font-size: 0.75rem;
        text-transform: uppercase;
        display: block;
        padding: 0.625rem;
        transition: all 300ms ease-out; }
        .side-nav ul li a:hover, .side-nav ul li a.active {
          background-color: #f2f2f2;
          color: #c62828; }
      .side-nav ul li.has-children {
        position: relative; }
        .side-nav ul li.has-children:after {
          content: '';
          position: absolute;
          top: 50%;
          left: 90%;
          transform: translate(-50%, -50%);
          width: 0.6875rem;
          height: 0.6875rem;
          background: url(../images/spritesheet/arrow--grey.svg) no-repeat 50% 50%;
          background-size: contain; }

.offcanvas a:focus {
  color: #e6e6e6; }

#wrapper {
  transition: transform 0.3s ease; }

.slide-wrapper-nav {
  transform: translateX(80%);
  position: relative; }
  @media screen and (min-width: 40em) {
    .slide-wrapper-nav {
      transform: translateX(240px); } }
  @media screen and (min-width: 64em) {
    .slide-wrapper-nav {
      transform: translateX(310px); } }
  .slide-wrapper-nav .navigation-overlay {
    display: block; }

.slide-side-nav {
  width: -80%;
  transform: translateX(0);
  background-color: #ffffff;
  transition: transform 0.3s ease; }
  @media screen and (min-width: 40em) {
    .slide-side-nav {
      width: -240px; } }
  @media screen and (min-width: 64em) {
    .slide-side-nav {
      width: -310px; } }
  .slide-side-nav:before {
    display: none; }

@media screen and (max-height: 450px) {
  .side-nav {
    padding-top: 15px; }
    .side-nav a {
      font-size: 18px; } }

.back-to-menu {
  /* aprile 2022 */
  display: block;
  text-indent: -9999em;
  height: 35px;
  width: 100%;
  position: relative;
  overflow: hidden;
  font-size: 0; }
  .back-to-menu:before {
    /* aprile 2022 */
    content: "< Back" !important;
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
    color: #777;
    font-size: 14px;
    width: 100%;
    z-index: 999; }
  @media screen and (min-width: 495px) {
    .back-to-menu {
      /* aprile 2022 */
      display: none; } }

.product-list.carousel {
  /* aprile 2022 */ }
  .product-list.carousel .item {
    /* aprile 2022 */ }
    .product-list.carousel .item .button.button--only-text {
      /* aprile 2022 */
      display: flex;
      justify-content: flex-start !important;
      align-items: center !important; }
  .product-list.carousel .product-list__item-figure {
    /* aprile 2022 */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative; }
  .product-list.carousel .product-list__item-caption {
    /* aprile 2022 NEW! */
    position: relative;
    height: 270px;
    position: relative; }
    .product-list.carousel .product-list__item-caption .product-list__item-caption-price-container {
      /* aprile 2022 NEW!*/
      margin-top: auto; }
  .product-list.carousel .product-list__price {
    margin-bottom: 15px;
    /* aprile 2022 NEW!*/ }
    .product-list.carousel .product-list__price strong {
      /* aprile 2022 NEW!*/
      font-size: 24px; }
  .product-list.carousel .product-list__brand {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    /* aprile 2022 NEW!*/ }
  .product-list.carousel .product-list__name {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 60px;
    line-height: 1.2em;
    /* aprile 2022 NEW!*/ }
  .product-list.carousel .product-list__description {
    position: absolute;
    top: 94px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 1.0em;
    height: 26px;
    padding: 0 15px;
    /* aprile 2022 NEW!*/ }
  .product-list.carousel .product-detail__availability {
    position: absolute;
    top: 125px;
    left: 0;
    width: 100%;
    height: 15px;
    /* aprile 2022 NEW!*/ }
  .product-list.carousel .product-list__price {
    position: absolute;
    top: 137px;
    left: 0;
    width: 100%;
    height: 54px;
    /* aprile 2022 NEW!*/ }
  .product-list.carousel .product-list__item-caption-actions {
    position: absolute;
    top: 225px;
    left: 0;
    width: 100%;
    /* aprile 2022 NEW!*/ }

.product-list .item {
  position: relative;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem; }
  @media screen and (min-width: 40em) {
    .product-list .item {
      margin-top: 0.625rem;
      margin-bottom: 0.625rem; } }
  @media screen and (min-width: 64em) {
    .product-list .item {
      margin-top: 0.625rem;
      margin-bottom: 0.625rem; } }
  @media screen and (min-width: 120em) {
    .product-list .item {
      margin-top: 0.9375rem;
      margin-bottom: 0.9375rem; } }
  .product-list .item .button--only-text {
    display: flex;
    justify-content: center;
    background: #c62828;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin-bottom: 0;
    height: 2.75rem; }
  .product-list .item .product-list__item-caption-actions .button--only-text.button {
    position: relative;
    padding-left: 14px !important;
    padding-right: 40px !important;
    font-size: 11px; }
    .product-list .item .product-list__item-caption-actions .button--only-text.button:after {
      content: '';
      display: block;
      width: 22px;
      height: 22px;
      background: url(../images/spritesheet/cart-add--white.svg) no-repeat 50% 50%;
      background-size: cover;
      position: absolute;
      top: 50%;
      right: 14px;
      transform: translateY(-50%); }
    .product-list .item .product-list__item-caption-actions .button--only-text.button:hover, .product-list .item .product-list__item-caption-actions .button--only-text.button:focus {
      background-color: #a82222; }
  .product-list .item .block {
    display: block;
    outline: none;
    float: left;
    text-align: center;
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    background-color: #ffffff;
    border: 6px solid transparent; }
    .product-list .item .block img {
      transition: all 300ms ease-out; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .product-list .item .block {
        padding: 0.625rem 0.625rem 0.625rem 0.625rem; } }
    .product-list .item .block:hover {
      border: 6px solid #e7e7e7; }
      .product-list .item .block:hover:before {
        top: 96%;
        opacity: 1; }
      .product-list .item .block:hover:after {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
      .product-list .item .block:hover img {
        transform: scale(0.95); }

.product-list__image {
  overflow: hidden;
  display: block;
  border-radius: 3px 3px 0 0;
  position: relative;
  overflow: hidden; }
  .product-list__image:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%; }
  .product-list__image > img {
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%; }

.product-list__brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(33, 33, 33, 0.5);
  margin-bottom: 0.3125rem;
  text-transform: uppercase; }

.product-list__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.3125rem; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .product-list__name {
      font-size: 0.75rem; } }

.product-list__description {
  font-size: 0.8125rem;
  letter-spacing: 0;
  color: #999999; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .product-list__description {
      font-size: 0.6875rem; } }
  .product-list__description--long {
    display: none; }

.product-list__price {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  margin-top: 1.25rem; }
  .product-list__price strong {
    display: block;
    color: #212121;
    font-weight: 700;
    font-size: 1.875rem; }
    .product-list__price strong .currency {
      font-style: normal;
      font-size: 1.25rem; }
    .product-list__price strong .decimal {
      font-style: normal;
      font-size: 0.875rem; }
  .product-list__price mark {
    color: #c62828;
    font-size: 1.125rem;
    margin: 0 10px 0 0;
    background: transparent; }
  .product-list__price del {
    color: #999999;
    font-size: 0.75rem;
    font-weight: 700; }

.product-list__flag {
  position: absolute;
  display: block;
  top: 0.625rem;
  right: 0.625rem;
  z-index: 2; }
  .product-list__flag .new,
  .product-list__flag .promo {
    display: block;
    color: #ffffff;
    width: 3.75rem;
    padding: 0.3125rem;
    text-align: center;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px; }
  .product-list__flag .new {
    background: #0868a0; }
  .product-list__flag .promo {
    background: #008623;
    margin-top: 0.1875rem; }

.product-list__close {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 2.1875rem;
  height: 2.1875rem;
  background-image: url("../images/spritesheet/close--gray.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 12px 12px;
  transition: all 300ms ease-out;
  z-index: 10;
  display: block; }
  .product-list__close:hover {
    opacity: 0.5; }
  .product-list__close span {
    display: block;
    width: 2.1875rem;
    height: 2.1875rem;
    border: 1px solid transparent; }

.product-list--nomargin .item {
  margin-bottom: 0; }

.product-list.product-list--grid > .item {
  width: 100%;
  float: left; }
  .product-list.product-list--grid > .item:nth-of-type(1n) {
    clear: none; }
  .product-list.product-list--grid > .item:nth-of-type(1n+1) {
    clear: both; }
  .product-list.product-list--grid > .item:last-child {
    float: left; }

.product-list.product-list--grid .item {
  padding-left: 0;
  padding-right: 0; }

@media screen and (min-width: 40em) {
  .product-list.product-list--grid > .item {
    width: 50%;
    float: left; }
    .product-list.product-list--grid > .item:nth-of-type(1n) {
      clear: none; }
    .product-list.product-list--grid > .item:nth-of-type(2n+1) {
      clear: both; }
    .product-list.product-list--grid > .item:last-child {
      float: left; }
  .product-list.product-list--grid .item {
    padding-left: 0.625rem;
    padding-right: 0.625rem; } }

@media screen and (min-width: 64em) {
  .product-list.product-list--grid > .item {
    width: 33.33333%;
    float: left; }
    .product-list.product-list--grid > .item:nth-of-type(1n) {
      clear: none; }
    .product-list.product-list--grid > .item:nth-of-type(3n+1) {
      clear: both; }
    .product-list.product-list--grid > .item:last-child {
      float: left; }
  .product-list.product-list--grid .item {
    padding-left: 0.625rem;
    padding-right: 0.625rem; } }

@media screen and (min-width: 120em) {
  .product-list.product-list--grid > .item {
    width: 20%;
    float: left; }
    .product-list.product-list--grid > .item:nth-of-type(1n) {
      clear: none; }
    .product-list.product-list--grid > .item:nth-of-type(5n+1) {
      clear: both; }
    .product-list.product-list--grid > .item:last-child {
      float: left; }
  .product-list.product-list--grid .item {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; } }

.product-list.product-list--grid .product-list__price {
  margin-top: 5px; }

.product-list.product-list--grid .product-detail__availability,
.product-list.product-list--grid .product-list__description {
  margin-bottom: 5px; }

.product-list.product-list--grid .product-list__price {
  text-align: center; }
  @media screen and (min-width: 64em) {
    .product-list.product-list--grid .product-list__price {
      width: auto;
      margin-top: 0rem;
      line-height: 2em; }
      .product-list.product-list--grid .product-list__price strong {
        font-size: 24px; } }

.product-list.product-list--grid .product-list__item-caption-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%; }
  @media screen and (min-width: 64em) {
    .product-list.product-list--grid .product-list__item-caption-actions {
      position: absolute;
      left: 0;
      bottom: 10px; } }
  .product-list.product-list--grid .product-list__item-caption-actions .button {
    padding: 8px 50px 6px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    clear: both;
    width: 100%;
    margin-bottom: 0;
    margin-left: 10px;
    width: auto; }
    @media screen and (min-width: 40em) {
      .product-list.product-list--grid .product-list__item-caption-actions .button {
        padding: 8px 16px 6px; } }
    .product-list.product-list--grid .product-list__item-caption-actions .button .cart-add {
      display: inline-block;
      width: 22px;
      height: 22px;
      position: relative; }
      .product-list.product-list--grid .product-list__item-caption-actions .button .cart-add:after {
        content: '';
        display: block;
        width: inherit;
        height: inherit;
        background: url(../images/spritesheet/cart-add--white.svg) no-repeat 50% 50%;
        background-size: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .product-list.product-list--grid .product-list__item-caption-actions .button.button--only-text {
      width: 100%;
      font-size: 12px;
      margin: 0 0px;
      font-size: 14px;
      justify-content: flex-start; }
      @media screen and (min-width: 64em) {
        .product-list.product-list--grid .product-list__item-caption-actions .button.button--only-text {
          font-size: 11px;
          margin: 0 15px; } }
      .product-list.product-list--grid .product-list__item-caption-actions .button.button--only-text:hover, .product-list.product-list--grid .product-list__item-caption-actions .button.button--only-text:focus {
        background-color: #a82222; }
      .product-list.product-list--grid .product-list__item-caption-actions .button.button--only-text:after {
        content: '';
        display: block;
        width: 24px;
        height: 24px; }

@media screen and (min-width: 64em) {
  .product-list.product-list--grid .block {
    padding-bottom: 70px !important; } }

.product-list.product-list--rows {
  margin-bottom: 0; }
  .product-list.product-list--rows .item .product-list__item-caption {
    text-align: center;
    margin-top: 10px; }
    @media screen and (min-width: 64em) {
      .product-list.product-list--rows .item .product-list__item-caption {
        text-align: left; } }
  .product-list.product-list--rows .item {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    margin: 0.75rem 0;
    padding-bottom: 0;
    float: left; }
    .product-list.product-list--rows .item figcaption {
      text-align: left;
      padding: 0; }
      @media screen and (min-width: 64em) {
        .product-list.product-list--rows .item figcaption {
          width: 75%;
          float: left;
          padding-left: 1.25rem;
          padding-right: 1.25rem; }
          .product-list.product-list--rows .item figcaption:last-child:not(:first-child) {
            float: right; } }
      @media screen and (min-width: 120em) {
        .product-list.product-list--rows .item figcaption {
          width: 83.33333%;
          float: left;
          padding-left: 1.25rem;
          padding-right: 1.25rem; }
          .product-list.product-list--rows .item figcaption:last-child:not(:first-child) {
            float: right; } }
    .product-list.product-list--rows .item figure {
      float: left !important;
      width: inherit; }
    .product-list.product-list--rows .item a.block {
      display: block;
      float: left;
      width: inherit;
      padding: 0.9375rem; }
      .product-list.product-list--rows .item a.block:before {
        opacity: 1;
        width: auto;
        height: auto;
        top: auto;
        left: auto;
        bottom: 0.625rem;
        right: 0.625rem;
        transform: translate(0%, 0%);
        padding: 0.5rem 1.875rem;
        z-index: 2; }
        @media screen and (min-width: 120em) {
          .product-list.product-list--rows .item a.block:before {
            padding: 0.9375rem 2.8125rem; } }
      .product-list.product-list--rows .item a.block:hover:before {
        background-color: #9c1f1f; }
  .product-list.product-list--rows .product-list__flag .new {
    font-size: 0.6875rem; }
  .product-list.product-list--rows .product-list__brand {
    font-size: 0.8125rem; }
  @media screen and (min-width: 120em) {
    .product-list.product-list--rows .product-list__name {
      font-size: 1.125rem; } }
  .product-list.product-list--rows .product-list__description {
    font-size: 0.875rem; }
    @media screen and (min-width: 64em) {
      .product-list.product-list--rows .product-list__description {
        width: 70%; }
        .product-list.product-list--rows .product-list__description--long {
          display: block;
          width: 70%; } }
    @media screen and (min-width: 64em) and (min-width: 120em) {
      .product-list.product-list--rows .product-list__description--long {
        font-size: 1rem; } }
  @media screen and (min-width: 64em) {
    .product-list.product-list--rows .product-list__image {
      width: 25%;
      float: left;
      padding-left: 1.25rem;
      padding-right: 1.25rem; }
      .product-list.product-list--rows .product-list__image:last-child:not(:first-child) {
        float: right; } }
  @media screen and (min-width: 120em) {
    .product-list.product-list--rows .product-list__image {
      width: 16.66667%;
      float: left;
      padding-left: 1.25rem;
      padding-right: 1.25rem; }
      .product-list.product-list--rows .product-list__image:last-child:not(:first-child) {
        float: right; } }
  @media screen and (max-width: 1279px) and (min-width: 1024px) {
    .product-list.product-list--rows .block {
      padding-bottom: 70px !important; } }
  .product-list.product-list--rows .product-list__price {
    text-align: center; }
    @media screen and (min-width: 64em) {
      .product-list.product-list--rows .product-list__price {
        text-align: left;
        position: absolute;
        left: 18.8%;
        bottom: 20px;
        width: auto;
        margin-top: 0rem;
        line-height: 2em; } }
    @media screen and (max-width: 1600px) and (min-width: 1024px) {
      .product-list.product-list--rows .product-list__price {
        left: 28.2%; }
        .product-list.product-list--rows .product-list__price strong {
          font-size: 24px; } }
  .product-list.product-list--rows .product-list__item-caption-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px; }
    @media screen and (min-width: 64em) {
      .product-list.product-list--rows .product-list__item-caption-actions {
        margin-top: 0px;
        justify-content: flex-end;
        position: absolute;
        right: 30px;
        bottom: 30px; } }
    .product-list.product-list--rows .product-list__item-caption-actions .button {
      padding: 8px 50px 6px;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      clear: both;
      width: 100%;
      margin-bottom: 0;
      margin-left: 10px;
      width: auto; }
      .product-list.product-list--rows .product-list__item-caption-actions .button .cart-add {
        display: inline-block;
        width: 22px;
        height: 22px;
        position: relative; }
        .product-list.product-list--rows .product-list__item-caption-actions .button .cart-add:after {
          content: '';
          display: block;
          width: inherit;
          height: inherit;
          background: url(../images/spritesheet/cart-add--white.svg) no-repeat 50% 50%;
          background-size: cover;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%); }
      .product-list.product-list--rows .product-list__item-caption-actions .button.button--only-text {
        margin: 0;
        padding: 8px 25px 6px;
        width: 100%;
        justify-content: flex-start !important;
        font-size: 14px; }
        @media screen and (min-width: 64em) {
          .product-list.product-list--rows .product-list__item-caption-actions .button.button--only-text {
            width: auto;
            font-size: 11px; } }

.news-list__item {
  position: relative;
  display: block;
  outline: none;
  padding: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
  background-color: #ffffff;
  transition: all 300ms ease-out; }
  @media screen and (min-width: 40em) {
    .news-list__item {
      margin-top: 1.25rem; } }
  .news-list__item:hover {
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3); }
    .news-list__item:hover .news-list__link {
      color: #c62828; }

.news-list__image {
  overflow: hidden;
  display: block;
  border-radius: 3px 3px 0 0;
  position: relative;
  display: inline-block;
  max-height: 16.25rem;
  width: 50%;
  margin-right: 2.5rem; }
  @media screen and (min-width: 120em) {
    .news-list__image {
      width: 100%;
      margin: 0; } }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .news-list__image {
      width: 100%;
      margin: 0; } }
  .news-list__image img {
    width: 100%; }

.news-list__description {
  display: inline-block;
  width: 42%;
  vertical-align: top; }
  @media screen and (min-width: 120em) {
    .news-list__description {
      float: none;
      width: 100%; } }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .news-list__description {
      float: none;
      width: 100%; } }

.news-list__category {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(33, 33, 33, 0.5);
  margin: 0.5rem 0;
  text-transform: uppercase; }

.news-list__title {
  font-size: 1rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 0.3125rem; }

.news-list__text {
  font-size: 0.875rem;
  letter-spacing: 0;
  margin-bottom: 0.3125rem; }

.news-list__link {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #212121;
  color: #c62828;
  margin-top: 0.3125rem;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-right: 1.125rem; }
  .news-list__link em {
    font-style: normal;
    border-bottom: 1px solid transparent; }
  .news-list__link:after {
    content: '';
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    background: url(../images/spritesheet/right-arrow-forward--red.svg) no-repeat 50% 50%;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -0.4375rem; }
  .news-list__link:hover em {
    border-bottom: 1px solid #c62828; }

.news-list__data {
  position: relative;
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.6875rem;
  color: #666666;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  padding-top: 0;
  margin-top: 0.5rem; }
  .news-list__data:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: rgba(102, 102, 102, 0.5); }

.news-list__flag {
  position: absolute;
  display: block;
  top: 1.25rem;
  left: 1.25rem;
  background: #c62828;
  z-index: 10;
  color: #ffffff;
  padding: 0.125rem 0.375rem;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px; }

.support-bar {
  background-color: #545454; }
  .support-bar__button {
    position: relative;
    display: block;
    text-align: center;
    background-color: #2a2a2a;
    padding: 0 1.25rem; }
    @media screen and (min-width: 64em) {
      .support-bar__button {
        padding: 0 2.5rem; } }
    .support-bar__button a {
      position: relative;
      display: inline-block;
      font-family: "Montserrat", Arial, sans-serif;
      font-weight: 400;
      font-size: 0.875rem;
      color: #ffffff;
      text-transform: uppercase;
      width: auto;
      padding: 1.25rem 5rem 1.25rem 2.5rem;
      text-align: left;
      transition: all 300ms ease-out; }
      @media screen and (min-width: 80em) {
        .support-bar__button a {
          position: relative;
          top: 50%;
          transform: translateY(-50%);
          padding: 0.75rem 2.5rem;
          width: 100%; } }
      @media screen and (min-width: 120em) {
        .support-bar__button a {
          margin-right: 0; } }
      .support-bar__button a:after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 2.5rem;
        display: block;
        width: 1.5rem;
        height: 1.125rem;
        background-image: url(../images/spritesheet/ico-envelope-negative.svg);
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
        transition: all 300ms ease-out; }
      @media screen and (min-width: 80em) {
        .support-bar__button a:hover {
          color: rgba(255, 255, 255, 0.5); }
          .support-bar__button a:hover:after {
            opacity: 0.5; } }
      .support-bar__button a.active {
        color: rgba(255, 255, 255, 0.5); }
        .support-bar__button a.active:after {
          opacity: 0.5; }
    .support-bar__button.active a {
      color: rgba(255, 255, 255, 0.5); }
      .support-bar__button.active a:after {
        opacity: 0.5; }
  .support-bar__list {
    position: relative;
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 1.25rem 2.5rem;
    width: 100%;
    text-align: center; }
    @media screen and (min-width: 80em) {
      .support-bar__list {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        text-align: left; } }
    .support-bar__list li {
      display: block;
      font-family: "Montserrat", Arial, sans-serif;
      font-weight: 400;
      font-size: 0.875rem;
      color: #ffffff;
      text-transform: uppercase;
      padding-top: 0.3125rem;
      padding-bottom: 0.3125rem; }
      @media screen and (min-width: 40em) {
        .support-bar__list li {
          display: inline-block;
          padding-top: 0;
          padding-bottom: 0; } }
      .support-bar__list li:first-child {
        padding-top: 0; }
        @media screen and (min-width: 40em) {
          .support-bar__list li:first-child {
            padding-right: 0.9375rem;
            width: 100%; } }
        @media screen and (min-width: 80em) {
          .support-bar__list li:first-child {
            padding-right: 0.9375rem; } }
        @media screen and (min-width: 120em) {
          .support-bar__list li:first-child {
            width: auto;
            padding-right: 1.875rem; } }
      .support-bar__list li a {
        display: block;
        font-family: "Roboto", Arial, sans-serif;
        font-weight: 300;
        font-size: 0.875rem;
        color: white;
        letter-spacing: none;
        text-transform: none;
        transition: all 300ms ease-out; }
        @media screen and (min-width: 40em) {
          .support-bar__list li a {
            padding-left: 0.9375rem;
            padding-right: 0.9375rem; } }
        @media screen and (min-width: 80em) {
          .support-bar__list li a {
            padding-left: 0.9375rem;
            padding-right: 0.9375rem; }
            .support-bar__list li a:first-child {
              padding-left: 0; } }
        @media screen and (min-width: 120em) {
          .support-bar__list li a {
            padding-left: 1.875rem;
            padding-right: 1.875rem; } }
        .support-bar__list li a:hover {
          color: rgba(255, 255, 255, 0.5); }

.register-bar {
  position: relative;
  background-color: #c62828;
  text-align: center; }
  @media screen and (min-width: 80em) {
    .register-bar {
      text-align: left; } }
  .register-bar__inner {
    padding: 0 1.25rem; }
    @media screen and (min-width: 64em) {
      .register-bar__inner {
        padding: 0 2.5rem; } }
  .register-bar__title {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0; }
    @media screen and (min-width: 80em) {
      .register-bar__title {
        font-size: 1.875rem;
        display: inline-block;
        margin: 0 2.5rem 0 0;
        position: relative;
        top: 50%;
        transform: translateY(-50%); } }
  .register-bar__social-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #ffffff;
    text-transform: uppercase; }
  .register-bar .button {
    margin: 1.25rem 0 1.875rem 0;
    text-align: center; }
    @media screen and (min-width: 80em) {
      .register-bar .button {
        margin: 0;
        position: relative;
        top: 50%;
        transform: translateY(-50%); } }
    .register-bar .button:hover {
      color: #c62828 !important; }

.filters {
  display: block;
  margin-bottom: 1.25rem; }
  @media screen and (min-width: 80em) {
    .filters {
      width: 90%;
      margin-bottom: 0; } }
  .filters .accordion {
    background: transparent;
    margin-bottom: 0;
    border: 0; }
    .filters .accordion .accordion-item {
      border-top: 1px solid #bababa; }
    .filters .accordion .accordion-title {
      font-family: "Montserrat", Arial, sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      color: #212121;
      text-transform: uppercase;
      padding: 1.25rem 0 1.25rem 0;
      border: 0; }
      .filters .accordion .accordion-title:before, .filters .accordion .accordion-title:after {
        font-size: 1.5rem;
        margin-top: -0.75rem;
        right: 0;
        font-weight: 400; }
      .filters .accordion .accordion-title:hover, .filters .accordion .accordion-title:focus {
        background-color: transparent; }
    .filters .accordion .accordion-content {
      background: transparent;
      padding: 0 0 1.5625rem 0; }
  .filters .category-list {
    list-style-type: none;
    margin: 0; }
    .filters .category-list li {
      display: block;
      padding: 0.5rem 0; }
      .filters .category-list li:first-child {
        padding-top: 0; }
      .filters .category-list li a {
        display: block;
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 0.6875rem;
        color: #212121;
        font-weight: 400;
        line-height: 1.4em; }
        @media screen and (min-width: 80em) {
          .filters .category-list li a {
            font-size: 0.875rem; } }
        .filters .category-list li a:hover, .filters .category-list li a.active {
          color: #c62828; }
        .filters .category-list li a.active {
          font-weight: 700; }
  .filters input[type="text"],
  .filters input[type="password"],
  .filters input[type="date"],
  .filters input[type="datetime"],
  .filters input[type="datetime-local"],
  .filters input[type="month"],
  .filters input[type="week"],
  .filters input[type="email"],
  .filters input[type="number"],
  .filters input[type="search"],
  .filters input[type="tel"],
  .filters input[type="time"],
  .filters input[type="url"],
  .filters input[type="color"],
  .filters textarea,
  .filters select {
    margin: 0; }
  .filters .checkbox-list {
    list-style-type: none;
    margin: 0; }
  .filters li {
    position: relative; }
  .filters li input {
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0; }
    .filters li input + label {
      font-family: "Montserrat", Arial, sans-serif;
      font-size: 0.6875rem;
      color: #212121;
      text-transform: lowercase;
      padding-left: 0.9375rem;
      font-weight: 400; }
      @media screen and (min-width: 80em) {
        .filters li input + label {
          font-size: 0.875rem; } }
    .filters li input + label:after {
      content: '';
      width: 0.75rem;
      height: 0.75rem;
      margin: 0.0625rem 0 0 0;
      border: 2px solid #cccccc;
      border-radius: 0;
      background-color: #ffffff;
      display: block;
      position: absolute;
      top: 0;
      left: 0; }
      @media screen and (min-width: 80em) {
        .filters li input + label:after {
          margin: 0.1875rem 0.625rem 0 0; } }
    .filters li input:checked + label:after {
      border: 2px solid #c62828;
      background-color: #c62828; }
    .filters li input:checked + label {
      font-weight: 700; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .filters .form--filters {
      display: none;
      background: #d9d9d9;
      padding: 0 1.25rem; } }
  .filters .form--filters-bottom {
    padding: 0.9375rem 0 0 0; }
    @media screen and (min-width: 0em) and (max-width: 39.9375em) {
      .filters .form--filters-bottom {
        padding: 0.9375rem 1.25rem 0 1.25rem; } }
    .filters .form--filters-bottom .button--reset {
      padding: 0 0 0 1.5625rem; }
  .filters .button--reset {
    position: relative;
    display: block;
    padding: 1.25rem 0 1.25rem 1.5625rem;
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: #999999;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 300ms ease-out; }
    .filters .button--reset:after {
      content: '';
      display: block;
      width: 0.75rem;
      height: 0.75rem;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background: url(../images/spritesheet/close--gray.svg) no-repeat 50% 50%;
      background-size: contain;
      opacity: 0.5;
      transition: all 300ms ease-out; }
    .filters .button--reset:hover {
      color: #c62828; }
      .filters .button--reset:hover:after {
        background: url(../images/spritesheet/close--red.svg) no-repeat 50% 50%;
        background-size: contain;
        opacity: 1; }
  .filters .filter--button {
    margin: 1.25rem 0 0 0;
    position: relative;
    display: inline-block;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.75rem 0.9375rem;
    transition: all 300ms ease-out; }
    .filters .filter--button:after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 1.25rem;
      display: block;
      width: 0.6875rem;
      height: 0.6875rem;
      background-image: url(../images/spritesheet/arrow-down-negative.svg);
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat; }
    .filters .filter--button.active {
      background-color: silver;
      color: #666666; }
      .filters .filter--button.active:after {
        background-image: url(../images/spritesheet/arrow-up.svg); }

@media screen and (min-width: 64em) {
  .product-detail {
    border-bottom: 0.0625rem solid #ccc;
    padding-bottom: 3.75rem; } }

.product-detail .inner {
  position: relative;
  padding: 0.9375rem !important; }
  @media screen and (min-width: 64em) {
    .product-detail .inner {
      padding: 2.5rem !important; } }
  .product-detail .inner-last {
    padding: 0 !important; }
    @media screen and (min-width: 64em) {
      .product-detail .inner-last {
        padding: 1.875rem !important;
        background: #f2f2f2; } }

@media screen and (min-width: 64em) {
  .product-detail-description {
    margin-bottom: 3.125rem; }
    .product-detail-description .product-detail__subtitle {
      text-align: left; }
    .product-detail-description .product-detail__iframe {
      width: 100%;
      border: none; }
    .product-detail-description table {
      font-size: 0.75rem;
      font-family: "Montserrat", Arial, sans-serif;
      margin: 1.25rem 0; }
      .product-detail-description table tbody {
        border: 0; } }
    @media screen and (min-width: 64em) and (min-width: 64em) {
      .product-detail-description table tr:nth-child(even) {
        background: transparent; } }

@media screen and (min-width: 64em) {
      .product-detail-description table td {
        padding: 0.3125rem 0; } }
      @media screen and (min-width: 64em) and (min-width: 64em) {
        .product-detail-description table td:first-child {
          width: 35%;
          text-transform: uppercase; }
        .product-detail-description table td:last-child {
          color: #212121;
          font-weight: 500; } }

.product-detail-description [data-readmore-toggle] {
  text-align: center; }
  @media screen and (min-width: 64em) {
    .product-detail-description [data-readmore-toggle] {
      text-align: left; } }

.product-detail-description .readmore {
  position: relative;
  display: inline-block; }
  .product-detail-description .readmore p {
    line-height: 1.6em;
    text-align: justify; }
    @media screen and (min-width: 64em) {
      .product-detail-description .readmore p {
        text-align: left; } }
  .product-detail-description .readmore:before {
    content: '';
    height: 40px;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    display: block; }
  .product-detail-description .readmore[aria-expanded="true"]:before {
    display: none; }

.product-detail .label {
  text-align: center; }
  @media screen and (min-width: 64em) {
    .product-detail .label {
      text-align: left;
      padding-left: 0; } }

.product-detail__title {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3em;
  font-weight: 600;
  color: #212121; }
  @media screen and (min-width: 64em) {
    .product-detail__title {
      text-align: left;
      font-size: 1.875rem; } }

.product-detail__code {
  font-size: 0.875rem;
  color: #212121;
  text-align: center; }
  @media screen and (min-width: 64em) {
    .product-detail__code {
      text-align: left;
      font-size: 1rem; } }

.product-detail__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.9375rem;
  text-transform: uppercase;
  color: #212121;
  text-align: center; }
  @media screen and (min-width: 64em) {
    .product-detail__subtitle {
      margin-top: 0;
      font-size: 0.875rem; } }

.product-detail__versions {
  display: block; }
  .product-detail__versions select {
    background-image: url(../images/spritesheet/arrow-down--dark.svg);
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    margin-top: 0.9375rem;
    margin-bottom: 0.3125rem;
    padding: 0.5rem 0 0.5rem 0.9375rem !important;
    transition: none;
    color: rgba(102, 102, 102, 0.7) !important;
    outline: none;
    max-width: 90%;
    font-weight: 400;
    display: inline-block; }
    @media screen and (min-width: 64em) {
      .product-detail__versions select {
        max-width: 70%;
        margin-top: 0;
        margin-bottom: 1.25rem; } }
    @media screen and (min-width: 80em) {
      .product-detail__versions select {
        max-width: 90%;
        margin-bottom: 1.875rem; } }
    @media screen and (min-width: 120em) {
      .product-detail__versions select {
        max-width: 80%; } }
    .product-detail__versions select option {
      color: #212121; }
    .product-detail__versions select.select-outline {
      background: rgba(255, 255, 255, 0.9);
      border: 0.0625rem solid #d9d9d9;
      background-image: url(../images/spritesheet/arrow-down--dark.svg);
      background-size: 18px 18px;
      background-repeat: no-repeat;
      background-position: calc(100% - 10px) center;
      font-weight: 400;
      font-size: 0.75rem;
      border-radius: 3px; }
    .inline-label .product-detail__versions select {
      display: inline-block;
      width: 70%;
      margin-left: 0.625rem; }

.product-detail__availability {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin: 0.3125rem 0 0.9375rem;
  list-style: none; }
  .product-detail__availability .icon {
    position: relative;
    padding-left: 1.25rem;
    display: inline-block;
    margin-right: 0.9375rem; }
    .product-detail__availability .icon:before {
      content: '';
      display: block;
      width: 0.9375rem;
      height: 0.9375rem;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-55%); }
    .product-detail__availability .icon:last-child {
      margin-right: 0; }
  .product-detail__availability .available {
    color: #00C853; }
    .product-detail__availability .available:before {
      background: url(../images/spritesheet/availability--yes.svg) no-repeat 50% 50%;
      background-size: contain; }
  .product-detail__availability .low {
    color: #FF9800; }
    .product-detail__availability .low:before {
      background: url(../images/spritesheet/availability--low.svg) no-repeat 50% 50%;
      background-size: contain; }
  .product-detail__availability .unavailable {
    color: #a6a6a6; }
    .product-detail__availability .unavailable:before {
      background: url(../images/spritesheet/availability--no.svg) no-repeat 50% 50%;
      background-size: contain;
      opacity: 0.25; }
  .product-detail__availability .shipping {
    color: #00C853; }
    .product-detail__availability .shipping:before {
      background: url(../images/spritesheet/truck.svg) no-repeat 50% 50%;
      background-size: contain; }

.product-detail__quantity {
  padding-top: 0;
  display: inline-block; }
  .product-detail__quantity > span {
    display: inline-block; }
  .product-detail__quantity input {
    margin: 0 !important;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    float: left;
    border-color: #ccc;
    background: #ffffff;
    border-left-color: #ffffff;
    border-right-color: #ffffff;
    color: #212121;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600; }
    @media screen and (min-width: 120em) {
      .product-detail__quantity input {
        width: 3.75rem; } }
  .product-detail__quantity .qtyminus,
  .product-detail__quantity .qtyplus {
    background: #e5e5e5;
    border: 0;
    display: inline-block;
    outline: none;
    font-size: 1.5rem;
    transition: all 300ms ease-out;
    float: left;
    width: 2.5rem;
    line-height: 2.5rem;
    font-weight: 400;
    color: rgba(33, 33, 33, 0.7);
    font-family: "Roboto", Arial, sans-serif;
    font-family: "Montserrat", Arial, sans-serif;
    border: 1px solid #ccc; }
    .product-detail__quantity .qtyminus:hover,
    .product-detail__quantity .qtyplus:hover {
      background: silver;
      color: #ffffff; }

.product-detail__price {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem; }
  @media screen and (min-width: 64em) {
    .product-detail__price {
      margin-top: 1.875rem;
      margin-bottom: 1.875rem; } }
  .product-detail__price strong {
    display: block;
    color: #212121;
    font-weight: 700;
    font-size: 2.8125rem;
    line-height: 2rem; }
    @media screen and (min-width: 64em) {
      .product-detail__price strong {
        font-size: 3.125rem;
        line-height: 2.8125rem; } }
    .product-detail__price strong .currency {
      font-style: normal;
      font-size: 1.875rem; }
      @media screen and (min-width: 64em) {
        .product-detail__price strong .currency {
          font-size: 2.75rem; } }
    .product-detail__price strong .decimal {
      font-style: normal;
      font-size: 1.875rem; }
      @media screen and (min-width: 64em) {
        .product-detail__price strong .decimal {
          font-size: 2.25rem; } }
  .product-detail__price mark {
    color: #c62828;
    font-size: 1.125rem;
    margin: 0 10px 0 0;
    background: transparent; }
  .product-detail__price del {
    color: #999999;
    font-size: 0.875rem;
    font-weight: 700; }
  .product-detail__price .iva {
    font-size: 0.75rem;
    color: #666666; }
    @media screen and (min-width: 64em) {
      .product-detail__price .iva {
        font-size: 0.875rem; } }

.product-detail .button--text {
  font-weight: 400;
  color: #212121;
  border-bottom: 1px solid #212121;
  letter-spacing: 0; }
  .product-detail .button--text:focus, .product-detail .button--text:hover {
    color: #c62828;
    border-bottom: 1px solid #c62828;
    background: transparent; }

.product-detail__tools {
  margin: 1.875rem 0 0 0;
  padding: 0.9375rem;
  background: #e7e7e7;
  list-style: none;
  float: left;
  width: 100%;
  text-align: center; }
  .product-detail__tools.wishlist {
    margin-top: 0 !important; }
    .product-detail__tools.wishlist li {
      border: 0px; }
    .product-detail__tools.wishlist li span {
      font-size: 9px;
      line-height: 1.1em;
      padding-top: 1.5625rem;
      color: #777; }
  .product-detail__tools li {
    display: block;
    width: 33.33%;
    float: left;
    transition: all 300ms ease-out;
    position: relative;
    z-index: 1;
    border-right: 0.0625rem solid #bababa; }
    .product-detail__tools li a {
      transition: all 300ms ease-out; }
      .product-detail__tools li a span {
        transition: all 300ms ease-out; }
    .product-detail__tools li:last-child {
      border-right: 0px; }
      .product-detail__tools li:last-child a {
        border-right: 0px; }
    .product-detail__tools li a:hover span {
      color: #c62828; }
  .product-detail__tools .icon {
    display: block; }
    .product-detail__tools .icon > span {
      position: relative;
      text-align: center;
      display: inline-block;
      padding-top: 1.375rem;
      text-transform: uppercase;
      font-family: "Montserrat", Arial, sans-serif;
      color: #212121;
      font-size: 0.6875rem; }
      .product-detail__tools .icon > span:before {
        content: '';
        display: block;
        width: 1.125rem;
        height: 1.125rem;
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -0.5625rem; }
    .product-detail__tools .icon.remove span:before {
      background: url(../images/spritesheet/bin.svg) no-repeat 50% 50%;
      background-size: contain; }
    .product-detail__tools .icon.wishlist span:before {
      background: url(../images/spritesheet/ico-heart.svg) no-repeat 50% 50%;
      background-size: contain; }
    .product-detail__tools .icon.wishlist.active span:before {
      background: url(../images/spritesheet/ico-heart--red.svg) no-repeat 50% 50%;
      background-size: contain; }
    .product-detail__tools .icon.info span:before {
      background: url(../images/spritesheet/ico-envelope.svg) no-repeat 50% 50%;
      background-size: contain; }
    .product-detail__tools .icon.share span:before {
      background: url(../images/spritesheet/ico-share.svg) no-repeat 50% 50%;
      background-size: contain; }
    .product-detail__tools .icon.share.active span:before {
      background: url(../images/spritesheet/close--gray.svg) no-repeat 50% 50%;
      background-size: 12px 12px; }
  .product-detail__tools .dropdown-share {
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    width: 5.625rem;
    margin: 0;
    padding: 0.9375rem;
    margin-left: -2.8125rem;
    background: #ffffff;
    box-shadow: 0px 5px 10px -6px rgba(50, 50, 50, 0.55);
    border: 1px solid #e1e1e1;
    opacity: 0; }
    .product-detail__tools .dropdown-share:before {
      content: '';
      display: block;
      height: 0;
      width: 0;
      border-bottom: 10px solid #ffffff;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      position: absolute;
      top: -0.625rem;
      left: 50%;
      margin-left: -0.625rem; }
    .product-detail__tools .dropdown-share li {
      display: block;
      width: 100%;
      border: 0;
      margin: 0.1875rem 0 0.1875rem;
      padding: 0;
      text-align: center; }
      .product-detail__tools .dropdown-share li:last-child {
        margin: 0; }
      .product-detail__tools .dropdown-share li a {
        display: inline-block;
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        font-size: 0px;
        position: relative;
        width: 2rem;
        height: 2rem; }
        .product-detail__tools .dropdown-share li a:before {
          content: '';
          display: block;
          width: 2rem;
          height: 2rem;
          position: absolute;
          top: 0;
          left: 0;
          opacity: 1; }
        .product-detail__tools .dropdown-share li a.shareon-facebook:before {
          background: url(../images/spritesheet/social--facebook.svg) no-repeat 50% 50%;
          background-size: contain; }
        .product-detail__tools .dropdown-share li a.shareon-twitter:before {
          background: url(../images/spritesheet/social--twitter.svg) no-repeat 50% 50%;
          background-size: contain; }
        .product-detail__tools .dropdown-share li a.shareon-google:before {
          background: url(../images/spritesheet/social--google.svg) no-repeat 50% 50%;
          background-size: contain; }
        .product-detail__tools .dropdown-share li a.shareon-linkedin:before {
          background: url(../images/spritesheet/social--linkedin.svg) no-repeat 50% 50%;
          background-size: contain; }
        .product-detail__tools .dropdown-share li a.shareon-email:before {
          background: url(../images/spritesheet/email.svg) no-repeat 50% 50%;
          background-size: contain; }
        .product-detail__tools .dropdown-share li a:hover:before {
          opacity: 0.7; }
    .product-detail__tools .dropdown-share.active {
      display: block;
      animation-name: slide-down-c;
      animation-duration: 300ms;
      animation-iteration-count: 1;
      animation-timing-function: ease-in-out;
      opacity: 1; }

@-webkit-keyframes slide-down-c {
  from {
    top: 2.5rem;
    opacity: 0; }
  to {
    top: 3.125rem;
    opacity: 1.00; } }

@keyframes slide-down-c {
  from {
    top: 2.5rem;
    opacity: 0; }
  to {
    top: 3.125rem;
    opacity: 1.00; } }

/* PAGES
Questa cartella è un'altra categoria di componenti e contiene stili
specifici per componenti presenti solo in determinate pagine. Il nome del file e
della classe del componente (che devono essere uguali) sono preceduti dal nome
dell'unica pagina in cui sono presenti. Anche in questo caso la scelta di
inserire un modulo all'interno di pages piuttosto che di components o section è
puramente organizzativa. L'utilizzo di questa sezione dovrebbe essere il più
possibile limitato e attuato solamente quando tutte le altre alternative
risultino sconvenienti.
*/
.privacy {
  padding: 1.25rem; }
  .privacy .logo {
    position: relative;
    width: 213px;
    height: 40px;
    margin: 0 0 1.875rem;
    z-index: 2; }
    .privacy .logo h1 {
      font-family: "Montserrat", Arial, sans-serif;
      margin: 0; }
    .privacy .logo img {
      width: 213px;
      height: 40px; }
    .privacy .logo span {
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      display: block;
      width: 0;
      height: 0; }
  .privacy h3 {
    font-family: "Montserrat", Arial, sans-serif; }
  .privacy p, .privacy span {
    font-size: 0.875rem !important;
    line-height: 1.4em !important; }

.brands {
  display: grid;
  padding: 20px 20px;
  grid-gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 40px; }
  @media screen and (min-width: 40em) {
    .brands {
      padding: 40px 30px;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 80px;
      grid-row-gap: 120px; } }
  @media screen and (min-width: 64em) {
    .brands {
      padding: 50px 40px;
      grid-template-columns: repeat(4, 1fr);
      grid-column-gap: 80px;
      grid-row-gap: 120px; } }
  @media screen and (min-width: 80em) {
    .brands {
      grid-template-columns: repeat(5, 1fr);
      grid-column-gap: 80px;
      grid-row-gap: 120px; } }
  .brands__item__title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 32px;
    color: #000;
    border-bottom: 1px solid #ccc;
    padding: 10px 0; }
  .brands__item ul {
    list-style: none;
    margin: 0;
    padding: 10px 0; }
    .brands__item ul li {
      list-style: none;
      margin: 0;
      padding: 0 0;
      font-family: "Roboto", Arial, sans-serif;
      font-size: 15px; }
      @media screen and (min-width: 40em) {
        .brands__item ul li {
          font-size: 14px; } }
      @media screen and (min-width: 80em) {
        .brands__item ul li {
          font-size: 15px; } }
      .brands__item ul li a {
        color: #666666;
        transition: all 0.3s ease;
        padding: 2px 0;
        display: block; }
        .brands__item ul li a:hover {
          color: #c62828; }

/*# sourceMappingURL=main.css.map */