.train-line-left {
    width: 10rem;
    display: flex;
    flex-direction: column;
}

.train-line-bottom {
    height: 5rem;
    width: 100%;
    min-width: 480px;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
}

.upper-bend {
    top: 0;
    width: 5rem;
    height: 5rem;
}

.left-line {
    flex: 1;
    width: 5rem;
}

.left-stops {
    position: absolute;
    top: 5rem;
    width: 10rem;
}

.bottom-stops {
    position: absolute;
    bottom: 0;
    left: 5rem;
    height: 10rem;
}

.bottom-line {
    flex: 1;
    height: 5rem;
    left: 5rem;
    right: 5rem;
}

.lower-left-bend {
    width: 5rem;
    height: 5rem;
}

.lower-right-bend {
    width: 5rem;
    height: 5rem;
}

.station-label {
    fill: #333;
    font-weight: 800;
    font-family: "Nunito Sans","Helvetica Neue","Calibri","Arial",sans-serif;
}

.station-circle {
    fill: white;
    stroke: black;
    stroke-width: 3;
}

.green-line {
    stroke: #3DAE2B;
    stroke-width: 10;
    fill: none;
}

.pink-line {
    stroke: #ED40A9;
    stroke-width: 10;
    fill: none;
}

.blue-line {
    stroke: #00A0DF;
    stroke-width: 10;
    fill: none;
}

@media (max-width: 768px) {
    .train-line-left {
        height: calc(100vh - 5rem);
    }
    
    .left-line {
        flex: 1;
        max-height: calc(100vh - 10rem);
    }
}

@media (max-width: 400px) {
    .bottom-stops {
        display: none;
    }
}
