﻿/* Copyright 2024 Epic Systems Corporation */
._AmbiguousProgress {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.5rem;
}
._AmbiguousProgress .progressText {
  flex: 0 0 auto;
  width: auto;
  color: #565656;
}
._AmbiguousProgress .progressBar {
  flex: 1 1 150px;
}
._AmbiguousProgress .progressIndicator {
  fill: #858da1;
}
._AmbiguousProgress .progressIndicator._complete {
  transition: width 0.3s ease-in-out;
  fill: #0B1B42;
}

._DiscreteProgressDots {
  transition: width 0.3s ease-in-out;
}

._DiscreteProgressDot {
  fill: #999999;
  transition: all 0.3s ease-in-out;
}
._DiscreteProgressDot._active, ._DiscreteProgressDot._complete {
  fill: #0B1B42;
}

._GoBackStepLink {
  align-items: center;
  display: inline-flex;
  gap: 0.25rem;
  margin-top: -0.5rem;
  padding: 0.5rem 0 0.25rem;
}
@media print {
  ._GoBackStepLink {
    display: none;
  }
}

._SimpleWorkflowStyle .titleProgressGroup {
  padding: 0.75rem 0 0;
  overflow-wrap: break-word;
}
._SimpleWorkflowStyle .workflowTitle {
  padding: 0;
}
.mobile ._SimpleWorkflowStyle .workflowTitleGroup {
  display: none;
}
.mobile ._SimpleWorkflowStyle .titleProgressGroup {
  padding-top: 0;
}
.mobile ._SimpleWorkflowStyle ._DiscreteProgress {
  text-align: center;
}
@media screen and (min-width: 426px) {
  ._SimpleWorkflowStyle .titleProgressGroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  ._SimpleWorkflowStyle .workflowTitleGroup {
    flex: 1 0 auto;
    width: auto;
  }
  ._SimpleWorkflowStyle ._AmbiguousProgress {
    flex: 0 0 40%;
  }
  ._SimpleWorkflowStyle ._DiscreteProgress {
    flex: 0 0 auto;
    width: auto;
  }
  .mobile ._SimpleWorkflowStyle ._AmbiguousProgress, .mobile ._SimpleWorkflowStyle ._DiscreteProgress {
    flex-grow: 1;
  }
}
