/* //////////////////////////////////////////////// */
/* Social Links */

.social-link {
  position: fixed;
  top: 40.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  z-index: 2998;
  transition: all 0.5s ease-in-out;
}

.social-link.show {
  top: 48rem;
  pointer-events: all;
  opacity: 1;
}

#social-link-1 {
  right: 26.4rem;
}

#social-link-2 {
  right: 20.4rem;
}

#social-link-3 {
  right: 14.4rem;
}

#social-link-4 {
  right: 8.4rem;
}

#social-link-5 {
  right: 2.4rem;
}

.social-link-icon {
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 0.8rem;
  color: var(--black);
  background-color: var(--white);
  box-shadow: 0 0 0.6rem 0 var(--shadow-light);
  padding: 1.2rem;
  transition: all 0.5s ease-in-out;
}

.social-link:active .social-link-icon {
  background-color: var(--creme);
}

.social-link:focus-visible .social-link-icon {
  background-color: var(--creme);
}
