.sharedbuttons {
 flex-direction: column; 
}
.sharedbuttons .column a,
.sharedbuttons .column a:visited {
  min-height: 35px;
  text-align:center;
  display: flex;
  justify-content:center;
  flex-direction: column;
  align-items:center;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  background-color: rgba(255,255,255,0);
  -webkit-transition: background 500ms ease-in-out;
  -moz-transition: background 500ms ease-in-out;
  -ms-transition: background 500ms ease-in-out;
  -o-transition: background 500ms ease-in-out;
  transition: background 500ms ease-in-out;
  padding:5px 0;
}
.sharedbuttons .column a:hover {
  background-color: rgba(255,255,255,0.2); 
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
  .sharedbuttons {
 	flex-direction: row; 
  }
  .sharedbuttons .column a,
  .sharedbuttons .column a:visited {
    min-height: 35px;
    font-size: 12px;
  }
}


.sharedbuttons small { font-size: 65%; line-height:1; }