.sr-only {
    visibility: hidden;
}

.hidden {
    width: 0;
    height: 0;
    visibility: hidden;
    display: none;
    overflow: hidden;
}

.challenge-title {
    text-align: center;
    padding: 0;
    margin: 1rem 0 0.5rem;
    color: #204563;
    font-size: 2rem;
    font-weight: bold;
}

.challenge-subtitle {
    text-align: center;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: #b5bbc3;
}

.challenge-part-of {
    text-align: center;
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: #b5bbc3;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}

.challenge-part-of a,
.challenge-part-of a:visited {
    color: #b5bbc3;
    text-decoration-style: wavy;
}

.challenge-part-of a:hover,
.challenge-part-of a:visited:hover,
.challenge-part-of a:active,
.challenge-part-of a:visited:active {
    color: #d1d5da;
}

.sbs-title {
    color: #c3c8cf;
    text-transform: uppercase;
    font-size: 0.625rem;
    margin: 0 0 1rem;
    padding: 1rem 0;
}

.sbs-title:first-of-type {
    padding-top: 0;
    margin-top: 0;
}

hr {
    border-top: 1px solid #edeff1;
    margin: 3rem 0 2rem;
}

.sbs--basic {
    margin: 0 -1rem;
    display: flex;
}

.sbs--basic li {
    flex: 1;
    padding: 0 1rem;
}

.sbs--basic li.finished>.step::before {
    border-color: #204563;
}

.sbs--basic li.finished>.step .title {
    color: #204563;
}

.sbs--basic li.active>.step::before {
    border-color: #204563;
    border-top-style: dotted;
}

.sbs--basic li.active>.step .title {
    color: #204563;
}

.sbs--basic li .step {
    padding: 2rem 0 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sbs--basic li .step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    border-top: 4px solid #dfe2e5;
}

.sbs--basic li .step .title {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: bold;
    color: #8a94a1;
}

.sbs--basic li .step .description {
    font-weight: bold;
}

.sbs--border {
    display: flex;
    border: 1px solid #d1d5da;
    border-radius: 0.5rem;
}

.sbs--border li {
    flex: 1;
}

.sbs--border li:last-of-type .step::before,
.sbs--border li:last-of-type .step::after {
    display: none;
}

.sbs--border li.finished>.step .indicator {
    background-color: #204563;
    border-color: #204563;
    color: white;
}

.sbs--border li.finished>.step .description {
    color: #2f363d;
}

.sbs--border li.active>.step .indicator {
    border-color: #204563;
    color: #204563;
}

.sbs--border li.active>.step .description {
    color: #204563;
}

.sbs--border li .step {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.sbs--border li .step::before,
.sbs--border li .step::after {
    content: "";
    height: 45px;
    width: 1px;
    background-color: #d1d5da;
    position: absolute;
    right: 0;
    top: 50%;
}

.sbs--border li .step::before {
    transform-origin: center bottom;
    transform: translateY(-100%) rotate(-25deg);
}

.sbs--border li .step::after {
    transform-origin: center top;
    transform: rotate(25deg);
}

.sbs--border li .step .indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #d1d5da;
    color: #8a94a1;
}

.sbs--border li .step .description {
    font-weight: bold;
    font-size: 0.875rem;
    color: #8a94a1;
}

.sbs--border-alt {
    display: flex;
    border: 1px solid #f7f9fc;
    border-radius: 0.5rem;
    background: white;
    box-shadow: 0px 0px 10px rgba(69, 101, 173, 0.1);
}

.sbs--border-alt li {
    flex: 1;
}

.sbs--border-alt li:last-of-type .step::before,
.sbs--border-alt li:last-of-type .step::after {
    display: none;
}

.sbs--border-alt li.finished>.step .indicator {
    background-color: #204563;
    border-color: #204563;
    color: white;
}

.sbs--border-alt li.finished>.step .description {
    color: #2f363d;
}

.sbs--border-alt li.active>.step .indicator {
    border-color: #204563;
    color: #204563;
}

.sbs--border-alt li.active>.step .description {
    color: #204563;
}

.sbs--border-alt li.active>.step .line {
    background-color: #204563;
}

.sbs--border-alt li .step {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.sbs--border-alt li .step::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #d1d5da;
    position: absolute;
    right: 0;
}

.sbs--border-alt li .step::after {
    content: "";
    width: 1rem;
    height: 1rem;
    background-color: white;
    position: absolute;
    right: 0;
    top: 50%;
    border-top: 1px solid #d1d5da;
    border-right: 1px solid #d1d5da;
    transform: translate(50%, -50%) rotate(45deg);
    z-index: 1;
}

.sbs--border-alt li .step .indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #d1d5da;
    color: #8a94a1;
}

.sbs--border-alt li .step .description {
    font-weight: bold;
    font-size: 0.875rem;
    color: #8a94a1;
    display: flex;
    flex-direction: column;
}

.sbs--border-alt li .step .description span:first-of-type {
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.sbs--border-alt li .step .description span:last-of-type {
    color: #b5bbc3;
}

.sbs--border-alt li .step .line {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: transparent;
    bottom: 0;
    left: 0;
}

.sbs--circles {
    display: flex;
}

.sbs--circles li {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sbs--circles li:last-of-type .step .line {
    display: none;
}

.sbs--circles li.finished>.step .indicator {
    background-color: #204563;
    border-color: #204563;
    color: white;
}

.sbs--circles li.finished>.step .description {
    color: #2f363d;
}

.sbs--circles li.finished>.step .line {
    background-color: #204563;
}

.sbs--circles li.active>.step .indicator {
    border-color: #204563;
    color: #204563;
}

.sbs--circles li.active>.step .description {
    color: #204563;
}

.sbs--circles li .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.sbs--circles li .step .indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #d1d5da;
    color: #8a94a1;
    position: relative;
    z-index: 1;
    background-color: white;
}

.sbs--circles li .step .description {
    font-weight: bold;
    font-size: 0.875rem;
    color: #8a94a1;
    position: absolute;
    bottom: -1.5rem;
}

.sbs--circles li .step .line {
    height: 4px;
    background-color: #dfe2e5;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
}

.sbs--dots {
    display: flex;
    flex-direction: column;
    width: 200px;
    margin: 0 auto;
}

.sbs--dots li {
    padding: 1rem 0;
}

.sbs--dots li.finished>.step .indicator {
    background-color: #204563;
    border-color: #204563;
    color: white;
}

.sbs--dots li.finished>.step .description {
    color: #2f363d;
}

.sbs--dots li.finished>.step .line {
    background-color: #204563;
}

.sbs--dots li.active>.step .indicator {
    border-color: #cae4d1;
    background-color: #204563;
}

.sbs--dots li.active>.step .description {
    color: #204563;
}

.sbs--dots li .step {
    display: flex;
    position: relative;
}

.sbs--dots li .step .indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    border: 4px solid white;
    color: #8a94a1;
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    background-color: #d1d5da;
    font-size: 0.625rem;
}

.sbs--dots li .step .description {
    font-weight: bold;
    font-size: 0.875rem;
    color: #8a94a1;
}

.sbs>li {
    cursor: pointer;
}

.sbs>li.active {
    cursor: default;
}
