.special-list li:first-child::marker {
    content: "\2605 ";
    /* Unicode for ★ */
}

.special-list li:nth-child(2)::marker {
    content: "\2600 ";
    /* Unicode for ☀ */
}

.special-list li:nth-child(3)::marker {
    content: "\227B ";
    /* Unicode for ≻ */
}

.special-list li {
    padding-left: 8px;
}

.tutorial-reference-table tbody tr td:nth-child(1),
.tutorial-reference-table tbody tr td:nth-child(2) {
    cursor: pointer;
}

.tutorial-reference-table tr td:nth-child(2) {
    width: 20%;
}

.tutorial-reference-table tr td {
    position: relative;
}

.tutorial-reference-table tbody tr td.copied {
    background-color: #b5f9b1;
}

.tutorial-reference-table tbody tr td.copied::after {
    font-family: 'tutsinsider';
    content: '\ea47';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 1;
    animation: copiedcheck 1s ease forwards;
}

@keyframes copiedcheck {
    0% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
