.dropbtn
{
    font-size: 100%;
    border: none;
    cursor: pointer;
    background: transparent;
    font-weight: 300;
}

.dropbtn:after {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    clear: both;

}

.dropdown
{
    position: relative;
    display: inline-block;
}

.dropdown-content
{
    display: none;
    position: absolute;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.dropdown-content a
{
    color: black;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover
{
}

.dropdown:hover .dropdown-content
{
    display: block;
}

.dropdown:hover .dropbtn
{
}

.bx_content_section .catalog_filter_box
{
    margin-right: 100px !important;
}

.bx_content_section .catalog_filter_box span
{
    margin: 0;
}

.catalog_filter_box .flex
{
    display: flex;
    float: right;
}

@media (max-width: 769px)
{
    .catalog_filter_box .flex
    {
        margin-right: 30px;
        float: right;
    }
    .catalog_filter_box
    {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .dropbtn:after
    {
        top: 12px;
    }
}