
body{
    margin: 0;
    padding: 0;
    color: #979797;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

figure{
    margin:0;
}

a{
    color: #219BD3;
}

/*
    Info box left side
*/
.c-info{
    z-index: 50;
    position: absolute;
    background-color: white;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 500px;
    padding: 25px 50px;
}


/*
    Search form
*/
form.c-search{
    margin-bottom: 40px;
}
form.c-search input{
    padding: 10px;
    width: 420px;
}
form.c-search .c-search-field{
    position: relative;
}
form.c-search .c-search-field:after{
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../images/icon-search.svg');
    background-color: #219BD3;
}

/*
    Collaps information
*/
.c-description{
    opacity: 0;
    max-height: 0px;
    margin-bottom: 40px;
    margin-left: 25px;
}
#c-description{
    display: none;
}
#c-description:checked ~ .c-description {
    opacity: 1;
    max-height: 900px;
}
#c-description:checked ~ .c-link.collapse:before{
    background-image: url('../images/icon-minus.svg');
}


/*
    Legend list information
    different types
*/
ul.c-types{
    padding: 0;
    margin: 0;
}
.c-types li{
    position: relative;
    padding: 0px;
    border: 0px;
    padding-left: 50px;
    list-style: none;
}
.c-types li span{
    position: absolute;
    display: inline-block;
    left: 0px;
    width: 40px;
    height: 40px;
    margin-right: 30px;
    background-color: #135979;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../images/icon-pumpe.svg');
}


.c-types li span.c-icon-gold{
    background-color: #C1A04B;
}
.c-types li span.c-icon-silver{
    background-color: #827D7A;
}
.c-types li span.c-icon-bronze{
    background-color: #AD611D;
}
.c-types li span.c-icon-charger{
    background-image: url('../images/icon-stecker.svg');
}
.c-types li span.c-icon-tools{
    background-image: url('../images/icon-werkzeug.svg');
}


/*
    Link external
*/
.c-link {
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: #219BD3;
    text-decoration: none;
    padding-left: 25px;
}

.c-link span {
    background-image: linear-gradient(currentColor,currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .2s;
}

.c-link:focus,
.c-link:hover {
    color: #219BD3;
}

.c-link:focus span,
.c-link:hover span {
    background-size: 100% 2px;
}
        
.c-link.collapse:before{
    content: "";
    position: absolute;
    top: 2px;
    left: 0px;
    width: 15px;
    height: 15px;
    background-image: url('../images/icon-plus.svg');
}

.c-link.external{
    padding-left: 30px;  
}
.c-link.external:before{
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    width: 20px;
    height: 20px;
    background-image: url('../images/icon-download.svg');
}

/*
    Map Stuff
*/
#myMap{ z-index:10; position: absolute; width: calc( 100vw - 500px ); height: 100%; margin-left: 500px;}

#myMap ul{
    margin-left: 0px;
    padding-left: 15px;
}
#myMap ul li{
    margin-bottom: 10px;
}

.gm-style .gm-style-iw-c{
    border-radius: 0;
    box-shadow: none;
    color: #979797;
}

footer{
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index:50;
    padding: 1rem;
    background-color: white;
}   