.social-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  position: relative;
  border-radius: 999px;
}

.social-share a:nth-child(1) {
  background-color: #86cc53;
}

.social-share a:nth-child(2) {
  background-color: #fe2c55;
}

.social-share a:nth-child(3) {
  background-color: #0282bd;
}

.social-share a .icon {
  width: 20px;
}

.social-share a .icon img {
  width: 100%;
  object-fit: cover;
}

.social-share a .image {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 120px;
  transform: translatex(-50%);
  opacity: 0;
  visibility: hidden;
}

.social-share a .image img {
  width: 100%;
  object-fit: cover;
}

.social-share a:hover .image {
  opacity: 1;
  visibility: visible;
}

.social-share.updown {
  flex-direction: column;
}

.social-share.updown a .image {
  bottom: 50%;
  left: auto;
  right: 50px;
  transform: translatey(50%);
}
