.mui-bar {
  position: fixed;
  z-index: 10;
  right: 0;
  left: 0;
  border-bottom: 0;
}

.tagNav-list {
  overflow: hidden;
  overflow-x: scroll;
}

.tagNav {
  width: auto !important;
  z-index: 0;
  position: relative;
}

.tagNav:last-child {
  margin: 0;
}

.tagNav>div {
  margin: 20px 5px;
  padding: 10px 30px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.2); 
  -webkit-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  z-index: 2;
}

.tagNav>div p:after {
  content: " ";
  width: 30%;
  height: 5px;
  content: "";
  bottom: -6px;
  left: 0;
  right: 0;
  display: none;
  position: absolute;
  background-color: #fff;
  opacity: 0;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
}

.tagNav>div:last-child:after {
  width: 0;
}

.tagNav p {
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.tagNav i {
  right: 0;
  bottom: 0;
  font-size: 36px;
  color: var(--a_3);
  position: absolute;
  opacity: 0.3;
  z-index: 0;
}

.tagNav.selected>div {
  background: var(--b_1);
  -moz-box-shadow: 0 -10px 10px 0 rgba(0, 40, 14, 0.1);
  -webkit-box-shadow: 0 -10px 10px 0 rgba(0, 40, 14, 0.1);
  box-shadow: 0 -10px 10px 0 rgb(0 0 0 / 5%);
  z-index: 3;
}

.tagNav.selected>div p {
  color: #fff;
}

.tagNav.selected>div p:after {
  background: #fff;
  opacity: 1;
}

/* .tagNav.selected.tag_2>div {
  background: var(--b_2);
  background: linear-gradient(0deg, var(--b_2) 29%, var(--b_1) 100%);
}

.tagNav.selected.tag_3>div {
  background: var(--a_3);
  background: linear-gradient(0deg, var(--a_3) 29%, var(--a_2) 100%);
} */

.tagNav.selected p {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  position: relative;
}

.tagNav.selected p .icon {
  margin: 0 5px 0 0;
  font-size: 22px;
}

#tagNavBar .tagNav-list::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}