#topbar {
  position: relative;
  z-index: 3;
  background-color: #fff;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-bottom: 1px solid #eee;
  font-family: 'Poppins', sans-serif;
}

#topbar ul.top-menu li a {
  color: #484848;
  font-size: 13px;
  font-weight: 500;
  height: 40px;
  margin-right: 20px;
}

#topbar ul.top-menu li a:hover {
  color: #e13138;
}

#topbar ul.social-icons li a {
  display: grid;
  align-content: center;
  align-items: center;
  color: #333;
  font-size: 16px;
  height: 40px;
  text-align: center;
  padding: 0 15px 0px 15px;
  border-radius: 0px;
  overflow: hidden;
}

#topbar ul.social-icons li a:hover {
  color: #fff !important;
  border: 0;
}

.social-facebook a:hover {
  background-color: #5d82d1;
}

.social-rss a:hover {
  background-color: #faa33d;
}

.social-twitter a:hover {
  background-color: #40bff5;
}

.social-youtube a:hover {
  background-color: #ef4e41;
}

.social-pinterest a:hover {
  background-color: #e13138;
}

.social-linkedin a:hover {
  background-color: #238cc8;
}

#topbar ul.social-icons li:hover i {
  -webkit-animation: toTopFromBottom .3s forwards;
  -moz-animation: toTopFromBottom .3s forwards;
  animation: toTopFromBottom .3s forwards;
}

@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}