.top-level{
    font-size:16px;
    @media (max-width: 750px){
        font-size:12px;
    }
}

.body{
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.leaflet-control-attribution{
    visibility:hidden;
}

.leaflet-container {
    /* change background of unloaded tiles */
    background-color: #151515 !important;
}


.flex-container{
    display:flex;
    flex-direction:row;
}

.column{
    flex-direction:column;
}

/* define the styles of the background drawer interface  */
#bottom-interface {
    font-family: "Helvetica Neue", Arial, sans-serif;
    position: fixed;
    background-color: #1c1c1c;  /* Almost Black */
    border: none;
    color: #eaeaea;
    z-index:10000;
    width:fit-content;
    bottom:0;
    font-size:1rem;
}

.drawer-toggle {
    cursor:pointer;
    position: absolute;
    right: 0px;
    background-color: #1c1c1c;  /* Almost Black */
    border-top-right-radius: 0.625rem;
    transform:translateX(100%);
    bottom:0px;
    transform-origin:left;
    height:3rem;
    width:3rem;
    box-sizing:border-box;
  }

.drawer {
    position: fixed;
    left: 0;
    background: #262626;  /* Dark Gray */
    border-top-right-radius:0.625rem;
    max-height:100vh;
  }
  
.drawer-content.collapsed {
    max-width: 0px; /* adjust as needed */
    background-color: #111111;  /* Even Darker */
    margin:0;
}

.bi-arrow-down-short{
    transform:rotate(90deg)
}
.bi-arrow-up-short{
    transform:rotate(90deg)
}

.drawer-content{
    transition: all 0.3s ease-in-out;
    overflow-x:hidden;
    overflow-y:scroll;
    margin-left:0.625rem;
    margin-right:0.625rem;
    justify-content:space-between;
    display:flex;
    flex-direction:column;
    height:100%;
    scrollbar-width:none;
}

.drawer-content::-webkit-scrollbar{
    width:0px;
}

.arrow {
    /* Add your arrow styles */
    transition: transform 0.3s ease-in-out;
    color:white;
    font-size:2.5rem;
}

.modal-eclipse-logo-container{
    display:flex;
    flex-direction:row;
    justify-content:center;
    background-color: #1c1c1c;  /* Almost Black */
    padding:25px;
    box-sizing:border-box;

}

.eclipse-logo-container{
    background-color: #1c1c1c;  /* Almost Black */
    border-top-left-radius: 4.5rem;
    bottom:100%;
    display:flex;
    padding:0.625rem;
    padding-left:2rem;
    width:100%;
    justify-content:center;
    box-sizing:border-box;
    margin-bottom:0.625rem;
}

#eclipse-logo{
    max-width:auto;
    width:13.125rem;
    padding-right:1rem;
}

/* top level styles for individual interface zones  */
.interface{
    display:inline-block;
    padding: 0.625rem 1rem;
    margin-bottom:0.625rem;
    border-radius:0.625rem;
    background-color: #2a2a2a;  /* Dark Gray */
    box-shadow: 0px 0.25rem 0.375rem rgba(0, 0, 0, 0.3);  /* Add some shadow */
    width:100%;
    box-sizing:border-box;
}

.interface-button-wrapper{
    width:100%;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border-radius:0.625rem;
    margin-bottom:0.625rem;
}

.interface-button{
    flex: 1;
    color: black;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    margin:1px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    transition: filter 0.3s ease;
    transition: background-color 0.3s ease;
    filter: saturate(100%);
    align-items:center;
    justify-content: center;
    display:flex;
    font-size:1rem;
}

.false-state{
    background-color: #F6891e;  /* Orangered */
}

.false-state:hover {
    filter: saturate(150%);
}

.true-state{
    background-color: #D44228;  /* Darker Orangered */
}

.true-state:hover {
    filter: saturate(150%);
}

/* top half is just the slider */

.rc-slider{
    width:2rem !important;
}

/* background of the rail that the "track" slides along */
.rc-slider-rail {
    background-color: black !important;
    width:1.25rem !important;
}

/* use the gradient from red to orange for the track */
.rc-slider-track {
    /*background: linear-gradient(to bottom, #D44228, #F6891e) !important;*/
    background: linear-gradient(to top, #D44228, #F6891e) !important;
    width:1.25rem !important;
}

.custom-icon{
    color:#F6891e;
    font-weight:bold;
    font-size:1rem;
    text-align:center;
    vertical-align:middle;
    text-shadow: 0 0 0.5rem black;
    z-index:1000000000 !important;
    width:auto;
    transform: translate(80px,0); /*  TODO  is this necessary or can i REM it*/
}

/* the little dot at the end is called a handle  */
.rc-slider-handle {
    background:#F6891e !important;
    border: none !important;  /* Remove default border */
    opacity: 1.0 !important;
    width:1.25rem !important;
    margin-left:0 !important;
    /*margin-top:-5px !important;*/
    margin-bottom:-5px !important;
}

.rc-slider-handle-dragging {
    box-shadow:0 0 0 5px #F6891e !important;
}

/* bottom half contains individual zones */
.button-container{
    display:flex;
    flex-direction:column;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0.625rem 0;
    box-sizing:border-box;
    max-height: 70vh;
    overflow-y: scroll;
    border-radius:0.625rem;
    scrollbar-width:none;

    @media (max-width: 500px){
        max-height: 50vh;
    }
}

.button-container::-webkit-scrollbar{
    width:0px;
}

.interface-container{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    font-size:1.25rem;
    max-height:50vh;
}

/* Zone 1: playback */
#playback-bar{
    display:flex;
    width:100%;
}

#playback-buttons{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

#playback-slider{
    margin:0;
    flex:1;
    width: fit-content;
}

/* Zone 2: layer toggles */
#layer-toggles{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* Zone 3: bookmarks */
#bookmark-links{
    display:inline-flex;
    flex-direction:column;
    justify-content: space-around;
}

/* Zone 4: contour toggles */
.grid-button-container{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align:center;
    overflow:hidden;
    border-radius:0.625rem;
}

#contour-toggles{
    display:inline-flex;
    flex-direction:row;
}

.contour-button-grid-container{
    height:100%;
    display:inline-flex;
    flex-direction:column;
}

.leaflet-popup-content-wrapper{
    background:none !important;
    background-color: #2a2a2a !important;  /* Dark Gray */
    margin:0.625rem !important;
    color:white !important;
    padding:5px !important;
}
.leaflet-popup-content{
    /*
    width:650px !important;
    */
    user-select:none;
    font-size:16px !important;
    height:12.5rem !important;
    width: unset !important;
    height:unset !important;
    display: flex !important;
    flex-direction:row !important;
    align-items:center !important;
    margin:13px 13px 13px 20px !important;
    @media (max-width: 500px){
        flex-direction: column !important;
    }
}

.leaflet-popup-tip {
    width: 0 !important; /* Adjust width */
    height: 0 !important; /* Adjust height */
  }

.sdo-eclipse-image-container{
    display:inline-flex;
    width:200px;
    height:200px;
    flex: 0 0 200px;
    background-color:black;
}

.filmstrip-container{
    display:inline-flex;
    align-items: center;
    justify-content:space-between;
    border: 1px solid darkgray;
    border-left:none;
    border-right:none;
    padding-top:5px;
    padding-bottom:5px;
    gap:0.625rem;
}

.filmstrip-item-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    cursor:pointer;
    transition:transform 0.2s ease;
}

.filmstrip-item-container:hover{
    transform:translateY(-5px);
}

.eclipse-image-container{
    flex:0 0 auto;
}

.pop-up-sm{
    font-size:0.75em;
}

.pop-up-md{
    font-size:1em;
}

.pop-up-lg{
    font-size:1.5em;
}

.name-container{
    display: inline-flex;
    flex-direction:column;
    align-items: flex-start;
}


/* countdown styles */
.countdown-container{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:5px;
}

.countdown-prompt{
    display:inline-flex;
    /*align-items:flex-end;*/
    align-items:center;
    height:100%;
    font-size:1.25rem;
}

.countdown-wrapper{
    display:inline-flex;
    align-items:flex-end;
    height:100%;
    color:darkgray;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(5, auto auto); /* number and colon */
    grid-auto-rows: auto;
    grid-gap: 0;
    align-items: center;
    width:fit-content;
  }
  
  .number, .colon, .label, .label-empty {
    font-size: 1.75em;
    text-align: center;
  }

  .colon{
    grid-column-end: span none;
  }
  
  .label {
    grid-column-end: span auto;
    font-size: 0.75rem;
  }
  
  .label-empty {
    grid-column-end: span auto;
  }


  @keyframes alternateOpacity {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .duration-indicator{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items: center;
        padding:5px;
        white-space: nowrap;
  }

  .eclipse-info-container{
        display:flex;
        flex-direction:row;
        justify-content:space-around;
        align-items:baseline;
        gap: 0.625rem;
        /*
        @media (max-width: 500px){
            flex-direction: column;
            align-items:unset;
        }
        */
  }
.rc-slider {
  position: relative;
  width: 100%;
  height: 14px;
  padding: 5px 0;
  border-radius: 6px;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #e9e9e9;
  border-radius: 6px;
}
.rc-slider-track {
  position: absolute;
  height: 4px;
  background-color: #abe2fb;
  border-radius: 6px;
}
.rc-slider-track-draggable {
  z-index: 1;
  box-sizing: content-box;
  background-clip: content-box;
  border-top: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid rgba(0, 0, 0, 0);
  transform: translateY(-5px);
}
.rc-slider-handle {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  background-color: #fff;
  border: solid 2px #96dbfa;
  border-radius: 50%;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  opacity: 0.8;
  touch-action: pan-x;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
}
.rc-slider-handle:focus {
  outline: none;
  box-shadow: none;
}
.rc-slider-handle:focus-visible {
  border-color: #2db7f5;
  box-shadow: 0 0 0 3px #96dbfa;
}
.rc-slider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  color: #999;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  background-color: #fff;
  border: 2px solid #e9e9e9;
  border-radius: 50%;
  cursor: pointer;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-dot-reverse {
  margin-right: -4px;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  background-color: #fff;
  border-color: #ccc;
  box-shadow: none;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  width: 4px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-track {
  bottom: 0;
  left: 5px;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track-draggable {
  border-top: 0;
  border-bottom: 0;
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-left: 5px solid rgba(0, 0, 0, 0);
  transform: translateX(-5px);
}
.rc-slider-vertical .rc-slider-handle {
  position: absolute;
  z-index: 1;
  margin-top: 0;
  margin-left: -5px;
  touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  width: 4px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-dot {
  margin-left: -2px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  display: block !important;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  display: block !important;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    transform: scale(0, 0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 50% 100%;
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform: scale(1, 1);
    transform-origin: 50% 100%;
  }
  100% {
    transform: scale(0, 0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
}
.rc-slider-tooltip {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
  min-width: 24px;
  height: 24px;
  padding: 6px 2px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}

.EkXlLMjbwiuUZnhn_xH4{
    color:white;
    text-align:center;
    vertical-align:middle;
    text-shadow: 0 0 2px black;
}

.fIpwOXxSBDZ635odf_Eo{
    color:#F6891e;
    font-weight:bold;
    font-size:16pt;
    text-align:center;
    vertical-align:middle;
    text-shadow: 0 0 8px black;
    z-index:1000000000 !important;
    width:auto;
    transform: translate(80px,0);
}


.tfMx8gAbv8nOqKGwjauk{
    transform: translate(0, -50%);
}

.dyUMBiN2QLCzmfDm0iis {
    width: 8px;
    height: 8px;
    background-color:#F6891e;
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top:5px;
    z-index:1000000000 !important;
  }

/* Popup.module.css */
.yQP0r8Gw95VhA6UVH00F {
    border-color:#F6891e;
    color:white;
    left:-200px;
    background-color: #1c1c1c;  /* Dark Gray */
    width:fit-content;
}

.b2NqsibhRribxjvP70Ft{
    width:fit-content;
}

.IbmrdVzCnMeNveglBNL7{
    flex:1;
    display:flex;
    flex-direction: column;
    margin-left:15px;
    height:200px;
    justify-content: space-between;
}

.IbmrdVzCnMeNveglBNL7 hr{
    width:95%;
    stroke-width: 1px;
}

.IbmrdVzCnMeNveglBNL7 h3{
    margin-top:0px;
    margin-bottom:0px;
}

.VAi62QudgCtAAu4wA5iP{
    display:flex;
    font-family: "Helvetica Neue", Arial, sans-serif;
    align-items:center;
}

.YwRBEuxYN1iyHU7fRVjN{
    display:flex;
    color:darkgray;
    align-content: flex-end;
}

.OJyunT20zWwaSpMYf6qq{
    margin-right:2px;
    display:flex;
    align-items:center;
    color:white;
}
/* 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;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* 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;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.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;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.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;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-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-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;
	}
svg.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,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	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,
.leaflet-bar a:focus {
	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(011a678e3efe41981754.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(4a4ee777ddc0d4cedee4.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;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(1e8408af1a34bdf61457.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.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;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.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: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-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;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-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-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-interactive {
	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;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

