.predefined-widget--fact-blocks .pane-title-wrapper {
  margin: 1em 0;
}
.predefined-widget--fact-blocks .fact-blocks-wrapper {
  padding: 2rem 0 4.5rem;
  margin: 0;
}
.predefined-widget--fact-blocks .fact-blocks-wrapper li {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 0;
}
.predefined-widget--fact-blocks .widget-icon-value-suffix-wrapper {
  color: #1bc2ee;
  font-weight: 900;
  line-height: 4rem;
}
.predefined-widget--fact-blocks .widget-icon-value-suffix-wrapper .value,
.predefined-widget--fact-blocks .widget-icon-value-suffix-wrapper .suffix {
  font-size: 4rem;
}
.predefined-widget--fact-blocks .widget-icon-value-suffix-wrapper .value {
  vertical-align: middle;
}
.predefined-widget--fact-blocks .widget-icon-value-suffix-wrapper .icon {
  fill: #1bc2ee;
}
.predefined-widget--fact-blocks .widget-description {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: bold;
}
.predefined-widget--fact-blocks .widget-value {
  width: auto;
  display: inline-block;
}
.predefined-widget--fact-blocks .digits-bigger .widget-value .value {
  font-size: 4em;
}
.predefined-widget--fact-blocks .digits-big .widget-value .value {
  font-size: 5em;
}
.predefined-widget--fact-blocks .digits-huge .widget-value .value {
  font-size: 6em;
}
.predefined-widget--fact-blocks .overlay-wrapper h2 {
  padding-top: 4.5rem;
  font-size: 3rem;
  line-height: 3.75rem;
  font-weight: 300;
  margin-bottom: 0;
}
.predefined-widget--fact-blocks .overlay-wrapper.overlay-padding-2 {
  padding-top: 2em;
  padding-bottom: 2em;
}
.predefined-widget--fact-blocks .overlay-wrapper.overlay-padding-4 {
  padding-top: 4em;
  padding-bottom: 4em;
}
.predefined-widget--fact-blocks .overlay-wrapper.overlay-padding-6 {
  padding-top: 6em;
  padding-bottom: 6em;
}
.predefined-widget--fact-blocks .overlay-wrapper.overlay-padding-8 {
  padding-top: 8em;
  padding-bottom: 8em;
}
.predefined-widget--fact-blocks .overlay-wrapper.overlay-padding-10 {
  padding-top: 10em;
  padding-bottom: 10em;
}
.predefined-widget--fact-blocks .fact-block-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.predefined-widget--fact-blocks .align-centered .fact-block-wrapper {
  text-align: center;
}
.predefined-widget--fact-blocks .align-centered .fact-block-wrapper .widget-icon {
  display: inline-block;
  float: none;
  vertical-align: text-bottom;
}
.predefined-widget--fact-blocks .align-centered .fact-block-wrapper .widget-value {
  width: auto;
  display: inline-block;
}
/**
 * @file
 * This file exposes responsive design mixins.
 *
 *@TODO: Allow nesting media queries in other blocks. For 'inline' object responsive behavior.
 */
/**
 * Initialize placeholder mixins.
 */
/**
 * Render/print the mixins for the current file. The current file is the file in
 * which these responsive behavior mixins are included.
 */
@media (max-width: 51em) {
  .predefined-widget--fact-blocks .align-centered li {
    -ms-flex: 100%;
    -webkit-box-flex: 100%;
    flex: 100%;
  }
  .predefined-widget--fact-blocks .fact-block-wrapper {
    display: block;
  }
  .predefined-widget--fact-blocks .fact-blocks-wrapper {
    padding: 1.5rem 0 3rem;
  }
  .predefined-widget--fact-blocks .widget-description {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .predefined-widget--fact-blocks .overlay-wrapper h2 {
    padding-top: 2.125rem;
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
@media (max-width: 76em) {
  .predefined-widget--fact-blocks .fact-blocks-wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .predefined-widget--fact-blocks .fact-blocks-wrapper li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    min-width: 12em;
    margin-bottom: 1em;
    margin-top: 1em;
  }
}
@media (min-width: 76em) {
  .predefined-widget--fact-blocks .fact-blocks-wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .predefined-widget--fact-blocks .fact-blocks-wrapper li {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
  }
  .predefined-widget--fact-blocks .fact-blocks-wrapper li .widget-description {
    padding-left: 1.125rem;
    padding-right: 4.5rem;
  }
  .predefined-widget--fact-blocks .fact-blocks-wrapper li.last .widget-description {
    padding-right: 0;
    min-width: 11.25rem;
  }
}
/**
 * @file
 * Misc helpers and shortcuts
 */
/*
 * Border radius.
 *
 * @see: http://border-radius.com
 * @see: http://caniuse.com/#feat=border-radius
 * @see: http://www.w3.org/TR/css3-background/#corners
 */
/*
 * Box sizing.
 *
 * @see: http://caniuse.com/#feat=css3-boxsizing
 * @see: http://www.w3.org/TR/css3-ui/#box-sizing
 */
/*
 * User select.
 * @see: http://caniuse.com/#feat=user-select-none
 * @see: https://drafts.csswg.org/css-ui-4/#content-selection
 * @see: https://developer.mozilla.org/en-US/docs/Web/CSS/user-select
 *
 * NOTE: This feature is non-standard!
 */
/*
 * CSS Transitions.
 *
 * @see: http://caniuse.com/#feat=css-transitions
 * @see: https://drafts.csswg.org/css-transitions-1
 * @see: https://drafts.csswg.org/css-transitions-1/#animatable-css
 */
/*
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of 'table' rather than 'block' is only necessary if using
 *    ':before' to contain the top-margins of child elements.
 *
 * @see: http://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither
 * @see: http://nicolasgallagher.com/micro-clearfix-hack
 * @see: http://www.satzansatz.de/cssd/onhavinglayout.html
 * @see: http://quirksmode.org/css/css2/display.html
 */
/*
 * Generates text-removing properties for use in image replacement. Does not
 * specify the background image (or it's positioning) itself - this needs to be
 * specified manually (or use one of the sprite mixins, if appropriate):
 *
 * 1. Opera requires some special treatment (!important) in order for the color to be overridden.
 * 2. Webkit seems not to respect width:0 on submit buttons, but font:0 does the trick.
 *
 * @TODO: Needs work!!!
 *
 * @see: http://css-tricks.com/examples/ImageReplacement
 * @see: http://www.ampsoft.net/webdesign-l/image-button.html
 * @see: https://github.com/h5bp/html5-boilerplate/issues/1108
 * @see: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css
 */
/*
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 *
 * @see: DRUPAL .element-invisible {}
 */
/*
 * Apply single color to anchor tags.
 */
