
#stepOneForm{
    display: flex;
    width: 100%;
    border: 1px solid #E7E7E7;
    background-color: white;
    flex-wrap: wrap;
}

#stopsContainer{
    max-height: 200px;
    width: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.stopsContainerLine{
    border-bottom: 2px solid #3269FF;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.stopInputContainer{
    justify-content: space-between;
    /* align-content: center; */
    flex-wrap: wrap;
    align-items: baseline;
    flex-direction: row;
}
#addStopButton{
    display: flex;
    width: 100%;
    height: 20px;
    z-index: 1;
    background-color: #3269FF;
    color: white;
    font-size: 14px;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: inherit;
    text-align: start;
    justify-content: flex-start;
    align-items: center;
    /* border-top-left-radius: 10px; */
    /* border-top-right-radius: 10px;
     */
    padding-left: 20px;

}

#deleteStopButton{
    display: flex;
    width: 20px;
    height: 20px;
    border: 2px solid var(--colorAccent);
    color: var(--colorAccent);
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-right: 20px;
    border-radius: 50px;
    font-weight: var(--headerCardTitleFontWeight);
}
#flightNumberContainer{
    display: none;
}
#twoWayTripFields{
    display: flex;
    height: 100%;
    width: 100%;
}
.googleMapsContainer{
    display: flex;
    width: calc(50% - 20px);
    height: 340px;
    flex-wrap: wrap;
    border-top: 2px solid #3269FF;
}
.googleMap{
    display: flex;
    width: 100%;
    height: 260px;
}
.googleMapsInfoContainer{
    display: flex;
    width: 100%;
    height: 80px;
}
.googleMapsInfoDiv{
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    height: 100%;
    border: 1px solid #E7E7E7;
    background-color: white;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.googleMapsInfoLogo{
    display: flex;
    height: 100%;
    width: 30%;
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center;

}

.googleMapsInfoTextContainer{
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    height: 40px;
}
.googleMapsInfoTitle{
    display: flex;
    width: 100%;
    height: 40px;
    font-size: 12px;
    color: #7C7C7C;
    margin-left: 20px;
    align-items: flex-end;
}

.googleMapsInfoText{
    display: flex;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    color: black;
    margin-left: 20px;
}


/* Media query for tablets */
@media (max-width: 991px) {
        .googleMapsContainer {
        display: flex;
        width: calc(100% - 20px);
        height: 340px;
        flex-wrap: wrap;
        border-top: 2px solid #3269FF;
    }
}