/* SHARE */
.qa-buttons {
  position: relative;
}
.share-options {
    background-color: white;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.23);
    border-radius: 3px;
    padding: 0 15px;
    position: absolute;
    top: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.share-options.showShare {
  visibility: visible;
  top: -80px;
  opacity: 1;
}
.share-options i {
  font-family: FontAwesome, sans-serif;
  font-style: normal;
  color: black;
  font-size: 26px;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.share-options i:hover {
  transform: translateY(-2px);
}
.share-options .fa-linkedin:before {
    content: "\f08c";
}
.share-options .fa-facebook-square {
  color: #2274B9;
}
.share-options .fa-twitter-square {
  color: #4D9ED8;
}
.share-options .fa-google-plus-square {
  color: #DC4A38;
}
.share-options .fa-linkedin {
  color: #2274B9;
}
.share-options .fa-pinterest-square {
  color: #BC0D1E;
}
.share-options .fa-envelope-square {
  color: #666666;
}
