.minimalistic-wrapper {
  background-color: #ffffff;
  min-height: 3em;
}
.minimalistic-wrapper.minimalistic-header {
  display: flex;
  justify-content: space-between;
}
.minimalistic-wrapper .header-element {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 20%;
  padding: 0 15px;
}
.minimalistic-wrapper .minimalistic-logo-link {
  display: inline-block;
  width: 7em;
}
.minimalistic-wrapper .minimalistic-page-title {
  font-size: 1.25em;
  line-height: 1.5em;
  width: 65%;
}
.minimalistic-wrapper .header-items {
  margin: 0;
  float: none;
  z-index: 10;
  width: 14%;
}
.minimalistic-wrapper .header-items > nav,
.minimalistic-wrapper .header-items > .header-close-action,
.minimalistic-wrapper .header-items > .header-show-action {
  display: inline-block;
  float: none;
}
.minimalistic-wrapper .header-items .header-close-action,
.minimalistic-wrapper .header-items .header-show-action {
  margin-left: 1em;
  font-size: 0.8em;
}
.minimalistic-wrapper.minimalistic-footer {
  padding: 0 0;
  min-height: 0;
  display: none;
}
.minimalistic-wrapper.minimalistic-footer .single-fluid-row-wrapper {
  position: relative;
  background: inherit;
}
.minimalistic-wrapper.minimalistic-footer .footer-description {
  width: 60%;
  display: inline-block;
  font-size: 0.8em;
}
.minimalistic-wrapper.minimalistic-footer .footer-references {
  width: 35%;
  margin-left: 5%;
  display: inline-block;
  font-size: 0.8em;
  vertical-align: top;
}
.minimalistic-wrapper.minimalistic-footer .footer-close-action,
.minimalistic-wrapper.minimalistic-footer .footer-show-action {
  font-size: 0.8em;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  background: inherit;
  padding: 5px 10px 10px;
  right: 0;
  top: -25px;
}
.minimalistic-wrapper.minimalistic-footer.no-closing-button {
  display: block;
}
.minimalistic-wrapper.close-bottom-position .footer-close-action,
.minimalistic-wrapper.close-bottom-position .footer-show-action {
  padding: 10px 10px 5px;
  right: 0;
  bottom: -25px;
  top: initial;
  z-index: 100;
}
/**
 * @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) {
  .minimalistic-wrapper {
    text-align: center;
  }
  .minimalistic-wrapper.minimalistic-header {
    display: block;
  }
  .minimalistic-wrapper .header-element {
    display: block;
    width: auto;
  }
  .minimalistic-wrapper .logo-wrapper {
    padding-top: 15px;
  }
  .minimalistic-wrapper .header-items {
    display: block;
    text-align: center;
  }
}
@media (min-width: 51em) and (max-width: 76em) {
  .minimalistic-wrapper .minimalistic-page-title {
    width: 59%;
  }
  .minimalistic-wrapper .header-items {
    width: 20%;
  }
}
/**
 * @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.
 */
