﻿
/* the sprite for the first button is defined through a CSS rule matchin its Class */
.flag {
    background-image: url("https://docs.telerik.com/blazor-ui/images/circle.png");
}

    .flag.netherlands {
        background-position: 0 -64px;
        background-color: white;
    }

    .flag.brazil {
        background-position: 0 0;
    }

body {
    margin: 0;
    padding: 0;
}

h2,
h3 {
    margin: 10px;
    font-size: 18px;
}

h3 {
    font-size: 16px;
}

p {
    margin: 10px;
}

.marker {
    background-image: url('custom_marker.png');
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.mapboxgl-popup {
    max-width: 200px;
}

.mapboxgl-popup-content {
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}

.map-overlay {
    position: absolute;
    bottom: 60px;
    right: 40px;
    background: #fff;
    font-family: Arial, sans-serif;
    overflow: auto;
    border-radius: 5px;
    z-index: 10;
    padding: 10px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
    line-height: 25px;
    width: 211px;
    font-size: 12px;
}

    .map-overlay * {
        font-size: 12px !important;
        text-align: left !important;
        font-weight: 400 !important;
        line-height: 1.7;
    }

    .map-overlay span.pl-pipeline {
        width: 35px;
    }

    .map-overlay td {
        border: 1px solid #000;
        padding: 2px 5px;
        line-height: 1;
    }

/* Me Added*/
.map-overlaypipe {
    position: absolute;
    bottom: 10px;
    right: 40px;
    background: #fff;
    font-family: Arial, sans-serif;
    overflow: auto;
    border-radius: 5px;
    z-index: 10;
    padding: 10px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
    line-height: 25px;
    width: 211px;
    font-size: 12px;
}

    .map-overlaypipe * {
        font-size: 12px !important;
        text-align: left !important;
        font-weight: 400 !important;
        line-height: 1.7;
    }

    .map-overlaypipe span.pl-pipeline {
        width: 35px;
    }

    .map-overlaypipe td {
        border: 1px solid #000;
        padding: 2px 5px;
        line-height: 1;
    }

#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

#features {
    top: 0;
    height: 100px;
    margin-top: 20px;
    width: 250px;
}

.legend-key {
    display: inline-block;
    border-radius: 20%;
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.marker {
    display: block;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}
