/**
 * 1. Avoid the IE 10-11 `min-height` bug.
 * 2. Set `flex-shrink` to `0` to prevent some browsers from
 *    letting these items shrink to smaller than their content's default
 *    minimum size. See http://bit.ly/1Mn35US for details.
 * 3. Use `%` instead of `vh` since `vh` is buggy in older mobile Safari.
 */
 
 
 
BODY {
  display: flex;
  flex-direction: column;
  height: 100vh; /* 1, 3 */
}



#wrap {
  flex: 1 0 auto; /* 2 */
  padding: var(--space) var(--space) 0;
  width: 100%;
}
#wrap::after {
  content: '\00a0'; /* &nbsp; */
  display: block;
  margin-top: var(--space);
  height: 0px;
  visibility: hidden;
}
@media (--break-lg) {
  #wrap {
    padding-top: var(--space-lg);
  }
  #wrap::after {
    margin-top: var(--space-lg);
  }
}

#wrap--full {
  padding: 0;
}
#wrap--full::after {
  content: none;
}