#root {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    font-family: "Open Sans", sans-serif;
    min-height: 100vh;
    max-width: 100% !important;
}

@media only screen and (max-width: 810px) {
    #root {
        flex-direction:column-reverse;
        align-items: stretch;
        justify-content: flex-start;
    }
}


/* app-container
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#app-container {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

@media (min-width: 810px) {
    #app-container {
        width: 75%;
        max-width: 75%;
    }
}


@media (max-width: 500px) {
    #app-container {
        padding: 2rem 5%;
    }
}

@media (max-width: 350px) {
    #app-container {
        padding: 1.5rem 5%;
    }
}

/* sidebar
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#sidebar {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    background-color: white;
    color: black !important;
    padding: 2rem 2rem 0 2rem;
}

@media (min-width: 810px) {
    #sidebar {
        width: 25%;
        max-width: 25%;
        align-self: stretch;
    }
}

}


/* Legenda
–––––––––––––––––––––––––––––––––––––––––––––––––– */


.my-legend .legend-title {
    text-align: left;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 100%;
    }
  .my-legend .legend-scale ul {
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
    float: left;
    list-style: none;
    }
  .my-legend .legend-scale ul li {
    font-size: 80%;
    list-style: none;
    margin-left: 0;
    line-height: 18px;
    margin-bottom: 2px;
    }
  .my-legend ul.legend-labels li span {
    display: block;
    float: left;
    height: 16px;
    width: 30px;
    margin-right: 5px;
    margin-left: 0;
    border: 1px solid #999;
    }
  .my-legend .legend-source {
    font-size: 70%;
    color: #999;
    clear: both;
    }
  .my-legend a {
    color: #777;
    }

.box {
  float: left;
  height: 15px;
  width: 15px;
  opacity: 0.4;
  margin-bottom: 5px;
  border: 1px solid black;
  clear: both;
}
.box1 {
  float: left;
  height: 15px;
  width: 15px;
  margin-bottom: 5px;
  border: 1px solid black;
  clear: both;
}

.dot {
  color: black;
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}