﻿/*
// <copyright file="breadcrumb" company="Federal Reserve Bank of Boston">
//     © 2024 Federal Reserve Bank of Boston
// </copyright>
// <summary>This is the breadcrumb css file.</summary>
//-----------------------------------------------------------------------
// Internal FR – Source Code
*/

.hero-section-container {
    position: relative;
}

.breadcrumb {
    background: none;
    border: none;
    position: absolute;
    margin: 0;
    top: 20px;
    left: 20px;
    padding: 0;
}
.breadcrumb li {font-size: 16px;}
.breadcrumb a {
    color: white;
}

.breadcrumb li img {
    vertical-align: top;
    top: 2px;
    position: relative;
}

.breadcrumb a:hover {
    color: white;
}
.breadcrumb>.active {
    color: white;
}
.breadcrumb>li+li:before {
    color: white; 
    content: "\007C";
}
