.cards-container.hide-map.no-sidebar, .cards-container.hide-map.has-sidebar {
    max-width: 1320px;
    margin: 0 auto;
}

.tfre-sidebar .widget .widget-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #161E2D;
    margin-bottom: 20px;
}

.tfre_sidebar > .tfre-sidebar {
    border-radius: 16px;
    background: #F7F7F7;
    padding: 24px;
    margin-bottom: 30px;
}

.tfre_sidebar,
.tfre_single_sidebar {
    position: sticky;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/* Featured listings
-------------------------------------------------------------- */

.widget_featured_properties_widget {
    margin: 0 auto;
}

.tfre-list-featured-properties.list .property-item {
    display: flex;
    align-items: center;
}

.tfre-list-featured-properties.list .property-item {
    padding-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid #E4E4E4;
}

.tfre-list-featured-properties.list .property-item:first-child {
    border: none;
    padding-top: 0;
}

.tfre-list-featured-properties.list .property-item:last-child {
    padding-bottom: 0;
}

.tfre-list-featured-properties.list .property-image {
    max-width: 110px;
    flex-shrink: 0;
    margin-right: 16px;
}

.tfre-list-featured-properties.list .property-image img {
    border-radius: 8px;
}

.tfre-list-featured-properties.list .property-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 8px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.tfre-list-featured-properties .list-infor {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.tfre-list-featured-properties .list-infor .item {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #161E2D;
}

.tfre-list-featured-properties .list-infor .item:last-child {
    margin-right: 0;
}

.tfre-list-featured-properties .list-infor .item span,
.tfre-list-featured-properties .list-infor .item.size {
    font-weight: 700;
}

.tfre-list-featured-properties.list .property-price,
.tfre-list-featured-properties.carousel .property-price {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #161E2D;
}

.tfre-list-featured-properties.list .property-address img {
    margin-right: 5px;
}

.tfre-list-featured-properties.list .property-address {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.tfre-list-featured-properties.carousel .property-item .property-image img {
    height: 470px;
    object-fit: cover;
}

.tfre-list-featured-properties.carousel .property-item .property-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.tfre-list-featured-properties.carousel .property-item .property-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0.7;
    background: linear-gradient(180deg, rgba(107, 144, 128, 0.00) 36.38%, #24332C 100%);
    z-index: 1;
}

.tfre-list-featured-properties.carousel .property-item {
    position: relative;
}

.tfre-list-featured-properties.carousel .property-title,
.tfre-list-featured-properties.carousel .property-address {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 10px;
}

.tfre-list-featured-properties.carousel .list-infor .item,
.tfre-list-featured-properties.carousel .property-title a,
.tfre-list-featured-properties.carousel .property-price {
    color: #fff;
}

.tfre-list-featured-properties.carousel .property-title a:hover {
    color: var(--theme-primary-color);
}

.tfre-list-featured-properties.carousel .property-address {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
}

.tfre-list-featured-properties.carousel .property-address img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.tfre-list-featured-properties.carousel .property-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 10;
}

.tfre-list-featured-properties.carousel .owl-carousel .owl-dots {
    bottom: 10px;
}

.tfre-list-featured-properties.carousel .owl-carousel .owl-dots .owl-dot {
    width: 17px;
    height: 3px;
    border-radius: unset;
    line-height: 14px;
}

.tfre-list-featured-properties.carousel .owl-carousel .owl-dots .owl-dot:hover {
    transform: scale(1.1);
}

.tfre-list-featured-properties.carousel .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tfre-list-featured-properties.carousel .owl-carousel .owl-nav button {
    font-size: 18px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: var(--theme-primary-color);
    background: #fff;
    border-radius: 3px;
    display: grid;
    align-items: center;
    justify-content: center;
}

.tfre-list-featured-properties.carousel .owl-carousel:hover .owl-nav {
    opacity: 1;
    visibility: visible;
}


/* Agent Search
-------------------------------------------------------------- */


.widget_agent_search_form_widget h3,
.widget_agency_search_form_widget h3 {
    margin-bottom: 27px;
}

.widget_agent_search_form_widget .tfre-search-agent-btn,
.widget_agency_search_form_widget .tfre-search-agency-btn {
    font-size: 15px;
    font-weight: 700;
    line-height: 150%;
    display: block;
    width: 100%;
    border-radius: 4px;
}

.widget_agent_search_form_widget .tfre-search-agent-btn i,
.widget_agency_search_form_widget .tfre-search-agency-btn i {
    margin-left: 12px;
}

.widget_agent_search_form_widget .submit-search-form,
.widget_agency_search_form_widget .submit-search-form {
    margin-top: 14px;
}

.widget_property_search_form_widget .tf-search-form {
    display: block;
    padding: 0;
    gap: unset;
    border-radius: unset;
    background: unset;
    box-shadow: unset;
}

.tfre_sidebar .widget_property_search_form_widget .tf-search-form,
.widget_property_search_form_widget .tf-search-form { 
    width: 100%;
}

.widget_property_search_form_widget .tfre-search-status-tab {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.widget_property_search_form_widget .tfre-search-status-tab button {
    width: calc(50% );
    border-radius: 0;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 15px;
    color: #0B2132;
    text-transform: uppercase;
}

.widget_property_search_form_widget .tfre-search-status-tab button.active {
    background: var(--theme-primary-color);
    color: #fff;
}


.widget_property_search_form_widget .tf-search-form-top-action {
    margin-top: 19px;
}

.widget_property_search_form_widget .search-properties-form  .tf-search-form-top {
    margin-bottom: 20px;
    gap: 10px;
}

.widget_property_search_form_widget .search-properties-form  .tf-search-form-top input {
    margin-bottom: 0 ;
}

.widget_property_search_form_widget .select2-container--default .select2-selection--single .select2-selection__arrow b {
    transform: translateY(-50%);
    margin-top: 0px;
    margin-left: -15px;
}

.widget_property_search_form_widget .select2-container--default .select2-selection--single {
    padding: 11px;
    margin-bottom: 0;
}

.widget_property_search_form_widget .select2-container {
    width: 100% !important;
}

.widget_property_search_form_widget .tfre-title-range-slider span {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #5C6368;
}

.widget_property_search_form_widget .tfre-title-range-slider b {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #161E2D;
}

.widget_property_search_form_widget .tfre-title-range-slider .max-value,
.widget_property_search_form_widget .tfre-title-range-slider .min-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: #161E2D;
}

.widget_property_search_form_widget .tfre-range-slider-filter .tfre-title-range-slider {
    margin-bottom: 16px;
}

.widget_property_search_form_widget .tfre-range-slider-filter.tfre-range-slider-size .tfre-title-range-slider {
    margin-bottom: 20px;
}

.widget_property_search_form_widget .tfre-range-slider-filter {
    margin-bottom: 10px;
}

.widget_property_search_form_widget .property-feature-title {
    font-size: 18px;
    margin-top: 10px;
}

.widget_property_search_form_widget .search-properties-form .tf-search-form .tf-search-form-top.in-sidebar .wrap-checkbox {
    margin-left: -30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.widget_property_search_form_widget .search-properties-form .tf-search-form .tf-search-form-top.in-sidebar .wrap-checkbox .checkbox-item {
    width: calc(50% - 30px);
    margin-left: 30px;
}

.widget_property_search_form_widget .search-properties-form .tf-search-form .tf-search-form-top.in-sidebar .wrap-checkbox .checkbox {
    margin: 0;
}

.widget_property_search_form_widget .checkbox input[type="checkbox"]::before {
   transform: translate(0);
}

.widget_property_search_form_widget .checkbox input[type="checkbox"]::after {
    height: 5px;
    width: 9px;
    left: 4px;
    top: 6px;
}

.widget_property_search_form_widget .search-properties-form .tf-search-form .tf-search-form-top-action {
    width: 100%;
    display: block;
    margin-bottom: 0;
}

.widget_property_search_form_widget .tfre-advanced-search-btn {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--theme-primary-color);
}

.select2-dropdown,
.select2-search--dropdown .select2-search__field,
.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #E5E5EA;
}

.select2-results__option {
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select2-results__options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
    background-color: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #a7a7a7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.select2-results__options::-webkit-scrollbar {
    width: 6px;
    height: 4px;
    background-color: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}


.tf-search-form-top.mobile .input-group-prepend .tf-search-more-btn,
.tf-search-form-top.mobile .input-group-append .input-group-text {
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    display: grid;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border-color: transparent;
    background: var(--theme-primary-color);
}

.tf-search-form-top.mobile .search-input {
    height: 50px;
    padding: 16px 18px;
    border-radius: 10px !important;
    border: 1px solid #E5E5EA;
}

.tf-search-form-top.mobile .form-group.input-group {
    gap: 10px;
    align-items: center;
}


.widget_property_search_form_widget .search-properties-form  .tf-search-form-bottom.desktop {
    display: none ;
}

.widget_property_search_form_widget .tf-search-more-btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #161E2D;
    margin-bottom: 26px;
    display: inline-block;
}

.widget_property_search_form_widget .tf-search-more-btn .hide,
.widget_property_search_form_widget .tf-search-more-btn.active .show {
    display: none;
}

.widget_property_search_form_widget .tf-search-more-btn.active .hide {
    display: inline-block;
}

.widget_property_search_form_widget .wrap-checkbox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-bottom: -15px;
}

.widget_property_search_form_widget .wrap-checkbox .checkbox-item {
    width: calc(50% - 15px);
    margin-left: 15px;
    margin-bottom: 10px;
}

.widget_property_search_form_widget .wrap-checkbox .checkbox-item .checkbox label {
    align-items: flex-start;
    font-size: 14px;
}

.widget_property_search_form_widget  .features-list .checkbox label input[type="checkbox"] {
    margin-right: 3px;
    margin-top: -0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: left;
    flex-shrink: 0;
}


/* Contact Seller
-------------------------------------------------------------- */


.widget_contact_seller_widget h3 {
    margin-bottom: 26px;
}

.contact-property-form .contact-user-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.contact-property-form .contact-user-wrap .contact-user-avatar {
    max-width: 100px;
    border-radius: 50%;
    margin-right: 21px;
    overflow: hidden;
    height: 100px;
    flex-shrink: 0;
}

.contact-property-form .contact-user-wrap .contact-user-avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.contact-property-form .contact-user-wrap .contact-user-info .name {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #161E2D;   
    margin-bottom: 6px; 
}

.contact-property-form .contact-user-wrap .contact-user-info .phone {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #5C6368;
}

.contact-property-form .contact-user-wrap .contact-user-info .email {
    font-family: Josefin Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #5C6368;
    word-break: break-all;
}

.contact-property-form .contact-user-wrap .contact-user-info p {
    margin: 0;
}

.contact-seller .field-group {
    margin-bottom: 8px;
}

.contact-seller label {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #161E2D;
    margin-bottom: 8px;
}

.contact-seller input {
    margin-bottom: 0px !important; 
    padding: 10px 16px !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #161E2D;
}

.contact-seller input::placeholder,
.contact-seller textarea::placeholder {
    color: #A3ABB0;
}

.contact-seller textarea {
    height: 100px;
    padding: 10px 16px;
    margin-bottom: 5px;
}

.contact-seller button {
    border-radius: 4px;
    background: var(--theme-primary-color);
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;    
    color: #fff;
    width: 100%;
    display: block;
    text-align: center;
}

.contact-seller .button:hover {
    color: #fff;
}

/* Contact Agent
-------------------------------------------------------------- */
.tfre-list-contact-agents .agent-item {
    display: flex;
    align-items: center;
}

.tfre-list-contact-agents .agent-item:not(:last-child) {
    margin-bottom: 20px;
}

.tfre-list-contact-agents .agent-item .agent-avatar {
    margin-right: 20px;
}

.tfre-list-contact-agents .agent-item .agent-avatar img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
}

.tfre-list-contact-agents .agent-item .agent-name {
    margin-bottom: 5px;
}

/* Areas listings
-------------------------------------------------------------- */

.widget_property_taxonomy_widget .tfre-list-property-taxonomy {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-bottom: -10px;
}

.widget_property_taxonomy_widget .tfre-list-property-taxonomy .taxonomy-item {
    width: calc(50% - 10px);
    margin-left: 10px;
    position: relative;
    margin-bottom: 10px;
}

.widget_property_taxonomy_widget .taxonomy-image img {
    width: 100%;
    height: 96px;
    object-fit: cover;
}

.widget_property_taxonomy_widget .taxonomy-image a {
    display: block;
}

.widget_property_taxonomy_widget .taxonomy-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.widget_property_taxonomy_widget .taxonomy-image a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 200%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0.7;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 53.85%, #000 100%);
    z-index: 1;
}

.widget_property_taxonomy_widget .taxonomy-image a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.widget_property_taxonomy_widget .taxonomy-item:hover .taxonomy-image a::after {
    opacity: 1;
    visibility: visible;
}

.widget_property_taxonomy_widget .taxonomy-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: -5px;
}

.widget_property_taxonomy_widget .taxonomy-name a {
    color: #fff;
}

.widget_property_taxonomy_widget .taxonomy-name a:hover {
    color: var(--theme-primary-color);
}

.widget_property_taxonomy_widget .taxonomy-count-property {
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
}

.widget_property_taxonomy_widget .taxonomy-info {
    position: absolute;
    bottom: 9px;
    left: 10px;
    z-index: 10;
    display: inline-block;
}

/* Agency Search 
------------------------------------------------ */
.tfre-search-agency-wrap input {
    padding: 11px 18px !important;
}

.tfre-search-agency-wrap .select2-container--default .select2-selection--single {
    padding: 11px;
    margin-bottom: 0;
}


/* Agent Search 
------------------------------------------------ */
.tfre-search-agent-wrap select,
.tfre-search-agent-wrap input {
    padding: 11px 18px !important;
}

.tfre-search-agent-wrap .select2-container--default .select2-selection--single {
    padding: 11px;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .tf-search-form-top.mobile .input-group-prepend .tf-search-more-btn,
     .tf-search-form-top.mobile .input-group-append .input-group-text {
        margin: 0;
        color: #fff;
    }
}