/*Estilos listado de botones redes sociales*/

/*ICONOS*/
.social .facebook {
  background-image: url('/assets/img/icons/facebook.svg');
  background-size: 9px 15px;
}
.social .twitter {
  background-image: url('/assets/img/icons/twitter.svg');
  background-size: 17px 15px;
}
.social .google {
  background-image: url('/assets/img/icons/google.svg');
  background-size: 24px 15px;
}
/*Estilos*/
.social {
  margin-bottom: 15px;
}
.social p {
  color: #999;
  margin-bottom: 10px;
}
.social,
#social p {
  text-align: right;
  margin-bottom: auto;
  text-align: center;
}
.social li {
  display: inline-block;
  margin-right: 1px;
}
.social a {
  display: block;
  width: 40px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: none;
}
.social a:hover,
.social a:focus,
.social a:active {
  opacity: 1;
  border-bottom: none;
}
.twitter {
  background-color: #7fa9db;
  background-size: 17px 15px;
}
.facebook {
  background-color: #445092;
  background-size: 8px 16px;
}
.google {
  background-color: #c63624;
  background-size: 23px 15px;
}
.facebook:hover {
  background-color: #606aa2;
}
.twitter:hover {
  background-color: #99bae2;
}
.google:hover {
  background-color: #d15e50;
}
@media (max-width: 767px) {
  .social {
    display: none;
  }
}
