.pathway {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 16px;
}
.credential-item {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 1rem;
}
.credential-item img {
    width: 100px;
    height: 100px;
    border-radius: 10%;
    object-fit: cover;
    background-color: white;
    /* box-shadow: 0 4px 6px rgba(0, 0, 1, 0.1); */
}
.credential-item h6 {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}
.green {
    color: #58a247;
    font-weight: bold !important;
}
.credential-item.not-achieved {
    opacity: 0.55;
}
.credential-item.not-achieved img {
    border: 3px dashed #767676;
    padding: 8px;
}
.credential-img-wrapper {
    position: relative;
    display: inline-block;
}
.no-final-credential {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    padding: 12px;
    border: 2px dashed #cfcfcf;
    border-radius: 10%;
    color: #767676;
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
    background-color: #fafafa;
}
.no-final-credential i {
    font-size: 1.5rem;
    color: #b5b5b5;
}
.credential-achieved-tick {
    position: absolute;
    top: 2px;
    right: 16px;
    width: 20px;
    height: 20px;
    background-color: #1195d3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    line-height: 1;
}
