html body div.component-social-share ul {
  display: flex;
  margin: 0px;
  padding: 0px;
  list-style: none;
  gap: 10px;
}
html body div.component-social-share ul li {
  list-style: none;
  margin: 0px;
}
html body div.component-social-share ul li {
  position: relative;
}
html body div.component-social-share ul li a {
  list-style: none;
  display: block;
  margin-left: 0px;
  background-color: white;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body div.component-social-share ul li a:hover img {
  opacity: 1;
}
html body div.component-social-share ul li a img {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  filter: invert(1);
  opacity: 0.2;
}
html body div.component-social-share ul li a.copied + div.copied-fallback {
  transform: translateY(0%);
  opacity: 1;
  pointer-events: all;
}
html body div.component-social-share ul li div.copied-fallback {
  position: absolute;
  background-color: var(--primary);
  color: white;
  padding: 4px 2px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  position: absolute;
  bottom: -26px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s;
}
html body div.component-social-share ul li div.copied-fallback :after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--primary);
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}
html body div.component-social-share ul li div.copied-fallback span {
  color: white;
  font-size: 12px;
  line-height: 12px;
}