*{
    box-sizing: border-box;
    padding: 0;
    font-family: Poppins, sans-serif;
}
body{
    margin: 0;
    padding: 0;
}
.choropleth{
    width: 95%;
    left: 2.5%;
    min-height: 100vh;
    position: relative;
    border-radius: 30px;
}
#map, .choroData{
    position: absolute;
    bottom: 0;
    left: 0;
}
#map{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
    position: fixed;
    background: white;
}
canvas{
    font-family: Poppins, sans-serif;
}
.choroData{
    width: 95%;
    left: 2.5%;
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    z-index: 4;
    border-radius: 40px;
    height: 40px;
    overflow: hidden;
    transition: all 1s ease-in-out;
}
.chartDiv{
    margin: 0 1vw;
    width: 20vw;
    height: 20vw;
    min-width: 200px;
    min-height: 200px;
    position: relative;
}
#cDiv{
    display: grid;
    place-items: start center;
}
#cDiv button{
    border: none;
    background: #f4c646;
    padding: 5px;
    border-radius: 5px;
    margin: 2px auto;
    font-weight: 700;
    color: black;
    cursor: pointer;
    z-index: 20;
}
#pDiv, #iDiv, #hDiv{
    width: 15vw;
    height: 20vw;
    min-width: 150px;
    min-height: 200px;
}
.chartDiv p, #myChart, #hData, #iData, #pData{
    position: absolute;
    top: 0;
    left: 0;
}
.chartDiv p{
    top: 40%;
    width: 40%;
    left: 30%;
    text-align: center;
    font-size: calc(10px + 0.2vw);
}
.legend{
    width: 10vw;
    height: 20vw;
    min-height: 200px;
    min-width: 70px;
    border-radius: 20px;
    padding: 5px;
    display: grid;
    place-items: center;
}
.legend span{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    width: 100%;
    line-height: 0;
    padding: 3px 5px;
}
.clr{
    width: 20px;
    height: 15px;
    border-radius: 10px;
}
.choro-toggle{
    position: absolute;
    top: 5%;
    right: 2.5%;
    width: 30px;
    height: 30px;
    background: url('./assets/m-exp.png') no-repeat center/cover;
    border: none;
    z-index: 20;
    cursor: pointer;
}
.leaflet-control-zoom{
    border: none !important;
}
.leaflet-control-zoom a{
    padding: 0 !important;
    border-radius: 10px !important;
    margin: 10px auto;
    width: 45px !important;
    height: 45px !important;
    display: grid !important;
    place-items: center;
    border: 1px solid grey !important;
}
.l-divicon{
    display: none;
}