/* media query for mobile devices */
@media (max-width: 768px) {
    .grid__search--multiply {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .btn__toogle_map::before {
        content: " ";
        display: none !important;
        width: 18px;
        height: 18px;
        background: url(./icons/home_search_map_hide.svg) no-repeat center center;
        background-size: contain;
    }

    .btn__toogle_map.no-map::before {
        content: " ";
        display: none !important;
        width: 18px;
        height: 18px;
        background: url(./icons/home_search_map_show.svg) no-repeat center center;
        background-size: contain;
    }

    ul.filter__select__options {
        box-shadow: none !important;
    }

   
}

/* media query for tablets */
@media (min-width: 769px) and (max-width: 1190px) {
    #homes_list .home__card .home__card__header{
        height: 360px;
    }

    #communities_list .community__card .community__card__header{
        height: 360px;
    }

    #communities__taxonomies li, #homes__taxonomies li, #properties__taxonomies li {
        font-size: 12px;
    }
}