.warp-content-canvas {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

#container-loader{position:absolute;top:50%;left:50%;width:200px;margin-left:-110px;margin-top:-43px;padding:10px;background:#000;opacity:.9;display:block;border-radius:10px}#container-loader>div{position:relative;width:100%}#container-loader.done{background:#ff0}#container-loader.hide{display:none}#container-loader .x-msg{position:absolute;top:50%;left:50%;margin-left:-40px;margin-top:-8px;color:#fff}#container-loader .x-loading{display:block;margin:0;width:44px;height:44px;padding:1px;background:url('ajax-loader.gif');background-size:46px 46px}

#CursorLatLng {
    color: inherit;
    background-color: inherit;
}

#container-progress {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align:center;
    z-index:400;
}

#progressbar {
    margin: 0px auto 2px auto;
    width: 70%;
    height:15px;
    z-index:1;
}

#progressbar .ui-progressbar-value {
    background-color:  #f0ad4e;
}

.leaflet-container {
    cursor: initial;
}

#container-cursorData {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 1.8px 4px;
    background-color: rgba(255,255,255,.7);
    font-size: 11px;
}

.progress-block {
    margin: 0 auto;
    width: 70%;
    z-index: 2;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.progress-block-item {
    float: left;
    width: 10%;
    display: inline-block;
    cursor:pointer;
    color: #222;
    background-color: rgba(255,255,255,0.5);
    outline: 1px dotted #666;
    white-space:normal;
    line-height: 17px;
    padding: 2px;
}

#container-Bars {
    bottom: 50px;
}

.colorBar-base {
    width: auto;
}

.fullscreen-colorBar-base {
    position: fixed !important;
    right: 20px !important;
    bottom: 70px !important;
    z-index: 999999999999 !important;
}

.fullscreen-container-progress {
    z-index: 10000000000 !important;
    position: fixed !important;
}

.fullscreen-container-cursorData {
    position: fixed !important;
    z-index: 10000000000 !important;
}

.leaflet-data-time {
    font-size: 26px;
    width: 230px;
    color: gray;
    background: none;
    font-weight: bold;
    position: absolute;
    right: 70px;
    top:0px;
    bottom: -5px !important;
    text-align: center;
    background-color: rgba(244, 232, 232, 0.34) !important;
    padding: 0px !important;
}

#control-container canvas{
    margin-bottom: 30px;
}

/*map_data_loading_msg*/
#map_data_loading_msg{
    position: absolute;
    width: 180px;
    height: 40px;
    background-color: rgba(255,255,255,0.7);
    z-index: 99999;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    font-size: 12px;
    line-height: 40px;
    border-radius: 5px;
    box-shadow: 0 0 5px #888;
    display: none;
}

#map_data_loading_msg:after{
    content: 'map data loading...';
    position:absolute;
    top: 0;
    left: 50px;
}

#map_data_loading_msg:before{
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 30px;
    background-color: #333;

    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% { -webkit-transform: scale(0) }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}