@charset "utf-8";

/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --color-body: #222;
  --blu: #00335a;
  --rosso: #b14c59;
  --rosso-75: rgba(177, 76, 89, 0.75);
  --rosso-65: rgba(177, 76, 89, 0.65);
}

body {
  color: var(--color-body);
  background-color: #f7f8f9;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  text-transform: none;
  min-height: 100vh;
}

a {
  color: var(--color-body);
}

a:hover,
a:focus {
  color: var(--rosso);
  text-decoration: none;
}

.text-rosso {
  color: var(--rosso);
}

.main-nav,
.dropdown-menu,
.login-register,
.btn.btn-create-listing,
.logged-in-nav,
.btn-phone-number {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
}

.btn.active,
.btn.focus,
.btn:active,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.gap-1 {
  gap: .25rem !important;
}

.gap-2 {
  gap: .5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

strong {
  font-weight: 700;
}

.small-text {
  font-size: 12px;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.radius-4 {
  border-radius: 4px;
}

.font-13 {
  font-size: 13px;
}

.font-15 {
  font-size: 15px;
}

.font-18 {
  font-size: 18px;
}

.line-30 {
  line-height: 30px !important;
}

.btn-facebook {
  color: #506dab;
}

.btn-instagram {
  color: #517fa4;
}

.auto-complete .auto-complete-title a,
.btn-twitter {
  color: #000;
}

.btn-linkedin {
  color: #007bb6;
}

.btn-whatsapp {
  color: #25d366;
}

.font-weight-500 {
  font-weight: 500;
}

main.border-top {
  border-color: var(--rosso) !important;
}

/* -------------------------------------------------------------------------------- */
/* ! Containers
/* -------------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: none;
  }
}

@media (min-width: 1200px) {

  #hp-servizi .container,
  #hp-blog .container {
    max-width: 1165px;
  }
}

@media (min-width: 1500px) {

  #hp-immobili .container,
  #hp-blog .container {
    max-width: 1450px;
  }
}

/* -------------------------------------------------------------------------------- */
/* ! Margin - Padding
/* -------------------------------------------------------------------------------- */

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-20 {
  margin-left: 20px;
}

/* -------------------------------------------------------------------------------- */
/* ! Titoli
/* -------------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
.item-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5em;
}

.titoletto {
  color: var(--rosso);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (max-width : 767px) {
  h2 {
    font-size: 24px;
  }
}

/* -------------------------------------------------------------------------------- */
/* ! Bottoni
/* -------------------------------------------------------------------------------- */

.btn.btn-create-listing {
  color: #ffffff;
  border: 1px solid var(--rosso);
  background-color: var(--rosso);
}

.btn.btn-create-listing:hover,
.btn.btn-create-listing:focus,
.btn.btn-create-listing:active {
  color: #fff;
  border: 1px solid var(--rosso);
  background-color: var(--rosso-75);
}

.bootstrap-select .filter-option-inner,
.btn {
  line-height: 40px;
  font-size: 15px;
}

.btn-primary {
  color: #fff;
  background-color: var(--rosso);
  border-color: var(--rosso);
  transition: .2s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
  color: var(--rosso);
  background-color: #fff;
  border-color: var(--rosso);
}

/* -------------------------------------------------------------------------------- */
/* ! Animazioni
/* -------------------------------------------------------------------------------- */

.animated-div {
  opacity: 0;
  --animation-delay: 0s;
  transition: opacity 0.8s ease-out var(--animation-delay), transform 0.8s ease-out var(--animation-delay);
  will-change: opacity, transform;
}

.animated-div.fade-in-right {
  transform: translateX(100px);
}

.animated-div.fade-in-left {
  transform: translateX(-100px);
}

.animated-div.fade-in-top {
  transform: translateY(-100px);
}

.animated-div.fade-in-bottom {
  transform: translateY(100px);
}

.animated-div.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* -------------------------------------------------------------------------------- */
/* ! Header
/* -------------------------------------------------------------------------------- */

header.transparent {
  position: absolute;
  width: 100%;
  z-index: 4;
}

header:not(.transparent) .logo-bianco,
header.transparent.sticky .logo-bianco,
header.transparent .logo-blu {
  display: none;
}

header:not(.transparent) {
  background-color: #fff;
}

header.transparent.sticky .logo-blu {
  display: inline-block;
}

header .btn {
  padding: 0 15px;
  margin-top: -2px;
}

/* header .logo {
  margin-top: -7px;
} */

.header-desktop {
  line-height: 90px;
  height: 90px;
}

.header-desktop .navbar-nav .nav-link {
  padding: 0 15px;
  color: var(--rosso);
}

header.transparent:not(.sticky) .header-desktop .navbar-nav .nav-link {
  color: #fff;
}

.header-desktop .navbar-nav .nav-link:hover,
.header-desktop .navbar-nav .nav-link:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-desktop .navbar-nav .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 10px;
  font-family: houzez-iconfont;
  content: "";
  vertical-align: unset;
  font-size: 10px;
  font-weight: 700;
  border: none;
}

.header-desktop .dropdown-menu {
  padding: 0;
  border-radius: 0;
  border: none;
  margin: 0;
}

.header-desktop a.dropdown-item {
  border-bottom: 1px solid #eae8e1;
  padding: 15px;
  line-height: 1.5;
  min-width: 250px;
}

.header-desktop a.dropdown-item:hover,
.header-desktop a.dropdown-item:active,
.header-desktop a.dropdown-item:hover {
  background-color: rgba(204, 200, 177, 0.15);
}

.header-desktop .dropdown:hover>.dropdown-menu {
  display: block;
}

header.transparent:not(.sticky) .btn.btn-create-listing {
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
}

header.transparent:not(.sticky) .btn.btn-create-listing:hover,
header.transparent:not(.sticky) .btn.btn-create-listing:focus,
header.transparent:not(.sticky) .btn.btn-create-listing:active {
  color: rgba(255, 255, 255, 1);
  background-color: var(--rosso-65);
}

body.dettaglio header.sticky .header-desktop {
  display: none;
}

body.dettaglio header:not(.sticky) .header-immobile {
  display: none;
}

body.dettaglio .header-immobile a {
  display: block;
  font-size: 13px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .main-nav:not(.houzez-nav-menu-main) .nav-link {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  header .main-nav .dropdown-toggle:after {
    margin-left: 5px;
  }

  header .logo {
    width: 135px;
    margin-right: 10px;
  }

  header .logo img {
    max-width: 100%;
  }

  header .main-nav .dropdown-toggle:after {
    margin-left: 5px !important;
  }
}

@media (min-width: 992px) {
  header.transparent {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  header.scrollable {
    transform: translateY(-100%);
  }

  header.sticky {
    top: 0;
    width: 100%;
    opacity: 1;
    position: fixed !important;
    visibility: visible;
    transition: .4s;
    transform: translate(0, 0) scale(1);
    animation: .4s fadein;
    background-color: #ffffff;
    z-index: 1000;
  }
}

/* START - menu da sx mobile */

.header-mobile {
  padding: 0 10px;
  background-color: var(--rosso);
}

.header-mobile .row {
  height: 60px;
  align-items: center;
  flex-wrap: nowrap;
}

.header-mobile-left,
.header-mobile-center,
.header-mobile-right {
  width: auto;
}

.header-mobile-center .logo-mobile {
  margin-top: -6px;
}

.header-mobile-right {
  min-width: 56px;
}

#openOffcanvasBtn {
  font-size: 20px;
  color: #fff;
  text-decoration: none !important;
  margin-top: -1px;
}

.header-mobile-right .btn {
  margin-top: -1px;
}

#openOffcanvasBtn:focus {
  box-shadow: none;
  border-color: #fff;
}

#closeOffcanvasBtn {
  padding: 8px;
  font-size: 12px;
}

.custom-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1050;
  visibility: hidden;
  overflow-y: scroll;
}

.custom-offcanvas.open {
  transform: translateX(0%);
  visibility: visible;
}

.custom-offcanvas-header {
  padding: 13px 8px 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-offcanvas-header h5 {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.custom-offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.custom-offcanvas-backdrop.show {
  opacity: 1;
  visibility: visible;
}

body.offcanvas-open {
  overflow: hidden;
}

.header-mobile .navbar-nav .dropdown-menu {
  position: static !important;
  transform: none !important;
  border: none;
  margin: 0;
}

.header-mobile .navbar-nav .nav-link {
  border-bottom: 1px solid #dce0e0;
  padding: 15px;
  color: var(--rosso);
  background-color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
}

.header-mobile .navbar-nav .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: auto;
  font-family: houzez-iconfont;
  content: "";
  vertical-align: unset;
  font-size: 10px;
  font-weight: 700;
  border: none;
}

.header-mobile .dropdown-item {
  padding: 15px 0 15px 30px;
  color: var(--rosso);
  border-bottom: 1px solid #dce0e0;
  background-color: #ffffff;
}

.header-mobile .dropdown-item:hover,
.header-mobile .dropdown-item:active,
.header-mobile .dropdown-item:focus {
  background-color: rgba(204, 200, 177, 0.15);
  color: #000;
}

/* END - menu da sx mobile */

@media (max-width : 991px) {

  .header-desktop,
  .header-immobile {
    display: none;
  }
}

@media (min-width : 992px) {
  .header-mobile {
    display: none;
  }
}

/* -------------------------------------------------------------------------------- */
/* ! Footer
/* -------------------------------------------------------------------------------- */

footer {
  padding: 70px 0;
  background-color: var(--rosso);
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}

.footer-title {
  font-family: "Playfair Display", serif;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 24px;
}

footer li {
  padding: 5px 0;
}

.footer-social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 33px;
  background-color: #fff;
  margin-right: 10px;
  border-radius: 36px;
  text-align: center;
  transition: .2s;
}

.footer-social a:hover,
.footer-social a:focus {
  background-color: rgba(255, 255, 255, 0.7);
}

.footer-social svg {
  color: #000;
  height: 22px;
}

footer a.text-white:hover,
footer a.text-white:focus {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

footer .btn-primary-outlined,
#hp-cta .btn-primary-outlined {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
  border-color: #fff;
  padding: 6px 24px;
}

footer .btn-primary-outlined:hover,
footer .btn-primary-outlined:focus,
footer .btn-primary-outlined:active,
#hp-cta .btn-primary-outlined:hover,
#hp-cta .btn-primary-outlined:focus,
#hp-cta .btn-primary-outlined:active {
  color: var(--rosso);
  background-color: #fff;
}

.back-to-top-wrap {
  position: fixed;
  left: auto;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.back-to-top-wrap .btn-back-to-top {
  width: 42px;
  height: 42px;
  line-height: 42px;
  padding: 0;
  color: #fff;
  background-color: var(--rosso);
  border-color: #fff;
  opacity: 0;
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
}

.back-to-top-wrap .btn-back-to-top:hover,
.back-to-top-wrap .btn-back-to-top:focus,
.back-to-top-wrap .btn-back-to-top:active {
  color: var(--rosso);
  background-color: #fff;
  border-color: var(--rosso);
}

.back-to-top-wrap .btn-back-to-top.show {
  opacity: 1;
}

@media (max-width : 767px) {
  footer .text-md-right ul.list-unstyled {
    display: flex;
    column-gap: 40px;
    justify-content: center;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  footer .col-md-3:nth-child(3) {
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }

  footer .col-md-3:nth-child(4) {
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
    max-width: 22%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  footer .btn {
    white-space: normal;
    line-height: 2;
  }
}

@media (max-width : 767px) {

  .footer-title,
  footer li,
  .footer-social {
    text-align: center;
  }

  .footer-social,
  footer .col-md-3:nth-child(3),
  footer .col-md-3:nth-child(1) ul {
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  footer .container {
    max-width: 1210px;
  }
}

/* -------------------------------------------------------------------------------- */
/* ! Select custom
/* -------------------------------------------------------------------------------- */

.cs-wrapper {
  position: relative;
  width: 37.7%;
  margin: 0 5px;
}

#hp-slide .cs-wrapper {
  width: 38%;
}

.cs-select {
  position: relative;
  background-color: #fff;
  border: 1px solid #dce0e0;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px 40px 10px 15px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.cs-select:focus-visible {
  outline: 3px solid #5a9bf6;
  outline-offset: 2px;
}

.cs-select:focus {
  outline: none;
}

.cs-select::after {
  content: "\25BE";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #777;
  pointer-events: none;
}

.cs-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f5f5f5;
}

.cs-options::-webkit-scrollbar {
  width: 6px;
}

.cs-options::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.cs-options::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 4px;
}

.cs-options div {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.cs-options div:hover,
.cs-options div[aria-selected="true"] {
  background-color: rgba(0, 174, 255, .1);
}

.cs-wrapper.open .cs-options {
  display: block;
}

.cs-wrapper.open .cs-select::after {
  content: "\25B4";
}

/* -------------------------------------------------------------------------------- */
/* ! Carosello HP
/* -------------------------------------------------------------------------------- */

.owl-carousel .item {
  background: #fff;
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 5px;
}

.owl-dot.active {
  background: #333;
}

.carousel-control-next,
.carousel-control-prev {
  opacity: .75;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  height: 40px;
  width: 40px;
  z-index: 1;
  text-align: center;
  border-radius: 3px;
  font-weight: 700;
  color: #fff;
  border: none;
  background-image: none;
}

.carousel-control-next-icon {
  text-shadow: -2px 0 2px #000;
  right: 5px;
}

.carousel-control-prev-icon {
  text-shadow: -2px 0 2px #000;
  left: 5px;
}

.carousel-control-next-icon:before,
.carousel-control-prev-icon:before {
  font-size: 24px;
  line-height: 40px;
  -webkit-text-stroke: 1px #fff;
}

.carousel-control-next-icon:before {
  content: "";
  font-family: houzez-iconfont;
}

.carousel-control-prev-icon:before {
  content: "";
  font-family: houzez-iconfont;
}

.carousel-inner:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transition: .2s;
  opacity: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .75) 100%);
  z-index: 1;
}

.item:hover .carousel-inner:before {
  opacity: 0;
}

/* -------------------------------------------------------------------------------- */
/* ! Elenco immobili
/* -------------------------------------------------------------------------------- */

.elenco-immobili .etichetta {
  top: 17px;
  right: 20px;
  position: absolute;
  z-index: 10;
}

.elenco-immobili .etichetta a,
.elenco-immobili .etichetta span {
  font-size: 10px;
  line-height: 11px;
  margin: 0;
  text-transform: uppercase;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, .65);
  margin-left: 3px;
  color: #fff;
  font-weight: 500;
}

.elenco-immobili .item-body {
  padding: 10px 20px 15px;
  border-left: 1px solid #dce0e0;
  border-right: 1px solid #dce0e0;
  color: var(--color-body) !important;
}

.elenco-immobili .item-body ul {
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  row-gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.elenco-immobili .item-body ul.item-tipologia {
  margin: 10px 12px 5px 0;
  text-transform: uppercase;
  font-size: 12px;
}

.elenco-immobili .item-body ul.item-tipologia li {
  margin-bottom: 5px;
}

.elenco-immobili .item-body ul.item-price-wrap {
  margin-bottom: 20px;
  display: block;
}

.elenco-immobili .item-body ul li.item-price {
  font-size: 16px;
  margin-right: 10px;
  display: inline;
  font-weight: 600;
  display: inline;
}

.elenco-immobili .item-body ul li.item-sub-price {
  font-size: 12px;
  margin-right: 10px;
  display: inline;
  font-weight: 300;
}

.elenco-immobili h2.item-title {
  margin-bottom: 7px;
  font-size: 16px;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.elenco-immobili .item-body:hover h2.item-title,
.elenco-immobili .item-body:focus h2.item-title {
  color: var(--rosso);
}

.elenco-immobili .item-address {
  margin-bottom: 5px;
  color: #636363;
  font-size: 13px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.elenco-immobili .item-servizi {
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  row-gap: 10px;
}

.elenco-immobili .item-servizi-text {
  display: none;
}

.elenco-immobili .item-servizi li {
  margin-right: 12px;
}

.elenco-immobili .item-servizi i {
  font-size: 18px;
}

.elenco-immobili .item-footer {
  padding: 10px;
  border: 1px solid #dce0e0;
  border-radius: 0 0 4px 4px;
}

.elenco-immobili .item-footer .item-buttons-wrap,
.dettaglio #contatto .item-buttons-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  grid-column-gap: 5px;
  font-size: 12px;
}

.elenco-immobili .btn-item,
.dettaglio #contatto .btn-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  bottom: 0;
  width: 50%;
}

.elenco-immobili .btn-item:last-child,
.dettaglio #contatto .btn-item:last-child {
  flex-shrink: 2;
}

.elenco-immobili .item-buttons-wrap .btn-item i,
.dettaglio #contatto .item-buttons-wrap .btn-item i {
  position: relative;
  font-size: 17px;
  line-height: 37px;
  margin-right: 5px;
}

.btn-primary-outlined {
  color: var(--rosso);
  background-color: transparent;
  border-color: var(--rosso);
}

.btn-primary-outlined:hover {
  color: #fff;
  background-color: var(--rosso);
  border-color: var(--rosso);
}

/* -------------------------------------------------------------------------------- */
/* ! Home Page
/* -------------------------------------------------------------------------------- */

/* .video-background-container {
  position: absolute;
  width: 100%;
  height: 720px;
  overflow: hidden;
}

.video-background-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media (min-aspect-ratio: 16/9) {
  .video-background-container iframe {
    width: 100vw;
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-background-container iframe {
    width: 177.78vh;
    height: 120vh;
  }
} */

/* video vimeo */

.vimeo-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  height: 100dvh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: url(../img/video-poster-home.webp) no-repeat center center;
  background-size: cover;
}

.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px),
(max-height: 750px) {
  .vimeo-wrapper {
    height: 100vh;
  }
}

#hp-slide {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

#hp-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #000;
  opacity: .5;
  mix-blend-mode: multiply;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

#hp-slide .container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100dvh;
}

#hp-slide h1 {
  color: #FFFFFF;
  font-size: 50px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 20px;
}

#hp-slide p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85rem;
}

#hp-slide form {
  max-width: 80%;
}

#hp-slide fieldset {
  display: flex;
}

#hp-slide fieldset [type="radio"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

#hp-slide fieldset label {
  display: block;
  cursor: pointer;
  margin-right: 1px;
  margin-bottom: 0;
}

#hp-slide fieldset [type="radio"]+span {
  display: block;
  border-radius: 4px 4px 0 0;
  padding: 12px 20px;
  color: #ffffff;
  background-color: var(--rosso);
  font-weight: 500;
}

#hp-slide fieldset [type="radio"]:checked+span {
  color: #000000;
  background-color: #ffffff;
}

#hp-slide .select-group,
#ricercaDueColonne .select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #FFFFFF;
  padding: 8px 5px 8px 5px;
  border-radius: 0px 8px 8px 8px;
}

#hp-slide button,
#ricercaDueColonne button {
  background-color: var(--rosso);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1rem;
  padding: 15px 30px;
  width: calc(25% - 40px);
  margin: 0 5px;
  color: #fff;
  border: 1px solid var(--rosso);
  height: calc(100% - 2px);
}

#hp-slide button:hover,
#hp-slide button:focus,
#hp-slide button:active,
#ricercaDueColonne button:hover,
#ricercaDueColonne button:focus,
#ricercaDueColonne button:active {
  background-color: #fff;
  color: var(--rosso);
}

#hp-intro {
  padding-top: 80px;
  padding-bottom: 110px;
  background-color: #f7f8f9;
}

#hp-intro .testo {
  padding-right: 70px;
}

#hp-intro .citazione {
  padding: 0px 0px 0px 70px;
  border-style: solid;
  border-width: 0px 0px 0px 1px;
  border-color: #ADAA97;
}

#hp-intro img {
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.1);
}

#hp-numeri {
  padding: 110px 0;
  background-color: #f3eff1;
}

#hp-numeri .numero {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  max-width: 200px;
  margin: 30px auto;
}

#hp-immobili {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 110px;
}

#hp-immobili .owl-carousel .owl-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

#hp-recensioni {
  background-color: #f7f8f9;
  padding-top: 110px;
  padding-bottom: 80px;
}

#hp-recensioni .owl-next,
#hp-recensioni .owl-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #000;
  text-align: center;
  background: 0 0;
  border: 0;
  transition: opacity .15s ease;
  font-size: 30px;
}

#hp-recensioni .owl-next span,
#hp-recensioni .owl-prev span {
  display: none;
}

#hp-recensioni .owl-next {
  right: -15%;
}

#hp-recensioni .owl-prev {
  left: -15%;
}

#hp-recensioni .owl-next:before {
  content: "";
  font-family: houzez-iconfont;
}

#hp-recensioni .owl-prev:before {
  content: "";
  font-family: houzez-iconfont;
}

#hp-recensioni .nome {
  padding: 0px 10px 10px;
}

#hp-recensioni .testo {
  padding: 0px 10px 30px;
}

#hp-cta .left,
#hp-cta .right {
  min-height: 780px;
  background: url('https://demo24.houzez.co/wp-content/uploads/2022/03/bg-01.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#hp-cta .right {
  background: url('https://demo24.houzez.co/wp-content/uploads/2022/03/bg-03.jpg') no-repeat center center;
  background-size: cover;
}


#hp-cta .left::before,
#hp-cta .right::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #000;
  opacity: .65;
}

#hp-cta .titoletto {
  margin-bottom: 35px;
  color: #fff;
}

#hp-cta .titolo {
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.5em;
  letter-spacing: 5px;
  color: #FFFFFF;
  margin-bottom: 45px;
}

#hp-servizi {
  padding-top: 110px;
  padding-bottom: 80px;
  background-color: #fff;
}

#hp-servizi .griglia {
  display: grid;
  grid-template-rows: auto;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

#hp-servizi .griglia .colonna-quadrata {
  grid-column: span 1;
  aspect-ratio: 1;
  position: relative;
}

#hp-servizi .griglia .colonna-rettangolare {
  grid-column: span 2;
  position: relative;
}

#hp-servizi .griglia .colonna-rettangolare.tre {
  grid-column: span 3;
  position: relative;
}

#hp-servizi .griglia .colonna-quadrata,
#hp-servizi .griglia .colonna-rettangolare {
  min-width: 0;
}

#hp-servizi .griglia .colonna-quadrata:before,
#hp-servizi .griglia .colonna-rettangolare:before,
#hp-servizi .griglia .colonna-full-width:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: .4;
  background-color: #000;
  position: absolute;
  transition: .2s;
}

#hp-servizi .griglia .colonna-quadrata:hover:before,
#hp-servizi .griglia .colonna-rettangolare:hover:before,
#hp-servizi .griglia .colonna-full-width:hover:before {
  opacity: 0;
}

#hp-servizi .griglia a {
  position: relative;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 5px;
}

#hp-servizi .griglia a div {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

#hp-servizi .living {
  background: url(../img/residenziale.webp) no-repeat center center;
  background-size: cover;
}

#hp-servizi .impresa {
  background: url(../img/impresa.webp) no-repeat center center;
  background-size: cover;
}

#hp-servizi .op-immobiliari {
  background: url(../img/operazioni-imm.webp) no-repeat center center;
  background-size: cover;
}

#hp-servizi .realizzazioni {
  background: url(../img/nuove-realizzazioni.webp) no-repeat center center;
  background-size: cover;
}

#hp-servizi .analisi {
  background: url(../img/analisi-patrimoniale.webp) no-repeat center center;
  background-size: cover;
}

#hp-servizi .estero {
  background: url(../img/estero-hp.webp) no-repeat center center;
  background-size: cover;
}

#hp-servizi .nuda-proprieta {
  background: url(../img/nuda-proprieta.webp) no-repeat center center;
  background-size: cover;
}

#hp-blog {
  padding-top: 80px;
  padding-bottom: 110px;
  background-color: #fff;
}

#hp-blog .blog-post-item {
  padding: 8px 0;
  margin-bottom: 8px;
  background-color: #fff;
}

#hp-blog .blog-post-image {
  border-radius: 3px;
  overflow: hidden;
}

#hp-blog .blog-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: none;
}

#hp-blog .blog-post-image:before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transition: .2s;
  opacity: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .75) 100%);
  z-index: 1;
}

#hp-blog .blog-post-image:hover:before,
#hp-blog .blog-post-image:focus:before {
  opacity: 0;
}

#hp-blog .list-inline {
  display: flex;
}

#hp-blog .list-inline-item {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 12px;
  color: #636363;
}

#hp-blog .list-inline-item:not(:last-child) {
  margin-right: .5rem;
}

#hp-blog h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

#hp-blog .blog-post-content {
  padding: 10px 20px 20px;
}

#hp-blog .blog-post-body {
  color: #636363;
  font-size: 13px;
  line-height: 21px;
  padding-bottom: 10px;
}

#hp-blog .blog-post-link {
  font-size: 13px;
  line-height: 21px;
  font-weight: 500;
}

#hp-blog .blog-post-author {
  border-top: 1px solid #dce0e0;
  padding: 8px 20px 0;
  display: flex;
  align-items: center;
  column-gap: normal;
  color: #636363;
  font-size: 12px;
}

@media (min-width : 1600px) {
  #hp-immobili .owl-carousel .owl-item img {
    height: 340px;
  }
}

@media (min-width : 768px) {
  #hp-blog .col-md-4 {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 1399px) {
  #hp-recensioni .owl-prev {
    left: 0;
    justify-content: start;
  }

  #hp-recensioni .owl-next {
    right: 0;
    justify-content: end;
  }
}

@media (max-width: 1199px) {
  .header-desktop .navbar-nav .nav-link {
    padding-left: 8px;
    padding-right: 8px;
  }

  #hp-intro .testo {
    padding-right: 0;
    padding-left: 50px;
    order: 2;
  }

  #hp-slide h1 {
    max-width: 635px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.3em;
  }

  #hp-slide p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  #hp-slide form {
    margin-left: auto;
    margin-right: auto;
  }

  #hp-slide fieldset {
    justify-content: center;
  }

  #hp-slide fieldset [type="radio"]+span {
    padding: 8px 16px;
  }

  #hp-servizi .griglia a {
    letter-spacing: 3px;
  }

  #hp-servizi .griglia a div {
    padding: 20px;
  }

  #hp-servizi .griglia .colonna-rettangolare.living {
    grid-column: span 3;
    position: relative;
  }

  #hp-servizi .griglia .colonna-quadrata.op-immobiliari,
  #hp-servizi .griglia .colonna-quadrata.realizzazioni {
    grid-column: span 2;
    position: relative;
    height: 144.5px;
    aspect-ratio: auto;
  }

  #hp-servizi .griglia .colonna-rettangolare.analisi {
    grid-column: span 4;
    position: relative;
    height: 144.5px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #hp-immobili .owl-carousel .owl-item img {
    height: 230px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #hp-slide form {
    max-width: 100%;
  }

  .cs-select {
    font-size: .9rem;
  }

  #hp-intro .container {
    max-width: 900px;
  }

  #hp-intro .citazione {
    padding: 0px 0px 0px 30px;
  }

  #hp-cta .left,
  #hp-cta .right {
    padding: 50px;
  }
}

@media (max-width : 767px) {
  #hp-slide h1 {
    font-size: 27px;
    max-width: 245px;
  }

  #hp-slide p {
    font-size: 16px;
  }

  #hp-slide .select-group {
    flex-direction: column;
    row-gap: 10px;
  }

  .cs-wrapper,
  #hp-slide .cs-wrapper,
  #hp-slide button {
    width: 100%;
    margin: 0;
  }

  #hp-slide form {
    max-width: 90%;
  }

  #hp-intro .testo {
    order: 1;
    padding: 0px 15px 15px;
  }

  #hp-intro .citazione {
    padding: 0px 0px 0px 30px;
  }

  #hp-intro .immagine {
    order: 2;
  }

  #hp-numeri .testo {
    margin-top: 15px;
  }

  #hp-cta .left,
  #hp-cta .right {
    min-height: 390px;
    padding: 50px;
  }

  #hp-servizi .griglia .colonna-rettangolare,
  #hp-servizi .griglia .colonna-quadrata {
    grid-column: span 4 !important;
    height: 140px;
    aspect-ratio: auto;
  }

  #hp-numeri .numero {
    margin: 20px auto 10px;
  }
}

/* -------------------------------------------------------------------------------- */
/* ! Dettaglio immobile
/* -------------------------------------------------------------------------------- */

@media (min-width: 1200px) {
  body.dettaglio .container {
    max-width: 1310px;
  }
}

@media (min-width: 992px) {
  .bt-content-wrap {
    width: 70%;
    max-width: 70%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    margin-bottom: 30px;
  }

  .bt-sidebar-wrap {
    width: 30%;
    max-width: 30%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
  }
}

body.dettaglio textarea.form-control {
    height: auto;
    max-height: 70px;
    font-size: 13px;
}

.page-title-wrap {
  padding: 30px 0;
}

.breadcrumb {
  font-size: 13px;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb .icon-house {
  margin-right: 10px;
}

.breadcrumb a {
  color: #adaa97;
}

.breadcrumb-item.active {
  color: var(--color-body);
}

.breadcrumb-item.breadcrumb-item-back-to-search:before {
  content: "";
  font-family: houzez-iconfont;
  font-size: 10px;
  margin-right: 8px;
}

.item-tool>span {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  border: 1px solid transparent;
  background-color: rgba(0, 0, 0, .35);
  text-align: center;
  transition: .2s;
  border-radius: 4px;
}

.page-title-wrap .item-tool span {
  color: #000;
  border: 1px solid #000;
  background-color: transparent;
}

.page-title-wrap .item-tool span:hover {
  background-color: rgba(0, 0, 0, .85);
  color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
  padding-right: .5rem;
  padding-left: 0;
  content: "";
  font-family: houzez-iconfont;
  font-size: 10px;
}

.page-title h1 {
  margin: 0;
  font-size: 30px;
}

.property-price-wrap .item-price {
  font-size: 28px;
  font-weight: 700;
}

.property-price-wrap .item-sub-price {
  font-size: 18px;
  color: #636363;
}

.item-address {
  color: #636363;
  font-size: 15px;
}

.page-title-wrap .label {
  font-size: 12px;
  padding: 8px 10px;
  line-height: 1;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, .65);
  color: #fff;
  border-radius: 4px;
}

.block-wrap {
  padding: 20px;
  background-color: #fff;
  margin-top: 30px;
  border-radius: 4px;
}

.block-title-wrap {
  border-bottom: 1px solid #dce0e0;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.block-title-wrap h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}

.property-overview-wrap ul li {
  color: #5c6872;
  margin: 0;
}

.property-overview-description {
  font-size: 13px;
  line-height: 20px;
  color: #5c6872;
}

.property-overview-description strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-body);
}

.property-overview-item .houzez-icon {
  font-size: 24px;
}

.block-content-wrap .block-title-wrap {
  margin-top: 40px;
  margin-bottom: 25px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid #dce0e0;
  margin-bottom: 30px;
}

.block-title-wrap h3 {
  font-size: 16px;
  font-weight: 400;
}

.property-document-link a,
.agent-information .agent-link a,
body.dettaglio a.agent-list-link {
  font-weight: 600;
  color: var(--rosso);
}

.property-document-link a:hover,
.property-document-link a:focus {
  color: var(--color-body);
}

body.dettaglio .btn-group-sm>.btn,
.btn-sm {
  padding: .25rem .5rem;
  line-height: 1.5;
  font-weight: 600;
  font-size: 15px;
}

.btn-slim {
  line-height: 26px;
  padding: 0 10px;
  font-size: 12px !important;
  height: 28px;
}

.list-lined .list-lined-item {
  border-bottom: 1px solid #dce0e0;
}

.detail-wrap {
  background-color: rgba(0, 232, 89, 0.1);
  border: 1px solid #a2d67e;
  padding: 30px;
  border-radius: 4px;
}

.accordion-header[aria-expanded=false] .accordion-title:before {
  content: "";
}

.accordion-header[aria-expanded=true] .accordion-title:before {
  content: "";
}

.accordion-header .accordion-title:before {
  font-family: houzez-iconfont;
  font-size: 14px;
  margin-right: 5px;
  font-weight: 600;
  color: var(--rosso);
}

.accordion-tab {
  border-bottom: 1px solid #dce0e0;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.dettaglio ul.agent-list-contact li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #dce0e0;
  line-height: 30px;
}

body.dettaglio .owl-thumbs {
  cursor: pointer;
}

body.dettaglio .owl-carousel.owl-main img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

body.dettaglio .owl-carousel.owl-thumbs img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

body.dettaglio #contatto .agent-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

body.dettaglio #correlati .owl-carousel .owl-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

body.dettaglio #vicinanze ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
  padding: 0;
  margin: 0;
}

body.dettaglio #vicinanze ul li {
  width: calc(25% - 15px);
  margin-bottom: 30px;
}

body.dettaglio #vicinanze ul li img {
  margin-bottom: 10px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.dettaglio .owl-carousel.owl-main img {
    height: 650px;
  }

  body.dettaglio .owl-carousel.owl-thumbs img {
    height: 90px;
  }

  body.dettaglio #correlati .owl-carousel .owl-item img {
    height: 230px;
  }

  body.dettaglio #contatto .btn-item.telefono {
    width: 75%;
  }

  body.dettaglio #contatto .btn-item.wathsapp {
    width: 25%;
  }

  body.dettaglio #contatto .btn-item.wathsapp i {
    margin-right: 0;
  }

  body.dettaglio #contatto .btn-item.wathsapp span {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.dettaglio .owl-carousel.owl-main img {
    height: 650px;
  }

  body.dettaglio .owl-carousel.owl-thumbs img {
    height: 70px;
  }

  body.dettaglio #correlati .owl-carousel .owl-item img {
    height: 230px;
  }
}

@media (max-width : 767px) {
  .block-wrap {
    padding: 30px 20px;
  }

  .detail-wrap {
    padding: 20px;
  }

  body.dettaglio .owl-carousel.owl-main img {
    height: 350px;
  }

  body.dettaglio .owl-carousel {
    margin-left: -15px;
    width: calc(100% + 30px);
  }

  body.dettaglio .owl-carousel.owl-thumbs img {
    height: 40px;
  }

  body.dettaglio #correlati .owl-carousel .owl-item img {
    height: 230px;
  }

  body.dettaglio #vicinanze ul li {
      width: calc(33.3333% - 15px);
      font-size: 13px;
  }
}

@media (min-width: 992px) {
  body.dettaglio #contatto {
    position: sticky;
    top: 70px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ffe1e5 #ffffff;
  }

  /* --- CSS Personalizzazione Scrollbar (Webkit: Chrome, Safari, Edge) --- */

  /* 1. Larghezza della scrollbar */
  body.dettaglio #contatto::-webkit-scrollbar {
    width: 8px;
  }

  /* 2. Lo "sfondo" (Track) */
  body.dettaglio #contatto::-webkit-scrollbar-track {
    background: #f4f4f9;
    border-radius: 10px;
  }

  /* 3. Il "pollice" o maniglia (Thumb) */
  body.dettaglio #contatto::-webkit-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 10px;
    border: 2px solid #ffffff;
    /* Lascia un piccolo spazio interno */
  }

  /* 4. Stato Hover */
  body.dettaglio #contatto::-webkit-scrollbar-thumb:hover {
    background-color: #0056b3;
  }

}

/* -------------------------------------------------------------------------------- */
/* ! Immobili Mappa */
/* -------------------------------------------------------------------------------- */

.immobili-mappa main {
  height: calc(100dvh - 90px);
  display: flex;
}

.immobili-mappa .embed-container {
  position: relative;
  padding-bottom: calc(100dvh - 90px);
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.immobili-mappa .embed-container iframe,
.immobili-mappa .embed-container object,
.immobili-mappa .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.immobili-mappa .right .ricerca {
  padding: 30px 20px;
  background-color: #fff;
}

.immobili-mappa .ricerca input {
  font-size: 15px;
  line-height: 42px;
  height: 42px;
}

.location-search .location-trigger {
  margin: 1px;
  border-left: 1px solid #dce0e0;
  border-top-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 0;
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.immobili-mappa .range-text,
.immobili-mappa .features-list-wrap .control--checkbox,
.immobili-mappa .features-list-wrap .btn-features-list {
  color: #222222;
}

.control {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.control {
  font-weight: 500;
}

.control--checkbox,
.control--radio,
.features-list-wrap .btn-features-list,
.overlay-search-advanced-module .overlay-search-module-close,
.overlay-search-advanced-module .search-title,
.range-text {
  color: #222;
}

.control.control--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.control__indicator {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
}

.range-wrap .raggio {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 15px;
}

.range-wrap .raggio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.range-wrap .raggio .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 2px;
}

.range-wrap .raggio:hover input~.checkmark {
  background-color: #ccc;
}

.range-wrap .raggio input:checked~.checkmark {
  background-color: var(--rosso);
}

.range-wrap .raggio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.range-wrap .raggio input:checked~.checkmark:after {
  display: block;
}

.range-wrap .raggio .checkmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.range-wrap input[type="range"] {
  width: 100%;
}

.immobili-mappa main .right {
  overflow-y: auto;
  height: calc(100dvh - 90px);
  overflow-x: hidden;
}

.immobili-mappa main .right .dropdown-menu {
  text-transform: none;
  width: 260px;
}

.immobili-mappa main .right .dropdown-menu .opzioni {
  max-height: 220px;
  overflow-y: auto;
}

.immobili-mappa main .dropdown-item input {
  display: none;
}

.immobili-mappa main .ricerca .dropdown-item.selected {
  font-weight: 700;
}

.immobili-mappa main .ricerca .dropdown-item.selected:after {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  font-family: houzez-iconfont;
  font-weight: 400;
}

.immobili-mappa main .dropdown-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.row#finteSelect {
  margin-right: -4px;
  margin-left: -4px;
}

.immobili-mappa main .col,
.immobili-mappa main .col-8,
.immobili-mappa main .col-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.immobili-mappa main .col .btn-outline-secondary,
.immobili-mappa main .col-4 .btn-outline-secondary {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  text-align: left;
  border-color: #dce0e0;
  color: #222;
  background-color: #fff !important;
}

.immobili-mappa main .col .btn-outline-secondary span,
.immobili-mappa main .col-4 .btn-outline-secondary span {
  overflow: hidden;
}

.immobili-mappa main .col .btn-outline-secondary::after,
.immobili-mappa main .col-4 .btn-outline-secondary::after {
  content: "";
  font-size: 10px;
  font-weight: 700;
  font-family: houzez-iconfont;
  border-style: none;
  margin-left: 15px;
}

.immobili-mappa main .col .btn-outline-secondary:hover,
.immobili-mappa main .col .btn-outline-secondary:focus,
.immobili-mappa main .col-4 .btn-outline-secondary:hover,
.immobili-mappa main .col-4 .btn-outline-secondary:focus {
  background-color: #fff;
  border-color: #dce0e0;
  color: #222;
  box-shadow: none;
}

.immobili-mappa main .col .dropdown-header,
.immobili-mappa main .col .dropdown-item,
.immobili-mappa main .col-4 .dropdown-header,
.immobili-mappa main .col-4 .dropdown-item {
  padding: 0;
}

.immobili-mappa main .col .dropdown-item,
.immobili-mappa main .col-4 .dropdown-item {
  display: flex;
  justify-content: space-between;
  background-color: #fff !important;
  cursor: pointer;
  font-size: 15px;
  padding: 5px 8px;
}

.immobili-mappa main .col .dropdown-item:hover,
.immobili-mappa main .col .dropdown-item:focus,
.immobili-mappa main .col-4 .dropdown-item:hover,
.immobili-mappa main .col-4 .dropdown-item:focus {
  background-color: rgba(0, 174, 255, .1) !important;
}

.immobili-mappa main .col .btn-light,
.immobili-mappa main .col-4 .btn-light {
  font-size: 12px;
  border-color: #dce0e0;
  padding: 4px 8px;
  font-weight: 400;
  background-color: #fff !important;
}

.immobili-mappa main .dropdown[data-type=single] .dropdown-menu {
  width: 100%;
  left: auto;
  right: -4px;
}

.immobili-mappa main #riordino .dropdown[data-type=single] .dropdown-toggle::before {
  content: 'Ordina per: ';
  display: block;
}

.immobili-mappa main #riordino .dropdown[data-type=single] .dropdown-menu {
  max-width: 251px;
  right: 15px;
  font-size: 15px;
}

.immobili-mappa main #riordino .dropdown[data-type=single] .dropdown-menu .dropdown-item {
  padding: .25rem 1rem;
  color: var(--color-body);
  background-color: transparent !important;
  cursor: pointer;
}

.immobili-mappa main #riordino .dropdown[data-type=single] .dropdown-toggle {
  background-color: transparent !important;
  color: var(--color-body) !important;
}

.immobili-mappa main #riordino .dropdown[data-type=single] .dropdown-toggle::after {
  content: "";
  font-size: 10px;
  font-weight: 700;
  font-family: houzez-iconfont;
  border-style: none;
}

.immobili-mappa main .right .elenco-immobili .immagini {
  width: 280px;
  position: relative;
}

.immobili-mappa main .right .elenco-immobili .immagini img {
  border-radius: 4px 0 0 0;
  width: 280px;
  height: 210px;
  object-fit: cover;
}

.immobili-mappa main .right .elenco-immobili .item-body {
  padding: 0 20px 0 30px;
  border: none;
}

.immobili-mappa main .right .elenco-immobili {
  padding: 0 12px;
}

.immobili-mappa main .right .elenco-immobili .item {
  border: 1px solid #dce0e0;
  border-radius: 4px;
  margin-top: 24px;
  background-color: #fff;
}

.immobili-mappa main .right .elenco-immobili .item-footer {
  border: none;
  border-top: 1px solid #dce0e0;
  display: flex;
  justify-content: space-between;
}

.immobili-mappa main .right .elenco-immobili .item-footer .espandi {
  max-width: 35px;
  padding-left: 6px;
  padding-right: 6px;
}

.immobili-mappa main .right .page-link {
  color: var(--color-body);
  border: 1px solid transparent !important;
  margin: 1px;
  height: 38px;
  line-height: 17px;
  font-size: 15px;
  width: 38px;
  text-align: center;
  box-shadow: none !important;
  border-radius: 4px;
}

.immobili-mappa main .right .page-item.active .page-link {
  color: #fff;
  background-color: var(--rosso);
}

#ricercaAvanzataButton {
  width: 100%;
}

#ricercaAvanzataButton a.btn {
  font-size: 15px;
  line-height: 28px;
  padding: 6px 12px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
  border-color: #dce0e0;
}

#ricercaAvanzataButton a.btn:before {
  color: #a1a7a8;
  margin-right: 5px;
  content: "";
  text-align: center;
  font-family: houzez-iconfont;
}

#ricercaAvanzataMobile {
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1000;
  background-color: #fff;
  transition: all .6s cubic-bezier(.215, .61, .355, 1);
}

#ricercaAvanzataMobile.show {
  top: 0;
}

#ricercaAvanzataMobile .icon-close,
#ricercaAvanzataButton a {
  cursor: pointer;
}

#ricercaAvanzataMobile .row {
  margin-right: -4px;
  margin-left: -4px;
}

@media (min-width: 1200px) {
  .immobili-mappa main .right {
    width: 780px;
  }

  .immobili-mappa main .left {
    width: calc(100% - 780px);
  }
}

@media (max-width: 1199px) {
  .immobili-mappa main .right {
    width: 640px;
  }

  .immobili-mappa main .left {
    width: calc(100% - 640px);
  }
}

@media (max-width: 991px) {
  .immobili-mappa main .right {
    width: 375px;
  }

  .immobili-mappa main .left {
    width: calc(100% - 375px);
  }

  .immobili-mappa main .right .elenco-immobili .item-body {
    padding: 20px;
    width: 100%;
  }

  .immobili-mappa main .right .elenco-immobili .immagini {
    width: 100%;
  }

  .immobili-mappa .right .ricerca,
  .immobili-mappa .elenco-immobili .item-footer .item-buttons-wrap.agente {
    display: none;
  }

  .immobili-mappa main .right #riordino .dropdown[data-type=single] .dropdown-toggle {
    padding: 0;
    margin-top: 10px;
  }

  .immobili-mappa main {
    flex-wrap: wrap;
    height: calc(100dvh - 60px);
  }

  .immobili-mappa main .left,
  .immobili-mappa main .right {
    height: calc(100dvh - 122px);
  }

  .immobili-mappa main .left {
    height: calc(100dvh - 122px);
    overflow: hidden;
  }

  .immobili-mappa main .dropdown-menu {
    text-transform: none;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .immobili-mappa main .right .elenco-immobili .immagini img {
    height: 250px;
  }
}

@media (max-width: 767px) {

  .immobili-mappa main,
  .immobili-mappa main .right {
    height: auto;
  }

  .immobili-mappa main .left,
  .immobili-mappa main .right {
    width: 100%;
  }

  .immobili-mappa main .left {
    height: 300px;
  }


}

/* -------------------------------------------------------------------------------- */
/* ! Range singolo */
/* -------------------------------------------------------------------------------- */

.range {
  --track-h: 4px;
  --track: #DCE0E0;
  --fill: var(--rosso);
  --thumb-d: 30px;
  --thumb-bg: #fff;
  --thumb-b: var(--track);
  --sx: 0%;
  width: 100%;
}

.range-wrap {
  padding: 8px 0;
}

.range {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.range::-webkit-slider-runnable-track {
  height: var(--track-h);
  border-radius: 0px;
  background:
    linear-gradient(var(--fill) 0 0) 0 / var(--sx) 100% no-repeat,
    var(--track);
}

.range::-moz-range-track {
  height: var(--track-h);
  border-radius: 0px;
  background: var(--track);
}

.range::-moz-range-progress {
  height: var(--track-h);
  border-radius: 0px;
  background: var(--fill);
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: var(--thumb-d);
  height: var(--thumb-d);
  border-radius: 50%;
  background: var(--thumb-bg);
  border: 2px solid var(--thumb-b);
  margin-top: calc((var(--track-h) - var(--thumb-d)) / 2);
}

.range::-moz-range-thumb {
  width: var(--thumb-d);
  height: var(--thumb-d);
  border-radius: 50%;
  background: var(--thumb-bg);
  border: 2px solid var(--thumb-b);
}

.range:focus {
  outline: none;
}

.range:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(163, 157, 107, .25);
}

.range:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(163, 157, 107, .25);
}

/* -------------------------------------------------------------------------------- */
/* ! Range doppio */
/* -------------------------------------------------------------------------------- */

.drange {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 50px;
  margin-top: 30px;
}

.drange .track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #DCE0E0;
  transform: translateY(-50%);
  z-index: 1;
}

.drange .fill {
  position: absolute;
  top: 50%;
  height: 4px;
  background: var(--rosso);
  transform: translateY(-50%);
  z-index: 2;
}

.drange input[type="range"] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  background: none;
  appearance: none;
  z-index: 3;
}

.drange input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 2px solid #DCE0E0;
  margin-top: -14px;
  /* centra il thumb */
}

.drange input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 2px solid #DCE0E0;
}

.drange input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.drange input[type=range]::-moz-range-track {
  height: 4px;
  background: transparent;
}

.drange .testo {
  position: absolute;
  top: -25px;
  display: flex;
  font-size: 15px;
  align-items: center;
}

.drange .houzez-icon {
  font-size: 12px;
  padding: 0 5px;
}

/* -------------------------------------------------------------------------------- */
/* ! Immobili Due Colonne */
/* -------------------------------------------------------------------------------- */

.ricerca.dueColonne .cs-wrapper {
  width: 100%;
  margin: 0 5px 20px;
}

.ricerca.dueColonne .cs-select::after {
  content: "";
  font-size: 10px;
  font-weight: 700;
  font-family: houzez-iconfont;
  border-style: none;
}

#elencoDueColonne .carousel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
  #elencoDueColonne .carousel img {
    height: 350px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #elencoDueColonne .carousel img {
    height: 260px;
  }
}

@media (max-width : 767px) {
  #elencoDueColonne .carousel img {
    height: 260px;
  }
}

/* -------------------------------------------------------------------------------- */
/* ! Pagina mamma */
/* -------------------------------------------------------------------------------- */

#header-mamma .d-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}

#header-mamma .d-grid.double {
  grid-template-columns: 1fr 1fr;
}

#header-mamma .d-grid.double .right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#header-mamma .d-grid .right div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#header-mamma .img-fluid {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

#header-mamma .left .img-fluid {
  min-height: 600px;
}

#superfici .table thead th {
  border: none;
  font-weight: 400;
}

.carousel-item .lazy {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.carousel-item .lazy-loaded {
  opacity: 1;
}

/* -------------------------------------------------------------------------------- */
/* ! Pin personalizzati mappa poi (Problema non prende i valori da qui) */ 
/* -------------------------------------------------------------------------------- */

/*
.poi-marker {
  width: "34px";
  height: "34px";
  borderRadius: "50%";
  background: "#ff0000";
  border: "1px solid #ff0000";
  display: "flex";
  align-items: "center";
  justify-content: "center";
  box-shadow: "0";
  overflow: "hidden";
}

.poi-marker-icon {
  width: "24px";
  height: "24px";
  object-fit: "contain";
}
*/