.map-container {
    width: 100%;
    height: 88vh;
}

.gpx-info-box {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 400px;
    z-index: 999;
    padding: 10px;
    background-color: rgba(255,255,255,0.7);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.gpx-info-toggle {
    display: none;
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.map-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.map-legend  .route-start, .map-legend .route-finish {
    position: relative;
    padding-left: 20px;
}
.map-legend .route-start::before, .map-legend .route-finish::before {
    content: '';
    position:absolute;
    top: 0.25em;
    left: 0;
    background-size: cover;
    background-position: center;
    width: 15px;
    height: 15px;
    opacity: 0.7;
}
.map-legend .route-start::before {
    background-image: url('../img/pin-legend-start.png');
}
.map-legend .route-finish::before {
    background-image: url('../img/pin-legend-end.png');
}
.map-legend:not(:first-child) {
    margin-left: 5px;
}
@media (max-width: 768px) {
    .gpx-info-box {
        display: none;
    }

    .gpx-info-toggle {
        display: block;
    }
}

@media (max-width: 640px) {
    .gpx-info-box {
        width: 70%;
    }

    .map-info {
        margin-bottom: 0px;
    }
}