body {
    margin: 0;
    padding: 0;
    background-color: #f2f3f5;
}

input:focus, textarea:focus, select:focus{
    outline: none;
}

.bb_resBtn{
    display: none;
}

.bb_listProductDiv {
    width: 92%;
    margin: 0px 4%;
    position: relative;
}

.bb_listProductInner {
    width: 100%;
    display: flex;
    /* background-color: aqua; */
}

.bb_resBtn{
    background-color: red;
    padding: 10px 16px;
    position: absolute;
    left: -10px;
    cursor: pointer;
    color: white;
    font-size: 25px;
}

.bb_listProductInner_left {
    width: 25%;
    /* padding: 0px 0px; */
    /* background-color: chartreuse; */
}

.bb_listProduct_name {
    width: 100%;
    text-align: center;
    /* padding: 1px 0px; */
}

.bb_listProduct_name h1{
    padding: 17px 0px;
    background-color: white;
    margin: 20px 0px 10px 0px;
}

.bb_aSearch{
    width: 87%;
    padding: 20px;
    background-color: white;
}

.bb_aSearchContent{
    width: 100%;
}

.bb_aSearchContent select{
    width: 100%;
    padding: 10px;
}

.bb_aSearchContent h3{
    margin: 10px 0px;
}

.bb_aSearchContent input{
    padding: 7px 5px;
    width: 100px;
    margin: 10px 5px;
}

.live_search{
    padding: 10px 50px;
    margin-right: auto;
    margin-left: 85px;
    text-align: center;
    right: 0;
    left: 0;
    margin-top: 15px;
    background-color: red;
    color: white;
    border: 1px solid red;
    border-radius: 5px;
    cursor: pointer;
}

.bb_listProductInner_right {
    width: 75%;
    padding: 20px 10px;
    /* background-color: yellow; */
}

.bb_topFilterTool {
    width: 100%;
    display: flex;
    padding: 20px 0px;
    background-color: white;
}

.bb_topFilterTool form{
width: 100%;
    display: flex;
}

.filterShow {
    width: 30%;
    padding: 0px 20px;
    left: 0;
}

.filterShow select{
    width: 53px;
    padding: 8px 5px;
    border: 1px solid darkgrey;
}

.filterShow select option, .filterSortBy select option{
    color: grey;
}

.filterSortBy {
    width: 70%;
    padding: 0px 20px;
    text-align: right;
}

.filterSortBy select{
    width: 180px;
    padding: 8px 5px;
    border: 1px solid darkgrey;
}

.bb_listAllProductDiv {
    width: 100%;
    display: inline-block;
    padding: 0px 5px;
}

.bb_perProduct_col {
    float: left;
    padding: 10px;
    width: 280px;
}

.pagination_center{
    text-align: center;
    padding: 30px 0px 10px 0px;
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination a.active {
    background-color: #07003A;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: grey;
}

/* Double Range Slider */

.wrapper{
    position: relative;
    /* width: 95vmin; */
    background-color: #ffffff;
    padding: 0px 20px;
    /* border-radius: 10px; */
}
.container{
    position: relative;
    width: 100%;
    height: 50px;
    /* margin-top: 30px; */
}
input[type="range"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track{
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}
input[type="range"]::-webkit-slider-runnable-track{
    -webkit-appearance: none;
    height: 5px;
}
input[type="range"]::-moz-range-track{
    -moz-appearance: none;
    height: 5px;
}
input[type="range"]::-ms-track{
    appearance: none;
    height: 5px;
}
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 1.2em;
    width: 1.2em;
    background-color: #07003A;
    cursor: pointer;
    margin-top: -5px;
    pointer-events: auto;
    border-radius: 50%;
}
input[type="range"]::-moz-range-thumb{
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #07003A;
    pointer-events: auto;
}
input[type="range"]::-ms-thumb{
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #07003A;
    pointer-events: auto;
}
input[type="range"]:active::-webkit-slider-thumb{
    background-color: #ffffff;
    border: 3px solid #07003A;
}
.values{
    color: #07003A;
    width: 100%;
    position: relative;
    margin: auto;
    /* padding: 10px 0; */
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    /* color: #ffffff; */
}
/* .values:before{
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border-top: 15px solid #07003A;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: auto;
    bottom: -14px;
    left: 0;
    right: 0;
} */

/* end of Double Range Slider */