.social {
  position: fixed;
  right: 0;
  bottom: 90px;
  z-index: 1000
}
.social__item {
  transform: translateX(91px);
  padding: 14px;
  background-color: #5b9118;
  display: flex;
  align-items: center;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  transition: transform .4s linear
}
.social__item a {
  margin-left: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  font-family: "Roboto Slab",sans-serif
}
.social__item.active {
  transform: translateX(0)
}
@media (max-width:768px) {
  .social {
    bottom: 100px
  }
  .social__item {
    padding: 3px 7px
  }
  .social__item svg {
    width: 25px
  }
}