.steps {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}
.circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #e9ecef;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    color: #6c757d;
}
.circle.aktif {
    background: linear-gradient(to right, #002561, #00b1cd);
    color: #fff;
}
.step span {
    margin-top: 8px;
    font-size: 14px;
    color: #6c757d;
}
.step span.aktif {
    color: #0a1450;
    font-weight: bold;
}
.circle.basarili {
  background-color: green;
  color: #fff;
}
.step span.basarili {
    color: green;
    font-weight: bold;
}
