.progress-component {
    width: 600px;
    margin: 0 auto 0 auto;
    display: flex;
    gap: 1.1rem
}
@media (max-width: 600px) {
    .progress-component {
        width: 100%;
    }
}

.progress-step{
    background-color: #CFCFCF;
    width: 100%;
    height: 0.625rem;
    border-radius: 0.9375rem;
}
.progress-step.blue {
    background-color: #019CB6;
}
