/* 
// File Name: ngs-pathway.css
// Description: Defines the styles for the Pathway to Quality Testing tool.
// Version 1.0.1
// Contributers: 
//  Jacob Pettis (lwe6@cdc.gov) (CTR: Booz Allen Hamilton)
//  Camby Chavis (rab7@cdc.gov) (CTR: Booz Allen Hamilton)
// Change Log:
// >> 05/22/2022: JP - Initial Commit
// >> 04/09/2024: CC
*/ 

.DocumentsRecords{
  margin-bottom: .4rem;
}

.phase-nav{
  display:
  flex;
  flex-direction: row;
}

.phase-description-text{
  padding: .75rem 2rem;
}

.selection-description{
  margin-bottom: 1rem;
  margin-left: .5rem;
}

.intro-header{
  font-weight: bold;
}

.intro-button{
  margin-top: 1rem;
  background: #005AA3;
  color: white;
  padding: .25rem 1.25rem;
  border-radius: 5px;
  border: 1px solid; 
}

@media screen and (max-width: 991px){
  .intro-button{
    display: none;
  }
}

.intro-button:hover {
  background: #023056; 
}

.nav-step-button{
  background: #005AA3;
  color: white;
  padding: .25rem 1.25rem;
  border-radius: 5px;
  border: 1px solid; 
}

.reset-button{
  background: indianred;
  color: white;
  padding: .25rem 1.25rem;
  border-radius: 5px;
  border: 1px solid; 
}

.nav-step-button:hover{
  background: #023056; 
}

.all-rounded {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.spacer {
  display: block;
}

.progress-bar-title{
  margin-top: 1rem;
  font-weight:bold;
}

#progress-bar {
  width: 250px;
  margin-bottom: 1rem;
  background: #cccccc;
}

#progress-bar-percentage {
  /* background: #3063A5; */
  background: #7cd183;
  padding: 5px 0px;
  color: #FFF;
  text-align: center;
}

.center-ctr {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro-header {
  font-size: 1.75em;
}

.crumb-text{
  display: flex;
  height: 80px;
  background-color: #005AA3;
  text-align: center;
  padding: 0 20px 0 60px;
  position: relative;
  margin: 0 2px 0 0!important;
  font-size: clamp(10px, .60vw, 24px)!important;
  color: #fff;
  align-items: center;
  cursor: pointer;
  overflow: ellipsis;
}

.crumb-text:before {
  content: "";  
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid white;
  position: absolute; left: 0; top: 0;
}

.crumb-text:after{
  content: "";
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid #005AA3;
  position: absolute;
  right: -40px;
  top: 0;
  z-index: 999;  
}

.selected-step-name{
  margin-top: 1rem;
  font-weight: 400 !important; 
}

.selected .crumb-text,
.crumb-text:hover{
  background-color: #88c3ea;
  color: black;
  font-weight: bold;
}

.crumb-text:hover:after,
.selected .crumb-text:after {
  border-left-color: #88c3ea;
  color: black;
  font-weight: bold;
}

.phase-nav .crumb:first-child .crumb-text {
	border-top-left-radius: 10px; 
}

.phase-nav .crumb:first-child .crumb-text:before {
	display: none; 
}

.phase-nav .crumb:last-child .crumb-text {
	border-top-right-radius: 10px; 
}
.phase-nav .crumb:last-child .crumb-text:after {
	display: none; 
}

.phase-ctr {
  display: flex;
  flex-direction: row;
}

.section-ctr{
  padding-left: 10px;
}

.section-nav{
  display:
  flex;
  flex-direction: column;
  flex-shrink: initial;
  border-right: lightgray 1px solid;
  width: 200px;
}

.section-nav > div{
  padding: 5px;
  cursor: pointer;
}

.section-nav > div:hover{
	background-color: lightgray;
}

.section-nav > div.selected{
  background-color: lightgray;
  cursor: default;
  font-weight: 600;
  border-right: #005AA3 4px solid;
}

.step-nav{
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.center-step-nav{
  display: flex;
  justify-content: start;
  align-items: center;
}

.step-nav > .step{
  padding: 5px;
  margin: 5px;
  cursor: pointer;
  border: black 3px solid;
  border-radius: 10px;
  text-align: center;
  z-index: 999;
  background-color: white;
  font-size: 70%;
  justify-content: center;
  min-height: 5.75em; 
  min-width: 7.75em; 
  align-items: center;
  display: flex;
}

.step-nav > .step:hover {
  background: #0c6fc0; 
  color: white;
}

.step-nav > .step.selected{
  cursor: default;
  font-weight: 700;
  background-color: #88c3ea;
}

.step-nav > .strike-through{
	border: black 2px solid;
	position: absolute;
	width: 95%;
	z-index: 1;
	top: 50%;
	left: 0;
	margin: 0 20px 0 20px;
	content: " ";
}

.checkbox-ctr{
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.related-req{
  margin-bottom: 1rem;
}

.indented{
  margin-left: 20px;
  list-style-type: disc;
}

.lead.subtitle{
  font-size: .75rem;
}

.col-lg-3.order-lg-1.leftnav-wrapper{
  display:none;
}
