@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
    --bst-filter-height: 45px;
    --bst-primary-color: #f4b419;
    --bst-theme: #143d59;
    --bst-gray-medium: #707070;
    --bst-gray-light: #d6d6d6;
    --bst-light-red: #fd7565;
    --bst-white: #fff;
    --bst-green: #38c93e;
    --bst-light-blue: #f5faff;
    --bst-light-pink: #ffecea;
}

.bst-container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    color: var(--bst-theme);
    font-weight: 400;
}
.nice-select {
    padding-left: 12px !important;
}
.bst-content {
    font-family: "Montserrat", sans-serif;
    color: var(--bst-theme);
    font-weight: 400;
}

.bst-hidden:not(.active) {
    display: none;
}
.block {
    display: block;
}
.b-flex {
    display: flex;
}
.b-justify-content-between {
    justify-content: space-between;
}
.b-items-center {
    align-items: center;
}
.b-justify-content-center {
    justify-content: center;
}
.text-nowrap {
    white-space: nowrap;
}
.font-medium {
    font-weight: 500;
}
.bst-text-large {
    font-size: 40px;
}
.b-text-center {
    text-align: center;
}
.b-text-left {
    text-align: left;
}
.b-mt-0 {
    margin-top: 0 !important;
}
.b-mb-0 {
    margin-bottom: 0 !important;
}
.bst-btn {
    padding: 14px 35px;
    border-radius: 4px;
    background: var(--bst-primary-color);
    border: 1px solid var(--bst-primary-color);
    outline: none;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    font-family: inherit;
}
.bst-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
/* ============== TYPOGRAPHY ============ */
.text-red {
    color: var(--bst-light-red) !important;
}

/* ===== table ======  */
.bst-table {
    width: 100%;
    table-layout: fixed;
    border: 1px solid var(--bst-primary-color);
    padding: 0 10px 10px;
}

.bst-table th {
    font-size: 14px;
    font-weight:normal;
}
.bst-tax-table th{
    font-weight:bold;
}
.bst-table td {
    font-size: 14px;
    padding: 5px;
}
.bst-table .bst-left-gap {
    padding-left:38px;
}
.bst-table td span {
    color: #38c93e;
}
.bst-table-flush-border {
    border: 0;
}
.bst-table-flush-border th {
    border-bottom: 1px solid var(--bst-primary-color);
}
.bst-table-flush-border {
    text-align: center;
}
.bst-nicer .list {
    border: 1px solid var(--bst-primary-color);
    box-shadow: rgba(97, 97, 97, 0.3) 0px 2px 4px 0px;
    z-index: 99;
}
.bst-nicer:not(.nice-select) {
    opacity: 0;
}
/*.bst-nicer .current{
    display: inline-block;
    padding-left: 20px;
}*/
.bst-content * {
    box-sizing: border-box;
}
.bst-nicer.bed-icon {
    background: url("../icons/bed.png") no-repeat left 10px center/18px;
}
.bst-nicer.bath-icon {
    background: url("../icons/bath.png") no-repeat left 10px center/18px;
}
.bst-nicer.year-built {
    background: url("../icons/construction.png") no-repeat left 10px center/16px;
}
.priceIcon {
    padding: 0 27px 0 12px !important;
}

.bstFontSmall {
    font-size: 13px;
    font-weight: 500;
}

.bstContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    position: relative;
}

/* ========== BST LOADER ========== */
.bstLoader {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}
.bst-loader-small{
    background: rgba(255, 255, 255, 0.7);
}
.bst-loader-small .bstSpinner{
    width:40px;
    height:40px;
}
.bstSpinner {
    border: 5px solid var(--bst-gray-light);
    border-radius: 50%;
    border-top: 5px solid var(--bst-theme);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.bstSpinnerWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.bstProperties {
    height: 590px;
    overflow-y: auto;
}
.bstPropertiesList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding-right: 10px;
}

.bstPropertiesList > div {
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    border: 1px solid var(--bst-theme);
    transition: all 0.2s;
}
.bstPropertiesList > div:hover {
    box-shadow: 0px 3px 6px #f4b4194a;
}

.bstGridMedia {
    position: relative;
    background: #eee;
    border-radius: 15px;
}
div#bstMapView {
    display: flex;
}
.bstMapWrapper {
    position: relative;
    width: 100%;
}
div#bstMap {
    height: 100%;
}
.bstMapWrapper:after,
.bstMapWrapper:before {
    content: " ";
    background: url(../img/map_shadow.png);
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.28;
}
.bstMapWrapper:after {
    width: 15px;
    height: 100%;
}
.bstMapWrapper:before {
    background: url(../img/map-horizontal-shadow.png);
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 15px;
}
.bstProperties .mapview-only {
    display: none;
}
.bstProperties .infowindowProperty {
    display: none;
}
#bstMap .gm-style-iw-chr{
    display:none!important;
}
/* ========== MAP INFO WINDOW ======== */

.infowindowProperty {
    min-width: 150px;
    cursor: pointer;
    max-width: 90vw;
}
.infowindowProperty .listview-only {
    display: none;
}
.infowindowProperty .bstWindowPrice {
    font-size: 15px;
    font-weight: 600;
}
.bstWindowOtherInfo span:first-of-type {
    padding-right: 5px;
}

.propertyInfoWindowRow {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 7px;
    grid-gap: 0 10px;
}
.propertyInfoWindowRow img {
    max-width: 70px;
    height: 100%;
    object-fit: cover;
}

.bstGridDetails {
    padding: 14px;
}

.bstGridDetails a {
    text-decoration: none;
    color: inherit;
}

.bstGridPrice {
    font-size: 20px;
    font-weight: 900;
}

.bstGridInfo span {
    color: var(--bst-theme);
}
.bstGridDetails .bstGridTitle span {
    font-size: 13px;
    color: var(--bst-theme);
    display: block;
}

.bstGridSlider {
    min-height: 190px;
}
.bstGridSlider img {
    font-size: 0;
}
.bstGridSlider img:not([src]) {
    opacity: 0;
}

.bstMediaSlider {
    display: flex;
}
.bstMediaSlider .lSAction {
    display: block !important;
}

.bstMediaSlider img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
    display: block;
}
.bstMediaSlider.bstGridmapSlider img {
    height: 150px;
}

.gm-style-moc {
    display: none !important;
}

.bstFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bstNav ul {
    padding: 0;
    margin: 20px 0 40px;
}

.bstNav ul li {
    display: inline-block;
}

.bstNav ul li + li {
    margin-left: 10px;
}

.bstNav ul li a {
    display: block;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    text-decoration: none;
    background: #eee;
    color: #000;
    min-width: 90px;
    text-align: center;
}
/* =========== TABLE VIEW ============ */
.bst-table-view {
    display: none;
}
.bst-table-view table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.bst-table-view table th {
    padding-top: 13px;
    padding-bottom: 5px;
    border-top: 1px solid var(--bst-gray-light);
    border-bottom: 1px solid var(--bst-gray-light);
    font-size: 14px;
}
.bst-table-view table td {
    text-align: center;
    font-size: 12px;
    text-wrap: nowrap;
    padding: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.bst-table-view table tbody tr {
    cursor: pointer;
}

.bstNav ul li a.active {
    background: var(--bst-theme-color);
    border-color: var(--bst-theme-color);
    color: white;
}
.bst-filter-view {
    align-items: flex-end;
}

.bst-btn-filters-apply {
    cursor: pointer;
}

.bst-filter-view ul li {
    padding-left: 20px;
    cursor: pointer;
}

#bstAllProperties {
    padding-top: 10px;
    padding-bottom:50px;
}

/* ============= FILTERS =========== */

.bst-filter-row {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: space-between;
    border-bottom: 1px solid var(--bst-gray-light);
}
.bst-filter {
    margin-bottom:10px;
}

.bstFilterForm {
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-gap: 10px;
    position: relative;
    z-index: 12;
    color: var(--bst-gray-medium);
}
.bstFilterForm .bst-nicer,.bstFilterForm .bst-multi-nicer {
    border-color: var(--bst-primary-color)!important;
    border-radius: 5px;
}
.bstFilterForm .bst-nicer:hover {
    border-color: var(--bst-primary-color);
}
.bstFilterForm .bst-multi-nicer {
    overflow:hidden;
    overflow-y:auto;
    height:45px;
}
.bstFilterForm .bst-multi-nicer .select2-selection__choice {
    background-color: #fafafa;
    border: 1px solid #eee;
 }
.bstFilterForm .bstSearch {
    height: var(--bst-filter-height);
    line-height: var(--bst-filter-height);
    background: var(--bst-primary-color);
    border: none;
    font-family: inherit;
    padding: 0 30px;
    font-size: inherit;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    outline: none !important;
}
.bstFilterForm .bstDropdown {
    min-width: 275px;
    border: 1px solid var(--bst-primary-color);
    border-radius: 8px;
    position: absolute;
    top: 98%;
    box-shadow: rgba(97, 97, 97, 0.3) 0px 2px 4px 0px;
    padding: 10px;
    left: 0;
    overflow: hidden;
    background: #fff;
    z-index: 99;
    width: 100%;
}
.bstFilterForm .bstDropdownLG {
    min-width: 510px;
}
.bstFilterForm .bstDropdown .bst-form-group-row {
    margin: 18px 0;
}
.bstFilterForm .bstDropdown .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 30px;
}
.bstFilterForm .bstDropdown .grid-3 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-gap: 0 12px;
    align-items: center;
}
.bstFilterForm .bstDropdown .bstRadiobox:first-of-type {
    border-left-width: 1px;
}
.bstFilterForm .mobile-filter input {
    border: 1px solid var(--bst-primary-color);
    border-radius: 5px;
    height: 40px;
    padding: 0 9px;
    width:100%;
}
.bstFilterForm .bstDropdown .bstRadiobox {
    position: relative;
    text-align: center;
    cursor: pointer;
}
.mobile-filter {
    display: none;
}
.bstRadiobox input + label {
    border: 1px solid var(--bst-gray-medium);
    padding: 10px 5px;
    font-size: 12px;
    display: block;
    width: 100%;
    height: 100%;
}
.bstRadiobox + .bstRadiobox input + label {
    border-left-width: 0;
}
.bstRadiobox + .bstRadiobox input:hover + label {
    background: var(--bst-light-pink);
}
.bstRadiobox input:checked + label {
    border-color: var(--bst-light-red);
}
.bstFilterForm .bstDropdown .bstRadiobox input {
    position: absolute;
    cursor: pointer;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1;
}
.bstFilterForm .bstDropdown .bstRadioboxGroup {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
/*.bstFilterForm .bstDropdown button {*/
/*    width: 100%;*/
/*    background: var(--bst-theme);*/
/*    border: 1px solid var(--bst-theme);*/
/*    color: var(--bst-white);*/
/*}*/
.bst-mt-0 {
    margin-top: 0 !important;
}
.bstFilterForm .bstDropdown select,.bstFilterForm .bstDropdown .bst-multi-nicer,
.bstFilterForm .bstDropdown input:not([type="radio"]):not([type="checkbox"]) {
    width: 100%;
    height: 40px;
    border: 1px solid var(--bst-theme)!important;
    outline: 0;
    color: var(--bst-gray-medium);
    box-shadow: 0px 3px 6px #00000029;
    font-family: inherit;
    padding: 0 9px;
}
.bstFilterForm .bstDropdown .bst-multi-nicer {
    min-height: 40px;
    height: auto;
    padding-bottom: 2px;
    overflow: inherit;
}
.bstFilterForm .bstDropdown .select2-container{
    width: 100%!important;
}
.bstFilterForm .bstDropdown input {
    border-radius: 6px;
}
.bstFilterForm .bstDropdown .bst-label-group {
    display: grid;
    grid-template-columns: 40% 1fr;
}
.bstFilterForm .bstDropdownLG .bst-form-group {
    margin-bottom: 13px;
}
.bstFilterForm > div {
    position: relative;
}

.bst-radio-label {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}
.bst-form-label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}
.bstLabel {
    display: block;
    min-height: 22px;
    font-size: 14px;
}
.bst-filter-view {
    padding-bottom:5px;
}
.bst-filter-view ul li{
    line-height:0.5;
}
.properties-count {
    display:inline-block;
    padding-right:10px;
    color: var(--bst-gray-medium);
}
.sort-by-group {
    color: var(--bst-gray-medium);
}
.sort-by-group label, .properties-count span {
    font-weight: 500;
}
.sort-by-group .bst-nicer {
    border: 0;
    padding-left: 5px !important;
    line-height: 1;
    height: auto;
}
.bst-filter-view {
    justify-content: flex-end;
}
/* ======== custom square radio ========== */

.bst-custom-radio {
    position: relative;
    padding: 0 15px 0 20px;
}
.bst-custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    z-index: 2;
    left: 0;
    margin: 0;
}
.bst-custom-radio input:checked ~ .bst-checkmark:after {
    display: block;
}

.bst-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    border: 1px solid var(--bst-theme);
}
.bst-custom-radio input:checked ~ .bst-checkmark {
    background: var(--bst-theme);
}
.bst-checkmark:after {
    content: "";
    left: 4px;
    top: 2px;
    width: 2px;
    height: 5px;
    border: solid var(--bst-white);
    position: absolute;
    display: none;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.bstFilterCol span {
    padding: 0 2px;
    white-space: nowrap;
}

.bstFilterCol.no-label .rangeContainer .bst-label,
.bstFilterCol.label-only .rangeContainer span:not(.bst-label) {
    display: none;
}

.bstFilterCol.no-label .rangeContainer {
    text-align: center;
}

.bstFilterCol.no-label .bst-high:not(:empty)::before {
    content: " - ";
    padding-right: 2px;
}

.rangeContainer {
    padding: 0 27px 0 12px;
    height: var(--bst-filter-height);
    line-height: var(--bst-filter-height);
    border: 1px solid var(--bst-primary-color);
    border-radius: 5px;
    cursor: pointer;
}
.gm-style-iw {
    padding: 0 !important;
}
.gm-style-iw + button,
.gm-style-iw > button {
    display: none !important;
}
.gm-style-iw-d {
    overflow: hidden !important;
}

.bstPagination ul {
    display: flex;
    margin-top: 50px;
    list-style-type: none;
    justify-content: center;
}
.bstPagination ul li svg {
    height: 16px;
}
.bstPagination ul li.active span {
    background: var(--bst-theme-color);
    border-color: var(--bst-theme-color);
    color: #fff;
}
.bstPagination ul li a,
.bstPagination ul li span {
    width: 35px;
    display: block;
    color: #000;
    text-decoration: none;
    line-height: 35px;
    height: 35px;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-right: none;
}
.bstPagination ul li:last-child > * {
    border-right: 1px solid #eee;
}

/* Detail Modal */
.bstPropertyDetail {
    cursor: pointer;
}
.bst-loader {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.bst-modal {
    display: none;
}

.bst-modal-dialog {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.bst-subtitle-xs h3 {
    font-size: 14px;
    margin-bottom: 10px !important;
}

.bst-modal-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    border: 1px solid #ccc;
    font-family: "Montserrat", sans-serif;
    color: var(--bst-theme);
    font-weight: 400;
    background: #fff;
    border-radius: 10px;
    position: relative;
    margin-top: 5vh;
}
.bst-modal-wrapper-sm {
    max-width: 500px;
    padding: 35px 20px 15px 25px;
}
.cf-bst-modal .bst-modal-dialog {
    display: flex;
    align-items: center;
}
.bst-modal-content {
    height: 90vh;
    /* margin-top: 5vh; */
    overflow-y: auto;
}
.cf-bst-modal .bst-modal-close {
    right: 0;
    width: 38px;
    height: 25px;
}
.cf-bst-modal .bst-modal-close span {
    width: 2px;
    height: 13px;
}
.cf-bst-modal .bst-modal-close span:first-of-type {
    left: 6px;
}

.bst-modal-close {
    position: absolute;
    right: -70px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 9px;
}
.bst-modal-close span {
    width: 3px;
    height: 23px;
    display: inline-block;
    transform: rotate(45deg);
    background: var(--bst-gray-light);
}
.bst-modal-close span:first-of-type {
    transform: rotate(-45deg);
    position: relative;
    left: 8px;
}
.bst-detail-page ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.bst-detail-page p,
.bst-modal-body h4,
.bst-modal-body h3,
.bst-modal-body h5 {
    margin: 0;
}
.bst-address {
    font-size: 18px;
}
/* ============= BST CF FORM ============= */

.bst-modal-header h3 {
    font-size: 16px;
    font-weight: 600;
}
.bst-modal-header {
    margin-bottom: 18px;
}
.bst-cf-form-wrapper label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.bst-cf-form-wrapper input,
.bst-cf-form-wrapper textarea {
    width: 100%;
    border: 1px solid var(--bst-gray-light);
    height: 40px;
    background: var(--bst-light-blue);
    box-sizing: border-box;
    padding: 0 10px;
    outline: 0;
    font-family: inherit;
    text-align:left !important;
    text-align-last:left !important;
}
.bst-cf-form-wrapper textarea {
    height: 150px;
    resize: none;
    padding: 10px;
}
.bst-cf-form-wrapper button {
    background: var(--bst-theme);
    border: 1px solid var(--bst-theme);
    color: var(--bst-white);
    font-size: 16px;
    width: 100%;
    cursor: pointer;
}
.bst-cf-form-wrapper .cf-form-group {
    margin-bottom: 10px;
}
.cf-form-message {
    border: 2px solid var(--bst-gray-light);
    padding: 5px;
    font-weight: 600;
    font-size: 13px;
    display: none;
}
.cf-form-message.cf-form-error {
    border-color: var(--bst-light-red);
    color: var(--bst-light-red);
}

/* ============= Property detail page CSS ============= */
.bst-detail-page .bst-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0 30px;
}
.bst-detail-page .bst-header > div {
    overflow: hidden;
}

.bst-header .bst-header-left {
    position: relative;
}

/* ========= GALLERY ============= */

.bst-detail-page-gallery {
    display: flex;
    flex-wrap: wrap;
}
.bst-detail-page-gallery img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 200px;
}
.bst-detail-page-gallery .bstImage:first-of-type {
    width: 100%;
    padding-top: 0;
}
.bst-detail-page-gallery .bstImage:first-of-type img {
    height: 300px;
}
.bst-detail-page-gallery .bstImage {
    width: 50%;
    box-sizing: border-box;
    padding: 5px 10px 5px 0;
}

/* ========= PROPERTY DETAILS RIGHT  ============= */

.bst-subtitle {
    margin-top: 36px;
}
.bst-subtitle h3 {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bst-theme);
}
.bst-subtitle h3:before {
    content: "";
    position: absolute;
    top: -4px;
    width: calc(100% + 30px);
    background: var(--bst-primary-color);
    height: 1px;
}
.bst-subtitle-sm h3 {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 52px;
}
.bst-separator {
    position: relative;
    margin-bottom: 7px;
}
.bst-separator::after {
    content: "";
    height: 8px;
    width: 95%;
    margin: 0 auto;
    display: block;
    margin-top: 15px;
    background: var(--bst-primary-color);
}
.bst-evaluation-list li {
    margin-bottom: 5px;
    color: var(--bst-gray-medium);
}
.bst-evaluation-list li .b-value {
    font-weight: bold;
}
.bst-mt-3 {
    margin-top: 20px;
}

.bst-header-right {
    padding-top: 30px;
    padding-right: 40px;
    padding-bottom: 40px;
}

.bst-header-right .bst-other-info {
    margin-top: 5px;
}

.bst-price span {
    font-size: 18px;
}
.bst-address img {
    margin-right: 10px;
    width: 15px;
}
/* =============== list style ================ */

.bst-other-info ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bst-other-info li {
    padding: 5px 15px 0 0;
    font-size: 14px;
}
.bst-other-info li:first-child {
    padding-left: 0;
}
.bst-other-info li:last-child {
    padding-right: 0;
    border-right: 0;
    display: flex;
    align-items: center;
}
.bst-other-info .bst-market-days {
    display:flex;
    align-items:center;
}
.bst-other-info .bst-market-days img {
    width: 15px;
    margin-left: 3px;
}
.bst-school-score img {
    width: 13px !important;
    margin-left: 5px !important;
}
.bst-other-scores span {
    padding-right: 3px;
}

.bst-btn-wrapper {
    margin-top: 10px;
}
.bst-detail-page .bst-header-right button {
    width: 100%;
    cursor: pointer;
}
.bst-content p {
    line-height: 26px;
}

.bst-table-view {
    /*    max-width: 50%;*/
    margin-bottom: 40px;
}
.bst-table-view > div {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-gap: 0 20px;
    margin-bottom: 12px;
}
.bst-table-view span {
    line-height: 26px;
}
/* ============ BST PROPERTY DESCRIPTION ============ */

.bst-property-description p {
    margin-top: 5px;
    font-size: 14px;
    text-align:justify;
}

/* ========= INVESTMENT INSIGHTS  ============= */

.bst-investment-returns-item {
    margin-bottom: 24px;
}
.bst-investment-returns-item label {
    font-size: 14px;
    display: inline-block;
}
.bst-investment-returns-item input:not([type="submit"]) {
    height: 33px;
    padding: 0 10px;
    text-align: right;
    border: 1px solid var(--bst-gray-light);
    max-width: 123px;
    font-family: inherit;
    outline: 0;
    color: inherit;
}
.bst-investment-returns li {
    font-size: 14px;
    margin-bottom: 18px;
}
.bst-investment-returns-item input[type="submit"] {
    background: var(--bst-primary-color);
    padding: 0 30px;
    outline: 0;
    border: 0;
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 8px;
    font-family: inherit;
    color: inherit;
}

/* =========== Home Value ========== */

.bst-home-value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 10px;
    justify-content: space-between;
}
.bst-home-value-item .bst-left {
    padding-right: 10px;
}

.bst-home-value-list h4 {
    font-size: 11px;
}
.bst-home-value-list .bst-price {
    font-size: 16px;
    color: var(--bst-light-red);
}
.bst-home-value-list img{
    height:40px;
}

/* =========== Exterior Features ========== */

.bst-property-features li {
    width: 33.33%;
}

/*=========== BST DEMOGRAPHICS ==========*/
.bst-demographics P {
    font-size: 14px;
}
/* ========== BST MARKET TRENDS ========== */
.bst-market-trends .bst-subtitle p {
    font-size: 14px;
}
.bst-market-trends h4 {
    font-size: 14px;
}
.bst-market-trends .bst-subtitle {
    margin-bottom: 25px;
}
.bst-market-trends-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 40px;
}
.bst-market-trends-list h4 {
    border-bottom: 1px solid var(--bst-primary-color);
    margin-bottom: 15px;
}
.bst-market-trends-list ul li {
    margin-bottom: 20px;
    font-size: 14px;
    display: grid;
    grid-template-columns: 1fr 30%;
}
.bst-market-trends-list ul li span:last-child {
    font-weight: 500;
}
/*=========== BST HOUSEHOLD ==========*/

.bst-household-composition {
    margin-top: 50px;
}

.bst-household-composition-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 30px;
}
.bst-household-composition img {
    margin-bottom: 4px;
}
.bst-household-composition p {
    font-size: 14px;
}
.bst-schools-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    margin-bottom: 10px;
}
.bst-schools-item .bst-schools-left p {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bst-light-red);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bst-white);
}
.bst-schools-item .bst-schools-left p span {
    font-weight: 600;
    margin-right: 5px;
    display: inline-block;
}

/* ============ TRANSPORTATION ============= */

.bst-transportation .bst-subtitle{
    margin-top:20px;
}
.bst-transportation h4 {
    font-size: 19px;
    margin-bottom: 10px;
}
.bst-transportation-item {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 45% 1fr;
    grid-gap: 0 10px;
    margin-bottom: 25px;
}
.bst-transportation-item .bst-score {
    font-size: 33px;
    font-weight: bold;
    padding-left: 30px;
    padding-right: 20px;
    display: inline-block;
}
.bst-transportation-item h5 {
    margin-bottom: 5px;
}
.bst-transportation-item h5:first-of-type {
    text-decoration: underline;
}

/* ========== BST MEDIAN ========== */
.bst-median-income {
    margin-top: 50px;
}

.map-icon-tag {
    background-color: var(--bst-light-red);
    border-radius: 3px;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 5px;
    position: relative;
}

.map-icon-tag::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid var(--bst-light-red);
}

/* ========== BST Footer ========== */

.bst-footer {
    background: var(--bst-theme);
    color: var(--bst-white);
    padding:13px 50px 13px 70px;
}
.bst-footer .bst-disclaimer-heading {
    font-weight:bold;
}
.bst-disclaimer{
    display:none;
}
.bst-disclaimer:nth-of-type(1) {
    display:block;
}
.bst-footer p {
    font-size:14px;
    margin:0;
}
.bst-footer-links{
    margin-top:15px;
}
.bst-footer-links ul li a {
    color:inherit;
    display:block;
    padding:0 8px;
    font-size:14px;
    border-right: 1px solid var(--bst-white);
    font-weight:bold;
    text-decoration:none;
}
.bst-footer-links ul li:last-of-type a {
    border-right: 0;
}

/* ========== Responsive ========== */

@media (min-width: 1024px) and (max-width: 1200px) {
    .bst-modal-wrapper {
        max-width: 900px;
    }
    .bst-filter-row {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .bst-other-info ul {
        grid-template-columns: repeat(3, auto);
    }
    .bst-modal-wrapper {
        max-width: 650px;
    }
    .rangeContainer {
        overflow: hidden;
    }
    .bst-header-right .bst-address{
        font-size:15px;
    }
    .bst-text-large {
        font-size: 30px;
    }
    .bst-detail-page .bst-header{
        grid-gap:0 20px;
    }
    .bstFilterForm {
        grid-template-columns: repeat(4, auto);
    }
}

@media (max-width: 1023px) {
    #bstMapView {
        display: none;
    }
    .bstContent,
    .bst-filter-row {
        grid-template-columns: 1fr;
    }
    .bst-filter-view ul {
        padding-right: 10px;
    }
    .bstFilterForm {
        margin-bottom: 18px;
    }
    .bst-household-composition p, .bst-table th, .bst-table td{
        font-size:12px;
    }
    .bst-evaluation-list li,
    .bst-subtitle h3,.bst-investment-return-calculator .bst-title h4,.bst-calculator-field span, .bst-calculator-results span {
        font-size: 14px;
    }
    .bst-property-description p {
        font-size: 13px;
    }
    .bst-header-right .bst-btn {
        padding: 10px 30px;
        font-size: 16px;
    }
    .bst-home-value-item {
        display:block;
        text-align:center;
    }
    .bst-home-value-list .bst-price{
        font-size: 14px;
    }
    .bst-home-value-list{
        grid-gap: 20px 10px;
    }
    .bst-market-trends-list{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px 0;
    }
}
@media (max-width: 767px) {
    .bstFilterForm,
    .bstPropertiesList {
        grid-template-columns: 1fr;
    }
    .bstWrapper {
        padding: 0 20px !important;
    }
	/*.bstProperties{*/
	/*	height:auto;*/
	/*}*/
    .bstFilterForm .bstDropdownLG {
        min-width: 275px;
    }
    .bst-detail-page .bst-header {
        grid-template-columns: 1fr;
    }
    .bst-modal-dialog {
        padding: 0 20px;
    }
    .bst-header-right {
        padding: 40px 20px 30px 20px;
        order: 1;
    }
    .bst-header-left {
        order: 2;
    }
    .bst-text-large {
        font-size: 25px;
    }
    .bstGridPrice {
        font-size: 18px;
    }
    .bstGridDetails .bstGridTitle span,
    .bst-other-info li {
        font-size: 12px;
    }
    .bst-address {
        font-size: 14px;
    }
    .bst-modal-close {
        right: 7px;
        top: 9px;
        text-align: center;
        background: var(--bst-white);
        padding-top: 12px;
        box-sizing: border-box;
    }

    .bst-subtitle h3:before {
        width: 100%;
    }

    .bst-detail-page-gallery .bstImage:first-of-type img {
        height: 200px;
    }

    .bst-household-composition-list {
        grid-gap: 20px 10px;
    }
    .mobile-list-price,
    .mobile-list-bed {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0 10px;
    }
    .priceFilter,
    .bedFilter,
    .bst-filter-view .bstGridListView {
        display: none;
    }
    #bstExpandMoreDropdown .bst-form-group-row.grid-2{
        grid-template-columns:1fr;
    }
    .bstFilterForm .select2-container{
        width: 100%!important;
    }
    div#bstMap {
        height: 420px;
    }
    .bst-footer {
        padding:13px 20px;
    }
    .bst-footer p, .bst-footer-links ul li a {
        font-size:12px;
    }
    .bst-footer-links ul li a {
        border-right:0;
        padding:8px 0;
    }
    .bst-footer-links ul {
        display:block;
    }
    .bst-table td{
        padding: 5px 10px;
    }
}
