/**
 * @file
 * subfooter--full-width.css
 * 
 * Styling for the "subfooter" type: Full Width
 * 
 * -------------------------------------------------
 * Updated: Alberni Design Jr - 2019-03-05
 * 
 * Attached thru `.libraries.yml`
 *
 ============================================================================ */
.subfooter {
  padding: 1.5em 0;
  color: #fff;
}

.subfooter-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Set flex's resizing */
.subfooter .block:not(:last-child) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}