/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane>svg,
.leaflet-pane>canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
    position: absolute;
    left: 0;
    top: 0;
}

.leaflet-container {
    overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
    image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
    width: 1600px;
    height: 1600px;
    transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
    display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! () 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
    max-width: none !important;
    max-height: none !important;
}

.leaflet-container.leaflet-touch-zoom {
    -ms-touch-action: pan-x pan-y;
    touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
    -ms-touch-action: pinch-zoom;
    /* Fallback for FF which doesn't support pinch-zoom */
    touch-action: none;
    touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    -ms-touch-action: none;
    touch-action: none;
}

.leaflet-container {
    -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
    -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
    filter: inherit;
    visibility: hidden;
}

.leaflet-tile-loaded {
    visibility: inherit;
}

.leaflet-zoom-box {
    width: 0;
    height: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 800;
}


.leaflet-overlay-pane svg {
    user-select: none;
}

.leaflet-pane {
    z-index: 400;
}

.leaflet-tile-pane {
    z-index: 200;
}

.leaflet-overlay-pane {
    z-index: 400;
}

.leaflet-shadow-pane {
    z-index: 500;
}

.leaflet-marker-pane {
    z-index: 600;
}

.leaflet-tooltip-pane {
    z-index: 650;
}

.leaflet-popup-pane {
    z-index: 700;
}

.leaflet-map-pane canvas {
    z-index: 100;
}

.leaflet-map-pane svg {
    z-index: 200;
}

.leaflet-vml-shape {
    width: 1px;
    height: 1px;
}

.lvml {
    behavior: url(#default#VML);
    display: inline-block;
    position: absolute;
}

/* control positioning */

.leaflet-control {
    position: relative;
    z-index: 800;
    pointer-events: visiblePainted;
    /* IE 9-10 doesn't have auto */
    pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
}

.leaflet-top {
    top: 0;
}

.leaflet-right {
    right: 0;
}

.leaflet-bottom {
    bottom: 0;
}

.leaflet-left {
    left: 0;
}

.leaflet-control {
    float: left;
    clear: both;
}

.leaflet-right .leaflet-control {
    float: right;
}

.leaflet-top .leaflet-control {
    margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
    margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
    margin-left: 10px;
}

.leaflet-right .leaflet-control {
    margin-right: 10px;
}

/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
    will-change: opacity;
}

.leaflet-fade-anim .leaflet-popup {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
    opacity: 1;
}

.leaflet-zoom-animated {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
    will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
    -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
    visibility: hidden;
}

/* cursors */

.leaflet-interactive {
    cursor: pointer;
}

.leaflet-grab {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
    cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
    cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane>svg path,
.leaflet-tile-container {
    pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane>svg path.leaflet-interactive {
    pointer-events: visiblePainted;
    /* IE 9-10 doesn't have auto */
    pointer-events: auto;
}

/* visual tweaks */

.leaflet-container {
    background: #ddd;
    outline: 0;
}

.leaflet-container a {
    color: #0078a8;
}

.leaflet-container a.leaflet-active {
    outline: 2px solid orange;
}

.leaflet-zoom-box {
    border: 2px dotted #38f;
    background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
    font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */

.leaflet-bar {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
    border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
}

.leaflet-bar a:hover {
    background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
    cursor: default;
    background-color: #f4f4f4;
    color: #bbb;
}

.leaflet-touch .leaflet-bar a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font: bold 18px "Lucida Console", Monaco, monospace;
    text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
    font-size: 22px;
}

/* layers control */

.leaflet-control-layers {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    background: #fff;
    border-radius: 5px;
}

.leaflet-control-layers-toggle {
    background-image: url(images/layers.png);
    width: 36px;
    height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
    background-image: url(images/layers-2x.png);
    background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
    width: 44px;
    height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
    display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
    display: block;
    position: relative;
}

.leaflet-control-layers-expanded {
    padding: 6px 10px 6px 6px;
    color: #333;
    background: #fff;
}

.leaflet-control-layers-scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 5px;
}

.leaflet-control-layers-selector {
    margin-top: 2px;
    position: relative;
    top: 1px;
}

.leaflet-control-layers label {
    display: block;
}

.leaflet-control-layers-separator {
    height: 0;
    border-top: 1px solid #ddd;
    margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
    background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
    background: #fff;
    background: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
    padding: 0 5px;
    color: #333;
}

.leaflet-control-attribution a {
    text-decoration: none;
}

.leaflet-control-attribution a:hover {
    text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
    font-size: 11px;
}

.leaflet-left .leaflet-control-scale {
    margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
    margin-bottom: 5px;
}

.leaflet-control-scale-line {
    border: 2px solid #777;
    border-top: none;
    line-height: 1.1;
    padding: 2px 5px 1px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    background: #fff;
    background: rgba(255, 255, 255, 0.5);
}

.leaflet-control-scale-line:not(:first-child) {
    border-top: 2px solid #777;
    border-bottom: none;
    margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
    border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    border: 2px solid rgba(0, 0, 0, 0.2);
    background-clip: padding-box;
}

/* popup */

.leaflet-popup {
    position: absolute;
    text-align: center;
    margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
    padding: 1px;
    text-align: left;
    border-radius: 4px;
}

.leaflet-popup-content {
    margin: 13px 19px;
    line-height: 1.4;
}

.leaflet-popup-content p {
    margin: 18px 0;
}

.leaflet-popup-tip-container {
    width: 40px;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    overflow: hidden;
    pointer-events: none;
}

.leaflet-popup-tip {
    width: 17px;
    height: 17px;
    padding: 1px;

    margin: -10px auto 0;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: white;
    color: #333;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 4px 0 0;
    border: none;
    text-align: center;
    width: 18px;
    height: 14px;
    font: 16px/14px Tahoma, Verdana, sans-serif;
    color: #c3c3c3;
    text-decoration: none;
    font-weight: bold;
    background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
    color: #999;
}

.leaflet-popup-scrolled {
    overflow: auto;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
    zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
    width: 24px;
    margin: 0 auto;

    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
    margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
    border: 1px solid #999;
}

/* div icon */

/* .leaflet-div-icon {
    background: #fff;
    border: 1px solid #666;
} */

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
    position: absolute;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #222;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-clickable {
    cursor: pointer;
    pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    position: absolute;
    pointer-events: none;
    border: 6px solid transparent;
    background: transparent;
    content: "";
}

/* Directions */

.leaflet-tooltip-bottom {
    margin-top: 6px;
}

.leaflet-tooltip-top {
    margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
    left: 50%;
    margin-left: -6px;
}

.leaflet-tooltip-top:before {
    bottom: 0;
    margin-bottom: -12px;
    border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
    top: 0;
    margin-top: -12px;
    margin-left: -6px;
    border-bottom-color: #fff;
}

.leaflet-tooltip-left {
    margin-left: -6px;
}

.leaflet-tooltip-right {
    margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    top: 50%;
    margin-top: -6px;
}

.leaflet-tooltip-left:before {
    right: 0;
    margin-right: -12px;
    border-left-color: #fff;
}

.leaflet-tooltip-right:before {
    left: 0;
    margin-left: -12px;
    border-right-color: #fff;
}

/*!
 *     Copyright (c) 2012, Norkart AS
*      All rights reserved.
 *     Leaflet-MiniMap.(https://github.com/Norkart/Leaflet-MiniMap/)
 *     license: BSD-2-Clause
 *     version: v3.6.1
 */
.leaflet-control-minimap {
    border: rgba(255, 255, 255, 1) solid;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .65);
    border-radius: 3px;
    background: #f8f8f9;
    transition: all .6s
}

.leaflet-control-minimap a {
    background-color: rgba(255, 255, 255, 1);
    background-repeat: no-repeat;
    z-index: 99999;
    transition: all .6s
}

.leaflet-control-minimap a.minimized-bottomright {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border-radius: 0
}

.leaflet-control-minimap a.minimized-topleft {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border-radius: 0
}

.leaflet-control-minimap a.minimized-bottomleft {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    border-radius: 0
}

.leaflet-control-minimap a.minimized-topright {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    border-radius: 0
}

.leaflet-control-minimap-toggle-display {
    background-image: url(images/toggle.svg);
    background-size: cover;
    position: absolute;
    border-radius: 3px 0 0
}

.leaflet-oldie .leaflet-control-minimap-toggle-display {
    background-image: url(images/toggle.png)
}

.leaflet-control-minimap-toggle-display-bottomright {
    bottom: 0;
    right: 0
}

.leaflet-control-minimap-toggle-display-topleft {
    top: 0;
    left: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.leaflet-control-minimap-toggle-display-bottomleft {
    bottom: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.leaflet-control-minimap-toggle-display-topright {
    top: 0;
    right: 0;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg)
}

.leaflet-oldie .leaflet-control-minimap {
    border: 1px solid #999
}

.leaflet-oldie .leaflet-control-minimap a {
    background-color: #fff
}

.leaflet-oldie .leaflet-control-minimap a.minimized {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2)
}

.leaflet-pulsing-icon {
    border-radius: 100%;
    box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.75);
}

.leaflet-pulsing-icon:after {
    content: "";
    -webkit-border-radius: 100%;
    border-radius: 100%;
    height: 300%;
    width: 300%;
    position: absolute;
    margin: -100% 0 0 -100%;

}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

.e-measure-marker,
.e-measure-marker>* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.e-measure-marker.tip {
    position: absolute;
    top: 10px;
    left: 10px;
}

.e-measure-marker-container {
    width: auto !important;
    height: auto !important;
}

.e-measure-marker-container>div {
    padding-left: 6px;
    padding-right: 4px;
    line-height: 22px;
    border: 1px solid #cbcbcb;
    background-color: #fff;
    white-space: nowrap;
    cursor: default
}

.e-measure-marker-container.tip {
    top: 10px;
}

.e-measure-marker-container span {
    background-color: #fff;
}

.e-measure-marker-delete,
.e-measure-marker-remove {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-top: -2px;
    margin-left: 4px;
    cursor: pointer;
    vertical-align: middle;
    border: 1px solid transparent;
}

.e-measure-marker-delete:hover,
.e-measure-marker-remove:hover {
    border: 1px solid #c1c1c1
}

.e-measure-marker-remove {
    background: url('./images/remove.png') no-repeat center;
}

.e-measure-marker-delete {
    background: url('./images/delete.png') no-repeat center;
}

.e-measure-tip {
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #cbcbcb;
    line-height: 1;
    padding: 4px 6px;
    margin-left: 6px;
    margin-top: 20px;
}

.e-measure-area-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*!
 *     Copyright 2012 David Leaver
 *     Leaflet.markercluster.(https://github.com/Leaflet/Leaflet.markercluster/)
 *     license: MIT
 *     version: v1.3.0
 */
.marker-cluster-small {
    background-color: rgba(181, 226, 140, 0.6);
}

.marker-cluster-small div {
    background-color: rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
    background-color: rgba(241, 211, 87, 0.6);
}

.marker-cluster-medium div {
    background-color: rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
    background-color: rgba(253, 156, 115, 0.6);
}

.marker-cluster-large div {
    background-color: rgba(241, 128, 23, 0.6);
}

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
    background-color: rgb(181, 226, 140);
}

.leaflet-oldie .marker-cluster-small div {
    background-color: rgb(110, 204, 57);
}

.leaflet-oldie .marker-cluster-medium {
    background-color: rgb(241, 211, 87);
}

.leaflet-oldie .marker-cluster-medium div {
    background-color: rgb(240, 194, 12);
}

.leaflet-oldie .marker-cluster-large {
    background-color: rgb(253, 156, 115);
}

.leaflet-oldie .marker-cluster-large div {
    background-color: rgb(241, 128, 23);
}

.marker-cluster {
    background-clip: padding-box;
    border-radius: 20px;
}

.marker-cluster div {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-top: 5px;

    text-align: center;
    border-radius: 15px;
    font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
    line-height: 30px;
}

/*!
 *     Copyright 2012 David Leaver
 *     Leaflet.markercluster.(https://github.com/Leaflet/Leaflet.markercluster/)
 *     license: MIT
 *     version: v1.3.0
 */
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
    -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
    -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
    -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
    transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
    /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
    -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
    -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
    -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
    transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

html,
body,
#emap {
    height: 100%;
    margin: 0;
    padding: 0;
}

.egis-fade {
    transition: transform linear 0.1s;
}

/****信息窗口样式自定义****/
.leaflet-popup-content {
    font-size: 14px;
}

.leaflet-popup-content>h2 {
    padding-bottom: 4px;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
}

.leaflet-popup-content p {
    margin: 10px 0;
}

/****信息窗口样式自定义****/

/***柱状覆盖物****/
.marker-bar li {
    list-style: none;
    display: inline-block;
}

/***柱状覆盖物****/

/*leaflet.marker.highlight-src.css*/
.leaflet-marker-pane .light {
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    /* transform: translate(-50%, -50%); */
    background: transparent !important;
    border: transparent !important;
}

.leaflet-marker-pane .light .glow {
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: -webkit-radial-gradient(rgba(254, 211, 0, 1), rgba(255, 223, 67, 0) 70%);
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

img:hover+.light.temporary .glow,
.leaflet-marker-icon:hover+.light.temporary .glow,
.leaflet-marker-icon.highlight .glow {
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.leaflet-marker-pane .light .flare {
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: rgba(254, 211, 0, 1);
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

img:hover+.light.temporary .flare,
.leaflet-marker-icon:hover+.light.temporary .flare,
.leaflet-marker-icon.highlight .flare {
    width: 25%;
    height: 25%;
    opacity: 0.5;
}

@keyframes highlight {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0;
    }

    100% {
        width: 25%;
        height: 25%;
        opacity: 0.8;
    }
}

@keyframes highlight1 {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0;
    }

    100% {
        width: 100%;
        height: 100%;
        opacity: 0.4;
    }
}

.permanent .glow {
    animation: highlight1 2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.permanent .flare {
    animation: highlight 2s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*leaflet.marker.highlight-src.css*/

/****egis-loading样式自定义****/
.egis-loading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.egis-loading .egis-loading-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes egis-loading-style1 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.egis-loading-style1 {
    position: relative;
}

.egis-loading-style1 div {
    left: 92px;
    top: 0px;
    position: absolute;
    -webkit-animation: egis-loading-style1 linear 1s infinite;
    animation: egis-loading-style1 linear 1s infinite;
    width: 16px;
    height: 40px;
    border-radius: 40%;
    -webkit-transform-origin: 0px 100px;
    transform-origin: 0px 100px;
}

.egis-loading-style1 div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation-delay: -0.916666666666667s;
    animation-delay: -0.916666666666667s;
}

.egis-loading-style1 div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -0.833333333333333s;
    animation-delay: -0.833333333333333s;
}

.egis-loading-style1 div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -0.75s;
    animation-delay: -0.75s;
}

.egis-loading-style1 div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -0.666666666666667s;
    animation-delay: -0.666666666666667s;
}

.egis-loading-style1 div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -0.583333333333333s;
    animation-delay: -0.583333333333333s;
}

.egis-loading-style1 div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.egis-loading-style1 div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.416666666666667s;
    animation-delay: -0.416666666666667s;
}

.egis-loading-style1 div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -0.333333333333333s;
    animation-delay: -0.333333333333333s;
}

.egis-loading-style1 div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -0.25s;
    animation-delay: -0.25s;
}

.egis-loading-style1 div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -0.166666666666667s;
    animation-delay: -0.166666666666667s;
}

.egis-loading-style1 div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -0.083333333333333s;
    animation-delay: -0.083333333333333s;
}

.egis-loading-style1 div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.egis-loading-style1 {
    width: 50px !important;
    height: 50px !important;
    -webkit-transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
    transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}

@keyframes egis-loading-style2 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.egis-loading-style2 {
    position: relative;
}

.egis-loading-style2 div {
    position: relative;
    width: 160px;
    height: 160px;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 12px solid #000;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    -webkit-animation: egis-loading-style2 1s linear infinite;
    animation: egis-loading-style2 1s linear infinite;
}

.egis-loading-style2 {
    width: 50px;
    height: 50px;
    -webkit-transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
    transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}

@keyframes egis-loading-style3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.egis-loading-style3>div {
    -webkit-transform-origin: 100px 100px;
    transform-origin: 100px 100px;
    -webkit-animation: egis-loading-style3 4s infinite linear;
    animation: egis-loading-style3 4s infinite linear;
    position: relative;
}

.egis-loading-style3>div div {
    position: absolute;
    width: 26px;
    height: 192px;
    background: #ff727d;
    left: 100px;
    top: 100px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.egis-loading-style3>div div:nth-child(1) {
    width: 152px;
    height: 152px;
    border-radius: 50%;
}

.egis-loading-style3>div div:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) rotate(30deg);
    transform: translate(-50%, -50%) rotate(30deg);
}

.egis-loading-style3>div div:nth-child(4) {
    -webkit-transform: translate(-50%, -50%) rotate(60deg);
    transform: translate(-50%, -50%) rotate(60deg);
}

.egis-loading-style3>div div:nth-child(5) {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.egis-loading-style3>div div:nth-child(6) {
    -webkit-transform: translate(-50%, -50%) rotate(120deg);
    transform: translate(-50%, -50%) rotate(120deg);
}

.egis-loading-style3>div div:nth-child(7) {
    -webkit-transform: translate(-50%, -50%) rotate(150deg);
    transform: translate(-50%, -50%) rotate(150deg);
}

.egis-loading-style3>div div:nth-child(8) {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
}

.egis-loading-style3 {
    width: 50px !important;
    height: 50px !important;
    -webkit-transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
    transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}

@keyframes egis-loading-style4 {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.egis-loading-style4 {
    position: relative;
}

.egis-loading-style4 div {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 20px solid #fff;
    border-top-color: transparent !important;
    border-radius: 50%;
}

.egis-loading-style4 div {
    -webkit-animation: egis-loading-style4 1s linear infinite;
    animation: egis-loading-style4 1s linear infinite;
    top: 100px;
    left: 100px;
}

.egis-loading-style4 div:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.egis-loading-style4 {
    width: 50px !important;
    height: 50px !important;
    -webkit-transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
    transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}

@keyframes egis-loading-style5 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes egis-loading-style5_reverse {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.egis-loading-style5 {
    position: relative;
}

.egis-loading-style5 div {
    position: absolute;
    width: 160px;
    height: 160px;
    top: 20px;
    left: 20px;
    border-radius: 50%;
    border: 10px solid #000;
    border-left-color: transparent !important;
    border-right-color: transparent !important;
    -webkit-animation: egis-loading-style5 1s linear infinite;
    animation: egis-loading-style5 1s linear infinite;
}

.egis-loading-style5 div:nth-child(2) {
    width: 130px;
    height: 130px;
    top: 35px;
    left: 35px;
    -webkit-animation: egis-loading-style5_reverse 1s linear infinite;
    animation: egis-loading-style5_reverse 1s linear infinite;
    opacity: 0.8;
}

.egis-loading-style5 {
    width: 50px !important;
    height: 50px !important;
    -webkit-transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
    transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}

@keyframes egis-loading-style6 {
    0% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    33.33% {
        -webkit-transform: translate(102px, 2px);
        transform: translate(102px, 2px);
    }

    66.66% {
        -webkit-transform: translate(42px, 102px);
        transform: translate(42px, 102px);
    }

    100% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }
}

.egis-loading-style6 {
    position: relative;
}

.egis-loading-style6>div {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: 100px 100px;
    transform-origin: 100px 100px;
}

.egis-loading-style6>div>div {
    -webkit-animation: egis-loading-style6 1s linear infinite;
    animation: egis-loading-style6 1s linear infinite;
    position: absolute;
}

.egis-loading-style6>div>div div:nth-child(1) {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 12px solid #3be8b0;
}

.egis-loading-style6>div>div div:nth-child(2) {
    width: 17px;
    height: 51px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #3be8b0;
    border-radius: 0 0 0px 0px;
    position: absolute;
    top: 90px;
    left: 104px;
}

.egis-loading-style6 {
    width: 50px !important;
    height: 50px !important;
    -webkit-transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
    transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}

@keyframes egis-loading-style7 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.egis-loading-style7 {
    position: relative;
}

.egis-loading-style7 div {
    position: absolute;
    width: 20px;
    height: 80px;
    top: 60px;
    -webkit-animation: egis-loading-style7 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation: egis-loading-style7 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.egis-loading-style7 div:nth-child(1) {
    left: 30px;
    background: #f05125;
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.egis-loading-style7 div:nth-child(2) {
    left: 66px;
    background: #f05125;
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.egis-loading-style7 div:nth-child(3) {
    left: 110px;
    background: #f05125;
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.egis-loading-style7 div:nth-child(4) {
    left: 150px;
    background: #f05125;
}

.egis-loading-style7 {
    width: 50px !important;
    height: 50px !important;
    -webkit-transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
    transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}

@keyframes egis-loading-style8 {
    100% {
        opacity: 1;
    }
}

.egis-loading-style8 {
    position: relative;
}

.egis-loading-style8 div {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.4;
    -webkit-animation: egis-loading-style8 1s linear infinite;
    animation: egis-loading-style8 1s linear infinite;
}

.egis-loading-style8 div:nth-child(0) {
    left: 0px;
    top: 0px;
    animation-delay: 0s;
}

.egis-loading-style8 div:nth-child(1) {
    left: 66px;
    top: 0px;
    animation-delay: 0.125s;
}

.egis-loading-style8 div:nth-child(2) {
    left: 132px;
    top: 0px;
    animation-delay: 0.25s;
}

.egis-loading-style8 div:nth-child(3) {
    left: 0px;
    top: 66px;
    animation-delay: 0.875s;
}

.egis-loading-style8 div:nth-child(4) {
    left: 132px;
    top: 66px;
    animation-delay: 0.375s;
}

.egis-loading-style8 div:nth-child(5) {
    left: 0px;
    top: 132px;
    animation-delay: 0.75s;
}

.egis-loading-style8 div:nth-child(6) {
    left: 66px;
    top: 132px;
    animation-delay: 0.625s;
}

.egis-loading-style8 div:nth-child(7) {
    left: 132px;
    top: 132px;
    animation-delay: 0.5s;
}

.egis-loading-style8 {
    width: 49px !important;
    height: 49px !important;
    -webkit-transform: translate(-24.5px, -24.5px) scale(0.245) translate(24.5px, 24.5px);
    transform: translate(-24.5px, -24.5px) scale(0.245) translate(24.5px, 24.5px);
}

/****egis-loading样式自定义****/

.lineArrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 26px solid rgba(255, 0, 0, 1);
}

.flowEffect {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 100px;
    opacity: 1;
    margin-top: -2px;
    margin-left: -2px;
    z-index: 999;
}

/* div icon */
.leaflet-vertex-icon, .leaflet-middle-icon {
    background: #fff;
    border: 1px solid #666;
}


@-webkit-keyframes leaflet-ant-path-animation {
    from {
        stroke-dashoffset: 100%;
    }

    to {
        stroke-dashoffset: 0%;
    }
}

@-moz-keyframes leaflet-ant-path-animation {
    from {
        stroke-dashoffset: 100%;
    }

    to {
        stroke-dashoffset: 0%;
    }
}

@-ms-keyframes leaflet-ant-path-animation {
    from {
        stroke-dashoffset: 100%;
    }

    to {
        stroke-dashoffset: 0%;
    }
}

@-o-keyframes leaflet-ant-path-animation {
    from {
        stroke-dashoffset: 100%;
    }

    to {
        stroke-dashoffset: 0%;
    }
}

@keyframes leaflet-ant-path-animation {
    from {
        stroke-dashoffset: 100%;
    }

    to {
        stroke-dashoffset: 0%;
    }
}

path.leaflet-ant-path {
    fill: none;
    -webkit-animation: linear infinite leaflet-ant-path-animation;
    -moz-animation: linear infinite leaflet-ant-path-animation;
    -ms-animation: linear infinite leaflet-ant-path-animation;
    -o-animation: linear infinite leaflet-ant-path-animation;
    animation: linear infinite leaflet-ant-path-animation;
}

.leaflet-sbs-range {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 999;
}

.leaflet-sbs-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    width: 4px;
    background-color: #fff;
    pointer-events: none;
    z-index: 999;
}

.leaflet-sbs-range {
    appearance: none;
    display: inline-block !important;
    vertical-align: middle;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.25);
    min-width: 100px;
    cursor: pointer;
    pointer-events: none;
    z-index: 999;
}

.leaflet-sbs-range::-ms-fill-upper {
    background: transparent;
}

.leaflet-sbs-range::-ms-fill-lower {
    background: rgba(255, 255, 255, 0.25);
}

/* Browser thingies */

.leaflet-sbs-range::-moz-range-track {
    opacity: 0;
}

.leaflet-sbs-range::-ms-track {
    opacity: 0;
}

.leaflet-sbs-range::-ms-tooltip {
    display: none;
}

/* For whatever reason, these need to be defined
 * on their own so dont group them */

.leaflet-sbs-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    background: #fff;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    cursor: ew-resize;
    pointer-events: auto;
    border: 1px solid #ddd;
    background-image: url(./images/range-icon.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.leaflet-sbs-range::-ms-thumb {
    margin: 0;
    padding: 0;
    background: #fff;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    cursor: ew-resize;
    pointer-events: auto;
    border: 1px solid #ddd;
    background-image: url(./images/range-icon.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.leaflet-sbs-range::-moz-range-thumb {
    padding: 0;
    right: 0;
    background: #fff;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    cursor: ew-resize;
    pointer-events: auto;
    border: 1px solid #ddd;
    background-image: url(./images/range-icon.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 40px 40px;
}

.leaflet-sbs-range:disabled::-moz-range-thumb {
    cursor: default;
}

.leaflet-sbs-range:disabled::-ms-thumb {
    cursor: default;
}

.leaflet-sbs-range:disabled::-webkit-slider-thumb {
    cursor: default;
}

.leaflet-sbs-range:disabled {
    cursor: default;
}

.leaflet-sbs-range:focus {
    outline: none !important;
}

.leaflet-sbs-range::-moz-focus-outer {
    border: 0;
}