/*! otm, Compiled at 2024-07-17 10:15:59 */
/**
 * Oldenburg
 *
 * 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  2016 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @author     Matthias Kracke <kracke@infomax-it.de>
 * @since      2016-11-10
 * @version    $$Id$$
 **/
/**
 * OTM - Hauptportal 2016
 *
 * 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  2015 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage breadcrumb
 * @author     gueldner
 * @since      24.10.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
list
========================================================== */
/*  =========================================================
basic config
========================================================= */
/* dimensions */
/* ultra tiny introduced for iPhone 5s */
/* corporate design */
/* @see src/portal/assets/styles/_brand for css variables */
/* other colors */
/* percentage dimensions */
/* percentage margins */
/* percentage paddings */
/* default font settings */
/* vertical aligns */
.verticalAlignHelper {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
  margin: 0;
}
/*  =========================================================
general structure
========================================================= */
@media all {
  #breadcrumb {
    position: absolute;
    z-index: 1;
    display: inline-block;
    box-sizing: border-box;
    padding: 15px;
    border-top: 1px rgb(var(--color-white)) solid;
    color: rgb(var(--color-white));
  }
  /* microsite specific */
  html:not(.-css-microsite-gruenkohl) #breadcrumb {
    background: rgb(var(--color-button-default));
  }
  html.-css-microsite-gruenkohl #breadcrumb {
    background: rgb(var(--color-white)) url('../images/_branding/background_microsite1.a4cf9239.jpg') 0 0 repeat;
  }
}
@media all and (max-width: 700px) {
  #breadcrumb {
    display: none;
  }
}
@media all {
  #breadcrumb > span {
    font: 300 normal 16px/1em 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 1em;
  }
}
/*  =========================================================
list
========================================================= */
@media all {
  #breadcrumb > ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #breadcrumb > ul > li {
    display: inline-block;
    font: 300 normal 16px/1em 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 1em;
  }
  #breadcrumb > ul > li:first-child {
    margin-right: 5px;
  }
  #breadcrumb > ul > li:not(:last-child):not(:first-child)::after {
    content: '>';
    display: inline-block;
    margin: 0 5px;
  }
}
@media all {
  .breadcrumb__link {
    font-weight: 400;
    text-decoration: underline;
  }
}
