/* START clipboard copy stuff */
.copyIt > img{
  /* filter: brightness(100%); */
  display: inline;
  width: 20px;
  height: 20px;
  margin-top: -3px;
  padding: 2px;
  vertical-align: middle;
}

.copyIt:hover > img {
  filter: brightness(70%);
  transition: all 0.2s ease;
  cursor: pointer;
}

.copyIt:active > img {
  transform: translateY(4px);
}

.copyItBadge {
  filter: brightness(100%);
  display: inline;
}

.copyItBadge:hover {
  filter: brightness(70%);
  transition: all 0.2s ease;
  cursor: pointer;
}

.copyItBadge:active {
  transform: translateY(4px);
}


span.copyIt {
  text-decoration: underline;
}
/* END clipboard copy stuff */
