.certificate-details .timeline-label:before {
    left: 161px;
}

.certificate-details .timeline-label .timeline-label {
    width: 160px;
}

.change-color {
    animation: change-color 2s infinite;
}

@keyframes change-color {
    0% {
        background-color: var(--bs-text-primary);
    }
    50% {
        background-color: var(--bs-text-success);
    }
    100% {
        background-color: var(--bs-text-primary);
    }
}