/* filter first*/
#first_filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: auto;
    width: 720px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -45px;
    background: #ffffff;
    border: 1px solid #f1f1f1;
    box-sizing: border-box;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.04);
    border-radius: 15px;
    position: absolute;
    padding: 10px;
    font-size: 16px;
    z-index: 1;
}
#index_search{
    width: 100%;
}
.first_filter_input{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    grid-gap: 10px;
}
.first_filter_top label{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 10px;
    padding: 10px;
    background-color: aliceblue;
}
.first_filter_top a{
    color: inherit;
}
.first_input_wrap{
    width: 525px;
}
.select2-selection{
    height: 44px !important;
 }
 .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px !important;
    line-height: 40px !important;
   }
   .select2-container--default .select2-selection--single .select2-selection__clear{
    font-size: 16px !important;
    line-height: 40px !important;
   }
   .select2-container--default .select2-selection--single .select2-selection__arrow{
    /* top: 7px; */
    display: none !important;
   }
   .select-css {
    width: 100%;
  }
   @media (max-width: 576px){
    #first_filter {
        width: 100%;
        border: none;
        box-shadow: none;
        max-width: unset;
      }
      .first_filter_top{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
      }
      .first_filter_input{
        flex-direction: column;
    }
    .filter_show_results button{
        width: 100%;
    }
    .first_input_wrap{
        width: 100%;
    }
   }
