.ms-survey-form {

}

.ms-survey-form .ms-survey-section {
    display: none;
}

.ms-survey-form .ms-survey-section.active {
    display: block;
}

.ms-survey-form .ms-survey-question + .ms-survey-question {
    margin-top: 30px;
    /* padding-top: 30px; */
}

.ms-survey-form .ms-survey-title {
    margin: 0 0 15px;
}
.ms-survey-form .ms-survey-description {
    margin: -10px 0 15px;
}

/* STEPS */
.ms-survey-stepbar-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--ms-color-light);
    padding: 15px;
    border-radius: 5px;
    flex-wrap: wrap;
}
.ms-survey-stepbar-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}


.ms-survey-stepbar-item +
.ms-survey-stepbar-item {
    padding-left: 30px;
}

.ms-survey-stepbar-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--ms-color-white);
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.ms-survey-stepbar-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--ms-color-white);
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.ms-survey-stepbar-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ms-color-white);
    margin-bottom: 6px;
}

.ms-survey-stepbar-item.ms-survey-stepbar-active {
    font-weight: bold;
}

.ms-survey-stepbar-item.ms-survey-stepbar-completed .step-counter {
    background-color: var(--ms-color-success);
    color: var(--ms-color-white);
}

.ms-survey-stepbar-item.ms-survey-stepbar-completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid var(--ms-color-success);
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.ms-survey-stepbar-item:first-child::before {
    content: none;
}
.ms-survey-stepbar-item:last-child::after {
    content: none;
}