@charset "UTF-8";

.el_category {
  display: flex;
  margin-bottom: 26px;
}

.el_category_item:not(:last-child) {
  margin-right: calc((100% - (145px * 6)) / 5);
}

.el_category_item_txt {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  color: #595757;
  background: #e6e6e6;
  width: 145px;
  padding: 3px 0;
  transition: all ease .3s;
  cursor: pointer;
}

.el_category_item_txt.category_selected {
  color: #fff;
  background: #ed1e79;
  cursor: default;
}

.el_category_item_txt:hover {
  color: #fff;
  background: #ed1e79;
}