/*Created by GIAN DI SERAFINO*/
.social {
  position: fixed;
  top: 100px;
  right: 0;
}
.social ul {
  padding: 0px;
  -webkit-transform: translate(270px, 0);
  -moz-transform: translate(270px, 0);
  -ms-transform: translate(270px, 0);
  -o-transform: translate(270px, 0);
  transform: translate(270px, 0);
}
.social ul li {
  display: block;
  margin: 5px;
  background: #444;
  width: 300px;
  text-align: left;
  padding: 10px;
  border: 1px #444 solid;
  -webkit-border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  border-radius: 30px 0 0 30px;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  position: relative;
}

.social ul li:hover {
  border-color: #444;
  -webkit-transform: translate(-110px, 0);
  -moz-transform: translate(-110px, 0);
  -ms-transform: translate(-110px, 0);
  -o-transform: translate(-110px, 0);
  transform: translate(-110px, 0);
  background: #444;
}
.social ul li a {
  color: #eee;
  text-decoration: none;
  margin-left: 65px;
}
.social ul li:nth-last-of-type(1) a {
  font-size: 0.75em;
  margin-left: 45px;
}
.social ul li img {
  width: 40px;
  height: 40px;
  margin-right: 0px;
  position: absolute;
  padding: 1px;
  transition: transform 1s;
}
.social ul li:nth-of-type(1) img {
  top: 0px;
  left: 10px;
}
.social ul li:nth-of-type(2) img {
  top: 0px;
  left: 10px;
}
.social ul li:nth-of-type(3) img {
  top: 0px;
  left: 10px;
}

.social ul li:nth-of-type(4) img {
  width: 36px;
  height: 36px;
  padding: 6px;
  top: -1px;
  left: 8px;
}
.social ul li:hover img {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.social ul li:hover a {
  color: #eee;
}