#exe_map_placeholder{
    position: relative;
    display: flex;
    width: 100%;
}

.exe-map-buttons{
    width: 160px;
}

.exe-map-buttons .exe-map-button{
    width: 160px;
    height: 160px;
    box-shadow: 4px 4px 12px rgba( 0, 0, 0, 0.3 );
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
}

.exe-map-buttons .exe-map-number{
    font-size: 46px;
    font-weight: 700;
    margin: 20px 0 10px 0;
    padding: 0;
}
.exe-map-button .exe-map-number-label{
    font-size: 14px;
    line-height: 1.1;
}

.exe-map-button .exe-map-button-label{
    font-weight: 700;
    cursor: pointer;
}

.exe-map-button .exe-map-number,
.exe-map-button .exe-map-number-label{
    opacity: 0.4;
}

.exe-map-button.button-active .exe-map-number,
.exe-map-button.button-active .exe-map-number-label{
    opacity: 1;
}
#departamentos.exe-map-button .exe-map-number,
#departamentos.exe-map-button .exe-map-button-label{
    color: #012d78;
}

#municipios.exe-map-button .exe-map-number,
#municipios.exe-map-button .exe-map-button-label{
    color: #22c1e5;
}

#exe_map_info{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    border-radius: 16px;
    background-color: rgba( 255,255,255, 0.9 );
    box-shadow: 4px 4px 12px rgba( 60, 60, 60, 0.4 );
    padding: 15px 10px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    width: 280px;
}

.exe-map-wrapper {
    width: calc(100% - 580px);
    margin-left: 120px;
    position: relative;
    overflow: auto;
    cursor: grab;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}

.exe-map-wrapper::-webkit-scrollbar{
    display: none;
}

.exe-map-wrapper object{
    width: 100%;
    display: none;
    transform-origin: top left;
}

.exe-map-wrapper object.active{
    display: block;
}

#exe_map_placeholder .exe-map-zoom-buttons {
    position: absolute;
    right: 300px;
    top: 0;
    user-select: none;
}

#exe_map_placeholder .exe-map-zoom-buttons span{
    font-size: 24px;
    cursor: pointer;
}

#exe_map_info.info-visible{
    opacity: 1;
}

#exe_map_info .map-info-row{
    display: flex;
    margin-bottom: 10px;
}

#exe_map_info .map-info-cell{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    text-align: center;
}

#exe_map_info .map-info-cell.full-width{
    width: 100%;
}

#exe_map_info .map-info-cell h4{
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.4s;
    color: white;
}

#exe_map_info .map-info-cell .value{
    font-size: 20px;
    font-weight: 600;
    transition: opacity 0.4s;
    color: white;
}

#exe_map_info .map-info-cell .label{
    font-size: 12px;
    line-height: 1.1;
}

#exe_map_info.departamento .map-info-cell h4,
#exe_map_info.departamento .map-info-cell .value{
    color: #0069B3;
}
#exe_map_info.municipio .map-info-cell h4,
#exe_map_info.municipio .map-info-cell .value{
    color: #22c1e5
}

#exe_map_info .map-info-cell p{
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 1024px ){
    #exe_map_placeholder{
        flex-wrap: wrap;
    }

    .exe-map-buttons{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .exe-map-buttons .exe-map-button{
        width: 150px;
        margin: 0 5px;
    }

    .exe-map-wrapper{
        width: 100%;
        margin: 20px 0;
    }

    #exe_map_info{
        left: 50%;
        top: 180px;
        transform: translateX( -50% );
    }

    #exe_map_placeholder .exe-map-zoom-buttons{
        top: 180px;
        right: 0;
    }
}