.search-options {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 24px 15px !important;
}

.search-options .filterClose {
    background-color: transparent;
    position: absolute;
    right: 17px;
    top: -3px;
    outline: 0px;
    font-size: 25px;
    transition: all 200ms;
    display: none;
}


.search-options .options-title {
    font-size: 22px;
    color: var(--dark-color-3);
    font-weight: 600;
}

.search-options .spacer-title {
    margin: 0px;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 18px;
    background-color: #053451;
}

.search-options form {
    font-size: 15px;
}

.search-options form .input-field {
    width: 100%;
    border: 1px solid var(--border-color-1);
    box-shadow: 0 0 6px -5px #dcdcdc;
    margin: 10px 0px;
    border-radius: 8px;
    position: relative;
}

.search-options form .input-field input,
.search-options form .input-field select {
    width: 100%;
    height: 40px;
    padding: 10px 15px;
    font-weight: 500;
    border: 0px;
    color: var(--secondary-color-3);
    outline: 0px;
    -webkit-appearance: none;
    appearance: none;
}

.search-options form .input-field i.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-color-3);
}

.search-options form .two-section {
    border-radius: 8px;
}

.search-options form .two-section .input-field {
    flex: 0 0 50%;
    border-right: 1px solid var(--border-color-1);
    border-radius: 0px;
}

.search-options form .two-section .input-field:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.search-options form .two-section .input-field:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.search-options form .under-box {
    max-height: 0px;
    overflow: hidden;
    visibility: hidden;
    border: 1px solid var(--border-color-1);
    border-radius: 8px;
    transition: all 300ms;
}

.search-options form .under-box.show {
    max-height: 350px;
    overflow-y: auto;
    visibility: visible;
    padding: 10px 15px;
}

.under-box:not(.show) ul.check-list {
    display: none !important;
}

.guest-section input {
    width: 100px;
}

.guest-section .buttons button {
    background-color: transparent;
    margin: 4px 3px;
    color: var(--dark-color-3);
    outline: 0px;
    transition: all 200ms;
    border-radius: 4px;
    min-width: 30px;
}

.guest-section .buttons button:hover {
    background-color: var(--dark-color-3-transparent-2);
}


.listing-bar {
    background-color: var(--white-color);
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 6px 0 rgba(46,54,82,.1);
}

.filterOpen {
    display: none;
    background-color: var(--danger-color-4);
    color: #fff;
    border-radius: 8px;
    outline: 0px;
    transition: all 200ms;
    margin-left: auto;
    padding: 10px 15px;
}

.filterOpen:hover {
    color: var(--white-color);
    outline: 0px;
}

.filterOpen span {
    color: #fff;
    transition: all 200ms;
}

.filterOpen:hover span {
    color: var(--white-color);
}

.listing-bar .search-result strong {
    font-size: 24px;
    color: #f38526;

}

.listing-bar .search-result span {
    font-size: 14px;
    font-weight: 500;
}

.listing-bar .listing-property ul li button {
    background-color: transparent;
    color: var(--secondary-color-2);
    border-radius: 4px;
    transition: all 200ms;
    font-size: 22px;
    outline: 0px;
    margin: 0px 5px;
}

.listing-bar .listing-property ul li button:hover {
    color: var(--danger-color-4);
}

.listing-bar .listing-property ul li button.active {
    color: var(--danger-color-4);
}

.listing-view .list-item {
    flex: 0 0 100%;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    min-height: auto;
    margin-right: unset !important;
}

.listing-view .list-item:hover {
    margin-top: 15px;
}

.listing-view .list-item .imgbox {
    display: block;
    flex: 0 0 45%;
}

.listing-view .list-item .item-content {
    flex: 0 0 55%;
}

.listing-view .list-item .item-content .info-section {
    height: 100%;
    justify-content: space-around;
    padding: 15px 30px;
}

.listing-view .info-section .villa-name {
    font-size: 24px;
}

.listing-view .list-item .info-section .description {
    display: block;
}

.listing-view .info-section .villa-properties {
    margin-top: 10px;
}

.listing-view .info-section .villa-properties .property-box i::before {
    font-size: 32px;
}

.listing-view .info-section .BottomMessage {
    width: 100%;
    text-align: center;
    background: #17a2b8;
    padding: 6px 0px;
    color: #fff;
    border-radius: 5px;
}

.listing.grid-view .list-item {
    flex: 0 0 calc(50% - 10px);
}


@media only screen and (max-width: 1499px) {
    .search-options form .two-section .input-field {
        flex: 0 0 100%;
    }


    .listing-view .listing.grid-view .list-item .imgbox {
        flex: 0 0 40%;
        height: 320px;
    }

    .listing-view .list-item .item-content {
        flex: 0 0 55%;
    }

    .listing-view .list-item .info-section .description {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1199px) {
    .listing-section .listing {
        width: 100%;
        margin-left: 0px;
    }

    .listing.grid-view .list-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 15px 0px;
    }

    .listing .list-item {
        max-width: 100%;
        margin: 15px 0px;
        flex: 0 0 100% !important;
    }

    .listing-bar {
        padding: 10px 15px;
    }

    .listing-bar .search-result strong {
        font-size: 22px;
        font-weight: 600;
    }

    .filterOpen span {
        font-size: 16px;
    }

    .listing-view .list-item .info-section .description {
        display: none;
    }

    .listing-view .list-item .imgbox {
        height: 250px;
    }

    .listing-view .info-section .villa-name {
        font-size: 20px;
    }

    .listing-view .list-item .item-content .info-section {
        padding: 15px 15px;
    }
}

@media only screen and (max-width: 991px) {
    .sidebar-col {
        position: fixed;
        min-height: auto !important;
        left: 0px;
        top: 0px;
        z-index: 999;
        height: 100vh;
        overflow-y: auto;
        padding: 0px;
        width: 350px;
        left: -350px;
        transition: all 300ms;
        display:none;
    }
    .search-options{
        padding: 15px 0px;
    }
    .sidebarSearch.open {
        background-color: var(--white-color);
        display: block !important;
        position: fixed !important;
        padding:10px 10px;
        overflow-y: scroll !important;
    }
    .sidebar-col.show {
        left: 0px;
    }
    /* width */
    .sidebar-col::-webkit-scrollbar {
        width: 8px;
    }
    /* Track */
    .sidebar-col::-webkit-scrollbar-track {
        background: #fff;
    }
    /* Handle */
    .sidebar-col::-webkit-scrollbar-thumb {
        background: rgb(194, 194, 194);
        border-radius: 4px;
    }
    /* Handle on hover */
    .sidebar-col::-webkit-scrollbar-thumb:hover {
        background: rgb(156, 156, 156);
    }

    .search-options .filterClose {
        display: block;
    }

    .sidebar-col .search-options {
        border-radius: 0px;
    }

    .list-item .imgbox {
        height: 370px;
    }

    .filterOpen {
        display: block;
    }

    .main.padding-tb-50 {
        padding: 25px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .list-item .imgbox {
        height: 300px;
    }

    .filterOpen {
        font-size: 14px;
    }

    .filterOpen span {
        font-size: 13px;
    }



    .listing.listing-view .list-item .villa-price {
        flex: 0 0 auto;
        padding: 10px 10px;
    }

    .listing.listing-view .list-item .villa-price span {
        font-size: 14px;
    }

    .listing-view .list-item .imgbox {
        height: 270px;
    }

    .listing.listing-view .list-item .info-section .villa-properties .property-box {
        flex-flow: column nowrap;
    }

    .listing.listing-view .list-item .info-section .villa-properties .property-box i {
        margin-bottom: 5px;
    }

    .listing.listing-view .list-item .info-section .villa-properties .property-box i:before {
        margin-right: 0px;
        font-size: 32px;
    }
}

@media only screen and (max-width: 599px) {
    .listing-bar .listing-property ul li button.list-view {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .list-item .imgbox {
        height: 220px;
    }

    .listing-bar .search-result {
        margin-bottom: 5px;
    }
    .list-item .info-section{
        padding: 12px 15px 5px 15px;
    }
}

@media only screen and (max-width: 499px) {
    .search-options .options-title {
        font-size: 18px;
    }

    .sidebar-col {
        width: 300px;
        left: -300px;
    }

    .search-options .spacer-title {
        font-size: 15px;
    }

    .search-options form .input-field input, .search-options form .input-field select {
        font-size: 14px;
    }

    .search-options .label-field label {
        font-size: 14px;
    }

    .list-content .section-title > span {
        font-size: 20px;
    }
}
.listing-view .villa-name .bolge-bg{
    display: none !important;
}
.listing-view .list-item .villa-price{
    flex: 0 0 130px;
}
@media only screen and (max-width: 420px){
    .list-item .imgbox {
        height: 180px;
    }
}

.titleGrid{
    font-size: 18px;
}
.list-item{
    margin: 15px 5px;
}