.program-selection {
}
.program-selection .container {
    height: 100%;
}
.program-selection__wrapper {
    background-color: var(--white);
    box-shadow: 0px 0px 9px 0px #00000040;
    height: 50rem;
    overflow: hidden;
    border-radius: .8rem;
}
.program-selection__form {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.program-selection__head {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding: 3.2rem 3.2rem 2.4rem;
}
.program-selection__bar {
    background-color: var(--grey3);
    width: 100%;
    height: 2px;
}
.program-selection__title {
    font-size: 2.8rem;
    line-height: 120%;
    color: #333;
    font-weight: 500;
}
.program-selection__subtitle {
    font-size: 1.6rem;
    line-height: 120%;
    color: #333;
}
.program-selection__body {
    padding: 1.8rem 3.2rem 0;
}
.program-selection__question {
    font-size: 1.8rem;
    line-height: 120%;
    margin-bottom: 1.6rem;
}
.program-selection__answers {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.6rem;
}
.program-selection__answer {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    background-color: var(--grey);
    padding: 1.2rem 1.6rem;
    border-radius: .8rem;
}
.program-selection__footer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 3.2rem 3.2rem;
    margin-top: auto;
}
.program-selection__count {
    display: flex;
    flex-direction: row;
    font-size: 1.8rem;
    line-height: 120%;
    gap: .1rem;
    color: var(--grey4);
}
.program-selection__count span {
    font-size: 1.8rem;
    line-height: 120%;
    color: var(--grey4);
}
.program-selection__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
}
.program-selection__step {
    display: none;
}

.program-selection__step.active {
    display: block;
}

@media (min-width: 768px) and (max-width: 1280px) {

}

@media (max-width: 767px) {
    .program-selection__answers {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.2rem;
    }
    .program-selection__head {
        padding: 1.6rem;
    }
    .program-selection__body {
        padding: 1.6rem 1.6rem 0;
    }
    .program-selection__footer {
        padding: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
    }
}
.program-selection__answers--contacts {
    grid-template-columns: 1fr;
    max-width: 40rem;
}
.program-selection__answer--field {
    gap: .8rem;
}
.program-selection__answer--field .input {
    width: 100%;
}
.input--error {
    border: 1px solid #e53935 !important;
}
.program-selection__error {
    color: #e53935;
    font-size: 1.4rem;
    margin-top: .4rem;
    min-height: 1.6rem;
}