/*
 * OUR QUICK-HACK LEAFLET "BUSY" CONTROL
 */

div.leaflet-busy {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;

    background-color: #F7F4F2;

    opacity: .65;
}
div.leaflet-busy.leaflet-busy-hidden {
    display: none !important;
}
div.leaflet-busy.leaflet-busy-visible {
    display: table;
    height: 100%;
}

div.leaflet-busy > div {
    display: table-cell;
    vertical-align: middle;

    text-align: center;
    font-size: 20px;
}
