@teamimpact/veda-ui-blocks 0.1.0-beta.7 → 0.1.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/dist/default.css +1388 -407
- package/dist/default.css.map +1 -1
- package/dist/disasters.css +1137 -151
- package/dist/disasters.css.map +1 -1
- package/dist/index.d.ts +110 -40
- package/dist/index.js +484 -54
- package/package.json +4 -6
- package/src/styles/components/banner.scss +0 -18
- package/src/styles/components/card-cta.scss +0 -90
- package/src/styles/components/card-detailed.scss +0 -164
- package/src/styles/components/card-mini.scss +0 -81
- package/src/styles/components/card-simple.scss +0 -79
- package/src/styles/components/card.scss +0 -284
- package/src/styles/components/compare-map.scss +0 -15
- package/src/styles/components/footer.scss +0 -256
- package/src/styles/components/header.scss +0 -212
- package/src/styles/components/index.scss +0 -11
- package/src/styles/components/tag.scss +0 -89
- package/src/styles/default/index.scss +0 -10
- package/src/styles/default/theme-tokens.scss +0 -84
- package/src/styles/disasters/card-cta.scss +0 -31
- package/src/styles/disasters/card-mini.scss +0 -4
- package/src/styles/disasters/card-simple.scss +0 -13
- package/src/styles/disasters/card.scss +0 -13
- package/src/styles/disasters/compare-map.scss +0 -3
- package/src/styles/disasters/fonts.scss +0 -29
- package/src/styles/disasters/footer.scss +0 -9
- package/src/styles/disasters/header.scss +0 -10
- package/src/styles/disasters/index.scss +0 -22
- package/src/styles/disasters/tag.scss +0 -6
- package/src/styles/disasters/theme-tokens.scss +0 -150
- package/src/styles/earthgov/footer.scss +0 -15
- package/src/styles/earthgov/index.scss +0 -12
- package/src/styles/earthgov/theme-tokens.scss +0 -104
package/dist/disasters.css
CHANGED
|
@@ -48144,7 +48144,7 @@ example:
|
|
|
48144
48144
|
display: flex;
|
|
48145
48145
|
flex-direction: column;
|
|
48146
48146
|
isolation: isolate;
|
|
48147
|
-
|
|
48147
|
+
overflow: hidden;
|
|
48148
48148
|
position: relative;
|
|
48149
48149
|
width: 100%;
|
|
48150
48150
|
}
|
|
@@ -48266,6 +48266,9 @@ example:
|
|
|
48266
48266
|
.blocks-card__actions .usa-button {
|
|
48267
48267
|
margin-right: 0;
|
|
48268
48268
|
}
|
|
48269
|
+
.blocks-card--image-left .blocks-card__actions, .blocks-card--image-right .blocks-card__actions {
|
|
48270
|
+
width: fit-content;
|
|
48271
|
+
}
|
|
48269
48272
|
.blocks-card--image-left .blocks-card__actions .usa-button, .blocks-card--image-right .blocks-card__actions .usa-button {
|
|
48270
48273
|
flex: 1 1 0;
|
|
48271
48274
|
white-space: nowrap;
|
|
@@ -48404,7 +48407,7 @@ example:
|
|
|
48404
48407
|
|
|
48405
48408
|
.blocks-card-cta {
|
|
48406
48409
|
background-color: white;
|
|
48407
|
-
border-radius:
|
|
48410
|
+
border-radius: 0;
|
|
48408
48411
|
border: 1px solid transparent;
|
|
48409
48412
|
}
|
|
48410
48413
|
.blocks-card-cta:hover, .blocks-card-cta:focus-visible {
|
|
@@ -48449,6 +48452,126 @@ example:
|
|
|
48449
48452
|
line-height: 1.5;
|
|
48450
48453
|
}
|
|
48451
48454
|
|
|
48455
|
+
.blocks-card-detailed {
|
|
48456
|
+
display: grid;
|
|
48457
|
+
grid-template-rows: 45fr 55fr;
|
|
48458
|
+
overflow: hidden;
|
|
48459
|
+
position: relative;
|
|
48460
|
+
width: 100%;
|
|
48461
|
+
}
|
|
48462
|
+
.blocks-card-detailed--image-bottom {
|
|
48463
|
+
grid-template-rows: 55fr 45fr;
|
|
48464
|
+
}
|
|
48465
|
+
.blocks-card-detailed--image-bottom .blocks-card-detailed__media {
|
|
48466
|
+
grid-row: 2;
|
|
48467
|
+
}
|
|
48468
|
+
.blocks-card-detailed--image-bottom .blocks-card-detailed__content-container {
|
|
48469
|
+
grid-row: 1;
|
|
48470
|
+
}
|
|
48471
|
+
.blocks-card-detailed--image-left {
|
|
48472
|
+
grid-template-columns: 200px 1fr;
|
|
48473
|
+
grid-template-rows: auto;
|
|
48474
|
+
}
|
|
48475
|
+
.blocks-card-detailed--image-right {
|
|
48476
|
+
grid-template-columns: 1fr 200px;
|
|
48477
|
+
grid-template-rows: auto;
|
|
48478
|
+
}
|
|
48479
|
+
.blocks-card-detailed--image-right .blocks-card-detailed__media {
|
|
48480
|
+
grid-row: 1;
|
|
48481
|
+
grid-column: 2;
|
|
48482
|
+
}
|
|
48483
|
+
.blocks-card-detailed--image-right .blocks-card-detailed__content-container {
|
|
48484
|
+
grid-row: 1;
|
|
48485
|
+
grid-column: 1;
|
|
48486
|
+
}
|
|
48487
|
+
.blocks-card-detailed:has(> .blocks-card-detailed__media:only-child) {
|
|
48488
|
+
grid-template-columns: unset;
|
|
48489
|
+
grid-template-rows: unset;
|
|
48490
|
+
}
|
|
48491
|
+
.blocks-card-detailed__media {
|
|
48492
|
+
position: relative;
|
|
48493
|
+
width: 100%;
|
|
48494
|
+
}
|
|
48495
|
+
.blocks-card-detailed__media > :is(img, svg, video, canvas) {
|
|
48496
|
+
height: 100%;
|
|
48497
|
+
display: block;
|
|
48498
|
+
inset: 0;
|
|
48499
|
+
object-fit: cover;
|
|
48500
|
+
position: absolute;
|
|
48501
|
+
width: 100%;
|
|
48502
|
+
}
|
|
48503
|
+
.blocks-card-detailed__content-container {
|
|
48504
|
+
align-items: stretch;
|
|
48505
|
+
display: flex;
|
|
48506
|
+
flex-direction: column;
|
|
48507
|
+
gap: 0.75rem;
|
|
48508
|
+
padding: 1.25rem;
|
|
48509
|
+
overflow: hidden;
|
|
48510
|
+
width: 100%;
|
|
48511
|
+
}
|
|
48512
|
+
.blocks-card-detailed__tag-primary {
|
|
48513
|
+
position: absolute;
|
|
48514
|
+
top: 1.25rem;
|
|
48515
|
+
left: 1.25rem;
|
|
48516
|
+
}
|
|
48517
|
+
.blocks-card-detailed__intro, .blocks-card-detailed__title {
|
|
48518
|
+
display: block;
|
|
48519
|
+
overflow: hidden;
|
|
48520
|
+
text-overflow: ellipsis;
|
|
48521
|
+
white-space: nowrap;
|
|
48522
|
+
}
|
|
48523
|
+
.blocks-card-detailed--image-left .blocks-card-detailed__intro,
|
|
48524
|
+
.blocks-card-detailed--image-left .blocks-card-detailed__title, .blocks-card-detailed--image-right .blocks-card-detailed__intro,
|
|
48525
|
+
.blocks-card-detailed--image-right .blocks-card-detailed__title {
|
|
48526
|
+
overflow: unset;
|
|
48527
|
+
text-overflow: unset;
|
|
48528
|
+
white-space: unset;
|
|
48529
|
+
}
|
|
48530
|
+
.blocks-card-detailed__title, .blocks-card-detailed__description {
|
|
48531
|
+
margin: 0;
|
|
48532
|
+
}
|
|
48533
|
+
.blocks-card-detailed__tags {
|
|
48534
|
+
display: flex;
|
|
48535
|
+
flex-wrap: wrap;
|
|
48536
|
+
gap: 0.25rem;
|
|
48537
|
+
}
|
|
48538
|
+
.blocks-card-detailed__actions {
|
|
48539
|
+
display: flex;
|
|
48540
|
+
flex-wrap: wrap;
|
|
48541
|
+
margin-top: auto;
|
|
48542
|
+
row-gap: 0.25rem;
|
|
48543
|
+
}
|
|
48544
|
+
|
|
48545
|
+
.blocks-card-detailed {
|
|
48546
|
+
background: #e7f1f3;
|
|
48547
|
+
border-radius: 0;
|
|
48548
|
+
box-shadow: 0 0.25rem 1rem rgba(86, 92, 101, 0.06);
|
|
48549
|
+
}
|
|
48550
|
+
.blocks-card-detailed__intro {
|
|
48551
|
+
color: #565c65;
|
|
48552
|
+
font-family: Inter Variable, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
48553
|
+
font-size: 0.75rem;
|
|
48554
|
+
font-style: normal;
|
|
48555
|
+
font-weight: normal;
|
|
48556
|
+
line-height: 1.2;
|
|
48557
|
+
}
|
|
48558
|
+
.blocks-card-detailed__title {
|
|
48559
|
+
color: #0d313d;
|
|
48560
|
+
font-family: Inter Variable, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
48561
|
+
font-size: 1.37rem;
|
|
48562
|
+
font-style: normal;
|
|
48563
|
+
font-weight: 700;
|
|
48564
|
+
line-height: 1.4;
|
|
48565
|
+
}
|
|
48566
|
+
.blocks-card-detailed__description {
|
|
48567
|
+
color: #0d313d;
|
|
48568
|
+
font-family: Inter Variable, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
48569
|
+
font-size: 0.75rem;
|
|
48570
|
+
font-style: normal;
|
|
48571
|
+
font-weight: normal;
|
|
48572
|
+
line-height: 1.6;
|
|
48573
|
+
}
|
|
48574
|
+
|
|
48452
48575
|
.blocks-card-mini {
|
|
48453
48576
|
display: flex;
|
|
48454
48577
|
flex-direction: row;
|
|
@@ -48477,7 +48600,9 @@ example:
|
|
|
48477
48600
|
display: flex;
|
|
48478
48601
|
flex-direction: column;
|
|
48479
48602
|
gap: 0.5rem;
|
|
48480
|
-
justify-content:
|
|
48603
|
+
justify-content: space-between;
|
|
48604
|
+
padding-top: 0.5rem;
|
|
48605
|
+
padding-bottom: 0.5rem;
|
|
48481
48606
|
}
|
|
48482
48607
|
.blocks-card-mini__tag {
|
|
48483
48608
|
align-self: flex-start;
|
|
@@ -48491,13 +48616,18 @@ example:
|
|
|
48491
48616
|
background-color: white;
|
|
48492
48617
|
border-radius: 0;
|
|
48493
48618
|
border: 0 solid transparent;
|
|
48619
|
+
transition: background-color 0.15s ease, box-shadow 0.15s ease;
|
|
48620
|
+
}
|
|
48621
|
+
.blocks-card-mini:hover, .blocks-card-mini:focus-visible {
|
|
48622
|
+
background-color: #f1f3f6;
|
|
48623
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
|
|
48494
48624
|
}
|
|
48495
48625
|
.blocks-card-mini__title {
|
|
48496
48626
|
color: #1c1d1f;
|
|
48497
48627
|
font-family: Inter Variable, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
48498
48628
|
font-size: 1.37rem;
|
|
48499
48629
|
font-weight: 700;
|
|
48500
|
-
line-height: 1.
|
|
48630
|
+
line-height: 1.4;
|
|
48501
48631
|
display: -webkit-box;
|
|
48502
48632
|
-webkit-box-orient: vertical;
|
|
48503
48633
|
-webkit-line-clamp: 3;
|
|
@@ -48554,7 +48684,8 @@ example:
|
|
|
48554
48684
|
}
|
|
48555
48685
|
|
|
48556
48686
|
.blocks-card-simple__overlay {
|
|
48557
|
-
background: linear-gradient(to bottom, rgba(45, 46, 47, 0
|
|
48687
|
+
background: linear-gradient(to bottom, rgba(45, 46, 47, 0) 0%, rgba(45, 46, 47, 0.3) 70%, rgba(45, 46, 47, 0.8) 100%);
|
|
48688
|
+
transition: background 0.15s ease;
|
|
48558
48689
|
}
|
|
48559
48690
|
.blocks-card-simple__title {
|
|
48560
48691
|
color: white;
|
|
@@ -48566,60 +48697,48 @@ example:
|
|
|
48566
48697
|
.blocks-card-simple--compact .blocks-card-simple__title {
|
|
48567
48698
|
font-size: 1.12rem;
|
|
48568
48699
|
}
|
|
48700
|
+
.blocks-card-simple:hover .blocks-card-simple__overlay, .blocks-card-simple:focus-visible .blocks-card-simple__overlay {
|
|
48701
|
+
background: linear-gradient(to bottom, rgba(45, 46, 47, 0) 0%, rgba(45, 46, 47, 0.5) 70%, #2d2e2f 100%);
|
|
48702
|
+
}
|
|
48703
|
+
.blocks-card-simple:hover .blocks-card-simple__title, .blocks-card-simple:focus-visible .blocks-card-simple__title {
|
|
48704
|
+
text-decoration: underline;
|
|
48705
|
+
text-decoration-thickness: 2px;
|
|
48706
|
+
text-underline-offset: 0.25rem;
|
|
48707
|
+
}
|
|
48569
48708
|
|
|
48570
48709
|
.blocks-card-simple__title {
|
|
48571
48710
|
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
|
48572
48711
|
}
|
|
48573
48712
|
|
|
48574
|
-
.blocks-
|
|
48575
|
-
|
|
48576
|
-
width: 100%;
|
|
48577
|
-
flex: 1;
|
|
48578
|
-
min-height: 0;
|
|
48579
|
-
}
|
|
48580
|
-
.blocks-compare-map .mapboxgl-compare .compare-swiper-vertical {
|
|
48581
|
-
background-color: #0d313d;
|
|
48582
|
-
}
|
|
48583
|
-
|
|
48584
|
-
.blocks-footer.usa-footer--slim .usa-footer__primary-section > .grid-container section,
|
|
48585
|
-
.blocks-footer.usa-footer--slim .usa-footer__secondary-section > .grid-container section {
|
|
48586
|
-
padding-bottom: 1.5rem;
|
|
48587
|
-
}
|
|
48588
|
-
.blocks-footer.usa-footer--slim .usa-footer__primary-section > .grid-container {
|
|
48589
|
-
padding-top: 2rem;
|
|
48590
|
-
}
|
|
48591
|
-
@media all and (min-width: 64em) {
|
|
48592
|
-
.blocks-footer.usa-footer--slim .usa-footer__primary-section > .grid-container {
|
|
48593
|
-
padding-top: 2.5rem;
|
|
48594
|
-
}
|
|
48595
|
-
}
|
|
48596
|
-
.blocks-footer.usa-footer--slim .usa-footer__secondary-section {
|
|
48597
|
-
padding-top: 0;
|
|
48598
|
-
padding-bottom: 0;
|
|
48599
|
-
}
|
|
48600
|
-
.blocks-footer.usa-footer--slim .usa-footer__secondary-section > .grid-container {
|
|
48601
|
-
padding-bottom: 1.5rem;
|
|
48602
|
-
}
|
|
48603
|
-
@media all and (min-width: 64em) {
|
|
48604
|
-
.blocks-footer.usa-footer--slim .usa-footer__secondary-section > .grid-container {
|
|
48605
|
-
padding-bottom: 3.5rem;
|
|
48606
|
-
}
|
|
48713
|
+
.blocks-footer.usa-footer--slim {
|
|
48714
|
+
line-height: normal;
|
|
48607
48715
|
}
|
|
48608
|
-
.blocks-footer.usa-footer--slim .blocks-footer__primary-section
|
|
48716
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-section {
|
|
48609
48717
|
display: grid;
|
|
48610
48718
|
gap: 2.5rem;
|
|
48611
48719
|
}
|
|
48612
48720
|
@media all and (min-width: 64em) {
|
|
48613
|
-
.blocks-footer.usa-footer--slim .blocks-footer__primary-section
|
|
48721
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-section {
|
|
48614
48722
|
align-items: start;
|
|
48615
48723
|
column-gap: 4rem;
|
|
48616
|
-
grid-template-columns:
|
|
48724
|
+
grid-template-columns: 25rem minmax(0, 1fr);
|
|
48617
48725
|
}
|
|
48618
48726
|
}
|
|
48727
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-section {
|
|
48728
|
+
padding-top: 2rem;
|
|
48729
|
+
padding-bottom: 1.5rem;
|
|
48730
|
+
}
|
|
48731
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-upper {
|
|
48732
|
+
padding-top: 1.5rem;
|
|
48733
|
+
padding-bottom: 1.5rem;
|
|
48734
|
+
}
|
|
48735
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-lower {
|
|
48736
|
+
padding-top: 1.5rem;
|
|
48737
|
+
padding-bottom: 2rem;
|
|
48738
|
+
}
|
|
48619
48739
|
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-lower {
|
|
48620
48740
|
display: grid;
|
|
48621
48741
|
gap: 2rem;
|
|
48622
|
-
padding-top: 1.5rem;
|
|
48623
48742
|
}
|
|
48624
48743
|
@media all and (min-width: 64em) {
|
|
48625
48744
|
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-lower {
|
|
@@ -48642,9 +48761,27 @@ example:
|
|
|
48642
48761
|
}
|
|
48643
48762
|
}
|
|
48644
48763
|
.blocks-footer.usa-footer--slim .blocks-footer__title {
|
|
48764
|
+
display: flex;
|
|
48765
|
+
flex-direction: row;
|
|
48766
|
+
align-items: center;
|
|
48767
|
+
gap: 1.5rem;
|
|
48768
|
+
}
|
|
48769
|
+
.blocks-footer.usa-footer--slim .blocks-footer__logo {
|
|
48770
|
+
flex-shrink: 0;
|
|
48771
|
+
}
|
|
48772
|
+
.blocks-footer.usa-footer--slim .blocks-footer__logo > :is(img, svg) {
|
|
48773
|
+
display: block;
|
|
48774
|
+
height: 5rem;
|
|
48775
|
+
width: auto;
|
|
48776
|
+
}
|
|
48777
|
+
.blocks-footer.usa-footer--slim .blocks-footer__title-text {
|
|
48645
48778
|
display: grid;
|
|
48646
48779
|
gap: 0.75rem;
|
|
48647
48780
|
}
|
|
48781
|
+
.blocks-footer.usa-footer--slim .usa-footer__primary-section,
|
|
48782
|
+
.blocks-footer.usa-footer--slim .usa-footer__secondary-section {
|
|
48783
|
+
padding: 0;
|
|
48784
|
+
}
|
|
48648
48785
|
.blocks-footer.usa-footer--slim .usa-footer__primary-section nav ul,
|
|
48649
48786
|
.blocks-footer.usa-footer--slim .usa-footer__secondary-section nav ul {
|
|
48650
48787
|
display: flex;
|
|
@@ -48663,16 +48800,6 @@ example:
|
|
|
48663
48800
|
gap: 2.5rem;
|
|
48664
48801
|
}
|
|
48665
48802
|
}
|
|
48666
|
-
.blocks-footer.usa-footer--slim .blocks-footer__primary-nav,
|
|
48667
|
-
.blocks-footer.usa-footer--slim .blocks-footer__secondary-nav {
|
|
48668
|
-
padding-top: 1rem;
|
|
48669
|
-
}
|
|
48670
|
-
@media all and (min-width: 64em) {
|
|
48671
|
-
.blocks-footer.usa-footer--slim .blocks-footer__primary-nav,
|
|
48672
|
-
.blocks-footer.usa-footer--slim .blocks-footer__secondary-nav {
|
|
48673
|
-
padding-top: 1.5rem;
|
|
48674
|
-
}
|
|
48675
|
-
}
|
|
48676
48803
|
.blocks-footer.usa-footer--slim .blocks-footer__primary-nav ul {
|
|
48677
48804
|
justify-content: flex-end;
|
|
48678
48805
|
}
|
|
@@ -48684,27 +48811,24 @@ example:
|
|
|
48684
48811
|
.blocks-footer.usa-footer--slim .usa-footer__secondary-link + .usa-footer__secondary-link {
|
|
48685
48812
|
padding-top: 0;
|
|
48686
48813
|
}
|
|
48687
|
-
.blocks-footer.usa-footer--slim .blocks-footer__utility-nav
|
|
48814
|
+
.blocks-footer.usa-footer--slim .blocks-footer__utility-nav {
|
|
48815
|
+
line-height: 1.2;
|
|
48816
|
+
}
|
|
48688
48817
|
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav {
|
|
48689
48818
|
display: flex;
|
|
48690
48819
|
flex-wrap: wrap;
|
|
48691
48820
|
gap: 1rem;
|
|
48692
48821
|
}
|
|
48693
|
-
.blocks-footer.usa-footer--slim .blocks-footer__utility-nav li,
|
|
48694
48822
|
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav li {
|
|
48695
48823
|
align-items: center;
|
|
48696
48824
|
display: flex;
|
|
48697
48825
|
gap: 0.75rem;
|
|
48698
48826
|
}
|
|
48699
|
-
.blocks-footer.usa-footer--slim .blocks-footer__utility-nav li a,
|
|
48700
48827
|
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav li a {
|
|
48701
48828
|
display: inline-flex;
|
|
48702
48829
|
gap: 0.5rem;
|
|
48703
48830
|
align-items: center;
|
|
48704
48831
|
}
|
|
48705
|
-
.blocks-footer.usa-footer--slim .blocks-footer__utility-nav ul {
|
|
48706
|
-
gap: 0.5rem;
|
|
48707
|
-
}
|
|
48708
48832
|
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav ul {
|
|
48709
48833
|
gap: 1.5rem;
|
|
48710
48834
|
}
|
|
@@ -48729,17 +48853,17 @@ example:
|
|
|
48729
48853
|
background-color: #0d313d;
|
|
48730
48854
|
color: #1c1d1f;
|
|
48731
48855
|
}
|
|
48732
|
-
.blocks-footer.usa-footer--slim .blocks-footer__primary-section
|
|
48856
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-section,
|
|
48733
48857
|
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-upper {
|
|
48734
48858
|
border-bottom: 1px solid rgba(169, 174, 177, 0.1);
|
|
48735
48859
|
}
|
|
48736
|
-
.blocks-footer.usa-footer--slim .blocks-footer__title span {
|
|
48860
|
+
.blocks-footer.usa-footer--slim .blocks-footer__title-text span {
|
|
48737
48861
|
color: #dfe1e2;
|
|
48738
48862
|
font-size: 1.38rem;
|
|
48739
48863
|
font-weight: 700;
|
|
48740
48864
|
text-decoration: none;
|
|
48741
48865
|
}
|
|
48742
|
-
.blocks-footer.usa-footer--slim .blocks-footer__title p {
|
|
48866
|
+
.blocks-footer.usa-footer--slim .blocks-footer__title-text p {
|
|
48743
48867
|
color: #dfe1e2;
|
|
48744
48868
|
margin: 0;
|
|
48745
48869
|
font-size: 0.88rem;
|
|
@@ -48794,6 +48918,11 @@ example:
|
|
|
48794
48918
|
text-decoration-thickness: 2px;
|
|
48795
48919
|
}
|
|
48796
48920
|
|
|
48921
|
+
.blocks-header.usa-header--basic {
|
|
48922
|
+
position: sticky;
|
|
48923
|
+
top: 0;
|
|
48924
|
+
z-index: 99999;
|
|
48925
|
+
}
|
|
48797
48926
|
@media all and (min-width: 64em) {
|
|
48798
48927
|
.blocks-header.usa-header--basic + .usa-hero,
|
|
48799
48928
|
.blocks-header.usa-header--basic + .usa-section,
|
|
@@ -48992,7 +49121,7 @@ example:
|
|
|
48992
49121
|
border: 1px solid transparent;
|
|
48993
49122
|
font-family: DM Mono, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
48994
49123
|
font-size: 0.75rem;
|
|
48995
|
-
font-weight:
|
|
49124
|
+
font-weight: 600;
|
|
48996
49125
|
line-height: 1.2;
|
|
48997
49126
|
text-transform: uppercase;
|
|
48998
49127
|
}
|
|
@@ -49031,127 +49160,984 @@ example:
|
|
|
49031
49160
|
}
|
|
49032
49161
|
}
|
|
49033
49162
|
|
|
49034
|
-
.blocks-
|
|
49035
|
-
|
|
49163
|
+
.blocks-date-chip {
|
|
49164
|
+
background-color: white;
|
|
49165
|
+
border-radius: 0.25rem;
|
|
49166
|
+
box-shadow: rgba(44, 62, 80, 0.08) 0px 0px 4px 0px, rgba(44, 62, 80, 0.08) 0px 2px 2px 0px;
|
|
49167
|
+
color: #2d2e2f;
|
|
49168
|
+
display: inline-flex;
|
|
49169
|
+
font-size: 0.88rem;
|
|
49170
|
+
font-weight: 600;
|
|
49171
|
+
line-height: 1.4;
|
|
49172
|
+
padding: 0.5rem 0.75rem;
|
|
49173
|
+
white-space: nowrap;
|
|
49174
|
+
}
|
|
49175
|
+
|
|
49176
|
+
.blocks-legend {
|
|
49177
|
+
background-color: white;
|
|
49178
|
+
border: 1px solid #dfe1e2;
|
|
49179
|
+
border-radius: 0.25rem;
|
|
49036
49180
|
overflow: hidden;
|
|
49037
|
-
|
|
49181
|
+
padding: 0.75rem 1rem;
|
|
49182
|
+
width: 100%;
|
|
49038
49183
|
display: flex;
|
|
49039
49184
|
flex-direction: column;
|
|
49040
|
-
|
|
49185
|
+
gap: 0.75rem;
|
|
49041
49186
|
}
|
|
49042
|
-
.blocks-
|
|
49043
|
-
|
|
49187
|
+
.blocks-legend__header {
|
|
49188
|
+
display: flex;
|
|
49189
|
+
justify-content: space-between;
|
|
49190
|
+
align-items: flex-start;
|
|
49191
|
+
gap: 1rem;
|
|
49044
49192
|
}
|
|
49045
|
-
.blocks-
|
|
49046
|
-
|
|
49193
|
+
.blocks-legend__header-text {
|
|
49194
|
+
display: flex;
|
|
49195
|
+
flex-direction: column;
|
|
49196
|
+
gap: 2px;
|
|
49197
|
+
flex: 1;
|
|
49198
|
+
min-width: 0;
|
|
49047
49199
|
}
|
|
49048
|
-
.blocks-
|
|
49049
|
-
|
|
49050
|
-
|
|
49051
|
-
|
|
49200
|
+
.blocks-legend__title {
|
|
49201
|
+
font-size: 0.94rem;
|
|
49202
|
+
font-weight: 700;
|
|
49203
|
+
line-height: 1.4;
|
|
49204
|
+
margin: 0;
|
|
49205
|
+
color: #2d2e2f;
|
|
49206
|
+
white-space: nowrap;
|
|
49207
|
+
overflow: hidden;
|
|
49208
|
+
text-overflow: ellipsis;
|
|
49052
49209
|
}
|
|
49053
|
-
.blocks-
|
|
49054
|
-
|
|
49055
|
-
|
|
49056
|
-
|
|
49210
|
+
.blocks-legend__subtitle {
|
|
49211
|
+
font-size: 0.88rem;
|
|
49212
|
+
font-weight: normal;
|
|
49213
|
+
margin: 0;
|
|
49214
|
+
color: #565c65;
|
|
49215
|
+
white-space: nowrap;
|
|
49216
|
+
overflow: hidden;
|
|
49217
|
+
text-overflow: ellipsis;
|
|
49057
49218
|
}
|
|
49058
|
-
.blocks-
|
|
49059
|
-
|
|
49060
|
-
|
|
49061
|
-
|
|
49062
|
-
padding
|
|
49219
|
+
.blocks-legend__info-toggle {
|
|
49220
|
+
background: none;
|
|
49221
|
+
border: none;
|
|
49222
|
+
cursor: pointer;
|
|
49223
|
+
padding: 0;
|
|
49224
|
+
color: #71767a;
|
|
49225
|
+
display: flex;
|
|
49226
|
+
align-items: center;
|
|
49227
|
+
flex-shrink: 0;
|
|
49063
49228
|
}
|
|
49064
|
-
.blocks-
|
|
49065
|
-
|
|
49066
|
-
|
|
49067
|
-
|
|
49068
|
-
|
|
49069
|
-
z-index: 3;
|
|
49070
|
-
height: 0.5rem;
|
|
49071
|
-
pointer-events: none;
|
|
49229
|
+
.blocks-legend__info-toggle:hover {
|
|
49230
|
+
color: #565c65;
|
|
49231
|
+
}
|
|
49232
|
+
.blocks-legend__info-toggle[aria-expanded=true] {
|
|
49233
|
+
color: #2d2e2f;
|
|
49072
49234
|
}
|
|
49073
|
-
.blocks-
|
|
49235
|
+
.blocks-legend__gradient-bar {
|
|
49074
49236
|
position: relative;
|
|
49075
|
-
|
|
49076
|
-
|
|
49077
|
-
|
|
49237
|
+
height: 0.75rem;
|
|
49238
|
+
border: 1px solid #dfe1e2;
|
|
49239
|
+
border-radius: 0.25rem;
|
|
49078
49240
|
}
|
|
49079
|
-
.blocks-
|
|
49241
|
+
.blocks-legend__gradient {
|
|
49080
49242
|
position: absolute;
|
|
49081
|
-
|
|
49082
|
-
|
|
49083
|
-
z-index: 2;
|
|
49084
|
-
}
|
|
49085
|
-
.blocks-card-detailed__image-wrapper > :is(img, svg, video, canvas) {
|
|
49086
|
-
width: 100%;
|
|
49087
|
-
display: block;
|
|
49243
|
+
inset: 0;
|
|
49244
|
+
border-radius: 0.25rem;
|
|
49088
49245
|
}
|
|
49089
|
-
.blocks-
|
|
49090
|
-
|
|
49246
|
+
.blocks-legend__labels {
|
|
49247
|
+
display: flex;
|
|
49248
|
+
justify-content: space-between;
|
|
49249
|
+
align-items: center;
|
|
49250
|
+
}
|
|
49251
|
+
.blocks-legend__min, .blocks-legend__max {
|
|
49252
|
+
font-size: 0.88rem;
|
|
49253
|
+
font-weight: normal;
|
|
49254
|
+
color: #71767a;
|
|
49255
|
+
}
|
|
49256
|
+
.blocks-legend__unit {
|
|
49257
|
+
font-size: 0.88rem;
|
|
49258
|
+
font-weight: 700;
|
|
49259
|
+
color: #2d2e2f;
|
|
49260
|
+
}
|
|
49261
|
+
.blocks-legend__description {
|
|
49262
|
+
margin: 0 -1rem -0.75rem;
|
|
49263
|
+
background-color: rgba(45, 46, 47, 0.04);
|
|
49264
|
+
box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
49265
|
+
max-height: 7.5rem;
|
|
49266
|
+
overflow-y: auto;
|
|
49267
|
+
overscroll-behavior: none;
|
|
49268
|
+
}
|
|
49269
|
+
.blocks-legend__description-inner {
|
|
49270
|
+
padding: 0.75rem 1rem;
|
|
49271
|
+
font-size: 0.94rem;
|
|
49272
|
+
font-weight: 300;
|
|
49273
|
+
line-height: 1.6;
|
|
49274
|
+
color: #2d2e2f;
|
|
49275
|
+
}
|
|
49276
|
+
|
|
49277
|
+
.blocks-stacmap-compare {
|
|
49278
|
+
position: relative;
|
|
49279
|
+
width: 100%;
|
|
49280
|
+
flex: 1;
|
|
49281
|
+
min-height: 0;
|
|
49282
|
+
}
|
|
49283
|
+
.blocks-stacmap-compare__date-chip {
|
|
49284
|
+
left: 50%;
|
|
49285
|
+
position: absolute;
|
|
49286
|
+
top: 1rem;
|
|
49287
|
+
transform: translateX(-50%);
|
|
49288
|
+
z-index: 2;
|
|
49289
|
+
}
|
|
49290
|
+
.blocks-stacmap-compare__legend-left {
|
|
49291
|
+
bottom: 1rem;
|
|
49292
|
+
left: 1rem;
|
|
49293
|
+
position: absolute;
|
|
49294
|
+
width: 15rem;
|
|
49295
|
+
}
|
|
49296
|
+
.blocks-stacmap-compare__legend-right {
|
|
49297
|
+
bottom: 1rem;
|
|
49298
|
+
position: absolute;
|
|
49299
|
+
right: 1rem;
|
|
49300
|
+
width: 15rem;
|
|
49301
|
+
}
|
|
49302
|
+
.blocks-stacmap-compare .mapboxgl-compare .compare-swiper-vertical {
|
|
49303
|
+
background-color: #0d313d;
|
|
49304
|
+
}
|
|
49305
|
+
|
|
49306
|
+
.blocks-stacmap-singlelayer {
|
|
49307
|
+
flex: 1;
|
|
49308
|
+
min-height: 0;
|
|
49309
|
+
position: relative;
|
|
49310
|
+
width: 100%;
|
|
49311
|
+
}
|
|
49312
|
+
.blocks-stacmap-singlelayer__date-chip {
|
|
49313
|
+
left: 50%;
|
|
49314
|
+
position: absolute;
|
|
49315
|
+
top: 1rem;
|
|
49316
|
+
transform: translateX(-50%);
|
|
49317
|
+
z-index: 2;
|
|
49318
|
+
}
|
|
49319
|
+
.blocks-stacmap-singlelayer__legend {
|
|
49320
|
+
bottom: 1rem;
|
|
49321
|
+
width: 15rem;
|
|
49322
|
+
position: absolute;
|
|
49323
|
+
right: 1rem;
|
|
49324
|
+
}
|
|
49325
|
+
|
|
49326
|
+
.maplibregl-map {
|
|
49327
|
+
font: 12px/20px Helvetica Neue, Arial, Helvetica, sans-serif;
|
|
49328
|
+
overflow: hidden;
|
|
49329
|
+
position: relative;
|
|
49330
|
+
-webkit-tap-highlight-color: rgb(0 0 0/0);
|
|
49331
|
+
}
|
|
49332
|
+
|
|
49333
|
+
.maplibregl-canvas {
|
|
49334
|
+
left: 0;
|
|
49335
|
+
position: absolute;
|
|
49336
|
+
top: 0;
|
|
49337
|
+
}
|
|
49338
|
+
|
|
49339
|
+
.maplibregl-map:fullscreen {
|
|
49340
|
+
height: 100%;
|
|
49341
|
+
width: 100%;
|
|
49342
|
+
}
|
|
49343
|
+
|
|
49344
|
+
.maplibregl-ctrl-group button.maplibregl-ctrl-compass {
|
|
49345
|
+
touch-action: none;
|
|
49346
|
+
}
|
|
49347
|
+
|
|
49348
|
+
.maplibregl-canvas-container.maplibregl-interactive, .maplibregl-ctrl-group button.maplibregl-ctrl-compass {
|
|
49349
|
+
cursor: grab;
|
|
49350
|
+
-webkit-user-select: none;
|
|
49351
|
+
-moz-user-select: none;
|
|
49352
|
+
user-select: none;
|
|
49353
|
+
}
|
|
49354
|
+
|
|
49355
|
+
.maplibregl-canvas-container.maplibregl-interactive.maplibregl-track-pointer {
|
|
49356
|
+
cursor: pointer;
|
|
49357
|
+
}
|
|
49358
|
+
|
|
49359
|
+
.maplibregl-canvas-container.maplibregl-interactive:active, .maplibregl-ctrl-group button.maplibregl-ctrl-compass:active {
|
|
49360
|
+
cursor: grabbing;
|
|
49361
|
+
}
|
|
49362
|
+
|
|
49363
|
+
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate, .maplibregl-canvas-container.maplibregl-touch-zoom-rotate .maplibregl-canvas {
|
|
49364
|
+
touch-action: pan-x pan-y;
|
|
49365
|
+
}
|
|
49366
|
+
|
|
49367
|
+
.maplibregl-canvas-container.maplibregl-touch-drag-pan, .maplibregl-canvas-container.maplibregl-touch-drag-pan .maplibregl-canvas {
|
|
49368
|
+
touch-action: pinch-zoom;
|
|
49369
|
+
}
|
|
49370
|
+
|
|
49371
|
+
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan, .maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan .maplibregl-canvas {
|
|
49372
|
+
touch-action: none;
|
|
49373
|
+
}
|
|
49374
|
+
|
|
49375
|
+
.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures, .maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures .maplibregl-canvas {
|
|
49376
|
+
touch-action: pan-x pan-y;
|
|
49377
|
+
}
|
|
49378
|
+
|
|
49379
|
+
.maplibregl-ctrl-bottom-left, .maplibregl-ctrl-bottom-right, .maplibregl-ctrl-top-left, .maplibregl-ctrl-top-right {
|
|
49380
|
+
pointer-events: none;
|
|
49381
|
+
position: absolute;
|
|
49382
|
+
z-index: 2;
|
|
49383
|
+
}
|
|
49384
|
+
|
|
49385
|
+
.maplibregl-ctrl-top-left {
|
|
49386
|
+
left: 0;
|
|
49387
|
+
top: 0;
|
|
49388
|
+
}
|
|
49389
|
+
|
|
49390
|
+
.maplibregl-ctrl-top-right {
|
|
49391
|
+
right: 0;
|
|
49392
|
+
top: 0;
|
|
49393
|
+
}
|
|
49394
|
+
|
|
49395
|
+
.maplibregl-ctrl-bottom-left {
|
|
49396
|
+
bottom: 0;
|
|
49397
|
+
left: 0;
|
|
49398
|
+
}
|
|
49399
|
+
|
|
49400
|
+
.maplibregl-ctrl-bottom-right {
|
|
49401
|
+
bottom: 0;
|
|
49402
|
+
right: 0;
|
|
49403
|
+
}
|
|
49404
|
+
|
|
49405
|
+
.maplibregl-ctrl {
|
|
49406
|
+
clear: both;
|
|
49407
|
+
pointer-events: auto;
|
|
49408
|
+
transform: translate(0);
|
|
49409
|
+
}
|
|
49410
|
+
|
|
49411
|
+
.maplibregl-ctrl-top-left .maplibregl-ctrl {
|
|
49412
|
+
float: left;
|
|
49413
|
+
margin: 10px 0 0 10px;
|
|
49414
|
+
}
|
|
49415
|
+
|
|
49416
|
+
.maplibregl-ctrl-top-right .maplibregl-ctrl {
|
|
49417
|
+
float: right;
|
|
49418
|
+
margin: 10px 10px 0 0;
|
|
49419
|
+
}
|
|
49420
|
+
|
|
49421
|
+
.maplibregl-ctrl-bottom-left .maplibregl-ctrl {
|
|
49422
|
+
float: left;
|
|
49423
|
+
margin: 0 0 10px 10px;
|
|
49424
|
+
}
|
|
49425
|
+
|
|
49426
|
+
.maplibregl-ctrl-bottom-right .maplibregl-ctrl {
|
|
49427
|
+
float: right;
|
|
49428
|
+
margin: 0 10px 10px 0;
|
|
49429
|
+
}
|
|
49430
|
+
|
|
49431
|
+
.maplibregl-ctrl-group {
|
|
49432
|
+
background: #fff;
|
|
49433
|
+
border-radius: 4px;
|
|
49434
|
+
}
|
|
49435
|
+
|
|
49436
|
+
.maplibregl-ctrl-group:not(:empty) {
|
|
49437
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
|
|
49438
|
+
}
|
|
49439
|
+
|
|
49440
|
+
@media (forced-colors: active) {
|
|
49441
|
+
.maplibregl-ctrl-group:not(:empty) {
|
|
49442
|
+
box-shadow: 0 0 0 2px ButtonText;
|
|
49443
|
+
}
|
|
49444
|
+
}
|
|
49445
|
+
.maplibregl-ctrl-group button {
|
|
49446
|
+
background-color: transparent;
|
|
49447
|
+
border: 0;
|
|
49448
|
+
box-sizing: border-box;
|
|
49449
|
+
cursor: pointer;
|
|
49450
|
+
display: block;
|
|
49451
|
+
height: 29px;
|
|
49452
|
+
outline: none;
|
|
49453
|
+
padding: 0;
|
|
49454
|
+
width: 29px;
|
|
49455
|
+
}
|
|
49456
|
+
|
|
49457
|
+
.maplibregl-ctrl-group button + button {
|
|
49458
|
+
border-top: 1px solid #ddd;
|
|
49459
|
+
}
|
|
49460
|
+
|
|
49461
|
+
.maplibregl-ctrl button .maplibregl-ctrl-icon {
|
|
49462
|
+
background-position: 50%;
|
|
49463
|
+
background-repeat: no-repeat;
|
|
49464
|
+
display: block;
|
|
49465
|
+
height: 100%;
|
|
49466
|
+
width: 100%;
|
|
49467
|
+
}
|
|
49468
|
+
|
|
49469
|
+
@media (forced-colors: active) {
|
|
49470
|
+
.maplibregl-ctrl-icon {
|
|
49471
|
+
background-color: transparent;
|
|
49472
|
+
}
|
|
49473
|
+
.maplibregl-ctrl-group button + button {
|
|
49474
|
+
border-top: 1px solid ButtonText;
|
|
49475
|
+
}
|
|
49476
|
+
}
|
|
49477
|
+
.maplibregl-ctrl button::-moz-focus-inner {
|
|
49478
|
+
border: 0;
|
|
49479
|
+
padding: 0;
|
|
49480
|
+
}
|
|
49481
|
+
|
|
49482
|
+
.maplibregl-ctrl-attrib-button:focus, .maplibregl-ctrl-group button:focus {
|
|
49483
|
+
box-shadow: 0 0 2px 2px #0096ff;
|
|
49484
|
+
}
|
|
49485
|
+
|
|
49486
|
+
.maplibregl-ctrl button:disabled {
|
|
49487
|
+
cursor: not-allowed;
|
|
49488
|
+
}
|
|
49489
|
+
|
|
49490
|
+
.maplibregl-ctrl button:disabled .maplibregl-ctrl-icon {
|
|
49491
|
+
opacity: 0.25;
|
|
49492
|
+
}
|
|
49493
|
+
|
|
49494
|
+
@media (hover: hover) {
|
|
49495
|
+
.maplibregl-ctrl button:not(:disabled):hover {
|
|
49496
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
49497
|
+
}
|
|
49498
|
+
}
|
|
49499
|
+
.maplibregl-ctrl button:not(:disabled):active {
|
|
49500
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
49501
|
+
}
|
|
49502
|
+
|
|
49503
|
+
.maplibregl-ctrl-group button:focus:focus-visible {
|
|
49504
|
+
box-shadow: 0 0 2px 2px #0096ff;
|
|
49505
|
+
}
|
|
49506
|
+
|
|
49507
|
+
.maplibregl-ctrl-group button:focus:not(:focus-visible) {
|
|
49508
|
+
box-shadow: none;
|
|
49509
|
+
}
|
|
49510
|
+
|
|
49511
|
+
.maplibregl-ctrl-group button:focus:first-child {
|
|
49512
|
+
border-radius: 4px 4px 0 0;
|
|
49513
|
+
}
|
|
49514
|
+
|
|
49515
|
+
.maplibregl-ctrl-group button:focus:last-child {
|
|
49516
|
+
border-radius: 0 0 4px 4px;
|
|
49517
|
+
}
|
|
49518
|
+
|
|
49519
|
+
.maplibregl-ctrl-group button:focus:only-child {
|
|
49520
|
+
border-radius: inherit;
|
|
49521
|
+
}
|
|
49522
|
+
|
|
49523
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
49524
|
+
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");
|
|
49525
|
+
}
|
|
49526
|
+
|
|
49527
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
49528
|
+
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");
|
|
49529
|
+
}
|
|
49530
|
+
|
|
49531
|
+
@media (forced-colors: active) {
|
|
49532
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
49533
|
+
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");
|
|
49534
|
+
}
|
|
49535
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
49536
|
+
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");
|
|
49537
|
+
}
|
|
49538
|
+
}
|
|
49539
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
49540
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
49541
|
+
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");
|
|
49542
|
+
}
|
|
49543
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
49544
|
+
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");
|
|
49545
|
+
}
|
|
49546
|
+
}
|
|
49547
|
+
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
49548
|
+
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");
|
|
49549
|
+
}
|
|
49550
|
+
|
|
49551
|
+
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
49552
|
+
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");
|
|
49553
|
+
}
|
|
49554
|
+
|
|
49555
|
+
@media (forced-colors: active) {
|
|
49556
|
+
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
49557
|
+
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");
|
|
49558
|
+
}
|
|
49559
|
+
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
49560
|
+
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");
|
|
49561
|
+
}
|
|
49562
|
+
}
|
|
49563
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
49564
|
+
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
49565
|
+
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");
|
|
49566
|
+
}
|
|
49567
|
+
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
49568
|
+
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");
|
|
49569
|
+
}
|
|
49570
|
+
}
|
|
49571
|
+
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
49572
|
+
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");
|
|
49573
|
+
}
|
|
49574
|
+
|
|
49575
|
+
@media (forced-colors: active) {
|
|
49576
|
+
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
49577
|
+
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");
|
|
49578
|
+
}
|
|
49579
|
+
}
|
|
49580
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
49581
|
+
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
49582
|
+
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");
|
|
49583
|
+
}
|
|
49584
|
+
}
|
|
49585
|
+
.maplibregl-ctrl button.maplibregl-ctrl-globe .maplibregl-ctrl-icon {
|
|
49586
|
+
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");
|
|
49587
|
+
}
|
|
49588
|
+
|
|
49589
|
+
.maplibregl-ctrl button.maplibregl-ctrl-globe-enabled .maplibregl-ctrl-icon {
|
|
49590
|
+
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");
|
|
49591
|
+
}
|
|
49592
|
+
|
|
49593
|
+
.maplibregl-ctrl button.maplibregl-ctrl-terrain .maplibregl-ctrl-icon {
|
|
49594
|
+
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");
|
|
49595
|
+
}
|
|
49596
|
+
|
|
49597
|
+
.maplibregl-ctrl button.maplibregl-ctrl-terrain-enabled .maplibregl-ctrl-icon {
|
|
49598
|
+
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");
|
|
49599
|
+
}
|
|
49600
|
+
|
|
49601
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
49602
|
+
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");
|
|
49603
|
+
}
|
|
49604
|
+
|
|
49605
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
|
|
49606
|
+
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");
|
|
49607
|
+
}
|
|
49608
|
+
|
|
49609
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon {
|
|
49610
|
+
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");
|
|
49611
|
+
}
|
|
49612
|
+
|
|
49613
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon {
|
|
49614
|
+
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");
|
|
49615
|
+
}
|
|
49616
|
+
|
|
49617
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon {
|
|
49618
|
+
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");
|
|
49619
|
+
}
|
|
49620
|
+
|
|
49621
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon {
|
|
49622
|
+
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");
|
|
49623
|
+
}
|
|
49624
|
+
|
|
49625
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting .maplibregl-ctrl-icon {
|
|
49626
|
+
animation: maplibregl-spin 2s linear infinite;
|
|
49627
|
+
}
|
|
49628
|
+
|
|
49629
|
+
@media (forced-colors: active) {
|
|
49630
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
49631
|
+
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");
|
|
49632
|
+
}
|
|
49633
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
|
|
49634
|
+
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");
|
|
49635
|
+
}
|
|
49636
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon {
|
|
49637
|
+
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");
|
|
49638
|
+
}
|
|
49639
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon {
|
|
49640
|
+
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");
|
|
49641
|
+
}
|
|
49642
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon {
|
|
49643
|
+
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");
|
|
49644
|
+
}
|
|
49645
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon {
|
|
49646
|
+
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");
|
|
49647
|
+
}
|
|
49648
|
+
}
|
|
49649
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
49650
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
49651
|
+
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");
|
|
49652
|
+
}
|
|
49653
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
|
|
49654
|
+
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");
|
|
49655
|
+
}
|
|
49656
|
+
}
|
|
49657
|
+
@keyframes maplibregl-spin {
|
|
49658
|
+
0% {
|
|
49659
|
+
transform: rotate(0deg);
|
|
49660
|
+
}
|
|
49661
|
+
to {
|
|
49662
|
+
transform: rotate(1turn);
|
|
49663
|
+
}
|
|
49664
|
+
}
|
|
49665
|
+
a.maplibregl-ctrl-logo {
|
|
49666
|
+
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");
|
|
49667
|
+
background-repeat: no-repeat;
|
|
49668
|
+
cursor: pointer;
|
|
49669
|
+
display: block;
|
|
49670
|
+
height: 23px;
|
|
49671
|
+
margin: 0 0 -4px -4px;
|
|
49672
|
+
overflow: hidden;
|
|
49673
|
+
width: 88px;
|
|
49674
|
+
}
|
|
49675
|
+
|
|
49676
|
+
a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
49677
|
+
width: 14px;
|
|
49678
|
+
}
|
|
49679
|
+
|
|
49680
|
+
@media (forced-colors: active) {
|
|
49681
|
+
a.maplibregl-ctrl-logo {
|
|
49682
|
+
background-color: transparent;
|
|
49683
|
+
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");
|
|
49684
|
+
}
|
|
49685
|
+
}
|
|
49686
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
49687
|
+
a.maplibregl-ctrl-logo {
|
|
49688
|
+
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");
|
|
49689
|
+
}
|
|
49690
|
+
}
|
|
49691
|
+
.maplibregl-ctrl.maplibregl-ctrl-attrib {
|
|
49692
|
+
background-color: hsla(0, 0%, 100%, 0.5);
|
|
49693
|
+
margin: 0;
|
|
49694
|
+
padding: 0 5px;
|
|
49695
|
+
}
|
|
49696
|
+
|
|
49697
|
+
@media screen {
|
|
49698
|
+
.maplibregl-ctrl-attrib.maplibregl-compact {
|
|
49699
|
+
background-color: #fff;
|
|
49700
|
+
border-radius: 12px;
|
|
49701
|
+
box-sizing: content-box;
|
|
49702
|
+
color: #000;
|
|
49703
|
+
margin: 10px;
|
|
49704
|
+
min-height: 20px;
|
|
49705
|
+
padding: 2px 24px 2px 0;
|
|
49706
|
+
position: relative;
|
|
49707
|
+
}
|
|
49708
|
+
.maplibregl-ctrl-attrib.maplibregl-compact-show {
|
|
49709
|
+
padding: 2px 28px 2px 8px;
|
|
49710
|
+
visibility: visible;
|
|
49711
|
+
}
|
|
49712
|
+
.maplibregl-ctrl-bottom-left > .maplibregl-ctrl-attrib.maplibregl-compact-show, .maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact-show {
|
|
49713
|
+
border-radius: 12px;
|
|
49714
|
+
padding: 2px 8px 2px 28px;
|
|
49715
|
+
}
|
|
49716
|
+
.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-inner {
|
|
49717
|
+
display: none;
|
|
49718
|
+
}
|
|
49719
|
+
.maplibregl-ctrl-attrib-button {
|
|
49720
|
+
background-color: hsla(0, 0%, 100%, 0.5);
|
|
49721
|
+
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");
|
|
49722
|
+
border: 0;
|
|
49723
|
+
border-radius: 12px;
|
|
49724
|
+
box-sizing: border-box;
|
|
49725
|
+
cursor: pointer;
|
|
49726
|
+
display: none;
|
|
49727
|
+
height: 24px;
|
|
49728
|
+
outline: none;
|
|
49729
|
+
position: absolute;
|
|
49730
|
+
right: 0;
|
|
49731
|
+
top: 0;
|
|
49732
|
+
width: 24px;
|
|
49733
|
+
}
|
|
49734
|
+
.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button {
|
|
49735
|
+
-webkit-appearance: none;
|
|
49736
|
+
-moz-appearance: none;
|
|
49737
|
+
appearance: none;
|
|
49738
|
+
list-style: none;
|
|
49739
|
+
}
|
|
49740
|
+
.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button::-webkit-details-marker {
|
|
49741
|
+
display: none;
|
|
49742
|
+
}
|
|
49743
|
+
.maplibregl-ctrl-bottom-left .maplibregl-ctrl-attrib-button, .maplibregl-ctrl-top-left .maplibregl-ctrl-attrib-button {
|
|
49744
|
+
left: 0;
|
|
49745
|
+
}
|
|
49746
|
+
.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button, .maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-inner {
|
|
49747
|
+
display: block;
|
|
49748
|
+
}
|
|
49749
|
+
.maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-button {
|
|
49750
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
49751
|
+
}
|
|
49752
|
+
.maplibregl-ctrl-bottom-right > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49753
|
+
bottom: 0;
|
|
49754
|
+
right: 0;
|
|
49755
|
+
}
|
|
49756
|
+
.maplibregl-ctrl-top-right > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49757
|
+
right: 0;
|
|
49758
|
+
top: 0;
|
|
49759
|
+
}
|
|
49760
|
+
.maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49761
|
+
left: 0;
|
|
49762
|
+
top: 0;
|
|
49763
|
+
}
|
|
49764
|
+
.maplibregl-ctrl-bottom-left > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49765
|
+
bottom: 0;
|
|
49766
|
+
left: 0;
|
|
49767
|
+
}
|
|
49768
|
+
}
|
|
49769
|
+
@media screen and (forced-colors: active) {
|
|
49770
|
+
.maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49771
|
+
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");
|
|
49772
|
+
}
|
|
49773
|
+
}
|
|
49774
|
+
@media screen and (forced-colors: active) and (prefers-color-scheme: light) {
|
|
49775
|
+
.maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49776
|
+
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");
|
|
49777
|
+
}
|
|
49778
|
+
}
|
|
49779
|
+
.maplibregl-ctrl-attrib a {
|
|
49780
|
+
color: rgba(0, 0, 0, 0.75);
|
|
49781
|
+
text-decoration: none;
|
|
49782
|
+
}
|
|
49783
|
+
|
|
49784
|
+
.maplibregl-ctrl-attrib a:hover {
|
|
49785
|
+
color: inherit;
|
|
49786
|
+
text-decoration: underline;
|
|
49787
|
+
}
|
|
49788
|
+
|
|
49789
|
+
.maplibregl-attrib-empty {
|
|
49790
|
+
display: none;
|
|
49791
|
+
}
|
|
49792
|
+
|
|
49793
|
+
.maplibregl-ctrl-scale {
|
|
49794
|
+
background-color: hsla(0, 0%, 100%, 0.75);
|
|
49795
|
+
border: 2px solid #333;
|
|
49796
|
+
border-top: #333;
|
|
49797
|
+
box-sizing: border-box;
|
|
49798
|
+
color: #333;
|
|
49799
|
+
font-size: 10px;
|
|
49800
|
+
padding: 0 5px;
|
|
49801
|
+
white-space: nowrap;
|
|
49091
49802
|
}
|
|
49092
|
-
|
|
49093
|
-
|
|
49803
|
+
|
|
49804
|
+
.maplibregl-popup {
|
|
49094
49805
|
display: flex;
|
|
49806
|
+
left: 0;
|
|
49807
|
+
pointer-events: none;
|
|
49808
|
+
position: absolute;
|
|
49809
|
+
top: 0;
|
|
49810
|
+
will-change: transform;
|
|
49811
|
+
}
|
|
49812
|
+
|
|
49813
|
+
.maplibregl-popup-anchor-top, .maplibregl-popup-anchor-top-left, .maplibregl-popup-anchor-top-right {
|
|
49095
49814
|
flex-direction: column;
|
|
49096
|
-
gap: 0.75rem;
|
|
49097
49815
|
}
|
|
49098
|
-
|
|
49099
|
-
|
|
49816
|
+
|
|
49817
|
+
.maplibregl-popup-anchor-bottom, .maplibregl-popup-anchor-bottom-left, .maplibregl-popup-anchor-bottom-right {
|
|
49818
|
+
flex-direction: column-reverse;
|
|
49100
49819
|
}
|
|
49101
|
-
|
|
49102
|
-
|
|
49103
|
-
flex-
|
|
49104
|
-
|
|
49820
|
+
|
|
49821
|
+
.maplibregl-popup-anchor-left {
|
|
49822
|
+
flex-direction: row;
|
|
49823
|
+
}
|
|
49824
|
+
|
|
49825
|
+
.maplibregl-popup-anchor-right {
|
|
49826
|
+
flex-direction: row-reverse;
|
|
49827
|
+
}
|
|
49828
|
+
|
|
49829
|
+
.maplibregl-popup-tip {
|
|
49830
|
+
border: 10px solid transparent;
|
|
49831
|
+
height: 0;
|
|
49832
|
+
width: 0;
|
|
49833
|
+
z-index: 1;
|
|
49834
|
+
}
|
|
49835
|
+
|
|
49836
|
+
.maplibregl-popup-anchor-top .maplibregl-popup-tip {
|
|
49837
|
+
align-self: center;
|
|
49838
|
+
border-bottom-color: #fff;
|
|
49839
|
+
border-top: none;
|
|
49105
49840
|
}
|
|
49106
|
-
|
|
49841
|
+
|
|
49842
|
+
.maplibregl-popup-anchor-top-left .maplibregl-popup-tip {
|
|
49107
49843
|
align-self: flex-start;
|
|
49844
|
+
border-bottom-color: #fff;
|
|
49845
|
+
border-left: none;
|
|
49846
|
+
border-top: none;
|
|
49108
49847
|
}
|
|
49109
49848
|
|
|
49110
|
-
|
|
49111
|
-
|
|
49112
|
-
|
|
49849
|
+
.maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
|
|
49850
|
+
align-self: flex-end;
|
|
49851
|
+
border-bottom-color: #fff;
|
|
49852
|
+
border-right: none;
|
|
49853
|
+
border-top: none;
|
|
49854
|
+
}
|
|
49855
|
+
|
|
49856
|
+
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
|
|
49857
|
+
align-self: center;
|
|
49858
|
+
border-bottom: none;
|
|
49859
|
+
border-top-color: #fff;
|
|
49860
|
+
}
|
|
49861
|
+
|
|
49862
|
+
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip {
|
|
49863
|
+
align-self: flex-start;
|
|
49864
|
+
border-bottom: none;
|
|
49865
|
+
border-left: none;
|
|
49866
|
+
border-top-color: #fff;
|
|
49867
|
+
}
|
|
49868
|
+
|
|
49869
|
+
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
|
|
49870
|
+
align-self: flex-end;
|
|
49871
|
+
border-bottom: none;
|
|
49872
|
+
border-right: none;
|
|
49873
|
+
border-top-color: #fff;
|
|
49874
|
+
}
|
|
49875
|
+
|
|
49876
|
+
.maplibregl-popup-anchor-left .maplibregl-popup-tip {
|
|
49877
|
+
align-self: center;
|
|
49878
|
+
border-left: none;
|
|
49879
|
+
border-right-color: #fff;
|
|
49880
|
+
}
|
|
49881
|
+
|
|
49882
|
+
.maplibregl-popup-anchor-right .maplibregl-popup-tip {
|
|
49883
|
+
align-self: center;
|
|
49884
|
+
border-left-color: #fff;
|
|
49885
|
+
border-right: none;
|
|
49886
|
+
}
|
|
49887
|
+
|
|
49888
|
+
[dir=rtl] .maplibregl-popup-anchor-left {
|
|
49889
|
+
flex-direction: row-reverse;
|
|
49890
|
+
}
|
|
49891
|
+
|
|
49892
|
+
[dir=rtl] .maplibregl-popup-anchor-right {
|
|
49893
|
+
flex-direction: row;
|
|
49894
|
+
}
|
|
49895
|
+
|
|
49896
|
+
[dir=rtl] .maplibregl-popup-anchor-top-left .maplibregl-popup-tip {
|
|
49897
|
+
align-self: flex-end;
|
|
49898
|
+
}
|
|
49899
|
+
|
|
49900
|
+
[dir=rtl] .maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
|
|
49901
|
+
align-self: flex-start;
|
|
49902
|
+
}
|
|
49903
|
+
|
|
49904
|
+
[dir=rtl] .maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip {
|
|
49905
|
+
align-self: flex-end;
|
|
49906
|
+
}
|
|
49907
|
+
|
|
49908
|
+
[dir=rtl] .maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
|
|
49909
|
+
align-self: flex-start;
|
|
49910
|
+
}
|
|
49911
|
+
|
|
49912
|
+
.maplibregl-popup-close-button {
|
|
49913
|
+
background-color: transparent;
|
|
49914
|
+
border: 0;
|
|
49915
|
+
border-radius: 0 3px 0 0;
|
|
49916
|
+
cursor: pointer;
|
|
49917
|
+
position: absolute;
|
|
49918
|
+
right: 0;
|
|
49919
|
+
top: 0;
|
|
49920
|
+
}
|
|
49921
|
+
|
|
49922
|
+
.maplibregl-popup-close-button:hover {
|
|
49923
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
49924
|
+
}
|
|
49925
|
+
|
|
49926
|
+
.maplibregl-popup-content {
|
|
49927
|
+
background: #fff;
|
|
49928
|
+
border-radius: 3px;
|
|
49929
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
49930
|
+
padding: 15px 10px;
|
|
49931
|
+
pointer-events: auto;
|
|
49932
|
+
position: relative;
|
|
49933
|
+
}
|
|
49934
|
+
|
|
49935
|
+
.maplibregl-popup-anchor-top-left .maplibregl-popup-content {
|
|
49936
|
+
border-top-left-radius: 0;
|
|
49937
|
+
}
|
|
49938
|
+
|
|
49939
|
+
.maplibregl-popup-anchor-top-right .maplibregl-popup-content {
|
|
49940
|
+
border-top-right-radius: 0;
|
|
49941
|
+
}
|
|
49942
|
+
|
|
49943
|
+
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-content {
|
|
49944
|
+
border-bottom-left-radius: 0;
|
|
49945
|
+
}
|
|
49946
|
+
|
|
49947
|
+
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-content {
|
|
49948
|
+
border-bottom-right-radius: 0;
|
|
49949
|
+
}
|
|
49950
|
+
|
|
49951
|
+
.maplibregl-popup-track-pointer {
|
|
49952
|
+
display: none;
|
|
49953
|
+
}
|
|
49954
|
+
|
|
49955
|
+
.maplibregl-popup-track-pointer * {
|
|
49956
|
+
pointer-events: none;
|
|
49957
|
+
-webkit-user-select: none;
|
|
49958
|
+
-moz-user-select: none;
|
|
49959
|
+
user-select: none;
|
|
49960
|
+
}
|
|
49961
|
+
|
|
49962
|
+
.maplibregl-map:hover .maplibregl-popup-track-pointer {
|
|
49963
|
+
display: flex;
|
|
49964
|
+
}
|
|
49965
|
+
|
|
49966
|
+
.maplibregl-map:active .maplibregl-popup-track-pointer {
|
|
49967
|
+
display: none;
|
|
49968
|
+
}
|
|
49969
|
+
|
|
49970
|
+
.maplibregl-marker {
|
|
49971
|
+
left: 0;
|
|
49972
|
+
position: absolute;
|
|
49973
|
+
top: 0;
|
|
49974
|
+
transition: opacity 0.2s;
|
|
49975
|
+
will-change: transform;
|
|
49976
|
+
}
|
|
49977
|
+
|
|
49978
|
+
.maplibregl-user-location-dot, .maplibregl-user-location-dot:before {
|
|
49979
|
+
background-color: #1da1f2;
|
|
49980
|
+
border-radius: 50%;
|
|
49981
|
+
height: 15px;
|
|
49982
|
+
width: 15px;
|
|
49983
|
+
}
|
|
49984
|
+
|
|
49985
|
+
.maplibregl-user-location-dot:before {
|
|
49986
|
+
animation: maplibregl-user-location-dot-pulse 2s infinite;
|
|
49987
|
+
content: "";
|
|
49988
|
+
position: absolute;
|
|
49989
|
+
}
|
|
49990
|
+
|
|
49991
|
+
.maplibregl-user-location-dot:after {
|
|
49992
|
+
border: 2px solid #fff;
|
|
49993
|
+
border-radius: 50%;
|
|
49994
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
|
|
49995
|
+
box-sizing: border-box;
|
|
49996
|
+
content: "";
|
|
49997
|
+
height: 19px;
|
|
49998
|
+
left: -2px;
|
|
49999
|
+
position: absolute;
|
|
50000
|
+
top: -2px;
|
|
50001
|
+
width: 19px;
|
|
50002
|
+
}
|
|
50003
|
+
|
|
50004
|
+
@media (prefers-reduced-motion: reduce) {
|
|
50005
|
+
.maplibregl-user-location-dot:before {
|
|
50006
|
+
animation: none;
|
|
49113
50007
|
}
|
|
49114
|
-
|
|
49115
|
-
|
|
50008
|
+
}
|
|
50009
|
+
@keyframes maplibregl-user-location-dot-pulse {
|
|
50010
|
+
0% {
|
|
50011
|
+
opacity: 1;
|
|
50012
|
+
transform: scale(1);
|
|
50013
|
+
}
|
|
50014
|
+
70% {
|
|
50015
|
+
opacity: 0;
|
|
50016
|
+
transform: scale(3);
|
|
50017
|
+
}
|
|
50018
|
+
to {
|
|
50019
|
+
opacity: 0;
|
|
50020
|
+
transform: scale(1);
|
|
49116
50021
|
}
|
|
49117
50022
|
}
|
|
49118
|
-
.
|
|
49119
|
-
background:
|
|
49120
|
-
border-radius: 0;
|
|
49121
|
-
box-shadow: 0 0.25rem 1rem rgba(86, 92, 101, 0.06);
|
|
50023
|
+
.maplibregl-user-location-dot-stale {
|
|
50024
|
+
background-color: #aaa;
|
|
49122
50025
|
}
|
|
49123
|
-
|
|
49124
|
-
|
|
50026
|
+
|
|
50027
|
+
.maplibregl-user-location-dot-stale:after {
|
|
50028
|
+
display: none;
|
|
49125
50029
|
}
|
|
49126
|
-
|
|
49127
|
-
|
|
50030
|
+
|
|
50031
|
+
.maplibregl-user-location-accuracy-circle {
|
|
50032
|
+
background-color: rgba(29, 161, 242, 0.2);
|
|
50033
|
+
border-radius: 100%;
|
|
50034
|
+
height: 1px;
|
|
50035
|
+
width: 1px;
|
|
49128
50036
|
}
|
|
49129
|
-
|
|
49130
|
-
|
|
50037
|
+
|
|
50038
|
+
.maplibregl-crosshair, .maplibregl-crosshair .maplibregl-interactive, .maplibregl-crosshair .maplibregl-interactive:active {
|
|
50039
|
+
cursor: crosshair;
|
|
49131
50040
|
}
|
|
49132
|
-
|
|
49133
|
-
|
|
49134
|
-
|
|
49135
|
-
|
|
49136
|
-
|
|
49137
|
-
|
|
49138
|
-
|
|
50041
|
+
|
|
50042
|
+
.maplibregl-boxzoom {
|
|
50043
|
+
background: #fff;
|
|
50044
|
+
border: 2px dotted #202020;
|
|
50045
|
+
height: 0;
|
|
50046
|
+
left: 0;
|
|
50047
|
+
opacity: 0.5;
|
|
50048
|
+
position: absolute;
|
|
50049
|
+
top: 0;
|
|
50050
|
+
width: 0;
|
|
49139
50051
|
}
|
|
49140
|
-
|
|
49141
|
-
|
|
49142
|
-
|
|
49143
|
-
|
|
49144
|
-
|
|
49145
|
-
|
|
49146
|
-
|
|
50052
|
+
|
|
50053
|
+
.maplibregl-cooperative-gesture-screen {
|
|
50054
|
+
align-items: center;
|
|
50055
|
+
background: rgba(0, 0, 0, 0.4);
|
|
50056
|
+
color: #fff;
|
|
50057
|
+
display: flex;
|
|
50058
|
+
font-size: 1.4em;
|
|
50059
|
+
inset: 0;
|
|
50060
|
+
justify-content: center;
|
|
50061
|
+
line-height: 1.2;
|
|
50062
|
+
opacity: 0;
|
|
50063
|
+
padding: 1rem;
|
|
50064
|
+
pointer-events: none;
|
|
50065
|
+
position: absolute;
|
|
50066
|
+
transition: opacity 1s ease 1s;
|
|
50067
|
+
z-index: 99999;
|
|
49147
50068
|
}
|
|
49148
|
-
|
|
49149
|
-
|
|
49150
|
-
|
|
49151
|
-
|
|
49152
|
-
|
|
49153
|
-
|
|
49154
|
-
|
|
50069
|
+
|
|
50070
|
+
.maplibregl-cooperative-gesture-screen.maplibregl-show {
|
|
50071
|
+
opacity: 1;
|
|
50072
|
+
transition: opacity 0.05s;
|
|
50073
|
+
}
|
|
50074
|
+
|
|
50075
|
+
.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
|
|
50076
|
+
display: none;
|
|
50077
|
+
}
|
|
50078
|
+
|
|
50079
|
+
@media (hover: none), (pointer: coarse) {
|
|
50080
|
+
.maplibregl-cooperative-gesture-screen .maplibregl-desktop-message {
|
|
50081
|
+
display: none;
|
|
50082
|
+
}
|
|
50083
|
+
.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
|
|
50084
|
+
display: block;
|
|
50085
|
+
}
|
|
50086
|
+
}
|
|
50087
|
+
.maplibregl-pseudo-fullscreen {
|
|
50088
|
+
height: 100% !important;
|
|
50089
|
+
left: 0 !important;
|
|
50090
|
+
position: fixed !important;
|
|
50091
|
+
top: 0 !important;
|
|
50092
|
+
width: 100% !important;
|
|
50093
|
+
z-index: 99999;
|
|
50094
|
+
}
|
|
50095
|
+
|
|
50096
|
+
.mapboxgl-compare {
|
|
50097
|
+
background-color: #fff;
|
|
50098
|
+
position: absolute;
|
|
50099
|
+
width: 2px;
|
|
50100
|
+
height: 100%;
|
|
50101
|
+
z-index: 1;
|
|
50102
|
+
}
|
|
50103
|
+
|
|
50104
|
+
.mapboxgl-compare .compare-swiper-vertical {
|
|
50105
|
+
background-color: #3887be;
|
|
50106
|
+
box-shadow: inset 0 0 0 2px #fff;
|
|
50107
|
+
display: inline-block;
|
|
50108
|
+
border-radius: 50%;
|
|
50109
|
+
position: absolute;
|
|
50110
|
+
width: 60px;
|
|
50111
|
+
height: 60px;
|
|
50112
|
+
top: 50%;
|
|
50113
|
+
left: -30px;
|
|
50114
|
+
margin: -30px 1px 0;
|
|
50115
|
+
color: #fff;
|
|
50116
|
+
cursor: ew-resize;
|
|
50117
|
+
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgd2lkdGg9IjYwIiAgIGhlaWdodD0iNjAiICAgdmVyc2lvbj0iMS4xIiAgIHZpZXdCb3g9IjAgMCA2MCA2MCIgICBpZD0ic3ZnNTQzNCIgICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkxK2RldmVsK29zeG1lbnUgcjEyOTExIiAgIHNvZGlwb2RpOmRvY25hbWU9Imwtci5zdmciPiAgPG1ldGFkYXRhICAgICBpZD0ibWV0YWRhdGE1NDQ0Ij4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzNTQ0MiIgLz4gIDxzb2RpcG9kaTpuYW1lZHZpZXcgICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIgICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2IiAgICAgYm9yZGVyb3BhY2l0eT0iMSIgICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiICAgICBncmlkdG9sZXJhbmNlPSIxMCIgICAgIGd1aWRldG9sZXJhbmNlPSIxMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIgICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTI4NiIgICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9Ijc1MSIgICAgIGlkPSJuYW1lZHZpZXc1NDQwIiAgICAgc2hvd2dyaWQ9InRydWUiICAgICBpbmtzY2FwZTp6b29tPSI0IiAgICAgaW5rc2NhcGU6Y3g9IjI1Ljg4OTgzMSIgICAgIGlua3NjYXBlOmN5PSIzNC4zODE4MzMiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMCIgICAgIGlua3NjYXBlOndpbmRvdy15PSIyMyIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjAiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmc1NDM0IiAgICAgaW5rc2NhcGU6b2JqZWN0LW5vZGVzPSJ0cnVlIiAgICAgaW5rc2NhcGU6c25hcC1zbW9vdGgtbm9kZXM9InRydWUiPiAgICA8aW5rc2NhcGU6Z3JpZCAgICAgICB0eXBlPSJ4eWdyaWQiICAgICAgIGlkPSJncmlkNTk4OSIgLz4gIDwvc29kaXBvZGk6bmFtZWR2aWV3PiAgPHBhdGggICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjFweDtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2Utb3BhY2l0eToxIiAgICAgZD0iTSAyNSAyNCBMIDE2IDMwIEwgMjUgMzYgTCAyNSAyNCB6IE0gMzUgMjQgTCAzNSAzNiBMIDQ0IDMwIEwgMzUgMjQgeiAiICAgICBpZD0icGF0aDU5OTUiIC8+PC9zdmc+);
|
|
50118
|
+
}
|
|
50119
|
+
|
|
50120
|
+
.mapboxgl-compare-horizontal {
|
|
50121
|
+
position: relative;
|
|
50122
|
+
width: 100%;
|
|
50123
|
+
height: 2px;
|
|
50124
|
+
}
|
|
50125
|
+
|
|
50126
|
+
.mapboxgl-compare .compare-swiper-horizontal {
|
|
50127
|
+
background-color: #3887be;
|
|
50128
|
+
box-shadow: inset 0 0 0 2px #fff;
|
|
50129
|
+
display: inline-block;
|
|
50130
|
+
border-radius: 50%;
|
|
50131
|
+
position: absolute;
|
|
50132
|
+
width: 60px;
|
|
50133
|
+
height: 60px;
|
|
50134
|
+
top: 50%;
|
|
50135
|
+
left: 50%;
|
|
50136
|
+
margin: -30px 1px 0;
|
|
50137
|
+
color: #fff;
|
|
50138
|
+
cursor: ns-resize;
|
|
50139
|
+
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgd2lkdGg9IjYwIiAgIGhlaWdodD0iNjAiICAgdmVyc2lvbj0iMS4xIiAgIHZpZXdCb3g9IjAgMCA2MCA2MCIgICBpZD0ic3ZnNTQzNCIgICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkxK2RldmVsK29zeG1lbnUgcjEyOTExIiAgIHNvZGlwb2RpOmRvY25hbWU9Imwtci5zdmciPiAgPG1ldGFkYXRhICAgICBpZD0ibWV0YWRhdGE1NDQ0Ij4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzNTQ0MiIgLz4gIDxzb2RpcG9kaTpuYW1lZHZpZXcgICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIgICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2IiAgICAgYm9yZGVyb3BhY2l0eT0iMSIgICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiICAgICBncmlkdG9sZXJhbmNlPSIxMCIgICAgIGd1aWRldG9sZXJhbmNlPSIxMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIgICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTI4NiIgICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9Ijc1MSIgICAgIGlkPSJuYW1lZHZpZXc1NDQwIiAgICAgc2hvd2dyaWQ9InRydWUiICAgICBpbmtzY2FwZTp6b29tPSI0IiAgICAgaW5rc2NhcGU6Y3g9IjI1Ljg4OTgzMSIgICAgIGlua3NjYXBlOmN5PSIzNC4zODE4MzMiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMCIgICAgIGlua3NjYXBlOndpbmRvdy15PSIyMyIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjAiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmc1NDM0IiAgICAgaW5rc2NhcGU6b2JqZWN0LW5vZGVzPSJ0cnVlIiAgICAgaW5rc2NhcGU6c25hcC1zbW9vdGgtbm9kZXM9InRydWUiPiAgICA8aW5rc2NhcGU6Z3JpZCAgICAgICB0eXBlPSJ4eWdyaWQiICAgICAgIGlkPSJncmlkNTk4OSIgLz4gIDwvc29kaXBvZGk6bmFtZWR2aWV3PiAgPHBhdGggICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjFweDtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2Utb3BhY2l0eToxIiAgICAgZD0iTSAyNSAyNCBMIDE2IDMwIEwgMjUgMzYgTCAyNSAyNCB6IE0gMzUgMjQgTCAzNSAzNiBMIDQ0IDMwIEwgMzUgMjQgeiAiICAgICBpZD0icGF0aDU5OTUiIC8+PC9zdmc+);
|
|
50140
|
+
transform: rotate(90deg);
|
|
49155
50141
|
}
|
|
49156
50142
|
|
|
49157
50143
|
/* dm-mono-latin-400-italic */
|