/* roboto-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/roboto-v30-latin-700italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-condensed-v27-latin-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-300italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/roboto-condensed-v27-latin-300italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v27-latin-italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v27-latin-700italic.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@keyframes scale-up {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* RESET */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
p,
ul,
ol {
  display: block;
  font-size: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: inherit;
  transition: 0.2s;
  outline: 0;
  text-decoration: none;
  cursor: pointer;
}
a.link {
  text-decoration: underline;
  color: #677568;
}
body {
  font-family: "Roboto Condensed", Sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  background-color: #f5f6f8;
}
body.is-home .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table tr {
  background-color: #fff;
}
table tr:nth-child(odd) {
  background-color: #303C4B;
}
table tr th {
  padding: 20px;
  background: #677568;
  color: #fff;
}
table tr td {
  padding: 20px;
}
/* ATOMS */
b,
strong {
  font-weight: 600;
}
p:not(:last-child) {
  margin-bottom: 25px;
}
.list {
  margin-bottom: 30px;
}
.list li {
  margin: 0 0 0 20px;
}
h1 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 300;
}
h2 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 300;
  text-align: center;
}
h3 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: -0.5px;
}
h4 {
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 10px;
  color: #acc641;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #768d78;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  outline: 0;
  border: none;
  font-family: inherit;
  font-size: 14px;
  line-height: 14px;
  padding: 10px 20px;
  font-weight: 400 !important;
  height: 35px;
}
.btn.btn-important {
  background-color: #677568;
}
.btn.btn-ghost {
  background-color: transparent;
  border: 1px solid #303C4B;
  color: #303C4B;
}
.btn:hover {
  background-color: #303C4B;
  color: #fff;
}
.btn.btn-only-icon {
  padding: 0;
}
.container {
  margin: auto;
  width: 100%;
  max-width: 1280px;
  padding: 0 25px;
}
/* HELPER */
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
.t-right {
  text-align: right;
}
.t-lime {
  color: #69aa44;
}
.t-red {
  color: #c92100;
}
.hidden,
[hidden] {
  display: none !important;
}
.disabled,
[disabled] {
  opacity: 0.5 !important;
  pointer-events: none !important;
}
/* PLACEHOLDER */
::-webkit-input-placeholder {
  color: #ccc;
}
:-moz-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
/* SCROLLBAR */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #677568;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  align-self: flex-end;
}
.pagination .pagination-prev,
.pagination .pagination-next {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #768d78;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  outline: 0;
  border: none;
  font-family: inherit;
  font-size: 14px;
  line-height: 14px;
  padding: 10px 20px;
  font-weight: 400 !important;
  height: 35px;
  margin: 2px;
  border-radius: 100%;
  padding: 6px;
}
.pagination .pagination-prev.btn-important,
.pagination .pagination-next.btn-important {
  background-color: #677568;
}
.pagination .pagination-prev.btn-ghost,
.pagination .pagination-next.btn-ghost {
  background-color: transparent;
  border: 1px solid #303C4B;
  color: #303C4B;
}
.pagination .pagination-prev:hover,
.pagination .pagination-next:hover {
  background-color: #303C4B;
  color: #fff;
}
.pagination .pagination-prev.btn-only-icon,
.pagination .pagination-next.btn-only-icon {
  padding: 0;
}
.pagination .pagination-current {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  color: #677568;
}
/* HEADER */
.header {
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  background: #677568;
  background: linear-gradient(90deg, #677568 0%, #677568 25%, #e2e4e0);
  padding: 0 0 0 40px;
  position: relative;
}
.header .header-topbar-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 40px;
}
.header .header-topbar-wrapper .header-user {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 200px;
  padding: 0 30px 0 0;
  color: #677568;
  font-size: 14px;
  line-height: 13px;
  font-weight: 700;
}
.header .header-topbar-wrapper .header-user svg {
  margin-left: 7px;
  width: 20px;
  height: 20px;
}
.header .header-topbar-wrapper .header-languages {
  position: relative;
  display: flex;
  align-items: center;
  width: 200px;
  padding: 0 0 0 15px;
  color: #677568;
  font-size: 14px;
  line-height: 13px;
  font-weight: 700;
}
.header .header-topbar-wrapper .header-languages .header-languages-current {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.header .header-topbar-wrapper .header-languages .header-languages-current svg {
  margin-left: 7px;
  width: 20px;
  height: 20px;
}
.header .header-topbar-wrapper .header-languages .header-languages-current:hover {
  opacity: 0.75;
}
.header .header-topbar-wrapper .header-languages .header-languages-options {
  position: absolute;
  width: 100px;
  left: 0;
  top: 100%;
  background: #e2e4e0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 100;
}
.header .header-topbar-wrapper .header-languages .header-languages-options a:hover {
  opacity: 0.75;
}
.header .header-topbar-wrapper .header-languages.is-visible .header-languages-options {
  opacity: 1;
  pointer-events: all;
}
.header .header-logo {
  padding-bottom: 5px;
  margin-right: auto;
}
.header .header-logo img {
  width: 290px;
}
.header .header-menus {
  width: calc(100% - 350px);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
}
.header .header-menus .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  height: 40px;
  letter-spacing: 2px;
}
.header .header-menus .menu-item.is-icon {
  width: 36px;
  height: 36px;
  padding: 0;
}
.header .header-menus .menu-item.is-icon svg {
  fill: #fff;
  width: 35px;
  height: auto;
}
.header .header-menus .menu-item.is-icon:hover {
  background-color: #2a352d;
}
.header .header-menus .menu-item.is-focus {
  background-color: rgba(255, 255, 255, 0.25);
}
.header .header-menus .header-menu-istituzionale {
  width: calc(75% - 200px);
  display: flex;
  justify-content: flex-end;
  background-color: #677568;
}
.header .header-menus .header-menu-istituzionale a:hover {
  background-color: #4b564e;
}
.header .header-menus .header-menu-social {
  width: 200px;
  padding-left: 5px;
  background-color: #acc641;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 40px;
}
.header .header-menus .header-menu-categorie {
  width: calc(100% - 200px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  background-color: #2a352d;
  cursor: pointer;
}
.header .header-menus .header-menu-categorie .menu-item:hover,
.header .header-menus .header-menu-categorie .menu-item.is-active {
  background-color: #677568;
}
.header .header-menus .header-menu-categorie .categorie-submenu {
  width: 100%;
  display: none;
  justify-content: flex-end;
  background-color: #768d78;
  position: absolute;
  top: 100%;
  left: 0;
  padding-right: 200px;
  z-index: 10;
}
.header .header-menus .header-menu-categorie .categorie-submenu.is-open {
  display: flex;
}
.header .header-menus .header-menu-categorie .categorie-submenu a:hover {
  background-color: #4b564e;
}
.header .header-menus .header-menu-cart {
  width: 200px;
  padding-left: 5px;
  background-color: #69aa44;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 40px;
}
.header .header-menus .header-menu-cart .header-cart-icon {
  position: relative;
}
.header .header-menus .header-menu-cart .header-cart-icon #cart-icon-count {
  font-family: 'Roboto', sans-serif;
  position: absolute;
  min-width: 15px;
  height: 15px;
  top: 0;
  right: 0;
  background-color: #677568;
  color: #fff;
  font-size: 10px;
  line-height: 11px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0;
}
.header .header-menus .header-search-btn {
  line-height: 0;
  padding: 0 15px;
}
.header .header-menus .header-search-btn span {
  margin-right: 10px;
}
.header .header-user-btn,
.header .header-language-btn,
.header .header-menu-btn {
  display: none;
}
.header-search {
  overflow: hidden;
  height: 0;
  transition: 0.3s;
}
.header-search .container {
  position: relative;
}
.header-search input {
  padding-right: 42px;
}
.header-search .btn {
  width: 37px;
  position: absolute;
  top: 0;
  padding: 0;
  bottom: 0;
  right: 25px;
  border-radius: 0 3px 3px 0;
}
.header-search.is-visible {
  padding: 5px 0;
  height: 47px;
}
/* TITOLO E SOTTOTITOLO PAGINA */
.page-title {
  color: #677568;
  margin-top: 30px;
  font-weight: 400;
  text-align: center;
}
.page-subtitle {
  color: #acc641;
  margin-top: 10px;
}
.page-description {
  color: #7a7a7a;
  margin: 20px 0 0;
}
.page-description a {
  color: #acc641;
}
.page-description a:hover {
  color: #69aa44;
}
/* HOME BANNER */
.home-banner {
  position: relative;
}
.home-banner .banner {
  height: 90vh;
  position: relative;
  overflow: hidden;
}
.home-banner .banner img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: auto;
  animation: scale-up 10s ease-out infinite both;
}
.home-banner .home-banner-claim {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 50px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-banner .home-banner-claim h1 {
  width: 500px;
  background-color: rgba(42, 53, 45, 0.8);
  padding: 10px 15px;
  font-weight: 300;
  text-align: center;
}
.home-banner .home-banner-claim h2 {
  padding: 10px 15px;
}
.home-banner .home-banner-image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
}
.home-abstract {
  background-color: #2a352d;
  padding: 0 25px 50px 25px;
}
.home-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}
.home-categories .home-categories-title {
  width: 400px;
  height: 450px;
  background-color: #677568;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  box-shadow: 15px 0px 25px 0px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}
.home-categories .home-categories-slideshow-wrapper {
  width: calc(100% - 400px);
  background-color: #768d78;
  position: relative;
}
.home-categories .home-categories-slideshow-wrapper .home-categories-slideshow {
  width: 350%;
}
.home-categories .home-categories-slideshow-wrapper .home-categories-slideshow .section {
  height: 450px;
  padding: 50px 25px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-categories .home-categories-slideshow-wrapper .home-categories-slideshow .section .section-title {
  font-size: 22px;
  line-height: 23px;
  color: #2a352d;
  padding-bottom: 25px;
  min-height: 70px;
}
.home-categories .home-categories-slideshow-wrapper .home-categories-slideshow .section .section-image {
  width: 100%;
  flex: 1;
  background: #fff no-repeat center center;
  background-size: contain;
}
.home-categories .home-categories-slideshow-wrapper .tns-controls {
  width: 100%;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  z-index: 10;
  pointer-events: none;
}
.home-categories .home-categories-slideshow-wrapper .tns-controls button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  outline: none;
  border: none;
  color: #69aa44;
  width: 60px;
  height: 60px;
  pointer-events: all;
}
.home-categories .home-categories-slideshow-wrapper .tns-controls button svg {
  width: 60px;
  height: auto;
}
.home-categories .home-categories-slideshow-wrapper .tns-controls button:hover {
  color: #7a7a7a;
}
.home-search {
  height: 80vh;
  position: relative;
  background-color: #2a352d;
  overflow: hidden;
}
.home-search .home-search-video {
  position: absolute;
  width: 100%;
  height: 100%;
}
.home-search .home-search-video video {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.home-search .home-search-content {
  position: absolute;
  max-width: 520px;
  height: 100%;
  margin: auto;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
.home-search .home-search-content img {
  width: 425px;
  margin-bottom: 125px;
}
.home-search .home-search-content h2 {
  margin-bottom: 25px;
}
.home-search .home-search-content .home-search-input {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}
.home-search .home-search-content .home-search-input .btn {
  position: absolute;
  width: 43px;
  height: 43px;
  right: 1px;
  top: 1px;
}
.azienda-page {
  background-color: #2a352d;
}
.azienda-page .azienda-banner {
  background: #e2e4e0 url('../img/monviso-greenvalley.jpg') no-repeat top center;
  background-size: cover;
  height: 600px;
  margin-bottom: 50px;
}
.azienda-page h1 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 300;
  text-align: center;
  padding: 0 50px;
  margin-bottom: 25px;
}
.azienda-page h2 {
  font-size: 25px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 100px;
}
.azienda-page h3 {
  font-size: 23px;
  line-height: 23px;
  color: #acc641;
  margin-bottom: 25px;
}
.azienda-page .azienda-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.azienda-page .azienda-main .col {
  width: calc(50% - 50px);
  text-align: justify;
}
.faq-page {
  background-color: #2a352d;
  padding-bottom: 50px;
}
.faq-page .faq-banner {
  background: #e2e4e0 url('../img/banner-faq.jpg') no-repeat top center;
  background-size: cover;
  height: 600px;
  margin-bottom: 50px;
}
.faq-page h1 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 300;
  text-align: center;
  padding: 0 50px;
  margin-bottom: 25px;
}
.faq-page h2 {
  font-size: 25px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 50px;
}
.faq-page .faq-list {
  max-width: 900px;
  width: 100%;
  margin: auto;
}
.faq-page .faq-list .faq-wrapper {
  border-bottom: 1px solid #677568;
}
.faq-page .faq-list .faq-wrapper .faq-question {
  color: #acc641;
  font-size: 20px;
  padding: 20px 10px 20px 50px;
  cursor: pointer;
  background-image: url("/img/icon-plus.svg");
  background-repeat: no-repeat;
  background-position: left 10px top 50%;
  background-size: 17px;
}
.faq-page .faq-list .faq-wrapper .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  padding-left: 50px;
}
.faq-page .faq-list .faq-wrapper .faq-answer a {
  color: #acc641;
}
.faq-page .faq-list .faq-wrapper .faq-answer a:hover {
  color: inherit;
}
.faq-page .faq-list .faq-wrapper .faq-answer ul {
  padding-left: 20px;
}
.faq-page .faq-list .faq-wrapper.is-open .faq-question {
  background-image: url("/img/icon-minus.svg");
}
.faq-page .faq-list .faq-wrapper.is-open .faq-answer {
  max-height: unset;
  padding-bottom: 30px;
}
.assistenza-page {
  background-color: #2a352d;
  padding-bottom: 50px;
}
.assistenza-page .assistenza-banner {
  background: #e2e4e0 url('../img/banner-assistenza.jpg') no-repeat top center;
  background-size: cover;
  height: 600px;
  margin-bottom: 50px;
}
.assistenza-page h1 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 300;
  text-align: center;
  padding: 0 50px;
  margin-bottom: 25px;
}
.assistenza-page h2 {
  font-size: 25px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 50px;
}
.assistenza-page h2 a {
  color: #acc641;
}
.assistenza-page h2 a:hover {
  color: inherit;
}
.assistenza-page h3 {
  font-size: 23px;
  line-height: 23px;
  color: #acc641;
  margin-bottom: 25px;
}
.assistenza-page .assistenza-block {
  max-width: 600px;
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 25px 0;
  border-bottom: 1px solid #677568;
}
.assistenza-page .assistenza-block .btn svg {
  fill: #fff;
  width: 35px;
  height: auto;
  margin-right: 10px;
  margin-left: -5px;
}
.assistenza-page .assistenza-page-orari {
  margin-bottom: 25px;
}
/* SEARCH VETTURE */
.vetture-search-name {
  background-color: #677568;
  padding: 100px 0 50px;
}
.vetture-search-name .container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  max-width: 520px;
}
.vetture-search-name .container h2 {
  margin-bottom: 25px;
}
.vetture-search-name .container .vetture-search-name-input {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}
.vetture-search-name .container .vetture-search-name-input .btn {
  position: absolute;
  width: 43px;
  height: 43px;
  right: 1px;
  top: 1px;
}
.vetture-search-name .container p {
  color: #2a352d;
}
.vetture-search-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background-color: #677568;
  padding-bottom: 25px;
}
.vetture-search-filters h3 {
  text-align: center;
  width: 100%;
}
.vetture-search-filters .search-filters-item {
  padding: 5px 8px;
  border-radius: 3px;
  border: solid 1px #fff;
  display: inline-flex;
  align-items: center;
}
.vetture-search-filters .search-filters-item .filters-item-delete {
  border: solid 1px #fff;
  font-size: 13px;
  line-height: 13px;
  padding: 1px 3px;
  margin-right: 5px;
  cursor: pointer;
}
.vetture-search-filters .search-filters-item .filters-item-delete:hover {
  background-color: #fff;
  color: #677568;
}
.vetture-search-year {
  background-color: #768d78;
}
.vetture-search-year .search-year-title {
  background-color: #677568;
}
.vetture-search-year .search-year-title .container {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  padding: 7px 15px;
}
.vetture-search-year .search-year-list {
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vetture-search-year .search-year-list .search-year-item {
  padding: 5px 30px;
  background-color: #677568;
  cursor: pointer;
}
.vetture-search-year .search-year-list .search-year-item:hover,
.vetture-search-year .search-year-list .search-year-item.selected {
  background-color: #acc641;
  color: #2a352d;
}
.vetture-search-roof {
  background-color: #768d78;
}
.vetture-search-roof .search-roof-title {
  background-color: #677568;
}
.vetture-search-roof .search-roof-title .container {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  padding: 7px 15px;
}
.vetture-search-roof .search-roof-list {
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vetture-search-roof .search-roof-list .search-roof-item {
  padding: 5px 30px;
  background-color: #677568;
  text-transform: uppercase;
  cursor: pointer;
}
.vetture-search-roof .search-roof-list .search-roof-item:hover,
.vetture-search-roof .search-roof-list .search-roof-item.selected {
  background-color: #acc641;
  color: #2a352d;
}
.vetture-search-roof-version {
  background-color: #768d78;
}
.vetture-search-roof-version .search-roof-version-title {
  background-color: #677568;
}
.vetture-search-roof-version .search-roof-version-title .container {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  padding: 7px 15px;
}
.vetture-search-roof-version .search-roof-version-list {
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item {
  cursor: pointer;
  width: 150px;
}
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item .roof-version-item-name {
  padding: 5px 30px;
  background-color: #677568;
  text-transform: uppercase;
  text-align: center;
}
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item .roof-version-item-description {
  padding: 10px;
  background-color: #2a352d;
  color: #acc641;
  width: 170px;
  margin: 15px -10px 0 -10px;
  position: relative;
  text-align: center;
  font-size: 15px;
  line-height: 15px;
  border-radius: 15px;
  border: 3px solid #677568;
  opacity: 0;
  transition: 0.3s;
}
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item .roof-version-item-description:after {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #2a352d transparent;
  transform: rotate(0deg);
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: -10px;
}
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item img {
  width: 100px;
  height: 100px;
  margin: 15px auto 0;
  filter: grayscale(1);
}
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item:hover .roof-version-item-name,
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item.selected .roof-version-item-name {
  background-color: #acc641;
  color: #2a352d;
}
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item:hover img,
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item.selected img {
  filter: none;
}
.vetture-search-roof-version .search-roof-version-list .search-roof-version-item.selected .roof-version-item-description {
  opacity: 1;
}
.vetture-search-actions {
  background-color: #768d78;
  text-align: center;
  padding: 25px 0;
}
.vetture-search-actions .btn {
  background-color: #2a352d;
}
.vetture-search-actions .btn:hover {
  background-color: #677568;
}
.vetture-list {
  background-color: #e2e4e0;
}
.vetture-list .vetture-list-title {
  background-color: #677568;
  padding: 0 25px;
}
.vetture-list .vetture-list-title .container {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  padding: 7px 0;
}
.vetture-list .vetture-list-content {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vetture-list .vetture-list-content .vetture-list-item {
  cursor: pointer;
  width: calc(33.3333% - 20px);
  width: 33.3333%;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #2a352d;
}
.vetture-list .vetture-list-content .vetture-list-item .vetture-list-item-header {
  background-color: #677568;
  height: 44px;
  width: 100%;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.vetture-list .vetture-list-content .vetture-list-item .vetture-list-item-header .vetture-list-item-title {
  color: #acc641;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 8px;
}
.vetture-list .vetture-list-content .vetture-list-item .vetture-list-item-header .vetture-list-item-desc {
  color: #e2e4e0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
}
.vetture-list .vetture-list-content .vetture-list-item .vetture-list-item-img {
  aspect-ratio: 600 / 276;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
}
.vetture-list .vetture-list-content .vetture-list-item .vetture-list-item-zoom {
  width: calc(200% - 25px);
  aspect-ratio: 600 / 276;
  position: absolute;
  top: 0;
  left: calc(100% + 20px);
  background-color: #2a352d;
  border: 1px solid #677568;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
}
.vetture-list .vetture-list-content .vetture-list-item .vetture-list-item-zoom.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.vetture-list .vetture-list-content .vetture-list-item .vetture-list-item-cta {
  position: absolute;
  right: 25px;
  bottom: 25px;
  color: #acc641;
  font-size: 22px;
  line-height: 22px;
  z-index: 1000;
  pointer-events: none;
}
.vetture-list h3 {
  text-align: center;
  margin: 0;
  padding: 50px 0;
  color: #677568;
}
.articoli-list-filter-wrapper .articoli-list-filter-title {
  color: #768d78;
  padding: 20px 25px 5px;
}
.articoli-list-filter-wrapper .articoli-list-filter {
  padding: 5px 25px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.articoli-list-filter-wrapper .articoli-list-filter .search-articoli-item {
  padding: 5px 30px;
  background-color: #677568;
  cursor: pointer;
}
.articoli-list-filter-wrapper .articoli-list-filter .search-articoli-item:hover,
.articoli-list-filter-wrapper .articoli-list-filter .search-articoli-item.selected {
  background-color: #acc641;
  color: #2a352d;
}
.articoli-list-header {
  background-color: #e2e4e0;
}
.articoli-list-header .container {
  height: 100px;
  display: flex;
  align-items: center;
  padding-top: 36px;
  color: #7a7a7a;
  font-size: 18px;
  line-height: 18px;
  gap: 7px;
}
.articoli-list-header .header-categoria {
  color: #acc641;
}
.articoli-list-legenda-wrapper {
  display: flex;
  align-items: center;
  color: #7a7a7a;
  margin: 25px auto;
}
.articoli-list-legenda-wrapper .articoli-list-legenda-text {
  width: 72%;
  padding-right: 20px;
  text-align: justify;
  line-height: 22px;
}
.articoli-list-legenda-wrapper .articoli-list-legenda-text span {
  font-weight: 600;
  color: #768d78;
}
.articoli-list-legenda-wrapper .articoli-list-legenda-text span.red {
  color: #be5c5d;
}
.articoli-list-legenda-wrapper .articoli-list-legenda {
  width: 30%;
  border-left: 1px solid #e2e4e0;
  padding: 0 20px;
}
.articoli-list-legenda-wrapper .articoli-list-legenda h2 {
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.articoli-list-legenda-wrapper .articoli-list-legenda .articoli-list-legenda-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.articoli-list-legenda-wrapper .articoli-list-legenda .articoli-list-legenda-items .legenda-item {
  display: flex;
  width: calc(50% - 5px);
}
.articoli-list-legenda-wrapper .articoli-list-legenda .articoli-list-legenda-items .legenda-item img {
  margin-right: 5px;
}
.articoli-list-filter-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #e2e4e0;
  border-bottom: 1px solid #e2e4e0;
  margin-bottom: 15px;
}
.articoli-list-filter-wrapper .articoli-list-filter {
  padding: 0;
  align-items: center;
  gap: 30px;
}
.articoli-list-filter-wrapper .articoli-list-filter .articoli-list-filter-title {
  padding: 0;
}
.articoli-list-filter-wrapper .articoli-list-filter .articoli-list-filter-items {
  display: flex;
  gap: 10px;
}
.articoli-list-filter-wrapper .articoli-list-filter .articoli-list-filter-items .search-articoli-item {
  text-transform: uppercase;
}
.articoli-list-filter-wrapper .articoli-list-filter .articoli-list-filter-items .search-articoli-item.btn-red {
  background-color: #be5c5d;
}
.articoli-list-filter-wrapper .articoli-list-filter .articoli-list-filter-items .search-articoli-item.btn-red:hover,
.articoli-list-filter-wrapper .articoli-list-filter .articoli-list-filter-items .search-articoli-item.btn-red.selected {
  background-color: #edae9a;
}
/* CATENE SEARCH */
.catene-search {
  background-color: #677568;
  padding: 100px 0 50px;
}
.catene-search .container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  max-width: 700px;
}
.catene-search .container h2 {
  margin-bottom: 25px;
}
.catene-search .container .catene-search-params {
  display: flex;
  gap: 15px;
}
.catene-search .container .catene-search-params .catene-search-input {
  width: 150px;
  margin-bottom: 25px;
  position: relative;
}
.catene-search .container .catene-search-params .catene-search-input label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 300;
  color: #acc641;
}
.catene-search .container .btn {
  margin-bottom: 10px;
}
.catene-search .container p {
  color: #2a352d;
}
.catene-search .container p a {
  text-decoration: underline;
}
.catene-search .container p a:hover {
  font-weight: 600;
}
.catene-search-results {
  color: #677568;
}
.catene-search-results h3 {
  margin: auto;
}
.catene-search-results-actions {
  margin-bottom: 30px;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
/* ELENCO ARTICOLI */
.articoli-list {
  margin-bottom: 50px;
  padding: 50px 0 25px 0;
}
.articoli-list .container {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 25px;
}
.articoli-list .articolo {
  width: 390px;
  display: block;
  transition: 0.3s;
  background-color: #fff;
  position: relative;
}
.articoli-list .articolo .articolo-title {
  display: block;
  position: relative;
  background-color: #768d78;
  color: #fff;
  padding: 10px 15px;
}
.articoli-list .articolo .articolo-title h3 {
  color: #acc641;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-top: 0;
}
.articoli-list .articolo .articolo-title h2 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 22px;
  text-align: left;
}
.articoli-list .articolo .articolo-title .articolo-code {
  position: absolute;
  line-height: 17px;
  color: #768d78;
  top: -20px;
  right: 10px;
}
.articoli-list .articolo .articolo-images .articolo-image {
  display: inline-block;
  width: 100%;
  height: 265px;
  background: #fff no-repeat center center;
  background-size: contain;
}
.articoli-list .articolo .articolo-details {
  color: #7a7a7a;
  padding: 15px;
}
.articoli-list .articolo .articolo-details .articolo-details-item {
  display: flex;
  align-items: center;
  padding: 7px 0;
}
.articoli-list .articolo .articolo-details .articolo-details-item:not(:last-child) {
  border-bottom: 1px solid #e2e4e0;
}
.articoli-list .articolo .articolo-details .articolo-details-item img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.articoli-list .articolo .articolo-details .articolo-details-item h3 {
  margin: 0;
  font-weight: 600;
  color: #acc641;
}
.articoli-list .articolo .articolo-apri {
  position: absolute;
  right: 0;
  bottom: -35px;
  color: #fff;
  background-color: #677568;
  font-size: 17px;
  line-height: 21px;
  z-index: 1000;
  padding: 7px 20px;
}
.articoli-list .articolo .articolo-apri:hover {
  background-color: #acc641;
}
.articoli-list .articolo.articolo-componibile .articolo-title {
  background-color: #be5c5d;
}
.articoli-list .articolo.articolo-componibile .articolo-title h3 {
  color: #edae9a;
}
.articoli-list .articolo.articolo-componibile .articolo-title .articolo-code {
  color: #be5c5d;
}
.articoli-list .articolo.articolo-componibile .tns-outer {
  position: relative;
}
.articoli-list .articolo.articolo-componibile .tns-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: calc(50% - 25px);
  z-index: 100;
  pointer-events: none;
}
.articoli-list .articolo.articolo-componibile .tns-controls button {
  pointer-events: all;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #be5c5d;
  outline: none;
  border: none;
  width: 50px;
  height: 50px;
  transition: 0.3s;
  opacity: 0.5;
}
.articoli-list .articolo.articolo-componibile .tns-controls button svg {
  width: 48px;
  height: 48px;
}
.articoli-list .articolo.articolo-componibile .tns-controls button:hover {
  opacity: 1;
}
.articoli-list .articolo.articolo-componibile .tns-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: absolute;
  bottom: 10px;
}
.articoli-list .articolo.articolo-componibile .tns-nav button {
  width: 20px;
  height: 20px;
  outline: none;
  border: none;
  position: relative;
  background-color: transparent;
}
.articoli-list .articolo.articolo-componibile .tns-nav button:after {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #7a7a7a;
  border-radius: 999px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.articoli-list .articolo.articolo-componibile .tns-nav button.tns-nav-active::after {
  background-color: #303C4B;
}
.articoli-list .articolo.articolo-componibile .articolo-details .articolo-details-item h3 {
  color: #edae9a;
}
.articoli-list .articolo.articolo-componibile .articolo-apri {
  background-color: #be5c5d;
}
.articoli-list .articolo.articolo-componibile .articolo-apri:hover {
  background-color: #edae9a;
}
/* DETTAGLIO ARTICOLO */
.articolo-detail {
  color: #7a7a7a;
  background-color: #e2e4e0;
  padding-bottom: 100px;
}
.articolo-detail .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.articolo-detail .articolo-breadcrumbs {
  width: 100%;
  background: transparent url('../img/flag-italy.svg') no-repeat top center;
  background-size: 56px auto;
  padding: 50px 0 15px 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 18px;
  gap: 7px;
  color: #acc641;
  text-transform: uppercase;
}
.articolo-detail .articolo-images {
  width: 50%;
}
.articolo-detail .articolo-images .articolo-images-slideshow-wrapper {
  position: relative;
}
.articolo-detail .articolo-images .articolo-images-slideshow-wrapper .articolo-images-slideshow {
  margin-bottom: 15px;
}
.articolo-detail .articolo-images .articolo-images-slideshow-wrapper .articolo-images-slideshow .articolo-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #fff no-repeat center center;
  background-size: contain;
}
.articolo-detail .articolo-images .tns-controls {
  width: 100%;
  padding: 0 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  z-index: 10;
  pointer-events: none;
}
.articolo-detail .articolo-images .tns-controls button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  outline: none;
  border: none;
  color: #acc641;
  width: 24px;
  height: 24px;
  pointer-events: all;
}
.articolo-detail .articolo-images .tns-controls button:hover {
  color: #7a7a7a;
}
.articolo-detail .articolo-images .articolo-images-slideshow-thumbs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.articolo-detail .articolo-images .articolo-images-slideshow-thumbs .articolo-image-thumb {
  aspect-ratio: 16 / 9;
  width: 100px;
  width: calc(33.333% - 7px);
  background: #fff no-repeat center center;
  background-size: contain;
  border: 1px solid #ddd;
  cursor: pointer;
}
.articolo-detail .articolo-images .articolo-images-slideshow-thumbs .articolo-image-thumb.tns-nav-active {
  border: 1px solid #acc641;
}
.articolo-detail .articolo-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.articolo-detail .articolo-title h1 {
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
  text-transform: uppercase;
  color: #768d78;
}
.articolo-detail .articolo-features {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
}
.articolo-detail .articolo-features img {
  width: 75px;
  height: auto;
}
.articolo-detail .articolo-features .feature-weight {
  position: relative;
}
.articolo-detail .articolo-features .feature-weight span {
  position: absolute;
  top: calc(50% - 8px);
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #e2e4e0;
  letter-spacing: -1px;
}
.articolo-detail .articolo-related {
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 5px;
  gap: 0 15px;
}
.articolo-detail .articolo-related .btn {
  flex: 1;
  max-width: 150px;
}
.articolo-detail .articolo-prezzo-wrapper {
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 15px 25px;
  color: #69aa44;
}
.articolo-detail .articolo-prezzo-wrapper .articolo-prezzo {
  font-size: 28px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.articolo-detail .articolo-prezzo-wrapper .btn-acquista {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #69aa44;
  margin: 10px 0 0 0 !important;
  color: #fff;
  padding: 7px 17px 7px 20px;
  height: auto;
}
.articolo-detail .articolo-prezzo-wrapper .btn-acquista svg {
  fill: #fff;
  width: 30px;
  height: auto;
  transition: 0.3s;
}
.articolo-detail .articolo-prezzo-wrapper .btn-acquista:hover {
  background-color: #2a352d;
}
.articolo-detail .articolo-prezzo-wrapper .articolo-iva,
.articolo-detail .articolo-prezzo-wrapper .articolo-tip {
  width: 100%;
  text-align: right;
  padding: 10px 0 0 0;
  color: #2a352d;
  font-size: 15px;
  line-height: 15px;
}
.articolo-detail .articolo-prezzo-wrapper .articolo-iva a,
.articolo-detail .articolo-prezzo-wrapper .articolo-tip a {
  margin: 0;
  text-decoration: underline;
}
.articolo-detail .articolo-prezzo-wrapper .articolo-iva {
  color: #69aa44;
  padding-top: 5px;
}
.articolo-detail .articolo-data {
  width: calc(50% - 50px);
  display: flex;
  flex-direction: column;
}
.articolo-detail .articolo-data .articolo-descrizione {
  margin-bottom: 50px;
}
.articolo-detail .articolo-data .articolo-descrizione ul {
  margin-bottom: 30px;
}
.articolo-detail .articolo-data .articolo-descrizione ul li {
  margin: 0 0 0 20px;
}
.articolo-detail .articolo-data .articolo-descrizione .made-china {
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
}
.articolo-detail .ricambi-container {
  margin-top: 50px;
  width: 100%;
}
.articolo-detail .ricambi-container h2 {
  text-align: left;
}
.articolo-detail .ricambi-container .ricambi-list {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.articolo-detail .ricambi-container .ricambi-list .ricambio {
  width: 395px;
  display: block;
  transition: 0.3s;
  background-color: #fff;
  position: relative;
}
.articolo-detail .ricambi-container .ricambi-list .ricambio .ricambio-title {
  background-color: #768d78;
  color: #fff;
  padding: 10px 15px;
}
.articolo-detail .ricambi-container .ricambi-list .ricambio .ricambio-title h2 {
  color: #acc641;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 20px;
}
.articolo-detail .ricambi-container .ricambi-list .ricambio .ricambio-image {
  width: 100%;
  height: 265px;
  background: #fff no-repeat center center;
  background-size: contain;
}
.articolo-detail .articolo-detail-set {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-main {
  width: calc(50% - 20px);
}
.articolo-detail .articolo-detail-set .articolo-detail-set-main .articolo-detail-set-image-complessiva {
  background-color: #fff;
  position: relative;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-main .articolo-detail-set-image-complessiva:after {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 0 20px 25px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  left: 100%;
  bottom: 25%;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-main small {
  color: #677568;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-articoli {
  width: calc(50% - 20px);
}
.articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-detail-set-footer {
  background-color: #f5f6fa;
  padding: 20px;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-detail-set-footer .articolo-detail-set-footer-total {
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 0 5px 15px 0;
  color: #69aa44;
  font-size: 28px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  border-bottom: 1px solid #000;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-detail-set-footer .articolo-detail-set-footer-total .articolo-prezzo-tot {
  font-weight: 600;
  padding-left: 20px;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-detail-set-footer .articolo-detail-set-footer-ctas {
  padding: 15px 5px 0 0;
  display: flex;
  justify-content: flex-end;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-detail-set-footer .articolo-detail-set-footer-ctas .btn {
  padding-right: 10px;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-detail-set-footer .articolo-detail-set-footer-ctas .btn svg {
  fill: #2a352d;
  width: 35px;
  height: 35px;
  margin-left: 10px;
  transition: 0.3;
}
.articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-detail-set-footer .articolo-detail-set-footer-ctas .btn:hover svg {
  fill: #fff;
}
/* BOX ARTICOLO */
.box-articolo-wrapper {
  background-color: #f5f6fa;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px 0 50px;
  position: relative;
}
.box-articolo-wrapper .articolo-selection {
  position: absolute;
  top: -35px;
  right: 0;
  height: 35px;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  font-size: 13px;
  line-height: 15px;
  gap: 10px;
}
.box-articolo-wrapper .articolo-selection .selection-check {
  background-color: #f5f6fa;
  width: 45px;
  height: 35px;
  padding: 5px;
  position: relative;
}
.box-articolo-wrapper .articolo-selection .selection-check::before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #677568;
}
.box-articolo-wrapper .articolo-selection .selection-check::after {
  content: '';
  background-image: url("/img/icon-exclude.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: calc(100% - 10px);
  top: 5px;
  left: 0;
}
.box-articolo-wrapper .articolo-selection .selection-check.checked::after {
  background-image: url("/img/icon-include.svg");
}
.box-articolo-wrapper .articolo-selection .selection-check.active {
  cursor: pointer;
}
.box-articolo-wrapper .articolo-title {
  width: 100%;
  margin-bottom: 25px;
}
.box-articolo-wrapper .articolo-title h1 {
  font-size: 22px;
  line-height: 22px;
}
.box-articolo-wrapper .articolo-title .articolo-code span {
  color: #fff;
  background-color: #acc641;
  font-size: 15px;
  line-height: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 22px;
  vertical-align: 3px;
  margin-left: 5px;
  padding-top: 1px;
}
.box-articolo-wrapper .articolo-images {
  width: 225px;
}
.box-articolo-wrapper .articolo-data {
  width: calc(100% - 250px);
}
.box-articolo-wrapper .articolo-data .articolo-descrizione-short {
  margin-bottom: 15px;
}
.box-articolo-wrapper .articolo-data .articolo-descrizione {
  display: none;
  margin-bottom: 15px;
}
.box-articolo-wrapper .articolo-data .made-china {
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
}
.box-articolo-wrapper .articolo-data .articolo-read {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 15px;
  color: #677568;
  font-weight: 700;
  margin-bottom: 25px;
}
.box-articolo-wrapper .articolo-data .articolo-read .articolo-read-less {
  display: none;
}
.box-articolo-wrapper .articolo-data .articolo-read svg {
  transform: rotate(90deg);
  margin-top: -2px;
}
.box-articolo-wrapper .articolo-data .articolo-read:hover {
  opacity: 0.7;
}
.box-articolo-wrapper .articolo-data.read-more .articolo-descrizione-short {
  display: none;
}
.box-articolo-wrapper .articolo-data.read-more .articolo-descrizione {
  display: block;
}
.box-articolo-wrapper .articolo-data.read-more .articolo-read .articolo-read-more {
  display: none;
}
.box-articolo-wrapper .articolo-data.read-more .articolo-read .articolo-read-less {
  display: block;
}
.box-articolo-wrapper .articolo-data.read-more .articolo-read svg {
  transform: rotate(-90deg);
  margin-top: 0;
}
.box-articolo-wrapper .articolo-features {
  width: 100%;
}
.box-articolo-wrapper .articolo-related {
  width: 100%;
  justify-content: flex-end;
}
.box-articolo-wrapper .articolo-prezzo-wrapper {
  width: 100%;
  padding: 15px 5px 0 0;
}
.box-articolo-wrapper .articolo-prezzo-wrapper .articolo-prezzo {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.optional-title {
  margin-top: 30px;
  text-align: left;
}
/* CART */
.cart-page {
  background-color: #e2e4e0;
  color: #7a7a7a;
  padding: 50px 0;
}
.cart-page h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  color: #768d78;
}
.cart-page h1:not(:last-child) {
  margin-bottom: 25px;
}
.cart-container.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.cart {
  margin-bottom: 25px;
}
.cart .cart-articoli .articolo {
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(69, 67, 96, 0.07);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  margin-bottom: 15px;
}
.cart .cart-articoli .articolo-delete {
  line-height: 0;
  margin-right: 15px;
}
.cart .cart-articoli .articolo-image {
  width: 150px;
  height: 150px;
  display: block;
  background: transparent url('../img/.png') no-repeat center center;
  background-size: contain;
}
.cart .cart-articoli .articolo-image:hover {
  opacity: 0.75;
}
.cart .cart-articoli .articolo-nome {
  display: block;
  line-height: 16px;
  text-decoration: none;
  flex: 1;
  margin-left: 15px;
}
.cart .cart-articoli .articolo-prezzo-singolo {
  text-align: right;
  width: 100px;
}
.cart .cart-articoli .articolo-qt {
  width: 150px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cart .cart-articoli .articolo-qt a {
  line-height: 0;
}
.cart .cart-articoli .articolo-qt input {
  text-align: center;
  width: 40px;
  margin: 0 7px;
}
.cart .cart-articoli .articolo-subtotale {
  width: 150px;
  text-align: right;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.cart .cart-subtotals {
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(69, 67, 96, 0.07);
  padding: 20px;
  border-bottom: none;
  padding: 25px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.cart .cart-subtotals .discount {
  width: 50%;
  display: flex;
  align-items: flex-end;
}
.cart .cart-subtotals .discount .form-field {
  padding-bottom: 0;
  margin-right: 7px;
  text-align: left;
}
.cart .cart-subtotals .discount .btn {
  padding: 10px 35px 9px 35px;
  min-width: 0;
}
.cart .cart-subtotals .subtotali-rows {
  flex: 1;
}
.cart .cart-subtotals .subtotali-rows .subtotali-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2px;
}
.cart .cart-subtotals .subtotali-rows .subtotali-row .subtotali-value {
  width: 150px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.cart .cart-subtotals .subtotali-rows .discount-label {
  display: flex;
  align-items: center;
}
.cart .cart-subtotals .subtotali-rows .discount-label .discount-remove {
  line-height: 0;
  margin: -2px 0 0 3px;
}
.cart .cart-total {
  padding: 25px;
  background-color: #303C4B;
  box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.07);
  font-size: 19px;
  line-height: 19px;
  text-align: right;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: flex-end;
}
.cart .cart-total .total-price {
  width: 150px;
}
.cart.cart-slim .cart-articoli .articolo {
  padding: 10px 20px;
}
.cart.cart-slim .cart-articoli .articolo-qt {
  width: 50px;
}
.cart-actions {
  text-align: right;
  padding-bottom: 25px;
}
/* CHECKOUT */
.checkout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.checkout h2 {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 18px;
  text-align: left;
}
.checkout .checkout-payment {
  width: calc(50% - 15px);
}
.checkout .checkout-payment section {
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(69, 67, 96, 0.07);
  padding: 20px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 25px;
}
.checkout .checkout-payment #paypal_button {
  width: 50%;
}
.checkout .checkout-cart {
  width: calc(50% - 15px);
}
.checkout .box-field {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid #7a7a7a;
}
.checkout .box-field input[type=radio] {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.checkout .box-field input[type=radio]:checked + label {
  font-weight: 600;
}
.checkout .box-field input[type=checkbox] {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.checkout .box-field label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
  line-height: 16px;
}
.checkout .box-field label small {
  width: 100%;
}
.checkout .box-field label svg {
  width: 20px;
  margin-right: 10px;
}
.checkout .box-field:first-child {
  border-top: none;
}
.checkout .box-field-content {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* AUTOCOMPLETE */
.autocomplete-items {
  border: 1px solid #ccc;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  border-top: none;
  background-color: #fff;
  position: absolute;
  top: 57px;
  left: 8px;
  width: calc(100% - 16px);
  z-index: 200;
  border-radius: 2px;
  max-height: 171px;
  overflow-y: auto;
}
.autocomplete-items div {
  border-top: 1px solid #ccc;
  width: 100%;
  padding: 0 8px;
  color: #777;
  transition: 0.3s;
  cursor: pointer;
  font-size: 14px;
  height: 34px;
  line-height: 33px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.autocomplete-items div.autocomplete-active {
  background-color: #3d3d3d;
  color: #d9d9d9;
}
/* LOGIN */
.login-page {
  color: #677568;
  margin: 50px 0;
}
.login-page h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  color: #768d78;
  margin-bottom: 15px;
}
.login-page a:hover {
  color: #acc641;
}
.form-login {
  padding: 20px;
  max-width: 360px;
  margin: auto;
  margin-bottom: 15px;
}
.form-login-to-registration {
  text-align: center;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 25px;
}
/* REGISTRAZIONE */
.registration-page {
  color: #677568;
  margin: 50px 0;
}
.registration-page h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  color: #768d78;
  margin-bottom: 15px;
}
.registration-page .registration-business {
  text-align: center;
  margin-bottom: 20px;
}
.registration-page .registration-business a {
  color: #acc641;
}
.registration-page .registration-business a:hover {
  color: #7a7a7a;
}
.registration-confirm-page {
  color: #677568;
  margin: 50px 0;
}
.registration-confirm-page h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  color: #768d78;
  margin-bottom: 15px;
}
.registration-confirm-page .form-login {
  text-align: center;
}
/* PROFILO */
.profile-page {
  color: #7a7a7a;
  background-color: #e2e4e0;
  padding-top: 50px;
}
.profile-page h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  color: #768d78;
  margin-bottom: 15px;
}
.profile-page .profile-sections {
  width: 100%;
  text-align: center;
}
.profile-page .profile-table-wrapper {
  padding: 50px 20px;
}
.profile-page .profile-table-wrapper table {
  text-align: center;
}
.profile-page .profile-table-wrapper table tr:nth-child(odd) {
  background-color: #fff;
}
.profile-page .profile-table-wrapper table tr th {
  padding: 10px;
}
.profile-page .profile-table-wrapper table tr td {
  padding: 15px;
}
.profile-page .form-wrapper h2 {
  color: #677568;
}
/* FORM */
.form-wrapper {
  padding: 20px;
}
.form-wrapper h2 {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 25px;
  line-height: 27px;
  color: #69aa44;
  text-align: left;
}
.form-wrapper h2:first-child {
  margin-top: 0;
}
.form-wrapper form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.radio-button-container {
  display: flex;
  flex-wrap: wrap;
}
.radio-button-container .is-radio-button:first-child label {
  margin-left: 0;
}
.form-field {
  width: calc(50% - 10px);
  padding-bottom: 10px;
}
.form-field.is-full {
  width: 100%;
}
.form-field.is-half {
  width: calc(25% - 15px);
}
.form-field.is-mini {
  width: calc(12.5% - 10px);
}
.form-field.is-hidden {
  display: none;
}
.form-field.is-double {
  width: calc(37% - 15px);
}
.form-field.is-checkbox {
  display: flex;
  align-items: center;
}
.form-field.is-checkbox span,
.form-field.is-checkbox label {
  width: calc(100% - 30px);
  margin-left: 10px;
  cursor: pointer;
}
.form-field.is-radio {
  display: flex;
  align-items: center;
}
.form-field.is-radio span,
.form-field.is-radio label {
  width: calc(100% - 30px);
  margin-left: 10px;
  cursor: pointer;
}
.form-field.is-radio-button {
  width: auto;
}
.form-field.is-radio-button input {
  width: 0;
  height: 0;
  visibility: hidden;
}
.form-field.is-radio-button input:checked + label {
  background-color: #677568;
}
.form-field.is-radio-button label {
  width: auto;
}
.form-field.is-password {
  position: relative;
}
.form-field.is-password input {
  padding-right: 40px;
}
.form-field.is-password button {
  position: absolute;
  margin: auto;
  bottom: 18px;
  right: 8px;
  border: none;
  background-color: transparent;
  opacity: 0.7;
  cursor: pointer;
}
.form-field label {
  font-size: 15px;
  line-height: 15px;
}
.form-field.form-field-upload {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.form-field.form-field-upload .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.form-break {
  display: block;
  flex-basis: 100%;
  width: 0px;
  height: 0px;
  overflow: hidden;
}
input,
select,
textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 16px;
  border: 1px solid #acc641;
  font-style: normal;
  padding: 0 10px;
  width: 100%;
  height: 45px;
  background: #fff;
  transition: 0.3s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #303C4B;
  outline: 0;
}
input[type=checkbox],
select[type=checkbox],
textarea[type=checkbox] {
  width: 20px;
  vertical-align: -2px;
}
input[type=radio],
select[type=radio],
textarea[type=radio] {
  width: 20px;
}
select {
  padding: 0 5px;
}
textarea {
  padding: 10px;
  height: 120px;
}
.form-actions {
  margin-top: 30px;
  text-align: center;
  width: 100%;
}
.contatti-page {
  background-color: #2a352d;
}
.contatti-page .contatti-banner {
  background: #e2e4e0 url('../img/monviso-greenvalley.jpg') no-repeat top center;
  background-size: cover;
  height: 600px;
  margin-bottom: 50px;
}
.contatti-page h1 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 300;
  text-align: center;
  padding: 0 50px;
  margin-bottom: 35px;
}
.contatti-page .contatti-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.contatti-page .contatti-main .col {
  width: calc(50% - 25px);
  text-align: justify;
}
.contatti-page .contatti-main .contatti-main-text {
  text-align: right;
}
.contatti-page .contatti-main .contatti-main-text h2 {
  font-size: 25px;
  line-height: 27px;
  color: #69aa44;
  margin-bottom: 25px;
  text-align: right;
}
.contatti-page .contatti-main .contatti-main-text #map {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 15px;
}
.contatti-page .contatti-main .contatti-main-form {
  padding-top: 50px;
}
.contatti-page .contatti-main .contatti-main-form p {
  margin-bottom: 50px;
}
/* FOOTER */
footer {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  background: #2a352d url('../img/footer-background.svg') no-repeat left center;
  background-size: auto 105%;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 50px 25px;
}
footer .container .footer-company {
  width: 225px;
}
footer .container .footer-company img {
  width: 165px;
  margin-bottom: 15px;
}
footer .container .footer-sections {
  width: calc(100% - 250px);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 42px;
  gap: 20px;
}
footer .container .footer-sections .footer-section {
  flex: 1;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  line-height: 16px;
}
footer .container .footer-sections .footer-section h4 {
  line-height: 18px;
  text-transform: none;
  margin-bottom: 20px;
}
footer .container .footer-sections .footer-section .footer-section-links {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #677568;
}
footer .container .footer-sections .footer-section .footer-section-links a {
  margin-bottom: 15px;
}
footer .container .footer-sections .footer-section .footer-section-links a:hover {
  opacity: 0.5;
}
footer .footer-last {
  background-color: #768d78;
  color: #2a352d;
  padding: 15px;
  font-size: 14px;
  line-height: 14px;
}
footer .footer-last .container {
  padding: 0;
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer-last .footer-last-powered {
  color: #fff;
}
/* WHATSAPP */
.btn-whatsapp {
  position: fixed;
  bottom: 35px;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.4);
}
.btn-whatsapp .btn-whatsapp-icon {
  width: 55px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #69aa44;
}
.btn-whatsapp .btn-whatsapp-icon svg {
  width: auto;
  height: 100%;
}
.btn-whatsapp .btn-whatsapp-icon svg path {
  fill: #fff;
}
.btn-whatsapp .btn-whatsapp-text {
  width: 0;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #acc641;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  overflow: hidden;
  transition: 0.5s;
  white-space: nowrap;
}
.btn-whatsapp .btn-whatsapp-text:active {
  background-color: #2a352d;
}
.btn-whatsapp:hover .btn-whatsapp-text {
  width: auto;
  padding: 0 10px;
}
/* MODAL */
body.modal-overflow {
  overflow: hidden;
}
#modal_container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
}
#modal_container.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
#modal_container.is-visible #modal_window {
  opacity: 1;
  transform: translate(0, 0);
}
#modal_container #modal_window {
  border-radius: 4px;
  background: #fff;
  color: #7a7a7a;
  width: 100vw;
  max-width: 300px;
  max-height: 100vh;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  text-align: center;
  transform: translate(0, -20px);
  opacity: 0;
  transition: opacity 0s 0s, transform 0.3s 0s;
}
#modal_container #modal_window.is-template-modal {
  max-width: 600px;
}
#modal_container #modal_content {
  padding: 25px 25px 20px 25px;
  overflow-y: auto;
  max-height: calc(100vh - 64px);
  text-align: center;
}
#modal_container #modal_actions {
  padding-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#modal_container #modal_actions > * {
  margin: 0 3px 5px;
}
/* ALERT */
body.alert-overflow {
  overflow: hidden;
}
.alert-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  transition: 0.6s;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.alert-container.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.alert-container.is-visible .alert {
  opacity: 1;
  transform: translate(0, 0);
}
.alert-container .alert {
  border-radius: 4px;
  background: #fff;
  width: 100vw;
  max-width: 300px;
  max-height: 100vh;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  text-align: center;
  transform: translate(0, -20px);
  opacity: 0;
  transition: opacity 0s 0s, transform 0.3s 0s;
}
.alert-container .alert .alert-title {
  font-size: 3rem;
}
.alert-container .alert .alert-content {
  padding: 25px 25px 0px 25px;
}
.alert-container .alert .alert-footer {
  display: flex;
  align-items: center;
  padding: 15px 15px 25px 15px;
  justify-content: center;
}
.alert-container .alert .btn {
  border: 1px solid #fff;
  background-color: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}
.alert-container .alert .btn:hover {
  background-color: #fff !important;
  color: #fff !important;
  border-color: #fff !important;
}
.alert-container .alert .btn + .btn {
  margin-left: 8px;
}
.alert-container .alert.alert-success {
  background-color: #45a53c;
  color: #fff;
}
.alert-container .alert.alert-success .btn:hover {
  color: #45a53c !important;
}
.alert-container .alert.alert-error {
  background-color: #c92100;
  color: #fff;
}
.alert-container .alert.alert-error .btn:hover {
  color: #c92100 !important;
}
/* RIVENDITORI */
.rivenditori-page {
  color: #677568;
  margin: 50px 0;
}
.rivenditori-page h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  color: #768d78;
  margin-bottom: 15px;
}
.rivenditori-page p {
  color: #7a7a7a;
}
.rivenditori-page .search-rivenditori-container {
  display: flex;
}
.rivenditori-page .search-rivenditori-container .search-rivenditori-sidebar {
  margin-right: 20px;
  min-width: 300px;
}
.rivenditori-page .search-rivenditori-container .search-rivenditori-sidebar form {
  position: relative;
  margin-bottom: 20px;
}
.rivenditori-page .search-rivenditori-container .search-rivenditori-sidebar form .btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
}
.rivenditori-page .search-rivenditori-container .search-rivenditori-results {
  display: flex;
  flex-direction: column;
  height: calc(80vh - 55px);
  overflow-y: auto;
}
.rivenditori-page .search-rivenditori-container .search-rivenditori-results .search-rivenditori-result {
  margin-bottom: 20px;
  line-height: 20px;
}
.rivenditori-page .search-rivenditori-container .search-rivenditori-results .search-rivenditori-result.selected {
  background-color: #768d78;
  color: #fff;
  padding: 10px 15px;
}
.rivenditori-page .search-rivenditori-container .search-rivenditori-results .search-rivenditori-result .search-rivenditori-result-nearest {
  opacity: 0.6;
}
.rivenditori-page .search-rivenditori-container .search-rivenditori-results .search-rivenditori-result .search-rivenditori-result-title {
  font-weight: 700;
}
#mapContainer {
  height: 80vh;
  width: 100%;
}
.custom-cluster-icon {
  background: #2a352d;
  border-radius: 99px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
/* PAGINA 404 */
.page-404 {
  background-color: #677568;
  padding: 100px 0;
  text-align: center;
}
.page-404 h1 {
  margin-bottom: 10px;
}
.page-404 p {
  color: #2a352d;
}
.page-404 p a {
  text-decoration: underline;
}
.page-404 p a:hover {
  font-weight: 600;
}
@media (max-width: 1440px) {
  .header {
    padding: 0;
  }
  .header .header-topbar-wrapper .header-user {
    width: 100px;
    padding: 0 15px 0 0;
  }
  .header .header-topbar-wrapper .header-languages {
    width: 100px;
    padding: 0 0 0 10px;
  }
  .header .header-menus .menu-item {
    padding: 0 25px;
    font-size: 19px;
    line-height: 19px;
    letter-spacing: 1px;
  }
  .header .header-menus .header-menu-istituzionale {
    width: calc(75% - 100px);
  }
  .header .header-menus .header-menu-social {
    width: 100px;
  }
  .header .header-menus .header-menu-categorie {
    width: calc(100% - 100px);
  }
  .header .header-menus .header-menu-cart {
    width: 100px;
  }
  .header .header-menus .header-menu-categorie .categorie-submenu {
    padding-right: 100px;
  }
}
@media (max-width: 1280px) {
  .articoli-list .articolo {
    width: calc(33.333% - 17px);
  }
  .articolo-detail .ricambi-container .ricambi-list .ricambio {
    width: calc(33.333% - 17px);
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 35px;
    line-height: 35px;
  }
  h2 {
    font-size: 25px;
    line-height: 29px;
  }
  .header .header-logo img {
    width: 200px;
  }
  .header .header-menus {
    width: calc(100% - 250px);
  }
  .header .header-menus .header-menu-istituzionale {
    Width: calc(75% - 50px);
  }
  .header .header-menus .header-search-btn span {
    display: none;
  }
  .header .header-menus .menu-item {
    padding: 0 20px;
    font-size: 17px;
    line-height: 17px;
    letter-spacing: 0.5px;
  }
  .home-banner .banner {
    height: 550px;
  }
  .home-banner .home-banner-claim h1 {
    width: 300px;
  }
  .home-categories .home-categories-title {
    width: 300px;
    height: 300px;
  }
  .home-categories .home-categories-slideshow-wrapper {
    width: calc(100% - 300px);
  }
  .home-categories .home-categories-slideshow-wrapper .home-categories-slideshow .section {
    height: 300px;
    padding: 25px;
  }
  .home-categories .home-categories-slideshow-wrapper .home-categories-slideshow .section .section-title {
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 0;
    min-height: 55px;
  }
  .home-search {
    height: 500px;
  }
  .home-search .home-search-content img {
    width: 350px;
    margin-bottom: 50px;
  }
  .azienda-page .azienda-banner {
    height: 400px;
  }
  .faq-page .faq-banner {
    height: 400px;
  }
  .assistenza-page .assistenza-banner {
    height: 400px;
  }
  .contatti-page .contatti-banner {
    height: 400px;
  }
  .articoli-list-legenda-wrapper .articoli-list-legenda-text {
    width: 50%;
  }
  .articoli-list-legenda-wrapper .articoli-list-legenda {
    width: 50%;
  }
  .articoli-list .articolo .articolo-images .articolo-image {
    aspect-ratio: 3 / 2;
    height: auto;
  }
  footer .container .footer-company {
    width: 200px;
  }
  footer .container .footer-sections {
    width: calc(100% - 225px);
  }
  footer .container .footer-sections .footer-section {
    flex: none;
    width: calc(50% - 20px);
  }
  footer .footer-last .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 1023px) {
  .container {
    padding: 0 15px;
  }
  .header {
    align-items: center;
  }
  .header .header-logo {
    margin: 5px 0 5px 10px;
  }
  .header .header-topbar-wrapper {
    transition: 0.2s;
    pointer-events: none;
    position: absolute;
    top: 56px;
    z-index: 100;
  }
  .header .header-topbar-wrapper .header-user {
    display: none;
  }
  .header .header-topbar-wrapper .header-languages .header-languages-current {
    display: none;
  }
  .header .header-topbar-wrapper .header-languages .header-languages-options {
    top: 0;
  }
  .header .header-menus {
    width: 100%;
    transition: 0.2s;
    pointer-events: none;
    opacity: 0;
    height: 0;
    position: absolute;
    top: 56px;
    z-index: 100;
  }
  .header .header-menus .menu-item {
    width: 100%;
  }
  .header .header-menus .header-menu-istituzionale {
    width: 100%;
    flex-wrap: wrap;
  }
  .header .header-menus .header-menu-categorie {
    width: 100%;
  }
  .header .header-menus .header-menu-categorie .categorie-submenu {
    padding-right: 0;
    position: relative;
    top: auto;
    justify-content: center;
    flex-direction: column;
  }
  .header .header-menus .header-menu-categorie .menu-item-with-submenu {
    flex-direction: column;
    height: auto;
    padding: 0;
  }
  .header .header-menus .header-menu-categorie .menu-item-with-submenu .menu-item-with-submenu-label {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .header-menus .header-menu-social {
    display: none;
  }
  .header .header-menus .header-menu-cart {
    display: none;
  }
  .header .header-menus .header-search-btn span {
    display: block;
  }
  .header .header-menus.is-visible {
    pointer-events: all;
    opacity: 1;
  }
  .header .header-user-btn,
  .header .header-language-btn,
  .header .header-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2a352d;
    margin-right: 7px;
  }
  .header .header-user-btn {
    margin-left: auto;
  }
  .home-banner .banner {
    height: 400px;
  }
  .checkout {
    flex-wrap: wrap;
  }
  .checkout .checkout-cart {
    width: 100%;
  }
  .checkout .checkout-payment {
    width: 100%;
  }
  .checkout .box-field-content {
    padding: 15px;
  }
  .rivenditori-page .search-rivenditori-container {
    flex-direction: column;
  }
  .rivenditori-page .search-rivenditori-container .search-rivenditori-sidebar {
    margin-right: 0;
  }
  .rivenditori-page .search-rivenditori-container .search-rivenditori-results {
    text-align: center;
    margin-bottom: 20px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .home-search {
    height: 400px;
  }
  .azienda-page h2 {
    margin-bottom: 50px;
  }
  .azienda-page .azienda-main .col {
    width: calc(50% - 15px);
  }
  .rivenditori-page {
    margin: 50px 0 15px 0;
  }
  .vetture-search-name {
    padding: 50px;
  }
  .vetture-list .vetture-list-content .vetture-list-item {
    overflow: hidden;
    cursor: pointer;
    width: 100%;
  }
  .articoli-list-header .container {
    height: auto;
    padding: 15px;
    flex-wrap: wrap;
  }
  .articoli-list-header .container .header-categoria {
    width: 100%;
  }
  .articoli-list-filter-wrapper .articoli-list-filter {
    gap: 0;
  }
  .articoli-list .articolo {
    width: calc(50% - 13px);
  }
  .articolo-detail .articolo-images {
    width: 100%;
    margin-bottom: 25px;
  }
  .articolo-detail .articolo-data {
    width: 100%;
  }
  .articolo-detail .ricambi-container .ricambi-list .ricambio {
    width: calc(50% - 13px);
  }
  .articolo-detail .articolo-detail-set .articolo-detail-set-main {
    width: 100%;
    margin-bottom: 25px;
  }
  .articolo-detail .articolo-detail-set .articolo-detail-set-main .articolo-detail-set-image-complessiva:after {
    display: none;
  }
  .articolo-detail .articolo-detail-set .articolo-detail-set-articoli {
    width: 100%;
  }
  .articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-wrapper .articolo-images {
    width: 100%;
    margin-bottom: 0;
  }
  .articolo-detail .articolo-detail-set .articolo-detail-set-articoli .articolo-wrapper .articolo-data {
    width: 100%;
  }
  .contatti-page .contatti-main .col {
    width: 100%;
  }
  .contatti-page .contatti-main .contatti-main-text {
    text-align: center;
  }
  .contatti-page .contatti-main .contatti-main-text h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 30px;
  }
  .home-banner .banner {
    height: 250px;
  }
  .home-banner .home-banner-claim h1 {
    width: 200px;
    font-size: 25px;
    line-height: 25px;
    padding: 5px;
  }
  .home-categories .home-categories-title {
    width: 100%;
    height: 100px;
    padding: 0 25px;
    box-shadow: none;
  }
  .home-categories .home-categories-slideshow-wrapper {
    width: 100%;
  }
  .home-categories .home-categories-slideshow-wrapper .home-categories-slideshow {
    width: 100%;
  }
  .rivenditori-page {
    margin: 25px 0 15px 0;
  }
  .articoli-list-legenda-wrapper {
    flex-wrap: wrap;
    margin: 15px auto;
  }
  .articoli-list-legenda-wrapper .articoli-list-legenda-text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 15px;
  }
  .articoli-list-legenda-wrapper .articoli-list-legenda {
    width: 100%;
    border-left: none;
    padding: 0;
  }
  .articoli-list-filter-wrapper {
    flex-wrap: wrap;
    gap: 7px;
  }
  .articoli-list-filter-wrapper .articoli-list-filter .articoli-list-filter-title {
    width: 100%;
  }
  .cart .cart-articoli .articolo {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 15px;
  }
  .cart .cart-articoli .articolo-delete {
    width: 100%;
    margin: 10px 0 0 0;
    border-top: 1px solid #7a7a7a;
    padding-top: 10px;
    order: 2;
  }
  .cart .cart-articoli .articolo-nome {
    margin: 5px 0 15px 0;
  }
  .cart .cart-articoli .articolo-prezzo-singolo {
    display: none;
  }
  .cart .cart-articoli .articolo-qt {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
  .cart .cart-articoli .articolo-subtotale {
    width: 100%;
    text-align: center;
    font-size: 20px;
    letter-spacing: -1px;
  }
  .cart .cart-subtotals {
    flex-wrap: wrap;
    padding: 15px;
    text-align: center;
  }
  .cart .cart-subtotals .discount {
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .cart .cart-subtotals .discount .form-field {
    width: 100%;
    padding-bottom: 5px;
    margin-right: 0;
  }
  .cart .cart-subtotals .subtotali-rows {
    margin-top: 10px;
  }
  .cart .cart-subtotals .subtotali-rows .subtotali-row {
    justify-content: center;
  }
  .cart .cart-subtotals .subtotali-rows .subtotali-row .subtotali-value {
    width: auto;
    margin-left: 5px;
  }
  .cart .cart-total {
    padding: 15px;
    font-size: 19px;
    line-height: 19px;
    text-align: center;
    justify-content: center;
  }
  .cart .cart-total .total-price {
    width: auto;
    margin-left: 5px;
  }
  .cart-actions {
    text-align: center;
  }
  .cart-actions .btn {
    margin: 2px 0;
  }
  footer .container {
    padding: 25px;
  }
  footer .container .footer-company {
    width: 100%;
    text-align: center;
  }
  footer .container .footer-company img {
    margin: 0 auto 15px auto;
  }
  footer .container .footer-sections {
    width: 100%;
  }
  footer .container .footer-sections .footer-section {
    width: 100%;
    text-align: center;
  }
  footer .container .footer-sections .footer-section .footer-section-links {
    border-right: none;
  }
}
@media (max-width: 600px) {
  .header .header-logo img {
    width: 175px;
  }
  h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .home-search {
    height: 200px;
  }
  .home-search .home-search-content {
    padding: 0 25px;
    line-height: 22px;
  }
  .home-search .home-search-content img {
    display: none;
  }
  .home-search .home-search-content h2 {
    margin-bottom: 10px;
  }
  .home-search .home-search-content .home-search-input {
    margin-bottom: 10px;
  }
  .home-abstract {
    padding: 0 25px 25px 25px;
  }
  .azienda-page .azienda-banner {
    height: 200px;
    margin-bottom: 25px;
  }
  .azienda-page h1 {
    font-size: 23px;
    line-height: 27px;
  }
  .azienda-page h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .azienda-page h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 25px 0 10px 0;
  }
  .azienda-page .azienda-main .col {
    width: 100%;
  }
  .faq-page .faq-banner {
    height: 200px;
    margin-bottom: 25px;
  }
  .faq-page h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .assistenza-page .assistenza-banner {
    height: 200px;
    margin-bottom: 25px;
  }
  .assistenza-page h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
  }
  .articoli-list .articolo {
    width: 100%;
  }
  .articolo-detail .articolo-title {
    margin-bottom: 15px;
  }
  .articolo-detail .articolo-title h1 {
    font-size: 22px;
    line-height: 22px;
  }
  .articolo-detail .ricambi-container .ricambi-list .ricambio {
    width: 100%;
  }
  .vetture-search-name {
    padding: 15px;
  }
  .vetture-list .vetture-list-content {
    padding: 15px;
  }
  .contatti-page .contatti-banner {
    height: 200px;
    margin-bottom: 25px;
  }
  .form-field {
    width: 100%;
  }
  .catene-search .container .catene-search-params .catene-search-input {
    width: 100%;
  }
}
