/* @group Breadcrumb Button */

.breadcrumb-button {
  margin-top: 0px;
  input[type="submit"] {
    text-shadow: none;
    border: 0px none;
    margin: 0;

    > .singlebutton > form > div {
      margin: 0;
    }
  }
}

/* @end */

/* @group Breadcrumb */

.breadcrumb-nav {
  width: 65%;
  margin: 0px;

  /* @group Breadcrumb Style None */
  ul.breadcrumb.style {
    background-color: transparent;
  }
  /* @end */


  /* @group Breadcrumb Style Fancy */

  ul.breadcrumb.style1 {
    display: block;
    padding: 0;
    float: left;
    height: 28px;
    width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: clip;
    margin-top: 0px;
    background: none;
    li {
      padding: 0 0 0 45px;
      position: relative;
      display: block;
      float: left;
      line-height: 28px;
      height: 28px;
      border-radius: 0px;
      text-shadow: none;
      a {
        text-decoration: none;
        padding-right: 3px;
        overflow: hidden;
      }
      a:hover {
        text-decoration: underline;
      }
      .dimmed_text {
        font-style: italic;
        color: #999;
      }
    }
    li:after {
      content: " ";
      display: block;
      width: 0;
      height: 0;
      border-top: 50px solid transparent; /* Go big on the size, and let overflow hide */
      border-bottom: 50px solid transparent;
      position: absolute;
      top: 50%;
      margin-top: -50px;
      left: 100%;
      z-index: 100;
      border-left-width: 30px;
      border-left-style: solid;
    }
    li:before {
      content: " ";
      display: block;
      width: 0;
      height: 0;
      border-top: 50px solid transparent;
      border-bottom: 50px solid transparent;
      position: absolute;
      top: 50%;
      margin-top: -50px;
      left: 100%;
      z-index: 100;
      border-left: 30px solid white;
      margin-left: 1px;
    }
    li:first-of-type {
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px;
      a {
        margin-left: -25px;
      }
      a:before {
        display: inline-block;
        font-family: FontAwesome;
        content: "\f015 ";
        margin-right: 5px;
        text-decoration: none;
      }
    }
    .last:before,
    .last:after,
    li:last-of-type:before,
    li:last-of-type:after {
      content: '';
      display: none;
    }
    .last,
    li:last-of-type {
      padding-right: 10px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
    }
    li:hover {
      .dimmed_text {
        text-decoration: none;
        color: #999;
      }
    }
  }

  /* @end */

  /* @group Breadcrumb Style Simple */

  ul.breadcrumb.style2 {
    width: 100%;
    padding: 0px;
    display: block;
    background: transparent;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: clip;
    li {
      display: block;
      height: 20px;
      float: left;
      padding: 2px;
      border-radius: 0px;
      text-shadow: none;
      a {
        margin-right: 3px;
      }
    }
    li:first-of-type {
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px;
      a {
        padding-left: 5px;
      }
    }
    li:after {
      font-family: FontAwesome;
      /*@replace: "\f137"*/ content: "\f138";
      padding: 5px;
      line-height: 20px;
      vertical-align: top;
    }
    li:last-child:after {
      content: "";
      padding-right: 5px;
    }
    li:last-of-type {
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
    }
  }

  /* @end */

  /* @group Breadcrumb Style Thin */

  ul.breadcrumb.style3 {
    width: 100%;
    display: block;
    background: transparent;
    padding: 0px;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: clip;
    height: 12px;
    li {
      line-height: 12px;
      display: block;
      float: left;
      text-transform: uppercase;
      font-size: 12px;
      background: transparent;
    }
    li:after {
      font-family: FontAwesome;
      content: "\f105";
      padding: 2px;
      vertical-align: top;
    }
    li:last-child:after {
      content: "";
    }
  }

  /* @end */
}

/* @end */