#share_social{
  position:fixed;
  z-index:9999;
  right: 20px;
  margin-right:20px;
}
.share_social-item {
  display:block;
  white-space:nowrap;
  margin:0 0 6px;
  height:32px;
}
.share_social-item a{
  display:inline-block;
  vertical-align:top;
  width:32px;
  height:32px;
  margin:0;
  padding:0;
  outline:none;
}

.share_social-item a{
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  /*animation: name duration timing-function delay iteration-count direction fill-mode play-state;*/
  -webkit-animation: rotate-reset 1s ease-in-out 0s 1 alternate none paused;
  animation: rotate-reset 1s ease-in-out 0s 1 alternate none paused;
}
.share_social-item a:hover{
  /*-webkit-animation-play-state: running;
  animation-play-state: running;*/
  -webkit-animation: rotate-run 0.5s ease-in-out 0s 1 alternate none running;
  animation: rotate-run 0.5s ease-in-out 0s 1 alternate none running;
}

@keyframes rotate-run {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotate-reset {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}


#share_social_mobile{
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
  height: auto;
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 999999;
}
.share_social-item_mobile {
  width: 16.6667%;
  height: 1.4em;
  line-height: normal;
  color: white;
  font-weight: bold;
  font-size: 2em;
  text-align: center;

  margin: 0 !important;
  padding: 0 !important;

  vertical-align: middle !important;
  background-image: none !important;
  display: inline-block !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.share_social-item_mobile a{
  display:inline-block;
  color: #ffffff !important;
  text-decoration: none !important;
  width: 100%;
  height: 1em;
  vertical-align: middle !important;

}

.share_social-item_mobile a span{
  vertical-align: middle !important;
}