/*! , Compiled at 2025-09-26 10:40:09 */
/**
 * Rheinhessen Portal 2014
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2014 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage breadcrumb
 * @author     gueldner
 * @since      07.09.2022
 * @version    $Id$
 **/
/*  =========================================================
basic structure
========================================================== */
/*  =========================================================
basic structure
========================================================== */
.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 17px 0 0 0;
  row-gap: 10px;
  text-align: left;
}
.breadcrumb__item {
  color: #595959;
  display: inline-block;
  font: 400 normal 14px/16px Arial, sans-serif;
  margin-right: 15px;
  position: relative;
  text-underline-position: under;
  vertical-align: top;
}
.breadcrumb__item:not(:last-of-type)::after {
  position: absolute;
  top: 0;
  right: -10px;
  content: '>';
}
.breadcrumb__item:last-of-type .breadcrumb__item__link {
  color: #c08700;
  text-decoration: none;
}
