.svelte-2wx9ab{box-sizing:border-box}.bg.svelte-2wx9ab{position:fixed;z-index:1000;top:0;left:0;display:flex;flex-direction:column;justify-content:center;width:100vw;height:100vh;background:rgba(0, 0, 0, 0.66)}.window-wrap.svelte-2wx9ab{position:relative;margin:2rem;max-height:100%}.window.svelte-2wx9ab{position:relative;width:40rem;max-width:100%;max-height:100%;margin:2rem auto;color:black;border-radius:0.5rem;background:white}.content.svelte-2wx9ab{position:relative;padding:1rem;max-height:calc(100vh - 4rem);overflow:auto}.close.svelte-2wx9ab{display:block;box-sizing:border-box;position:absolute;z-index:1000;top:1rem;right:1rem;margin:0;padding:0;width:1.5rem;height:1.5rem;border:0;color:black;border-radius:1.5rem;background:white;box-shadow:0 0 0 1px black;transition:transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                background 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);-webkit-appearance:none}.close.svelte-2wx9ab:before,.close.svelte-2wx9ab:after{content:'';display:block;box-sizing:border-box;position:absolute;top:50%;width:1rem;height:1px;background:black;transform-origin:center;transition:height 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
                background 0.2s cubic-bezier(0.25, 0.1, 0.25, 1)}.close.svelte-2wx9ab:before{-webkit-transform:translate(0, -50%) rotate(45deg);-moz-transform:translate(0, -50%) rotate(45deg);transform:translate(0, -50%) rotate(45deg);left:0.25rem}.close.svelte-2wx9ab:after{-webkit-transform:translate(0, -50%) rotate(-45deg);-moz-transform:translate(0, -50%) rotate(-45deg);transform:translate(0, -50%) rotate(-45deg);left:0.25rem}.close.svelte-2wx9ab:hover{background:black}.close.svelte-2wx9ab:hover:before,.close.svelte-2wx9ab:hover:after{height:2px;background:white}.close.svelte-2wx9ab:focus{border-color:#3399ff;box-shadow:0 0 0 2px #3399ff}.close.svelte-2wx9ab:active{transform:scale(0.9)}.close.svelte-2wx9ab:hover,.close.svelte-2wx9ab:focus,.close.svelte-2wx9ab:active{outline:none}/*------------------------------------*\
     # COLORS
 \*------------------------------------*/
:root {

/** Brand Colors **/
--color-primary-light: hsl(173, 81%, 94%);
--color-primary: hsl(173, 80%, 80%);
--color-primary-dark: hsl(177, 61%, 56%);
--color-primary-xdark: hsl(177, 61%, 40%); /* Just for links */
--color-primary-xxdark: hsl(177, 61%, 30%); /* Just for links */

--color-secondary-light: hsl(348, 100%, 96%);
--color-secondary: hsl(348, 100%, 88%);
--color-secondary-dark: hsl(348, 75%, 69%);

--color-tertiary-light: hsl(40, 100%, 92%);
--color-tertiary: hsl(40, 100%, 77%);
--color-tertiary-dark: hsl(40, 88%, 58%);


/** Neutral Colors **/
--color-black: hsl(180, 6%, 7%);
--color-grey-xdark: hsl(171, 5%, 30%);
--color-grey-dark: hsl(171, 5%, 50%);
--color-grey: hsl(170, 6%, 80%);
--color-grey-light: hsl(150, 5%, 92%);
--color-grey-xlight: hsl(0, 0%, 98%);
--color-white: hsl(0, 0%, 100%);

/** State Colors **/
--color-error-light: hsl(5, 96%, 80%);
--color-error: hsl(5, 76%, 61%);
--color-success-light: hsl(89, 100%, 80%);
--color-success: hsl(88, 76%, 60%);

/** Element Colors **/
--link-color: var(--color-primary-xdark);
--link-color--hover: var(--color-primary-xxdark);

/** Opacity **/
--opacity-full: 100%;
--opacity-dark: 90%;
--opacity-mid: 75%;
--opacity-light: 50%;


/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
--font-family-primary: "Outfit";
--font-family-secondary: "Merriweather";

--font-size-xxl: 2.5rem;
--font-size-xl: 1.75rem;
--font-size-lg: 1.3rem;
--font-size-md: 1rem;
--font-size-sm: 0.9rem;

--font-weight-regular: 400;
--font-weight-bold: 700;

--line-height-body: 1.5;

/*------------------------------------*\
    #BORDERS
\*------------------------------------*/
--border-width: 1px;
--border-width-thick: 2px;
--border-width-xthick: 4px;
--border-radius-xs: 0.5rem;
--border-radius-sm: 1rem;
--border-radius: 2rem;
--border-radius-circle: 50%;

/*------------------------------------*\
    #SPACING
\*------------------------------------*/
--spacer-xxl: 2rem;
--spacer-xl: 1.5rem;
--spacer-lg: 1rem;
--spacer-md: 0.75rem;
--spacer-sm: 0.5rem;
--spacer-xs: 0.25rem;

/*------------------------------------*\
    #BREAKPOINTS
\*------------------------------------*/
--media-sm: 25em;
--media-md: 48em;
--media-lg: 60em;
--media-xl: 75em;


/*------------------------------------*\
|   #EFFECTS
\*------------------------------------*/

--shadow: 0.25em 0.25em 0 1px;
--shadow-sm: 0.15em 0.15em 0 0;
}
* {
    box-sizing: border-box;
}

body {
  background: var(--bg-color-accent);
}

html, body, main {
    width: 100%;
}

html, main {
    height: 100%;
}

html {
    overflow-y: scroll;
}

html {
    --bg-color: var(--color-grey-xlight);
    --bg-color-accent: var(--color-grey-light);
    --text-color: var(--color-black);
    --text-color-quiet: var(--color-grey-dark);
    --border-color: var(--text-color);

    font-size: max(1rem, 18px);
    font-family: var(--font-family-primary);
}

/* Can't seem to use CSS variables in media queries */
@media screen and (max-width: 120ch) {
    body {
        height: 100%;
    }
}

:is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-family-secondary);
}

h1, .h1 {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    margin: var(--spacer-xl) 0;
}

h2, .h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin: var(--spacer-lg) 0;
}

h3, .h3 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin: var(--spacer-md) 0;
}

h4, .h4, h5, h6 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    margin: var(--spacer-sm) 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* TODO: apply variables to all the elements (maybe look at NHS/GOV frontend for inspiration */
/* merriweather-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/merriweather-v33-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-300italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/merriweather-v33-latin_latin-ext-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/merriweather-v33-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/merriweather-v33-latin_latin-ext-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/merriweather-v33-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-500italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/merriweather-v33-latin_latin-ext-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/merriweather-v33-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-600italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/merriweather-v33-latin_latin-ext-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/merriweather-v33-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-700italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/merriweather-v33-latin_latin-ext-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-800 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/merriweather-v33-latin_latin-ext-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-800italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/merriweather-v33-latin_latin-ext-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-900 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/merriweather-v33-latin_latin-ext-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* merriweather-900italic - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/merriweather-v33-latin_latin-ext-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-100 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/outfit-v15-latin_latin-ext-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-200 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/outfit-v15-latin_latin-ext-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-v15-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v15-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/outfit-v15-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/outfit-v15-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/outfit-v15-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-800 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/outfit-v15-latin_latin-ext-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* outfit-900 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/outfit-v15-latin_latin-ext-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.pswp__caption__center.pswp__caption__right.svelte-mzjapj{margin-right:0;text-align:right;padding-right:2em}.scroller-page.svelte-1co3lp{--timeline-proportion:max(50ch, 50%);--map-proportion:calc(100% - var(--timeline-proportion));position:relative;width:100%;height:100%;background:var(--bg-color-accent)
  }.map-wrapper.svelte-1co3lp{z-index:10;position:fixed;top:0;bottom:0;left:0;width:var(--map-proportion)}.timeline-wrapper.svelte-1co3lp{--timeline-inline-spacer:var(--spacer-lg);z-index:1;position:relative;left:var(--map-proportion);height:100%;width:var(--timeline-proportion)}@media(max-width: 120ch){.scroller-page.svelte-1co3lp{--map-proportion:max(30vh, 20ch);--timeline-proportion:calc(100% - var(--map-proportion))}.map-wrapper.svelte-1co3lp{top:0;left:0;right:0;width:100%;bottom:var(--map-proportion);height:var(--map-proportion)}.timeline-wrapper.svelte-1co3lp{left:0;right:0;width:100%;top:var(--map-proportion);height:var(--timeline-proportion)}}.trip-outro.svelte-bv0t1v{position:relative;width:100%;margin-block-start:60%;padding-block-end:var(--spacer-lg);text-align:center}.trip-intro.svelte-1uivfhp.svelte-1uivfhp{position:relative;width:100%;overflow:hidden;margin-block:var(--spacer-xxl);background:transparent;text-align:center}.trip-intro.svelte-1uivfhp.svelte-1uivfhp:has(> img){mask:linear-gradient(black 92%, rgba(0,0,0,0.6) 96%, transparent 100%)}img+.content.svelte-1uivfhp .cover-image-overlay.svelte-1uivfhp{position:absolute;bottom:0;width:100%;height:130%;backdrop-filter:brightness(0%) saturate(110%) opacity(90%);mask:linear-gradient(transparent 0%, rgba(0,0,0,0.25) 10%, rgba(0,0,0,0.5) 85%, transparent 100%)}.trip-intro.svelte-1uivfhp img.svelte-1uivfhp{object-fit:cover;width:100%;height:100%}.trip-intro.svelte-1uivfhp .content.svelte-1uivfhp{width:100%}.trip-intro.svelte-1uivfhp.svelte-1uivfhp:has(> img){margin-block-start:0;height:min(40vh, 40ch)}img.svelte-1uivfhp~.content.svelte-1uivfhp{color:white;position:absolute;bottom:2%;text-shadow:1px 1px 8px black;padding-block-end:var(--spacer-xxl)}.content.svelte-1uivfhp h1.svelte-1uivfhp{position:relative;z-index:1;margin-block:0}.content.svelte-1uivfhp p.svelte-1uivfhp{position:relative;z-index:1;margin-block:var(--spacer-xs);font-size:var(--font-size-lg)}/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }
.timeline-scroller.svelte-1eu1nzv.svelte-1eu1nzv{--timeline-line-width:var(--border-width-xthick);--timeline-line-color:var(--color-grey-xdark);--timeline-container-padding:max(var(--timeline-inline-spacer), var(--spacer-lg));background:var(--bg-color-accent);padding-inline:var(--timeline-container-padding);overflow-y:auto;overflow-x:hidden}ol.svelte-1eu1nzv.svelte-1eu1nzv{margin:0;padding:0}li.svelte-1eu1nzv.svelte-1eu1nzv{list-style-type:none;margin-bottom:var(--spacer-xs);padding:var(--spacer-sm)}.list-waypoints.svelte-1eu1nzv.svelte-1eu1nzv{--waypoint-padding-left:var(--spacer-xl);padding-left:var(--waypoint-padding-left)}.list-waypoints.svelte-1eu1nzv.svelte-1eu1nzv::before{border-top:var(--timeline-line-width) solid var(--timeline-line-color);content:'';position:absolute;left:calc(var(--timeline-container-padding) * -0.5 + var(--timeline-line-width) * 0.5);top:0;bottom:0;width:var(--spacer-lg);border-top:var(--timeline-line-width) solid var(--timeline-line-color);border-bottom:var(--timeline-line-width) solid var(--timeline-line-color);display:inline-block}.list-waypoints.svelte-1eu1nzv.svelte-1eu1nzv::after{position:absolute;content:'';top:0;bottom:0;left:0;border-left:var(--timeline-line-width) solid var(--timeline-line-color)}.list-waypoints.svelte-1eu1nzv li.waypoint.svelte-1eu1nzv{position:relative;padding:var(--spacer-lg) 0;margin-left:calc(var(--waypoint-padding-left) * -1);padding-left:calc(var(--waypoint-padding-left));margin-right:-100vh;padding-right:100vh}svelte-scroller-outer.svelte-xdbafy{display:block;position:relative}svelte-scroller-background.svelte-xdbafy{display:block;position:relative;width:100%}svelte-scroller-foreground.svelte-xdbafy{display:block;position:relative;z-index:2}svelte-scroller-foreground.svelte-xdbafy::after{content:' ';display:block;clear:both}svelte-scroller-background-container.svelte-xdbafy{display:block;position:absolute;width:100%;max-width:100%;pointer-events:none;will-change:transform}.stop-content.svelte-1fn2781{--stop-content-padding:var(--spacer-lg);--stop-content-margin-top:0;--stop-bg-color:var(--bg-color);--box-shadow-color:var(--color-grey);padding:var(--stop-content-padding);margin-top:var(--stop-content-margin-top);background:var(--stop-bg-color);border-radius:var(--border-radius-xs);box-shadow:var(--shadow) var(--box-shadow-color)}.stop-content.big-topgap.svelte-1fn2781{--stop-content-margin-top:var(--spacer-xxl)}.active.svelte-1fn2781{--box-shadow-color:var(--color-primary-xdark)}.waypoint-date.svelte-1fn2781{line-height:0.9}.waypoint-date.svelte-1fn2781::before{--waypoint-date-width:calc(var(--waypoint-padding-left) / 1.5);content:'';position:absolute;display:inline-block;left:0;margin-top:calc(0.5em - 0.5 * var(--timeline-line-width));width:var(--waypoint-date-width);height:var(--timeline-line-width);background:var(--timeline-line-color)}.stop-content.with-marker.svelte-1fn2781::before{--stop-marker-size:1rem;--stop-marker-offset-top:var(--font-size-md);content:'';position:absolute;display:inline-block;z-index:10;left:calc(-0.5 * var(--stop-marker-size) - 0.5 * var(--timeline-line-width));margin-top:calc(var(--stop-marker-offset-top) - 0.6 * var(--stop-marker-size));width:var(--stop-marker-size);height:var(--stop-marker-size);border-radius:50%;border:var(--timeline-line-width) solid var(--timeline-line-color);background:var(--color-white)}.stop-content.with-marker.compact.svelte-1fn2781::before{--stop-marker-size:0.5rem}.stop-content.no-content.svelte-1fn2781{--stop-bg-color:transparent;--box-shadow-color:transparent;padding-inline:0}.stop-content.with-marker.entry-first.svelte-1fn2781::before{--stop-marker-offset-top:var(--spacer-md)}.stop-content.active.svelte-1fn2781::before{background:var(--color-primary-dark)}.entry-content.svelte-4c0uqd.svelte-4c0uqd{max-width:var(--media-md);margin:0 auto;display:flex;flex-direction:column;gap:var(--spacer-lg)}.entry-content.svelte-4c0uqd .svelte-4c0uqd:first-child{margin-block-start:0;padding-block-start:0}.entry-content.svelte-4c0uqd .svelte-4c0uqd:last-child{margin-block-end:0;padding-block-end:0}.thumbnail-gallery-container.svelte-4c0uqd.svelte-4c0uqd{width:100%;height:6rem}.entry-date.svelte-4c0uqd.svelte-4c0uqd{margin:0}.header.svelte-4c0uqd.svelte-4c0uqd{display:flex;flex-direction:row;align-items:flex-start;justify-content:space-between;flex-wrap:wrap;gap:var(--spacer-xl)}.header.svelte-4c0uqd .heading.svelte-4c0uqd{flex-shrink:1;margin-block:0}.prose.svelte-4c0uqd.svelte-4c0uqd{line-height:var(--line-height-body);margin-block:0}.svelte-4c0uqd:not(.prose)+.prose.svelte-4c0uqd{margin-block-start:0}.cover-image.svelte-1qy5hhl{min-height:0}.content-wrapper.svelte-1qy5hhl{display:flex;flex-direction:column;align-items:stretch;gap:var(--card-content-padding)}.portrait .cover-image.svelte-1qy5hhl{min-height:25%}.portrait .content-wrapper.svelte-1qy5hhl{padding-top:var(--card-content-padding)}.landscape .cover-image.svelte-1qy5hhl{flex-basis:25%;flex-grow:0;flex-shrink:0;height:100%}.landscape .content-wrapper.svelte-1qy5hhl{padding-top:var(--card-content-padding);padding-bottom:var(--card-content-padding)}.entry-inline.svelte-4miy6k:not(:first-child){margin-block-start:var(--spacer-xxl)}.entry-inline.svelte-4miy6k:not(:last-child){margin-block-end:var(--spacer-xxl)}.modal-backlink.svelte-ysdgy8{position:relative;padding:var(--spacer-md) var(--spacer-lg)}.map-container.svelte-1bdxmsq{position:relative;width:100%;height:100%}.map-marker-circle{border-radius:50%;border:2px solid var(--color-grey-xdark);background:var(--color-white)}.map-marker-circle--active{background:var(--color-primary-dark)}.map-marker-image{border-color:var(--color-white);object-fit:cover}.map-marker-image--active{border-color:var(--color-primary-dark)}.map-marker-circle--xs{border-width:2px;width:8px;height:8px}.map-marker-circle--sm{border-width:2px;width:16px;height:16px}.map-marker-circle--md{border-width:3px;width:30px;height:30px}.map-marker-circle--lg{border-width:3px;width:50px;height:50px;opacity:var(--opacity-mid)}.map-marker-circle--xl{border-width:4px;width:80px;height:80px;opacity:var(--opacity-mid)}.map-marker-circle--active.map-marker-circle--lg{opacity:var(--opacity-dark)}.map-marker-circle--active.map-marker-circle--xl{opacity:var(--opacity-dark)}.map-marker-circle.map-marker-image{opacity:var(--opacity-dark)}.map-polyline{stroke:var(--color-white);stroke-width:4px;filter:drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.6))}.map-polyline--dashed{stroke-dasharray:10 10}.map-polyline--active{stroke:var(--color-primary)}.waypoint-content.svelte-k5u8sa.svelte-k5u8sa{max-width:var(--media-md);display:flex;flex-direction:column;gap:var(--spacer-lg)}.waypoint-content.centred.svelte-k5u8sa.svelte-k5u8sa{margin:0 auto}.thumbnail-gallery-container.svelte-k5u8sa.svelte-k5u8sa{width:100%;height:6rem;margin-block-end:var(--spacer-sm)}.header.svelte-k5u8sa.svelte-k5u8sa{display:flex;flex-direction:row;align-items:flex-start;justify-content:space-between;flex-wrap:wrap;gap:var(--spacer-xl)}.header.svelte-k5u8sa .heading.svelte-k5u8sa{flex-shrink:1;margin-top:0;margin-bottom:0}.waypoint-date.svelte-k5u8sa.svelte-k5u8sa{margin:0}.entry-preview-cards-wrapper.svelte-k5u8sa.svelte-k5u8sa{display:flex;flex-direction:row;flex-wrap:wrap;gap:var(--spacer-md)}.entry-preview-card-wrapper.svelte-k5u8sa.svelte-k5u8sa{flex-basis:100%;flex-grow:1;flex-shrink:1;max-height:8em}.wrapper.svelte-1n5r9zt.svelte-1n5r9zt{max-width:30rem}.waypoint-date.svelte-1n5r9zt.svelte-1n5r9zt{margin:0}.content.svelte-1n5r9zt.svelte-1n5r9zt{display:flex;flex-direction:row;align-items:flex-start;flex-wrap:wrap;white-space:nowrap;gap:var(--spacer-md)}.content.svelte-1n5r9zt .svelte-1n5r9zt:not(:last-child){margin-right:var(--spacer-xl)}.heading.svelte-1n5r9zt.svelte-1n5r9zt:last-child{margin-bottom:0}.back-link.svelte-utn6io{margin:var(--spacer-md) 0}/* 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,
.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;
	}
/* 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-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,
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: 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: 12px;
	}
.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 {
	-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-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;
	}
.thumbs-gallery.svelte-48xxny{--width-per-item:25%;position:relative;height:100%;width:100%;display:flex;flex-direction:row;align-items:center}.thumb.svelte-48xxny{position:relative;width:var(--width-per-item);height:100%}.thumb.svelte-48xxny:not(:last-child){margin-right:var(--spacer-sm)}.card-content.svelte-19p21mu{padding-left:var(--card-content-h-padding);padding-right:var(--card-content-h-padding)}.card-content.svelte-19p21mu:first-child{margin-top:0;padding-top:0}.card-content.svelte-19p21mu:last-child{margin-bottom:0;padding-bottom:0}.card.svelte-13vpjxy{--card-content-v-padding:var(--spacer-xl);--card-content-h-padding:var(--spacer-lg);position:relative;width:100%;height:100%;display:flex;overflow:hidden;border:var(--border-width-thick) solid var(--color-black);border-radius:var(--border-radius-sm);background-color:var(--color-white)}.card.topPadding.svelte-13vpjxy{padding-top:var(--card-content-v-padding)}.card.clickable.svelte-13vpjxy{cursor:pointer}.card.clickable.svelte-13vpjxy:hover{background-color:var(--color-secondary-light);box-shadow:var(--shadow) var(--color-secondary-dark)}.card.svelte-13vpjxy.portrait{flex-direction:column;padding-bottom:var(--card-content-v-padding);overflow-y:auto}.card.svelte-13vpjxy.landscape{flex-direction:row;padding-bottom:0;align-items:center}.container.svelte-1m62gsj{position:relative;width:100%;height:100%}img.svelte-1m62gsj{object-fit:cover;width:100%;height:100%}.overlay.svelte-1m62gsj{position:absolute;bottom:0;right:0;padding:var(--spacer-sm);background:var(--color-grey);opacity:var(--opacity-mid)}button.svelte-1l42dck{font-family:var(--font-family-primary);border:var(--border-width) solid var(--text-color);cursor:pointer;display:inline-block;min-width:6em;color:var(--text-color);background:var(--btn-bg);font-size:var(--font-size-md)}button.svelte-1l42dck:disabled{opacity:40%;cursor:initial}button.svelte-1l42dck:hover:not(:disabled):not(.link){background:var(--btn-bg-active);transform:translateY(calc(var(--spacer-xs) * -1));box-shadow:var(--shadow) var(--btn-box-shadow-color)}button.svelte-1l42dck:active:not(:disabled):not(.link){background:var(--btn-bg-active);box-shadow:var(--shadow-sm) var(--btn-box-shadow-color);transform:translateY(0)}.primary.svelte-1l42dck{--btn-bg:var(--color-primary);--btn-bg-active:var(--color-primary);--btn-box-shadow-color:var(--color-primary-dark)}.secondary.svelte-1l42dck{--btn-bg:var(--color-secondary-light);--btn-bg-active:var(--color-secondary-light);--btn-box-shadow-color:var(--color-secondary)}.tertiary.svelte-1l42dck{--btn-bg:var(--color-tertiary-light);--btn-bg-active:var(--color-tertiary-light);--btn-box-shadow-color:var(--color-tertiary)}.primary-outline.svelte-1l42dck{--btn-bg:var(--color-white);--btn-bg-active:var(--color-primary);--btn-box-shadow-color:var(--color-primary-dark)}.secondary-outline.svelte-1l42dck{--btn-bg:var(--color-white);--btn-bg-active:var(--color-secondary-light);--btn-box-shadow-color:var(--color-secondary)}.tertiary-outline.svelte-1l42dck{--btn-bg:var(--color-white);--btn-bg-active:var(--color-tertiary-light);--btn-box-shadow-color:var(--color-tertiary)}.link.svelte-1l42dck{width:auto;min-width:0;height:auto;border:none;padding:0 !important;background:transparent;color:var(--link-color)}.link.svelte-1l42dck:hover{color:var(--link-color--hover)}.small.svelte-1l42dck{font-size:var(--font-size-sm);padding:var(--spacer-sm) var(--spacer-md)}.medium.svelte-1l42dck{font-size:var(--font-size-md);padding:var(--spacer-md) var(--spacer-lg)}.large.svelte-1l42dck{border-width:2px;font-size:var(--font-size-lg);padding:var(--spacer-md) var(--spacer-xl)}.container.svelte-11ghn2h{position:relative;width:100%;height:100%}img.svelte-11ghn2h{width:100%;height:100%;object-fit:cover;border:var(--border-width) solid transparent;border-radius:var(--border-radius-xs);background-color:var(--color-grey-light)}img.clickable.svelte-11ghn2h{cursor:pointer}img.clickable.svelte-11ghn2h:hover{border:var(--border-width) solid var(--color-black)}.overlay.svelte-11ghn2h{position:absolute;right:0;top:0;bottom:0;width:100%;background:var(--color-black);color:var(--color-white);font-size:var(--font-size-xl);font-weight:var(--font-weight-bold);opacity:var(--opacity-mid);border-radius:var(--border-radius-xs);display:flex;align-items:center;justify-content:center;cursor:pointer}.overlay.svelte-11ghn2h:hover{opacity:var(--opacity-dark)}.masonry.svelte-6b2t9q{max-width:100%}.container.svelte-6b2t9q{display:flex;flex-wrap:wrap}.image.svelte-6b2t9q{position:relative;height:100%}.image.svelte-6b2t9q>*{width:100%;height:100%}.hidden.svelte-6b2t9q{visibility:hidden}