/*<css-9408>*/.nav-tabs > .nav-item > .nav-link.active{
    background-color: #00b16b;
    color: white;
    border: none;
	transition:all 1s ease;
}

.nav-tabs > .nav-item > a:hover{
	color:#00b16b;
}
.nav-tabs > .nav-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; 
  height: 2px;
  background-color: #00b16b; 
  transition: width 0.3s ease;
}

.nav-tabs > .nav-item > a:hover::after {
  width: 100%;
}/*</css-9408>*/