.bus-stop-maps-routes-container {
    padding: 50px 0 0px 0;
}

.bus-stop-maps-routes-wrapper {
    display: flex;
    flex-direction: row;
    gap: 3rem;

    width: 75%;
    justify-self: center;
    align-items: center;
    font-family: "Gotham", sans-serif;
}


.bus-stop-maps-routes-sidebar-wrapper {
    width: 50%;
    float: left;
}

#map {
    height: 600px;
    width: 100%;
}

.tabs {
    display: flex;
    flex-direction: column;
}

.tab-section {
    margin-bottom: 10px;
}

.tab {
    padding: 10px;
    cursor: pointer;
    background: transparent;
    color: #585858;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.5rem;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid white;
}

.tab.active {
    color: #ffffff;
    font-weight: 700;
}

.stop-list {
    display: none;
    height: 350px;
    overflow: auto;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 1rem 0;
}

.stop-list.active {
    display: block;
    color: #CE181E;
}


.stop-link {
    padding: 5px;
    cursor: pointer;
    color: #ffffff;
}

.stop-link.active {
    color: #CE181E;
    font-family: "Gotham-Medium", sans-serif;
}

.imageModal {
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100vw; 
    height:100vh; 
    background: rgba(0,0,0,0.8); 
    justify-content:center; 
    align-items:center; 
    z-index:10000;

}

.maps-description {
    font-size: 1rem;    
    font-family: "Gotham-Medium", sans-serif;
    margin-bottom: 0;
}

hr.maps-hr {
    border-top: 1px solid #818181;
    opacity: 1;
    margin: 0.6rem 0;
}

.maps-info-wrapper {
    margin-bottom: 0.5rem;
}

.maps-info-wrapper span {
    font-family: "Gotham", sans-serif;
    font-size: 0.9rem;
}


.google-maps-link {
    margin: 0.6rem 0;
    font-size: 0.9rem;
    justify-self: center;
    font-family: "Gotham", sans-serif;
}

.google-maps-link a{
   color: #CE181E;
}

.maps-info-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 0.2rem;
}

@media only screen and (max-width: 600px) {
    .bus-stop-maps-routes-container.container-fluid {
        padding: 0 0 100px 0;
    }
    
    .bus-stop-maps-routes-sidebar-wrapper {
        width: 90%;
    }
    .bus-stop-maps-routes-wrapper {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    #map {
        height: 400px;
        width: 90%;
    }
}