.tags {

	margin: 0px;
	overflow: hidden;
	padding: 0px;
	font: 16px/1.6 'PT Sans', serif;
}

.tags li {
  float: left; 
}

.tag {
  background: #d0ffb6;
  border-radius: 3px 0 0 3px;
  color: #181717;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding: 0 20px 0 23px;
  position: relative;
  margin: 0 10px 10px 0;
  text-decoration: none;
  -webkit-transition: color 0.2s;
}

.tag::before {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
  content: '';
  height: 6px;
  left: 10px;
  position: absolute;
  width: 6px;
  top: 10px;
}

.tag::after {
  background: #f2dfbf;
  border-bottom: 13px solid transparent;
  border-left: 10px solid #d0ffb6;
  border-top: 13px solid transparent;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
}

.tag:hover {
  background-color: #93bf1b;
  color: #f0ff00;
}

.tag:hover::after {
  border-left-color: #93bf1b;
  color: #f0ff00;    
}
