
/* start https://en.wikipedia.org/w/load.php?debug=true&lang=en&modules=ext.kartographer.style&only=styles&skin=vector-2022&version=&* */


/**
 * CSS Classes Definitions
 *
 * .mw-kartographer-container:
 *     Contains either a framed or frameless .mw-kartographer-map.
 *     When framed this class is at the .thumb level.
 *     When frameless this class is at the a.mw-kartographer-map level
 *
 * .mw-kartographer-maplink:
 *     Represents a <maplink> element as output by the Parser.
 *     May or may not be an interactive link yet (meanwhile JS gets loaded).
 *
 * .mw-kartographer-map
 *    Represents a <mapframe> element as output by the Parser.
 *    May or may not be an interactive map yet (meanwhile JS gets loaded)
 *
 * .mw-kartographer-link
 *     Represents an interactive map link.
 *     The class is added when the element becomes an interactive link.
 *     May or may not be a <maplink> or <mapframe> (if created via Developer API)
 *
 * .mw-kartographer-interactive
 *    Represents an interactive map.
 *    The class is added when the element becomes an interactive map.
 *
 * .mw-kartographer-static
 *    Represents an interactive map that was made static afterward because the
 *    viewport is too small.
 *
 * .mw-kartographer-mapDialog-map
 *    Represents an interactive map within a full screen map dialog.
 *
 * .mw-kartographer-fullScreen
 *    Fullscreen button shown on all <mapframe> elments (static and interactive)
 *
 * In practice:
 *
 * - <maplink> will have .mw-kartographer-maplink first,
 *                       .mw-kartographer-link then.
 *
 * - <mapframe> will have .mw-kartographer-map first,
 *                        .mw-kartographer-link then, if displaying static snapshot.
 *                        .mw-kartographer-interactive then, if directly interactive.
 */
.mw-kartographer-error {
  display: inline-block;
  background: #ffc0cb;
}
.mw-kartographer-error .mw-kartographer-error-log {
  background: #f8f9fa;
  font-family: monospace;
  line-height: 1.2em;
  margin: 0;
  padding: 0.6em 3em;
}
.mw-kartographer-error .mw-kartographer-error-log .mw-collapsible-toggle-li {
  margin-left: -2em;
}
.mw-kartographer-interactive .leaflet-control-container .leaflet-control.leaflet-control-scale-line {
  /* @noflip */
  direction: ltr;
}
.mw-kartographer-interactive .leaflet-control-container .leaflet-control.leaflet-control-attribution {
  direction: ltr;
}
.mw-kartographer-static .leaflet-control-container .leaflet-top .leaflet-control {
  display: none;
}
.mw-kartographer-static .leaflet-control-container .leaflet-top .leaflet-control-static {
  display: block;
}
.mw-kartographer-static .leaflet-clickable {
  pointer-events: none;
}
.mw-kartographer-static.leaflet-container {
  cursor: default;
}
.mw-kartographer-fullScreen {
  position: absolute;
  top: 10px;
  right: 10px;
  margin-right: 0;
}
.mw-kartographer-map {
  direction: ltr;
  position: relative;
  display: block;
  font-size: 14px;
}
.mw-kartographer-map.mw-kartographer-link {
  display: block;
}
.mw-kartographer-map:not( .mw-kartographer-interactive ) > img {
  box-sizing: border-box;
  max-width: 100%;
  object-position: center center;
  object-fit: cover;
}
.mw-kartographer-container.mw-kartographer-full {
  box-sizing: border-box;
  clear: both;
  width: 100%;
}
.mw-kartographer-container.mw-kartographer-full > img {
  width: 100%;
}
.mw-kartographer-container.mw-kartographer-full .thumbinner {
  width: 100%;
  box-sizing: border-box;
}
.mw-kartographer-container.mw-kartographer-full .thumbinner > a > img {
  width: 100%;
}
.mw-kartographer-container:not( .mw-kartographer-full ) {
  max-width: 100%;
  /* Fixes `align=center` use case */
}
.mw-kartographer-container:not( .mw-kartographer-full ).center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.mw-kartographer-container:not( .mw-kartographer-full ).thumb .thumbinner {
  max-width: 100%;
}
.mw-kartographer-container:not( .mw-kartographer-full ).thumb .thumbinner > .mw-kartographer-map {
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  max-width: 100%;
}
/* @noflip */
a.floatright {
  float: right;
  clear: right;
  margin: 0 0 1em 1em;
}
/* @noflip */
a.floatleft {
  float: left;
  clear: left;
  margin: 0.3em 0.5em 0.5em 0;
}
@media print {
  .mw-kartographer-fullScreen,
  .leaflet-bar {
    display: none;
  }
}

/* stylelint-disable no-descending-specificity */
.mw-kartographer-link,
.mw-kartographer-maplink {
  cursor: pointer;
}
a.mw-kartographer-link:not( .mw-kartographer-autostyled ):not( .mw-kartographer-map ):not( .no-icon ),
.mw-kartographer-maplink:not( .mw-kartographer-autostyled ):not( .mw-kartographer-map ):not( .no-icon ) {
  /**
		 * These two files were copied from OOUI repository after the build process
		 * generated the progressive icons.
		 *
		 * See ./images/COPYING
		 *
		 * The master version of the icon is at:
		 * https://gerrit.wikimedia.org/g/oojs/ui/+/master/src/themes/wikimediaui/images/icons/mapPin.svg
		 */
  background-image: url(mapPin-progressive.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-size: contain;
  padding-left: 20px;
}
a.mw-kartographer-link.no-icon,
.mw-kartographer-maplink.no-icon {
  background: none;
  padding-left: 0;
}
body:not( .skin-monobook ) .mw-kartographer-map .mw-kartographer-fullScreen .oo-ui-iconElement > .oo-ui-buttonElement-button {
  padding-right: 0;
}
.mw-kartographer-map:hover .mw-kartographer-fullScreen .oo-ui-buttonElement-button {
  background-color: #fff;
}
/**
 * Applied only when JS is enabled.
 */
.client-js .leaflet-grab,
.client-js .mw-kartographer-map {
  cursor: pointer;
}
.client-js .leaflet-grab.mw-kartographer-interactive,
.client-js .mw-kartographer-map.mw-kartographer-interactive {
  cursor: move;
  cursor: url(grab.cur), default;
  cursor: -webkit-grab;
  cursor: grab;
}
.client-js .leaflet-grab.mw-kartographer-interactive:active,
.client-js .mw-kartographer-map.mw-kartographer-interactive:active {
  cursor: url(grabbing.cur), default;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.client-js .mw-kartographer-maplink:not( .mw-kartographer-link ):not( .ve-ce-focusableNode ),
.client-js .mw-kartographer-map:not( .mw-kartographer-link ):not( .mw-kartographer-interactive ) {
  pointer-events: none;
  cursor: default;
}
/**
 * If `$wgKartographerUseMarkerStyle = true`.
 */
a.mw-kartographer-autostyled {
  color: #fff;
  display: inline-block;
  position: relative;
  top: -0.08em;
  box-sizing: content-box;
  height: 0.85em;
  margin-left: 0;
  border-radius: 1px;
  padding: 0.24em 0.42em;
  font-size: 0.85em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
}
a.mw-kartographer-autostyled:visited {
  color: #fff;
}

/* == Attribution control == */
/**
 * ###IMPORTANT:##
 * If editing this file, please also edit the respective file in the MinervaNeue skin.
 * ####
 *
 * This file is a LESS @import match for "mediawiki.skin.variables.less"
 * when Vector 2022 is the active skin.
 * Please note, that legacy Vector is handled by
 * "mediawiki.less.legacy/mediawiki.skin.variables.less".
 *
 * Please also note, that both current Codex, design system for Wikimedia based skins,
 * Vector 2022 and Minerva Neue are using the same variable values respectively in their
 * repositories.
 */
/* stylelint-disable @stylistic/indentation */
/**
 * Codex design tokens. This imports Less variables, some of which refer to CSS variables.
 * The CSS variable values are imported in CSSCustomProperties.less.
 */
/* Static snapshot */
.mw-kartographer-attribution {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0 5px;
  box-shadow: none;
}
/* Static + Interactive */
.mw-kartographer-attribution,
.leaflet-right.leaflet-bottom {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-base, #202122);
  max-width: 100%;
}
/* Interactive */
.leaflet-right.leaflet-bottom .leaflet-control.leaflet-control-attribution {
  /** Override initial properties */
  background-color: var(--background-color-transparent, transparent);
  float: none;
  clear: none;
}
/* Static + Interactive */
.mw-kartographer-attribution,
.leaflet-right.leaflet-bottom .leaflet-control.leaflet-control-attribution {
  font-size: 10px;
  font-family: sans-serif;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  /* Removes ellipsis on hover */
}
.mw-kartographer-attribution:hover,
.leaflet-right.leaflet-bottom .leaflet-control.leaflet-control-attribution:hover {
  overflow: hidden;
  text-overflow: clip;
  white-space: normal;
}
.mw-kartographer-attribution a,
.leaflet-right.leaflet-bottom .leaflet-control.leaflet-control-attribution a {
  color: #0645ad;
}
/* Static + Interactive */
.mw-kartographer-map:hover .mw-kartographer-attribution,
.mw-kartographer-interactive:hover .leaflet-right.leaflet-bottom {
  background-color: rgba(255, 255, 255, 0.9);
}

/* == Scale control == */
/* Scale Line style */
.leaflet-control-scale.leaflet-control .leaflet-control-scale-line {
  background-color: transparent;
  padding: 0 5px;
  font-size: 10px;
  font-family: sans-serif;
}
.leaflet-right.leaflet-bottom {
  /** Override initial properties */
}
.leaflet-right.leaflet-bottom .leaflet-control.leaflet-control-scale {
  float: left;
  clear: none;
  margin: 1px 5px;
  line-height: initial;
}
.leaflet-right.leaflet-bottom .leaflet-control.leaflet-control-scale .leaflet-control-scale-line {
  /* @noflip */
  direction: ltr;
  /* Scale Line style on hover */
  /** Override initial properties */
}
.leaflet-right.leaflet-bottom .leaflet-control.leaflet-control-scale .leaflet-control-scale-line:hover {
  border-color: #000;
  cursor: pointer;
}
.leaflet-right.leaflet-bottom .leaflet-control.leaflet-control-scale .leaflet-control-scale-line:not( :first-child ) {
  border: 1px solid #000;
  border-top: 0;
  margin-top: 0;
}

/**
 * ###IMPORTANT:##
 * If editing this file, please also edit the respective file in the MinervaNeue skin.
 * ####
 *
 * This file is a LESS @import match for "mediawiki.skin.variables.less"
 * when Vector 2022 is the active skin.
 * Please note, that legacy Vector is handled by
 * "mediawiki.less.legacy/mediawiki.skin.variables.less".
 *
 * Please also note, that both current Codex, design system for Wikimedia based skins,
 * Vector 2022 and Minerva Neue are using the same variable values respectively in their
 * repositories.
 */
/* stylelint-disable @stylistic/indentation */
/**
 * Codex design tokens. This imports Less variables, some of which refer to CSS variables.
 * The CSS variable values are imported in CSSCustomProperties.less.
 */
/* stylelint-disable no-descending-specificity */
.mw-kartographer-interactive {
  z-index: 0;
  /* Leaflet Popups */
  /* Leaflet Controls */
}
.mw-kartographer-interactive.leaflet-container {
  color: var(--color-base, #202122);
  font-size: 14px;
  font-family: sans-serif;
}
.mw-kartographer-interactive.leaflet-container .marker-description img {
  display: block;
  max-width: 250px;
  height: auto;
  max-height: 250px;
  margin: 5px auto 0 auto;
  object-fit: cover;
}
.mw-kartographer-interactive.leaflet-container .marker-description .tleft,
.mw-kartographer-interactive.leaflet-container .marker-description .tright {
  float: none;
  margin: 0;
}
.mw-kartographer-interactive.leaflet-container .marker-description .thumbinner {
  width: auto !important;
  /* stylelint-disable-line declaration-no-important */
}
.mw-kartographer-interactive.leaflet-container .marker-description .thumbinner img {
  max-width: 100%;
  margin-top: 0;
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a {
  color: var(--color-progressive, #36c);
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a:hover {
  color: var(--color-progressive--hover, #3056a9);
  text-decoration: underline;
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a:active {
  color: var(--color-progressive--active, #233566);
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a:focus {
  color: var(--color-progressive--focus, #36c);
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a.new {
  color: var(--color-destructive, #bf3c2c);
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a.new:visited {
  color: var(--color-destructive--visited, #9f5555);
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a.new:hover {
  color: var(--color-destructive--hover, #9f3526);
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a.new:active {
  color: var(--color-destructive--active, #612419);
}
.mw-kartographer-interactive.leaflet-container .leaflet-map-pane a.new:focus {
  color: var(--color-destructive--focus, #36c);
}
.mw-kartographer-interactive .leaflet-popup-content {
  padding: 12px;
}
.mw-kartographer-interactive .leaflet-popup-content .marker-title {
  text-align: center;
}
.mw-kartographer-interactive .leaflet-popup-content .marker-title > a {
  font-weight: bold;
}
.mw-kartographer-interactive .leaflet-popup-content .marker-description {
  text-align: center;
}
.mw-kartographer-interactive .leaflet-popup-content-wrapper {
  padding: 0;
}
.mw-kartographer-interactive .leaflet-popup-content-wrapper,
.mw-kartographer-interactive .map-legends,
.mw-kartographer-interactive .map-tooltip {
  border-radius: 2px;
}
.mw-kartographer-interactive.leaflet-touch .leaflet-bar {
  border: 0;
}
.mw-kartographer-interactive .leaflet-draw-actions,
.mw-kartographer-interactive .leaflet-control-layers,
.mw-kartographer-interactive .leaflet-bar {
  background-color: var(--background-color-interactive-subtle, #f8f9fa);
  border: 0;
  box-shadow: none;
}
.mw-kartographer-interactive .leaflet-draw-toolbar .draw-actions {
  background-color: unset;
}
.mw-kartographer-interactive .leaflet-draw-actions a,
.mw-kartographer-interactive .leaflet-bar > a {
  background-color: var(--background-color-interactive-subtle, #f8f9fa);
  color: var(--color-base, #202122);
  box-sizing: content-box;
  border: 1px solid var(--border-color-base, #a2a9b1);
  border-radius: 2px;
  border-bottom-width: 0;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 100ms;
}
.mw-kartographer-interactive .leaflet-draw-actions a:hover,
.mw-kartographer-interactive .leaflet-bar > a:hover {
  background-color: var(--background-color-base, #fff);
  border-bottom-width: 0;
  color: var(--color-base--hover, #404244);
  border-color: var(--border-color-base, #a2a9b1);
}
.mw-kartographer-interactive .leaflet-draw-actions a:active,
.mw-kartographer-interactive .leaflet-bar > a:active {
  background-color: var(--background-color-interactive, #eaecf0);
  color: var(--color-emphasized, #101418);
  border-color: var(--border-color-interactive, #72777d);
}
.mw-kartographer-interactive .leaflet-draw-actions a:focus,
.mw-kartographer-interactive .leaflet-bar > a:focus {
  border-color: var(--border-color-progressive--focus, #36c);
  outline: 1px solid transparent;
  box-shadow: inset 0 0 0 1px var(--box-shadow-color-progressive--focus, #36c), inset 0 0 0 2px var(--box-shadow-color-inverted, #fff);
}
.mw-kartographer-interactive .leaflet-draw-actions a:only-of-type,
.mw-kartographer-interactive .leaflet-bar > a:only-of-type {
  border-radius: 2px;
  border-bottom-width: 1px;
}
.mw-kartographer-interactive .leaflet-draw-actions a:only-of-type:hover,
.mw-kartographer-interactive .leaflet-bar > a:only-of-type:hover {
  border-radius: 2px;
}
.mw-kartographer-interactive .leaflet-draw-actions a:first-child:not( :only-of-type ),
.mw-kartographer-interactive .leaflet-bar > a:first-child:not( :only-of-type ) {
  border-radius: 2px 2px 0 0;
}
.mw-kartographer-interactive .leaflet-draw-actions a:last-child,
.mw-kartographer-interactive .leaflet-bar > a:last-child {
  border-bottom: 1px solid;
  border-color: var(--border-color-base, #a2a9b1);
}
.mw-kartographer-interactive .leaflet-draw-actions a:last-child:hover,
.mw-kartographer-interactive .leaflet-bar > a:last-child:hover {
  border-color: var(--border-color-base, #a2a9b1);
  border-bottom-width: 1px;
}
.mw-kartographer-interactive .leaflet-draw-actions a:last-child:active,
.mw-kartographer-interactive .leaflet-bar > a:last-child:active {
  border-bottom-width: 1px;
  border-color: var(--border-color-interactive, #72777d);
}
.mw-kartographer-interactive .leaflet-draw-actions a:last-child:not( :only-of-type ),
.mw-kartographer-interactive .leaflet-bar > a:last-child:not( :only-of-type ) {
  border-radius: 0 0 2px 2px;
}
.mw-kartographer-interactive .leaflet-bar > .oo-ui-icon-close,
.mw-kartographer-interactive .leaflet-bar > .oo-ui-icon-fullScreen {
  background-position: center;
}
.mw-kartographer-interactive .leaflet-control-attribution::after,
.mw-kartographer-interactive .leaflet-control-zoom-in,
.mw-kartographer-interactive .leaflet-control-zoom-out,
.mw-kartographer-interactive .leaflet-popup-close-button,
.mw-kartographer-interactive .leaflet-control-layers-toggle,
.mw-kartographer-interactive .map-tooltip .close,
.mw-kartographer-interactive .leaflet-container.dark .map-tooltip .close,
.mw-kartographer-interactive .mapbox-icon {
  opacity: 1;
}



/* end   https://en.wikipedia.org/w/load.php?debug=true&lang=en&modules=ext.kartographer.style&only=styles&skin=vector-2022&version=&* */
