/*IPHONE Portrait and Landscape */
/*PASTE THIS:
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2){}*/
/*TABLET Portrait and Landscape*/
/*PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024) and (-webkit-min-device-pixel-ratio: 2){}*/
/*TABLET Portrait */
/*PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1){}*/
/*TABLET Landscape*/
/*PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2){}*/
.bkgDark {
  background-color: #2e3033;
  color: #fff;
}

* {
  font-family: "Montserrat", sans-serif;
}

img {
  width: 100%;
}

.pageVH {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.bkgHome {
  background-image: url("../../images/crippa-configuratore.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.subTitle {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lang-dsk {
  background-color: #e9e9e9;
}
.lang-dsk .lingua {
  box-sizing: content-box;
  width: 20px;
  cursor: pointer;
}
.lang-dsk .lingua img {
  border: 3px solid #e9e9e9;
  border-radius: 100%;
  box-sizing: content-box;
  transition: 0.2s;
}
.lang-dsk .lingua.selected img {
  border: 3px solid #2e3033;
}

.navbar {
  background-color: #2e3033;
}
.navbar li {
  padding: 0px 25px;
}
.navbar li a {
  color: #fff !important;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 44px;
  position: relative;
  cursor: pointer;
}
.navbar .navbar-toggler {
  outline: none !important;
  color: #fff;
}

.confStep {
  text-align: center;
  color: #2e3033;
  padding: 20px;
  background-color: #fff;
  transition: 0.3s;
  border: 2px solid #2e3033;
  text-transform: uppercase;
}
.confStep.active {
  background-color: #2e3033;
  color: #fff;
  cursor: pointer;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
  .confStep {
    display: none;
  }
  .confStep.active {
    display: block;
  }
}

.filedRow {
  margin-bottom: 30px;
}
.filedRow input, .filedRow select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #2e3033;
  outline: none;
  padding: 5px 10px;
  font-size: 14px;
}

.filterButton {
  background-color: #2e3033;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

.content {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.content ::-webkit-scrollbar {
  width: 5px;
}
.content ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.content ::-webkit-scrollbar-thumb {
  background: #2e3033;
}
.content ::-webkit-scrollbar-thumb:hover {
  background: #2e3033;
}

.prodElements {
  max-height: 600px;
  overflow-y: scroll;
}

.mobileHouseType {
  margin-bottom: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.0705882353);
  border: 2px solid #f9f9f9;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
}
.mobileHouseType .img {
  background-image: url("../../images/img.jpg");
  background-size: contain;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
}
.mobileHouseType .typeName {
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  background-color: #2e3033;
  color: #fff;
  font-size: 18px;
}
.mobileHouseType .typeDescr {
  padding: 10px;
  font-size: 14px;
  background-color: #f9f9f9;
}
.mobileHouseType .typeDescr p {
  margin: 0;
}
.mobileHouseType.active {
  border: 2px solid rgba(46, 48, 51, 0.7607843137);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2588235294);
}
.mobileHouseType.active .circle.minus {
  opacity: 1;
  z-index: 99;
}
.mobileHouseType.mobileHouseOption .category {
  background-color: rgba(0, 0, 0, 0.4901960784);
  color: #fff;
  letter-spacing: 5px;
  font-size: 14px;
  padding: 3px 10px;
  text-transform: uppercase;
}
.mobileHouseType.mobileHouseOption .typeName {
  font-weight: 300;
  text-transform: none;
  font-size: 14px;
}

.circle {
  position: absolute;
  bottom: -14px;
  right: -6px;
  background-color: #fff;
  border-radius: 100%;
  padding: 7px;
  width: 18px;
  height: 18px;
  box-sizing: content-box;
  transition: 0.3s;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.0705882353);
}
.circle.plus {
  border: 2px solid #5bbd26;
  z-index: 99;
  opacity: 1;
}
.circle.plus span {
  transition: 0.3s;
  color: #5bbd26;
}
.circle.minus {
  border: 2px solid #b90505;
  opacity: 0;
}
.circle.minus span {
  transition: 0.3s;
  color: #b90505;
}
.circle span {
  font-size: 19px;
}
.circle:hover.plus {
  background-color: #5bbd26;
}
.circle:hover.minus {
  background-color: #b90505;
}
.circle:hover span {
  color: #fff;
}

.buttonStyle {
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border: 2px solid #2e3033;
  transition: 0.2s;
  cursor: pointer;
  background-color: #2e3033;
  color: #fff;
}
.buttonStyle:hover {
  background-color: #fff;
  color: #2e3033;
}

.navButtons .buttonStyle {
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border: 2px solid #2e3033;
  background-color: #fff;
  transition: 0.2s;
  cursor: pointer;
  color: #2e3033;
}
.navButtons .buttonStyle.next {
  background-color: #2e3033;
  color: #fff;
}

.cursor-pointer {
  cursor: pointer;
}

.accordion-item {
  background-color: #f7f7f7;
  margin-bottom: 20px;
}
.accordion-item .accordion-button {
  width: 100%;
  padding: 10px 20px;
  background-color: #2e3033;
  color: #fff;
  text-align: left;
}
.accordion-item .accordion-collapse {
  padding: 5px 15px;
}

.owl-carousel {
  position: static;
}
.owl-carousel.optionsCarousel .owl-nav {
  position: absolute;
  bottom: 0;
  right: 0;
}
.owl-carousel.optionsCarousel .owl-nav button {
  width: 35px;
  height: 35px;
  transition: 0.2s;
  outline: none !important;
}
.owl-carousel.optionsCarousel .owl-nav button span {
  font-size: 20px;
  line-height: 30px;
  transition: 0.2s;
}
.owl-carousel.optionsCarousel .owl-nav button.owl-prev {
  background-color: #7e7e7e;
  color: #fff;
  border: 2px solid #7e7e7e;
}
.owl-carousel.optionsCarousel .owl-nav button.owl-prev:hover {
  background-color: #fff;
  color: #7e7e7e;
}
.owl-carousel.optionsCarousel .owl-nav button.owl-next {
  background-color: #2e3033;
  color: #fff;
  border: 2px solid #2e3033;
}
.owl-carousel.optionsCarousel .owl-nav button.owl-next:hover {
  background-color: #fff;
  color: #2e3033;
}

.summary {
  border: 2px solid #cfcfcf;
}
.summary .img {
  background-image: url("../../images/img.jpg");
  background-size: contain;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
}
.summary .typeDescr {
  font-size: 14px;
  background-color: #f9f9f9;
}
.summary .filedRow input, .summary .filedRow select {
  background-color: transparent;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Sfondo semi-trasparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000; /* Assicurati che sia sopra tutto il resto */
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid black;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */