.div_wrapper .pro_categories_list {
  display: flex;
  /* justify-content: space-evenly; */
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
}
.shop.forCategoryPage .div_wrapper .pro_categories_list {
  justify-content: center;
}
.div_wrapper .pro_categories_list li {
  /* display: flex;
  align-items: center; */
  padding: 4px;
  position: relative;
  text-align: center;
}
.div_wrapper .pro_categories_list li:hover .other_links {
  opacity: 1;
}
.div_wrapper .pro_categories_list li:hover .all_links img {
  /* Add the blur effect */
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
.div_wrapper .pro_categories_list li .all_links {
  text-align: center;
}
.div_wrapper .pro_categories_list li .all_links img {
  width: 100px !important;
  height: 100px !important;
}
.div_wrapper .pro_categories_list li .all_links p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.div_wrapper .pro_categories_list li a:focus {
  color: #000000 !important;
}
.div_wrapper .pro_categories_list li a:hover,
.div_wrapper .pro_categories_list li a:focus {
  color: #001b7a;
}
.div_wrapper .pro_categories_list li .other_links {
  padding: 4px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 33.33%;
}
.div_wrapper .pro_categories_list li .other_links a {
  display: block;
  font-size: 12px;
  font-weight: 500;
  padding: 4px;
  background: #001b7a;
  color: #ffffff;
  text-align: center;
  margin: 3px;
  transition: 0.3s ease;
  transform: skewX(0deg);
}
.div_wrapper .pro_categories_list li .other_links a:hover,
.div_wrapper .pro_categories_list li .other_links a:focus {
  background: #ffc94d !important;
  color: #000000 !important;
  transform: skewX(-15deg);
}

/* category li width for category pages */
.forCategoryPage ul.pro_categories_list li {
  width: 20%;
}

@media only screen and (max-width: 768px) {
  .forCategoryPage ul.pro_categories_list li {
    width: 33.33%;
  }
}
@media only screen and (max-width: 425px) {
  .forCategoryPage ul.pro_categories_list li {
    width: 50%;
  }
}

/* category li width for shop page */
.forShopPage ul.pro_categories_list li {
  width: 33.33%;
}
@media only screen and (max-width: 768px) {
  .forShopPage ul.pro_categories_list li {
    width: 50%;
  }
}

/* for dynamic item per row */
ul.pro_categories_list.one_row_1 li {
  width: 100%;
}

ul.pro_categories_list.one_row_2 li {
  width: 50%;
}

ul.pro_categories_list.one_row_3 li {
  width: 33.33%;
}

ul.pro_categories_list.one_row_4 li {
  width: 25%;
}

ul.pro_categories_list.one_row_5 li {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  ul.pro_categories_list.one_row_3 li,
  ul.pro_categories_list.one_row_4 li,
  ul.pro_categories_list.one_row_5 li {
    width: 50%;
  }
}
@media only screen and (max-width: 425px) {
  ul.pro_categories_list.one_row_3 li,
  ul.pro_categories_list.one_row_4 li,
  ul.pro_categories_list.one_row_5 li {
    width: 50%;
  }
}

/* Show more category things */
.div_wrapper .showMoreWrap {
  /* display: none; */
  text-align: center;
  margin: 4px;
}
.div_wrapper .showMoreWrap .btnShowMoreCate {
  font-size: 14px;
  font-weight: 100;
  border: none;
  color: #ffffff !important;
  background: #001b7a !important;
  padding: 4px 10px;
  border-radius: 4px;
  transition: 0.3s ease;
}
.div_wrapper .showMoreWrap .btnShowMoreCate:hover,
.div_wrapper .showMoreWrap .btnShowMoreCate:focus {
  color: #000000 !important;
  background: #ffc94d !important;
}
@media only screen and (max-width: 425px) {
  /* .div_wrapper .showMoreWrap {
    display: block;
  } */
  /* Hide category li if not have show class */
  /* .div_wrapper .pro_categories_list li:not(.show) {
    display: none;
  } */
}
/* Hide category li if not have show class */
.div_wrapper .pro_categories_list li:not(.show) {
  display: none;
}
