@charset "UTF-8";
/* CSS Document */


.box.twitterbox {
  background: #59adeb; 
  background: -moz-linear-gradient(45deg,  #59adeb 0%, #35ce93 100%);
  background: -webkit-linear-gradient(45deg,  #59adeb 0%,#35ce93 100%);
  background: linear-gradient(45deg,  #59adeb 0%,#35ce93 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#59adeb', endColorstr='#35ce93',GradientType=1 );  -webkit-box-sizing: border-box;  
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.twitterbutton {
  position: absolute;
   top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;  width: 160px;
  height: 60px;
  border: 7px solid #ffd615;
  margin: auto;
  overflow: hidden;
  z-index: 100;
}

 .twitter-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 3px;
  cursor: pointer;
}

.twitter {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(https://abs.twimg.com/a/1450471907/img/t1/web_heart_animation.png) no-repeat;
  background-position: 0 0;
}

.twitter:hover {
  background-position: -2800px 0;
}

.twitter.active {
  background-position: -2800px 0;
  transition: background 1s steps(28);
  animation: fave-twitter 1s steps(28);
}

@keyframes fave-twitter {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2800px 0;
  }
}

