
/*********  CMS - Catálogo de Productos Style **********/
#displayPropiedades {
  margin-top: 12vh;
}

/*** Display ***/
.display {
  display: flex;
}

.property-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, .08);
  transition: .2s;
}

.property-item:hover  {
  transform: scale(1.02);
}

.property-item .border-top {
  border-top: 1px dashed rgba(1, 25, 100, .3) !important;
}

.property-item .border-end {
  border-right: 1px dashed rgba(1, 25, 100, .3) !important;
}

.custom-position {
  top: 40px; /* Ajusta este valor según tus necesidades */
}

.operacion-active {
  background-color: var(--cuarto) !important;
  color: var(--white) !important;
}

.filter-active {
  font-weight: 700;
}

.sold-banner {
  top: 0;
  right: 0;
  width: 100%;
  text-align: center;
  background-color: var(--sales);
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


/* Detalle Propiedad */
#titularPropiedad {
  margin-top: 12vh;
}

.verMas-lg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.overlay-lg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

@media (max-width: 768px) {
  .verMas-s {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  
  .overlay-s {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(45%);
    width: 100%;
    height: 100%;
    z-index: 2;
  }
}