#social-links {
  position: fixed;
  height: 68px;
  width: 138px;
  top: 0px;
  right: 0px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  background: transparent;
  z-index: 1000000;
  background: black;
  opacity: 0; 
  transition: all 100ms;
}

#social-links.animated {
  opacity: 1;
}

#social-links > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

#social-links > ul > li {
  width:18px;
  height:18px;
  opacity: 0.6;
  position: relative;
  -webkit-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

#social-links > ul > li > a {
  width: 18px;
  height: 18px;
}


#social-links > ul > li:hover {
  opacity: 0.8 !important;
  animation: none !important;
}

.icon svg{fill:white}

@media (max-width: 764px) {
  #social-links {
    display: none;
  }
}