/* indigo_design_system v0.2.0 */
/* Batch grid wrapper */
.batch-g {
  -ms-flex-align: stretch;
      align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start; }

/* Batch grid modifiers */
.batch-g--border > [class^='batch-c'] {
  border: 1px solid #666666; }

.batch-g--gutter {
  margin: 0 -8px; }

.batch-g--padding > [class^='batch-c'] {
  padding: 5px; }

.batch-g--padding-horizontal > [class^='batch-c'] {
  padding-left: 5px;
  padding-right: 5px; }

.batch-g--padding-vertical > [class^='batch-c'] {
  padding-bottom: 5px;
  padding-top: 5px; }

.batch-g--reverse {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }

.batch-g--valign-top {
  -ms-flex-align: start;
      align-items: flex-start; }

.batch-g--valign-center {
  -ms-flex-align: center;
      align-items: center; }

.batch-g--valign-bottom {
  -ms-flex-align: end;
      align-items: flex-end; }

.batch-g--align-center {
  -ms-flex-pack: center;
      justify-content: center; }

.batch-g--align-right {
  -ms-flex-pack: end;
      justify-content: flex-end; }

/* Batch grid cells */
[class^='batch-c'] {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto; }

/* Base cells */
.batch-c-1-1 {
  width: 100%; }
  .batch-g--gutter > .batch-c-1-1 {
    margin: 0 8px;
    width: calc(100% - 16px); }

.batch-c-1-2 {
  width: 50%; }
  .batch-g--gutter > .batch-c-1-2 {
    margin: 0 8px;
    width: calc(50% - 16px); }

.batch-c-1-3 {
  width: 33.33333%; }
  .batch-g--gutter > .batch-c-1-3 {
    margin: 0 8px;
    width: calc(33.33333% - 16px); }

.batch-c-1-4 {
  width: 25%; }
  .batch-g--gutter > .batch-c-1-4 {
    margin: 0 8px;
    width: calc(25% - 16px); }

.batch-c-1-6 {
  width: 16.66667%; }
  .batch-g--gutter > .batch-c-1-6 {
    margin: 0 8px;
    width: calc(16.66667% - 16px); }

.batch-c-1-8 {
  width: 12.5%; }
  .batch-g--gutter > .batch-c-1-8 {
    margin: 0 8px;
    width: calc(12.5% - 16px); }

.batch-c-1-12 {
  width: 8.33333%; }
  .batch-g--gutter > .batch-c-1-12 {
    margin: 0 8px;
    width: calc(8.33333% - 16px); }

.batch-c-1-24 {
  width: 4.16667%; }
  .batch-g--gutter > .batch-c-1-24 {
    margin: 0 8px;
    width: calc(4.16667% - 16px); }

.batch-c-2-3 {
  width: 66.66667%; }
  .batch-g--gutter > .batch-c-2-3 {
    margin: 0 8px;
    width: calc(66.66667% - 16px); }

.batch-c-3-4 {
  width: 75%; }
  .batch-g--gutter > .batch-c-3-4 {
    margin: 0 8px;
    width: calc(75% - 16px); }

.batch-c-3-8 {
  width: 37.5%; }
  .batch-g--gutter > .batch-c-3-8 {
    margin: 0 8px;
    width: calc(37.5% - 16px); }

.batch-c-5-6 {
  width: 83.33333%; }
  .batch-g--gutter > .batch-c-5-6 {
    margin: 0 8px;
    width: calc(83.33333% - 16px); }

.batch-c-5-8 {
  width: 62.5%; }
  .batch-g--gutter > .batch-c-5-8 {
    margin: 0 8px;
    width: calc(62.5% - 16px); }

.batch-c-5-12 {
  width: 41.66667%; }
  .batch-g--gutter > .batch-c-5-12 {
    margin: 0 8px;
    width: calc(41.66667% - 16px); }

.batch-c-7-8 {
  width: 87.5%; }
  .batch-g--gutter > .batch-c-7-8 {
    margin: 0 8px;
    width: calc(87.5% - 16px); }

.batch-c-7-12 {
  width: 58.33333%; }
  .batch-g--gutter > .batch-c-7-12 {
    margin: 0 8px;
    width: calc(58.33333% - 16px); }

.batch-c-11-12 {
  width: 91.66667%; }
  .batch-g--gutter > .batch-c-11-12 {
    margin: 0 8px;
    width: calc(91.66667% - 16px); }

/* Medium screen cells */
/* Large screen cells */
/* Medium screen cell ordering */
/* Large screen cell ordering */
/* Batch cell modifiers */
.batch-c--valign-self-top {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.batch-c--valign-self-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end; }

.batch-c--valign-self-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }

.indi-code-snippet {
  font-family: "Source Sans Pro", sans-serif; }

.indi-code-snippet--inline-block {
  display: inline-block; }

.indi-code-snippet__actions {
  background-color: #F7F7F7;
  min-height: 40px;
  position: relative; }

.indi-code-snippet__label {
  left: 16px;
  position: absolute;
  text-transform: uppercase;
  top: 10px; }

.indi-code-snippet__copy {
  color: #006FF4;
  position: absolute;
  right: 16px;
  text-decoration: none;
  top: 10px; }
  .indi-code-snippet__copy:hover {
    color: #004AD4; }
  .indi-code-snippet__copy .indi-icon {
    vertical-align: middle; }

@keyframes showcopiedmessage {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.indi-code-snippet__copied-response {
  background-color: #262626;
  border-radius: 4px;
  color: #FFFFFF;
  left: 45px;
  opacity: 0;
  padding: 4px 8px 4px 8px;
  position: absolute;
  top: calc(100% + 6px); }
  .indi-code-snippet__copy--clicked .indi-code-snippet__copied-response {
    animation: .3s showcopiedmessage 3s forwards;
    opacity: 1; }
  .indi-code-snippet__copied-response::after {
    border-bottom: 6px solid #262626;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: '';
    display: block;
    left: calc(50% - 6px);
    position: absolute;
    top: -6px; }

.indi-code-snippet__source {
  border-radius: 2px;
  font-size: 14px;
  overflow: hidden; }

.indi-code-snippet__pre[class*='language'] {
  margin: 0;
  padding: 16px 16px 16px 16px; }

.indi-html-example {
  margin-bottom: 64px; }

.indi-html-example__identifier {
  margin: 0 0 8px; }

.indi-html-example__identifier__label {
  color: #9E9E9E;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px; }

.indi-html-example__identifier__name {
  color: #404040;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  margin: 0; }

.indi-html-example__text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px; }

.indi-html-example__pair {
  border: solid 1px #DDDCDC;
  margin: 0; }

.indi-html-example__component {
  padding: 32px 16px; }

.indi-html-example__code {
  margin: 0; }

.indi-badge {
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  color: #9E9E9E;
  font-size: 12px;
  font-weight: 400;
  padding: 0 4px;
  vertical-align: middle; }

.indi-badge--default {
  background-color: #E0E0E0;
  border-color: #262626;
  color: #262626; }

.indi-badge--info {
  background-color: #D9EBFF;
  border-color: #262626;
  color: #262626; }

.indi-badge--success {
  background-color: #B5BD00;
  border-color: #B5BD00;
  color: #B5BD00; }

.indi-badge--warning {
  background-color: #FFFDBB;
  border-color: #262626;
  color: #262626; }

.indi-badge--error {
  background-color: #FFDD96;
  border-color: #EE1B32;
  color: #EE1B32; }

.indi-side-nav {
  color: #404040;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 1;
  list-style: none;
  margin: 0 0 16px 0;
  max-width: 205px;
  padding: 0; }

.indi-side-nav__label {
  display: block;
  font-size: 16px;
  padding: 12px 0; }

.indi-side-nav__label--link {
  color: #006FF4;
  text-decoration: none; }
  .indi-side-nav__label--link:hover {
    color: #004AD4; }

.indi-side-nav__label--link--is-active {
  background-color: #F7F7F7;
  border-left: 13px solid #B5BD00;
  cursor: default;
  margin-left: -22px;
  padding-left: 8px; }
  @media screen and (min-width: 1230px) {
    .indi-side-nav__label--link--is-active {
      margin-left: -40px;
      padding-left: 26px; } }
  .indi-side-nav__label--link--is-active:hover {
    color: #006FF4; }

.indi-side-nav__label--heading {
  font-size: 20px; }

.indi-doc-color-swatch {
  color: #404040;
  font-family: "Source Sans Pro", sans-serif; }

.indi-doc-color-swatch__item {
  border: solid 1px #DDDCDC;
  margin: 0 0 32px 0; }

.indi-doc-color-swatch__sample {
  border-bottom: solid 1px #DDDCDC;
  height: 50px; }

.indi-doc-color-swatch__meta-list {
  list-style: none;
  margin: 0;
  padding: 8px 8px 8px 8px; }

.indi-doc-color-swatch__meta-item {
  padding: 0 0 8px 0; }
