body .voting {
  display: flex;
  align-items: center;
  pointer-events: none;
}
body .voting a {
  transition: opacity 0.3s, transform 0.3s;
  opacity: 1;
  text-decoration: none;
  pointer-events: auto;
  line-height: 1;
}
body .voting a[hun-overlay] {
  position: relative;
}
body .voting a[hun-overlay]:after {
  content: attr(hun-overlay);
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s;
  font-size: 12px;
  background-color: #222;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 2px 5px;
  color: #fff;
  font-weight: 500;
}
body .voting a[hun-overlay]:hover:after {
  opacity: 1;
}
body .voting a:hover {
  opacity: 1 !important;
  transform: scale(1.2);
}
body .voting .current-votes {
  color: #000;
  font-weight: 600;
  background: linear-gradient(90deg, #5edb46 var(--vote-score), red var(--vote-score));
  border-radius: 5px;
  border: 1px solid #000;
  min-width: 26px;
  text-align: center;
}
body .voting .current-votes[style*="--vote-score: 0%"] {
  display: none;
}
body .voting:hover a,
body .voting:not([data-current-vote='0']) a {
  opacity: 0.3;
}
body .voting:hover[data-current-vote='-1'] a:first-of-type,
body .voting:not([data-current-vote='0'])[data-current-vote='-1'] a:first-of-type {
  opacity: 1;
}
body .voting:hover[data-current-vote='1'] a:nth-of-type(2),
body .voting:not([data-current-vote='0'])[data-current-vote='1'] a:nth-of-type(2) {
  opacity: 1;
}
body .voting:hover[data-current-vote='2'] a:nth-of-type(3),
body .voting:not([data-current-vote='0'])[data-current-vote='2'] a:nth-of-type(3) {
  opacity: 1;
}
