.category_products_banner img {
    width: 100%;
}
.category_products_banner img {
    margin-bottom: 40px;
}
.best_sale--products{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.filter_select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 32px;
}
.filter_select select {
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #3043A1;
    border: 2px solid #B591D6;
    border-radius: 100px;
    padding: 16px;
    background: #eef0eb;
}
.filter_select select:hover {
    background: #E9DEF2;
    cursor: pointer;
}
.filter_select h2 {
    margin-bottom: 0 !important;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pagination a {
    padding: 10px 16px 8px;
    font-size: 16px;
    margin: 5px;
    color: #24337A;
    border-radius: 9px;
}
.pagination a:hover{
   background: #c5abde;
}
.dropholder{
    width: 225px;
    height: 60px;
    position: relative;
}
.dropdown {
    width: 100%;
    cursor: pointer;
    height: 50px;
    position: relative;
    box-sizing: border-box;
    border: 2px solid #B591D6;
    border-radius: 100px;
    background: #eef0eb;
    overflow: hidden;
    z-index: 2;
    transition: unset;
}
.dropdown p{
    padding: 16px 34px 16px 16px;
    background: #F8F4FB;
    border-radius: 32px;
    transition: unset ;
    color: #3043A1;
    font-weight: 700;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.dropdown:after{
     content:"\f107";
     font-size: 14px;
    font-family: "Font Awesome 6 Free";
     position: absolute;
     right:20px;
     top:17px;
     display: block;
    color: #B591D6;
 }
.dropdown.active + .dropdownMenu {
     display: block;
 }
.dropdownMenu {
    position: absolute;
    left: 0;
    top: 3px;
    right: 0;
    margin: 0;
    cursor: pointer;
    display: none;
    background: #FFFFFF;
    border: 2px solid #B591D6;
    border-radius: 32px;
    z-index: 1;
    overflow: hidden;
    padding: 46px 8px 16px;
}
.dropdownMenu li {
    color: #3043A1;
    list-style: none;
    border-radius: 16px;
    padding: 8px 8px;
    font-weight: 700;
}
.dropdownMenu li:hover {
    background: #E9DEF2;
}
.dropdownMenu li:last-child{
     border:none;
 }
.dropdown.active{
    border-bottom: 2px solid transparent;
    background: #fff;
    border-radius: 32px 32px 0 0;
}
.dropdown.active p{
    background: #fff !important;
}
.dropdown.active:after{
  transform: rotate(180deg);
}