@media (prefers-color-scheme: dark) {
    :root {
        --filter-sepia: 100%;
        --filter-hue-rotate: 160deg;
    }
}

.card {
    position: relative;
    margin: 1rem auto; /* Center it horizontally */
    /*padding: 1rem; !* Prevent contents from touching edges *!*/
    width: calc(100% - 2rem); /* Add some padding/margin from edges */
    max-width: 560px;
    min-width: 400px;
    border-radius: 8px; /* Add some rounding for aesthetics */
    /*background: linear-gradient(90deg, #f0f8ff, #e6e9ed); !* Default gradient for light theme *!*/
    /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); !* Add shadow *!*/
    z-index: 1; /* Ensure it is above other background elements */
    overflow: hidden;
    color: white;
    /*padding-top: 10px;*/
    padding: 10px;
    box-sizing: border-box;

    background: linear-gradient(90deg, #eeeff1, #829dbf);
    /*? 'linear-gradient(90deg, #eeeff1, #8d97a3)'*/
    /*: 'linear-gradient(90deg, #1c2023, #323335)',*/
}


/* Hover effect to remove blur */
.card-hero:hover {
    background: rgba(246, 74, 2, 0.3); /* Less transparent for a clearer look */
    /*background: rgba(255, 255, 255, 0.3); !* Less transparent for a clearer look *!*/
    backdrop-filter: blur(0px); /* Remove blur effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Slightly sharper shadow effect */
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start slightly lower */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at the original position */
    }
}

.card-enter {
    animation: slideFadeIn 3s ease-in-out forwards; /* Smooth slide-in */
}

.card:before {
    background: linear-gradient(
            transparent,
            #d17148,
            transparent
    );
    width: 2px;
    height: 170px;
    position: absolute;
    right: 1px;
    top: 5%;
    opacity:0;
    content: "";
    /*transition: top 2600ms ease,*/
    /*opacity 2600ms ease;*/
    animation: loopEffect 3s infinite ease-in-out;
}

.card:after {
    background: linear-gradient(
            transparent,
            #d17148,
            transparent
    );
    width: 2px;
    height: 200px;
    position: absolute;
    left: 2px;
    z-index: 0;
    top: 5%;
    opacity:0;
    content: "";
    /*transition: top 2600ms ease,*/
    /*opacity 2600ms ease;*/
    animation: loopEffect 3s 2s infinite ease-in-out;
}

/* Define keyframes for looping animation */
@keyframes loopEffect {
    0% {
        opacity: 0;
        top: 5%;
    }
    50% {

        opacity: 1;
        top: 15%;
    }
    100% {
        opacity: 0;
        top: 50%;
    }
}

.background-slow-float {
    margin-top: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Fixes the image to the viewport */
    background-position: center; /* Ensures the image is centered properly */
    top: 0;
    left: 0;
    width: 100%; /* Ensure it spans the full width of the container */
    min-height: 100%; /* Ensure it fills the full height of the viewport */
    /*height: 100%;*/
    z-index: -3;
    /* Dynamic filter based on theme */
    filter: sepia(var(--filter-sepia)) hue-rotate(var(--filter-hue-rotate));
    opacity: 0.2;
    animation: pan-image-slow-float 22s infinite linear;
    position:fixed;
    /*overflow: hidden;*/
}


@keyframes pan-image-slow-float {
    0% {
        background-position: 75% 10%;
        background-size: 200%;
    }
    20% {
        background-position: 73% 12%;
        background-size: 200%;
    }
    /*/* -- View 2 -- * !*/
    20.00001% {
        background-position: 73% 12%;
        background-size: 200%;
    }
    40% {
        background-position: 75% 15%;
        background-size: 200%;
    }
    /*/* -- View 3 -- * !*/
    40.00001% {
        background-position: 75% 15%;
        background-size: 200%;
    }
    60% {
        background-position: 77% 13%;
        background-size: 200%;
    }
    /*/* -- View 4 -- * !*/
    60.00001% {
        background-position: 77% 13%;
        background-size: 200%;
    }
    80% {
        background-position: 75% 11%;
        background-size: 200%;
    }
    /*/* -- View 5 -- * !*/
    80.00001% {
        background-position: 75% 11%;
        background-size: 200%;
    }
    100% {
        background-position: 75% 10%;
        background-size: 200%;
    }
}

/* Blur handling on the card */
.card-hero.blurred {
    backdrop-filter: blur(8px);
    WebkitBackdropFilter: blur(8px);
}

/* Blur transitions smoothly */
.card-hero {
    transition: backdrop-filter 0.5s ease-in-out, WebkitBackdropFilter 0.5s ease-in-out;
}
.explore-button {
    opacity: 1;
}
.explore-button:hover {
    opacity: 0.8;
    scale: 1.1;
    filter: brightness(1.25);
}
.water-drop-grid {
    top: 0;
    left: 0;
    position: fixed;
    padding: 1rem;
    display: block; /* The grid will be properly contained */
    width: 100%;
    height: 100%;
    /*background-color: black;*/
    z-index: 0;
    overflow: hidden;
}

.dot-grid {
    /*display: grid;*/
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    z-index: 0;
    opacity: 0.25;
}

.dot {
    cursor: crosshair;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 50%);
    height: 15px; /* Visible size */
    width: 15px;
    /*transition: all 0.3s ease-in-out;*/
    border: 2px solid rgba(255, 255, 255, 0.9); /* Add a white border */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4); /* Add shadow for more pronounced look */
    z-index: 0;

}
.dot:hover {
    background-color: rgb(255 255 255 / 75%);
}
.dot-grid:hover .dot {
    /* Change the styles of .dot when hovering on .dot-grid */
    background-color: rgb(255 255 255 / 100%);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.6); /* Enhanced shadow on hover */
    transform: scale(1.2); /* Example: Make the dots slightly bigger */
    transition: all 0.3s ease-in-out; /* Smooth transition effect */
}


/* Wrapper container animations */
.homepage-container {
    position: relative;
    width: 100%;
    height: 120%; /* Full viewport height */
}

.icon-delay-appear{
    position: fixed;
    bottom: 0;
    right: 0;
    opacity: 0;
    padding: 0;
    margin:0;
    animation: fadeInIcon 1s ease-in 0s forwards;
    z-index: 1000;
}
/* Falling WaterDropSharpIcon */
.falling-waterdrop-icon {
    position: absolute;
    /*top: 0;*/
    animation: waterDropFall 2.5s linear forwards;
            /*fadeInIcon 2s ease-out 1.5s forwards;*/
    z-index: 1000;
}
/* Slow fade-in animation */
@keyframes fadeInIcon {
    from {
        opacity: 0; /* Start invisible */

    }
    to {
        opacity: .3; /* Fully visible */

    }
}

/* Water drop falling animation */
@keyframes waterDropFall {
    0% {
        top: -10%; /* Start off-screen */
        transform: scale(6.5); /* Start tilted */
        opacity: 1;
        left: 2%;
    }
    25% {
        top: 25vh;
        transform: scale(1.5); /* Fully upright */
        opacity: 1; /* Fade out */
        left: 6%;
    }
    100% {
        top: 65vh;
        transform: scale(1); /* Fully upright */
        opacity: 0; /* Fade out */
        left: 8%;
    }
}

.homepage-container.animate-upright {
    animation: flatToUpright 3s ease-in-out forwards; /* Apply the keyframes */
}

@keyframes flatToUpright {
    0% {
        top: -40%;
        scale: 4;
    }
    50% {
        top: 0;
        scale: 1.0;
    }
    100% {
        top: 0;
        scale: 1.0;
    }
}
/* Custom style for links inside Markdown-rendered content */
.markdown a {
    color: #1e90ff; /* Change to any color you want */
    text-decoration: underline; /* Optional: Add or remove underline */
}

.markdown a:hover {
    color: #ff6347; /* Optional: Change color on hover */
}

/*backgroundImage: 'url("https://via.placeholder.com/1920x1080")', // Replace with your desired image URL*/
.news-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none; /* Ignore clicks and pointer events */

}

.news-feed {
    font-size: 1rem;
    padding-block: 1rem;
    border-block: 1px solid #ccc;
    overflow: hidden;
    /*user-select: none; // remove later to allow users to select hyperlinks */
    display: flex;
    gap: 2rem;
    /*background-color: #fff;*/
    z-index: 10;
}

.news-feed ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    animation: scroll-news 300s linear infinite;
}

.news-feed .news-article,
.news-feed .news-source {
    font-weight: bold;
    margin-inline: 0.25rem;
}

.news-feed .pubDate {
    font-size: 0.8rem;
}

.news-article a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
}
@keyframes scroll-news {
    to {
        transform: translateX(calc(-100% - 2rem));
    }
}

.news-feed ul:hover {
    animation-play-state: paused;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    grid-gap: 20px;
}

.card-normal {
    grid-column: span 1;
    grid-row: span 1;
}

.card-horizontal {
    grid-column: span 2;
    grid-row: span 1;
}

.card-vertical {
    grid-column: span 1;
    grid-row: span 2;
}

/* Responsive adjustments */
@media (max-width: 959px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .card-horizontal, .card-vertical, .card-normal {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}
/* Modern Article Styling */

/* Base Container */
.article-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /*color: #333;*/
    line-height: 1.6;
    /*background-color: #fff;*/
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.content-wrapper {
    position: relative;
}

/* Typography */
.main-heading {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /*color: #1a1a1a;*/
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subheading {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    /*color: #2a2a2a;*/
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.subheading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, rgba(250, 126, 6, 0.63), #d36e0a);
    border-radius: 3px;
}

.lead-paragraph {
    font-size: 1.25rem;
    /*color: #555;*/
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    border-left: 4px solid rgba(234, 120, 8, 0.63);
    padding-left: 1.2rem;
}

.body-content {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    /*color: #444;*/
}

/* Links */
.article-link {
    color: rgb(234, 120, 8);
    text-decoration: none;
    border-bottom: 1px dotted rgba(234, 120, 8, 0.63);
    transition: all 0.2s ease;
    font-weight: 500;
}

.article-link:hover {
    color: rgb(234, 120, 8);
    border-bottom: 1px solid rgba(234, 120, 8, 0.63);
}

.reference-link {
    position: relative;
    padding-right: 16px;
}

.reference-link::after {
    content: "↗";
    font-size: 0.8em;
    position: absolute;
    right: 0;
    top: 0;
}

.related-link {
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Blockquotes */
.article-quote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    /*color: #444;*/
    border-left: 4px solid rgba(234, 120, 8, 0.63);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background-color: rgba(211, 110, 10, 0.63);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.article-quote::before {
    content: "";
    font-size: 4rem;
    position: absolute;
    left: 10px;
    top: -15px;
    color: rgba(211, 110, 10, 0.63);
    font-family: Georgia, serif;
}

.expert-citation {
    font-weight: 500;
}

/* Lists */
.bullet-list, .numbered-list {
    margin: 1.5rem 0 2rem;
    padding-left: 1.2rem;
}

.bullet-list {
    list-style-type: none;
}

.bullet-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
}

.bullet-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: rgba(234, 120, 8, 0.63);
    border-radius: 50%;
}

.numbered-list {
    counter-reset: item;
    list-style-type: none;
}

.step-item, .action-item {
    counter-increment: item;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.step-item::before, .action-item::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.8rem;
    height: 1.8rem;
    background: linear-gradient(to bottom right, rgba(234, 120, 8, 0.63), #d36e0a);
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Special Elements */
.item-emphasis {
    /*color: #2a2a2a;*/
    font-weight: 600;
}

.keyword-highlight {
    position: relative;
    z-index: 1;
}

.keyword-highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(128, 67, 5, 0.63);
    z-index: -1;
    border-radius: 3px;
}

/* Special Lists */
.feature-list .bullet-item::before {
    background-color: rgba(234, 120, 8, 0.63);
}

.warning-signs .warning-item {
    background-color: rgba(255, 66, 66, 0.05);
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.warning-signs .warning-item::before {
    background-color: rgba(255, 66, 66, 0.8);
    top: 0.8em;
    left: 1rem;
}

.mindset-tips .mindset-item::before {
    background: #7b61ff;
}

/* Resource Links */
.resource-links {
    background-color: rgba(58, 123, 213, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid rgba(234, 120, 8, 0.63);
    margin: 2rem 0;
}

.resource-item {
    margin-bottom: 0.8rem;
}

/* Closing */
.closing-thoughts {
    font-size: 1.2rem;
    font-weight: 400;
    /*color: #555;*/
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .article-container {
        padding: 1.5rem;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .subheading {
        font-size: 1.5rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .body-content {
        font-size: 1rem;
    }

    .article-quote {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .article-container {
        box-shadow: none;
        max-width: 100%;
        padding: 0;
    }

    .article-link {
        color: #000;
        border-bottom: none;
        text-decoration: underline;
    }

    .subheading::after {
        display: none;
    }
}
@keyframes phase-background {
    0% {
        background-color: rgba(240, 240, 240, 0.01); /* Starting color for dark mode */
    }
    50% {
        background-color: rgba(240, 240, 240, 0.06); /* Mid-phase brighter color */
    }
    100% {
        background-color: rgba(240, 240, 240, 0.01); /* Back to starting color */
    }
}

@keyframes phase-background-light {
    0% {
        background-color: rgba(15, 15, 15, 0.01); /* Starting color for light mode */
    }
    50% {
        background-color: rgba(15, 15, 15, 0.06); /* Mid-phase brighter color */
    }
    100% {
        background-color: rgba(15, 15, 15, 0.01); /* Back to starting color */
    }
}

.background-color-change-based-off-theme {
    animation: phase-background 10s infinite ease-in-out; /* For dark mode */
}

.background-color-change-based-off-theme.light-mode {
    animation: phase-background-light 10s infinite ease-in-out; /* For light mode */
}

.slider  {
    height: 100vh;
    margin-top: 0;
    position: relative;
}

.slider .slider-list .slider-item {
    position: absolute;
    inset: 0 0 0 0;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, z-index 0.5s ease-in-out;
    /* New: Center contents in the parent */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider .slider-list .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .slider-list .slider-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.slider .slider-item-content {
    position: absolute;
    left: 10%;
    top: 10%;
    z-index: 1;
}

.slider .slider-list .slider-item .slider-item-content {
    /* Old Features for Absolute Content On the Left */
    position: absolute;
    left: 10%;
    overflow: visible;
    width: min(700px, 100%);
    max-width: 750px;
    z-index: 1; /* Ensure it is above other background elements */
    padding-right: 50px;
    /*margin-right: 50px;*/
}

.slider .slider-list .slider-item .slider-item-content h6 {
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slider .slider-list .slider-item .slider-item-content h2 {
    font-size: 40px;
    margin: 0;
}

.slider .slider-list .slider-item.active {
    opacity: 1;
    z-index: 10;
}


@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}


.slider .slider-list .slider-item.active h6 {
    animation: showContent 0.5s ease-in-out 0.7s forwards; /* Delay of 0.7s */
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
}


.slider .slider-list .slider-item.active h2 {
    animation: showContent 0.5s ease-in-out 1s forwards; /* Delay of 1s */
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
}
.slider .slider-item-content h2 span {
    display: block;
    margin-left: 30px;
}

/* Flexbox layout for B1-B2 side-by-side positioning */
.this-is-B1-B2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    margin-bottom: 10%;
    width: 100%;
}

.this-is-B1 {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.this-is-B2 {
    width: 300px;
    flex: 0 0 auto;
    align-self: center;
    margin-top: 15px;
    padding-left: 65%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .this-is-B1-B2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .this-is-B1 {
        min-width: auto;
        width: 100%;
    }
}

.slider .slider-list .slider-item.active p {
    animation: showContent 0.5s ease-in-out 1.3s forwards; /* Delay of 1.3s */
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
}


.slider-arrows {
    position: absolute;
    /* Removed in attempt to dynamically adjust slider arrows with view size */
    z-index: 100;
}


.slider-arrows button {
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: x-large;
    color: #eee;
    transition: 0.5s;
}

.slider-goto {
    position: absolute;
    width: 250px;
    height: 100px;
    z-index: 10000;
    /*right: 40%;*/
    /*top: 95%;*/
}
.slider-goto button {
    background-color: #eee5;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
    font-family: monospace;
    cursor: pointer;
    font-size: x-large;
    color: #eee;
    transition: 0.5s;
}

.slider-goto button:hover {
    background-color: #eee;
    color: black;
}

.slider-arrows button:hover {
    background-color: #eee;
    color: black;
}



/* For vertical stacking of arrows when overflow occurs */
.slider-arrows.vertical {
    flex-direction: column;
    left: 10px;
    bottom: 100px;
}

.slider-thumbnail {
    position: fixed;
    right: 20px;
    top: calc(var(--navbar-height, 80px) + 60px);
    z-index: 11;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70px;
    height: calc(100vh - var(--navbar-height, 80px) - 120px);
    padding: 5px;
    box-sizing: border-box;
    overflow: visible;
    align-items: center;
    justify-content: flex-start;
}


.slider-thumbnail::-webkit-scrollbar {
    width:0;
}


.slider-thumbnail .slider-item {
    width: 60px;
    height: calc((100vh - var(--navbar-height, 80px) - 160px) / 6);
    max-height: 60px;
    min-height: 35px;
    filter: brightness(0.5);
    transition: filter 0.5s, transform 0.5s; /* Smooth transition for brightness changes */
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.slider-thumbnail .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.slider-thumbnail .slider-item.active {
    filter: brightness(1.5); /* Increased brightness for the active thumbnail */
    transform: scale(1.1); /* Optional: slightly enlarge the active thumbnail for emphasis */
}

.slider-thumbnail .slider-item .slider-item-content {
    position: absolute;
    inset: auto 10px 10px 10px;
}

/*.thumbnail-wrapper {*/
/*    position: relative; !* Position relative to contain the close button *!*/
/*}*/

.thumbnail-close-btn {
    position: fixed;
    top: calc(var(--navbar-height, 80px) + 50px);  /* Position further below navbar */
    right: 10px; /* Position near the right edge */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border: none; /* Remove default border styles */
    font-size: 1.2rem; /* Make button size appropriate */
    color: #fff; /* White color for contrast */
    cursor: pointer; /* Add a pointer cursor for hover */
    z-index: 10000; /* Ensure it appears above the thumbnails */
    padding: 5px 8px; /* Small padding */
    border-radius: 50%; /* Make it circular */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-close-btn:hover {
    color: rgb(50, 50, 50); /* Optional: Change color on hover */
    background: #d17148;
    scale: 1.5;
}



.slider-button-sm {
    position: relative; /* Keep it positioned relative to its container */
    animation: subtle-move 10s infinite ease-in-out; /* Smooth looping animation */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
    
    /* Add consistent button styling */
    background-color: #eee5; /* Semi-transparent background */
    border: none;
    font-family: monospace;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: medium;
    color: #eee;
    white-space: nowrap;
    min-width: fit-content;
}
@keyframes subtle-move {
    0% {
        transform: translateX(0) translateY(0); /* Starting at the top of the 4 */
    }
    20% {
        transform: translateX(-10px) translateY(10px); /* Move slightly downward */
    }
    40% {
        transform: translateX(4px) translateY(10px); /* Move horizontally to the right */
    }
    60% {
        transform: translateX(0px) translateY(10px); /* Move back up vertically */
    }
    80% {
        transform: translateX(0) translateY(20px); /* Return to original position */
    }
    100% {
        transform: translateX(0) translateY(0); /* Ensure it finishes smoothly at the top */
    }
}

.slider-button-sm:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    background-color: #eee; /* Adjust button color on hover */
    color: black; /* Change text color */
}


/*@keyframes button-in-space {*/
/*    0% {*/
/*        background-position: 75% 10%;*/
/*        background-size: 200%;*/
/*    }*/
/*    20% {*/
/*        background-position: 73% 12%;*/
/*        background-size: 200%;*/
/*    }*/
/*    !*!* -- View 2 -- * !*!*/
/*    20.00001% {*/
/*        background-position: 73% 12%;*/
/*        background-size: 200%;*/
/*    }*/
/*    40% {*/
/*        background-position: 75% 15%;*/
/*        background-size: 200%;*/
/*    }*/
/*    !*!* -- View 3 -- * !*!*/
/*    40.00001% {*/
/*        background-position: 75% 15%;*/
/*        background-size: 200%;*/
/*    }*/
/*    60% {*/
/*        background-position: 77% 13%;*/
/*        background-size: 200%;*/
/*    }*/
/*    !*!* -- View 4 -- * !*!*/
/*    60.00001% {*/
/*        background-position: 77% 13%;*/
/*        background-size: 200%;*/
/*    }*/
/*    80% {*/
/*        background-position: 75% 11%;*/
/*        background-size: 200%;*/
/*    }*/
/*    !*!* -- View 5 -- * !*!*/
/*    80.00001% {*/
/*        background-position: 75% 11%;*/
/*        background-size: 200%;*/
/*    }*/
/*    100% {*/
/*        background-position: 75% 10%;*/
/*        background-size: 200%;*/
/*    }*/
/*}*/

.phased-in-content {
    opacity: 0; /* Initially hidden */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



.fact-card-rotate {
    opacity: 0; /* Initially hidden */
    /*animation: spinOffAnimation 10s linear infinite*/
    animation: spinOffAnimation 10s linear infinite;
    z-index: 5;
}

@keyframes spinOffAnimation {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0.8;
        border-radius: 2%;
        scale: 1.25;
    }
    90% {
        transform: translateY(0) rotate(0);
        opacity: 1;
        border-radius: 2%;
        scale: 1.25;
    }
    99% {
        transform: translateX(80%) translateY(5%) rotate(1deg);
        opacity: 0;
        border-radius: 2%;
        scale: .75;
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0);
        opacity: 0.8;
        border-radius: 2%;
        scale: 1.25;
    }
}


.background-slow-adj {
    background-repeat: no-repeat;
    animation: slightlyMoved 30s linear infinite;
}

@keyframes slightlyMoved {
    0% {
        background-position: 75% 10%;
        background-size: 125%;
    }
    20% {
        background-position: 72% 13%;
        background-size: 125%;
    }
    /*/* -- View 2 -- * !*/
    20.00001% {
        background-position: 72% 13%;
        background-size: 125%;
    }
    40% {
        background-position: 76% 13%;
        background-size: 125%;
    }
    /*/* -- View 3 -- * !*/
    40.00001% {
        background-position: 76% 13%;
        background-size: 125%;
    }
    60% {
        background-position: 75% 13%;
        background-size: 125%;
    }
    /*/* -- View 4 -- * !*/
    60.00001% {
        background-position: 75% 13%;
        background-size: 125%;
    }
    80% {
        background-position: 75% 14%;
        background-size: 125%;
    }
    /*/* -- View 5 -- * !*/
    80.00001% {
        background-position: 75% 14%;
        background-size: 125%;
    }
    100% {
        background-position: 75% 10%;
        background-size: 125%;
    }
}


/* Modified CSS for floating triangles with soft, circular edges */
@keyframes floatTriangles {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0.15;
    }
    50% {
        transform: translateX(-5%) translateY(-500px) rotate(45deg);
        opacity: 0.1;
    }
    100% {
        transform: translateY(0) rotate(0);
        opacity: 0.15;
    }
}

.triangle {
    z-index: -5;
    position: fixed;
    width: 140px;
    height: 140px;
    background-color: #767776;
    opacity: 0.15;
    animation: floatTriangles 25s ease-in-out infinite;
    /* Create a circular shape but maintain subtle triangle hint */
    border-radius: 50%;
    /* border-radius: 10px; */
    /*clip-path: polygon(50% 0%, 100% 86.6%, 0% 86.6%);*/
    clip-path: none;
    /* Add a subtle blur effect for softer edges */
    filter: blur(8px);
}

.triangle-1 {
    left: 70%;
    top: 80%;
    animation-delay: 0s;
}

.triangle-2 {
    left: 10%;
    top: 125%;
    animation-delay: 5s;
}

.triangle-3 {
    left: 20%;
    top: 110%;
    animation-delay: 10s;
}

.triangle-4 {
    left: 30%;
    top: 75%;
    animation-delay: 15s;
}

.triangle-5 {
    left: 40%;
    top: 90%;
    animation-delay: 20s;
}



.beam {
    height: 100vh;
    width: 100%;
    position: fixed;
    /*background-image: linear-gradient(to bottom, transparent 96%, #cac9c9 96%),*/
    /*                linear-gradient(to right, #252424 96%, #d9d8dd 96%);*/
    background-size: 50px 50px;
    /*background: linear-gradient(90deg, rgba(255, 215, 0, 1) 0%, rgba(255, 105, 180, 1) 100%)*/
}


.uv-light {
    position: fixed;
    /*top: -15%;*/
    left: 15%;
    width: 1%;
    height: 110%;
    background-color: #777575;
    border-radius: 5px;
    animation: blink 25s infinite;
    z-index: -6;
    opacity: .05;
}

@keyframes blink {
    0% {
        box-shadow: 0 0 10px #fff, 0 0 0 #777575, 0 0 10px #fff,
                0 0 10px #fbee97, 0 0 10px #fbee97, 0 0 10px #fbee97;
        left: 15%;
        top: -10%;
        opacity: .05;
        width: 1%;
        height: 110%;
        border-radius: 5px;
    }
    50% {
        box-shadow: 0 0 5px #fff, 0 0 10px #777575, 0 0 20px #fff,
        0 0 6px #fbee97, 0 0 9px #fbee97, 0 0 12px #85b6ff;
        left: 1%;
        top: -5%;
        opacity: .1;
        width: .5%;
        height: 115%;
        border-radius: 5px;
    }
    100% {
        box-shadow: 0 0 10px #fff, 0 0 0 #777575, 0 0 10px #fff,
        0 0 10px #85b6ff, 0 0 10px #85b6ff, 0 0 10px #85b6ff;
        left: 15%;
        top: -10%;
        opacity: .05;
        width: 1%;
        height: 110%;
        border-radius: 5px;
    }

}



/* General layout for the service page */
.service-info {
    justify-content: space-between;
}

/* Base style for the fact cards */
.fact-card {
    position: relative;
    width: 30%;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Highlight the specific card being updated */
.fact-card.rotating {
    animation: rotateCard 0.5s ease-in-out;
}

@keyframes rotateCard {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    50% {
        transform: rotateY(90deg) scale(1.1);
    }
    100% {
        transform: rotateY(0deg) scale(1);
    }
}

.showMeState {
    animation: autoShowMeAnimation both;
    animation-timeline: view(85% 5%);
}

@keyframes autoShowMeAnimation {
    from {
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



/* Triangle element anchored to the card */
.card-corner-triangle {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    margin: 10px;
    opacity: 0.6;
    border-radius: 50%;
    /*filter: blur(1px);*/
    /*z-index: 0;*/
    /* Custom animation for the card corner triangle */
    animation: cornerTriangleFloat 15s ease-in-out infinite;
}

@keyframes cornerTriangleFloat {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0.6;
        scale: 1;
        /*filter: blur(1px);*/
    }
    50% {
        transform: translateX(1px) translateY(-1px) rotate(-1deg);
        /*transform: translateX(-10px) translateY(-10px) rotate(75deg);*/
        opacity: 1;
        scale: 1.05;
        /*filter: blur(0px);*/
    }
    100% {
        transform: translateY(0) rotate(0);
        opacity: 0.6;
        scale: 1;
        /*filter: blur(1px);*/
    }
}

/* Modern spinning animation for the brand icon */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*backgroundImage: 'url("https://via.placeholder.com/1920x1080")', // Replace with your desired image URL*/
.support-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95vh;
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none; /* Ignore clicks and pointer events */
}


/* Triangle element anchored to the card */
.card-corner-triangle {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    margin: 10px;
    opacity: 0.6;
    border-radius: 50%;
    /*filter: blur(1px);*/
    /*z-index: 0;*/
    /* Custom animation for the card corner triangle */
    animation: cornerTriangleFloat 15s ease-in-out infinite;
    clip-path: circle(50%);

}/* Main container styles */
.ethos-story-container {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* Section styling */
.story-sections-container {
    width: 100%;
}

.story-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background image styling with parallax effect */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    z-index: -1;
    will-change: transform, opacity;
}

/* Overlay for better text contrast */
.story-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Content styling */
.section-content {
    max-width: 800px;
    padding: 2rem;
    color: white;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.5s ease;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.story-section.active .section-content {
    opacity: 1;
    transform: translateY(0);
}

/* Title styling */
.section-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Description styling */
.section-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Icon styling */
.value-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.value-icons svg {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.value-icons svg:hover {
    transform: scale(1.1);
    color: #e0e0e0;
}

/* Connect link styling */
.connect-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.connect-link:hover {
    background-color: white;
    color: black;
}

.connect-link svg {
    transition: transform 0.3s ease;
}

.connect-link:hover svg {
    transform: translateX(5px);
}

/* Navigation indicators */
.navigation-indicators {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.nav-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-indicator.active {
    background-color: white;
    transform: scale(1.3);
}

.nav-indicator:hover {
    background-color: white;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .section-content {
        padding: 1.5rem;
        max-width: 90%;
    }

    .section-content h2 {
        font-size: 2.5rem;
    }

    .section-content p {
        font-size: 1rem;
    }

    .value-icons svg {
        font-size: 2.5rem;
    }

    .navigation-indicators {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .section-content h2 {
        font-size: 2rem;
    }

    .value-icons {
        gap: 1rem;
    }

    .value-icons svg {
        font-size: 2rem;
    }

    .connect-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Animation for entry */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-section.active .section-content {
    animation: fadeInUp 0.8s ease forwards;
}
* {
  /*box-sizing: border-box;*/
  /*outline: 1px solid #ccc;  this can display the size of the divs for the elements*/
}
/*.modal-container {*/
/*  position: fixed;*/
/*  z-index: 100;*/
/*  left: 50%;*/
/*  top: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  max-width: 90%;*/
/*  max-height: 90%;*/
/*  background-color: white;*/
/*  color: #333;*/
/*  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
/*  border-radius: 8px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*}*/
.modal-container {
  position: sticky;
  /*display: inline-block;*/
  /*border-radius: 8px;*/
  /*flex-direction: column;*/
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
  /*transform: translate(-50%, -50%);*/
  /*position: fixed;*/
  /*z-index: 200;*/
  left: 350px;
  bottom: 5rem;
  /*max-width: 75%;*/
  /*max-height: 75%;*/
  /*background-color: rgba(0, 0, 0, 0.2);*/
  /*!*max-width: 90vw;*!*/
  /*!*display: flex;*!*/
  /*!*overflow: hidden;*!*/
  /*justify-content: center;*/
  /*align-items: center;*/
  /*animation: fade-bg 0.3s ease forwards;*/
  max-width: 90%;
  max-height: 80%;
  min-height: 50%;
  min-width: 70%;
  .modal {
    /*display: relative;*/
    /*flex-direction: column;*/
    background: #293849;
    /*background: #082955;*/
    /*background: #fff;*/
    border-radius: 5px;
    box-shadow: 0 0 5px #555;
    overflow: scroll;
    /*width: 71vh;*/
    /*margin-top: 5vh;*/
    border: none;
    /*padding: 3px;*/
    animation: slide-up 0.35s ease forwards;
    color: #fff;
  }

  &.large {
    width: 550px;
  }
  &.small {
    width: 300px;
  }
}

@keyframes fade-bg {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.scrollable-content {
  max-height: calc(50vh - 12px); /* Reserve space for header/footer */
  overflow-y: auto;
  padding-right: 8px;
}

.scrollable-content::-webkit-scrollbar {
  width: 8px;
}

.scrollable-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #888 0%, #555 100%);
  border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #555 0%, #333 100%);
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}







/*.modal-container {*/
/*  position: fixed;*/
/*  z-index: 100; !* Adjusted to ensure appropriate positioning above other elements *!*/
/*  left: 50%;*/
/*  top: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  width: 90%; !* Makes the modal occupy up to 90% of the page width *!*/
/*  max-width: 600px; !* Sets a maximum width for better responsiveness *!*/
/*  max-height: 90%; !* Ensures the modal does not exceed 90% page height *!*/
/*  background-color: white;*/
/*  color: #333;*/
/*  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
/*  border-radius: 8px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  overflow: hidden; !* Ensures content scrolling for overflow *!*/
/*}*/

/*.modal {*/
/*  background: #082955;*/
/*  color: white;*/
/*  border-radius: 5px;*/
/*  width: 100%; !* Automatically adjusts to the container width *!*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  padding: 16px; !* Adds spacing inside the modal *!*/
/*  overflow-y: auto; !* Enables scrolling if content becomes too tall *!*/
/*}*/

/*.scrollable-content {*/
/*  max-height: calc(90vh - 112px); !* Compensates for modal header/footer heights *!*/
/*  overflow-y: auto;*/
/*}*/

/*.scrollable-content::-webkit-scrollbar {*/
/*  width: 6px;*/
/*}*/

/*.scrollable-content::-webkit-scrollbar-thumb {*/
/*  background: #888;*/
/*  border-radius: 4px;*/
/*}*/

/*.scrollable-content::-webkit-scrollbar-thumb:hover {*/
/*  background: #555;*/
/*}*/

/*@keyframes fade-bg {*/
/*  0% {*/
/*    background-color: rgba(0, 0, 0, 0);*/
/*  }*/
/*  100% {*/
/*    background-color: rgba(0, 0, 0, 0.5); !* Adjusted to provide significant focus *!*/
/*  }*/
/*}*/

/*@keyframes slide-up {*/
/*  0% {*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*  }*/
/*  100% {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/
/*.modal-footer {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    padding: 16px 20px;*/
/*    background: #082955; !* Same background as modal header *!*/
/*    color: white; !* Text color consistent with the modal header *!*/
/*    border-top: 1px solid #ddd; !* Optional border for separation *!*/
/*}*/

/*.modal-footer .footer-info p {*/
/*    margin: 8px 0;*/
/*    font-size: 0.875rem;*/
/*    color: #ccc; !* Slightly lighter text color *!*/
/*}*/

/*button {*/
/*    all: unset;*/
/*    padding: 15px 20px;*/
/*    background: rgba(8, 140, 234, 0.63);*/
/*    color: #fff;*/
/*    box-shadow: 0 0 5px #555;*/
/*    text-transform: capitalize;*/
/*    letter-spacing: 0.05rem;*/
/*    border-radius: 3px;*/
/*    cursor: pointer;*/
/*    transition: background 0.3s ease, transform 0.2s ease;*/
/*    .button-outline {*/
/*        background: transparent;*/
/*        color: #222;*/
/*        border: 1px solid #222;*/
/*    }*/
/*}*/
/*button:hover {*/
/*    background: rgba(2, 30, 76, 0.58);*/
/*    transform: scale(1.1); !* Add slight zoom effect *!*/
/*}*//*.modal-header {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: flex-start;*/
/*    flex-wrap: wrap;*/
/*    padding: 16px 20px;*/
/*    background: #082955;*/
/*    color: white;*/
/*    border-bottom: 1px solid #ddd;*/
/*    position: sticky;*/
/*    top: 0;*/
/*    z-index: 10;*/
/*}*/

/*.modal-title {*/
/*    margin: 0;*/
/*    font-size: 1.25rem;*/
/*    flex-basis: 100%;*/
/*}*/

/*.modal-description {*/
/*    margin: 8px 0 0;*/
/*    font-size: 0.875rem;*/
/*    color: #ccc;*/
/*}*/

/*.modal-description span {*/
/*    display: inline-block; !* Ensure spans display inline *!*/
/*    margin-bottom: 4px;*/
/*}*/


/*.modal-header .website-list {*/
/*    margin: 10px 0 0;*/
/*}*/

/*.modal-header .website-list ul {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    list-style-type: none;*/
/*}*/

/*.modal-header .website-list ul li {*/
/*    margin: 5px 0;*/
/*    font-size: 0.875rem;*/
/*}*/

/*.modal-header-action .close-button {*/
/*    all: unset;*/
/*    font-size: 1.5rem;*/
/*    font-weight: bold;*/
/*    cursor: pointer;*/
/*    color: #fff;*/
/*    padding: 0;*/
/*    margin-left: auto;*/
/*    border-radius: 4px;*/
/*    transition: color 0.3s ease, transform 0.3s ease;*/
/*}*/

/*.modal-header-action .close-button:hover {*/
/*    color: #aaa;*/
/*    transform: scale(1.1);*/
/*}*/

/*.close-button {*/
/*    all: unset;*/
/*    font-size: 1.5rem;*/
/*    font-weight: bold;*/
/*    cursor: pointer;*/
/*    color: white;*/
/*    margin-left: auto;*/
/*    padding: 8px;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.close-button:hover {*/
/*    color: #aaa;*/
/*    transform: scale(1.1);*/
/*}*/
/*.modal-header .website-list a.website-link {*/
/*    all: unset; !* Reset all user agent styles, including the -webkit-any-link styling *!*/
/*    color: inherit !important; !* Force the color to inherit, overriding webkit-any-link *!*/
/*    text-decoration: none !important; !* Ensure underline is removed *!*/
/*    cursor: pointer; !* Keep it appearing interactive *!*/
/*    display: inline; !* Ensure the anchor behaves normally inline *!*/
/*}*/

/*.modal-header .website-list a.website-link:hover {*/
/*    color: blue; !* Optional: Define hover styles for a better user experience *!*/
/*    text-decoration: underline; !* Optional: Add underline on hover *!*/
/*}*/

.maplibregl-map{font:12px/20px Helvetica Neue,Arial,Helvetica,sans-serif;overflow:hidden;position:relative;-webkit-tap-highlight-color:rgb(0 0 0/0)}.maplibregl-canvas{left:0;position:absolute;top:0}.maplibregl-map:fullscreen{height:100%;width:100%}.maplibregl-ctrl-group button.maplibregl-ctrl-compass{touch-action:none}.maplibregl-canvas-container.maplibregl-interactive,.maplibregl-ctrl-group button.maplibregl-ctrl-compass{cursor:grab;-webkit-user-select:none;-moz-user-select:none;user-select:none}.maplibregl-canvas-container.maplibregl-interactive.maplibregl-track-pointer{cursor:pointer}.maplibregl-canvas-container.maplibregl-interactive:active,.maplibregl-ctrl-group button.maplibregl-ctrl-compass:active{cursor:grabbing}.maplibregl-canvas-container.maplibregl-touch-zoom-rotate,.maplibregl-canvas-container.maplibregl-touch-zoom-rotate .maplibregl-canvas{touch-action:pan-x pan-y}.maplibregl-canvas-container.maplibregl-touch-drag-pan,.maplibregl-canvas-container.maplibregl-touch-drag-pan .maplibregl-canvas{touch-action:pinch-zoom}.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan,.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan .maplibregl-canvas{touch-action:none}.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures,.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures .maplibregl-canvas{touch-action:pan-x pan-y}.maplibregl-ctrl-bottom-left,.maplibregl-ctrl-bottom-right,.maplibregl-ctrl-top-left,.maplibregl-ctrl-top-right{pointer-events:none;position:absolute;z-index:2}.maplibregl-ctrl-top-left{left:0;top:0}.maplibregl-ctrl-top-right{right:0;top:0}.maplibregl-ctrl-bottom-left{bottom:0;left:0}.maplibregl-ctrl-bottom-right{bottom:0;right:0}.maplibregl-ctrl{clear:both;pointer-events:auto;transform:translate(0)}.maplibregl-ctrl-top-left .maplibregl-ctrl{float:left;margin:10px 0 0 10px}.maplibregl-ctrl-top-right .maplibregl-ctrl{float:right;margin:10px 10px 0 0}.maplibregl-ctrl-bottom-left .maplibregl-ctrl{float:left;margin:0 0 10px 10px}.maplibregl-ctrl-bottom-right .maplibregl-ctrl{float:right;margin:0 10px 10px 0}.maplibregl-ctrl-group{background:#fff;border-radius:4px}.maplibregl-ctrl-group:not(:empty){box-shadow:0 0 0 2px rgba(0,0,0,.1)}@media (forced-colors:active){.maplibregl-ctrl-group:not(:empty){box-shadow:0 0 0 2px ButtonText}}.maplibregl-ctrl-group button{background-color:transparent;border:0;box-sizing:border-box;cursor:pointer;display:block;height:29px;outline:none;padding:0;width:29px}.maplibregl-ctrl-group button+button{border-top:1px solid #ddd}.maplibregl-ctrl button .maplibregl-ctrl-icon{background-position:50%;background-repeat:no-repeat;display:block;height:100%;width:100%}@media (forced-colors:active){.maplibregl-ctrl-icon{background-color:transparent}.maplibregl-ctrl-group button+button{border-top:1px solid ButtonText}}.maplibregl-ctrl button::-moz-focus-inner{border:0;padding:0}.maplibregl-ctrl-attrib-button:focus,.maplibregl-ctrl-group button:focus{box-shadow:0 0 2px 2px #0096ff}.maplibregl-ctrl button:disabled{cursor:not-allowed}.maplibregl-ctrl button:disabled .maplibregl-ctrl-icon{opacity:.25}@media (hover:hover){.maplibregl-ctrl button:not(:disabled):hover{background-color:rgb(0 0 0/5%)}}.maplibregl-ctrl button:not(:disabled):active{background-color:rgb(0 0 0/5%)}.maplibregl-ctrl-group button:focus:focus-visible{box-shadow:0 0 2px 2px #0096ff}.maplibregl-ctrl-group button:focus:not(:focus-visible){box-shadow:none}.maplibregl-ctrl-group button:focus:first-child{border-radius:4px 4px 0 0}.maplibregl-ctrl-group button:focus:last-child{border-radius:0 0 4px 4px}.maplibregl-ctrl-group button:focus:only-child{border-radius:inherit}.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E")}@media (forced-colors:active){.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E")}}@media (forced-colors:active) and (prefers-color-scheme:light){.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E")}}.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E")}@media (forced-colors:active){.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E")}}@media (forced-colors:active) and (prefers-color-scheme:light){.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E")}}.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E")}@media (forced-colors:active){.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E")}}@media (forced-colors:active) and (prefers-color-scheme:light){.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E")}}.maplibregl-ctrl button.maplibregl-ctrl-globe .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%23333' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='8.5'/%3E%3Cpath d='M17.5 11c0 4.819-3.02 8.5-6.5 8.5S4.5 15.819 4.5 11 7.52 2.5 11 2.5s6.5 3.681 6.5 8.5Z'/%3E%3Cpath d='M13.5 11c0 2.447-.331 4.64-.853 6.206-.262.785-.562 1.384-.872 1.777-.314.399-.58.517-.775.517s-.461-.118-.775-.517c-.31-.393-.61-.992-.872-1.777C8.831 15.64 8.5 13.446 8.5 11s.331-4.64.853-6.206c.262-.785.562-1.384.872-1.777.314-.399.58-.517.775-.517s.461.118.775.517c.31.393.61.992.872 1.777.522 1.565.853 3.76.853 6.206Z'/%3E%3Cpath d='M11 7.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138q.07-.058.224-.138c.299-.151.763-.302 1.379-.434C7.378 5.666 9.091 5.5 11 5.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138q-.07.058-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428ZM4.486 6.436ZM11 16.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138 1.3 1.3 0 0 1 .224-.138c.299-.151.763-.302 1.379-.434C7.378 14.666 9.091 14.5 11 14.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138a1.3 1.3 0 0 1-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428Zm-6.514-1.064ZM11 12.5c-2.46 0-4.672-.222-6.255-.574-.796-.177-1.406-.38-1.805-.59a1.5 1.5 0 0 1-.39-.272.3.3 0 0 1-.047-.064.3.3 0 0 1 .048-.064c.066-.073.189-.167.389-.272.399-.21 1.009-.413 1.805-.59C6.328 9.722 8.54 9.5 11 9.5s4.672.222 6.256.574c.795.177 1.405.38 1.804.59.2.105.323.2.39.272a.3.3 0 0 1 .047.064.3.3 0 0 1-.048.064 1.4 1.4 0 0 1-.389.272c-.399.21-1.009.413-1.804.59-1.584.352-3.796.574-6.256.574Zm-8.501-1.51v.002zm0 .018v.002zm17.002.002v-.002zm0-.018v-.002z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-globe-enabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%2333b5e5' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='8.5'/%3E%3Cpath d='M17.5 11c0 4.819-3.02 8.5-6.5 8.5S4.5 15.819 4.5 11 7.52 2.5 11 2.5s6.5 3.681 6.5 8.5Z'/%3E%3Cpath d='M13.5 11c0 2.447-.331 4.64-.853 6.206-.262.785-.562 1.384-.872 1.777-.314.399-.58.517-.775.517s-.461-.118-.775-.517c-.31-.393-.61-.992-.872-1.777C8.831 15.64 8.5 13.446 8.5 11s.331-4.64.853-6.206c.262-.785.562-1.384.872-1.777.314-.399.58-.517.775-.517s.461.118.775.517c.31.393.61.992.872 1.777.522 1.565.853 3.76.853 6.206Z'/%3E%3Cpath d='M11 7.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138q.07-.058.224-.138c.299-.151.763-.302 1.379-.434C7.378 5.666 9.091 5.5 11 5.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138q-.07.058-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428ZM4.486 6.436ZM11 16.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138 1.3 1.3 0 0 1 .224-.138c.299-.151.763-.302 1.379-.434C7.378 14.666 9.091 14.5 11 14.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138a1.3 1.3 0 0 1-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428Zm-6.514-1.064ZM11 12.5c-2.46 0-4.672-.222-6.255-.574-.796-.177-1.406-.38-1.805-.59a1.5 1.5 0 0 1-.39-.272.3.3 0 0 1-.047-.064.3.3 0 0 1 .048-.064c.066-.073.189-.167.389-.272.399-.21 1.009-.413 1.805-.59C6.328 9.722 8.54 9.5 11 9.5s4.672.222 6.256.574c.795.177 1.405.38 1.804.59.2.105.323.2.39.272a.3.3 0 0 1 .047.064.3.3 0 0 1-.048.064 1.4 1.4 0 0 1-.389.272c-.399.21-1.009.413-1.804.59-1.584.352-3.796.574-6.256.574Zm-8.501-1.51v.002zm0 .018v.002zm17.002.002v-.002zm0-.018v-.002z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-terrain .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%23333' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-terrain-enabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%2333b5e5' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23aaa' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e58978' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e54e33' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting .maplibregl-ctrl-icon{animation:maplibregl-spin 2s linear infinite}@media (forced-colors:active){.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23999' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e58978' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e54e33' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E")}}@media (forced-colors:active) and (prefers-color-scheme:light){.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23666' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E")}}@keyframes maplibregl-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}a.maplibregl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;cursor:pointer;display:block;height:23px;margin:0 0 -4px -4px;overflow:hidden;width:88px}a.maplibregl-ctrl-logo.maplibregl-compact{width:14px}@media (forced-colors:active){a.maplibregl-ctrl-logo{background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E")}}@media (forced-colors:active) and (prefers-color-scheme:light){a.maplibregl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E")}}.maplibregl-ctrl.maplibregl-ctrl-attrib{background-color:hsla(0,0%,100%,.5);margin:0;padding:0 5px}@media screen{.maplibregl-ctrl-attrib.maplibregl-compact{background-color:#fff;border-radius:12px;box-sizing:content-box;color:#000;margin:10px;min-height:20px;padding:2px 24px 2px 0;position:relative}.maplibregl-ctrl-attrib.maplibregl-compact-show{padding:2px 28px 2px 8px;visibility:visible}.maplibregl-ctrl-bottom-left>.maplibregl-ctrl-attrib.maplibregl-compact-show,.maplibregl-ctrl-top-left>.maplibregl-ctrl-attrib.maplibregl-compact-show{border-radius:12px;padding:2px 8px 2px 28px}.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-inner{display:none}.maplibregl-ctrl-attrib-button{background-color:hsla(0,0%,100%,.5);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");border:0;border-radius:12px;box-sizing:border-box;cursor:pointer;display:none;height:24px;outline:none;position:absolute;right:0;top:0;width:24px}.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;list-style:none}.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button::-webkit-details-marker{display:none}.maplibregl-ctrl-bottom-left .maplibregl-ctrl-attrib-button,.maplibregl-ctrl-top-left .maplibregl-ctrl-attrib-button{left:0}.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button,.maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-inner{display:block}.maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-button{background-color:rgb(0 0 0/5%)}.maplibregl-ctrl-bottom-right>.maplibregl-ctrl-attrib.maplibregl-compact:after{bottom:0;right:0}.maplibregl-ctrl-top-right>.maplibregl-ctrl-attrib.maplibregl-compact:after{right:0;top:0}.maplibregl-ctrl-top-left>.maplibregl-ctrl-attrib.maplibregl-compact:after{left:0;top:0}.maplibregl-ctrl-bottom-left>.maplibregl-ctrl-attrib.maplibregl-compact:after{bottom:0;left:0}}@media screen and (forced-colors:active){.maplibregl-ctrl-attrib.maplibregl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E")}}@media screen and (forced-colors:active) and (prefers-color-scheme:light){.maplibregl-ctrl-attrib.maplibregl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E")}}.maplibregl-ctrl-attrib a{color:rgba(0,0,0,.75);text-decoration:none}.maplibregl-ctrl-attrib a:hover{color:inherit;text-decoration:underline}.maplibregl-attrib-empty{display:none}.maplibregl-ctrl-scale{background-color:hsla(0,0%,100%,.75);border:2px solid #333;border-top:#333;box-sizing:border-box;color:#333;font-size:10px;padding:0 5px}.maplibregl-popup{display:flex;left:0;pointer-events:none;position:absolute;top:0;will-change:transform}.maplibregl-popup-anchor-top,.maplibregl-popup-anchor-top-left,.maplibregl-popup-anchor-top-right{flex-direction:column}.maplibregl-popup-anchor-bottom,.maplibregl-popup-anchor-bottom-left,.maplibregl-popup-anchor-bottom-right{flex-direction:column-reverse}.maplibregl-popup-anchor-left{flex-direction:row}.maplibregl-popup-anchor-right{flex-direction:row-reverse}.maplibregl-popup-tip{border:10px solid transparent;height:0;width:0;z-index:1}.maplibregl-popup-anchor-top .maplibregl-popup-tip{align-self:center;border-bottom-color:#fff;border-top:none}.maplibregl-popup-anchor-top-left .maplibregl-popup-tip{align-self:flex-start;border-bottom-color:#fff;border-left:none;border-top:none}.maplibregl-popup-anchor-top-right .maplibregl-popup-tip{align-self:flex-end;border-bottom-color:#fff;border-right:none;border-top:none}.maplibregl-popup-anchor-bottom .maplibregl-popup-tip{align-self:center;border-bottom:none;border-top-color:#fff}.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip{align-self:flex-start;border-bottom:none;border-left:none;border-top-color:#fff}.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip{align-self:flex-end;border-bottom:none;border-right:none;border-top-color:#fff}.maplibregl-popup-anchor-left .maplibregl-popup-tip{align-self:center;border-left:none;border-right-color:#fff}.maplibregl-popup-anchor-right .maplibregl-popup-tip{align-self:center;border-left-color:#fff;border-right:none}.maplibregl-popup-close-button{background-color:transparent;border:0;border-radius:0 3px 0 0;cursor:pointer;position:absolute;right:0;top:0}.maplibregl-popup-close-button:hover{background-color:rgb(0 0 0/5%)}.maplibregl-popup-content{background:#fff;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.1);padding:15px 10px;pointer-events:auto;position:relative}.maplibregl-popup-anchor-top-left .maplibregl-popup-content{border-top-left-radius:0}.maplibregl-popup-anchor-top-right .maplibregl-popup-content{border-top-right-radius:0}.maplibregl-popup-anchor-bottom-left .maplibregl-popup-content{border-bottom-left-radius:0}.maplibregl-popup-anchor-bottom-right .maplibregl-popup-content{border-bottom-right-radius:0}.maplibregl-popup-track-pointer{display:none}.maplibregl-popup-track-pointer *{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.maplibregl-map:hover .maplibregl-popup-track-pointer{display:flex}.maplibregl-map:active .maplibregl-popup-track-pointer{display:none}.maplibregl-marker{left:0;position:absolute;top:0;transition:opacity .2s;will-change:transform}.maplibregl-user-location-dot,.maplibregl-user-location-dot:before{background-color:#1da1f2;border-radius:50%;height:15px;width:15px}.maplibregl-user-location-dot:before{animation:maplibregl-user-location-dot-pulse 2s infinite;content:"";position:absolute}.maplibregl-user-location-dot:after{border:2px solid #fff;border-radius:50%;box-shadow:0 0 3px rgba(0,0,0,.35);box-sizing:border-box;content:"";height:19px;left:-2px;position:absolute;top:-2px;width:19px}@keyframes maplibregl-user-location-dot-pulse{0%{opacity:1;transform:scale(1)}70%{opacity:0;transform:scale(3)}to{opacity:0;transform:scale(1)}}.maplibregl-user-location-dot-stale{background-color:#aaa}.maplibregl-user-location-dot-stale:after{display:none}.maplibregl-user-location-accuracy-circle{background-color:#1da1f233;border-radius:100%;height:1px;width:1px}.maplibregl-crosshair,.maplibregl-crosshair .maplibregl-interactive,.maplibregl-crosshair .maplibregl-interactive:active{cursor:crosshair}.maplibregl-boxzoom{background:#fff;border:2px dotted #202020;height:0;left:0;opacity:.5;position:absolute;top:0;width:0}.maplibregl-cooperative-gesture-screen{align-items:center;background:rgba(0,0,0,.4);color:#fff;display:flex;font-size:1.4em;inset:0;justify-content:center;line-height:1.2;opacity:0;padding:1rem;pointer-events:none;position:absolute;transition:opacity 1s ease 1s;z-index:99999}.maplibregl-cooperative-gesture-screen.maplibregl-show{opacity:1;transition:opacity .05s}.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message{display:none}@media (hover:none),(pointer:coarse){.maplibregl-cooperative-gesture-screen .maplibregl-desktop-message{display:none}.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message{display:block}}.maplibregl-pseudo-fullscreen{height:100%!important;left:0!important;position:fixed!important;top:0!important;width:100%!important;z-index:99999}
.mapboxgl-ctrl-group:not(:empty), .maplibregl-ctrl-group:not(:empty) {
  box-shadow: 0 0 6px 2px rgb(0 0 0 / 8%);
}


.mapboxgl-ctrl-group, .maplibregl-ctrl-group {
  background: #fff;
  border-radius: 3px;
}


.mapboxgl-ctrl-group button:focus:first-child,.maplibregl-ctrl-group button:focus:first-child {
  border-radius: 3px 3px 0 0;
}

.mapboxgl-ctrl-group button:focus:last-child,.maplibregl-ctrl-group button:focus:last-child {
  border-radius: 0 0 3px 3px;
}

/* We do not want opacity to be lowered when buttons are disabled */
.maplibregl-ctrl button:disabled .maplibregl-ctrl-icon {
  opacity: 1;
}

/* Hovering adds a blue hue */
.mapboxgl-ctrl .mapboxgl-ctrl-icon:hover,.maplibregl-ctrl .maplibregl-ctrl-icon:hover
{
  filter: invert(39%) sepia(77%) saturate(909%) hue-rotate(182deg) brightness(89%) contrast(85%);
}


.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9.5%2C9.25)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M7%2C13.75C6.737%2C13.75%206.509%2C13.653%206.315%2C13.46C6.122%2C13.266%206.025%2C13.038%206.025%2C12.775L6.025%2C8.225L1.475%2C8.225C1.212%2C8.225%200.984%2C8.128%200.79%2C7.935C0.597%2C7.741%200.5%2C7.513%200.5%2C7.25C0.5%2C6.987%200.597%2C6.759%200.79%2C6.565C0.984%2C6.372%201.212%2C6.275%201.475%2C6.275L6.025%2C6.275L6.025%2C1.725C6.025%2C1.462%206.122%2C1.234%206.315%2C1.04C6.509%2C0.847%206.737%2C0.75%207%2C0.75C7.263%2C0.75%207.491%2C0.847%207.685%2C1.04C7.878%2C1.234%207.975%2C1.462%207.975%2C1.725L7.975%2C6.275L12.525%2C6.275C12.788%2C6.275%2013.016%2C6.372%2013.21%2C6.565C13.403%2C6.759%2013.5%2C6.987%2013.5%2C7.25C13.5%2C7.513%2013.403%2C7.741%2013.21%2C7.935C13.016%2C8.128%2012.788%2C8.225%2012.525%2C8.225L7.975%2C8.225L7.975%2C12.775C7.975%2C13.038%207.878%2C13.266%207.685%2C13.46C7.491%2C13.653%207.263%2C13.75%207%2C13.75Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}


.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9.5%2C15.25)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M1.475%2C2.225C1.212%2C2.225%200.984%2C2.128%200.79%2C1.935C0.597%2C1.741%200.5%2C1.513%200.5%2C1.25C0.5%2C0.987%200.597%2C0.759%200.79%2C0.566C0.984%2C0.372%201.212%2C0.275%201.475%2C0.275L12.525%2C0.275C12.788%2C0.275%2013.016%2C0.372%2013.21%2C0.566C13.403%2C0.759%2013.5%2C0.987%2013.5%2C1.25C13.5%2C1.513%2013.403%2C1.741%2013.21%2C1.935C13.016%2C2.128%2012.788%2C2.225%2012.525%2C2.225L1.475%2C2.225Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}


.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon
{
  /* Custom based on Google compass icon but without the circle */
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C-3.24298%2C2.63257)%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20transform%3D%22matrix(1.20712%2C0%2C0%2C1.20712%2C14.9145%2C2.51292)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M2.5%2C9.406L0%2C9.406L4%2C17.875L8%2C9.406L5.5%2C9.406C5.483%2C10.22%204.818%2C10.875%204%2C10.875C3.182%2C10.875%202.517%2C10.22%202.5%2C9.406Z%22%20style%3D%22fill%3Argb(29%2C50%2C98)%3Bfill-opacity%3A0.35%3B%22%2F%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3Cg%20transform%3D%22matrix(1.20712%2C0%2C0%2C1.20712%2C14.9145%2C2.51292)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M4%2C0.938L0%2C9.406L2.5%2C9.406L2.5%2C9.375C2.5%2C8.547%203.172%2C7.875%204%2C7.875C4.828%2C7.875%205.5%2C8.547%205.5%2C9.375L5.5%2C9.406L8%2C9.406L4%2C0.938Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3B%22%2F%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}


.mapboxgl-ctrl-group button,.maplibregl-ctrl-group button
{
  height: 33px;
  width: 33px;
}


.mapboxgl-ctrl-group button+button,.maplibregl-ctrl-group button+button
{
  border-top: 1px solid #0000001c;
}


@keyframes blinker {
  50% {
    opacity: 0.3;
  }
}

/* Geolocate button: default button state before being clicked */
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9.50001%2C9.25)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.673%2C8.577L0.567%2C6.51C0.391%2C6.443%200.253%2C6.335%200.152%2C6.186C0.051%2C6.037%200%2C5.868%200%2C5.68C0%2C5.49%200.051%2C5.325%200.152%2C5.183C0.253%2C5.041%200.391%2C4.936%200.567%2C4.869L12.846%2C0.31C13.021%2C0.242%2013.187%2C0.232%2013.343%2C0.279C13.498%2C0.326%2013.629%2C0.404%2013.738%2C0.513C13.846%2C0.621%2013.924%2C0.752%2013.971%2C0.907C14.018%2C1.063%2014.008%2C1.229%2013.94%2C1.404L9.381%2C13.703C9.3%2C13.892%209.186%2C14.031%209.037%2C14.119C8.888%2C14.206%208.732%2C14.25%208.57%2C14.25C8.408%2C14.25%208.253%2C14.203%208.104%2C14.108C7.956%2C14.013%207.841%2C13.879%207.76%2C13.703L5.673%2C8.577ZM8.53%2C11.11L11.691%2C2.559L3.14%2C5.72L6.991%2C7.259L8.53%2C11.11Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}


/* Geolocate button: searching for location */
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting .maplibregl-ctrl-icon {
  animation: blinker 1s linear infinite;
}

/* Geolocate button: permission was not granted */
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9.50001%2C9.25)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.673%2C8.577L0.567%2C6.51C0.391%2C6.443%200.253%2C6.335%200.152%2C6.186C0.051%2C6.037%200%2C5.868%200%2C5.68C0%2C5.49%200.051%2C5.325%200.152%2C5.183C0.253%2C5.041%200.391%2C4.936%200.567%2C4.869L12.846%2C0.31C13.021%2C0.242%2013.187%2C0.232%2013.343%2C0.279C13.498%2C0.326%2013.629%2C0.404%2013.738%2C0.513C13.846%2C0.621%2013.924%2C0.752%2013.971%2C0.907C14.018%2C1.063%2014.008%2C1.229%2013.94%2C1.404L9.381%2C13.703C9.3%2C13.892%209.186%2C14.031%209.037%2C14.119C8.888%2C14.206%208.732%2C14.25%208.57%2C14.25C8.408%2C14.25%208.253%2C14.203%208.104%2C14.108C7.956%2C14.013%207.841%2C13.879%207.76%2C13.703L5.673%2C8.577ZM8.53%2C11.11L11.691%2C2.559L3.14%2C5.72L6.991%2C7.259L8.53%2C11.11Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(0.598546%2C0.598546%2C-0.707107%2C0.707107%2C11.7313%2C1.9674)%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%226.516%22%20y%3D%223.78%22%20width%3D%2219.271%22%20height%3D%220.716%22%20style%3D%22fill%3Argb(229%2C0%2C0)%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Geolocate button: location is active */
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9.50001%2C8.89492)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.673%2C8.932L0.567%2C6.865C0.391%2C6.798%200.253%2C6.69%200.152%2C6.541C0.051%2C6.392%200%2C6.223%200%2C6.035C0%2C5.846%200.051%2C5.68%200.152%2C5.538C0.253%2C5.396%200.391%2C5.291%200.567%2C5.224L12.846%2C0.665C13.021%2C0.597%2013.187%2C0.587%2013.343%2C0.634C13.498%2C0.682%2013.629%2C0.759%2013.738%2C0.868C13.846%2C0.976%2013.924%2C1.107%2013.971%2C1.262C14.018%2C1.418%2014.008%2C1.584%2013.94%2C1.759L9.381%2C14.059C9.3%2C14.247%209.186%2C14.386%209.037%2C14.474C8.888%2C14.561%208.732%2C14.605%208.57%2C14.605C8.408%2C14.605%208.253%2C14.558%208.104%2C14.463C7.956%2C14.368%207.841%2C14.233%207.76%2C14.059L5.673%2C8.932Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Geolocate button: an error occured */
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9.50001%2C8.89492)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.673%2C8.932L0.567%2C6.865C0.391%2C6.798%200.253%2C6.69%200.152%2C6.541C0.051%2C6.392%200%2C6.223%200%2C6.035C0%2C5.846%200.051%2C5.68%200.152%2C5.538C0.253%2C5.396%200.391%2C5.291%200.567%2C5.224L12.846%2C0.665C13.021%2C0.597%2013.187%2C0.587%2013.343%2C0.634C13.498%2C0.682%2013.629%2C0.759%2013.738%2C0.868C13.846%2C0.976%2013.924%2C1.107%2013.971%2C1.262C14.018%2C1.418%2014.008%2C1.584%2013.94%2C1.759L9.381%2C14.059C9.3%2C14.247%209.186%2C14.386%209.037%2C14.474C8.888%2C14.561%208.732%2C14.605%208.57%2C14.605C8.408%2C14.605%208.253%2C14.558%208.104%2C14.463C7.956%2C14.368%207.841%2C14.233%207.76%2C14.059L5.673%2C8.932Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(0.598546%2C0.598546%2C-0.707107%2C0.707107%2C11.7313%2C1.9674)%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%226.516%22%20y%3D%223.78%22%20width%3D%2219.271%22%20height%3D%220.716%22%20style%3D%22fill%3Argb(229%2C0%2C0)%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Geolocate button: searching location */
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M10.685%2C14.817L22.511%2C10.669L18.217%2C22.082L15.824%2C17.233L10.685%2C14.817Z%22%20style%3D%22fill%3Argb(29%2C50%2C98)%3Bfill-opacity%3A0.2%3B%22%2F%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9.50001%2C9.25)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.673%2C8.577L0.567%2C6.51C0.391%2C6.443%200.253%2C6.335%200.152%2C6.186C0.051%2C6.037%200%2C5.868%200%2C5.68C0%2C5.49%200.051%2C5.325%200.152%2C5.183C0.253%2C5.041%200.391%2C4.936%200.567%2C4.869L12.846%2C0.31C13.021%2C0.242%2013.187%2C0.232%2013.343%2C0.279C13.498%2C0.326%2013.629%2C0.404%2013.738%2C0.513C13.846%2C0.621%2013.924%2C0.752%2013.971%2C0.907C14.018%2C1.063%2014.008%2C1.229%2013.94%2C1.404L9.381%2C13.703C9.3%2C13.892%209.186%2C14.031%209.037%2C14.119C8.888%2C14.206%208.732%2C14.25%208.57%2C14.25C8.408%2C14.25%208.253%2C14.203%208.104%2C14.108C7.956%2C14.013%207.841%2C13.879%207.76%2C13.703L5.673%2C8.577ZM8.53%2C11.11L11.691%2C2.559L3.14%2C5.72L6.991%2C7.259L8.53%2C11.11Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Geolocate button: an error occured while searching */
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9.50001%2C8.89492)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5.673%2C8.932L0.567%2C6.865C0.391%2C6.798%200.253%2C6.69%200.152%2C6.541C0.051%2C6.392%200%2C6.223%200%2C6.035C0%2C5.846%200.051%2C5.68%200.152%2C5.538C0.253%2C5.396%200.391%2C5.291%200.567%2C5.224L12.846%2C0.665C13.021%2C0.597%2013.187%2C0.587%2013.343%2C0.634C13.498%2C0.682%2013.629%2C0.759%2013.738%2C0.868C13.846%2C0.976%2013.924%2C1.107%2013.971%2C1.262C14.018%2C1.418%2014.008%2C1.584%2013.94%2C1.759L9.381%2C14.059C9.3%2C14.247%209.186%2C14.386%209.037%2C14.474C8.888%2C14.561%208.732%2C14.605%208.57%2C14.605C8.408%2C14.605%208.253%2C14.558%208.104%2C14.463C7.956%2C14.368%207.841%2C14.233%207.76%2C14.059L5.673%2C8.932Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(0.598546%2C0.598546%2C-0.707107%2C0.707107%2C11.7313%2C1.9674)%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%226.516%22%20y%3D%223.78%22%20width%3D%2219.271%22%20height%3D%220.716%22%20style%3D%22fill%3Argb(229%2C0%2C0)%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Terrain control icon (disabled, to enable) */
.mapboxgl-ctrl button.mapboxgl-ctrl-terrain .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-terrain .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C8.00023%2C11)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M1.083%2C10.209C0.722%2C10.209%200.458%2C10.049%200.292%2C9.73C0.125%2C9.41%200.153%2C9.105%200.375%2C8.813L3.625%2C4.48C3.805%2C4.244%204.041%2C4.126%204.333%2C4.126C4.625%2C4.126%204.861%2C4.244%205.042%2C4.48L8.021%2C8.459L14.167%2C8.459L10.167%2C3.147L8.188%2C5.751L7.104%2C4.313L9.458%2C1.147C9.638%2C0.91%209.875%2C0.792%2010.167%2C0.792C10.458%2C0.792%2010.694%2C0.91%2010.875%2C1.147L16.625%2C8.813C16.847%2C9.105%2016.874%2C9.41%2016.708%2C9.73C16.541%2C10.049%2016.277%2C10.209%2015.917%2C10.209L1.083%2C10.209ZM2.833%2C8.459L5.833%2C8.459L4.333%2C6.459L2.833%2C8.459ZM2.833%2C8.459L5.833%2C8.459L2.833%2C8.459Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Terrain control icon (enabled, to disable) */
.mapboxgl-ctrl button.mapboxgl-ctrl-terrain-enabled .mapboxgl-ctrl-icon,.maplibregl-ctrl button.maplibregl-ctrl-terrain-enabled .maplibregl-ctrl-icon
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C7.99998%2C11)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M1.083%2C10.209C0.722%2C10.209%200.459%2C10.049%200.292%2C9.73C0.125%2C9.41%200.153%2C9.105%200.375%2C8.813L3.625%2C4.48C3.806%2C4.244%204.042%2C4.126%204.333%2C4.126C4.625%2C4.126%204.861%2C4.244%205.042%2C4.48L7.5%2C7.751C7.653%2C7.944%207.847%2C8.063%208.083%2C8.105C8.32%2C8.146%208.535%2C8.09%208.729%2C7.938C8.924%2C7.799%209.038%2C7.619%209.073%2C7.396C9.108%2C7.174%209.069%2C6.965%208.958%2C6.771L7.104%2C4.313L9.458%2C1.147C9.639%2C0.91%209.875%2C0.792%2010.167%2C0.792C10.458%2C0.792%2010.694%2C0.91%2010.875%2C1.147L16.625%2C8.813C16.847%2C9.105%2016.875%2C9.41%2016.708%2C9.73C16.541%2C10.049%2016.278%2C10.209%2015.917%2C10.209L1.083%2C10.209Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Fullscreen control icon (disabled, to enable) */
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon 
{
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C9%2C9)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M0.875%2C5.042C0.639%2C5.042%200.434%2C4.955%200.26%2C4.781C0.087%2C4.608%200%2C4.403%200%2C4.167L0%2C0.875C0%2C0.639%200.087%2C0.434%200.26%2C0.26C0.434%2C0.087%200.639%2C0%200.875%2C0L4.167%2C0C4.403%2C0%204.608%2C0.087%204.781%2C0.26C4.955%2C0.434%205.042%2C0.639%205.042%2C0.875C5.042%2C1.111%204.955%2C1.316%204.781%2C1.49C4.608%2C1.663%204.403%2C1.75%204.167%2C1.75L2.958%2C1.75L4.875%2C3.667C5.042%2C3.834%205.122%2C4.031%205.115%2C4.26C5.108%2C4.489%205.021%2C4.687%204.854%2C4.854C4.687%2C5.021%204.486%2C5.104%204.25%2C5.104C4.014%2C5.104%203.813%2C5.021%203.646%2C4.854L1.75%2C2.958L1.75%2C4.167C1.75%2C4.403%201.663%2C4.608%201.49%2C4.781C1.316%2C4.955%201.111%2C5.042%200.875%2C5.042ZM10.146%2C4.854C9.979%2C4.687%209.896%2C4.486%209.896%2C4.25C9.896%2C4.014%209.979%2C3.813%2010.146%2C3.646L12.042%2C1.75L10.833%2C1.75C10.597%2C1.75%2010.392%2C1.663%2010.219%2C1.49C10.045%2C1.316%209.958%2C1.111%209.958%2C0.875C9.958%2C0.639%2010.045%2C0.434%2010.219%2C0.26C10.392%2C0.087%2010.597%2C0%2010.833%2C0L14.125%2C0C14.361%2C0%2014.566%2C0.087%2014.74%2C0.26C14.913%2C0.434%2015%2C0.639%2015%2C0.875L15%2C4.167C15%2C4.403%2014.913%2C4.608%2014.74%2C4.781C14.566%2C4.955%2014.361%2C5.042%2014.125%2C5.042C13.889%2C5.042%2013.684%2C4.955%2013.51%2C4.781C13.337%2C4.608%2013.25%2C4.403%2013.25%2C4.167L13.25%2C2.958L11.333%2C4.875C11.166%2C5.042%2010.969%2C5.122%2010.74%2C5.115C10.511%2C5.108%2010.313%2C5.021%2010.146%2C4.854ZM10.833%2C15C10.597%2C15%2010.392%2C14.913%2010.219%2C14.74C10.045%2C14.566%209.958%2C14.361%209.958%2C14.125C9.958%2C13.889%2010.045%2C13.684%2010.219%2C13.51C10.392%2C13.337%2010.597%2C13.25%2010.833%2C13.25L12.021%2C13.25L10.125%2C11.354C9.958%2C11.187%209.875%2C10.986%209.875%2C10.75C9.875%2C10.514%209.965%2C10.306%2010.146%2C10.125C10.313%2C9.958%2010.517%2C9.875%2010.76%2C9.875C11.003%2C9.875%2011.208%2C9.958%2011.375%2C10.125L13.25%2C12.021L13.25%2C10.833C13.25%2C10.597%2013.337%2C10.392%2013.51%2C10.219C13.684%2C10.045%2013.889%2C9.958%2014.125%2C9.958C14.361%2C9.958%2014.566%2C10.045%2014.74%2C10.219C14.913%2C10.392%2015%2C10.597%2015%2C10.833L15%2C14.125C15%2C14.361%2014.913%2C14.566%2014.74%2C14.74C14.566%2C14.913%2014.361%2C15%2014.125%2C15L10.833%2C15ZM0.875%2C15C0.639%2C15%200.434%2C14.913%200.26%2C14.74C0.087%2C14.566%200%2C14.361%200%2C14.125L0%2C10.833C0%2C10.597%200.087%2C10.392%200.26%2C10.219C0.434%2C10.045%200.639%2C9.958%200.875%2C9.958C1.111%2C9.958%201.316%2C10.045%201.49%2C10.219C1.663%2C10.392%201.75%2C10.597%201.75%2C10.833L1.75%2C12.021L3.646%2C10.125C3.813%2C9.958%204.014%2C9.872%204.25%2C9.865C4.486%2C9.858%204.694%2C9.944%204.875%2C10.125C5.042%2C10.292%205.125%2C10.497%205.125%2C10.74C5.125%2C10.983%205.042%2C11.187%204.875%2C11.354L2.979%2C13.25L4.167%2C13.25C4.403%2C13.25%204.608%2C13.337%204.781%2C13.51C4.955%2C13.684%205.042%2C13.889%205.042%2C14.125C5.042%2C14.361%204.955%2C14.566%204.781%2C14.74C4.608%2C14.913%204.403%2C15%204.167%2C15L0.875%2C15Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Fullscreen control icon (enabled, to disable) */
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%0A%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2033%2033%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3Aserif%3D%22http%3A%2F%2Fwww.serif.com%2F%22%20style%3D%22fill-rule%3Aevenodd%3Bclip-rule%3Aevenodd%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A2%3B%22%3E%0A%20%20%20%20%3Cg%20transform%3D%22matrix(1%2C0%2C0%2C1%2C8.49996%2C8.5)%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M1.434%2C5.576C1.2%2C5.576%200.997%2C5.49%200.825%2C5.317C0.653%2C5.146%200.567%2C4.943%200.567%2C4.709C0.567%2C4.475%200.653%2C4.272%200.825%2C4.1C0.997%2C3.929%201.2%2C3.843%201.434%2C3.843L2.609%2C3.843L0.732%2C1.965C0.567%2C1.8%200.488%2C1.597%200.495%2C1.356C0.502%2C1.115%200.588%2C0.913%200.753%2C0.748C0.918%2C0.583%201.121%2C0.5%201.361%2C0.5C1.602%2C0.5%201.805%2C0.583%201.97%2C0.748L3.828%2C2.624L3.828%2C1.449C3.828%2C1.215%203.913%2C1.012%204.085%2C0.84C4.257%2C0.668%204.46%2C0.582%204.694%2C0.582C4.928%2C0.582%205.131%2C0.668%205.302%2C0.84C5.475%2C1.012%205.561%2C1.215%205.561%2C1.449L5.561%2C4.709C5.561%2C4.943%205.475%2C5.146%205.302%2C5.317C5.131%2C5.49%204.928%2C5.576%204.694%2C5.576L1.434%2C5.576ZM14.557%2C5.576L11.296%2C5.576C11.063%2C5.576%2010.86%2C5.49%2010.688%2C5.317C10.516%2C5.146%2010.43%2C4.943%2010.43%2C4.709L10.43%2C1.449C10.43%2C1.215%2010.516%2C1.012%2010.688%2C0.84C10.86%2C0.668%2011.063%2C0.582%2011.296%2C0.582C11.531%2C0.582%2011.734%2C0.668%2011.906%2C0.84C12.077%2C1.012%2012.163%2C1.215%2012.163%2C1.449L12.163%2C2.624L14.041%2C0.748C14.206%2C0.583%2014.409%2C0.5%2014.65%2C0.5C14.89%2C0.5%2015.093%2C0.583%2015.258%2C0.748C15.423%2C0.913%2015.506%2C1.115%2015.506%2C1.356C15.506%2C1.597%2015.423%2C1.8%2015.258%2C1.965L13.381%2C3.843L14.557%2C3.843C14.791%2C3.843%2014.994%2C3.929%2015.166%2C4.1C15.338%2C4.272%2015.424%2C4.475%2015.424%2C4.709C15.424%2C4.943%2015.338%2C5.146%2015.166%2C5.317C14.994%2C5.49%2014.791%2C5.576%2014.557%2C5.576ZM0.753%2C15.252C0.588%2C15.087%200.506%2C14.888%200.506%2C14.654C0.506%2C14.42%200.588%2C14.221%200.753%2C14.056L2.63%2C12.178L1.434%2C12.178C1.2%2C12.178%200.997%2C12.092%200.825%2C11.921C0.653%2C11.749%200.567%2C11.546%200.567%2C11.312C0.567%2C11.078%200.653%2C10.875%200.825%2C10.703C0.997%2C10.531%201.2%2C10.445%201.434%2C10.445L4.694%2C10.445C4.928%2C10.445%205.131%2C10.531%205.302%2C10.703C5.475%2C10.875%205.561%2C11.078%205.561%2C11.312L5.561%2C14.572C5.561%2C14.806%205.475%2C15.009%205.302%2C15.181C5.131%2C15.353%204.928%2C15.439%204.694%2C15.439C4.46%2C15.439%204.257%2C15.353%204.085%2C15.181C3.913%2C15.009%203.828%2C14.806%203.828%2C14.572L3.828%2C13.376L1.95%2C15.252C1.785%2C15.418%201.585%2C15.5%201.351%2C15.5C1.118%2C15.5%200.918%2C15.418%200.753%2C15.252ZM11.296%2C15.439C11.063%2C15.439%2010.86%2C15.353%2010.688%2C15.181C10.516%2C15.009%2010.43%2C14.806%2010.43%2C14.572L10.43%2C11.312C10.43%2C11.078%2010.516%2C10.875%2010.688%2C10.703C10.86%2C10.531%2011.063%2C10.445%2011.296%2C10.445L14.557%2C10.445C14.791%2C10.445%2014.994%2C10.531%2015.166%2C10.703C15.338%2C10.875%2015.424%2C11.078%2015.424%2C11.312C15.424%2C11.546%2015.338%2C11.749%2015.166%2C11.921C14.994%2C12.092%2014.791%2C12.178%2014.557%2C12.178L13.36%2C12.178L15.237%2C14.056C15.402%2C14.221%2015.485%2C14.42%2015.485%2C14.654C15.485%2C14.888%2015.402%2C15.087%2015.237%2C15.252C15.072%2C15.418%2014.873%2C15.5%2014.639%2C15.5C14.405%2C15.5%2014.206%2C15.418%2014.041%2C15.252L12.163%2C13.376L12.163%2C14.572C12.163%2C14.806%2012.077%2C15.009%2011.906%2C15.181C11.734%2C15.353%2011.531%2C15.439%2011.296%2C15.439Z%22%20style%3D%22fill%3Argb(68%2C73%2C82)%3Bfill-rule%3Anonzero%3B%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
}

/* Projection control icon - globe */
.maplibregl-ctrl button.maplibregl-ctrl-projection-globe .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16.5%2023.15C20.1727%2023.15%2023.15%2020.1727%2023.15%2016.5C23.15%2012.8273%2020.1727%209.85%2016.5%209.85C12.8273%209.85%209.85%2012.8273%209.85%2016.5C9.85%2020.1727%2012.8273%2023.15%2016.5%2023.15ZM16.5%2025C21.1944%2025%2025%2021.1944%2025%2016.5C25%2011.8056%2021.1944%208%2016.5%208C11.8056%208%208%2011.8056%208%2016.5C8%2021.1944%2011.8056%2025%2016.5%2025Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14.9069%2024.6315C11.9661%2019.4851%2011.9661%2013.5794%2014.9069%208.43297L16.5131%209.35083C13.8973%2013.9285%2013.8973%2019.136%2016.5131%2023.7136L14.9069%2024.6315Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.0231%2024.6315C20.9639%2019.4851%2020.9639%2013.5794%2018.0231%208.43297L16.4169%209.35083C19.0327%2013.9285%2019.0327%2019.136%2016.4169%2023.7136L18.0231%2024.6315Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20d%3D%22M9.01758%2012.8H24V14.65H9.01758V12.8Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20d%3D%22M9.45752%2018.35H23.5601V20.2H9.45752V18.35Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}

/* Projection control icon - mercator */
.maplibregl-ctrl button.maplibregl-ctrl-projection-mercator .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M26.5%209.85H6.5C6.41716%209.85%206.35%209.91716%206.35%2010V23C6.35%2023.0828%206.41716%2023.15%206.5%2023.15H26.5C26.5828%2023.15%2026.65%2023.0828%2026.65%2023V10C26.65%209.91716%2026.5828%209.85%2026.5%209.85ZM6.5%208C5.39543%208%204.5%208.89543%204.5%2010V23C4.5%2024.1046%205.39543%2025%206.5%2025H26.5C27.6046%2025%2028.5%2024.1046%2028.5%2023V10C28.5%208.89543%2027.6046%208%2026.5%208H6.5Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20d%3D%22M5.5%2012.8H28.5V14.65H5.5V12.8Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20d%3D%22M10.0375%2025L10.0375%208L11.8875%208L11.8875%2025H10.0375Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20d%3D%22M15.5751%2025L15.5751%208L17.4251%208L17.4251%2025H15.5751Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20d%3D%22M21.1127%2025V8L22.9627%208L22.9627%2025H21.1127Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3Cpath%20d%3D%22M5.5%2018.35H28.5V20.2H5.5V18.35Z%22%20fill%3D%22%23444952%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.maplibregl-ctrl-scale {
  background-color: hsla(0,0%,100%,.75);
  border: 1px solid #444952;
  border-top: #444952;
  box-sizing: border-box;
  color: #444952;
  font-size: 10px;
  padding: 0 5px;
  text-align: right;
  line-height: 14px;
}

.webgl-warning-div {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  padding: 10px;
  background: white;
  border-radius: 3px;
  color: #fb8600;
  text-align: center;
  font-family: sans-serif;
  font-weight: 300;
  font-size: 16px;
  max-width: calc(100% - 80px);
}svg.svelte-d2loi5{display:block;fill:#e15042}.sprite-icon.svelte-w9y5n9.svelte-w9y5n9{align-self:center;justify-self:center;opacity:.75;background-repeat:no-repeat}li.svelte-w9y5n9.svelte-w9y5n9{text-align:left;cursor:default;display:grid;grid-template-columns:40px 1fr;color:var(--color-text);padding:8px 0;font-size:14px;line-height:18px;min-width:fit-content;outline:0}li.svelte-w9y5n9.svelte-w9y5n9:first-child{padding-top:10px}li.svelte-w9y5n9.svelte-w9y5n9:last-child{padding-bottom:10px}li.picked.svelte-w9y5n9.svelte-w9y5n9{background-color:#e7edff}li.picked.svelte-w9y5n9 .secondary.svelte-w9y5n9{color:#96a4c7;padding-left:4px}li.picked.svelte-w9y5n9 .line2.svelte-w9y5n9{color:#96a4c7}li.selected.svelte-w9y5n9.svelte-w9y5n9{background-color:#f3f6ff}li.selected.svelte-w9y5n9.svelte-w9y5n9{animation:svelte-w9y5n9-backAndForth 5s linear infinite}li.selected.svelte-w9y5n9 .primary.svelte-w9y5n9{color:#2b8bfb}li.selected.svelte-w9y5n9 .secondary.svelte-w9y5n9{color:#a2adc7;padding-left:4px}li.selected.svelte-w9y5n9 .line2.svelte-w9y5n9{color:#a2adc7}li.svelte-w9y5n9>img.svelte-w9y5n9{align-self:center;justify-self:center;opacity:.75}.texts.svelte-w9y5n9.svelte-w9y5n9{padding:0 17px 0 0}.texts.svelte-w9y5n9>.svelte-w9y5n9{white-space:nowrap;display:block;min-width:fit-content}.primary.svelte-w9y5n9.svelte-w9y5n9{font-weight:600}.secondary.svelte-w9y5n9.svelte-w9y5n9{color:#aeb6c7;padding-left:4px}.line2.svelte-w9y5n9.svelte-w9y5n9{color:#aeb6c7}@keyframes svelte-w9y5n9-backAndForth{0%{transform:translate(0)}10%{transform:translate(0)}45%{transform:translate(calc(-100% + 270px))}55%{transform:translate(calc(-100% + 270px))}90%{transform:translate(0)}to{transform:translate(0)}}div.svelte-1ocfouu{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);pointer-events:none;display:flex;align-items:center}.loading-icon.svelte-1ocfouu{animation:svelte-1ocfouu-rotate .8s infinite cubic-bezier(.45,.05,.55,.95)}@keyframes svelte-1ocfouu-rotate{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}svg.svelte-gzo3ar.svelte-gzo3ar{display:block;fill:#6b7c93;stroke:#6b7c93}.list-icon.svelte-gzo3ar.svelte-gzo3ar{grid-row:1/3;align-self:center;margin:8px}.in-map.svelte-gzo3ar.svelte-gzo3ar{height:30px}.maplibregl-canvas-container .marker-selected{z-index:1}.maplibregl-canvas-container svg.svelte-gzo3ar path.svelte-gzo3ar,.leaflet-map-pane svg.svelte-gzo3ar path.svelte-gzo3ar{fill:#3170fe;stroke:#3170fe}.marker-selected svg.svelte-gzo3ar path.svelte-gzo3ar{fill:#98b7ff;stroke:#3170fe}.marker-reverse svg.svelte-gzo3ar path.svelte-gzo3ar{fill:silver;stroke:gray}.marker-interactive{cursor:pointer!important}.maptiler-gc-popup>.maplibregl-popup-content{padding:2px 8px}svg.svelte-en2qvf{display:block;fill:var(--color-icon-button)}circle.svelte-1aq105l{stroke-width:1.875;fill:none}path.svelte-1aq105l{stroke-width:1.875;stroke-linecap:round}svg.svelte-1aq105l{display:block;stroke:var(--color-icon-button)}form.svelte-bz0zu3.svelte-bz0zu3{font-family:Open Sans,Ubuntu,Helvetica Neue,Arial,Helvetica,sans-serif;position:relative;background-color:#fff;z-index:10;border-radius:4px;margin:0;transition:max-width .25s;box-shadow:0 2px 5px #33335926;--color-text:#444952;--color-icon-button:#444952}form.svelte-bz0zu3.svelte-bz0zu3,form.svelte-bz0zu3 .svelte-bz0zu3,form.svelte-bz0zu3 .svelte-bz0zu3:after,form.svelte-bz0zu3 .svelte-bz0zu3:before{box-sizing:border-box}form.can-collapse.svelte-bz0zu3.svelte-bz0zu3{max-width:29px}form.can-collapse.svelte-bz0zu3 input.svelte-bz0zu3::placeholder{transition:opacity .25s;opacity:0}form.svelte-bz0zu3.svelte-bz0zu3,form.svelte-bz0zu3.svelte-bz0zu3:focus-within,form.svelte-bz0zu3.svelte-bz0zu3:hover{width:270px;max-width:270px}form.svelte-bz0zu3 input.svelte-bz0zu3::placeholder,form.svelte-bz0zu3:focus-within input.svelte-bz0zu3::placeholder,form.svelte-bz0zu3:hover input.svelte-bz0zu3::placeholder{opacity:1}input.svelte-bz0zu3.svelte-bz0zu3{font:inherit;font-size:14px;flex-grow:1;min-height:29px;background-color:transparent;color:#444952;white-space:nowrap;overflow:hidden;border:0;margin:0;padding:0}input.svelte-bz0zu3.svelte-bz0zu3:focus{color:#444952;outline:0;outline:none;box-shadow:none}ul.svelte-bz0zu3.svelte-bz0zu3,div.error.svelte-bz0zu3.svelte-bz0zu3,div.no-results.svelte-bz0zu3.svelte-bz0zu3{background-color:#fff;border-radius:4px;left:0;list-style:none;margin:0;padding:0;position:absolute;width:100%;top:calc(100% + 6px);overflow:hidden}ul.svelte-bz0zu3.svelte-bz0zu3{font-size:14px;line-height:16px;box-shadow:0 5px 10px #33335926}div.error.svelte-bz0zu3.svelte-bz0zu3,div.no-results.svelte-bz0zu3.svelte-bz0zu3{font:inherit;line-height:18px;font-size:12px;display:flex;gap:16px}div.error.svelte-bz0zu3.svelte-bz0zu3{padding:16px;font-weight:600;color:#e25041;background-color:#fbeae8}div.error.svelte-bz0zu3 div.svelte-bz0zu3{flex-grow:1}div.error.svelte-bz0zu3 svg{flex-shrink:0;width:20px;height:20px}div.error.svelte-bz0zu3 button.svelte-bz0zu3{flex-shrink:0}div.error.svelte-bz0zu3 button.svelte-bz0zu3>svg{width:13px;fill:#e25041}div.error.svelte-bz0zu3 button.svelte-bz0zu3:hover svg,div.error.svelte-bz0zu3 button.svelte-bz0zu3:active svg{fill:#444952}div.no-results.svelte-bz0zu3.svelte-bz0zu3{padding:14px 24px 14px 16px;font-weight:400;color:#6b7c93;box-shadow:0 5px 10px #33335926}div.no-results.svelte-bz0zu3 svg{margin-top:4px;flex-shrink:0;width:20px;height:20px;width:30px;height:30px}.leaflet-bottom ul.options.svelte-bz0zu3.svelte-bz0zu3,.maplibregl-ctrl-bottom-left ul.options.svelte-bz0zu3.svelte-bz0zu3,.maplibregl-ctrl-bottom-right ul.options.svelte-bz0zu3.svelte-bz0zu3{top:auto;bottom:calc(100% + 6px)}button.svelte-bz0zu3.svelte-bz0zu3{padding:0;margin:0;border:0;background-color:transparent;height:auto;width:auto}button.svelte-bz0zu3.svelte-bz0zu3:hover{background-color:transparent}button.svelte-bz0zu3:hover svg,button.svelte-bz0zu3:active svg{fill:#2b8bfb}.input-group.svelte-bz0zu3.svelte-bz0zu3{display:flex;align-items:stretch;gap:7px;padding-inline:8px;border-radius:4px;overflow:hidden}.input-group.svelte-bz0zu3.svelte-bz0zu3:focus-within{outline:#2b8bfb solid 2px}.search-button.svelte-bz0zu3.svelte-bz0zu3{flex-shrink:0}.maplibregl-ctrl-geocoder:not(.maptiler-ctrl) .search-button svg{width:12px!important;transform:translate(.5px)}.clear-button-container.svelte-bz0zu3.svelte-bz0zu3{display:flex;display:none;position:relative;align-items:stretch}.clear-button-container.displayable.svelte-bz0zu3.svelte-bz0zu3{display:flex;flex-shrink:0}.maplibregl-ctrl-geocoder{position:relative;z-index:3}.maptiler-ctrl:not(:empty){box-shadow:none}.maptiler-ctrl .input-group.svelte-bz0zu3.svelte-bz0zu3{padding-inline:8px;border:white solid 2px}.maptiler-ctrl .input-group.svelte-bz0zu3.svelte-bz0zu3:focus-within{border:#2b8bfb solid 2px;outline:0;outline:none}.maptiler-ctrl form.can-collapse.svelte-bz0zu3.svelte-bz0zu3{max-width:33px}.maptiler-ctrl form.svelte-bz0zu3.svelte-bz0zu3,.maptiler-ctrl form.svelte-bz0zu3.svelte-bz0zu3:focus-within,.maptiler-ctrl form.svelte-bz0zu3.svelte-bz0zu3:hover{width:270px;max-width:270px}

.maplibregl-ctrl-top-right{
  top: 60px; /* Necessary when using a navbar fixed header */
}

#map {
  position: absolute;
  top: 0; /* Default top position */
  left: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  transition: top 0.3s ease; /* Smooth animation when the map moves */
}

/*.map-with-bottom-bar {*/
/*  top: max(300px, 20%); !* Move the map up by the height of the bottom bar *!*/
/*}*/

.search-button {
  all: unset;
  position: relative; /* Ensure positioning for the shadow effect */
  z-index: 1; /* Keep this element on top if needed */
  border: none; /* Optional: remove the default border */
  background: transparent; /* Optional: adjust the button's background */
  cursor: pointer; /* Show pointer on hover */
  outline: none; /* Remove focus outline */
  box-shadow: none; /* Initial blur shadow */
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); !* Initial blur shadow *!*/
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition on hover */
}

.search-button:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0); /* Remove blur on hover by setting opacity to 0 */
  transform: scale(1.2); /* Optional: Add a subtle zoom-in effect */
}
/* Black-and-White Popup HUD Styles */
.popup-container {
    background-color: rgba(0, 0, 0, 0.8); /* Slightly transparent black background */
    color: white; /* Text color in white */
    border-radius: 8px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Subtle drop shadow */
    padding: 10px; /* Add padding around the content */
    font-family: 'Arial', sans-serif; /* Use a clean sans-serif font */
    font-size: 14px; /* Readable font size */
    max-width: 250px; /* Constrain the width of the popup */
}

.popup-container h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0; /* Add space below heading */
    border-bottom: 1px solid white; /* Use a border to separate the title */
    padding-bottom: 5px;
}

.popup-container p {
    font-size: 12px;
    margin: 0;
    line-height: 1.4; /* Improve text readability */
}

.popup-container hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Subtle divider */
    margin: 8px 0;
}

.popup-container button {
    display: block;
    background-color: white; /* White buttons for contrast */
    color: black; /* Black text to signify interactive elements */
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    margin-top: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: bold;
    text-align: center;
}

.popup-container button:hover {
    background-color: #e0e0e0; /* Slight hover feedback */
}



/* Scale effect only on the child marker element, not the parent maplibregl-marker */
.hoverable-marker {
    transform-origin: center; /* Ensure scaling is centered on the marker */
    transition: transform 0.3s ease-in-out; /* Smooth animation effect */
}

.hoverable-marker:hover {
    transform: scale(1.5); /* Scale effect */
}

/* Ensure the parent maplibregl-marker is not directly affected */
.maplibregl-marker {
    transform: translate(0px, 0px); /* Retain Maptiler's transformation logic */
    will-change: transform; /* Optimize performance for transforms */
}


.maplibregl-popup-content {
    background-color: #113165; /* Soft background */
}

.maplibregl-popup-anchor-right .maplibregl-popup-tip {
    border-top-color: #113165; /* Soft background */
    border-bottom-color: #113165; /* Soft background */
    border-left-color: #113165; /* Soft background */
    border-right-color: #113165; /* Soft background */
    opacity: 0.5;
}

.maplibregl-popup-anchor-left .maplibregl-popup-tip {
    border-top-color: #113165; /* Soft background */
    border-bottom-color: #113165; /* Soft background */
    border-left-color: #113165; /* Soft background */
    border-right-color: #113165; /* Soft background */
    opacity: 0.5;
}
.maplibregl-popup-anchor-top .maplibregl-popup-tip {
    border-top-color: #113165; /* Soft background */
    border-bottom-color: #113165; /* Soft background */
    border-left-color: #113165; /* Soft background */
    border-right-color: #113165; /* Soft background */
    opacity: 0.5;
}
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
    border-top-color: #113165; /* Soft background */
    border-bottom-color: #113165; /* Soft background */
    border-left-color: #113165; /* Soft background */
    border-right-color: #113165; /* Soft background */
    opacity: 0.5;
}

/* General List Container Styling */
.list-container {
    max-width: 600px; /* Ensure the list doesn't overflow the parent layout */
    /*margin: 0 auto; !* Center the container *!*/
    /*padding: 1px;*/
    /*padding: 10px;*/
    /*background-color: #113165; !* Soft background *!*/
    background-color: #293849; /* Soft background */
    /*border: 1px solid #ddd; !* Subtle border *!*/
    /*border: 1px solid #ddd; !* Subtle border *!*/
    /*border-radius: 8px; !* Rounded corners *!*/
    box-sizing: border-box;
    /*box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); !* Subtle shadow *!*/
    /*opacity: 0.9;*/
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

/* Styling for the Unordered List */
.styled-list {
    list-style: none; /* Remove default bullets */
    margin: 0;
    padding: 0;
    width: 100%; /* Ensures list spans the full width of the container */
}

/* List Item Styling */
.list-item {
    padding: 12px 16px; /* Inner spacing */
    margin-bottom: 8px; /* Space between items */
    /*background-color: #113165; !* White background for contrast *!*/
    /*border: 2px solid #0077ff; !* Accent border color *!*/
    border-radius: 4px; /* Rounded corners */
    font-family: 'Arial', sans-serif; /* Clean font */
    font-size: 16px; /* Adjust font size for readability */
    font-weight: bold; /* Priority for names/text */
    color: #ccc; /* Dark text color for readability */
    word-wrap: break-word; /* Handle long strings gracefully */
    transition: transform 0.2s, background-color 0.2s; /* Hover effect smoothness */
}

/* Hover State Styling */
.list-item:hover {
    background-color: #333333; /* Subtle color change on hover */
    transform: scale(1.02); /* Slight zoom in */
    cursor: pointer; /* Indicate interactivity */
}

/* Last Item - No Margin */
.list-item:last-child {
    margin-bottom: 0;
}

.circle {
    position: relative;
    width: 50px;
    height: 50px;
    filter: url(#wavy) blur(1px);
    pointer-events: none; /* Prevent interference with mouse events */
}
.circle::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 1px #082955,
    inset 0px 0px 1px #082955;
    -webkit-box-reflect: below 1px -webkit-linear-gradient(transparent, transparent, #0002);
    animation: animate 5s linear infinite;
}
.circle::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 1px #fff,
    inset 0px 0px 1px #fff;
}

.circle:nth-child(2)::before {
    animation-delay: -2.5s;
}

/* these animations cant */
@keyframes animate {
    0% {
        box-shadow: inset 2px 2px 2px rgba(234, 120, 8, 0.63),
        inset 2px 2px 2px rgba(234, 120, 8, 0.63);
        filter: hue-rotate(0deg);
    }
    20% {
        box-shadow: inset 15px 15px 15px rgba(234, 120, 8, 0.63),
        inset 15px 15px 15px rgba(234, 120, 8, 0.63);
    }
    40% {
        box-shadow: inset 25px 25px 25px #082955,
        inset 25px 25px 25px #082955;
    }
    60% {
        box-shadow: inset 25px 25px 25px #082955,
        inset 25px 25px 25px #082955;
    }
    80% {
        box-shadow: inset 15px 15px 15px rgba(211, 110, 10, 0.63),
        inset 15px 15px 15px rgba(211, 110, 10, 0.63);
    }
    100% {
        box-shadow: inset 2px 2px 2px rgba(211, 110, 10, 0.63),
        inset 2px 2px 2px rgba(211, 110, 10, 0.63);
        filter: hue-rotate(360deg);
    }
}

svg {
    width: 0;
    height: 0;
}/* Routes.css */
.page-enter {
    transform: rotateY(90deg);
    opacity: 0;
}
.page-enter-active {
    transform: rotateY(0deg);
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.page-exit {
    transform: rotateY(0deg);
    opacity: 1;
}
.page-exit-active {
    transform: rotateY(-90deg);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.blurred-line-ripple {
    animation: wave-left-to-right 5s linear forwards;
    width: 1%;
    height: 100%;
    left:0;
    padding-top: 50px;
    background-color: white;
    white-space: nowrap; /* Force the text to stay on one line */
    text-overflow: ellipsis; /* Truncate overflowing text with ellipsis */
    font-family: 'Montserrat', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}

/*!* Animation: Going from Opacity 1 to 0 and Back *!*/
@keyframes wave-left-to-right {
    0% {
        opacity: 0.1;
        left:0;
        scale: 1;
        filter: blur(2px) ;
    }
    50% {
        opacity: 0.5;
        left:50px;
        scale: 1.2;
        filter: blur(0px);
    }
    99% {
        /*background-color: red;*/
        opacity: 0;
        left:100px;
        scale: 1.5;
        filter: blur(2px);
        width: max(20%, 300px);
        border-radius: 10px;
    }
    100% {
        /*background-color: red;*/
        opacity: 0;
        left: 1px;
        scale: 1;
        filter: blur(2px);
        width: 1%;
    }
}



/* Styles for active route button */
.active-on-route {
    animation: activeButtonAnim 1s 15s ease-in-out forwards;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;

}

/* Styles for active route button */
.active-on-route:before {
    background: linear-gradient(
            transparent,
            #d17148,
            transparent
    );
    width: 2px;
    height: 20px;
    position: absolute;
    left: -2px;
    top: 2%;
    opacity:0;
    content: "";
    animation: navloopEffect 3.0s 3s infinite linear;

}
/* Styles for active route button */
.active-on-route:after {
    background: linear-gradient(
            transparent,
            #d17148,
            transparent
    );
    width: 2px;
    height: 20px;
    position: absolute;
    right: -2px;
    top: 2%;
    opacity:0;
    content: "";
    animation: navloopEffect 3.5s 3.5s infinite linear;

}

/* Animation for the active button */
@keyframes activeButtonAnim {
    0% {
        transform: scale(1);
        background-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        transform: scale(1.05);
        background-color: rgba(255, 255, 255, 0.2);
        /*background-color: red;*/
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        transform: scale(1);
        background-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}


/* Define keyframes for looping animation */
@keyframes navloopEffect {
    0% {
        opacity: 0;
        top: 5%;
    }
    50% {

        opacity: 1;
        top: 15%;
    }
    100% {
        opacity: 0;
        top: 50%;
    }
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
}


@font-face {
    font-family: 'CrimsonPro';
    src: url('/fonts/CrimsonPro-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CrimsonPro';
    src: url('/fonts/CrimsonPro-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CrimsonPro';
    src: url('/fonts/CrimsonPro-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'CrimsonPro';
    src: url('/fonts/CrimsonPro-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'CrimsonPro';
    src: url('/fonts/CrimsonPro-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'CrimsonPro';
    src: url('/fonts/CrimsonPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CrimsonPro';
    src: url('/fonts/CrimsonPro-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
}

* {
    font-family: 'Montserrat', 'CrimsonPro', 'Roboto', 'Helevca', arial, sans-serif;
}

body {
    font-family: 'Montserrat', 'CrimsonPro', 'Roboto', 'Helevca', arial, sans-serif;
}