/*
Theme Name: yogev WP
Theme URI: https://example.com/yogev-wp
Author: LN WEB WORKS
Author URI: https://example.com
Description: A minimal WordPress theme optimized for single-page use.
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yogev-wp
*/

a.logo img {
    max-height: 50px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #f1f1f1;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pagination a:hover,
.pagination a:focus {
    background-color: #000;
    color: white;
}

.pagination .current {
    background-color: #000;
    color: white;
    font-weight: bold;
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #000;
}

.search-bar .tab-buttons {
    display: flex;
}

.search-bar .tab-button {
    padding: 12px 26px;
    border: none;
    background: #eeee;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    font-family: "Bodoni Moda SC", serif;
    font-size: 16px;
    width: 12%;
}

.search-bar .tab-button.active {
    background: #000;
    color: #fff;
}

.search-bar .search-inputs {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.search-bar .location-field {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 20px;
}

.search-bar .location-field select,
.search-bar .location-field input {
    padding: 10px;
    font-size: 14px;
    border-radius: 0;
    flex: 1;
    border: 1px solid #000;
}

.search-bar .location-field input[name="location"] {
    max-width: 250px;
    min-width: 200px;
    width: 100%;
}

.search-bar .location-field select:focus,
.search-bar .location-field input:focus {
    outline: none;
    box-shadow: none;
}

.search-bar .filter-search-btn {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.search-bar .filter-search-btn:hover {
    background-color: #bfbfbf;
    color: #000000;
}

.search-bar .clear-filters-btn {
    margin-top: 0;
}

.search-bar .filter-fields {
    display: flex;
    gap: 10px;
}

.search-bar .filter-fields label {
    display: block;
    font-size: 14px;

}

.search-bar .filter-fields select,
.search-bar .filter-fields .range-input input {
    background-color: #eeeeee;
    border: none;
    padding: 10px;
    width: 100%;
    transition: all ease 0.3s;
    font-family: "Assistant", sans-serif;
    border-radius: 0;
    height: auto;
    font-size: 14px;
    min-width: 100px;
}

.search-bar .filter-fields select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="10px" height="10px" viewBox="0 0 1024 1024" class="icon" version="1.1"%3E%3Cpath d="M903.232 256l56.768 50.432L512 768 64 306.432 120.768 256 512 659.072z" fill="%23808080"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;

}

[dir="rtl"] .search-bar .filter-fields select {
    background-position: left 10px center;

}

.search-bar .filter-fields select {
    color: #7a7a7a;
}

.search-bar .filter-fields select:focus,
.search-bar .filter-fields .range-input input:focus {
    box-shadow: none;
    outline: #333;
}

.range-input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.range-input label {
    font-size: 12px;
    color: #666;
    margin-right: 5px;
}

.range-input span {
    margin: 0 5px;
    font-size: 14px;
    color: #000;
}

.clear-filters-btn {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.clear-filters-btn:hover {
    background-color: #e0e0e0;
}

.remove-wish-list-button {
    font-size: large;
}

.search-bar .filter-fields .left-block,
.search-bar .filter-fields .right-block {
    width: 50%;
    display: flex;
    gap: 10px;
}

.search-bar .filter-fields .left-block div {
    width: 33%;

}

.search-bar .filter-fields .right-block .range-input-wrap {
    width: 50%;
}

.search-bar .filter-fields .right-block .range-input .range-filed {
    max-width: 80px;
    width: 100%;
    min-width: auto;
}

.search-bar .filter-fields select option::selection {
    color: #777;
}

select option[value=""] {
    color: #777;
    /* Selected option text color */
}

/* Popup Styling */
.inquire-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    align-content: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    width: 400px;
    max-width: 100%;
    text-align: center;
    margin: auto;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
}

/* .wpforms-submit {
    padding: 10px 20px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 14px !important;
    border-radius: 4px !important;
} */

.wish-list-card {
    position: relative;
}

.wish-list-card .wish-list-button {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #f8f8f8;
    padding: 4px 8px;
    cursor: pointer;
}

.wish-list-card a {
    width: 100%;
}

body .contact-area .wp-contact-form .wpforms-container {
    margin-top: 0;
}

body .contact-area .wp-contact-form .wpforms-container input,
body .contact-area .wp-contact-form .wpforms-container textarea,
body .inquire-popup .wpforms-container .wpforms-form textarea,
body .inquire-popup .wpforms-container .wpforms-form input {
    background-color: #eeeeee;
    border: none;
    padding: 10px 20px;
    width: 100%;
    transition: all ease 0.3s;
    font-family: "Assistant", sans-serif;
    border-radius: 0;
    height: auto;
    font-size: 14px;
}

body .contact-area .wp-contact-form .wpforms-container input::placeholder,
body .contact-area .wp-contact-form .wpforms-container textarea::placeholder,
body .inquire-popup .wpforms-container .wpforms-form textarea::placeholder,
body .inquire-popup .wpforms-container .wpforms-form input::placeholder {
    color: #333;
}

body .contact-area .wp-contact-form .wpforms-container .wpforms-field-row,
body .inquire-popup .wpforms-container .wpforms-form .wpforms-field-row {
    max-width: 100%;
}

body .contact-area .wp-contact-form .wpforms-container .wpforms-submit-container .wpforms-submit,
body .inquire-popup .wpforms-container.wpforms-container-full .wpforms-submit-container .wpforms-submit {
    color: #ffffff;
    font-size: 14px;
    min-width: 230px;
    padding: 15px;
    background-color: #000000;
    cursor: pointer;
    border-radius: 0;
    float: inline-end;
    height: auto;

}

body .inquire-popup .wpforms-container.wpforms-container-full .wpforms-submit-container .wpforms-submit {
    float: none;
}

body .contact-area .wp-contact-form .wpforms-container .wpforms-submit-container .wpforms-submit:hover,
body .inquire-popup .wpforms-container.wpforms-container-full .wpforms-submit-container .wpforms-submit:hover {
    background-color: #bfbfbf;
    color: #000000;
}

body .contact-area .wp-contact-form .title {
    margin-bottom: 8px;
}

body .contact-area .wp-contact-form .wpforms-container input:focus,
body .contact-area .wp-contact-form .wpforms-container input:focus-visible,
body .contact-area .wp-contact-form .wpforms-container input:focus-within,
body .contact-area .wp-contact-form .wpforms-container textarea:focus,
body .contact-area .wp-contact-form .wpforms-container textarea:focus-visible,
body .contact-area .wp-contact-form .wpforms-container textarea:focus-within {
    outline-color: #777 !important;
    border-color: #777 !important;
    box-shadow: none !important;
}

body .contact-area .wp-contact-form .wpforms-container .wpforms-field.wpforms-field-email,
body .contact-area .wp-contact-form .wpforms-container .wpforms-field.wpforms-field-number,
body .inquire-popup .wpforms-container .wpforms-field.wpforms-field-number,
body .inquire-popup .wpforms-container .wpforms-field.wpforms-field-email {
    width: calc(50% - 2px);
    display: inline-block;
    padding-right: 10px;
    box-sizing: border-box;
    padding-bottom: 10px;
}

body .contact-area .wp-contact-form .wpforms-container .wpforms-field.wpforms-field-number,
body .inquire-popup .wpforms-container .wpforms-field.wpforms-field-number {
    padding-left: 10px !important;
    padding-right: 0 !important;
}

body .contact-area .wp-contact-form .wpforms-container .wpforms-field,
body .inquire-popup .wpforms-container .wpforms-field {
    padding: 10px 0;
}

body .contact-area .wp-contact-form .wpforms-container .wpforms-field input,
body .inquire-popup .wpforms-container .wpforms-field input {
    max-width: 100%;
}

.listing-right-content .content-wrapper .author-wrapper .thumb {
    max-width: 50px;
    width: 100%;
    min-width: 40px;
}

.listing-right-content .content-wrapper .author-wrapper .thumb img {
    width: 100%;
    object-fit: cover;
}

.listing-right-content .content-wrapper .author-wrapper .content {
    width: calc(100% - 50px);
}

.listing-right-content .content-wrapper .author-wrapper .content p {
    word-wrap: break-word;
}

header .main-menu-wrapper ul.socail-media {
    display: none;
}

@media (max-width:991px) {

    body .contact-area .wp-contact-form .wpforms-container .wpforms-field.wpforms-field-email,
    body .contact-area .wp-contact-form .wpforms-container .wpforms-field.wpforms-field-number {
        width: 100%;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    body .contact-area .wp-contact-form .wpforms-container .wpforms-one-half {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    body .contact-area .wp-contact-form .wpforms-container .wpforms-field .wpforms-field-row-block:first-child {
        padding-bottom: 20px;
    }

    body .contact-area .wp-contact-form .wpforms-container .wpforms-submit-container {
        text-align: center;
    }

    body .contact-area .wp-contact-form .wpforms-container .wpforms-submit-container .wpforms-submit {
        float: none;
    }

    body.home .search-area {
        display: none;
    }

    header .main-menu-wrapper ul.socail-media {
        display: flex;
    }

}

@media (max-width:767px) {
    .search-bar .filter-fields {
        flex-wrap: wrap;
    }

    .search-bar .filter-fields .left-block,
    .search-bar .filter-fields .right-block {
        width: 100%;
    }

    .search-bar .tab-button {
        width: max-content;
    }

    .search-bar .location-field {
        gap: 10px;
    }

    .search-bar .location-field input[name="location"],
    .search-bar .location-field input {
        min-width: 100%;
        max-width: 100%;

    }

    .search-bar .filter-search-btn,
    .search-bar .clear-filters-btn {
        width: 100%;
    }
}

@media (max-width:575px) {
    .search-bar .filter-fields .right-block {
        flex-wrap: wrap;
    }

    .search-bar .filter-fields .right-block .range-input-wrap {
        width: 100%;
    }
}



/* Basic styling for the share-popup */
.share-popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dark background */
    z-index: 9999;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
}

/* Popup content styling */
.share-popup .popup-content {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    /* Max width for large screens */
    text-align: center;
    z-index: 9999;
    border-radius: 0;
    margin: auto;
    position: relative;
    top: 50%;
    /* Vertically center */
    transform: translateY(-50%);
}

/* Close button style */
.share-popup .close-btn {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    padding: 4px 8px;
    color: #333;
    cursor: pointer;
    background-color: #eeeeee;
}

.share-popup .close-btn:hover {
    color: #000;
}

/* Optional: Style for the content inside the popup */
.share-popup .heateor_sss_sharing_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.share-popup .heateor_sss_sharing_ul a {
    font-size: 32px;
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
}

/* Optional: Style for the SVG icons */
.share-popup .heateor_sss_svg {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-block;
    opacity: 1;
    vertical-align: middle;
    cursor: pointer;
}

/* Overlay background when popup is visible */
.share-popup:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.socail-media {
    display: none;
}

.mobile-search-btn .arrow-icon {
    transition: all 0.3s ease-in-out;
    transform: rotate(180deg);
}

.mobile-search-btn.active .arrow-icon {
    transform: rotate(0);
}

@media (min-width:992px) {
    .top-header-wrapper ul.socail-media {
        display: none;
    }

    .search-bar .location-field input[name="location"] {
        border-right-width: 0.5px;
    }

    .search-bar .location-field input[name="query"] {
        border-left-width: 0.5px;
    }
}

.no-scroll {
    overflow: hidden;
}

.mobile-flags .current-lang {
    display: none;
}

.mobile-flags img {
    width: auto !important;
    height: 15px !important;
}

.mobile-flags li {
    list-style-type: none;
}

.right-thumb .slick-list {
    width: 100%;
}


.right-thumb {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.right-thumb .slick-slide>div {
    border-bottom: 2px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    overflow: hidden;
}

.right-thumb .slick-track {
    margin: 0;
}


h3 {
    text-transform: uppercase;
}


@media (min-width:992px) {
    .right-thumb .thumb-wrapper {
        grid-template-columns: 1fr;
        /* height: 452px;  */
        height: 100%;
    }

    .right-thumb .thumb-wrapper .thumb-item {
        height: 100%;
        position: relative;
        float: left;
    }

    .right-thumb .thumb-wrapper .thumb-item>img {
        width: 100%;
        object-fit: cover;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .right-thumb .thumb-wrapper .thumb-item:after {
        content: "";
        display: block;
        padding-bottom: 84%;
    }

    .listing-banner-gallery .left-thumb {
        height: 99.58% !important;
        position: relative;
        float: left;
    }

    .listing-banner-gallery .left-thumb img {
        width: 100%;
        object-fit: cover;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .listing-banner-gallery .left-thumb::after {
        content: "";
        display: block;
        padding-bottom: 50%;
    }

    .listing-banner-gallery {
        display: flex;
        align-items: flex-start;
    }
}


@media (min-width:1200px) {

    .right-thumb .thumb-wrapper .thumb-item:after {

        padding-bottom: 50%;
    }
}

.right-thumb .thumb-wrapper:hover .slick-arrow {
    opacity: 1;
}

.thumb-wrapper .slick-prev {
    left: 15px;
    z-index: 1;
}

.thumb-wrapper .slick-next {
    right: 15px;
}

.thumb-wrapper .slick-arrow {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    opacity: 0.2;
}

.thumb-wrapper .slick-prev::before {
    content: "";
    display: block;
    width: 14px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpolyline fill="none" stroke="%23000" stroke-width="1.4" points="12.775,1 1.225,12 12.775,23"%3E%3C/polyline%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 10px;
    top: 8px;
}

.thumb-wrapper .slick-next::before {
    content: "";
    display: block;
    width: 14px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg width="14" height="24" viewBox="0 0 14 24" xmlns="http://www.w3.org/2000/svg"%3E%3Cpolyline fill="none" stroke="%23000" stroke-width="1.4" points="1.225,1 12.775,12 1.225,23"%3E%3C/polyline%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 8px;
}

.thumb-wrapper .slick-arrow:focus {
    background: #fff;
}

.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-3xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bodoni Moda SC", serif !important;
}

.top-listing-content .left-content h3 {
    margin-bottom: 0;
}


@media(max-width: 767px) {
    .right-thumb .thumb-wrapper .thumb-item {
        height: 115px;
    }

    .thumb-wrapper .thumb-item .play-btn {
        height: 40px;
        width: 40px;
    }
}

@media(min-width:992px) {
    main.listing-page {
        min-height: calc(54vh - 30px);
    }
}


.hero-area .hero-slider,
.hero-area .hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-area:has(.hero-video) {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 534px;
}

.hero-area .hero-video {
    background-color: #000;
}

.hero-area .hero-video iframe {
    height: 100%;
}

@media (min-width:768px) {

    .hero-area .hero-slider+.hero-content,
    .hero-area .hero-video+.hero-content {
        padding-top: 245px;
        padding-bottom: 190px;
    }
}


.hero-area .hero-slider,
.hero-area .hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-area:has(.hero-video) {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 534px;
}

.hero-area .hero-video {
    background-color: #000;
}

.hero-area .hero-video iframe {
    height: 100%;
}

.hero-area .hero-video.cover {
    height: 100%;
    overflow: hidden;

}

.hero-area .hero-video.cover iframe {
    position: absolute;
    height: 180%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width:768px) {

    .hero-area .hero-slider+.hero-content,
    .hero-area .hero-video+.hero-content {
        padding-top: 245px;
        padding-bottom: 190px;
    }
}

.hero-area .hero-slider .slick-list,
.hero-area .hero-slider .slick-track {
    height: 100%;
}

.hero-area .hero-slider img {
    object-fit: cover;
}

.hero-slider .slick-next {
    right: 5px;
}

.hero-slider .slick-prev {
    left: 5px;
}

.inner-hero-area .hero-slider .slick-track::before,
.hero-area .hero-slider .slick-track::before,
.hero-area .hero-video iframe::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3960784314);
}

.new-listing-area .container .section-title {
    margin-top: 45px;
}

@media (max-width: 1100px) {
    .hero-area .hero-video.cover iframe {
        transform: scale(2);
        height: 100%;
        left: 0;
        top: 0;
    }
}

@media (max-width: 767px) {
    .hero-area .hero-video.cover iframe {
        transform: scale(1.8);
        height: 100%;
        left: 0;
        top: 0;
    }

    .new-listing-area .container .section-title {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .hero-area .hero-video.cover iframe {
        transform: scale(2.8);
        height: 100%;
        left: 0;
        top: 0;
    }
}

.footer-wrapper .contact-list li a {
    color: #fff;
}

input[type='checkbox'] {
  width: initial !important;
  padding: 0 !important;
}
.wpforms-field-label {
    font-weight: normal !important;
}