
@keyframes highlight-feature {
    0%, 100% { box-shadow: 0 0 1px 10px yellow; }
    50% { box-shadow: 0 0 20px 5px black; }
}

.highlight-feature {
    position: relative !important;
    animation: highlight-feature 2.5s infinite;
    border-radius: 10px;
}

.btn-feature {
    display: none;
}

.tutorial-active {
    background-color: #ffd81b;
}

.highlight-feature:hover .btn-feature {
    display: block;
    position: absolute;
    top: -1.5em;
    left: 0;
    right: 0;
    width: 1.5em;
    height: 1.5em;
    font-size: 1.5em;
    background-color: #CCC;
    margin: 0 auto;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.tutorial-list >  li {
    padding-left: 3em; /* Make room for icons that are below */
}

.step-finished::before {
    position: absolute;
    left: 1em;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 12pt;
}

.step-current::before {
    position: absolute;
    left: 1em;
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12pt;
}

.step-unfinished::before {
    position: absolute;
    left: 1em;
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 12pt;
}
