/**
 * #.# Common SCSS
 *
 * Can include things like variables and mixins
 * that are used across the project.
*/
/**
 * #.# Styles
 *
 * CSS for both Frontend+Backend.
 */
.soci-grid {
  display: -ms-grid;
  display: grid;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 10px; }
  @media all and (max-width: 540px) {
    .soci-grid {
      -ms-grid-columns: 1fr 10px 1fr;
      grid-template-columns: repeat(2, 1fr) !important; } }

.soci-grid-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center; }
  .soci-grid-item img {
    -ms-flex-item-align: center;
        align-self: center; }
