.ce-social-sharing-bar {
  position: fixed;
  top: 50%;
  right: 0;
  display: none;
  z-index: 100000;
  width: 280px;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 992px) {
  .ce-social-sharing-bar {
    display: block;
  }
}
.ce-social-sharing-bar .toggle-social-icons {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #C7017F;
  cursor: pointer;
  pointer-events: auto;
  z-index: 99999;
}
.ce-social-sharing-bar .toggle-social-icons:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 17px;
  width: 28px;
  height: 28px;
  background-image: url("../img/share.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.ce-social-sharing-bar .social-icons {
  height: 60px;
  position: absolute;
  padding: 10px 80px 10px 6px;
  right: 0;
  top: 0;
  display: flex;
  background-color: #8A106A;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  pointer-events: auto;
}
.ce-social-sharing-bar .social-icons .social-item {
  width: 28px;
  height: 40px;
  margin-left: 10px;
}
.ce-social-sharing-bar .social-icons .social-item .share-icon {
  width: 28px;
  height: 40px;
  position: relative;
}
.ce-social-sharing-bar .social-icons .social-item .share-icon:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 22px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
.ce-social-sharing-bar .social-icons .social-item .share-icon.facebook-share:before {
  background-image: url("../img/share-facebook.svg");
  left: 10px;
  width: 12px;
}
.ce-social-sharing-bar .social-icons .social-item .share-icon.linkedin-share:before {
  background-image: url("../img/share-linkedin.svg");
  width: 16px;
  left: 7px;
  top: 13px;
}
.ce-social-sharing-bar .social-icons .social-item .share-icon.twitter-share:before {
  background-image: url("../img/share-twitter.svg");
  width: 20px;
  top: 12px;
}
.ce-social-sharing-bar .social-icons .social-item .share-icon.mail-share:before {
  background-image: url("../img/share-mail.svg");
  left: 2px;
  top: 11px;
}
.ce-social-sharing-bar.opened .social-icons {
  transform: translateX(0);
}
