
.tag {
  background: #00c288;
  color: #FFF;
  font: 14px/14px "ProximaNova-Regular", sans-serif;
  padding: 3px 8px;
  display: inline-block;
  position: relative;
  margin: 0 0 0 10px;
  height: 20px;
  border-radius: 0 2px 2px 0;
  white-space: nowrap;
  transition: all 0.3s;
}

.tag:before {
  content: "";
  float: left;
  position: absolute;
  top: 0;
  left: -10px;
  width: 0;
  height: 0;
  border-color: transparent #00c288 transparent transparent;
  border-style: solid;
  border-width: 10px 10px 10px 0;    
  transition: all 0.3s;
}

.tag:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  float: left;
  width: 4px;
  height: 4px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: #FFF;
}

.tag:hover,
.tag:active,
.tag:focus {
  color: #FFF;
  text-decoration: none;
  background: #333 !important;
  transition: all 0.1s;
}

.tag:hover:before,
.tag:active:before,
.tag:focus:before {
  border-color: transparent #333 transparent transparent;
  transition: all 0.1s;
}

#moretags-tags {
  display: none;
}

.title .tags .tag {
  margin: 0 0 4px 12px;
  vertical-align: middle;
}

.title .tags #moretags {
  margin-left: 4px;
}