/************************ Multiple Filters ***************************/
.blog_filter {
    height: 46px;
    overflow: hidden;
    border-radius: 5px;
}

.blog_filter:hover {
    height: 100%;
    overflow: visible;
}

.category {
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: max-content;
    width: 240px;
    border-radius: 5px;
    background-color: var(--bronze);
    color: var(--white);
    box-sizing: border-box;
    box-shadow: 0px 5px 10px #00000014;
    transition: 0.1s all ease-in-out;
    cursor: pointer;
    outline: none;
    z-index: 12;
}

.category_preselect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 46px;
    font-weight: 500;
}

.category_list {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    margin-left: -30px;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0px 5px 10px #00000014;
}

.category_list a,
.category_list .option_2 {
    display: flex;
    align-items: center;
    height: 46px;
    box-sizing: border-box;
    background-color:  var(--white);
    color: var(--black);
    padding: 0 30px;
}

.category_list a:hover,
.category_list .option {
    background-color: var(--bronze);
    color: var(--white);
}

.category:hover {
    border-radius: 5px 5px 0px 0px;
}

.blue_filter {
    z-index: 8;
}

.blue_filter .category_list {
    z-index: 6;
}

.category_list a:active.blog_filter {
    height: 46px;
    overflow: hidden;
}

.category_list a:last-of-type {
    border-radius: 0px 0px 5px 5px;
}

.no_posts {
    display: none;
    width: 100%;
    text-align: center;
    margin: 60px auto;
}

.display {
    display: block;
}

.filter {
    justify-content: center;
}

.search_bar {
    width: 350px;
}

@media (max-width: 600px) {
    .filter,
    .filter form,
    .blog_filter,
    .category {
        width: 100%;
    }

    .filter_flex {
        flex-direction: column;
        width: 100%;
    }

    .filer_flex .button_filter {
        margin-right: 0;
    }

    .filter {
        flex-direction: column;
        align-items: center;
    }

    .blog_filter {
        margin-bottom: 25px;
    }

    .search_bar {
        flex-direction: column;
    }

    .search_box,
    .search_bar,
    .search_bar .search_button {
        width: 100%;
        margin-right: 0;
    }

    .search_bar .search_button {
        margin-top: 25px;
    }
}