body {
    padding-top: 56px;
    background-color: #f8f9fa;
}
.toc {
    position: fixed;
    top: 56px;
    height: calc(100% - 56px);
    overflow-y: auto;
    padding-top: 20px;
}
.toc .nav-link.active {
    color: #F3703A;
    font-weight: bold;
    text-decoration: none;
}
.toc .nav-link{
    color: #716473;
}.toc .nav-link:hover {
    color: #716473;
    background-color: #F3703A11;
}
.content {
    margin-left: 220px;
}
.content section {
    padding-bottom: 40px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 40px;
}
.content h2 {
    margin-top: 20px;
}
ul.nav.flex-column {
    list-style-type: none;
    padding-left: 0;
}
@media (max-width: 768px) {
    .toc {
        position: static;
        width: 100%;
        height: auto;
        padding-top: 0;
    }
    .content {
        margin-left: 0;
    }
}
.table>:not(caption)>*>th{
    background-color: #eeeeee55;
}

.step-line {
    position: relative;
    padding-left: 0;
    margin-bottom: 40px;
}
.step-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 2px;
    background-color: #F3703A55;
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    background-color: #fff;
    border: 2px solid #F3703A;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #F3703A;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    margin-bottom: 20px;
}
.step.completed {
    background-color: #F3703A;
    color: #fff;
}
.step-content {
    margin-left: 55px;
    margin-bottom: 40px;
}
#app-download a:hover img{
    transform: scale(.9);
    transition: transform 0.3s ease-in-out;
}
ol.custom-counter {
    counter-reset: question-counter;
}
ol.custom-counter > li {
    list-style: none;
    margin-bottom: 10px;
}
ol.custom-counter > li::before {
    counter-increment: question-counter;
    content: "Q" counter(question-counter) ". ";
    font-weight: bold;
}
ul.answer-list {
    list-style: none;
    margin-top: 5px;
    padding-left: 20px;
}
ul.answer-list li::before {
    content: none;
}
ul.answer-list > li:first-child::before {
    content: "A: ";
    font-weight: bold;
}
.hightlight {
    font-style: normal;
    background-color: #fbff0066;
    padding: 0 3px;
    border-radius: 5px;
}
#webMetronome{
    overflow: hidden;
}
.moving-text {
    font-weight: bold;
    animation: blink 1.5s infinite;
    text-align: center;
    font-size: calc(1.325rem + .9vw);
    background-color: #0d6efd;
    color: #FFF;
    text-decoration: none;
    padding: 0.5rem 1.5rem  0.5rem;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
p{
    font-size: large
}