.bookingCardContainer{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.bookingSection{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    transition: visibility 0.1s, opacity 0.4s linear;
}

.bookingSection:not(:first-child){
    visibility: hidden;
    opacity: 0;
}

.progressbar-part{
    width: 130px;
    background-color: var(--main-primary-light);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
}

@media only screen and (max-width: 1024px){
    .progressbar-part{
        width: 50px;
    }
}

.bookingSection:first-child .progressbar-part{
    border-radius: 20px 20px 0px 0px;
}

.bookingSection:last-child .progressbar-part{
    border-radius: 0px 0px 20px 20px;
}

.bookingSection:only-child .progressbar-part{
    border-radius: 20px 20px 20px 20px;
}

.stepCircle{
    border-radius: 100%;
    background-color: var(--main-primary);
    color: var(--spark-white);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookingSection:first-child .stepCircle{
    margin-top: 24px;
}

.stepLabel{
    color: var(--main-text);
    margin-top: 6px;
}

@media only screen and (max-width: 1024px){
    .stepLabel{
        display: none;
    }
}

.stepLine{
    background-color: var(--main-primary);
    width: 2px;
    height: 100%;
}

.formSection{
    height: 500px;
}

.bookingFormSection{
    margin: 0px 24px 24px 24px;
    width: 100%;
}

.bookingSection:first-child .bookingFormSection__header{
    margin: 24px 0px 24px 0px;
}

.bookingFormSection__header{
    font-size: 2em;
    margin: 0px 0px 24px 0px;
}

.bookingFormSection__subheader{
    font-size: 1.1em;
    margin: 8px 0px;
}

.summaryPlaceholder{
    font-weight: bold;
}

.summaryChangeLink{
    font-size: 0.7em;
    color: var(--main-primary);
    padding-left: 5px;
}

.summaryChangeLink:hover{
    text-decoration: underline;
    cursor: pointer;
}

.specialistSelectionContainer{
    margin: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.singleSpecialistContainer{
    margin: 12px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
}

.singleSpecialistContainer--button{
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
}

.singleSpecialistContainer--button:hover{
    background-color: var(--main-primary-light);
}

.singleSpecialistContainer--button img{
    border-radius: 50%;
    border: transparent 2.5px solid;
}

.singleSpecialistContainer--button:hover img{
    border: var(--main-primary) 2.5px solid;
}


.specialistSummary{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.singleSpecialistContainer .namePlaceholder, .specialistSummary .namePlaceholder{
    font-weight: bold;
    font-size: 1.05em;
}

.singleSpecialistContainer .specialistPlaceholder, .specialistSummary .namePlaceholder{
    font-weight: light;
    font-size: .95em;
}

.termsContainer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.termButton{
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    width: fit-content;
    margin: 6px;
    cursor: pointer
}

.termButton:hover{
    background-color: var(--main-primary-light);
}