* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: 'NN Dagny Display';
  src: url("../../fonts/nn-dagny/NNDagnyDisplayWebPro.eot");
  src: url("../../fonts/nn-dagny/NNDagnyDisplayWebPro.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NN Dagny Text';
  src: url("../../fonts/nn-dagny/NNDagnyTextWeb.eot");
  src: url("../../fonts/nn-dagny/NNDagnyTextWeb.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be collapsible details that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.hidden {
  display: none;
}

/**
 * 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.
 * "!important" is used to prevent unintentional overrides.
 */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
}

/**
 * The .focusable class extends the .visually-hidden class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
  width: auto;
}

/**
 * Hide visually and from screen-readers, but maintain layout.
 */
.invisible {
  visibility: hidden;
}

/**
 * Float clearing.
 *
 * Based on the micro clearfix hack by Nicolas Gallagher, with the :before
 * pseudo selector removed to allow normal top margin collapse.
 *
 * @see http://nicolasgallagher.com/micro-clearfix-hack
 */
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

h1[id] {
  margin-top: 0;
  padding-top: 20px;
}

.index .divider {
  margin: 50px 0;
}
.index .divider a {
  color: #ea650d;
  display: block;
  float: right;
  margin-top: -80px;
}
@media (min-width: 768px) {
  .index .divider a {
    margin-top: -30px;
  }
}

.index-example div [class^="col-"],
.index-example div [class*=" col-"] {
  background-color: #ee7f00;
  padding: 10px;
}

xmp {
  font-size: 13px;
  display: block;
  background-color: #f1edeb;
  border: 1px solid #e5ded9;
  padding: 10px;
  margin-bottom: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  width: 100%;
  overflow: auto;
  clear: both;
}
@media (min-width: 768px) {
  xmp {
    width: 700px;
  }
}
@media (min-width: 960px) {
  xmp {
    width: 940px;
  }
}

main .row {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5ded9 !important;
}
@media (min-width: 768px) {
  main .row {
    border-bottom: none !important;
    padding-bottom: 0;
  }
}
