@charset "UTF-8";
/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: auto;
  color: black; }

/* PADDING */
.CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */ }

.CodeMirror pre {
  padding: 0 4px;
  /* Horizontal padding of content */ }

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */ }

/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap; }

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap; }

.CodeMirror-guttermarker {
  color: black; }

.CodeMirror-guttermarker-subtle {
  color: #999; }

/* CURSOR */
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0; }

/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver; }

.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0;
  background: #7e7; }

.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1; }

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7; }

@keyframes blink {
  0% { }
  50% {
    background-color: transparent; }
  100% { } }

/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit; }

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  position: absolute; }

/* DEFAULT THEME */
.cm-s-default .cm-header {
  color: blue; }

.cm-s-default .cm-quote {
  color: #090; }

.cm-negative {
  color: #d44; }

.cm-positive {
  color: #292; }

.cm-header, .cm-strong {
  font-weight: bold; }

.cm-em {
  font-style: italic; }

.cm-link {
  text-decoration: underline; }

.cm-strikethrough {
  text-decoration: line-through; }

.cm-s-default .cm-keyword {
  color: #708; }

.cm-s-default .cm-atom {
  color: #219; }

.cm-s-default .cm-number {
  color: #164; }

.cm-s-default .cm-def {
  color: #00f; }

.cm-s-default .cm-variable-2 {
  color: #05a; }

.cm-s-default .cm-variable-3 {
  color: #085; }

.cm-s-default .cm-comment {
  color: #a50; }

.cm-s-default .cm-string {
  color: #a11; }

.cm-s-default .cm-string-2 {
  color: #f50; }

.cm-s-default .cm-meta {
  color: #555; }

.cm-s-default .cm-qualifier {
  color: #555; }

.cm-s-default .cm-builtin {
  color: #30a; }

.cm-s-default .cm-bracket {
  color: #997; }

.cm-s-default .cm-tag {
  color: #170; }

.cm-s-default .cm-attribute {
  color: #00c; }

.cm-s-default .cm-hr {
  color: #999; }

.cm-s-default .cm-link {
  color: #00c; }

.cm-s-default .cm-error {
  color: #f00; }

.cm-invalidchar {
  color: #f00; }

.CodeMirror-composing {
  border-bottom: 2px solid; }

/* MONOKAI THEME (Dark UI) */
.cm-s-monokai.CodeMirror {
  background: #272822;
  color: #f8f8f2; }

.cm-s-monokai div.CodeMirror-selected {
  background: #49483E; }

.cm-s-monokai .CodeMirror-line::selection, .cm-s-monokai .CodeMirror-line > span::selection, .cm-s-monokai .CodeMirror-line > span > span::selection {
  background: rgba(73, 72, 62, 0.99); }

.cm-s-monokai .CodeMirror-line::-moz-selection, .cm-s-monokai .CodeMirror-line > span::-moz-selection, .cm-s-monokai .CodeMirror-line > span > span::-moz-selection {
  background: rgba(73, 72, 62, 0.99); }

.cm-s-monokai .CodeMirror-gutters {
  background: #272822;
  border-right: 0px; }

.cm-s-monokai .CodeMirror-guttermarker {
  color: white; }

.cm-s-monokai .CodeMirror-guttermarker-subtle {
  color: #d0d0d0; }

.cm-s-monokai .CodeMirror-linenumber {
  color: #d0d0d0; }

.cm-s-monokai .CodeMirror-cursor {
  border-left: 1px solid #f8f8f0; }

.cm-s-monokai span.cm-comment {
  color: #75715e; }

.cm-s-monokai span.cm-atom {
  color: #ae81ff; }

.cm-s-monokai span.cm-number {
  color: #ae81ff; }

.cm-s-monokai span.cm-property, .cm-s-monokai span.cm-attribute {
  color: #a6e22e; }

.cm-s-monokai span.cm-keyword {
  color: #f92672; }

.cm-s-monokai span.cm-builtin {
  color: #66d9ef; }

.cm-s-monokai span.cm-string {
  color: #e6db74; }

.cm-s-monokai span.cm-variable {
  color: #f8f8f2; }

.cm-s-monokai span.cm-variable-2 {
  color: #9effff; }

.cm-s-monokai span.cm-variable-3 {
  color: #66d9ef; }

.cm-s-monokai span.cm-def {
  color: #fd971f; }

.cm-s-monokai span.cm-bracket {
  color: #f8f8f2; }

.cm-s-monokai span.cm-tag {
  color: #f92672; }

.cm-s-monokai span.cm-header {
  color: #ae81ff; }

.cm-s-monokai span.cm-link {
  color: #ae81ff; }

.cm-s-monokai span.cm-error {
  background: #f92672;
  color: #f8f8f0; }

.cm-s-monokai .CodeMirror-activeline-background {
  background: #373831; }

.cm-s-monokai .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: white !important; }

/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0; }

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22; }

.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3); }

.CodeMirror-activeline-background {
  background: #e8f2ff; }

/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white; }

.CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative; }

.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent; }

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actuall scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none; }

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll; }

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll; }

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0; }

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0; }

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3; }

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom: 1;
  *display: inline; }

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important; }

.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4; }

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4; }

.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */ }

.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent; }

.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal; }

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto; }

.CodeMirror-code {
  outline: none; }

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  box-sizing: content-box; }

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden; }

.CodeMirror-cursor {
  position: absolute; }

.CodeMirror-measure pre {
  position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3; }

div.CodeMirror-dragcursors {
  visibility: visible; }

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible; }

.CodeMirror-selected {
  background: #d9d9d9; }

.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0; }

.CodeMirror-crosshair {
  cursor: crosshair; }

.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
  background: #d7d4f0; }

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4); }

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span {
  *vertical-align: text-bottom; }

/* Used to force a border model for a node */
.cm-force-border {
  padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden; } }

/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none; }

html.br-styleguide {
  height: 100%; }

html.br-styleguide body {
  height: 100%;
  overflow: visible !important;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #FFF; }
  @media (min-width: 800px) {
    html.br-styleguide body {
      overflow: hidden; } }

html.br-styleguide--dark body {
  background: #333;
  color: #ddd; }

.br-styleguide *,
.br-styleguide *:before,
.br-styleguide *:after {
  box-sizing: border-box; }

.br-styleguide-container {
  height: 100%; }

.br-styleguide-navigation-holder {
  line-height: 1.5;
  padding: 40px 20px; }
  .br-styleguide-navigation-holder a {
    color: inherit; }
  @media (min-width: 800px) {
    .br-styleguide-navigation-holder {
      height: 100%;
      width: 20%;
      float: left;
      overflow: auto;
      -webkit-overflow-scrolling: touch; } }

.br-styleguide-content {
  background: #FFF;
  padding: 40px; }
  .br-styleguide--dark .br-styleguide-content {
    background: #333; }
  @media (min-width: 800px) {
    .br-styleguide-content {
      height: 100%;
      width: 80%;
      float: left;
      overflow: auto;
      -webkit-overflow-scrolling: touch; } }

/* Additions to styleguide
   To make component code copy/pastable but still have ability to display elements
   that are hidden by defaults or positioned by default in styleguide
   ========================================================================== */
.br-styleguide-container .navbar-fixed-top {
  position: static; }

/* Some typographical fixes
   ========================================================================== */
.br-componentgroup-header,
.br-documentation-header {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px; }
  .br-styleguide--dark .br-componentgroup-header, .br-styleguide--dark
  .br-documentation-header {
    color: #FFF; }

/* ==========================================================================
  br-prototype-nav
   ========================================================================== */
/* Variables
   ========================================================================== */
/* Sidebar
   ========================================================================== */
html.br-styleguide,
.br-styleguide body {
  margin: 0; }

html.br-prototype-nav-is-open {
  position: relative;
  left: 250px;
  width: calc(100% - 250px); }

.br-prototype-nav {
  background-color: #FFF;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  line-height: 1.5;
  z-index: 2000;
  transform: translateX(-100%);
  width: 250px;
  overflow: hidden;
  font-size: 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  .br-prototype-nav .br-prototype-nav-inner {
    padding: 20px;
    overflow: hidden;
    overflow-y: auto; }
  .br-prototype-nav.br-prototype-nav-open {
    transform: translateX(0);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3); }

.br-prototype-nav-text {
  margin: 0;
  padding: 0 0 6px;
  color: rgba(0, 0, 0, 0.5); }
  .br-prototype-nav--dark .br-prototype-nav-text {
    color: rgba(255, 255, 255, 0.5); }

/* Headings (both on index page and in sidebar)
   ========================================================================== */
.br-prototype-nav-main-heading {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  padding: 0 0 6px; }

.br-prototype-nav-sub-heading {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  padding: 0 0 6px; }

/* Dark Bedrock UI variant
   ========================================================================== */
.br-prototype-nav--dark {
  background-color: #333;
  color: #ddd; }
  .br-prototype-nav--dark .br-prototype-nav-main-heading {
    color: #FFF; }
  .br-prototype-nav--dark a {
    color: inherit; }
  .br-prototype-nav--dark .br-tree-dir-state-count {
    text-align: center;
    background-color: #555;
    color: #FFF; }

/* Index page
   ========================================================================== */
.br-prototype-nav-index {
  padding: 20px; }

.br-prototype-nav-index-cols {
  column-count: 3; }
  .br-prototype-nav-index-cols li {
    break-inside: avoid; }

/* Page states
   ========================================================================== */
.br-prototype-page-states {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  margin-top: auto;
  padding: 20px; }

.br-tree-dir-state-count {
  float: right;
  padding: 0 4px;
  border-radius: 3px;
  background-color: #eee;
  font-size: 12px; }

/* Color swatches 
   ========================================================================== */
.br-color-swatch-list {
  list-style-type: none;
  padding: 0; }

.br-color-swatch-item {
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  text-align: center; }

.br-color-swatch-preview {
  width: 80px;
  height: 50px;
  margin-bottom: 5px;
  display: inline-block; }

.br-color-swatch-data {
  color: #888;
  font-size: 11px; }

/* br-component
   ========================================================================== */
.br-component-header {
  font-size: 24px;
  font-weight: 700; }

/* br-sample
   ========================================================================== */
.br-sample-clearfix:before,
.br-sample-clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.br-sample-clearfix:after {
  clear: both; }

.br-sample-btn {
  background: #FFF;
  border: 1px solid #CDCDCD;
  display: inline-block;
  padding: 5px 8px;
  border-radius: 4px;
  margin: 0 0 10px;
  font-size: 12px; }
  .br-sample-btn:hover {
    background: #FFF; }

.br-sample-footer {
  position: relative; }

.br-sample-copy-code-btn {
  position: absolute;
  z-index: 3;
  top: 55px;
  right: 10px;
  display: none; }
  .br-sample-code:hover .br-sample-copy-code-btn {
    display: block; }

.br-sample-markup {
  font-size: 11px;
  background: #EEE;
  border: 1px solid #DDD;
  padding: 10px;
  position: relative; }
  .br-sample-markup .CodeMirror {
    background: transparent; }

.br-sample-content {
  background: #FFF;
  padding: 30px;
  border: 1px solid #DDD;
  margin: 0 0 10px;
  position: relative;
  overflow: hidden;
  resize: vertical; }

.br-sample-content-is-layout {
  min-height: 500px; }

.br-sample-header .br-sample-header-link {
  float: right;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  margin: 10px 0;
  padding: 0 2px 0 0; }
  .br-styleguide--dark .br-sample-header .br-sample-header-link {
    color: rgba(255, 255, 255, 0.45); }

.br-sample-documentation {
  padding: 0 0 1.2rem;
  line-height: 2.4rem; }
  .br-sample-documentation p {
    line-height: 2.4rem; }
  .br-sample-documentation ol,
  .br-sample-documentation ul {
    counter-reset: list;
    padding-left: 2.4rem; }
  .br-sample-documentation li {
    position: relative; }
  .br-sample-documentation ol li:before {
    counter-increment: list;
    content: counter(list) ".";
    left: -2rem;
    position: absolute; }
  .br-sample-documentation ul li:before {
    content: '•';
    left: -1.6rem;
    position: absolute; }
  .br-sample-documentation p + p,
  .br-sample-documentation ul + ul,
  .br-sample-documentation ol + ol,
  .br-sample-documentation p + ul,
  .br-sample-documentation p + ol,
  .br-sample-documentation ul + p,
  .br-sample-documentation ul + ol,
  .br-sample-documentation ol + p,
  .br-sample-documentation ol + ul {
    margin-top: 1.6rem; }

.br-sample-header .br-sample-heading {
  float: left;
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0;
  padding: 0;
  color: #000; }
  .br-styleguide--dark .br-sample-header .br-sample-heading {
    color: #FFF; }

#icon-docs .br-sample-content {
  column-count: 4; }
  #icon-docs .br-sample-content > div {
    display: -ms-flexbox;
    display: flex; }
    #icon-docs .br-sample-content > div .svg-icon, #icon-docs .br-sample-content > div .o-svg-icon {
      -ms-flex-preferred-size: 20%;
          flex-basis: 20%; }
    #icon-docs .br-sample-content > div code {
      -ms-flex-preferred-size: 80%;
          flex-basis: 80%; }

/* Sample in dark Bedrock UI variant
   ========================================================================== */
html.br-styleguide--dark body .br-sample-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFF; }
  html.br-styleguide--dark body .br-sample-btn:hover {
    background: rgba(255, 255, 255, 0.3); }

html.br-styleguide--dark body .br-sample-markup {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2); }

html.br-styleguide--dark body .br-sample-content {
  background: #333;
  border-color: rgba(255, 255, 255, 0.2); }

.br-styleguide--dark .br-styleguide-container code {
  background: rgba(255, 255, 255, 0.2); }

/* ==========================================================================
  br-bordered-list
   ========================================================================== */
/* ==========================================================================
  Variables
   ========================================================================== */
/* Bordered list
   ========================================================================== */
.br-bordered-list-title {
  font-weight: 700;
  padding: 0;
  margin: 0 0 12px;
  font-size: 15px;
  padding: 2px; }

.br-tree-dir-title {
  margin: 0;
  font-size: 13px;
  padding: 4px 2px; }

.br-bordered-list {
  margin: 0;
  padding: 0 0 10px; }
  .br-bordered-list ul {
    padding: 0 0 0 10px; }
  .br-bordered-list li {
    display: block; }
    .br-bordered-list li a,
    .br-bordered-list li span.br-bordered-list-label {
      padding: 2px;
      font-size: 13px;
      display: block; }
    .br-bordered-list li a {
      text-decoration: none;
      border-bottom: 1px solid #DDD; }
      .br-prototype-nav--dark .br-bordered-list li a,
      .br-styleguide--dark .br-bordered-list li a {
        border-color: rgba(255, 255, 255, 0.2); }
    .br-bordered-list li a:hover {
      background: rgba(0, 0, 0, 0.1); }
      .br-prototype-nav--dark .br-bordered-list li a:hover,
      .br-styleguide--dark .br-bordered-list li a:hover {
        background: rgba(255, 255, 255, 0.1); }
    .br-bordered-list li a.br-bordered-list__link--active {
      background: rgba(0, 0, 0, 0.15); }
      .br-prototype-nav--dark .br-bordered-list li a.br-bordered-list__link--active,
      .br-styleguide--dark .br-bordered-list li a.br-bordered-list__link--active {
        background: rgba(255, 255, 255, 0.15); }

/* ==========================================================================
  br-content
  Meant to style areas with basic typography
  Be careful to only apply to content areas, as a separate div
   ========================================================================== */
.br-content {
  line-height: 1.5; }
  .br-content p {
    padding: 0 0 12px; }
  .br-content h1, .br-content h2, .br-content h3, .br-content h4 {
    margin: 0;
    padding: 0; }
  .br-content h1 {
    padding: 0 0 10px; }
  .br-content h2 {
    font-size: 24px;
    font-weight: 700;
    padding: 0 0 10px; }
  .br-content h3 {
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 10px; }
  .br-content h4 {
    padding: 0 0 10px;
    font-weight: 700; }
  .br-content ul, .br-content ol {
    padding: 0 0 10px 20px; }
  .br-content code {
    font-family: monospace; }

/* Expanded/collapsed states for directories
   Only in side navigation
   ========================================================================== */
.br-prototype-nav .br-bordered-list ul {
  padding: 0 0 0 18px; }

.br-prototype-nav .br-tree-dir .br-tree-dir-title {
  cursor: default;
  font-weight: 400; }
  .br-prototype-nav .br-tree-dir .br-tree-dir-title:before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    text-align: center;
    border: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #999;
    margin-left: 2px;
    margin-right: 4px;
    position: relative;
    top: -3px; }

.br-prototype-nav .br-tree-dir--is-collapsed * {
  display: none; }

.br-prototype-nav .br-tree-dir--is-collapsed > .br-tree-dir-title {
  display: block; }
  .br-prototype-nav .br-tree-dir--is-collapsed > .br-tree-dir-title:before {
    border: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #999;
    margin-left: 3.5px;
    margin-right: 6.5px;
    top: 0; }

.br-typography-overview th, .br-typography-overview td {
  vertical-align: top; }

.br-typography-overview tr td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.br-typography-overview td {
  padding: 10px 0; }

.br-typography-overview td:first-child {
  opacity: 0.5;
  font-size: 11px;
  padding-right: 40px;
  min-width: 200px; }

pre.br-typography-sample-code {
  padding: 0;
  background: transparent;
  border: 0;
  color: #999;
  white-space: pre-wrap; }
  .br-styleguide--dark pre.br-typography-sample-code {
    color: rgba(255, 255, 255, 0.5); }

.br-svg-icon {
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 3px; }

.br-svg-icon-sm svg {
  width: 12px; }

/*# sourceMappingURL=prototype.css.map */
