html{
    background-color: #f8f8f8;
    background: linear-gradient(69deg, rgba(165, 181, 208, 0.4) 0%, rgb(107, 107, 107, 0) 100%) fixed;
}
body{
    height: 100vh;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
body>header{
    background-color: #e4262a;
    height: 50px;
    padding: 10px 3%;
    text-align: left;
    box-sizing: border-box;
}
nav.eleccion{
    position: absolute;
    top: 110px;
    left: 10px;
    width: 220px;
    background: #FFF;
    padding: 12px 15px 15px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    text-align: left;
    max-width: 300px;
    overflow: hidden;
    max-height: 255px;
    z-index: 100;
    transition: max-height ease-in-out 0.4s;
}
nav.eleccion.min{
    max-height: 12px;
}
nav.eleccion header{
    font-size: 11px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #828282;
    cursor: pointer;
}
nav.eleccion header>span{
    display: block;
    position: absolute;
    right: 12px;
    top: 10px;
    width: 20px;
    height: 20px;
    transition: transform ease-in-out 0.4s;
}
nav.eleccion.min header>span{
    transform: rotate(180deg);
}
nav.eleccion header>span::before,
nav.eleccion header>span::after{
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 2px;
    transform: rotate(45deg);
    background-color: #000;
    width: 10px;
    height: 2px;
    border-radius: 2px;
}
nav.eleccion header>span::after{
    left: auto;
    right: 2px;
    transform: rotate(-45deg);
}
nav.eleccion label{
    display: block;
    font-size: 13px;
    font-weight: 500;
}
nav.eleccion label:not(:first-of-type){
    margin-top: 20px;
}
nav.eleccion select{
    text-align: center;
    border-radius: initial;
    font-size: 15px;
    text-align: left;
}
#agruparLocales{
    display: inline-block;
    margin-top: 20px;
    vertical-align: top;
}
#agruparLocales.oculto{
    display: none;
}
#agruparLocales+label{
    vertical-align: top;
    line-height: 20px;
}
#agruparLocales.oculto+label{
    display: none;
}
#mapa {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    /*width: 100%;*/
}
#info{
    position: fixed;
    bottom: 45px;
    left: 30px;
    background: #FFF;
    padding: 15px 45px 15px 30px;
    border-radius: 4px;
    min-width: 260px;
    max-width: calc(100% - 60px);
    box-sizing: border-box;
    box-shadow: rgb(0 0 0 / 30%) 0px 1px 4px -1px;
    text-align: left;
    z-index: 150;
    display: none;
}

#info.on{
    display: block;
}
#info .cerrar{
    position: absolute;
    right: 5px;
    top: 5px;
    margin: 0;
    padding: 2px;
    z-index: 50;
}
#info .cerrar::before,
#info .cerrar::after{
    content: "";
    left: 5px;
    top: 11px;
}
#info>div>section{
    display: none;
}

#info[data-vista="distritos"]>div>section.distritos,
#info[data-vista="seccionesmunicipales"]>div>section.seccionesmunicipales,
#info[data-vista="secciones"]>div>section.secciones,
#info[data-vista="circuitos"]>div>section.circuitos,
#info[data-vista="locales"]>div>section.locales{
    display: block;
}
#info h3{
    margin: 0;
    font-size: 14px;
}
#info h1{
    margin: 5px 0;
    line-height: 21px;
}