/*
  This file contains all the base styling for sass files. Pulling in all the 
  necessary variables and mixins but does not actually output anything so is
  safe to use as a base for other css files without adding excessive weight
*/
/*********************
BREAKPOINTS
*********************/
/*
  screen-tiny: 321 - 320
  screen-xs: 480px - 767px
  screen-sm: 768px - 969px
  screen-md: 970px - 1199px
  screen-lg: 1200px
*/
/*********************
Placeholder
*********************/
/*********************
VENDOR PREFIX
*********************/
.breadcrumb {
  background: none;
  display: none;
  padding: 0;
}

@media screen and (min-width:768px) {
  .breadcrumb {
    display: block;
    padding-left: 30px;
  }
}

@media screen and (min-width:970px) {
  .breadcrumb {
    padding-top: 15px;
  }
}

@media screen and (min-width:1200px) {
  .breadcrumb {
    padding-left: 0;
  }
}

.breadcrumb li {
  font-family: "Roboto Condensed",sans-serif;
  font-weight: 300;
  font-size: 14px;
}

.breadcrumb li + li:before {
  content: ">\0000a0";
  color: #000;
}

.breadcrumb li a {
  color: #000;
  font-weight: 300;
}

.breadcrumb li.active,.breadcrumb li.active a,.breadcrumb li:last-child,.breadcrumb li:last-child a {
  color: #666;
}

@media screen and (min-width:1200px) {
  .xrx-hc-wide-layout .breadcrumb {
    padding-left: 30px;
  }
}
