/* COLOR VARIABLES
============================================= */
/* COLORS
============================================= */
/* BG IMAGES
============================================= */
/* FLEXBOX
============================================= */
/* GRID
============================================= */
/* BOX SHADOW
============================================= */
/* OPACITY
============================================= */
/* TRANSITION
============================================= */
/* TRANSFORM
============================================= */
/* BORDER RADIUS
============================================= */
/* TEXT TRANSFORM
============================================= */
/* ---------------------------------------------------------------------------------------------------- */
/* HEADER / NAVIGATION -------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
header {
  background: #FFFFFF;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 101;
  font-weight: 400;
  padding-right: 0;
  padding-left: 0;
  -webkit-transition: height 150ms linear 0s;
  -moz-transition: height 150ms linear 0s;
  -ms-transition: height 150ms linear 0s;
  -o-transition: height 150ms linear 0s;
  transition: height 150ms linear 0s;
}
header .container-full {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}
header ul.nav {
  height: 100px;
  padding-right: 165px;
  -webkit-transition: height 150ms linear 0s;
  -moz-transition: height 150ms linear 0s;
  -ms-transition: height 150ms linear 0s;
  -o-transition: height 150ms linear 0s;
  transition: height 150ms linear 0s;
}
header ul.nav li {
  float: left;
  height: 100%;
}
header ul.nav li a {
  -webkit-transition: color 300ms linear 0s;
  -moz-transition: color 300ms linear 0s;
  -ms-transition: color 300ms linear 0s;
  -o-transition: color 300ms linear 0s;
  transition: color 300ms linear 0s;
  /*font-family: classico-urw, sans-serif;*/
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  margin: 0;
  padding: 0 15px;
  text-transform: uppercase;
  font-size: clamp(12px, 1.5vw, 15px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  position: relative;
}
header ul.nav li a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 10px;
  -webkit-transition: background 0.5s ease 0s;
  -moz-transition: background 0.5s ease 0s;
  -ms-transition: background 0.5s ease 0s;
  -o-transition: background 0.5s ease 0s;
  transition: background 0.5s ease 0s;
}
header ul.nav li a:hover::after {
  background: #E2E6EB;
}
header ul.nav li a.selected::after {
  background: #EA0029;
}
header ul.nav li.search a:hover::after {
  background: none;
}

header a.logo img {
  height: 85px;
  -webkit-transition: height 150ms linear 0s;
  -moz-transition: height 150ms linear 0s;
  -ms-transition: height 150ms linear 0s;
  -o-transition: height 150ms linear 0s;
  transition: height 150ms linear 0s;
}

header .last-cont {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  color: #000000;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
header .last-cont span {
  letter-spacing: 3px;
  text-align: center;
}
header .last-cont span a {
  color: #000000;
  -webkit-transition: color 0.5s ease 0s;
  -moz-transition: color 0.5s ease 0s;
  -ms-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}
header .last-cont span a:hover {
  color: #EA0029;
}
header .last-cont span img {
  width: 135px;
}
header .last-cont span.changeLang {
  width: 100%;
  letter-spacing: normal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 5px;
}
header .last-cont span.changeLang a {
  color: #000000;
  -webkit-transition: color 0.5s ease 0s;
  -moz-transition: color 0.5s ease 0s;
  -ms-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}
header .last-cont span.changeLang a.active {
  color: #DADEE3;
}
header .last-cont span.changeLang a:hover {
  color: #EA0029;
}

/*
.changeLang {
  position: absolute;
  right: 0;
  top: calc(50% - 17px);
  height: 34px;
  line-height: 34px;
  padding: 0 22px;
  background: $nero;
  color: $bianco;
  @include transitionEase(background);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;

  &:hover {
    background: $grigiotesti;
    color: $bianco;
  }
}
*/
nav {
  height: 100%;
}

.scroll ul.main-menu {
  height: 45px;
}

ul.main-menu li a.selected,
ul.main-menu li:hover a {
  color: #EA0029;
}

.search-container {
  padding: clamp(10px, 2vw, 25px) 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  will-change: transform;
  opacity: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background: #E2E6EB;
}
.search-container .flex {
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.search-container .input-block {
  padding: 10px 30px;
  margin-bottom: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  max-width: 300px;
}
.search-container .btn {
  font-weight: 700;
  font-size: clamp(14px, 2vw, 16px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
}
.search-container .btn.close {
  opacity: 0.1;
}
.search-container .btn i {
  font-size: clamp(16px, 2vw, 20px);
}
.search-container .btn:hover {
  color: #FFFFFF;
  background-color: #636B73;
}
.search-container label {
  top: 21px;
  left: 28px;
}
.search-container.visible {
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  will-change: transform;
  opacity: 1;
}

@media all and (max-width: 1023px) {
  .search-container {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    will-change: transform;
    height: calc(100vh - 75px);
    opacity: 1;
  }
  .search-container.visible {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .search-container .flex {
    display: block;
  }
  .search-container .input-block {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .search-container .btn {
    width: calc(50% - 60px);
  }
  .search-container #find_btn {
    margin: 0 20px 0 0;
    float: left;
  }
  .search-container .close {
    margin: 0 0 0 20px;
    float: right;
  }
}
/* ---------------------------------------------------------------------------------------------------- */
/* HEADER MOBILE -------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.nav-toggle {
  display: none;
  position: relative;
  width: 55px;
  height: 55px;
  z-index: 99;
  border-radius: 50%;
  margin: 8px 0;
  overflow: hidden;
}
.nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  background: #EA0029;
  opacity: 1;
  left: 13px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  will-change: transform;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.nav-toggle span:nth-child(1) {
  top: 17px;
}
.nav-toggle span:nth-child(2) {
  top: 27px;
  transition-duration: 0.1s;
}
.nav-toggle span:nth-child(3) {
  top: 37px;
}

.nav-toggle.change span:nth-child(1) {
  top: 27px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  will-change: transform;
}
.nav-toggle.change span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.nav-toggle.change span:nth-child(3) {
  top: 27px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  will-change: transform;
}

.navMobile {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 50;
  border-bottom: 1px solid #DADEE3;
}
.navMobile section.flex {
  height: 55px;
  padding: 10px 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  background: #FFFFFF;
}
.navMobile section.flex .logo {
  height: 100%;
  flex-grow: 2;
}
.navMobile section.flex .logo img {
  height: 100%;
  width: auto;
}

.menu {
  background: #FFFFFF;
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  z-index: 900;
  width: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: calc(100vh - 75px);
  -webkit-transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -moz-transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -ms-transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -o-transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  /*li.tags {
    display: block;
  }*/
}
.menu li {
  border-bottom: 1px solid #E2E6EB;
  list-style: none;
  /*padding: 0 0 0 10px;*/
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}
.menu li a {
  color: #000000;
  display: block;
  font-size: 18px;
  /*font-family: classico-urw, sans-serif;*/
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: clamp(8px, 2vh, 30px) 0 clamp(8px, 2vh, 30px) 10px;
  flex-grow: 2;
  background-color: #FFFFFF;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.menu li a.change-language {
  background-color: #000000;
}
.menu li a:hover {
  background-color: #EA0029;
  color: #FFFFFF;
}
.menu li .nextMenu {
  font-size: 28px;
  padding: 10px;
  color: #EA0029;
}
.menu li:first-child {
  margin: 0;
  background: #000000;
}
.menu li:first-child div {
  background: #000000;
  padding: 0 10px;
}
.menu li:first-child div.made-italy-mobile a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-direction: column;
  font-size: 13px;
}
.menu li:first-child div.made-italy-mobile a img {
  margin-top: 3px;
}
.menu li:first-child a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #FFFFFF;
  float: none;
  padding: 10px 0;
  background: #000000;
}
.menu li:first-child a i {
  font-size: 28px;
  margin-right: 12px;
}
.menu li:last-child {
  border-bottom: none;
}
.menu li.backMenu {
  margin: 0;
  background: #000000;
}
.menu li.backMenu a {
  background: #000000;
}
.menu li .menuHover, .menu li:hover .menuHover {
  background: #FFFFFF;
  height: calc(100vh - 110px);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  background-color: #FFFFFF;
  left: 100%;
  right: 0;
  position: fixed;
  top: 0 !important;
  pointer-events: auto;
  opacity: 1;
  width: 100%;
  padding: 0;
  background: #FFFFFF;
  z-index: 900;
  transition: transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateX(50%);
  -moz-column-count: 1;
  -moz-column-gap: 0;
  -webkit-column-count: 1;
  -webkit-column-gap: 0;
}

.menu.step1 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  z-index: 901;
}

.menu.step2 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  z-index: 902;
}

/* MAIN MENU MOBILE -------------------------------------------------------------------------------- */
@media all and (max-width: 1023px) {
  #main-menu {
    padding-top: 0px;
    height: 75px;
  }
  body {
    margin-top: 75px;
  }
  #menu-about-cont .fixed {
    top: 75px;
  }
  .submenu, header {
    display: none;
  }
  .nav-toggle, .navMobile {
    display: block;
  }
}
/* FINE MAIN MENU MOBILE -------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
/* BREADCRUMB ----------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.breadcrumb {
  background: #FFFFFF;
  font-size: 14px;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #000000;
  position: relative;
}
.breadcrumb.margin-top {
  margin-top: clamp(20px, 2vw, 100px);
  float: left;
  width: 100%;
}
.breadcrumb a {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0 20px;
  color: #000000;
}
.breadcrumb a.btn-download {
  height: 50px;
  min-width: 200px;
  margin-right: 20px;
}
.breadcrumb .back {
  width: 40px;
  border-right: 1px solid #DADEE3;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #FFFFFF;
}
.breadcrumb .back img {
  width: 12.5px;
}
.breadcrumb ul {
  list-style: none;
  width: calc(100% - 81px);
  height: 100%;
  padding-left: 81px;
}
.breadcrumb ul.reduced {
  width: calc(100% - 301px);
}
.breadcrumb ul li {
  height: 100%;
  display: inline-block;
}
.breadcrumb ul li a img, .breadcrumb ul li img {
  margin: 0 10px;
}
.breadcrumb a.removeS {
  position: absolute;
  right: 5px;
  top: 4px;
  height: 40px;
  width: 40px;
  line-height: 35px;
  text-align: center;
  color: #FFFFFF;
  background: #EA0029;
  -webkit-transition: background 0.5s ease 0s;
  -moz-transition: background 0.5s ease 0s;
  -ms-transition: background 0.5s ease 0s;
  -o-transition: background 0.5s ease 0s;
  transition: background 0.5s ease 0s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 22;
  padding: 0;
}
.breadcrumb a.removeS:hover {
  background: #B90029;
}
.breadcrumb .input-block {
  position: relative;
  border: 1px solid #636B73;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  height: 50px;
  margin: 5px 15px 5px 5px;
  width: 280px;
  padding: 15px 20px;
}
.breadcrumb .input-block label {
  top: 18px;
  left: 20px;
  color: #636B73;
  font-style: italic;
  font-size: 14px;
}
.breadcrumb .input-block img {
  position: absolute;
  right: 15px;
  top: 8px;
}

.breadcrumb ul li.right {
  float: right;
  position: relative;
}
.breadcrumb ul li.right .customer-code {
  float: left;
  margin: 0 10px 0 0;
  border-right: 1px solid #FFFFFF;
  padding: 0 10px 0 0;
}
.breadcrumb ul li.right .customer-code img {
  width: 20px;
  margin-left: 0;
}

/* ---------------------------------------------------------------------------------------------------- */
/* FOOTER --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
footer {
  background-color: #EA0029;
  color: #FFFFFF;
  font-size: 15px;
}
footer a {
  color: #FFFFFF;
  padding: clamp(8px, 2vw, 10px) 0;
  display: inline-block;
  -webkit-transition: color 0.5s ease 0s;
  -moz-transition: color 0.5s ease 0s;
  -ms-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}
footer a:hover {
  color: #E2E6EB;
}
footer img {
  width: 40px;
  display: inline-block;
  margin-right: 10px;
}
footer .container-full {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-gap: 1px;
  grid-template-areas: "pagine cataloghi social dove-siamo" "pagine cataloghi condizioni condizioni" "contatti cataloghi condizioni condizioni" "ragione-sociale cataloghi iva-privacy iva-privacy";
}
footer .pagine, footer .contatti, footer .ragione-sociale, footer .cataloghi, footer .social, footer .dove-siamo, footer .condizioni, footer .iva-privacy {
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  padding: clamp(8px, 2vw, 15px);
}
footer .pagine, footer .cataloghi, footer .social, footer .dove-siamo {
  border-top: none;
}
footer .dove-siamo, footer .condizioni, footer .iva-privacy {
  border-right: 1px solid #FFFFFF;
}
footer .pagine {
  grid-area: pagine;
}
footer .pagine a {
  /*font-family: classico-urw, sans-serif;*/
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(16px, 2vw, 20px);
}
footer .contatti {
  grid-area: contatti;
}
footer .ragione-sociale {
  grid-area: ragione-sociale;
}
footer .cataloghi {
  grid-area: cataloghi;
}
footer .social {
  grid-area: social;
  text-align: center;
}
footer .social ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
footer .dove-siamo {
  grid-area: dove-siamo;
}
footer .dove-siamo a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
footer .condizioni {
  grid-area: condizioni;
}
footer .iva-privacy {
  grid-area: iva-privacy;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
footer .iva-privacy li {
  display: inline-block;
  margin: 0 10px;
  margin-right: 0;
}

.footer p {
  font-size: 13px;
  line-height: 13px;
  margin: 20px 0;
  color: #FFFFFF;
}

.links-footer-container {
  padding: 25px 0;
  width: 100%;
  float: left;
}
.links-footer-container .container-full .row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.links-footer-container .container-full .row .column {
  width: 22%;
  margin: 0 1%;
  padding: 0;
}
.links-footer-container .rexroth-footer {
  width: 60px;
  margin-bottom: 21px;
  float: left;
}

/* ---------------------------------------------------------------------------------------------------- */
/* MEDIA QUERY ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
@media all and (max-width: 1785px) {
  header .container-full {
    width: 100%;
  }
  header a.logo img {
    margin-left: 10px;
  }
}
@media all and (max-width: 1365px) {
  header ul.nav li a {
    padding: 0 10px;
  }
  header .last-cont {
    font-size: 13px;
  }
  header .last-cont span img {
    width: 130px;
  }
}
@media all and (max-width: 1140px) {
  header ul.nav li.search a img {
    width: 25px;
  }
  header ul.nav li a {
    font-size: 13px;
  }
  footer .container-full {
    grid-template-areas: "pagine social dove-siamo" "pagine condizioni condizioni" "contatti condizioni condizioni" "ragione-sociale iva-privacy iva-privacy";
  }
  footer .cataloghi {
    display: none;
  }
}
@media all and (max-width: 1100px) {
  header ul.nav li a {
    padding: 0 8px;
  }
  header a.logo img {
    width: 145px;
  }
}
@media all and (max-width: 1023px) {
  .breadcrumb a {
    padding: 0 5px;
  }
  .blog-article .breadcrumb a {
    padding: 0 20px;
  }
}
@media all and (max-width: 800px) {
  footer .container-full {
    grid-template-areas: "social dove-siamo" "condizioni condizioni" "condizioni condizioni" "iva-privacy iva-privacy";
  }
  footer .pagine, footer .contatti, footer .ragione-sociale {
    display: none;
  }
  footer .iva-privacy {
    flex-direction: column;
  }
  footer .iva-privacy .tooltip {
    padding-bottom: 0;
  }
}
@media all and (max-width: 767px) {
  .breadcrumb ul li.notablet,
  .breadcrumb ul li.nomobile {
    display: none;
  }
  .blog-article .breadcrumb a {
    padding: 0 10px;
  }
  .blog-article .breadcrumb ul li a::after {
    right: -5px;
  }
  .blog-article .breadcrumb ul li:nth-child(4) a::after {
    display: none;
  }
}
/* ---------------------------------------------------------------------------------------------------- */
/* EXPLORER ------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body, h1, h2, h3, h4, h5, h6, p, li, td, span, strong, b {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
  }
}
.onlyIE,
.chromeframe {
  display: none;
}

.ie-9 {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 10;
  text-align: center;
  align-items: center;
  padding-top: 25%;
}

.ie-9 img {
  width: 160px;
  margin: 0 auto;
  display: block;
}

.ie-9 h1 {
  display: block;
  margin: 0 auto;
}

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