.share-button { 
  display: inline-block; 
  padding: 5px 10px; 
  margin-right: 5px; 
  border-radius: 4px; 
  text-decoration: none;
  color: #fff;
}

.share-button:hover {
  color: #fff;
}

.share-button.facebook {
  background: #3b5999;
}
.share-button.whatsapp {  
  background: #25D366;
}
.share-button.twitter {
  background: #00abf0;
}

.share-button.pinterest {
    background: #c8232c;
}
.share-button.email {
    background: #3e65cf;
}

.share-button.google-plus {
  background: #dd4b39;
}

@media only screen and (min-width: 600px) {
    .share-button.whatsapp{
        display: none;
    }
}