.predefined-widget--value-chain .value-chain-list {
  font-weight: bold;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.predefined-widget--value-chain .value-chain-list > li {
  display: inline-block;
  padding: 1em 0;
}
.predefined-widget--value-chain .value-chain-list > li.first .title,
.predefined-widget--value-chain .value-chain-list > li.last .title {
  color: #7f7f7f;
}
.predefined-widget--value-chain .value-chain-list > li.first .icon,
.predefined-widget--value-chain .value-chain-list > li.last .icon {
  fill: #bbbbbb;
}
.predefined-widget--value-chain .value-chain-list > li.first {
  padding-right: 1.5rem;
}
.predefined-widget--value-chain .value-chain-list > li.last {
  padding-left: 1.5rem;
}
.predefined-widget--value-chain .value-chain-wrapper {
  margin: 0 0.75em;
  position: relative;
}
.predefined-widget--value-chain .value-chain-wrapper .arrow {
  position: absolute;
  right: -1.25em;
  top: 30%;
}
.predefined-widget--value-chain .value-chain-wrapper .arrow .icon {
  margin-top: -3em;
}
.predefined-widget--value-chain .value-chain-wrapper .chain-info {
  display: block;
  text-align: center;
  color: #132856;
}
.predefined-widget--value-chain .value-chain-wrapper .chain-info.active,
.predefined-widget--value-chain .value-chain-wrapper .chain-info:active {
  color: #f6a70a;
}
.predefined-widget--value-chain .value-chain-wrapper .chain-info:focus,
.predefined-widget--value-chain .value-chain-wrapper .chain-info:hover {
  color: #de9708;
}
.predefined-widget--value-chain .value-chain-wrapper .chain-info .icon {
  fill: #1bc2ee;
}
.predefined-widget--value-chain .value-chain-wrapper .chain-info:hover .icon {
  fill: #f6a70a;
}
.predefined-widget--value-chain .value-chain-wrapper .chain-info:hover .title {
  color: #f6a70a;
}
.predefined-widget--value-chain .value-chain-wrapper .title {
  margin: 1.5rem 0 0;
  padding: 0.5em 10%;
  font-size: 0.875rem;
  line-height: 1.3em;
  min-height: 4em;
}
/**
 * @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--value-chain .value-chain-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .predefined-widget--value-chain .value-chain-list > li {
    width: 10em;
    padding: 2em 0;
  }
  .predefined-widget--value-chain .value-chain-list > li.first {
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .predefined-widget--value-chain .value-chain-list > li.last {
    padding-left: 0;
    padding-bottom: 1.5rem;
  }
  .predefined-widget--value-chain .value-chain-wrapper .title {
    min-height: 0;
    margin: 1.25rem 0 0;
  }
  .predefined-widget--value-chain .value-chain-wrapper .arrow {
    position: absolute;
    right: calc(50% - 7px);
    top: calc(100% + 2rem);
    bottom: 0;
    height: 0;
    margin-left: -5.5em;
  }
  .predefined-widget--value-chain .value-chain-wrapper .arrow .icon {
    margin-top: 0;
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
  }
}
@media (min-width: 51em) and (max-width: 76em) {
  .predefined-widget--value-chain .value-chain-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .predefined-widget--value-chain .value-chain-list > li {
    width: 10em;
  }
}
@media (min-width: 76em) {
  .predefined-widget--value-chain .value-chain-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .predefined-widget--value-chain .value-chain-list > li {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
  }
}
/**
 * @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.
 */
