/* Profile filters */
.property-card {
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
    background-clip: padding-box;

    -webkit-box-shadow: 0 0 8px 0 rgba(150, 150, 150, 0.15);
    box-shadow: 0 0 8px 0 rgba(150, 150, 150, 0.15);
    border: 1px solid rgb(230,230,230);
    border-radius: 3px;
}

.property-card.active {
    border-color: rgb(80,200,80);
}

.property-card .property-content {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 15px 5px 15px;
    border-radius: 0 0 2px 2px;
    background-clip: padding-box;
}

.property-card .property-image {
    display: block;
    height: 150px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.property-card .property-action {
    padding: 12px 15px;
    border-top: 1px solid rgba(160, 160, 160, 0.2);
}

.property-card .property-label {
    position: absolute;
    top: 10px;
    right: 10px;
    text-transform: uppercase;
    font-weight: 400;
}

.property-card.property-horizontal .property-content {
    width: 100%;
    height: 230px;
}

.property-card.property-horizontal .property-content .listingInfo {
    display: table-cell;
    height: 155px;
    vertical-align: middle;
}

.property-card.property-horizontal .property-content .property-action {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.property-card.property-horizontal .property-content .property-action a {
    margin-right: 7px;
    color: #313a46;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    display: inline-block;
    border: 1px solid #dcdee0;
    padding: 1px 6px;
    border-radius: 3px;
}

.property-card.property-horizontal .property-content .property-action a i {
    font-size: 14px;
    margin-right: 5px;
    vertical-align: baseline;
}


/* Dark theme */
body.is-dark .property-card {
    border-color: rgb(40,40,40);
}

body.is-dark .property-card.active {
    border-color: #00bc8c;
}
