div.map-card-image {
    width: 300px !important;
    height: 160px !important;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 3px;
}
.map-card-footer {
    padding: 8px 10px;
}
.map-card-close{
    position: absolute;
    top: 5px;
    right: 5px;
    border: 1px solid white;
    background: white;
    padding: 5px 9px;
    border-radius: 50%;
}
.property.highlight{
    z-index: 1;
}
.property.highlight>.icon {
    display: none;
}

/*
 * Optional: Makes the sample page fill the window.
 */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/*
 * Always set the map height explicitly to define the size of the div element
 * that contains the map.
 */
#map {
    height: 100%;
    width: 100%;
}

/*
 * Property styles in unhighlighted state.
 */
.property {
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    color: #263238;
    display: flex;
    font-size: 14px;
    /*gap: 15px;*/
    height: 30px;
    justify-content: center;
    padding: 4px;
    position: relative;
    transition: all 0.3s ease-out;
    width: 30px;
}

/*.property::after {*/
/*    border-left: 9px solid transparent;*/
/*    border-right: 9px solid transparent;*/
/*    border-top: 9px solid #FFFFFF;*/
/*    content: "";*/
/*    height: 0;*/
/*    left: 50%;*/
/*    position: absolute;*/
/*    top: 95%;*/
/*    transform: translate(-50%, 0);*/
/*    transition: all 0.3s ease-out;*/
/*    width: 0;*/
/*    z-index: 1;*/
/*}*/

.property .icon {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
}

.property .icon svg {
    height: 20px;
    width: auto;
}

.property .details {
    display: none;
    flex-direction: column;
    flex: 1;
}

.property .address {
    color: #9E9E9E;
    font-size: 10px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.property .features {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.property .features > div {
    align-items: center;
    background: #F5F5F5;
    border-radius: 5px;
    border: 1px solid #ccc;
    display: flex;
    font-size: 10px;
    gap: 5px;
    padding: 5px;
}

/*
 * Property styles in highlighted state.
 */
.property.highlight {
    background-color: #FFFFFF !important;
    border-radius: 10px;
    box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.2);
    height: 250px;
    padding: 0px;
    width: 300px;
}

.property.highlight .details {
    display: flex;
}

.property.highlight .icon svg {
    width: 50px;
    height: 50px;
}

.property .bed {
    color: #FFA000;
}
.property .bath {
    color: #03A9F4;
}
.property .size {
    color: #388E3C;
}
.property.highlight .icon {
    color: #927121;
}
.property:not(.highlight) {
    background-color: #927121;
}
.property.front {
    background-color: #000;
}

.fa-sr-only {
    /*display: none;*/
}
