#stepThreeForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: white;
}

.step-three-container-wrapper-one {
    display: flex;
    width: 49%;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-end;
}

.step-three-container-wrapper {
    display: flex;
    width: 49%;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-end;
}

.prijsopgaveItemsContainer {
    margin-bottom: 20px;
    /*background-color: red;*/
}

.step-three-container {
    width: calc(100% - 20px) !important;
}

.formInputRadio {
    display: flex;
    width: 100%;
    height: 20px;
}

.summaryVerticalContainer {
    display: flex;
    width: 49%;
    flex-direction: column;
    /*height: 50%;*/
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    text-align: left;
    border: 1px solid #E7E7E7;
    background-color: white;
}

.summaryHeader {
    display: flex;
    width: calc(100% - 20px) !important;
    height: 40px;
    background-color: #E7E7E7;
    color: #7C7C7C;
    font-size: 16px;
    align-items: center;
    padding-left: 20px;
    border-top: 2px solid #3269FF;
}

.summaryItemsContainer {
    display: flex;
    /* width: 100%; */
    height: auto;
    flex-wrap: wrap;
    flex-direction: row;
    padding-left: 20px;
    justify-content: space-evenly;
    align-content: flex-start;
}

.summaryItemsJourneyWrapper {
    /*background-color: orange;*/
    display: flex;
    height: auto;
    flex-direction: column;

}

.summaryItemsJourneyContainer {
    display: flex;
    height: auto;
    flex-direction: column;
    /*overflow-y: scroll;*/
    /*overflow-x: hidden;*/
    margin-bottom: 10px;
}

.summaryItemsJourneyContainerHeader {
    font-weight: bolder;
    display: flex;
    color: var(--colorAccent);
    /*color: #7C7C7C;*/
    border-bottom: 2px solid #E7E7E7;
    font-size: 14px;
}

.summaryItemContainer {
    display: flex;
    font-size: 14px;
    width: 100%;
    height: 40px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: row;
}

.summaryItemContainerHorizontal {
    display: flex;
    font-size: 14px;
    width: 100%;
    height: 40px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    gap: 20px;
}

.summaryItemContainerTitle {
    display: flex;
    width: 100%;
    height: 20px;
    color: #7C7C7C;
}

.summaryItemContainerText {
    display: flex;
    width: 100%;
    height: 20px;
}

.summaryItemContainerHorizontalTitle {
    display: flex;
    width: 30%;
    height: 20px;
    color: #7C7C7C;
    /*font-size: 12px;*/
}

.summaryItemTussenstopsContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 70%;
    overflow-y: scroll;
    overflow-x: hidden;
    height: auto;
}

.summaryItemTussenstopsContainerItem {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

.summaryItemContainerHorizontalText {
    display: flex;
    width: 70%;
    height: 20px;
    font-weight: bolder;
}

.summaryItemContainerReisTitle {
    color: #7C7C7C;
}

.summaryItemContainerReisText {
    /*color: var(--colorAccent);*/
    font-weight: bolder;
}

.betaalmethodeItemsContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    height: 50%;
}

.betaalmethodeItemContainer {
    display: flex;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-top: 10px;
    width: 40%;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.formInputRadioBetaalmethode {
    display: flex;
    width: 20%;
    height: 20px;
    margin-left: 0;
}

.betaalmethodeItemContainerText {
    display: flex;
    width: 40%;
}

.prijsopgaveItemContainer {
    display: flex;
    width: 50%;
    height: 60px;
    border: 2px solid #E7E7E7;
    background-color: white;
    flex-wrap: wrap;
    flex-direction: column;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    align-items: flex-start;
    padding-left: 20px;
}

/* Media query for tablets */
@media (max-width: 991px) {
    .summaryVerticalContainer {
        display: flex;
        width: 100%;
        flex-direction: column;
        /* height: 50%; */
        align-items: flex-start;
        justify-content: flex-start;
        align-content: flex-start;
        justify-items: flex-start;
        text-align: left;
        border: 1px solid #E7E7E7;
        background-color: white;
    }

    .step-three-container-wrapper {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-content: flex-end;
    }

    .step-three-container {
        width: calc(100%) !important;
    }

    .summaryItemsJourneyContainer {
        display: flex;
        height: 18vh;
        flex-direction: column;
        /* overflow-y: scroll; */
        /* overflow-x: hidden; */
        justify-content: space-between;
        margin-bottom: 50px;
    }

    .summaryItemContainerHorizontalText {
        display: flex;
        width: 60%;
        height: 20px;
        font-weight: bolder;
    }
}