button.elg_agent_property_form{
    background-color: #F15C61 !important;
    border-color: #F15C61 !important;
    color: #fff !important;
}
.modal.mobile-property-form{
    z-index: 9999 !important;
}

/* Estilos para el texto de la política de privacidad */
.gdpr-text-wrap {
    font-size: 10px;
    line-height: 1.6;
    color: #6B7780;
    margin-top: 10px;
    font-weight: normal;
}

.mobile-form-container .gdpr-text-wrap {
    font-size: 11px;
    margin-top: 15px;
    padding: 0 5px;
}
.property-top-container{
    position: relative;
}
.tools-over-banner{
    position: absolute;
    top: 10px;
    right: 10px;
}
.tools-over-banner .item-tool > span {    
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;    
}
.item-sub-price{
    text-decoration: line-through;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}
.icon-arrow-down {
    background-image: url(../img/arrow-down.svg);
}
.property-lightbox .modal-header {
    background-color: #ffffff !important;
    color: #222 !important;
    border-bottom: 1px solid #e8e9ea !important;
}
.property-lightbox .modal-header a {
    color: #222 !important;
}
.property-lightbox .lightbox-logo{
    margin-top: 0px !important;    
}
.property-lightbox .lightbox-logo img{
    width: 100% !important;
}
.property-lightbox .close {
    top: 5px !important;
    color: #222 !important;
}
/* Estilos para lightGallery - Estilo Pinterest Mejorado */
.property-lightbox #lightgallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    padding: 10px;
    max-height: 500px;
    overflow-y: auto;
}
.property-lightbox .modal-footer{
    padding: 10px !important;
}
.property-lightbox .modal-footer *{
    margin: 0px !important;
}

/* Estilos para cada elemento de la galería */
.property-lightbox #lightgallery .gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

/* Hover effect */
.property-lightbox #lightgallery .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Asegurar que las imágenes mantienen su proporción */
.property-lightbox #lightgallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3; /* Proporciones fijas para todas las imágenes */
    transition: transform 0.3s ease;
}

/* Efecto hover para las imágenes */
.property-lightbox #lightgallery .gallery-item:hover img {
    transform: scale(1.03);
}

/* Estilo para el caption */
.property-lightbox #lightgallery .hz-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-lightbox #lightgallery .gallery-item:hover .hz-image-caption {
    opacity: 1;
}

/* Responsive: en pantallas más pequeñas, reducir a 2 columnas */
@media (max-width: 991px) {
    .property-lightbox #lightgallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* En móviles, usar 1 columna */
@media (max-width: 575px) {
    .property-lightbox #lightgallery {
        grid-template-columns: 1fr;
    }
    .modal.mobile-property-form .modal-content{
        height: 98vh !important;
    }
}

/* Estilos para el logo y título del formulario */
.property-form-wrap .form-title-wrap .desktop-title {
    display: block;
}

.property-form-wrap .form-title-wrap .mobile-title {
    display: none;
    text-align: center;
    margin-bottom: 15px;
}

.property-form-wrap .form-title-wrap .mobile-form-logo {
    max-height: 30px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .property-form-wrap .form-title-wrap .desktop-title {
        display: none;
    }
    .property-form-wrap .form-title-wrap .mobile-title {
        display: block;
    }
}

/* Estilos para lightGallery cuando está abierto */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999 !important;
}

.lg-outer {
    z-index: 10000 !important;
}

/* Estilos específicos para nuestra instancia de lightGallery */
.property-lightgallery-instance.lg-outer {
    z-index: 10500 !important;
}

.property-lightgallery-instance ~ .lg-backdrop {
    z-index: 10499 !important;
}

.lg-toolbar {
    background-color: rgba(0, 0, 0, 0.45);
}

/* Estilos para el botón de contacto en móviles */
.mobile-contact-agent-btn {
    display: none;
}

/* Estilos para el formulario móvil */
.mobile-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 11000;
    overflow-y: auto;
    padding: 15px;
}

.mobile-form-container {
    position: relative;
    background-color: #fff;
    padding: 20px;
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

.mobile-form-container h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.mobile-form-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    z-index: 1;
}

.mobile-form-close:hover {
    color: #333;
}

.mobile-form-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 5px;
}

.mobile-form-content .form-group {
    margin-bottom: 15px;
}

.mobile-form-content label.control {
    padding-left: 25px;
}

.mobile-form-content .control__indicator {
    top: 2px;
}

/* Media queries para mostrar/ocultar elementos según el tamaño de pantalla */
@media (max-width: 767px) {
    .lightbox-form-wrap {
        display: none !important;
    }
    
    .mobile-contact-agent-btn {
        display: block;
    }
    
    .modal-footer {
        display: flex;
        padding: 15px;
    }
    
    .lightbox-gallery-wrap {
        width: 100% !important;
    }
}

@media (min-width: 768px) {
    .mobile-contact-agent-btn {
        display: none;
    }
}

.lg-sub-html {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    font-size: 14px;
}

/* Estilos para las miniaturas de lightGallery */
.lg-outer .lg-thumb-item {
    border-radius: 5px;
    border: 2px solid #ddd;
}

.lg-outer .lg-thumb-item.active, 
.lg-outer .lg-thumb-item:hover {
    border-color: #0073e1;
}

.gallery-item:hover .hz-image-caption {
    opacity: 1;
}

/* Ajustes adicionales para el lightbox */
.property-lightbox .modal-body {
    padding: 15px;
}

.property-lightbox #lightgallery {
    max-height: 65vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.property-lightbox #lightgallery::-webkit-scrollbar {
    width: 6px;
}

.property-lightbox #lightgallery::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.property-lightbox #lightgallery::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.property-lightbox #lightgallery::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Eliminar estilos redundantes */

/* Estilos para lightGallery */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
}

.lg-toolbar,
.lg-outer .lg-thumb-outer {
    background-color: rgba(0, 0, 0, 0.45);
}

.lg-sub-html {
    background-color: rgba(0, 0, 0, 0.6);
    font-family: inherit;
}
/* Estilos para el contenedor de precio y botón de opciones */
.item-price-container {
    width: 100%;
    padding-right: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Estilos para el botón de tres puntos */
.item-tools-dropdown .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;    
    background-color: #fff;
    transition: all 0.2s ease;
    border: none;
    margin-left: 8px;
    z-index: 5;
    position: relative;
}

.item-tools-dropdown .btn:hover {
    background-color: #fff;
    transform: none;
    box-shadow: none;
}

.item-tools-dropdown .btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.item-tools-dropdown .btn i,
.item-tools-dropdown .btn .dashicons {
    font-size: 18px;
    color: #2594d1;
}

.item-tools-dropdown .btn .dashicons-ellipsis {
    font-size: 22px;
}

/* Ajustes específicos para el botón en el listado */
.item-listing-wrap .item-tools-dropdown .btn {
    position: relative;
    top: -2px;
}

/* Ajustes para el botón en dispositivos móviles */
@media (max-width: 767px) {
    .tools-over-banner .item-tool.houzez-print {
        display: none;
    }
        
    .item-tools-dropdown .btn {
        width: 34px;
        height: 34px;
        background-color: #fff;
        border: 1px solid #e5e5e5;
        box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    }
    
    .item-tools-dropdown .btn i {
        font-size: 16px;
        color: #333;
    }
    
    .item-price-container {
        padding-right: 10px;
    }
    
    .grid-view .item-tools-dropdown {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    .lightbox-tools a, .property-lightbox .close {       
        border-left: 0px !important;        
    }
    .property-lightbox .lightbox-logo img{
        width: auto !important;
    }
    .property-lightbox .modal-content {       
        background-color: #ffffff !important;
    }
    .property-lightbox .modal-footer {
        background-color: #FFFFFF !important;
        border-top: 1px solid #FFFFFF !important;
        color: #222 !important;        
    }
    .property-lightbox #lightgallery{
        max-height: 86vh !important;
    }
    .lightbox-gallery-wrap {
        padding: 0px !important;
    }
}

.item-tools-dropdown .dropdown-toggle::after {
    display: none;
}

.item-tools-dropdown .dropdown-menu {
    padding: 8px 0;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    border: none;
    margin-top: 5px;
    animation: fadeIn 0.2s ease;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.item-tools-dropdown .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.item-tools-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
}

.item-tools-dropdown .dropdown-item i {
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

/* Estilos para el modal de compartir */
.elg-dots-horizontal-icon{
    background-image: url(../img/dots_horizontal_rounded_icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    /*margin-right: -9px;*/
}
.modal-share-property{
    z-index: 9999 !important;
}

.modal-share-property .modal-dialog {
    z-index: 10000 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

/* Asegurar que el modal esté por encima del backdrop en móvil */
@media (max-width: 767px) {
    body.modal-open .modal-share-property {
        z-index: 10001 !important;
    }
}

.modal-share-property button.close{
    margin: inherit !important;
}
.modal-share-property .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

.modal-share-property .modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 24px;
    background-color: #fff;
}

.modal-share-property .modal-header .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.modal-share-property .modal-header .close {
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-share-property .modal-header .close:hover {
    opacity: 1;
    background-color: #f5f5f5;
}

.modal-share-property .modal-body {
    padding: 24px;
    background-color: #fff;
}

/* Estilos para los botones de compartir */
.modal-share-property .modal-body .btn {
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px !important;
    transition: all 0.2s ease;
    border: 1px solid #eee;
    text-align: left;
}

.modal-share-property .modal-body .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.modal-share-property .modal-body .btn i {
    font-size: 18px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Colores de botones de redes sociales */
.modal-share-property .btn-whatsapp:hover {
    background-color: #25D366;
    color: white !important;
    border-color: #25D366;
}

.modal-share-property .btn-facebook:hover {
    background-color: #3b5998;
    color: white !important;
    border-color: #3b5998;
}

.modal-share-property .btn-twitter:hover {
    background-color: #1DA1F2;
    color: white !important;
    border-color: #1DA1F2;
}

.modal-share-property .btn-pinterest:hover {
    background-color: #E60023;
    color: white !important;
    border-color: #E60023;
}

.modal-share-property .btn-linkedin:hover {
    background-color: #0077B5;
    color: white !important;
    border-color: #0077B5;
}

.modal-share-property .btn-email:hover {
    background-color: #D44638;
    color: white !important;
    border-color: #D44638;
}

/* Estilos para el botón de tres puntos en el mapa */
.map-infowindow .item-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.map-infowindow .item-tools-dropdown {
    position: relative;
}

.map-infowindow .item-tools-dropdown .btn {
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    background-color: #fff;
}

.map-infowindow .item-tools-dropdown .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    top: 100%;
    z-index: 9999;
    min-width: 180px;
    transform: none !important;
}

/* Ajuste para el modal de compartir en el mapa */
.map-infowindow .modal {
    z-index: 9999;
}
.block-content-wrap .detail-wrap li span{
    word-break: break-word;
    max-width: 100% !important;
}
.property-detail-v7 .property-banner .tab-pane#pills-street-view,
.property-detail-v7 .property-banner .tab-pane#pills-map {
    height: 700px;
}
.gm-marker{
    display: flex !important;
    align-items: center !important;
    padding-left: 4px !important;
}
.gm-marker .gm-marker-icon{
    width: 20px;
    height: 20px;    
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70%;
    border-radius: 10px;
    margin-right: 5px;
}
.map-infowindow{
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
}
.map-infowindow .property-gallery {
    height: 130px;
    overflow: hidden;
    position: relative;
}
.map-infowindow .property-slider {
    height: 130px;
    overflow: hidden;
}
.map-infowindow .property-slider .slick-list,
.map-infowindow .property-slider .slick-track,
.map-infowindow .property-slider .slick-slide,
.map-infowindow .property-slider .slick-slide > div {
    height: 130px;
}
.map-infowindow .property-slider img {
    height: 130px !important;
    object-fit: cover !important;
    width: 100%;
}
.map-infowindow .property-details{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.map-infowindow .property-details h3{
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;    
}
.map-infowindow .property-details h3 a{
    color: #333;
}
.map-infowindow .property-details .info-two-cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.map-infowindow .property-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-image: url(../img/loading.gif);
    background-position: center center;
    background-size: 40px;
    background-repeat: no-repeat;
}
.map-infowindow .property-details .price {
    font-weight: 700;
    font-size: 16px;
}
.map-infowindow .property-slider .slick-arrow {
    background-color: #00000017;
}
.map-infowindow .property-slider .slick-arrow:hover {
    background-color: #00000096;
}
.map-infowindow .property-slider .slick-prev {
    left: 5px !important;
}
.map-infowindow .property-slider .slick-next {
    right: 5px !important;
}
.map-on-right.ellisting-map .half-map-left-wrap{
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.detail-map-filters {
    max-width: inherit;
    bottom: 20px;
    background: #fff;
    padding: 6px 10px;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 10px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.detail-map-filters .checkbox-item{
    position: relative !important;
}
.detail-map-filters .checkbox-item input[type="checkbox"] {
    position: absolute;
    left: 14px;
    opacity: 0;
    cursor: pointer;
    top: 3px;
    box-sizing: border-box;
    padding: 0;
}
.detail-map-filters .checkbox-item label {
    font-size: 14px;
    border: 1px solid #dee2e6;
    margin: 0 5px;
    padding: 4px 30px 2px 10px;
    vertical-align: middle;
    height: 30px;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    line-height: 20px;
    font-weight: 400;
    background-color: #FFFFFF;
}
.detail-map-filters .checkbox-item label::before {
    left: auto;
    right: 9px;
    top: 7px;
    height: 15px;
    width: 15px;
    background: #f5f5f5;
    border: 1px solid #dee2e6;
    content: '';
    position: absolute;
    display: inline-block;
    border-radius: 50%;
}
.detail-map-filters .checkbox-item input[type=checkbox] + label::after {
    right: 12px;
    left: auto;
    height: 5px;
    width: 9px;
    top: 11px;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transform: rotate(-45deg);
    content: '';
    position: absolute;
    display: inline-block;
    border-radius: 50%;
}
.detail-map-filters .checkbox-item input[type=checkbox]:checked + label {
    background: #F15C61;
    color: #fff;
    border: 1px solid #F15C61;
}
.detail-map-filters .checkbox-item input[type=checkbox]:checked + label::before {
    background: #fff;
    border: 1px solid #fff;
}
.detail-map-filters .checkbox-item input[type=checkbox]:checked + label:after {
    border-color: #F15C61;
}
#houzez_ajax_container .item-listing-wrap .listing-thumb .slick-dotted.slick-slider{
    margin-bottom: 0px !important;
}
#houzez_ajax_container .item-listing-wrap .listing-thumb{
    max-height: 340px !important;
    overflow: hidden !important;
}
/* Estilos específicos para el slider del infowindow */
.infowindow-slider .slick-arrow {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    z-index: 10 !important;
}
.infowindow-slider .slick-prev {
    left: 10px !important;
}
.infowindow-slider .slick-next {
    right: 10px !important;
}
.infowindow-slider .slick-prev:before,
.infowindow-slider .slick-next:before {
    font-size: 16px !important;
    opacity: 1 !important;
}
@media (max-width: 1024px) {  
    #half-map-listing-area .grid-view .item-listing-wrap {
        width: 100% !important;
        flex-basis: 100% !important;
    }
}
@media (max-width: 768px) {
    .property-detail-v1 .property-banner .tab-pane#pills-map {
        padding: 0px;
        height: auto;
    }
    .property-detail-v1 .property-banner .tab-pane#pills-map .map-wrap{
        position: relative;
        height: 500px;
    }
    .property-detail-v1 .property-banner .tab-pane#pills-map .detail-map-filters{
        position: relative;
        border-radius: 0px;
        border: 0px;   
        border-bottom: 1px solid #dce0e0;   
        bottom: 0px;       
    }
    .detail-map-filters .checkbox-item label {
        font-size: 11px;
        margin-left: 0px;        
    }
    #half-map-listing-area .item-listing-wrap .item-tools {    
        right: 15px !important;
        top: 15px !important;
        bottom: inherit !important;
    }
    #half-map-listing-area .grid-view .item-listing-wrap {
        width: 50% !important;
        flex-basis: 50% !important;
    }
}
@media (max-width: 650px) {
    .detail-map-filters{
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 3px;
        grid-row-gap: 5px;
        padding: 6px 5px;
    }
    .property-detail-v1 .property-banner .tab-pane#pills-map .map-wrap{        
        height: 385px;
    }
    .detail-map-filters .checkbox-item label {
        width: 100%;
    }
}
@media (max-width: 575px) {
    #half-map-listing-area .grid-view .item-listing-wrap {
        width: 100% !important;
        flex-basis: 100% !important;
    }
}
@media (max-width: 480px) {
    .detail-map-filters .checkbox-item label {       
        padding: 4px 22px 2px 10px;        
    }
    .property-detail-v1 .property-banner .tab-pane#pills-map .map-wrap{        
        height: 400px;
    }
    .half-map-wrap .page-title-wrap .page-title{
        margin-top: 0px;
        margin-right: 0px;
    }    
}



.marker_details_slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.info-body {
    padding: 5px 10px;
    background-color: #FFFFFF;
}
.rating-sec span {
    color: #bcbcbc;
}
.info-body .rating-sec img {
    max-width: 14px;
}
.info-body .rating-sec strong {
    vertical-align: middle;
    display: inline-block;
    margin-top: 4px;
}
.gm-style .gm-style-iw-d {
    overflow: auto !important;
    max-height: 501px;
}
#houzez-single-listing-map .gm-style-iw[style], 
#houzez-single-listing-map .gm-style-iw-d[style], 
#houzez-single-listing-map .gm-style-iw-c[style] {    
    max-width: 300px !important;
}
.marker_details_slider .place_map_image {
    height: 140px;
}
.marker_details_slider .place_map_image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.slick-slide img {
    display: block;
}
.marker_details_slider .slick-dots {
    bottom: 12px;
}

.marker_details_slider .slick-dots li {
    height: 17px;
    width: 17px;
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.marker_details_slider .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
    color: black;
    opacity: 0.75;
}
.marker_details_slider .slick-dots li button:before {
    height: 10px;
    width: 10px;
    opacity: 0.5;
    background: #fff;
    content: "";
    text-align: center;
    border-radius: 50%;
}
.marker_details_slider .slick-arrow{
    background-color: #00000057;
    height: 30px;
    width: 30px;
    border-radius: 15px;
}
.marker_details_slider .slick-arrow:hover {
    background-color: rgb(0 0 0 / 65%);
}



@media (min-width: 1201px) {
    .map-on-right.ellisting-map .half-map-left-wrap {
        width: 60%;
    }
    .map-on-right.ellisting-map .half-map-right-wrap {
        width: 40%; /*calc(100% - 780px);*/
    }
}
@media (max-width: 1200px) {
    .half-map-left-wrap {
        width: 60% !important;
    }
    .half-map-right-wrap {
        width: 40% !important;
    }
}
@media (max-width: 991px) {
    .half-map-left-wrap {
        width: 50% !important;
    }
    .half-map-right-wrap {
        width: 50% !important;
    }
}


@media (min-width: 769px) {
    .property-detail-v7 #pills-tab {
        top: 60px;
        right: 60px;
        left: 10px;
        right: auto;
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }
}

@media (max-width: 991.98px) {
    .property-detail-v7 .property-banner .tab-pane#pills-street-view,
    .property-detail-v7 .property-banner .tab-pane#pills-map {
        height: 0;
        padding-top: 75%;
    }
}

.mls-owner {
    display: flex;
    border-top: 1px dashed #cccccc;
    margin-top: 40px;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
    justify-content: flex-end;
}
.mls-owner p {
    margin-right: 10px;
    font-size: 12px;
    font-style: italic;
}

.item-amenities {   
    justify-content: space-between;
}
.item-amenities .h-type{
    flex-basis: auto !important;
    text-align: right;
    margin-right: 0px;
}
#houzez_ajax_container #houzez-map-loading{
    position: absolute;
    top: 0px;
    transform: none;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    background-color: #ffffff8c;
}
.search-no-results-found{
    width: 100%;
}
#houzez_ajax_container {
    min-height: 68vh;
}
.property-dot {
    width: 12px;
    height: 12px;
    line-height: 8px;
    border-radius: 50%;
    border-width: 1.5px;
    border-style: solid;
    border-color: #ffffff !important;    
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 7px;
    text-align: center;
    pointer-events: auto;
    outline: none;    
    z-index: 0;
    background: rgb(122, 72, 214);
    cursor: pointer;
    display: block;
}
#map-results-count {
    position: absolute;
    top: 60px;
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1;
    color: #FFFFFF;
    font-size: 12px;
    display: none;
}
#map-results-count.show{
    display: block !important;
}
#half-map-listing-area .item-listing-wrap .listing-thumb img {
    /*height: 260px;
    width: 350px;*/
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.property-carousel-module .listing-image-wrap img,
.grid-view .item-listing-wrap .listing-thumb img{
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.grid-view .item-footer{
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    display: flex;
    justify-content: space-between;
}
/*body.admin-bar #wpadminbar{
    background-color: #000000;
    color: #FFFFFF !important;
}
body.admin-bar #wpadminbar *,
body.admin-bar #wpadminbar *::before{
    color: #FFFFFF !important;
}
body.admin-bar #wpadminbar a:hover,
body.admin-bar #wpadminbar a:hover::before,
body.admin-bar #wpadminbar .menupop .ab-sub-wrapper a{
    color: #000000 !important;
}
*/
body.admin-bar #wpadminbar{
    border-bottom: 1px solid #cccccc;
    background-color: #f0f0f0;
}
body.admin-bar #wpadminbar .quicklinks li.wpshapere_site_title{
    margin-top: 1px !important;
}
.login-register-form .modal-header {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #dce0e0 !important;
}
.login-register-form .modal-header ul li{
    border-right: 1px solid #dce0e0;
}
.login-register-form .modal-header .login-register-tabs .nav-link{
    color: #54595f !important;
}
.login-register-form .modal-header .login-register-tabs .nav-link.active{
    /*background-color: #2594d1;*/
    color: #2594d1 !important;
}
.login-register-form .register-form-tab .control--checkbox {
    flex-direction: row;
}
.login-register-form .register-form-tab .control--checkbox a{
    margin-left: 10px;
}

#drawing-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(68, 68, 68, 0.7);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-next-prev-actions {
    top: auto !important;
    right: 170px !important;
    bottom: 20px;
}
#draw-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 500;
}
#drawing-bar #edit-message{
    color: #FFFFFF;
    font-size: 12px;
}
#drawing-bar button {
    border: 0px solid #FFFFFF;
    margin-right: 10px;
    background-color: transparent;
    color: #FFFFFF;
}
#remove-boundary-button, #remove-boundary-button2 {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 500;
}
.map-arrows-actions {
    top: auto !important;
    left: auto !important;
    bottom: 60px !important;
    right: 20px !important;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.map-btn + .map-btn {
    margin-left: auto !important;
}
.property-form-wrap .form-title-wrap h2{
    font-size: 18px;
    border-bottom: 1px solid #dce0e0;
    margin-bottom: 25px;
    padding-bottom: 34px;
    margin-top: 0px;
}
.property-form-wrap p.error {
    font-size: 12px;
    line-height: 18px;
    margin: 15px 0px 0px 0px;
}
.property-carousel-module-v2 .item-amenities .h-type{
    width: 100%;
}
.property-carousel-module-v2 .listing-image-wrap img {
    margin: 0 auto;
    height: 219px;
    object-fit: cover;
}
.elg-search-results-top{
    flex-direction: row;
    align-items: center;      
}
.elg-search-results-top .page-title{
    text-align: right;
}
.search-title h1{
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 600;
}
@media (max-width: 1200px) {
    .property-carousel-module-v2 .listing-image-wrap img {       
        height: 180px;
    }
}
@media (max-width: 991px) {
    .property-carousel-module-v2 .listing-image-wrap img {       
        height: 219px;
    }
}
@media (max-width: 768px) {
    .search-title h1{
        font-size: 16px;       
    }
    .property-carousel-module-v2 .listing-image-wrap img {       
        height: initial;
    }
    .elg-search-results-top{
        flex-direction: row;        
        justify-content: space-between;    
        margin-bottom: 5px;    
    }
    .elg-search-results-top .sort-by{
        order: inherit;
    }
    .elg-search-results-top .sort-by .sort-by-title{
        font-size: 12px;
    }
    .elg-search-results-top .sort-by button{
        font-size: 12px;
    }
    .elg-search-results-top .page-title{
        font-size: 12px;
    }
    #half-map-listing-area .page-title-wrap .sort-by .d-flex{
        flex-direction: row;
    }
    .map-next-prev-actions{
        bottom: 30px;
        left: 20px;
    }
    .map-zoom-actions {
        bottom: 30px !important;
    }
    .map-arrows-actions{
        bottom: 69px !important;        
    }
}
.item-footer {
    padding: 15px 15px !important;
}
.mobile-map-switch button {
    font-size: 12px;
}
.agent-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
}
.property-form-wrap .agent-details {
    margin-bottom: 30px !important;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
}
.hz-btn-whatsapp {
    background-color: #25d366 !important;
    color: #FFFFFF !important;
    border: 0px !important;    
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}
#property-form-container .agent-details:last-child {
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}
.agent-details .agent-information li{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.half-map-search-actions {
    display: flex;
    column-gap: 10px;
}
.half-map-search-actions .save-search-btn, .half-map-search-actions .save-search-btn:hover{
    border: 1px solid #ea6467;
    color: #ea6467;
    margin-left: 0px;
}
.dash-logo img {
    max-height: 35px;
}
.page-title-wrap {
    padding-bottom: 20px !important;
}
.woocommerce-cart .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-totals-item__value,
.woocommerce-checkout .wc-block-components-totals-item__label,
.woocommerce-checkout .wc-block-components-totals-item__value{
    font-size: 16px !important;
}
.btn-blue a, .btn-blue button{
    color: #fff;
    background-color: #2594d1;
    border-color: #2594d1;
    font-size: 15px;
    font-weight: 500;
    padding: 0 15px;
    line-height: 40px;
    white-space: nowrap;
    -webkit-transition: "background-color" 0.2s;
    -o-transition: "background-color" 0.2s;
    transition: "background-color" 0.2s;
    -webkit-transition: "border-color" 0.2s;
    -o-transition: "border-color" 0.2s;
    transition: "border-color" 0.2s;
    -webkit-transition: "color" 0.2s;
    -o-transition: "color" 0.2s;
    transition: "color" 0.2s;
    vertical-align: middle;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: .25rem;
    border: 1px solid transparent;
}
.btn-blue a:hover, .btn-blue button:hover {
    color: #fff;
    background-color: #169de8;
    border-color: #169de8;
    text-decoration: none;
    box-shadow: none;
    outline: 0;
}
.woocommerce-account .addresses .title .edit {
    float: left !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation{
    width: 250px !important;
    border-right: 1px solid #f0f0f0;
    margin-bottom: 0px;
}
.woocommerce-MyAccount-navigation ul li {
    padding: 10px 0px 10px 15px !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: calc(100% - 280px) !important;
}
.woocommerce-MyAccount-navigation ul li.is-active {
    background-color: #2594d117;    

}
.woocommerce-MyAccount-navigation ul li.is-active a{
    color: #2594d1 !important;
}
.dashboard-content-block .woocommerce form .form-row{
    margin: 0 0 15px !important;
    display: flex;
    flex-direction: column;    
}
.dashboard-content-block .woocommerce form .form-row label {
    padding-bottom: 0px !important;
}
.db-message-1 {
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 15px;
    text-align: center;
    margin: 0px 0px 20px 0;
}
.db-message-1 p {
    margin: 0;
    font-size: 16px;
}
.db-message-1 a {
    color: #0073aa;
    text-decoration: none;
}
.db-message-1 a:hover {
    text-decoration: underline;
}



.dashboard-content-block-wrap h2, .dashboard-content-block h2 {
    font-size: 20px !important;
    font-weight: 500 !important;
}



.pauta-details .pauta-details-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.pauta-details .pauta-details-row p{
    width: 33%;
}
.anuncios-list {
    margin-top: 30px;
}
.anuncios-list .ad-item{
    border-top: 1px solid #f0f0f0;
}
.anuncios-list .ad-item h3{
    font-weight: bold;
    margin-top: 20px;
    text-transform: uppercase;
}
.anuncios-list .ad-item .ad-item-row {
    display: flex;
    flex-direction: row;
}
.anuncios-list .ad-item .ad-item-row .ad-item-col {
    flex-basis: 50%;
    padding: 10px 10px 10px 20px;
}
.anuncios-list .ad-item .ad-item-row .ad-item-col:first-child {
    border-right: 1px solid #f0f0f0;
    padding: 10px 20px 10px 10px;
}
.anuncios-list .no-img-msg{ 
    border: 1px dashed #cccccc;
    padding: 10px;
    background-color: #f9f9f9;
    text-align: center;
    margin: 20px 0px;    
}
.anuncios-list .item-action h4{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}
.anuncios-list .item-action{
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.anuncios-list .item-action .action-style-two-cols{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.anuncios-list .item-action .action-style-two-cols h4{
    margin-bottom: 0px;
}
.anuncios-list .item-action .file-input .file-caption-name{
    height: 26px;
}
.krajee-default .file-caption-info, .krajee-default .file-size-info{
    overflow: visible !important;
}
.delete-anuncio{
    margin-top: 10px !important;
}
.ad-wrapper {
    text-align: center;
    margin: 20px 0px;
    overflow: hidden;
}
.ad-wrapper img{
    max-width: 100%;
    width: 100%;
}
.woocommerce-notices-wrapper {
    max-width: 1310px;
    margin: 20px auto 0px auto;
}
.woocommerce-notices-wrapper ul {
    margin: 0px;
}
.anuncio-stats {
    border: 1px solid #f0f0f0;
    background-color: #f9f9f9;
    padding: 15px;
}
.anuncio-stats h5 {
    margin-bottom: 20px;
}
.btn-ad-preview {
    margin-top: 15px !important;
    text-align: center !important;
    background-color: #2594d1 !important;
}
.choices-clear-button {
    color: #999;
    transition: color 0.2s;
}

.choices-clear-button:hover {
    color: #333;
}
.location-search .choices {
    margin-bottom: 0px;
}
.location-search .choices .choices__inner{
    min-height: 42px !important;
    padding: 0px !important;
}
.location-search .choices .choices__inner input.choices__input{
    min-height: 40px !important;
    margin-bottom: 0px;
    padding-left: 15px;
}
.choices__list--multiple .choices__item{
    background-color: #2594d1 !important; /* Color de fondo de las etiquetas */
    color: #ffffff !important; /* Color del texto de las etiquetas */
    border: none !important; /* Elimina el borde si es necesario */
}
.home-search-builder div.choices{
    margin-bottom: 0px;
    width: 100%;
}
.home-search-builder .houzez-ele-search-form-wrapper{
    padding: 3px 0px 4px 5px !important;
}
.home-search-builder .choices .choices__inner{
    border: 0px !important;
    background-color: #FFFFFF !important;
}
.home-search-builder .choices .choices__inner input[type="search"]{
    border: 0px !important;
    background-color: #FFFFFF !important;
}
.choices__list--dropdown, .choices__list[aria-expanded]{
    z-index: 999 !important;
}
.item-listing-wrap .item-header{
    width: 100%;
}
.property-banner-grid-wrap .property-banner-item img{
    height: 100% !important;
    object-fit: cover !important;
}
.property-banner-grid-wrap .property-banner-item {
    height: 100%;
}
.infoBox {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
}
.infoBox img[title=" Close "] {
    position: absolute !important;
    right: 7px !important;
    z-index: 99 !important;
}
.property-dot.active{
    background-color: green;
    border: 2px solid black;
    width: 25px;
    height: 25px;
    z-index: 999 !important;
}
.gm-marker.active {
    background: green !important;
    border-color: green !important;
    z-index: 999 !important;
}
#home-search-tabs .elementor-field-type-submit{
    display: flex;
    align-content: stretch;
    flex-direction: column;
    align-items: stretch;
}
#home-search-tabs button[type="submit"]{
    background-image: url('../img/search-icon.svg');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center center;
}
#home-search-tabs ul li.nav-item a:hover{
    background-color: #2594d1 !important;
}
.item-listing-wrap ul.item-amenities{
    min-height: 44px !important;
}
@media (max-width: 1024px) {
    #home-search-tabs .elementor-field-group:nth-child(2){
        order: 1;
    }
    #home-search-tabs .elementor-field-group:nth-child(3){
        order: 2;
        width: 50%;
    }
    #home-search-tabs .elementor-field-group:nth-child(4){
        order: 3;
        width: 50%;
    }
    #home-search-tabs .elementor-field-group:first-child{
        order: 4;
        width: 80%;
    }
    #home-search-tabs .elementor-field-group:last-child{
        order: 5;
        width: 20%;
    }
    #desktop-header-search{
        display: none;
    }
    .advanced-search-nav{
        display: none !important;
    }
}
@media (max-width: 768px) {
    #home-search-tabs .elementor-field-group:nth-child(2){
        order: 1;
    }
    #home-search-tabs .elementor-field-group:nth-child(3){
        order: 2;
        width: 50%;
    }
    #home-search-tabs .elementor-field-group:nth-child(4){
        order: 3;
        width: 50%;
    }
    #home-search-tabs .elementor-field-group:first-child{
        order: 4;
        width: 80%;
    }
    #home-search-tabs .elementor-field-group:last-child{
        order: 5;
        width: 20%;
    }
    .half-map-left-wrap {
        width: 100% !important;
    }
    .half-map-wrap .listing-view {
        padding: 0 10px !important;
    }
    .half-map-right-wrap {
        width: 100% !important;
    }
    .item-body.flex-grow-1{
        border: 0px !important;
    }
    .mobile-property-tools{
        padding-top: 0px !important;
    }
    .item-listing-wrap ul.item-amenities{
        min-height: auto !important;
    }
    .item-listing-wrap .ad-wrapper, .item-listing-wrap .ad-wrapper img{
        min-height: auto !important;
    }
    #map-view-wrap{
        margin-right: 0px !important;
    }
    #houzez-properties-map{
        border-radius: 0px !important;
    }
    #map-view-wrap .map-wrap {
        padding-bottom: 0px !important;
    }
}
@media (max-width: 430px) {
    #home-search-tabs .elementor-field-group:last-child {
        width: 23%;
    }
    #home-search-tabs .elementor-field-group:first-child {
        width: 76%;
    }
}
.bootstrap-select .dropdown-toggle::after {
    content: "" !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    margin-left: 0.255em !important;
    vertical-align: 0.255em !important;
    border-top: 0.5em solid !important;
    border-right: 0.5em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.5em solid transparent !important;
}

.item-listing-wrap .ad-wrapper, .ad-wrapper.slick-slide{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.ad-wrapper.slick-slide, .ad-wrapper.slick-slide img {
    min-height: auto !important;
}
.home .houzez-search-form-js .choices input.choices__input{
    min-width: 100% !important;
}
.home .houzez-search-form-js .prices-for-all button[title="Max($)"] + .dropdown-menu.show{
    left: -35px !important;
}
.home .houzez-search-form-js .choices .choices-clear-button{
    display: none !important;
}
.home .houzez-search-form-js .choices__list--multiple .choices__item{
    padding: 0px 10px;
    font-size: 10px;
}
.grid-view .item-body .item-price-wrap{
    display: block !important;
    bottom: 0px !important;    
    position: relative !important;
    left: 0px !important;
}
.grid-view .item-body .item-price-wrap .item-price,
.grid-view .item-body .item-price{
    color: #2594d1;
}
.grid-view .item-body .item-price{
    font-size: 22px;
    font-weight: 600;
}
.item-listing-wrap .item-header .item-price-wrap,
.item-listing-wrap  .item-body .item-title{
    display: none !important;
}
.grid-view .item-listing-wrap {
    padding-left: 9px !important;
    padding-right: 9px !important;
    margin-bottom: 18px !important;    
}
.grid-view .item-listing-wrap .item-wrap{
    border-radius: 16px !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}
#map-view-wrap{
    margin: 0px 15px 0px 0px;
}
#map-view-wrap .map-wrap {
    padding-bottom: 15px;
}
#houzez-properties-map{
    border-radius: 8px;
}
.half-map-wrap.ellisting-map{
    display: flex;
}
.elementor-field-group-field_q1 .elementor-field-option,
.elementor-field-group-field_q9 .elementor-field-option,
.elementor-field-group-field_q10 .elementor-field-option{
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
}
.elementor-field-group-field_q1 label,
.elementor-field-group-field_q9 label,
.elementor-field-group-field_q10 label {
    margin-bottom: 10px;
}
.elementor-field-group-field_q1 .elementor-field-option input,
.elementor-field-group-field_q9 .elementor-field-option input,
.elementor-field-group-field_q10 .elementor-field-option input{
    margin-right: 7px;
}
.mobile-form-contact-wrap{
    background-color: #FFFFFF;
    padding: 20px 20px 40px 20px;
    border-top: 1px solid #dde1e1;
}

/* Mobile property info grid styles */
.mobile-property-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    background-color: #FFFFFF;
    padding: 30px 20px;
    border-top: 1px solid #dce0e0;    
}

.mobile-info-item {
    display: flex;
    flex-direction: row;
    column-gap: 7px;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
}

.mobile-info-item strong {
    font-size: 13px;
    color: #5c6872;
    margin-bottom: 5px;
}

.mobile-info-item span {
    font-size: 13px;
    color: #222;
}
.mobile-property-title .label-featured{
    top: 0px !important;
    margin-left: 3px;
}
@media (max-width: 480px) {
    .grid-view .item-listing-wrap {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}
.item-provider img {
    max-height: 17px;
    width: auto;
}

/*@media (max-width: 768px) {
    .half-map-left-wrap {
        display: none !important;
    }
}

@media (max-width: 768px) {
    #map-view-wrap {
        display: block !important;
    }
}*/