* {
    padding: 0;
    margin: 0;
}

body {
    font-family: Tahoma, Arial, sans-serif;
}

#map {
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

#list {
    z-index: 1;
    position: fixed;
    top: 10px;
    left: 60px;
    padding: 5px;
    border: 1px solid black;
    border-radius: 7px;
    background-color: gray;
    font-size: 1.1em;
}

#list label {
    display: block;
    margin-bottom: 10px;
}

#gondelbahn{
    color: red;
}
.marker_gondelbahn {
    background: red;
    opacity: 0.75;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5)); 
}

#luftseilbahn{
    color: orange;
}
.marker_luftseilbahn {
    background: orange;
    opacity: 0.75;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}

#sesselbahn{
    color: green;
}
.marker_sesselbahn {
    background: green;
    opacity: 0.75;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}

#skilift{
    color: blue;
}
.marker_skilift {
    background: blue;
    opacity: 0.75;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}

#transportseil{
    color: purple;
}
.marker_transportseil {
    background: purple;
    opacity: 0.75;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}

#rodelbahn{
    color: pink;
}
.marker_rodelbahn {
    background: pink;
    opacity: 0.75;
    border-radius: 50%;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
}