﻿/*CSS FOR REDESIGN*/
/* Homes Skeleton --------------
---------------------------------- */
:root {
    --loadercard-shadow: 0 15px 30px 0 rgba(0,0,0,0.05), 0 5px 15px 0 rgba(0,0,0,.05);
    --loadercard-shadow-hover: 0 15px 60px 0 rgba(0,0,0,0.08), 0 5px 25px 0 rgba(0,0,0,.08);
    --loadercard-gradient: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
}

.temporary-loader {
    display: grid;
    grid-gap: .1rem;
    width: 100%;
}

    .temporary-loader.map {
        grid-template-columns: repeat(3,1fr);
    }

    .temporary-loader.list {
        grid-template-columns: repeat(4,1fr);
    }

    .temporary-loader .loader-container {
        margin: 0.4rem;
        max-width: 800px;
    }

        .temporary-loader .loader-container .card {
            padding: 0;
            overflow: hidden;
            background: #fff;
            border-radius: .25rem;
            width: 100%;
            box-shadow: var(--loadercard-shadow);
            transition: ease box-shadow 0.3s;
        }

            .temporary-loader .loader-container .card:hover {
                box-shadow: var(--loadercard-shadow-hover);
            }

    .temporary-loader .card__detail {
        padding: 0 1rem;
    }

        .temporary-loader .card__detail h3 {
            font-size: 1.5rem;
            line-height: .09;
            margin: .5rem 0;
        }

        .temporary-loader .card__detail p {
            line-height: 1.3rem;
        }

    .temporary-loader .card__image {
        margin: 0;
        padding: 0;
        min-height: 235px;
        max-height: 415px;
        overflow: hidden;
    }

    .temporary-loader.map .card__image {
        min-height: 220px;
    }

    .temporary-loader.list .card__image {
        min-height: 300px;
    }

    .temporary-loader .loading {
        position: relative;
        background-color: #c0c0c0;
        border-radius: 0;
    }

        .temporary-loader .loading::after {
            display: block;
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            transform: translateX(-100%);
            background: var(--loadercard-gradient);
            animation: loading 1.5s infinite;
        }

    .temporary-loader .card__detail-title.loading {
        height: 1.4rem;
    }

    .temporary-loader .card__detail-description.loading {
        height: 50px;
        margin: .5rem 0;
    }

#homesearch .loading-spinner {
    display: none;
}

    #homesearch .loading-spinner.active {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100%;
        position: absolute;
        z-index: 999;
        background: rgba(0, 0, 0, 0.5);
    }

.loading-spinner.active .filter-spinner {
    margin-bottom: 40vh;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
/* animation for filter-spinner */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* animation for card */
@keyframes loading {
    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 1730px) and (min-width: 1150px) {
    .temporary-loader.list .card__image {
        min-height: 275px;
    }
}

@media (max-width: 1500px) and (min-width: 992px) {
    .temporary-loader.map {
        grid-template-columns: repeat(2, 1fr);
    }

    .temporary-loader.list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1149px) and (min-width: 992px) {
    .temporary-loader.list .card__image {
        min-height: 225px;
    }
}

@media (max-width: 991px) {
    .temporary-loader.list,
    .temporary-loader.map {
        grid-template-columns: 1fr;
    }

        .temporary-loader.list .card .card__image {
            min-height: 500px;
        }

        .temporary-loader.list .loader-container {
            max-width: 100%;
        }
}

@media (max-width: 991px) and (min-width: 768px) {
    .temporary-loader.map .card .card__image {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .temporary-loader.map .card .card__image,
    .temporary-loader.list .card .card__image {
        min-height: 330px;
    }
}

@media (max-width: 430px) {
    .temporary-loader.map .card .card__image,
    .temporary-loader.list .card .card__image {
        min-height: 265px;
    }
}
/* MAIN HOME SEARCH NAV --------------
---------------------------------- */
i.fas { font-family: "FontAwesome"; font-style: normal; }

.PIN_1511276931593_embed_grid, span[data-pin-log="button_pinit_floating"] {
    display: none!important;
}
.homesearch-options { float: left; }
.homesearch-filter-header  {
    padding: 15px 0px;
    width: 100%;
    background-color: #eee;
}
#clearFilters {
    float: right;
    font-size: 12px;
    line-height: 18px;
    position: relative;
    font-weight: 600;
}
.viewToggleIcons {
    float: right;
    cursor: pointer;
    font-size: 18px;
}
.viewToggle {
    margin-left: 20px;
}
/* CHECKBOXES -----------------------
---------------------------------- */
.homesearch-options input[type="checkbox"] + label {
    font-weight: 600;
    margin-bottom: 0;
}
.homesearch-options .checkbox-filters input[type="checkbox"] + label:before {
    margin-right: 24px;
    border: none;
}
/*checkbox margins*/
.homesearchOption {margin-bottom: 20px;}
#selectDiv-builders .homesearchOption {margin-bottom: 10px;}
/* DROPDOWN FILTERS -----------------
---------------------------------- */
/*Most of the filter styles are defined in gridstyles.css (the ones here are similar to the events filters dropdowns) gridstyles.css is shared between pages, but this stylesheet is specific to the homesearch*/
.homesearch-filter-row .innerContent i {
    font-size: 16px;
    vertical-align: middle;
    width: 15px;
    text-align: center;
}
.homesearch-filter-row .innerContent p {line-height: 1;}
.homesearch-filter-row .active .innerContent .icon-ion-ios-arrow-down:before {content: "\f3d8";}
.homesearch-filter-row .innerContent p, .homesearch-filter-row .innerContent i { display: inline-block; }
.clear-filters-button, .select-all-button, .clear-price-filters-button, .sort-direction-button {font-weight: 600;}
.sort-direction-button {display:inline-block;width:49%;text-align:center;}
.option-buttons {margin-top: 22px;}
.innerContentOptions .price-filter,.innerContentOptions .select-wrapper {
    width: 48.5%;
    margin-bottom: 30px;
}
.innerContentOptions .price-filter,.innerContentOptions select {
    border-radius: 8px;
    height: 50px;
    padding: 17px 19px;
}
.innerContentOptions .price-filter {
    border: 1px solid #5e5a54;
}
.innerContentOptions .price-filter, .innerContentOptions .separator, .innerContentOptions .select-wrapper { float: left; }
.innerContentOptions select {
    color: #fff;
    border: none;
    background-color: #9e9898;
    width: 100%;
}
.homesearch-filter-row .option-count.show-count { vertical-align: top}
/*select wrappers*/
.innerContentOptions .select-wrapper i {
    color: #fff;
}
.select-wrapper {
    position: relative;
}
.select-wrapper i {
    position: absolute;
    font-size: 16px;
    top: 50%;
    margin-top: -8px;
    right: 20px;
    pointer-events: none;
}
@media (min-width: 768px) {
    #showInventory, #showModels, #showFeatured {
        padding-left: 6%;
    }
    /* DROPDOWN FILTERS -----------------
    ---------------------------------- */
    .homesearch-filter-row .innerContent p {
        letter-spacing: 0;
    }
    .homesearch-filter-row {
        border-bottom: 1px solid #d7d7d7;
        background: #fff;
    }
    .homesearch-filter-row .innerContent {
        padding: 15px 19px;
        border-right: 1px solid #d7d7d7;
        height: 45px;
        cursor: pointer;
    }
    .innerContentOptions {
        width: 375px;
        top: 60px;
    }
    .homesearch-options {
        position: relative;
    }
    /*dropdown active overlay*/
    .homesearch-homes-container.overlay:after {
        position: absolute;
        background: rgba(0,0,0,.6);
        top: 96px;
        bottom: -14px;
        right: 0;
        left: 0;
        width: 100%;
        z-index: 1;
        content: '';
    }
    .homesearch-homes-container.overlay.full:after {
        bottom: -55px;
    }
}
/* FIXES FOR DROPDOWNS THAT GO OFFSCREEN
------------------------------------- */
@media (min-width: 880px) and (max-width: 1309px) {
        .homesearch-filter-row .homesearch-options:nth-child(6) ~ .homesearch-options .innerContentOptions {
        right: 0;
    }
}
@media (min-width: 768px) and (max-width: 879px) {
        .homesearch-filter-row .homesearch-options:nth-child(4) ~ .homesearch-options .innerContentOptions {
        right: 0;
    }
}
@media (min-width: 992px) and (max-width: 1059px) {
    .homesearch-filter-row .innerContent {
        padding: 15px 12px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    #showModels, #showFeatured {
        padding-left: 3%;
    }
    .homesearch-filter-row .innerContent {
        padding: 15px 8px;
        font-size: 13px;
    }
    .homesearch-filter-row .innerContent i {
        font-size: 11px;
    }
}
@media (max-width: 767px) {
    .mobile-filter-menu .menu-item {
        float: left;
        width: 50%;
    }
    .mobile-filter-menu .menu-item:last-of-type {
        border-left: 1px solid #d7d7d7;
    }
    /* OPENED MENU */
    .homesearch-options-wrap {
        display: none;
        overflow: scroll;
        width: 100%; height: 100%;
        padding-bottom: 500px;
        position: fixed;
        background: #fff;
        z-index: 998;
    }
    .homesearch-options-wrap, .homesearch-homes-map {
        top: 114px;
    }
    .homesearch-filter-header {
        padding: 20px 0 30px;
        margin-bottom: 15px;
    }
    #showVirtualTours label, #showInventory label, #showModels label, #showFeatured label {
        display: block;
        border-radius: 8px;
        padding: 16px 16px 16px 44px;
        margin-top: 20px;
    }
    #showVirtualTours label:before, #showInventory label:before, #showModels label:before, #showFeatured label:before {
        top: 16px; left: 16px;
    }
    .homesearch-filter-row {
        margin: 0 15px;
    }
    .homesearch-filter-row .homesearch-options {
        display: block;
        width: 100%;
    }
    .checkbox-filters {
        padding-top: 20px;
    }
    /* DROPDOWN FILTERS -----------------
    ---------------------------------- */
    .homesearch-options.open-xs {
        border-top: 1px solid #d7d7d7; border-bottom: 1px solid #d7d7d7;
        margin: 10px 0 40px 0;
        padding: 30px 0 10px 0;
    }
    .homesearch-options.open-xs .innerContent {
        text-align: center;
        pointer-events: none;
        line-height: 20px;
        font-size: 16px;
    }
    .homesearch-options.open-xs .innerContent i, .homesearch-options.open-xs .clear-links, .homesearch-options.open-xs .option-count {
        display: none;
    }
    .homesearch-options.open-xs .innerContentOptions {
        display: block;
        position: relative;
        box-shadow: none;
        z-index: 0;
        padding: 20px 0;
    }
    .homesearch-options.closed-xs { position: relative; }
    .homesearch-options.closed-xs .innerContentOptions {
        top: 60px;
    }
    .homesearch-options.closed-xs .innerContent {
        border: 1px solid #5e5a54;
        border-radius: 8px;
        height: 50px;
        padding: 17px 19px;
        margin-bottom: 30px;
        position: relative;
    }
    .homesearch-options.closed-xs .innerContent i, .option-count.show-count {
        float: right;
    }
}
/* HOMEsearch PAGE SCROLL & LAYOUT --
---------------------------------- */
@media (min-width: 768px) {
    .homefinder {overflow: hidden;}
    .homefinder footer:not(.homesearch-footer) {display: none;}
    .homesearch-homes-results { display: inline-block; width: 60%; float: left; height: 100%; }
    .homesearch-homes-list.full {width:100%;}
    .homesearch-homes-list {
        overflow-y: scroll;
        max-width: 100%;
        position: relative;
    }
    .homesearch-homes-container {
        height: 100vh;
        margin-top: -238px;
        padding-top: 238px;
    }
    .homesearch-homes-list {
        height: 100%;
    }
    .homesearch-homes-map {
        height: calc(100% + 55px);
        line-height: 1;
    }
}
@media (min-width: 1025px) {
    .homesearch-homes-results { display: inline-block; width: 55%; float: left; height: 100%; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .homesearch-homes-container {
        margin-top: -218px;
        padding-top: 218px;
    }
    .homesearch-homes-results { width: 50%; }
    #homeResults .result {width: 100% !important; }
    .homesearch-homes-map {
        display:inline-block;
        width:50%;
        float: left;
    }
}
@media (min-width: 992px) and (max-width: 1440px) {
    #homeResults .result { width: 50% !important; }
}
@media (max-width: 767px) {
    /*spacing for fixed filter menu*/
    .homesearch-homes-container {margin-top: 58px;}
    .homesearch-options.open-xs .option-buttons .button { width: 100%; }
    .homesearch-options.open-xs .option-buttons .button:last-of-type { display: none; }
    .option-buttons .special-close { width: 100% !important; }
}
/* MAP ------------------------------
---------------------------------- */
.homesearch-homes-map #map{
    width: 100%;
    height: 100%;
}
@media (min-width: 992px) {
    .homesearch-homes-map {
        display:inline-block;
        width: 40%;
        float: left;
    }
}
@media (min-width: 1025px) {
    .homesearch-homes-map {
        display:inline-block;
        width:45%;
        float: left;
    }
}
@media(max-width: 767px) {
    .homesearch-homes-map {
        /*visibility:hidden;*/
		display: none;
        position: fixed;
        z-index: 99;
        height: 100%;
        width: 100%;
    }
}

.innervirtualtours {
    min-height: 550px;
    width: 100%;
}

.innervirtualtours iframe {
    margin-top: 25px;
    width: 100%;
}

.innervideotours .videotour-iframe {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.innervideotours .videotour-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* RESULT MODULES -------------------
---------------------------------- */
.homesearch-homes { width: 100%; position: relative; min-height: 150px; float: left;} /* copied from .homesearchHomes */
.mainItem2 { margin-right: 2px; line-height: 18px; } /* copied from .mainItem2 - unchanged class name */
.pad-top-10 { margin-top:10px!important; }
/* new css --------------------------
---------------------------------- */

#page_container {
   	background-color: #e8e9ea;
	padding-top: 10px;
}

#homeResults {
    display: flex;
    flex-wrap: wrap;
}
.result {
    margin-bottom: 10px;
    cursor: pointer;
    width: 33%;
    padding-left: 5px;
    padding-right: 5px;
}

.homesearch-homes-list.full #homeResults .result {
	width: 25%;
}

@media (max-width: 1500px) {
    .result { 
        width: 50%; 
    }
    .homesearch-homes-list.full #homeResults .result { 
        width: 33%;
    }
}

#homeResults .result .homedetails div.num-info:after {
	clear: both;
}
#homeResults:after {
	clear: both;
}
#homeResults .result .homedetails {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	overflow: auto;
	padding: 0 10px 5px;
	background-color: #fff;
	line-height: 20px;
}

#homeResults .result div.banner:after,
#homeResults .result div.featured:after,
#homeResults .result .imageContainer {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

#homeResults .result .home-details {
	float: none;
	width: 100%;
}

#homeResults .result .homeName {
	width: 55%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#homeResults .result .modelPrice {
	width: 45%;
	text-align: right;
}
#homeResults .result .homeAddress {
	color: #869099;
}
#homeResults .result .num-info .valueItem2 {
	padding-right: 10px;
}

#homeResults .result .num-info .valueItem2.sqft {
    padding-right: 0;
}

#homeResults .result .num-info .specItem {
    white-space: nowrap;
}

#homeResults .result .homeImage.banner:after {
	height: 27px;
	/*background-color: rgba(242, 100, 77, 0.7);*/
}
#homeResults .result .homeImage span.banner {
	padding: 6px 20px;
	height: 27px;
}
#homeResults .result .homeImage.featured:after {
	height: 27px;
	background-color: rgba(71,78,82,0.7);
}
#homeResults .result .homeImage span.featured {
	padding: 6px 40px;
	height: 27px;
}
#homeResults .result .homeImage.featured:after {
	padding: 6px 14px;
}
#homeResults .result .homeImage.available:before {
	padding: 6px 15px;
}

#homeResults [class^="iconhome-"] {
    font-size: 14px;
    color: #000;
}

#homeResults .specItem .bedroom-item .nameDirect:not(:last-child):after,
#homeResults .specItem .bathroom-item .nameDirect:not(:last-child):after {
    content: ',';
}


.printButton {
    cursor: pointer;
    float: right;
    margin: 15px 15px 10px 15px;
} /* copied from .printButton - unchanged class name */
.printButton i {margin-left: 8px;}
.printButton p {font-size: 12px;}
.sortBy {
    cursor: pointer;
    float: left;
    margin: 15px 15px 10px 15px;
}
.sortBy p {display:inline-block;}
.sort-direction i.active {color:#219f53;}
.home-link .modelsqFt, .home-link .num-info {font-size: 14px;}
@media (max-width: 767px) {
    .result,
    .homesearch-homes-list.full #homeResults .result {width: 100%;}
    .homefinder.menu-open #homeResults .result { display: none !important; }
}
@media (min-width: 992px) {
    .floats .builderInfo{float: left;}
    .floats .modelItem{float: right;}
}
/* MAPS POPUPS ----------------------
---------------------------------- */
.map-popup img {
    max-width: 100% !important;
    margin: 0 !important;
}
/* PAGINATION -----------------------
---------------------------------- */

.homesearch-container .page_navigation .first_link,
.homesearch-container .page_navigation .last_link {
    margin: 0 8px;
}

.homesearch-container .page_navigation .previous_link,
.homesearch-container .page_navigation .next_link {
    margin: 0 8px;
    border-radius: 0;
    border: none;
    float: none;
}

.homesearch-container .page_navigation .first_link i,
.homesearch-container .page_navigation .last_link i {

}

.homesearch-container .page_navigation .previous_link i,
.homesearch-container .page_navigation .next_link i {
    border-radius: 0;
    border: none;
}

.homesearch-container .page_navigation .page_link { padding: 0 8px; }
.homesearch-container .page_navigation .active_page { 
    border-radius: 0;
    width: initial;
    height: initial;
}

.homesearch-container .page_navigation .no_more i { 
    color: #bbb;
}

@media (max-width: 768px) {

    .homesearch-container .page_navigation .first_link,
    .homesearch-container .page_navigation .last_link {
        display: none;
    }
    .homesearch-container .page_navigation .previous_link,
    .homesearch-container .page_navigation .next_link {
        margin: 0 4px;
    }
    .homesearch-container .page_navigation .page_link { margin: 0 4px; }
    .homesearch-container .page_navigation .ellipse { margin: 0 2px; }
}

@media (max-width: 767px) {
    .homesearch-container .page_navigation {padding: 0 15px;}
}
/* FOOTER ---------------------------
---------------------------------- */
.homesearch-footer {
    margin-bottom: 30px; width: 100%; float: right; /* copied from .homesearchFooter */
    border-top: 1px solid #d7d7d7;
    margin-bottom: 0;
}
.homesearch-footer .inner {
    border-top: none !important;
    padding: 0 !important;
}
.homesearch-footer .foot-main .foot-col {
    border: none !important;
   -webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
    padding: 20px 2%;
}
.homesearch-footer .foot-main .legal {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 380px;
    flex: 1 1 380px;
    line-height: 16px;
    font-size: 10px;
}
.homesearch-footer .foot-main .info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 265px;
    flex: 1 1 265px;
}
.homesearch-footer .foot-main .menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 170px;
    flex: 1 1 170px;
}
.homesearch-footer .menu li:first-of-type a {margin-top: 0;}
.homesearch-footer .images {margin-top: 5px;}
.homesearch-footer img {vertical-align: middle;}
.homesearch-footer img:first-of-type {
    margin-right: 25px;
}
@media (max-width: 767px) {
    .homesearch-footer {display: none;}

}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
    .page_navigation .hidden-xs {
        display: none !important;
    }
}
.print-break {
    display: none;
}

/*------------------------------------------------------------
				Homefinder MARKER styles 
---------------------------------------------------------------*/
.marker {
	white-space: nowrap;
	text-decoration: none;
	box-sizing: border-box;
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 1px solid #fff;
	border-radius: 1000px;
	transform: translate(-50%,-50%);
	cursor: pointer;
	transition: .3s all cubic-bezier(.39,.575,.565,1);
	background-clip: padding-box;	position: absolute;
	line-height: 0;
	background-color: #20c063;
	border: 1px solid #228959;
}

.marker.active {
	z-index: 12;
	box-shadow: inset 0 0 0 1px #fff;
	width: 28px;
	height: 28px;
	background-color: #228959;
	border: 10px solid rgba(34, 137, 89, .5);
}
/*------------------------------------------------------------
				Homefinder TOOLTIP styles 
---------------------------------------------------------------*/
.ellipsis-style {
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#map {
    width: 800px;
    height: 800px;
    position: relative;
    margin: auto;
}
#marker-tooltip, #mobile-tooltip {
    display: none;
    position: absolute;
    width: 210px;
    height: 270px;
    background-color: #fff;
    z-index: 999999;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 20px 10px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 1px 20px 10px rgba(0,0,0,0.15);
    box-shadow: 0px 1px 20px 10px rgba(0,0,0,0.15);
}
#marker-tooltip div, #marker-tooltip p, #marker-tooltip span,
#mobile-tooltip div, #mobile-tooltip p, #mobile-tooltip span { font-family: 'proxima-nova', sans-serif; }
#marker-tooltip .info_content, #mobile-tooltip .info_content {
	display: flex;
	flex-direction: column;
	height: 100%;
}
#marker-tooltip .info_content .tooltip-bg-img,
#mobile-tooltip .info_content .tooltip-bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	height: 150px;
	border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}  
#marker-tooltip .info_content .tooltip-body-content,
#mobile-tooltip .info_content .tooltip-body-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 6px;
}
#marker-tooltip .info_content .tooltip-body-content .home-name,
#mobile-tooltip .info_content .tooltip-body-content .home-name { font-weight: 600; font-size: 14px; }

#marker-tooltip .info_content .tooltip-body-content .homePrice,
#mobile-tooltip .info_content .tooltip-body-content .homePrice { font-size: 16px; margin-top: 5px; }

#marker-tooltip .info_content .tooltip-body-content .available-date,
#mobile-tooltip .info_content .tooltip-body-content .available-date { font-size: 13px; }

#marker-tooltip .info_content .tooltip-body-content .home-details,
#mobile-tooltip .info_content .tooltip-body-content .home-details {
	font-size: 14.5px;
	width: 100%;
	margin-top: 5px;
    margin-bottom: 5px;
	/*display: flex;*/
	justify-content: space-between;
}
#marker-tooltip .info_content .tooltip-body-content .home-details .specItem,
#mobile-tooltip .info_content .tooltip-body-content .home-details .specItem { white-space: nowrap; }

#marker-tooltip .info_content .tooltip-body-content .home-details .valueItem2,
#mobile-tooltip .info_content .tooltip-body-content .home-details .valueItem2 { margin-right: 4px; }

#marker-tooltip .info_content .tooltip-body-content .iconPlus:before,
#mobile-tooltip .info_content .tooltip-body-content .iconPlus:before {
	margin: 0;
    font-size: 12px;
	vertical-align: middle;
	color: #388e3c;
    font-weight: 600;
}
#marker-tooltip .body-content .price-holder,
#mobile-tooltip .body-content .price-holder { margin-bottom: 10px; }
#marker-tooltip .tooltip-body-content .tooltip-address,
#mobile-tooltip .tooltip-body-content .tooltip-address {
	font-size: 13px;
	color: #757575;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
/*------------------- Media Queries ------------------------*/
@media (max-width: 767px) {
	#mobile-tooltip.mobile-active {
		height: 180px;
		-webkit-animation: slideIn ease-out .4s;
		-moz-animation: slideIn ease-out .4s;
		-o-animation: slideIn ease-out .4s;
		animation: slideIn ease-out .4s;
	}
	#mobile-tooltip.mobile-active,
	#mobile-tooltip.mobile-active .info_content .tooltip-bg-img { border-radius: unset; }
	#mobile-tooltip.mobile-active .info_content { flex-direction: row; }
	#mobile-tooltip.mobile-active .info_content .tooltip-bg-img {
		height: auto;
		width: 40%;
	}
	#mobile-tooltip.mobile-active .info_content .tooltip-body-content {
		width: 60%;
		justify-content: center;
		padding: 15px;
	}
	#mobile-tooltip .info_content .tooltip-body-content .home-details { justify-content: center; }
	#mobile-tooltip .info_content .tooltip-body-content .home-details .valueItem2:not(:last-of-type) { margin-right: 4%; }
}
@media (max-width: 390px) {
	#mobile-tooltip .info_content .tooltip-body-content .home-details { font-size: 13.5px; }
}
/* keyframes */
/* Add Animation */
@-webkit-keyframes slideIn {
    from {transform: translateY(180px); opacity: 0} 
    to {transform: translateY(0); opacity: 1}
}
@keyframes slideIn {
    from {transform: translateY(180px); opacity: 0} 
    to {transform: translateY(0); opacity: 1}
}
@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}
@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}
/* end Homefinder TOOLTIP styles */

/* PRINT CSS ------------------------
---------------------------------- */
@media print {
    .site-body { padding-top: 0; }
    img { page-break-inside: avoid !important; }
    .homesearch-header { display: none; } /* copied from .homesearchSearchList */
    .homesearch-homes-container { width: 100%!important; height: auto!important; display: block!important; margin: 0; padding: 0; } /* copied from .homesearchHomesList */
	.homesearch-homes-results {
		width: 96%;
        margin: auto;
    }
	.homesearch-homes-results #page_container {
        background-color: #fff;
        overflow: hidden !important;
	}
	.homesearch-homes-map, .homesearch-page-list .printButton {
		display: none!important;
		float: none;
		width: 0;
		height: 0;
	}
	.printButton { display: none; } /* copied from .printButton - unchanged class name */
    .homesearch-homes-results #homeResults {
		width: 100% !important;
		display: block !important;
		float: none;
	} /* copied from .homesearchHomes */
    .homesearch-homes-results #homeResults .result {
		display: inline-block !important;
		border: 1px solid #c3bbbb;
		border-radius: 5px;
		padding: 0;
		margin-right: 0;
		float: left !important;
		width: 33% !important;
		max-height: 274px;
		overflow: hidden;
		page-break-after: always;
        page-break-inside: avoid;
	}
    .homeImage div:after {padding: 0!important;}
    #homeResults .result img {
		display: block !important; 
		opacity: 1;
		height: 120px !important;
		width: 100%; 
	}
    .homesearch * {overflow: visible !important;}
    .homesearch * {overflow: visible;}
    .homeImage div:after {padding-bottom: 0 !important;}
	.modelPrice {margin: 0;}
	#homeResults .result .homedetails {
		padding: 0.2rem;
		line-height: 0.8rem;
		height: 100px;
	}
	#homeResults .result .homeName {
        font-size: 0.9rem;
		float: left;
		margin-top: 0;
        width: 50%;
	}
	#homeResults .result .modelPrice {
		float: right;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
    #homeResults .homedetails > div:nth-child(2) { margin-bottom: 5px; font-size: 0.8rem; }
	#homeResults .result .modelPrice > span:not(.homePrice) { display: none; }
	#homeResults .result .modelPrice > span:not(:first-child):after { content: "+"; }
    #homeResults [class^="iconhome-"] { font-size: 0.7rem; }
    .home-link .modelsqFt, .home-link .num-info { font-size: 0.7rem; }
    .homefinder .homesearch-homes .builderName { font-size: 0.7rem; }
    #homeResults .result .homeAddress { font-size: 0.6rem; }

	nav, iframe, header, footer,
	.affix,.affix-top,.anchortop.column,
	.top-search,.top-nav,#topBarBanner,
	.buttonBar,.modelButtons,.carouselPage,
	.text-right.modelItem, span[data-pin-log],
	.pageCount, .page_navigation,
	.tall-carousel, .view-details,
	#homeResults .result .homeImage.banner:after,
	#homeResults .result .homeImage span.banner,
	.homeImage span.featured,
    .homeImage.available:before,
	.homeImage.featured:after,
	.softSignupBase,.soft-signup-bar,.dropdown-menu,
	.backToResults, #selectDiv-sortby,
	.PhotosFloorplans .virtualtourtab, 
	.PhotosFloorplans .videotourtab, 
	.PhotosFloorplans .ui-tabs-panel .innervirtualtours { display: none !important; }
}
