#stepTwoForm {
    display: flex;
    width: 100%;
    /*height: 100%;*/
    flex-wrap: wrap;
    flex-direction: row;
    align-content: space-between;
    justify-content: space-between;
}

#specialNeedsFields {
    display: flex;
    flex-wrap: wrap;
    width: 680px;
}

.vehiclesContainer {
    display: flex;
    width: 100%;
    height: 300px;
    flex-wrap: wrap;
    align-content: flex-start;
}

.vehicleContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    height: 80px;
    border: 1px solid #E7E7E7;
    background-color: white;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    align-items: flex-start;
}

.vehicleLogo {
    display: flex;
    width: 50%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.vehicleInfoContainer {
    display: flex;
    flex-wrap: wrap;
    width: 20%;
    height: 100%;
    align-content: flex-start;
}

.vehicleTitle {
    display: flex;
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
}

.vehiclePrice {
    display: flex;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #3269FF;
}

.vehicleButtonContainer {
    display: flex;
    width: 30%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/* Add this to your stylesheet */
.radioButtonLabel {
    width: 80%;
    height: 20px;
    margin: 0;
    border-radius: 20px;
    background-color: #E7E7E7;
    text-decoration: none;
    padding: 0;
    border: none;
    /*outline: none;*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 12px;
    color: #7C7C7C;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.radioButtonLabelActive {
    background-color: #3269FF;
    color: white;

}

.radioButtonLabel input {
    display: none; /* Hide the actual radio button */
}


.vehicleButtonText {

}

/* Media query for tablets */
@media (max-width: 991px) {
    #stepTwoForm {
        display: flex;
        width: 100%;
        align-content: space-between;
        justify-content: center;
    }
}