/* Property Single Page Styles */
/* Usando la fuente predeterminada de WordPress */

/* Responsive styles for property-meta section */

/* Force 2-column layout on mobile for property-meta */
@media screen and (max-width: 767px) {
    .property-meta {
        display: block !important; /* Reset to block display */
        font-size: 0 !important; /* Remove whitespace between inline-block elements */
    }
    
    .property-meta > div {
        display: inline-block !important;
        vertical-align: top !important;
        width: auto !important; /* Natural width */
        max-width: calc(50% - 8px) !important; /* Maximum half width minus some spacing */
        margin: 0 8px 8px 0 !important; /* Add margin for spacing */
        font-size: 16px !important; /* Reset font size */
    }
    
    /* If reference is present, it can be full width */
    .property-meta .property-ref {
        max-width: 100% !important;
    }
}

/* Mobile-specific styles for property features */
@media screen and (max-width: 767px) {
    /* Estilo para características básicas (dormitorios, baños, etc.) */
    .property-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .property-features .feature {
        width: 48%; /* Ligeramente menos del 50% para dejar espacio entre elementos */
        margin-bottom: 15px;
        box-sizing: border-box;
    }
    
    /* Estilo para lista detallada de características */
    .property-features-list .features-grid {
        display: block; /* Eliminar el comportamiento grid predeterminado */
    }
    
    .property-features-list .features-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 8px;
    }
    
    .property-features-list .feature-item {
        width: 48%; /* Ligeramente menos del 50% para dejar espacio entre elementos */
        box-sizing: border-box;
        display: flex;
        align-items: flex-start;
        margin-bottom: 8px;
    }
    
    .property-features-list .feature-item .feature-icon {
        margin-right: 5px;
        flex-shrink: 0;
    }
}

/* Para pantallas muy pequeñas, volver a una sola columna */
@media screen and (max-width: 480px) {
    .property-features .feature,
    .property-features-list .feature-item {
        width: 100%;
    }
}

html, body {
    overflow-x: hidden !important;
}

.property-single-container, .property-single-container * {
    /* Usando la fuente predeterminada de WordPress */
    font-weight: 600 !important;
}

.property-single-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.property-back-link {
    margin-bottom: 2rem;
}

.property-back-link a {
    display: inline-flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.property-back-link a:hover {
    color: var(--primary-color);
}

/* Gallery Section - Updated for new layout */
.property-gallery-section {
    margin-bottom: 2rem;
}

.property-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    width: 100%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f8f8;
    max-width: 100%;
    /* Usar padding-bottom para mantener una proporción constante (16:9) */
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625 = 56.25%) */
    height: 0;
    box-sizing: border-box;
}

.main-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8f8f8;
}

.fixed-size-image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

#main-property-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
    background-color: #f8f8f8;
}

/* Navigation arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.gallery-nav:focus {
    outline: none;
}

.prev-image {
    left: 15px;
}

.next-image {
    right: 15px;
}

.gallery-nav .dashicons {
    color: #333;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Image counter */
.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 5;
}

.property-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0;
    overflow: hidden;
    flex-wrap: wrap;
}

.property-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.property-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.property-thumbnails::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 6px;
}

.property-thumbnail {
    flex: 1;
    max-width: 19%;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
    display: none; /* Hide all thumbnails by default */
    margin: 0 3px;
}

.property-thumbnail.visible {
    display: block; /* Only show thumbnails with the visible class */
}

.property-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.property-thumbnail.active {
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Media queries para dispositivos móviles */
@media (max-width: 768px) {
    .main-image-container {
        margin-bottom: 0;
    }
    
    .fixed-size-image-container {
        background-color: transparent;
    }
    
    .image-counter {
        bottom: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .gallery-nav {
        width: 36px;
        height: 36px;
    }
    
    .gallery-nav .dashicons {
        font-size: 18px;
        width: 18px;
        height: 18px;
    }
    
    .property-thumbnail {
        max-width: 23%;
        height: 80px;
    }
}

.property-thumbnail.more-photos {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    max-width: 19%;
    flex: 1;
}

.property-thumbnail.more-photos.visible {
    display: flex;
}

.property-thumbnail.more-photos:hover {
    background-color: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
}

/* Property Info Section - Now below the gallery */
.property-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.property-single-header {
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.property-title {
    font-size: 2rem;
    color: #333;
    margin: 0 0 1rem;
}

.property-price {
    color: #333;
    background-color: #f0f0f0;
}

/* Estilo base común para todos los elementos de meta */
.property-ref,
.property-price,
.property-type,
.property-status,
.property-location {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    padding: 0.35rem 0.85rem !important;
    border-radius: 4px !important;
    display: inline-block !important;
    box-sizing: border-box !important;
    height: auto !important;
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    align-items: center;
    margin-bottom: 1rem;
}

.property-meta > div {
    margin-right: 10px;
}

.property-ref {
    color: #666;
    background-color: #f5f5f5;
}

.property-type {
    color: #2271b1;
    background-color: #bfffc9;
}

.property-status {
    color: #fff;
    background-color: #34db95;
}

.property-location {
    color: #666;
    background-color: #f5f5f5;
}

/* Property Units Section */
.property-units {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.property-units h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

/* Tabla de unidades */
.units-table-container {
    overflow-x: auto;
}

.units-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.units-table th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #ddd;
}

.units-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.units-table tr:hover {
    background-color: #f9f9f9;
}

.unit-count {
    display: inline-block;
    background-color: #34db95;
    color: white;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-align: center;
    min-width: 30px;
}

.unit-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.unit-feature i {
    color: #34db95;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.unit-price {
    font-weight: 600;
    color: #333;
}

.unit-details-toggle {
    background-color: #34db95;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background-color 0.2s;
}

.unit-details-toggle:hover {
    background-color: #2bc17f;
}

/* Tabla de áreas dentro de cada unidad */
.unit-areas-table {
    margin: 10px 0;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}

.unit-areas-table table {
    width: 100%;
    border-collapse: collapse;
}

.unit-areas-table th {
    background-color: #eee;
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}

.unit-areas-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.85rem;
}

.unit-areas-table tr:last-child td {
    border-bottom: none;
}

.property-location {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.property-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.property-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.property-price {
    font-size: 1.75rem;
    color: #333;
    font-weight: 700;
}

.property-status {
    font-size: 1rem;
    color: #fff;
    background-color: #34db95;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    margin-top: 0.5rem;
    justify-content: flex-start;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 calc(25% - 0.1rem);
    max-width: calc(25% - 0.1rem);
    background-color: #f8f9fa;
    padding: 0.4rem;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bfffc9;
    border-radius: 50%;
    color: #2271b1;
}

/* Custom feature icon colors from dynamic properties */
.feature-icon {
    background-color: var(--property-type-bg-color, #bfffc9) !important;
    color: var(--primary-color, #34db95) !important;
}

.feature-icon span {
    color: var(--primary-color, #34db95) !important;
}

.property-type, .property-type span {
    color: var(--primary-color, #34db95) !important;
}

.feature-icon .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.feature-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-label {
    font-size: 0.8rem;
    color: #666;
}

.property-description,
.property-map,
.property-dates,
.property-developer,
.property-documents,
.property-features-section {
    margin: 0.25rem 0;
    padding-top: 0;
    border-top: none;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.features-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

/* Estilos para secciones con fondo */
.property-description,
.property-map-section,
.property-features-list,
.property-info-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.property-description h3,
.property-map-section h3,
.property-dates h3,
.property-developer h3,
.property-documents h3,


/* Reducir espacio para el h3 de la sección de características */
.property-features-list h3,
.property-features-section h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 0.5rem;
}

.contact-form-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form-container .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-container .wpcf7-form p {
    margin: 0;
}

.contact-form-container .wpcf7-form p:last-of-type {
    grid-column: span 2;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 1rem;
}

.contact-form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-container input[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-container .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-form-container .wpcf7-response-output {
    grid-column: span 2;
    margin: 1rem 0 0;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.map-info-window {
    padding: 5px 10px;
    font-size: 14px;
}

.description-content {
    color: #666;
    line-height: 1.6;
}

.dates-content,
.developer-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.date-item,
.developer-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-label,
.developer-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.date-value,
.developer-value {
    font-size: 1rem;
    color: #333;
}

.document-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2271b1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.document-link:hover {
    color: #135e96;
    text-decoration: underline;
}

/* Property Content Layout - Two columns */
.property-content-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

/* En dispositivos móviles, cambiar el orden de las columnas */
@media (max-width: 767px) {
    .property-content-layout {
        flex-direction: column;
    }
    
    .property-info-column {
        order: 1;
        width: 100%;
    }
    
    .property-contact-column {
        order: 2;
        width: 100%;
        margin-top: 2rem;
    }
}

.property-info-column {
    flex: 1;
    min-width: 0; /* Prevent overflow in flex items */
    width: 100%;
    box-sizing: border-box;
}

.property-contact-column {
    width: 530px;
    position: relative;
    align-self: flex-start;
}

.property-contact-form {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 20px;
    transition: top 0.2s ease-in-out;
    z-index: 10;
    margin-top: 0;
}

@media (max-width: 767px) {
    .property-contact-column {
        width: 100%;
    }
}

.property-contact-form {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.property-contact-form h3 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form-container {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.contact-form-container .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-container .wpcf7-form p {
    margin: 0;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 1rem;
}

.contact-form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-container input[type="submit"] {
    background-color: #00e582;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

/* Restore Font Awesome icon font for property single */
.property-single-container .fas,
.property-single-container .far,
.property-single-container .fab {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Media queries for responsive layout */
@media (max-width: 992px) {
    .property-content-layout {
        flex-direction: column;
        position: relative;
    }
    
    .property-contact-column {
        width: 100%;
    }
    
    .property-contact-form {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
    
    .main-image-container {
        height: 550px; /* Altura ajustada para tablets grandes */
    }
    
    #main-property-image {
        height: 550px;
    }
    
    .property-thumbnails {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .feature {
        flex: 0 0 calc(33.33% - 0.1rem);
        max-width: calc(33.33% - 0.1rem);
    }
}

@media (max-width: 768px) {
    .property-features {
        flex-wrap: wrap;
        gap: 0.1rem;
        justify-content: flex-start;
    }
    
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .features-row {
        display: flex;
        gap: 1.5rem;
        width: 100%;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
    }
    
    .main-image-container {
        height: 450px; /* Altura ajustada para tablets */
    }
    
    #main-property-image {
        height: 450px;
    }
    
    .property-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
    }
    
    .prev-image {
        left: 10px;
    }
    
    .next-image {
        right: 10px;
    }
    
    .contact-form-container .wpcf7-form {
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .contact-form-container .wpcf7-form p:last-of-type {
        grid-column: span 1;
    }
    
    .feature {
        flex: 0 0 calc(50% - 0.1rem);
        max-width: calc(50% - 0.1rem);
    }
}

@media (max-width: 576px) {
    .property-title {
        font-size: 1.5rem;
    }
    
    /* Ajustar elementos de meta para pantallas pequeñas */
    .property-meta {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .property-ref,
    .property-price,
    .property-type,
    .property-status,
    .property-location {
        font-size: 14px !important;
        padding: 0.25rem 0.5rem !important;
        margin-bottom: 0.25rem;
        width: auto;
        max-width: 100%;
    }
    
    .property-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .main-image-container {
        height: 350px; /* Altura ajustada para móviles */
    }
    
    #main-property-image {
        height: 350px;
    }
    
    .property-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
    }
    
    .property-thumbnail {
        height: 50px;
    }
    
    .gallery-nav {
        width: 30px;
        height: 30px;
    }
    
    .gallery-nav .dashicons {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .property-single-container {
        margin: 1rem auto;
        padding: 0 0.5rem;
    }
    
    /* Mejorar visualización de imágenes en móviles */
    .main-image-container {
        padding-bottom: 75%; /* Cambiar proporción para móviles */
    }
    
    /* Hacer que las tablas sean responsivas */
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ajustar padding de contenedores para móviles */
    .property-description,
    .property-map-section,
    .property-features-list,
    .property-info-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .property-single-header {
        padding: 1rem;
    }
    
    .property-meta {
        justify-content: flex-start;
    }
    
    /* Hacer que los elementos de meta ocupen todo el ancho en móviles muy pequeños */
    .property-ref,
    .property-price,
    .property-type,
    .property-status,
    .property-location {
        display: inline-block !important;
        margin-right: 0.25rem;
        margin-bottom: 0.25rem;
    }
    .property-features {
        flex-wrap: wrap;
        gap: 0.1rem;
        justify-content: flex-start;
    }
    
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .features-row {
        display: flex;
        gap: 1.5rem;
        width: 100%;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
    }
    
    .main-image-container {
        height: 400px; /* Altura ajustada para móviles pequeños */
    }
    
    #main-property-image {
        height: 400px;
    }
    
    .property-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .property-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
    }
    
    .feature-icon .dashicons {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
}

.property-single-container .dashicons,
.property-single-container .dashicons:before {
    font-family: 'Dashicons' !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}
