/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Breadcrumb region.
 */
 .breadcrumb
 {
  margin: 0;
  justify-content: flex-end;
 }
 .breadcrumb__list
 {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
  display: flex;
 }
 .breadcrumb__item:nth-child(n+2):before
 {
   width: unset;
   height: unset;
   margin: 0;
   content: '/';
   margin-right: 4px;
 }
 .breadcrumb__item li
 {
   color: rgba(245, 245, 247, 0.7);		
   font-weight: 400;
 }
.breadcrumb .breadcrumb__item a{
	color: rgba(245, 245, 247, 0.7);
  padding-right: 8px;
}
