.section-jeniot:has(#configuratore-main-wrapper) {
  background-color: #EDEDED;
  padding-top: 0;
}

.container:has(#configuratore-main-wrapper) {
  padding: 0;
}

#configuratore-main-wrapper,
#configuratore-main-wrapper .button {
  font-family: Nunito, Arial, Helvetica, sans-serif;
  color: #4C4C4C;
  font-size: var(--font-size-base);
  line-height: 1.2;
}

#configuratore-main-wrapper {
  --font-size-base: 14px;
  --space-padding: 15px;
  --space-gap-xs: 10px;
  --space-gap-sm: 14px;
  --space-gap-md: 15px;
  --space-gap-lg: 36px;
  --space-gap-xl: 20px;
  --content-max-width-offset: 30px;
  --transition-slide: 1s;
  --transition-fast: .2s;
  --title-1-size: 28px;
  --title-2-size: 26px;
  --title-3-size: 18px;
  --title-4-size: 18px;
  --result-name-size: 40px;
  position: relative;
  overflow-x: hidden;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  max-width: 1600px;
  margin: auto;
  background: #FFFFFF;
  container: size;
}
#configuratore-main-wrapper * {
  box-sizing: border-box;
}
#configuratore-main-wrapper h1, #configuratore-main-wrapper h2, #configuratore-main-wrapper h3, #configuratore-main-wrapper h4, #configuratore-main-wrapper p {
  margin: 0;
}
#configuratore-main-wrapper .title-1 {
  font-size: var(--title-1-size);
  line-height: 1.1;
}
#configuratore-main-wrapper .title-2 {
  font-size: var(--title-2-size);
  line-height: 1.1;
}
#configuratore-main-wrapper .title-3, #configuratore-main-wrapper .domanda-titolo {
  font-size: var(--title-3-size);
  line-height: 1.2;
}
#configuratore-main-wrapper .title-4 {
  font-size: var(--title-4-size);
  line-height: 1.3;
}
#configuratore-main-wrapper img {
  max-width: 100%;
  height: auto;
}
#configuratore-main-wrapper .button, #configuratore-main-wrapper .domanda-opzione {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-padding);
  border-radius: 15px;
  overflow: hidden;
}
#configuratore-main-wrapper .button {
  outline: none;
  border: none;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-fast) ease, opacity var(--transition-fast) ease;
}
#configuratore-main-wrapper .button:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast) ease;
}
#configuratore-main-wrapper .button:hover:not(:disabled)::before {
  opacity: 0.2;
}
#configuratore-main-wrapper .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#configuratore-main-wrapper .button:not(.button-prev) {
  width: min(300px, 100%);
}
#configuratore-main-wrapper a.button:hover {
  text-decoration: none;
}
#configuratore-main-wrapper .red-bg, #configuratore-main-wrapper .button-next {
  background-color: #C5281C;
}
#configuratore-main-wrapper .dark-gray-bg, #configuratore-main-wrapper .button-prev {
  background-color: #4C4C4C;
}
#configuratore-main-wrapper .cattolica-bg {
  background-color: #4FC7B3;
}
#configuratore-main-wrapper .red-text {
  color: #C5281C;
}
#configuratore-main-wrapper .white-text {
  color: #FFFFFF;
}
#configuratore-main-wrapper .text-center {
  text-align: center;
}
#configuratore-main-wrapper .bold, #configuratore-main-wrapper .domanda-titolo {
  font-weight: 700;
}
#configuratore-main-wrapper .divisore {
  width: 100%;
  height: 2px;
  background: #EDEDED;
  margin: clamp(50px, 9vw, 100px) 0;
}
#configuratore-main-wrapper .boxed, #configuratore-main-wrapper .domanda-form, #configuratore-main-wrapper .domanda-titolo, #configuratore-main-wrapper .button {
  max-width: calc(100% - var(--content-max-width-offset));
}
#configuratore-main-wrapper #intro .logo-generali-jeniot {
  width: min(200px, 50vw);
  margin-bottom: 50px;
}
#configuratore-main-wrapper #img-auto-rossa {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  --car-slide-shift: -20vw // fallback, set in js;
  transition: transform var(--transition-slide) ease;
}
#configuratore-main-wrapper #img-auto-rossa.is-slide-moving {
  animation: auto-slide-return 2s ease;
}
#configuratore-main-wrapper #img-auto-rossa.is-initial-enter {
  animation: auto-enter-from-left 1.5s ease both;
}
@keyframes auto-slide-return {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(var(--car-slide-shift));
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes auto-enter-from-left {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(0);
  }
}
#configuratore-main-wrapper #background {
  position: absolute;
  top: 0;
  left: 0;
  width: 600%;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
}
#configuratore-main-wrapper #background img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: none;
}
#configuratore-main-wrapper #background #img-nuvole,
#configuratore-main-wrapper #background #img-orizzonte,
#configuratore-main-wrapper #background #img-linea {
  transition: transform var(--transition-slide) ease;
}
#configuratore-main-wrapper .logo-generali-jeniot-piccolo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: min(20vw, 150px);
}
#configuratore-main-wrapper #slides-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
#configuratore-main-wrapper #slides-track {
  display: flex;
  align-items: flex-start;
  transition: transform var(--transition-slide) ease;
  position: relative;
}
#configuratore-main-wrapper .slide {
  width: 100%;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  flex: 0 0 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-gap-lg);
  padding: 40px 0 20px;
}
#configuratore-main-wrapper .img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
  pointer-events: none;
}
#configuratore-main-wrapper .img-wrapper img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  max-height: 80vh;
}
#configuratore-main-wrapper .img-wrapper #img-auto-rossa {
  z-index: 1;
}
#configuratore-main-wrapper #finale {
  overflow: visible;
}
#configuratore-main-wrapper #finale .img-wrapper img {
  transform: scaleX(30);
  left: unset;
  right: 0;
}
#configuratore-main-wrapper .domanda-titolo, #configuratore-main-wrapper #intro h1 {
  margin-top: 0;
}
#configuratore-main-wrapper .domanda-form {
  width: min(800px, 100%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-gap-xs);
  border: 2px solid #C5281C;
}
#configuratore-main-wrapper .domanda-opzioni, #configuratore-main-wrapper .domanda-nav {
  display: flex;
  gap: var(--space-gap-xs);
}
#configuratore-main-wrapper .domanda-opzioni {
  flex-direction: column;
  margin-bottom: 40px;
}
#configuratore-main-wrapper .domanda-opzione {
  background: #FFFFFF;
  color: #4C4C4C;
  border: 1px solid #EDEDED;
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--space-gap-sm);
  width: 100%;
  cursor: pointer;
  position: relative;
  transition: background-color var(--transition-fast) ease, border-color var(--transition-fast) ease;
}
#configuratore-main-wrapper .domanda-opzione:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #EDEDED;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast) ease;
}
#configuratore-main-wrapper .domanda-opzione > * {
  position: relative;
  z-index: 1;
}
#configuratore-main-wrapper .domanda-opzione:hover:not(.is-selected)::before {
  opacity: 1;
}
#configuratore-main-wrapper .domanda-opzione.is-selected {
  border-color: #C5281C;
  background: #F6E6E4;
}
#configuratore-main-wrapper .domanda-opzione.is-selected .domanda-opzione-radio {
  border-color: #C5281C;
}
#configuratore-main-wrapper .domanda-opzione.is-selected .domanda-opzione-radio:after {
  background: #C5281C;
}
#configuratore-main-wrapper .domanda-opzione-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#configuratore-main-wrapper .domanda-opzione-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  position: relative;
  border: 1px solid #4C4C4C;
  transition: border-color var(--transition-fast) ease;
}
#configuratore-main-wrapper .domanda-opzione-radio:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  transition: background-color var(--transition-fast) ease;
}
#configuratore-main-wrapper .domanda-opzione-label {
  flex: 1;
}
#configuratore-main-wrapper .domanda-nav {
  justify-content: space-between;
}
#configuratore-main-wrapper .domanda-nav .button-next {
  flex-grow: 1;
}
#configuratore-main-wrapper .domanda-nav .button-prev {
  min-width: 100px;
}
#configuratore-main-wrapper #finale {
  gap: 0;
  padding-top: 20px;
}
#configuratore-main-wrapper #finale > .img-wrapper {
  z-index: 3;
}
#configuratore-main-wrapper #finale > .img-wrapper img {
  z-index: 3;
}
#configuratore-main-wrapper #finale-main {
  position: relative;
  z-index: 1;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-gap-xl);
}
#configuratore-main-wrapper #finale-main .grafico {
  margin: -20px 0;
}
#configuratore-main-wrapper #finale-main .button.red-bg {
  margin: 10px 0;
}
#configuratore-main-wrapper #altri-dispositivi {
  padding-top: 30px;
  width: 100%;
  position: relative;
}
#configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: absolute;
  top: 33%;
  width: 100%;
  z-index: 2;
}
#configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav .button {
  margin: 15px;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  border: none;
  background: #4C4C4C;
  color: #FFFFFF;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav .button:before {
  display: none;
}
#configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav .button:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url("/cmsassets/site/1e103ce5-911d-41a8-96eb-1feb701affa6/jeniot-configuratore-arrow.svg") center/contain no-repeat;
}
#configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav .button.ctPrev:after {
  transform: rotate(-180deg);
}
#configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav .button.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
#configuratore-main-wrapper #altri-dispositivi .swiper-container {
  width: 100%;
  overflow: hidden;
}
#configuratore-main-wrapper #altri-dispositivi .swiper-wrapper {
  align-items: stretch;
}
#configuratore-main-wrapper #altri-dispositivi .swiper-slide {
  display: flex;
  align-items: center;
  height: auto;
}
#configuratore-main-wrapper #altri-dispositivi .swiper-slide p {
  max-width: 700px;
}
#configuratore-main-wrapper .device-card {
  width: 100%;
}
#configuratore-main-wrapper .device-card p {
  position: relative;
}
#configuratore-main-wrapper .device-card p::before {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(10px);
  z-index: -1;
}
#configuratore-main-wrapper .device-card, #configuratore-main-wrapper .device-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-gap-md);
}
#configuratore-main-wrapper .grafico {
  width: min(40vw, 250px);
  aspect-ratio: 1;
  margin: -30px 0;
  display: flex;
  align-items: center;
}
#configuratore-main-wrapper .grafico img {
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.1));
}
#configuratore-main-wrapper .device-card-name, #configuratore-main-wrapper .device-card-image {
  will-change: transform;
}
#configuratore-main-wrapper .device-card-name.is-bounce-zoom, #configuratore-main-wrapper .device-card-image.is-bounce-zoom {
  animation-duration: 0.9s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}
#configuratore-main-wrapper .device-card-name {
  font-size: var(--result-name-size);
  line-height: 1;
}
#configuratore-main-wrapper .device-card-name.is-bounce-zoom {
  animation-name: device-card-name-bounce-zoom;
  animation-delay: 0.5s;
}
#configuratore-main-wrapper .device-card-name.is-bounce-zoom {
  animation-name: device-card-image-bounce-zoom;
  animation-delay: 1s;
}
#configuratore-main-wrapper .device-card-title {
  width: 300px;
  max-width: 75vw;
}
@keyframes device-card-name-bounce-zoom {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes device-card-image-bounce-zoom {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
#configuratore-main-wrapper #upper-right-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: end;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 2;
}
#configuratore-main-wrapper #upper-right-buttons #condividi-hint {
  position: absolute;
  right: 150%;
  top: -10px;
  margin-right: 0;
  padding: 10px 15px;
  border: none;
  outline: none;
  border-radius: 999px;
  background: #4C4C4C;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: var(--font-size-base);
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#configuratore-main-wrapper #upper-right-buttons #condividi-hint.is-visible {
  opacity: 1;
  transform: translateX(0);
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease;
  animation: condividi-hint-wiggle 1.5s ease-in-out infinite;
}
#configuratore-main-wrapper #upper-right-buttons img {
  width: min(5vw, 35px);
  height: auto;
  transition: padding 0.2s ease;
}
#configuratore-main-wrapper #upper-right-buttons img:hover {
  padding: 5%;
}
@keyframes condividi-hint-wiggle {
  0%, 100% {
    margin-right: 0;
  }
  50% {
    margin-right: -5px;
  }
}
#configuratore-main-wrapper #finale-scroll-hint {
  display: flex;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  gap: 10px;
  padding: 15px 20px;
  border: none;
  outline: none;
  border-radius: 999px;
  background: #4C4C4C;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: calc(90vh - 72px);
  top: calc(90dvh - 72px);
  transform: translate(-50%, 100%);
  opacity: 0;
  z-index: 999;
  pointer-events: none;
  font-weight: 700;
  font-size: var(--font-size-base);
  font-family: inherit;
  white-space: nowrap;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
#configuratore-main-wrapper #finale-scroll-hint .finale-scroll-hint-arrow {
  width: 10px;
  transform: rotate(90deg);
}
#configuratore-main-wrapper #finale-scroll-hint.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.45s ease, transform 0.45s ease;
  animation: finale-scroll-hint-wiggle 1.5s ease-in-out infinite;
}
#configuratore-main-wrapper #finale-scroll-hint.is-dismissed {
  opacity: 0;
  cursor: default;
  pointer-events: none;
  animation: none;
  transition: opacity 0.35s ease;
}
#configuratore-main-wrapper #finale-scroll-hint img {
  max-width: unset;
}
@keyframes finale-scroll-hint-wiggle {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}
#configuratore-main-wrapper #preventivo {
  display: flex;
  gap: var(--space-gap-md);
  width: 100%;
  max-width: 700px;
}
#configuratore-main-wrapper #preventivo > * {
  flex: 1;
}
#configuratore-main-wrapper #preventivo .preventivo-button {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  background-color: #EDEDED;
}
#configuratore-main-wrapper #preventivo .preventivo-button img {
  margin: auto;
  padding: 15px;
  max-width: 20vw;
}
#configuratore-main-wrapper #preventivo .preventivo-button div {
  padding: var(--space-padding);
}
#configuratore-main-wrapper #button-generali img {
  width: min(110px, 100%);
}
#configuratore-main-wrapper #button-cattolica img {
  width: min(130px, 100%);
}
#configuratore-main-wrapper .gray-disclaimer {
  background: #4C4C4C;
  color: #FFFFFF;
  width: 100%;
  padding: 20px;
  padding-bottom: 40px;
  margin-top: -20px;
}

#tabella {
  width: 100%;
  margin: 100px auto 0 auto;
}
#tabella .container {
  padding: 0 !important;
}
#tabella .comparative-table {
  text-align: left;
  margin: clamp(50px, 10vw, 100px) auto;
}
#tabella .comparative-table .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tabella .comparative-table .col-4 {
  padding: 15px;
}
#tabella .comparative-table .table-desktop {
  color: #4C4C4C;
}
#tabella .comparative-table .table-desktop .row {
  min-height: 60px;
}
#tabella .comparative-table .table-desktop .row.grey-row .item, #tabella .comparative-table .table-desktop .row.white-row .item {
  height: 100%;
}
#tabella .comparative-table .table-desktop .check {
  width: 24px;
  height: 24px;
}
#tabella .comparative-table .table-desktop .item, #tabella .comparative-table .table-desktop .btn-jeniot {
  display: flex;
  align-items: center;
  justify-content: center;
}
#tabella .comparative-table .table-desktop .btn-jeniot {
  height: 100%;
}
#tabella .table-mobile {
  color: #4C4C4C;
}
#tabella .table-mobile .table-mobile-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
#tabella .table-mobile .table-mobile-nav .button {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  border: none;
  background: #4C4C4C;
  color: #FFFFFF;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#tabella .table-mobile .table-mobile-nav .button:before {
  display: none;
}
#tabella .table-mobile .table-mobile-nav .button:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url("/cmsassets/site/1e103ce5-911d-41a8-96eb-1feb701affa6/jeniot-configuratore-arrow.svg") center/contain no-repeat;
}
#tabella .table-mobile .table-mobile-nav .button.ctPrev:after {
  transform: rotate(-180deg);
}
#tabella .table-mobile .table-mobile-nav .button.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
#tabella .table-mobile .check-container {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
#tabella .comparative-table .table-desktop .text-center,
#tabella .table-mobile .check-container {
  font-size: 44px;
  font-weight: lighter;
  color: #6b6b6b;
}
#tabella .grid-3 {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  -moz-column-gap: 10px;
       column-gap: 10px;
  height: 100%;
}
#tabella .table-header, #tabella .table-specs {
  font-size: 16px;
  font-weight: bold;
}
#tabella .table-specs {
  padding-left: 0;
}
#tabella .table-specs.piccolo {
  font-size: 13px;
  margin-top: 5px;
  display: block;
  line-height: 1.2;
  font-weight: normal;
}
#tabella .align-self-center {
  align-self: center;
}
#tabella .car-icon {
  width: 30px;
  margin-left: 10px;
}
#tabella .asterisco {
  font-size: 50%;
}
#tabella .check-container {
  line-height: 0 !important;
}
#tabella .red-row {
  background-color: #C5281C !important;
  font-weight: bold;
  border-radius: 6px 0 0 6px;
}
#tabella .red-row * {
  color: #FFFFFF !important;
}
#tabella .red-row-mobile {
  border-radius: 0;
  padding: 10px 5px;
  margin-top: 0 !important;
  min-height: 55px !important;
  justify-content: space-between;
}
#tabella .red-row-mobile .col-2 {
  justify-content: end;
}
#tabella .red-row-mobile > * {
  flex-basis: 40%;
  max-width: 40%;
}
#tabella .category-row {
  min-height: 0 !important;
}
#tabella .category-row .item {
  border: 0 !important;
}
#tabella .category-row > .col-4 {
  color: #FFFFFF;
  font-weight: bold;
  background-color: #C5281C;
  padding: 15px;
  border-radius: 6px 0 0 6px;
}
#tabella .category-row .col-8 {
  border: 1px solid #C5281C;
}
#tabella .category-row-mobile {
  min-height: 0 !important;
  color: #C5281C;
  font-weight: bold;
  padding: 15px 0 !important;
}
#tabella .scopri-row .item {
  padding: 30px 0;
  border: none;
}
#tabella .scopri-row .button {
  max-width: none;
}

.category-wrapper {
  border: 1px solid #C5281C;
  border-bottom: 0;
}

@media only screen and (max-width: 990px) {
  #configuratore-main-wrapper #altri-dispositivi {
    width: 100%;
  }
  #configuratore-main-wrapper #finale-main .grafico {
    margin: -20px;
  }
}
@media only screen and (max-width: 900px) {
  .comparative-table .table-desktop .row {
    min-height: 90px;
  }
}
@media only screen and (max-width: 767px) {
  #configuratore-main-wrapper #preventivo {
    flex-direction: column;
  }
  #configuratore-main-wrapper #preventivo .preventivo-button {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: none;
  }
  #configuratore-main-wrapper #preventivo .preventivo-button img {
    margin: 0;
    padding: 15px;
    max-width: 70px;
  }
  #configuratore-main-wrapper #preventivo .preventivo-button div {
    flex: 1;
    display: flex;
    height: 100%;
    align-items: center;
  }
  #configuratore-main-wrapper #finale-main .grafico {
    margin: -20px 0;
  }
  #configuratore-main-wrapper #altri-dispositivi {
    padding-top: 0 !important;
  }
  #configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav {
    top: 33%;
  }
  #configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav .button {
    margin: 0;
  }
  #configuratore-main-wrapper #upper-right-buttons {
    right: 5px;
    top: 0;
  }
  #configuratore-main-wrapper .logo-generali-jeniot-piccolo {
    left: 15px;
    top: 20px;
  }
  #configuratore-main-wrapper .slide:not(#finale) {
    padding-top: 80px;
  }
  #configuratore-main-wrapper .slide:not(#finale) .logo-generali-jeniot-piccolo {
    left: 50%;
    transform: translateX(-50%);
  }
  .comparative-table .table-mobile .swiper-card {
    box-shadow: none !important;
    border: none !important;
  }
  .comparative-table .table-mobile .swiper-card .row.grey-row, .comparative-table .table-mobile .swiper-card .row.white-row {
    min-height: 70px;
  }
  .comparative-table .table-mobile .swiper-card .col-10 {
    align-self: center;
  }
  .comparative-table .table-mobile .row {
    margin: 15px 0;
  }
  .table-header > div {
    background-color: #C5281C;
    display: flex;
    justify-content: center;
  }
  .table-header p {
    width: auto !important;
  }
}
@media only screen and (max-height: 750px) {
  #configuratore-main-wrapper {
    --font-size-base: 1.8667vh;
    --space-padding: 2vh;
    --space-gap-xs: 1.3333vh;
    --space-gap-sm: 1.8667vh;
    --space-gap-md: 2vh;
    --space-gap-lg: 4.8vh;
    --space-gap-xl: 2.6667vh;
    --content-max-width-offset: 4vh;
    --title-1-size: 3.7333vh;
    --title-2-size: 3.4667vh;
    --title-3-size: 2.4vh;
    --title-4-size: 2.4vh;
    --result-name-size: 5.3333vh;
    max-width: 213.3333vh;
  }
  #configuratore-main-wrapper .button, #configuratore-main-wrapper .domanda-opzione {
    box-shadow: 0.2667vh 0.2667vh 1.3333vh rgba(0, 0, 0, 0.1);
    border-radius: 2vh;
  }
  #configuratore-main-wrapper .button:not(.button-prev) {
    width: min(40vh, 100%);
  }
  #configuratore-main-wrapper .divisore {
    height: 0.2667vh;
    margin: clamp(6.6667vh, 9vw, 13.3333vh) 0;
  }
  #configuratore-main-wrapper #intro .logo-generali-jeniot {
    width: min(26.6667vh, 50vw);
    margin-bottom: 6.6667vh;
  }
  #configuratore-main-wrapper .logo-generali-jeniot-piccolo {
    top: 4vh;
    left: 4vh;
    width: min(20vw, 20vh);
  }
  #configuratore-main-wrapper .slide {
    padding: 5.3333vh 0 2.6667vh;
  }
  #configuratore-main-wrapper .domanda-form {
    width: min(106.6667vh, 100%);
    backdrop-filter: blur(1.3333vh);
    border-radius: 4vh;
    box-shadow: 0.2667vh 0.2667vh 1.3333vh rgba(0, 0, 0, 0.1);
    border: 0.2667vh solid #C5281C;
  }
  #configuratore-main-wrapper .domanda-opzioni {
    margin-bottom: 5.3333vh;
  }
  #configuratore-main-wrapper .domanda-opzione {
    border: 0.1333vh solid #EDEDED;
  }
  #configuratore-main-wrapper .domanda-opzione-radio {
    width: 2.6667vh;
    height: 2.6667vh;
    border: 0.1333vh solid #4C4C4C;
  }
  #configuratore-main-wrapper .domanda-opzione-radio:after {
    width: 1.3333vh;
    height: 1.3333vh;
  }
  #configuratore-main-wrapper .domanda-nav .button-prev {
    min-width: 13.3333vh;
  }
  #configuratore-main-wrapper #finale {
    padding-top: 2.6667vh;
  }
  #configuratore-main-wrapper #finale-main .grafico {
    margin: -2.6667vh 0;
  }
  #configuratore-main-wrapper #finale-main .button.red-bg {
    margin: 1.3333vh 0;
  }
  #configuratore-main-wrapper #altri-dispositivi {
    padding-top: 4vh;
  }
  #configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav {
    gap: 1.3333vh;
  }
  #configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav .button {
    margin: 2vh;
    width: 5.3333vh;
    height: 5.3333vh;
    border-radius: 1.3333vh;
  }
  #configuratore-main-wrapper #altri-dispositivi .altri-dispositivi-nav .button:after {
    width: 2.1333vh;
    height: 2.1333vh;
  }
  #configuratore-main-wrapper #altri-dispositivi .swiper-slide p {
    max-width: 93.3333vh;
  }
  #configuratore-main-wrapper .device-card p::before {
    width: calc(100% + 2.6667vh);
    height: calc(100% + 2.6667vh);
    filter: blur(1.3333vh);
  }
  #configuratore-main-wrapper .grafico {
    width: min(40vw, 33.3333vh);
    margin: -4vh 0;
  }
  #configuratore-main-wrapper .grafico img {
    filter: drop-shadow(0.2667vh 0.2667vh 1.3333vh rgba(0, 0, 0, 0.1));
  }
  #configuratore-main-wrapper #upper-right-buttons {
    gap: 2.6667vh;
    top: 1.3333vh;
    right: 2vh;
  }
  #configuratore-main-wrapper #upper-right-buttons img {
    width: min(5vw, 4.6667vh);
  }
  #configuratore-main-wrapper #preventivo {
    max-width: 93.3333vh;
  }
  #configuratore-main-wrapper #preventivo .preventivo-button img {
    padding: 2vh;
  }
  #configuratore-main-wrapper #button-generali img {
    width: min(14.6667vh, 100%);
  }
  #configuratore-main-wrapper #button-cattolica img {
    width: min(17.3333vh, 100%);
  }
  #tabella {
    margin: 13.3333vh auto 0 auto;
  }
  #tabella .comparative-table {
    margin: clamp(6.6667vh, 10vw, 13.3333vh) auto;
  }
  #tabella .comparative-table .col-4 {
    padding: 2vh;
  }
  #tabella .comparative-table .table-desktop .row {
    min-height: 8vh;
  }
  #tabella .comparative-table .table-desktop .check {
    width: 3.2vh;
    height: 3.2vh;
  }
  #tabella .table-mobile .table-mobile-nav {
    gap: 1.3333vh;
    margin-bottom: 1.3333vh;
  }
  #tabella .table-mobile .table-mobile-nav .button {
    width: 5.3333vh;
    height: 5.3333vh;
    border-radius: 1.3333vh;
  }
  #tabella .table-mobile .table-mobile-nav .button:after {
    width: 2.1333vh;
    height: 2.1333vh;
  }
  #tabella .table-mobile .check-container {
    font-size: 5.8667vh;
  }
  #tabella .grid-3 {
    -moz-column-gap: 1.3333vh;
         column-gap: 1.3333vh;
  }
  #tabella .table-header, #tabella .table-specs {
    font-size: 2.1333vh;
  }
  #tabella .table-specs.piccolo {
    font-size: 1.7333vh;
    margin-top: 0.6667vh;
  }
  #tabella .car-icon {
    width: 4vh;
    margin-left: 1.3333vh;
  }
  #tabella .red-row {
    border-radius: 0.8vh 0 0 0.8vh;
  }
  #tabella .red-row-mobile {
    padding: 1.3333vh 0.6667vh;
    min-height: 7.3333vh !important;
  }
  #tabella .category-row > .col-4 {
    padding: 2vh;
    border-radius: 0.8vh 0 0 0.8vh;
  }
  #tabella .category-row .col-8 {
    border: 0.1333vh solid #C5281C;
  }
  #tabella .category-row-mobile {
    padding: 2vh 0 !important;
  }
  #tabella .scopri-row .item {
    padding: 4vh 0;
  }
  .category-wrapper {
    border: 0.1333vh solid #C5281C;
  }
}
@media only screen and (max-height: 750px) and (max-width: 990px) {
  #configuratore-main-wrapper #finale-main .grafico {
    margin: -2.6667vh;
  }
}
@media only screen and (max-height: 750px) and (max-width: 900px) {
  .comparative-table .table-desktop .row {
    min-height: 12vh;
  }
}
@media only screen and (max-height: 750px) and (max-width: 767px) {
  #configuratore-main-wrapper #preventivo .preventivo-button img {
    padding: 2vh;
    max-width: 9.3333vh;
  }
  #configuratore-main-wrapper #finale-main .grafico {
    margin: -2.6667vh 0;
  }
  #configuratore-main-wrapper #upper-right-buttons {
    right: 0.6667vh;
  }
  #configuratore-main-wrapper .logo-generali-jeniot-piccolo {
    left: 2vh;
    top: 2.6667vh;
  }
  #configuratore-main-wrapper .slide:not(#finale) {
    padding-top: 5.6667vh;
  }
  .comparative-table .table-mobile .swiper-card .row.grey-row, .comparative-table .table-mobile .swiper-card .row.white-row {
    min-height: 9.3333vh;
  }
  .comparative-table .table-mobile .row {
    margin: 2vh 0;
  }
}/*# sourceMappingURL=jeniot-configuratore-style.css.map */