/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-2.use[3]!./web/profiles/uw/uw_profile/modules/uw_theme_components/components/molecules/breadcrumb/breadcrumb.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/********
 * Colors
 ********/
/************
 * Typography
 ************/
/*
 * We can use the font weight fot the bold styling example below
 * .test-font { font-family: $font-default; } regular
 * .test-font-bold { font-family: $font-default; font-weight: $font-weight-bold; }
 * @see: _typography.scss
*/
/*****************
 * Global elements
 *****************/
/****************
 * Sizing/Spacing
 ****************/
/*******
 * Forms
 ******/
/***********
 * Bootstrap
 ***********/
/**********
 * Mappings
 *********/
/*
 * IMPORTANT:
 *   - This file should *only contain* variables not considered UN style guide *
 */
/**
  Help theming for rtl languages.
*/
/*
 * This handles indentation for the depth of child levels for accordion
 * TODO: improve this implementation, overly complex due to previous design
 */
/*
 * Reset the button appearance to make it look like regular text.
 *
 * The padding can be optionally passed, as it is usually overriden.
 *
 * @param {Number} $padding - The padding to apply to the button.
 */
/*
 * Adds color & text-shadow-based outline to type.
 *
 * @param {color} $color - Color of the marker.
 * @param {color} $border-color - Color for the outline, or border.
 * @param {percent} $border-alpha - Value used in sass:color.scale().
 */
/*
 * Encapsulates the styles for the WYSIWYG editor.
 *
 * We use a mixin in order to be able to reuse these rules inside the
 * CKEditor5 stylesheet to provide the same styles for the editor content.
 * @see un2_theme/scss/admin/_ckeditor5.scss.
 * @see un2_theme/scss/components/_wysiwyg.scss.
 */
.uw-breadcrumb {
  margin-block-end: 1rem;
}
.uw-breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.uw-breadcrumb ol li {
  position: relative;
  margin: 0;
  padding-inline-start: 1rem;
  font-size: 0.875rem;
}
.uw-breadcrumb ol li::before {
  content: none;
}
.uw-breadcrumb ol li a,
.uw-breadcrumb ol li span {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-inline-start: 0.5rem;
}
.uw-breadcrumb ol li a {
  color: #0a5a82;
  text-decoration: none;
}
.uw-breadcrumb ol li a:hover {
  text-decoration: underline;
}
.uw-breadcrumb ol li a:hover {
  color: #0a5a82;
  font-weight: normal;
}
.uw-breadcrumb ol li:last-child {
  flex: 1;
}
.uw-breadcrumb ol li:not(:first-child, :last-child) {
  display: none;
}
@media (min-width: 576px) {
  .uw-breadcrumb ol li:not(:first-child, :last-child) {
    display: inline;
  }
}
.uw-breadcrumb ol li:not(:first-child)::before {
  padding-inline-start: 0.5rem;
  content: "/";
}
[dir=rtl] .uw-breadcrumb ol li:not(:first-child)::before {
  content: "\\";
}
.uw-breadcrumb ol li:first-child {
  padding-inline-start: 0;
}
.uw-breadcrumb ol li:first-child a,
.uw-breadcrumb ol li:first-child span {
  padding-inline-start: 0;
}
