@charset "UTF-8";

/* --------------------------------------------------
    Progress Bar Sub-Nav
    
    Note: The progress bar is implemented using the 
    Bootstrap data-spy and navigation system. Bootstrap
    has a different widget called a Progress Bar.
    
    Must have position:relative for the Scroll Spy to work.
   -------------------------------------------------- */
.progress_nav {
    margin-top: 15px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    
    font-size: 1em;
    line-height: 1em;
}

.progress_nav .nav {
	margin: 0px;
	padding: 0px;
    background-color: var(--bf_palette_background);
    
    font-size: 1.15em;
    text-decoration: none;    
    line-height: 1em;
    
	text-align: center;
}

.progress_nav .nav a {
    color: var(--bf_palette_nav_text);
}

.progress_nav .nav .active {
    color: var(--bf_palette_active_text);
    background-color: var(--bf_palette_active_background);
    font-size: 1.25em;
}

.progress_nav .nav li {
    margin-top: 0;
}

.progress_nav_arrow_container {
    position: relative;
    overflow: visible;
    
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    padding-left: 0px;
    
    border-bottom-style: dashed;
    border-bottom-color: var(--bf_palette_progress_line);
    border-bottom-width: 4px;
}
.progress_nav_arrow {
    position: relative;
    width: 20px;
    height: 0px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.progress_nav_arrow .arrow_body {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 8px;
    background: var(--bf_palette_progress_arrow_line);
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    -ms-border-radius: 4px 0 0 4px;
    -o-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}
.progress_nav_arrow .arrow_head {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 20px;
    height: 26px;
}
.progress_nav_arrow.step0 {
    width: 10%;
}
.progress_nav_arrow.step1 {
    width: 30%;
}
.progress_nav_arrow.step2 {
    width: 50%;
}
.progress_nav_arrow.step3 {
    width: 75%;
}
.progress_nav_arrow.step4 {
    width: 100%;
}