.board-decisions .view-board-decisions .view-content .views-table {
  min-width: 700px;
  width: 100%;
  margin: 0;
}
.board-decisions .view-board-decisions .view-content .views-table .views-field-field-bd-number,
.board-decisions .view-board-decisions .view-content .views-table .views-field-created {
  white-space: nowrap;
  width: 1%;
}
.pane-board-decision-info {
  margin-bottom: 1em;
}
.pane-board-decision-info .top-info .upper {
  margin-left: -0.5em;
  margin-right: -0.5em;
  padding: 1em 0.5em;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pane-board-decision-info .top-info .upper .right {
  height: 40px;
}
.pane-board-decision-info .top-info .upper .prev,
.pane-board-decision-info .top-info .upper .next {
  width: 40px;
  height: 40px;
  display: inline-block;
}
.pane-board-decision-info .top-info .upper .prev .link,
.pane-board-decision-info .top-info .upper .next .link {
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
.pane-board-decision-info .top-info .upper .prev .link:hover,
.pane-board-decision-info .top-info .upper .next .link:hover {
  opacity: 0.6;
}
.pane-board-decision-info .top-info .upper .prev .link {
  background-image: url(/sites/all/themes/eiti/images/icons/angle-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pane-board-decision-info .top-info .upper .prev + .next {
  margin-left: 0.5em;
}
.pane-board-decision-info .top-info .upper .next .link {
  background-image: url(/sites/all/themes/eiti/images/icons/angle-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pane-board-decision-info .top-info .lower {
  margin-top: 1.5em;
}
.pane-board-decision-info .bottom-info {
  margin-top: 1em;
  margin-bottom: 1em;
}
.pane-board-decision-info .bottom-info .label {
  font-weight: bold;
  margin-right: 4px;
}
.pane-board-decision-info .board-decision .title {
  color: #132856;
  display: block;
  font-weight: 300;
  margin: 0;
  border-bottom: 1px solid #d3d3d3;
  padding: 1rem 0;
  position: relative;
  font-size: 1.875rem;
  line-height: 2.5rem;
}
.pane-board-decision-info .validation {
  margin-bottom: 1em;
}
.pane-board-decision-info .validation a {
  display: inline-block;
  padding-left: 20px;
  background: url(/modules/file/icons/application-pdf.png) no-repeat 0 center;
}
.pane-board-decision-info .link-items {
  margin-bottom: 1em;
}
.pane-board-decision-info .link-items .label {
  color: white;
  background: #0076AF;
  padding: 1em;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  font-weight: bold;
}
.pane-board-decision-info .link-items .label:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url(/sites/all/themes/eiti/images/icons/angle-down-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}
.pane-board-decision-info .link-items .label.open {
  background: #676767;
}
.pane-board-decision-info .link-items .label.open:after {
  background-image: url(/sites/all/themes/eiti/images/icons/angle-up-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pane-board-decision-info .link-items .label:hover {
  background: #676767;
}
.pane-board-decision-info .link-items .field-items {
  display: none;
  padding: 1em;
  background: #f9f9f9;
}
.pane-validation-decision .pane-title-wrapper {
  border-bottom: 1px solid #d3d3d3;
  color: #0093cf;
  padding: 1rem 0;
  position: relative;
}
/**
 * @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) {
  .pane-board-decision-info .top-info .upper {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 76em) {
  .pane-board-decision-info .board-decision .title {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}
/**
 * @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.
 */
