body { 
    margin: 0;
    padding: 0; 
}

html {
    font-family: "Lato", sans-serif;
    font-weight: 200;
    font-size: 12px;
    /* color: whitesmoke; */
}

#map { 
    position: absolute; 
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width:500px;
    margin: 0 auto;
    z-index: 1;
}

h4 {
    color: whitesmoke;
    font-family: 'Lato', sans-serif;
}

.accordion .accordion-item{
    margin: 10px 0;
    border-radius: 5px;
    overflow: hidden;
    /* box-shadow: 0 0 8px #6e7a7a; */
}
.accordion-titel {
    /* background-color: #5daaaa; */
    padding: 10px 15px;
    cursor: pointer;
}
.accordion-contant{
    padding: 15px ;
    /* background-color: rgba(55, 138, 159, 0.521); */
    display: none;
}
.accordion-titel h2 span{
    float: right;
}


.accordion-item {
    color: whitesmoke;
}
/* .accordion-upper-container {
    background: #fff;
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    border-radius: 3px;
    width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    font-family: 'Open Sans', sans-serif;
} */
/* 
div:first-of-type {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
} */

label {
    margin-right: 15px;
    line-height: 32px;
}

input {
    appearance: none;

    border-radius: 50%;
    width: 20px;
    height: 20px;

    border: 2px solid #999;
    transition: 0.2s all linear;
    margin-right: 5px;

    position: relative;
    top: 4px;
}

input:checked {
    border: 6px solid grey;
}

button,
legend {
    color: white;
    background-color: grey;
    padding: 5px 10px;
    border-radius: 0;
    border: 0;
    font-size: 14px;
    /* display: block; */
}

button:hover,
button:focus {
    color: #999;
}

button:active {
    background-color: white;
    color: grey;
    outline: 1px solid grey;
}