body {
    font-family: serif;
    background-color: #F5F5F5;
    color: #415F77;
}
.nright {
  text-align:right;

}
tr {
    margin-top:0px;
    margin-bottom:0px;
    background-color: none;
    font-size:70%;
}
* {
    box-sizing: border-box;
}

.map {
    position: relative; 
    overflow: hidden; 
    background-color: rgb(251, 251, 251);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    max-width: 100vw;
    margin: 20px auto;
}

.map__image {
    position: absolute;
    top: 20px;
    left: 0;
    right:80px;
    bottom: 0;
}

.map__image svg {
    width: 90%;

}

.map__image path {
    fill: #d3c9ce;
    stroke: #8ec4df;
    stroke-width: 1px;
    transition: fill 0.3s;
}

.map__image .is-active path {
    fill: #FC5050;
}

/* Liste
   ========================================================================== */
.map__list {
    float: right;
    width: 280px;
    border-left: 1px solid #fbfafa;
}

.map__list ul, .map__list li{
    margin: 0;
    padding: 0;
    list-style: none;
}

.map__list a {
    padding-left: 10px;
    display: inline-block;
    height: 30px;
    width: 100%;
    line-height: 30px;
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.map__list a.is-active {
    color: #FC5050;
    background-color: #f4f4f4;
}

@media screen and (max-width: 720px){
    .map__list {
        float: none;
        width: 100%;
        border-left: 1px solid #dbdbdb;
    }
    .map__image{
        padding: 10px;
        position: static;
        width: 100%;
    }
}