@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/default.css
CHANGED
|
@@ -47480,236 +47480,6 @@ example:
|
|
|
47480
47480
|
}
|
|
47481
47481
|
}
|
|
47482
47482
|
|
|
47483
|
-
.blocks-compare-map {
|
|
47484
|
-
position: relative;
|
|
47485
|
-
width: 100%;
|
|
47486
|
-
flex: 1;
|
|
47487
|
-
min-height: 0;
|
|
47488
|
-
}
|
|
47489
|
-
.blocks-compare-map .mapboxgl-compare .compare-swiper-vertical {
|
|
47490
|
-
background-color: #005ea2;
|
|
47491
|
-
}
|
|
47492
|
-
|
|
47493
|
-
.blocks-card {
|
|
47494
|
-
display: flex;
|
|
47495
|
-
flex-direction: column;
|
|
47496
|
-
isolation: isolate;
|
|
47497
|
-
min-height: 20rem;
|
|
47498
|
-
position: relative;
|
|
47499
|
-
width: 100%;
|
|
47500
|
-
}
|
|
47501
|
-
.blocks-card__content-container {
|
|
47502
|
-
flex: 1;
|
|
47503
|
-
}
|
|
47504
|
-
.blocks-card__content-container, .blocks-card__children {
|
|
47505
|
-
align-items: center;
|
|
47506
|
-
display: flex;
|
|
47507
|
-
padding: 2rem 1.5rem;
|
|
47508
|
-
width: 100%;
|
|
47509
|
-
z-index: 1;
|
|
47510
|
-
}
|
|
47511
|
-
@media all and (min-width: 40em) {
|
|
47512
|
-
.blocks-card__content-container, .blocks-card__children {
|
|
47513
|
-
padding: 2.5rem 4rem;
|
|
47514
|
-
}
|
|
47515
|
-
}
|
|
47516
|
-
@media all and (min-width: 64em) {
|
|
47517
|
-
.blocks-card__content-container, .blocks-card__children {
|
|
47518
|
-
padding: 2.5rem 5rem;
|
|
47519
|
-
}
|
|
47520
|
-
}
|
|
47521
|
-
.blocks-card--image-left .blocks-card__content-container, .blocks-card--image-right .blocks-card__content-container {
|
|
47522
|
-
align-items: start;
|
|
47523
|
-
flex-direction: column;
|
|
47524
|
-
gap: 1.5rem;
|
|
47525
|
-
}
|
|
47526
|
-
@media all and (min-width: 40em) {
|
|
47527
|
-
.blocks-card--image-left .blocks-card__content-container, .blocks-card--image-right .blocks-card__content-container {
|
|
47528
|
-
align-items: center;
|
|
47529
|
-
flex-direction: row;
|
|
47530
|
-
gap: 2.5rem;
|
|
47531
|
-
}
|
|
47532
|
-
}
|
|
47533
|
-
@media all and (min-width: 40em) {
|
|
47534
|
-
.blocks-card--image-right .blocks-card__content-container {
|
|
47535
|
-
flex-direction: row-reverse;
|
|
47536
|
-
}
|
|
47537
|
-
}
|
|
47538
|
-
.blocks-card--mast-head .blocks-card__content-container,
|
|
47539
|
-
.blocks-card--mast-head .blocks-card__children {
|
|
47540
|
-
margin-left: auto;
|
|
47541
|
-
margin-right: auto;
|
|
47542
|
-
max-width: 75rem;
|
|
47543
|
-
padding-left: 1rem;
|
|
47544
|
-
padding-right: 1rem;
|
|
47545
|
-
}
|
|
47546
|
-
@media all and (min-width: 75em) {
|
|
47547
|
-
.blocks-card--mast-head .blocks-card__content-container,
|
|
47548
|
-
.blocks-card--mast-head .blocks-card__children {
|
|
47549
|
-
padding-left: 2rem;
|
|
47550
|
-
padding-right: 2rem;
|
|
47551
|
-
}
|
|
47552
|
-
}
|
|
47553
|
-
.blocks-card__media {
|
|
47554
|
-
inset: 0;
|
|
47555
|
-
min-height: 175px;
|
|
47556
|
-
position: absolute;
|
|
47557
|
-
width: 100%;
|
|
47558
|
-
z-index: 0;
|
|
47559
|
-
}
|
|
47560
|
-
.blocks-card__media:only-child {
|
|
47561
|
-
min-height: 100%;
|
|
47562
|
-
}
|
|
47563
|
-
@media all and (min-width: 40em) {
|
|
47564
|
-
.blocks-card__media {
|
|
47565
|
-
min-height: 0;
|
|
47566
|
-
}
|
|
47567
|
-
}
|
|
47568
|
-
.blocks-card__media > :is(img, svg, video, canvas) {
|
|
47569
|
-
height: 100%;
|
|
47570
|
-
display: block;
|
|
47571
|
-
inset: 0;
|
|
47572
|
-
object-fit: cover;
|
|
47573
|
-
position: absolute;
|
|
47574
|
-
width: 100%;
|
|
47575
|
-
}
|
|
47576
|
-
.blocks-card--image-left .blocks-card__media, .blocks-card--image-right .blocks-card__media {
|
|
47577
|
-
position: relative;
|
|
47578
|
-
}
|
|
47579
|
-
@media all and (min-width: 40em) {
|
|
47580
|
-
.blocks-card--image-left .blocks-card__media, .blocks-card--image-right .blocks-card__media {
|
|
47581
|
-
align-self: stretch;
|
|
47582
|
-
flex: 1 1 0;
|
|
47583
|
-
}
|
|
47584
|
-
}
|
|
47585
|
-
.blocks-card--image-left .blocks-card__media:only-child, .blocks-card--image-right .blocks-card__media:only-child {
|
|
47586
|
-
position: unset;
|
|
47587
|
-
}
|
|
47588
|
-
.blocks-card__content {
|
|
47589
|
-
display: flex;
|
|
47590
|
-
flex-direction: column;
|
|
47591
|
-
gap: 1rem;
|
|
47592
|
-
position: relative;
|
|
47593
|
-
}
|
|
47594
|
-
@media all and (min-width: 40em) {
|
|
47595
|
-
.blocks-card__content {
|
|
47596
|
-
flex: 1 1 0;
|
|
47597
|
-
max-width: 72ex;
|
|
47598
|
-
}
|
|
47599
|
-
}
|
|
47600
|
-
@media all and (min-width: 40em) {
|
|
47601
|
-
.blocks-card--image-left .blocks-card__content, .blocks-card--image-right .blocks-card__content {
|
|
47602
|
-
max-width: none;
|
|
47603
|
-
}
|
|
47604
|
-
}
|
|
47605
|
-
.blocks-card__title {
|
|
47606
|
-
margin: 0;
|
|
47607
|
-
}
|
|
47608
|
-
.blocks-card__description {
|
|
47609
|
-
margin: 0;
|
|
47610
|
-
}
|
|
47611
|
-
.blocks-card__actions {
|
|
47612
|
-
display: flex;
|
|
47613
|
-
flex-wrap: wrap;
|
|
47614
|
-
gap: 0.5rem;
|
|
47615
|
-
}
|
|
47616
|
-
.blocks-card__actions .usa-button {
|
|
47617
|
-
margin-right: 0;
|
|
47618
|
-
}
|
|
47619
|
-
.blocks-card--image-left .blocks-card__actions .usa-button, .blocks-card--image-right .blocks-card__actions .usa-button {
|
|
47620
|
-
flex: 1 1 0;
|
|
47621
|
-
white-space: nowrap;
|
|
47622
|
-
}
|
|
47623
|
-
.blocks-card::after {
|
|
47624
|
-
content: "";
|
|
47625
|
-
position: absolute;
|
|
47626
|
-
inset: 0;
|
|
47627
|
-
z-index: 0;
|
|
47628
|
-
}
|
|
47629
|
-
|
|
47630
|
-
@media all and (min-width: 40em) {
|
|
47631
|
-
[class*=grid-col-] > .blocks-card .blocks-card__content-container {
|
|
47632
|
-
align-items: stretch;
|
|
47633
|
-
}
|
|
47634
|
-
[class*=grid-col-] > .blocks-card .blocks-card__actions {
|
|
47635
|
-
margin-top: auto;
|
|
47636
|
-
}
|
|
47637
|
-
}
|
|
47638
|
-
.blocks-card::after {
|
|
47639
|
-
background: linear-gradient(90deg, #f0f0f0 0%, rgba(240, 240, 240, 0.3) 100%);
|
|
47640
|
-
}
|
|
47641
|
-
@media all and (min-width: 64em) {
|
|
47642
|
-
.blocks-card::after {
|
|
47643
|
-
background: linear-gradient(90deg, #f0f0f0 0%, rgba(240, 240, 240, 0.3) 70%, rgba(240, 240, 240, 0) 100%);
|
|
47644
|
-
}
|
|
47645
|
-
}
|
|
47646
|
-
.blocks-card--dark::after {
|
|
47647
|
-
background: linear-gradient(90deg, #1b1b1b 0%, rgba(27, 27, 27, 0.3) 100%);
|
|
47648
|
-
}
|
|
47649
|
-
@media all and (min-width: 64em) {
|
|
47650
|
-
.blocks-card--dark::after {
|
|
47651
|
-
background: linear-gradient(90deg, #1b1b1b 0%, rgba(27, 27, 27, 0.3) 70%, rgba(27, 27, 27, 0) 100%);
|
|
47652
|
-
}
|
|
47653
|
-
}
|
|
47654
|
-
.blocks-card--brand::after {
|
|
47655
|
-
background: linear-gradient(90deg, #1a4480 0%, rgba(26, 68, 128, 0.3) 100%);
|
|
47656
|
-
}
|
|
47657
|
-
@media all and (min-width: 64em) {
|
|
47658
|
-
.blocks-card--brand::after {
|
|
47659
|
-
background: linear-gradient(90deg, #1a4480 0%, rgba(26, 68, 128, 0.3) 70%, rgba(26, 68, 128, 0) 100%);
|
|
47660
|
-
}
|
|
47661
|
-
}
|
|
47662
|
-
.blocks-card--image-left, .blocks-card--image-right {
|
|
47663
|
-
background-color: #f0f0f0;
|
|
47664
|
-
}
|
|
47665
|
-
.blocks-card--image-left::after, .blocks-card--image-right::after {
|
|
47666
|
-
background: none;
|
|
47667
|
-
}
|
|
47668
|
-
.blocks-card--dark.blocks-card--image-left, .blocks-card--dark.blocks-card--image-right {
|
|
47669
|
-
background-color: #1b1b1b;
|
|
47670
|
-
}
|
|
47671
|
-
.blocks-card--brand.blocks-card--image-left, .blocks-card--brand.blocks-card--image-right {
|
|
47672
|
-
background-color: #1a4480;
|
|
47673
|
-
}
|
|
47674
|
-
.blocks-card__title {
|
|
47675
|
-
color: #1b1b1b;
|
|
47676
|
-
font-family: Public Sans Web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
47677
|
-
font-size: 1.95rem;
|
|
47678
|
-
font-weight: 700;
|
|
47679
|
-
line-height: 1;
|
|
47680
|
-
}
|
|
47681
|
-
.blocks-card__subtitle {
|
|
47682
|
-
color: #1b1b1b;
|
|
47683
|
-
font-family: Public Sans Web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
47684
|
-
font-size: 1.95rem;
|
|
47685
|
-
line-height: 1.4;
|
|
47686
|
-
}
|
|
47687
|
-
.blocks-card__description {
|
|
47688
|
-
color: #1b1b1b;
|
|
47689
|
-
font-family: Public Sans Web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
47690
|
-
font-size: 1rem;
|
|
47691
|
-
font-weight: normal;
|
|
47692
|
-
line-height: 1.6;
|
|
47693
|
-
}
|
|
47694
|
-
.blocks-card--dark .blocks-card__title {
|
|
47695
|
-
color: white;
|
|
47696
|
-
}
|
|
47697
|
-
.blocks-card--dark .blocks-card__subtitle {
|
|
47698
|
-
color: white;
|
|
47699
|
-
}
|
|
47700
|
-
.blocks-card--dark .blocks-card__description {
|
|
47701
|
-
color: white;
|
|
47702
|
-
}
|
|
47703
|
-
.blocks-card--brand .blocks-card__title {
|
|
47704
|
-
color: white;
|
|
47705
|
-
}
|
|
47706
|
-
.blocks-card--brand .blocks-card__subtitle {
|
|
47707
|
-
color: white;
|
|
47708
|
-
}
|
|
47709
|
-
.blocks-card--brand .blocks-card__description {
|
|
47710
|
-
color: white;
|
|
47711
|
-
}
|
|
47712
|
-
|
|
47713
47483
|
.blocks-card-cta {
|
|
47714
47484
|
--blocks-card-cta-custom-accent-color: #005ea2;
|
|
47715
47485
|
display: flex;
|
|
@@ -47781,70 +47551,81 @@ example:
|
|
|
47781
47551
|
}
|
|
47782
47552
|
|
|
47783
47553
|
.blocks-card-detailed {
|
|
47784
|
-
|
|
47554
|
+
display: grid;
|
|
47555
|
+
grid-template-rows: 45fr 55fr;
|
|
47785
47556
|
overflow: hidden;
|
|
47786
47557
|
position: relative;
|
|
47787
|
-
display: flex;
|
|
47788
|
-
flex-direction: column;
|
|
47789
47558
|
width: 100%;
|
|
47790
47559
|
}
|
|
47791
|
-
.blocks-card-detailed--image-bottom
|
|
47792
|
-
|
|
47560
|
+
.blocks-card-detailed--image-bottom {
|
|
47561
|
+
grid-template-rows: 55fr 45fr;
|
|
47793
47562
|
}
|
|
47794
|
-
.blocks-card-detailed--image-
|
|
47795
|
-
|
|
47563
|
+
.blocks-card-detailed--image-bottom .blocks-card-detailed__media {
|
|
47564
|
+
grid-row: 2;
|
|
47796
47565
|
}
|
|
47797
|
-
.blocks-card-detailed--image-
|
|
47798
|
-
|
|
47799
|
-
inset: 0;
|
|
47800
|
-
z-index: 0;
|
|
47566
|
+
.blocks-card-detailed--image-bottom .blocks-card-detailed__content-container {
|
|
47567
|
+
grid-row: 1;
|
|
47801
47568
|
}
|
|
47802
|
-
.blocks-card-detailed--image-
|
|
47803
|
-
|
|
47804
|
-
|
|
47805
|
-
object-fit: cover;
|
|
47569
|
+
.blocks-card-detailed--image-left {
|
|
47570
|
+
grid-template-columns: 200px 1fr;
|
|
47571
|
+
grid-template-rows: auto;
|
|
47806
47572
|
}
|
|
47807
|
-
.blocks-card-detailed--image-
|
|
47808
|
-
|
|
47809
|
-
|
|
47810
|
-
margin-top: auto;
|
|
47811
|
-
padding-top: 3.5rem;
|
|
47573
|
+
.blocks-card-detailed--image-right {
|
|
47574
|
+
grid-template-columns: 1fr 200px;
|
|
47575
|
+
grid-template-rows: auto;
|
|
47812
47576
|
}
|
|
47813
|
-
.blocks-card-
|
|
47814
|
-
|
|
47815
|
-
|
|
47816
|
-
|
|
47817
|
-
|
|
47818
|
-
|
|
47819
|
-
|
|
47820
|
-
pointer-events: none;
|
|
47577
|
+
.blocks-card-detailed--image-right .blocks-card-detailed__media {
|
|
47578
|
+
grid-row: 1;
|
|
47579
|
+
grid-column: 2;
|
|
47580
|
+
}
|
|
47581
|
+
.blocks-card-detailed--image-right .blocks-card-detailed__content-container {
|
|
47582
|
+
grid-row: 1;
|
|
47583
|
+
grid-column: 1;
|
|
47821
47584
|
}
|
|
47822
|
-
.blocks-card-
|
|
47585
|
+
.blocks-card-detailed:has(> .blocks-card-detailed__media:only-child) {
|
|
47586
|
+
grid-template-columns: unset;
|
|
47587
|
+
grid-template-rows: unset;
|
|
47588
|
+
}
|
|
47589
|
+
.blocks-card-detailed__media {
|
|
47823
47590
|
position: relative;
|
|
47824
|
-
order: -1;
|
|
47825
47591
|
width: 100%;
|
|
47826
|
-
overflow: hidden;
|
|
47827
47592
|
}
|
|
47828
|
-
.blocks-card-
|
|
47829
|
-
|
|
47830
|
-
top: 1.25rem;
|
|
47831
|
-
left: 2rem;
|
|
47832
|
-
z-index: 2;
|
|
47833
|
-
}
|
|
47834
|
-
.blocks-card-detailed__image-wrapper > :is(img, svg, video, canvas) {
|
|
47835
|
-
width: 100%;
|
|
47593
|
+
.blocks-card-detailed__media > :is(img, svg, video, canvas) {
|
|
47594
|
+
height: 100%;
|
|
47836
47595
|
display: block;
|
|
47596
|
+
inset: 0;
|
|
47597
|
+
object-fit: cover;
|
|
47598
|
+
position: absolute;
|
|
47599
|
+
width: 100%;
|
|
47837
47600
|
}
|
|
47838
|
-
.blocks-card-
|
|
47839
|
-
|
|
47840
|
-
}
|
|
47841
|
-
.blocks-card-detailed__content {
|
|
47842
|
-
padding: 1.5rem 2rem 2rem 2rem;
|
|
47601
|
+
.blocks-card-detailed__content-container {
|
|
47602
|
+
align-items: stretch;
|
|
47843
47603
|
display: flex;
|
|
47844
47604
|
flex-direction: column;
|
|
47845
47605
|
gap: 0.75rem;
|
|
47606
|
+
padding: 1.25rem;
|
|
47607
|
+
overflow: hidden;
|
|
47608
|
+
width: 100%;
|
|
47846
47609
|
}
|
|
47847
|
-
.blocks-card-
|
|
47610
|
+
.blocks-card-detailed__tag-primary {
|
|
47611
|
+
position: absolute;
|
|
47612
|
+
top: 1.25rem;
|
|
47613
|
+
left: 1.25rem;
|
|
47614
|
+
}
|
|
47615
|
+
.blocks-card-detailed__intro, .blocks-card-detailed__title {
|
|
47616
|
+
display: block;
|
|
47617
|
+
overflow: hidden;
|
|
47618
|
+
text-overflow: ellipsis;
|
|
47619
|
+
white-space: nowrap;
|
|
47620
|
+
}
|
|
47621
|
+
.blocks-card-detailed--image-left .blocks-card-detailed__intro,
|
|
47622
|
+
.blocks-card-detailed--image-left .blocks-card-detailed__title, .blocks-card-detailed--image-right .blocks-card-detailed__intro,
|
|
47623
|
+
.blocks-card-detailed--image-right .blocks-card-detailed__title {
|
|
47624
|
+
overflow: unset;
|
|
47625
|
+
text-overflow: unset;
|
|
47626
|
+
white-space: unset;
|
|
47627
|
+
}
|
|
47628
|
+
.blocks-card-detailed__title, .blocks-card-detailed__description {
|
|
47848
47629
|
margin: 0;
|
|
47849
47630
|
}
|
|
47850
47631
|
.blocks-card-detailed__tags {
|
|
@@ -47852,39 +47633,25 @@ example:
|
|
|
47852
47633
|
flex-wrap: wrap;
|
|
47853
47634
|
gap: 0.25rem;
|
|
47854
47635
|
}
|
|
47855
|
-
.blocks-card-
|
|
47856
|
-
|
|
47636
|
+
.blocks-card-detailed__actions {
|
|
47637
|
+
display: flex;
|
|
47638
|
+
flex-wrap: wrap;
|
|
47639
|
+
margin-top: auto;
|
|
47640
|
+
row-gap: 0.25rem;
|
|
47857
47641
|
}
|
|
47858
47642
|
|
|
47859
|
-
@media all and (max-width: 29.99em) {
|
|
47860
|
-
.blocks-card-detailed__content {
|
|
47861
|
-
padding: 1rem;
|
|
47862
|
-
}
|
|
47863
|
-
.blocks-card-detailed__content-type-tag {
|
|
47864
|
-
left: 1rem;
|
|
47865
|
-
}
|
|
47866
|
-
}
|
|
47867
47643
|
.blocks-card-detailed {
|
|
47868
47644
|
background: white;
|
|
47869
47645
|
border-radius: 0.5rem;
|
|
47870
47646
|
box-shadow: 0 0.25rem 1rem rgba(86, 92, 101, 0.06);
|
|
47871
47647
|
}
|
|
47872
|
-
.blocks-card-detailed--image-cover .blocks-card-detailed__content {
|
|
47873
|
-
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.72) 40%, white 100%);
|
|
47874
|
-
}
|
|
47875
|
-
.blocks-card-detailed__accent-bar {
|
|
47876
|
-
background: linear-gradient(90deg, #162e51 0%, #73b3e7 100%);
|
|
47877
|
-
}
|
|
47878
|
-
.blocks-card-detailed__image-wrapper {
|
|
47879
|
-
background: #dfe1e2;
|
|
47880
|
-
}
|
|
47881
47648
|
.blocks-card-detailed__intro {
|
|
47882
47649
|
color: #565c65;
|
|
47883
47650
|
font-family: Public Sans Web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
47884
47651
|
font-size: 0.75rem;
|
|
47885
47652
|
font-style: normal;
|
|
47886
47653
|
font-weight: normal;
|
|
47887
|
-
line-height: 1;
|
|
47654
|
+
line-height: 1.2;
|
|
47888
47655
|
}
|
|
47889
47656
|
.blocks-card-detailed__title {
|
|
47890
47657
|
color: #1b1b1b;
|
|
@@ -47931,7 +47698,9 @@ example:
|
|
|
47931
47698
|
display: flex;
|
|
47932
47699
|
flex-direction: column;
|
|
47933
47700
|
gap: 0.5rem;
|
|
47934
|
-
justify-content:
|
|
47701
|
+
justify-content: space-between;
|
|
47702
|
+
padding-top: 0.5rem;
|
|
47703
|
+
padding-bottom: 0.5rem;
|
|
47935
47704
|
}
|
|
47936
47705
|
.blocks-card-mini__tag {
|
|
47937
47706
|
align-self: flex-start;
|
|
@@ -47945,13 +47714,18 @@ example:
|
|
|
47945
47714
|
background-color: white;
|
|
47946
47715
|
border-radius: 0.5rem;
|
|
47947
47716
|
border: 1px solid #dfe1e2;
|
|
47717
|
+
transition: background-color 0.15s ease, box-shadow 0.15s ease;
|
|
47718
|
+
}
|
|
47719
|
+
.blocks-card-mini:hover, .blocks-card-mini:focus-visible {
|
|
47720
|
+
background-color: #f0f0f0;
|
|
47721
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
|
|
47948
47722
|
}
|
|
47949
47723
|
.blocks-card-mini__title {
|
|
47950
47724
|
color: #1b1b1b;
|
|
47951
47725
|
font-family: Public Sans Web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
47952
47726
|
font-size: 1.34rem;
|
|
47953
47727
|
font-weight: 700;
|
|
47954
|
-
line-height: 1.
|
|
47728
|
+
line-height: 1.4;
|
|
47955
47729
|
display: -webkit-box;
|
|
47956
47730
|
-webkit-box-orient: vertical;
|
|
47957
47731
|
-webkit-line-clamp: 3;
|
|
@@ -48008,7 +47782,8 @@ example:
|
|
|
48008
47782
|
}
|
|
48009
47783
|
|
|
48010
47784
|
.blocks-card-simple__overlay {
|
|
48011
|
-
background: linear-gradient(to bottom, rgba(169, 174, 177, 0
|
|
47785
|
+
background: linear-gradient(to bottom, rgba(169, 174, 177, 0) 0%, rgba(169, 174, 177, 0.3) 70%, rgba(169, 174, 177, 0.8) 100%);
|
|
47786
|
+
transition: background 0.15s ease;
|
|
48012
47787
|
}
|
|
48013
47788
|
.blocks-card-simple__title {
|
|
48014
47789
|
color: #1b1b1b;
|
|
@@ -48020,166 +47795,392 @@ example:
|
|
|
48020
47795
|
.blocks-card-simple--compact .blocks-card-simple__title {
|
|
48021
47796
|
font-size: 1.1rem;
|
|
48022
47797
|
}
|
|
47798
|
+
.blocks-card-simple:hover .blocks-card-simple__overlay, .blocks-card-simple:focus-visible .blocks-card-simple__overlay {
|
|
47799
|
+
background: linear-gradient(to bottom, rgba(169, 174, 177, 0) 0%, rgba(169, 174, 177, 0.5) 70%, #a9aeb1 100%);
|
|
47800
|
+
}
|
|
47801
|
+
.blocks-card-simple:hover .blocks-card-simple__title, .blocks-card-simple:focus-visible .blocks-card-simple__title {
|
|
47802
|
+
text-decoration: underline;
|
|
47803
|
+
text-decoration-thickness: 2px;
|
|
47804
|
+
text-underline-offset: 0.25rem;
|
|
47805
|
+
}
|
|
48023
47806
|
|
|
48024
|
-
.blocks-
|
|
48025
|
-
|
|
48026
|
-
|
|
47807
|
+
.blocks-card {
|
|
47808
|
+
display: flex;
|
|
47809
|
+
flex-direction: column;
|
|
47810
|
+
isolation: isolate;
|
|
47811
|
+
overflow: hidden;
|
|
47812
|
+
position: relative;
|
|
47813
|
+
width: 100%;
|
|
48027
47814
|
}
|
|
48028
|
-
.blocks-
|
|
48029
|
-
|
|
47815
|
+
.blocks-card__content-container {
|
|
47816
|
+
flex: 1;
|
|
47817
|
+
}
|
|
47818
|
+
.blocks-card__content-container, .blocks-card__children {
|
|
47819
|
+
align-items: center;
|
|
47820
|
+
display: flex;
|
|
47821
|
+
padding: 2rem 1.5rem;
|
|
47822
|
+
width: 100%;
|
|
47823
|
+
z-index: 1;
|
|
47824
|
+
}
|
|
47825
|
+
@media all and (min-width: 40em) {
|
|
47826
|
+
.blocks-card__content-container, .blocks-card__children {
|
|
47827
|
+
padding: 2.5rem 4rem;
|
|
47828
|
+
}
|
|
48030
47829
|
}
|
|
48031
47830
|
@media all and (min-width: 64em) {
|
|
48032
|
-
.blocks-
|
|
48033
|
-
padding
|
|
47831
|
+
.blocks-card__content-container, .blocks-card__children {
|
|
47832
|
+
padding: 2.5rem 5rem;
|
|
48034
47833
|
}
|
|
48035
47834
|
}
|
|
48036
|
-
.blocks-
|
|
48037
|
-
|
|
48038
|
-
|
|
47835
|
+
.blocks-card--image-left .blocks-card__content-container, .blocks-card--image-right .blocks-card__content-container {
|
|
47836
|
+
align-items: start;
|
|
47837
|
+
flex-direction: column;
|
|
47838
|
+
gap: 1.5rem;
|
|
48039
47839
|
}
|
|
48040
|
-
|
|
48041
|
-
|
|
47840
|
+
@media all and (min-width: 40em) {
|
|
47841
|
+
.blocks-card--image-left .blocks-card__content-container, .blocks-card--image-right .blocks-card__content-container {
|
|
47842
|
+
align-items: center;
|
|
47843
|
+
flex-direction: row;
|
|
47844
|
+
gap: 2.5rem;
|
|
47845
|
+
}
|
|
48042
47846
|
}
|
|
48043
|
-
@media all and (min-width:
|
|
48044
|
-
.blocks-
|
|
48045
|
-
|
|
47847
|
+
@media all and (min-width: 40em) {
|
|
47848
|
+
.blocks-card--image-right .blocks-card__content-container {
|
|
47849
|
+
flex-direction: row-reverse;
|
|
48046
47850
|
}
|
|
48047
47851
|
}
|
|
48048
|
-
.blocks-
|
|
48049
|
-
|
|
48050
|
-
|
|
47852
|
+
.blocks-card--mast-head .blocks-card__content-container,
|
|
47853
|
+
.blocks-card--mast-head .blocks-card__children {
|
|
47854
|
+
margin-left: auto;
|
|
47855
|
+
margin-right: auto;
|
|
47856
|
+
max-width: 75rem;
|
|
47857
|
+
padding-left: 1rem;
|
|
47858
|
+
padding-right: 1rem;
|
|
48051
47859
|
}
|
|
48052
|
-
@media all and (min-width:
|
|
48053
|
-
.blocks-
|
|
48054
|
-
|
|
48055
|
-
|
|
48056
|
-
|
|
47860
|
+
@media all and (min-width: 75em) {
|
|
47861
|
+
.blocks-card--mast-head .blocks-card__content-container,
|
|
47862
|
+
.blocks-card--mast-head .blocks-card__children {
|
|
47863
|
+
padding-left: 2rem;
|
|
47864
|
+
padding-right: 2rem;
|
|
48057
47865
|
}
|
|
48058
47866
|
}
|
|
48059
|
-
.blocks-
|
|
48060
|
-
|
|
48061
|
-
|
|
48062
|
-
|
|
47867
|
+
.blocks-card__media {
|
|
47868
|
+
inset: 0;
|
|
47869
|
+
min-height: 175px;
|
|
47870
|
+
position: absolute;
|
|
47871
|
+
width: 100%;
|
|
47872
|
+
z-index: 0;
|
|
48063
47873
|
}
|
|
48064
|
-
|
|
48065
|
-
|
|
48066
|
-
|
|
48067
|
-
|
|
48068
|
-
|
|
47874
|
+
.blocks-card__media:only-child {
|
|
47875
|
+
min-height: 100%;
|
|
47876
|
+
}
|
|
47877
|
+
@media all and (min-width: 40em) {
|
|
47878
|
+
.blocks-card__media {
|
|
47879
|
+
min-height: 0;
|
|
48069
47880
|
}
|
|
48070
47881
|
}
|
|
48071
|
-
.blocks-
|
|
48072
|
-
|
|
48073
|
-
|
|
48074
|
-
|
|
47882
|
+
.blocks-card__media > :is(img, svg, video, canvas) {
|
|
47883
|
+
height: 100%;
|
|
47884
|
+
display: block;
|
|
47885
|
+
inset: 0;
|
|
47886
|
+
object-fit: cover;
|
|
47887
|
+
position: absolute;
|
|
47888
|
+
width: 100%;
|
|
48075
47889
|
}
|
|
48076
|
-
|
|
48077
|
-
|
|
48078
|
-
|
|
48079
|
-
|
|
48080
|
-
|
|
48081
|
-
|
|
47890
|
+
.blocks-card--image-left .blocks-card__media, .blocks-card--image-right .blocks-card__media {
|
|
47891
|
+
position: relative;
|
|
47892
|
+
}
|
|
47893
|
+
@media all and (min-width: 40em) {
|
|
47894
|
+
.blocks-card--image-left .blocks-card__media, .blocks-card--image-right .blocks-card__media {
|
|
47895
|
+
align-self: stretch;
|
|
47896
|
+
flex: 1 1 0;
|
|
48082
47897
|
}
|
|
48083
47898
|
}
|
|
48084
|
-
.blocks-
|
|
48085
|
-
|
|
48086
|
-
gap: 0.75rem;
|
|
47899
|
+
.blocks-card--image-left .blocks-card__media:only-child, .blocks-card--image-right .blocks-card__media:only-child {
|
|
47900
|
+
position: unset;
|
|
48087
47901
|
}
|
|
48088
|
-
.blocks-
|
|
48089
|
-
.blocks-footer.usa-footer--slim .usa-footer__secondary-section nav ul {
|
|
47902
|
+
.blocks-card__content {
|
|
48090
47903
|
display: flex;
|
|
48091
47904
|
flex-direction: column;
|
|
48092
|
-
gap:
|
|
48093
|
-
|
|
48094
|
-
margin-top: 0;
|
|
48095
|
-
list-style-type: none;
|
|
48096
|
-
padding-left: 0;
|
|
47905
|
+
gap: 1rem;
|
|
47906
|
+
position: relative;
|
|
48097
47907
|
}
|
|
48098
|
-
@media all and (min-width:
|
|
48099
|
-
.blocks-
|
|
48100
|
-
|
|
48101
|
-
|
|
48102
|
-
flex-wrap: wrap;
|
|
48103
|
-
gap: 2.5rem;
|
|
47908
|
+
@media all and (min-width: 40em) {
|
|
47909
|
+
.blocks-card__content {
|
|
47910
|
+
flex: 1 1 0;
|
|
47911
|
+
max-width: 72ex;
|
|
48104
47912
|
}
|
|
48105
47913
|
}
|
|
48106
|
-
|
|
48107
|
-
.blocks-
|
|
48108
|
-
|
|
48109
|
-
}
|
|
48110
|
-
@media all and (min-width: 64em) {
|
|
48111
|
-
.blocks-footer.usa-footer--slim .blocks-footer__primary-nav,
|
|
48112
|
-
.blocks-footer.usa-footer--slim .blocks-footer__secondary-nav {
|
|
48113
|
-
padding-top: 1.5rem;
|
|
47914
|
+
@media all and (min-width: 40em) {
|
|
47915
|
+
.blocks-card--image-left .blocks-card__content, .blocks-card--image-right .blocks-card__content {
|
|
47916
|
+
max-width: none;
|
|
48114
47917
|
}
|
|
48115
47918
|
}
|
|
48116
|
-
.blocks-
|
|
48117
|
-
|
|
48118
|
-
}
|
|
48119
|
-
.blocks-footer.usa-footer--slim .usa-footer__secondary-link {
|
|
48120
|
-
line-height: inherit;
|
|
48121
|
-
margin-left: 0;
|
|
48122
|
-
padding: 0;
|
|
47919
|
+
.blocks-card__title {
|
|
47920
|
+
margin: 0;
|
|
48123
47921
|
}
|
|
48124
|
-
.blocks-
|
|
48125
|
-
|
|
47922
|
+
.blocks-card__description {
|
|
47923
|
+
margin: 0;
|
|
48126
47924
|
}
|
|
48127
|
-
.blocks-
|
|
48128
|
-
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav {
|
|
47925
|
+
.blocks-card__actions {
|
|
48129
47926
|
display: flex;
|
|
48130
47927
|
flex-wrap: wrap;
|
|
48131
|
-
gap:
|
|
47928
|
+
gap: 0.5rem;
|
|
48132
47929
|
}
|
|
48133
|
-
.blocks-
|
|
48134
|
-
|
|
48135
|
-
align-items: center;
|
|
48136
|
-
display: flex;
|
|
48137
|
-
gap: 0.75rem;
|
|
47930
|
+
.blocks-card__actions .usa-button {
|
|
47931
|
+
margin-right: 0;
|
|
48138
47932
|
}
|
|
48139
|
-
.blocks-
|
|
48140
|
-
|
|
48141
|
-
display: inline-flex;
|
|
48142
|
-
gap: 0.5rem;
|
|
48143
|
-
align-items: center;
|
|
47933
|
+
.blocks-card--image-left .blocks-card__actions, .blocks-card--image-right .blocks-card__actions {
|
|
47934
|
+
width: fit-content;
|
|
48144
47935
|
}
|
|
48145
|
-
.blocks-
|
|
48146
|
-
|
|
47936
|
+
.blocks-card--image-left .blocks-card__actions .usa-button, .blocks-card--image-right .blocks-card__actions .usa-button {
|
|
47937
|
+
flex: 1 1 0;
|
|
47938
|
+
white-space: nowrap;
|
|
48147
47939
|
}
|
|
48148
|
-
.blocks-
|
|
48149
|
-
|
|
47940
|
+
.blocks-card::after {
|
|
47941
|
+
content: "";
|
|
47942
|
+
position: absolute;
|
|
47943
|
+
inset: 0;
|
|
47944
|
+
z-index: 0;
|
|
48150
47945
|
}
|
|
48151
|
-
|
|
48152
|
-
|
|
48153
|
-
|
|
48154
|
-
|
|
48155
|
-
|
|
47946
|
+
|
|
47947
|
+
@media all and (min-width: 40em) {
|
|
47948
|
+
[class*=grid-col-] > .blocks-card .blocks-card__content-container {
|
|
47949
|
+
align-items: stretch;
|
|
47950
|
+
}
|
|
47951
|
+
[class*=grid-col-] > .blocks-card .blocks-card__actions {
|
|
47952
|
+
margin-top: auto;
|
|
48156
47953
|
}
|
|
48157
47954
|
}
|
|
48158
|
-
.blocks-
|
|
48159
|
-
|
|
47955
|
+
.blocks-card::after {
|
|
47956
|
+
background: linear-gradient(90deg, #f0f0f0 0%, rgba(240, 240, 240, 0.3) 100%);
|
|
48160
47957
|
}
|
|
48161
47958
|
@media all and (min-width: 64em) {
|
|
48162
|
-
.blocks-
|
|
48163
|
-
|
|
47959
|
+
.blocks-card::after {
|
|
47960
|
+
background: linear-gradient(90deg, #f0f0f0 0%, rgba(240, 240, 240, 0.3) 70%, rgba(240, 240, 240, 0) 100%);
|
|
48164
47961
|
}
|
|
48165
47962
|
}
|
|
48166
|
-
|
|
48167
|
-
|
|
48168
|
-
|
|
48169
|
-
|
|
48170
|
-
|
|
47963
|
+
.blocks-card--dark::after {
|
|
47964
|
+
background: linear-gradient(90deg, #1b1b1b 0%, rgba(27, 27, 27, 0.3) 100%);
|
|
47965
|
+
}
|
|
47966
|
+
@media all and (min-width: 64em) {
|
|
47967
|
+
.blocks-card--dark::after {
|
|
47968
|
+
background: linear-gradient(90deg, #1b1b1b 0%, rgba(27, 27, 27, 0.3) 70%, rgba(27, 27, 27, 0) 100%);
|
|
47969
|
+
}
|
|
47970
|
+
}
|
|
47971
|
+
.blocks-card--brand::after {
|
|
47972
|
+
background: linear-gradient(90deg, #1a4480 0%, rgba(26, 68, 128, 0.3) 100%);
|
|
47973
|
+
}
|
|
47974
|
+
@media all and (min-width: 64em) {
|
|
47975
|
+
.blocks-card--brand::after {
|
|
47976
|
+
background: linear-gradient(90deg, #1a4480 0%, rgba(26, 68, 128, 0.3) 70%, rgba(26, 68, 128, 0) 100%);
|
|
47977
|
+
}
|
|
47978
|
+
}
|
|
47979
|
+
.blocks-card--image-left, .blocks-card--image-right {
|
|
47980
|
+
background-color: #f0f0f0;
|
|
47981
|
+
}
|
|
47982
|
+
.blocks-card--image-left::after, .blocks-card--image-right::after {
|
|
47983
|
+
background: none;
|
|
47984
|
+
}
|
|
47985
|
+
.blocks-card--dark.blocks-card--image-left, .blocks-card--dark.blocks-card--image-right {
|
|
47986
|
+
background-color: #1b1b1b;
|
|
47987
|
+
}
|
|
47988
|
+
.blocks-card--brand.blocks-card--image-left, .blocks-card--brand.blocks-card--image-right {
|
|
47989
|
+
background-color: #1a4480;
|
|
47990
|
+
}
|
|
47991
|
+
.blocks-card__title {
|
|
47992
|
+
color: #1b1b1b;
|
|
47993
|
+
font-family: Public Sans Web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
47994
|
+
font-size: 1.95rem;
|
|
47995
|
+
font-weight: 700;
|
|
47996
|
+
line-height: 1;
|
|
47997
|
+
}
|
|
47998
|
+
.blocks-card__subtitle {
|
|
47999
|
+
color: #1b1b1b;
|
|
48000
|
+
font-family: Public Sans Web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
48001
|
+
font-size: 1.95rem;
|
|
48002
|
+
line-height: 1.4;
|
|
48003
|
+
}
|
|
48004
|
+
.blocks-card__description {
|
|
48005
|
+
color: #1b1b1b;
|
|
48006
|
+
font-family: Public Sans Web, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
48007
|
+
font-size: 1rem;
|
|
48008
|
+
font-weight: normal;
|
|
48009
|
+
line-height: 1.6;
|
|
48010
|
+
}
|
|
48011
|
+
.blocks-card--dark .blocks-card__title {
|
|
48012
|
+
color: white;
|
|
48013
|
+
}
|
|
48014
|
+
.blocks-card--dark .blocks-card__subtitle {
|
|
48015
|
+
color: white;
|
|
48016
|
+
}
|
|
48017
|
+
.blocks-card--dark .blocks-card__description {
|
|
48018
|
+
color: white;
|
|
48019
|
+
}
|
|
48020
|
+
.blocks-card--brand .blocks-card__title {
|
|
48021
|
+
color: white;
|
|
48022
|
+
}
|
|
48023
|
+
.blocks-card--brand .blocks-card__subtitle {
|
|
48024
|
+
color: white;
|
|
48025
|
+
}
|
|
48026
|
+
.blocks-card--brand .blocks-card__description {
|
|
48027
|
+
color: white;
|
|
48028
|
+
}
|
|
48029
|
+
|
|
48030
|
+
.blocks-footer.usa-footer--slim {
|
|
48031
|
+
line-height: normal;
|
|
48032
|
+
}
|
|
48033
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-section {
|
|
48034
|
+
display: grid;
|
|
48035
|
+
gap: 2.5rem;
|
|
48036
|
+
}
|
|
48037
|
+
@media all and (min-width: 64em) {
|
|
48038
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-section {
|
|
48039
|
+
align-items: start;
|
|
48040
|
+
column-gap: 4rem;
|
|
48041
|
+
grid-template-columns: 25rem minmax(0, 1fr);
|
|
48042
|
+
}
|
|
48043
|
+
}
|
|
48044
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-section {
|
|
48045
|
+
padding-top: 2rem;
|
|
48046
|
+
padding-bottom: 1.5rem;
|
|
48047
|
+
}
|
|
48048
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-upper {
|
|
48049
|
+
padding-top: 1.5rem;
|
|
48050
|
+
padding-bottom: 1.5rem;
|
|
48051
|
+
}
|
|
48052
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-lower {
|
|
48053
|
+
padding-top: 1.5rem;
|
|
48054
|
+
padding-bottom: 2rem;
|
|
48055
|
+
}
|
|
48056
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-lower {
|
|
48057
|
+
display: grid;
|
|
48058
|
+
gap: 2rem;
|
|
48059
|
+
}
|
|
48060
|
+
@media all and (min-width: 64em) {
|
|
48061
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-lower {
|
|
48062
|
+
align-items: start;
|
|
48063
|
+
column-gap: 4rem;
|
|
48064
|
+
grid-template-columns: minmax(0, auto) minmax(0, 1fr);
|
|
48065
|
+
}
|
|
48066
|
+
}
|
|
48067
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-meta {
|
|
48068
|
+
display: flex;
|
|
48069
|
+
flex-direction: column;
|
|
48070
|
+
gap: 2rem;
|
|
48071
|
+
}
|
|
48072
|
+
@media all and (min-width: 64em) {
|
|
48073
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-meta {
|
|
48074
|
+
column-gap: 3rem;
|
|
48075
|
+
flex-direction: row;
|
|
48076
|
+
flex-wrap: wrap-reverse;
|
|
48077
|
+
justify-content: flex-end;
|
|
48078
|
+
}
|
|
48079
|
+
}
|
|
48080
|
+
.blocks-footer.usa-footer--slim .blocks-footer__title {
|
|
48081
|
+
display: flex;
|
|
48082
|
+
flex-direction: row;
|
|
48083
|
+
align-items: center;
|
|
48084
|
+
gap: 1.5rem;
|
|
48085
|
+
}
|
|
48086
|
+
.blocks-footer.usa-footer--slim .blocks-footer__logo {
|
|
48087
|
+
flex-shrink: 0;
|
|
48088
|
+
}
|
|
48089
|
+
.blocks-footer.usa-footer--slim .blocks-footer__logo > :is(img, svg) {
|
|
48090
|
+
display: block;
|
|
48091
|
+
height: 5rem;
|
|
48092
|
+
width: auto;
|
|
48093
|
+
}
|
|
48094
|
+
.blocks-footer.usa-footer--slim .blocks-footer__title-text {
|
|
48095
|
+
display: grid;
|
|
48096
|
+
gap: 0.75rem;
|
|
48097
|
+
}
|
|
48098
|
+
.blocks-footer.usa-footer--slim .usa-footer__primary-section,
|
|
48099
|
+
.blocks-footer.usa-footer--slim .usa-footer__secondary-section {
|
|
48100
|
+
padding: 0;
|
|
48101
|
+
}
|
|
48102
|
+
.blocks-footer.usa-footer--slim .usa-footer__primary-section nav ul,
|
|
48103
|
+
.blocks-footer.usa-footer--slim .usa-footer__secondary-section nav ul {
|
|
48104
|
+
display: flex;
|
|
48105
|
+
flex-direction: column;
|
|
48106
|
+
gap: 1.5rem;
|
|
48107
|
+
margin-bottom: 0;
|
|
48108
|
+
margin-top: 0;
|
|
48109
|
+
list-style-type: none;
|
|
48110
|
+
padding-left: 0;
|
|
48111
|
+
}
|
|
48112
|
+
@media all and (min-width: 64em) {
|
|
48113
|
+
.blocks-footer.usa-footer--slim .usa-footer__primary-section nav ul,
|
|
48114
|
+
.blocks-footer.usa-footer--slim .usa-footer__secondary-section nav ul {
|
|
48115
|
+
flex-direction: row;
|
|
48116
|
+
flex-wrap: wrap;
|
|
48117
|
+
gap: 2.5rem;
|
|
48118
|
+
}
|
|
48119
|
+
}
|
|
48120
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-nav ul {
|
|
48121
|
+
justify-content: flex-end;
|
|
48122
|
+
}
|
|
48123
|
+
.blocks-footer.usa-footer--slim .usa-footer__secondary-link {
|
|
48124
|
+
line-height: inherit;
|
|
48125
|
+
margin-left: 0;
|
|
48126
|
+
padding: 0;
|
|
48127
|
+
}
|
|
48128
|
+
.blocks-footer.usa-footer--slim .usa-footer__secondary-link + .usa-footer__secondary-link {
|
|
48129
|
+
padding-top: 0;
|
|
48130
|
+
}
|
|
48131
|
+
.blocks-footer.usa-footer--slim .blocks-footer__utility-nav {
|
|
48132
|
+
line-height: 1.2;
|
|
48133
|
+
}
|
|
48134
|
+
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav {
|
|
48135
|
+
display: flex;
|
|
48136
|
+
flex-wrap: wrap;
|
|
48137
|
+
gap: 1rem;
|
|
48138
|
+
}
|
|
48139
|
+
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav li {
|
|
48140
|
+
align-items: center;
|
|
48141
|
+
display: flex;
|
|
48142
|
+
gap: 0.75rem;
|
|
48143
|
+
}
|
|
48144
|
+
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav li a {
|
|
48145
|
+
display: inline-flex;
|
|
48146
|
+
gap: 0.5rem;
|
|
48147
|
+
align-items: center;
|
|
48148
|
+
}
|
|
48149
|
+
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav ul {
|
|
48150
|
+
gap: 1.5rem;
|
|
48151
|
+
}
|
|
48152
|
+
@media all and (min-width: 64em) {
|
|
48153
|
+
.blocks-footer.usa-footer--slim .blocks-footer__contacts-nav ul {
|
|
48154
|
+
align-items: center;
|
|
48155
|
+
gap: 1.5rem;
|
|
48156
|
+
justify-content: flex-end;
|
|
48157
|
+
}
|
|
48158
|
+
}
|
|
48159
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-meta > p {
|
|
48160
|
+
margin: 0;
|
|
48161
|
+
}
|
|
48162
|
+
@media all and (min-width: 64em) {
|
|
48163
|
+
.blocks-footer.usa-footer--slim .blocks-footer__secondary-meta > p {
|
|
48164
|
+
text-align: right;
|
|
48165
|
+
}
|
|
48166
|
+
}
|
|
48167
|
+
|
|
48168
|
+
.blocks-footer.usa-footer--slim .usa-footer__primary-section,
|
|
48169
|
+
.blocks-footer.usa-footer--slim .usa-footer__secondary-section {
|
|
48170
|
+
background-color: white;
|
|
48171
|
+
color: #1b1b1b;
|
|
48171
48172
|
}
|
|
48172
|
-
.blocks-footer.usa-footer--slim .blocks-footer__primary-section
|
|
48173
|
+
.blocks-footer.usa-footer--slim .blocks-footer__primary-section,
|
|
48173
48174
|
.blocks-footer.usa-footer--slim .blocks-footer__secondary-section-upper {
|
|
48174
48175
|
border-bottom: 1px solid rgba(27, 27, 27, 0.1);
|
|
48175
48176
|
}
|
|
48176
|
-
.blocks-footer.usa-footer--slim .blocks-footer__title span {
|
|
48177
|
+
.blocks-footer.usa-footer--slim .blocks-footer__title-text span {
|
|
48177
48178
|
color: #1b1b1b;
|
|
48178
48179
|
font-size: 1.38rem;
|
|
48179
48180
|
font-weight: 700;
|
|
48180
48181
|
text-decoration: none;
|
|
48181
48182
|
}
|
|
48182
|
-
.blocks-footer.usa-footer--slim .blocks-footer__title p {
|
|
48183
|
+
.blocks-footer.usa-footer--slim .blocks-footer__title-text p {
|
|
48183
48184
|
color: #1b1b1b;
|
|
48184
48185
|
margin: 0;
|
|
48185
48186
|
font-size: 0.88rem;
|
|
@@ -48455,4 +48456,984 @@ example:
|
|
|
48455
48456
|
font-size: 0.83rem;
|
|
48456
48457
|
}
|
|
48457
48458
|
|
|
48459
|
+
.blocks-date-chip {
|
|
48460
|
+
background-color: white;
|
|
48461
|
+
border-radius: 0.25rem;
|
|
48462
|
+
box-shadow: rgba(44, 62, 80, 0.08) 0px 0px 4px 0px, rgba(44, 62, 80, 0.08) 0px 2px 2px 0px;
|
|
48463
|
+
color: #1b1b1b;
|
|
48464
|
+
display: inline-flex;
|
|
48465
|
+
font-size: 0.88rem;
|
|
48466
|
+
font-weight: 600;
|
|
48467
|
+
line-height: 1.4;
|
|
48468
|
+
padding: 0.5rem 0.75rem;
|
|
48469
|
+
white-space: nowrap;
|
|
48470
|
+
}
|
|
48471
|
+
|
|
48472
|
+
.blocks-legend {
|
|
48473
|
+
background-color: white;
|
|
48474
|
+
border: 1px solid #dfe1e2;
|
|
48475
|
+
border-radius: 0.25rem;
|
|
48476
|
+
overflow: hidden;
|
|
48477
|
+
padding: 0.75rem 1rem;
|
|
48478
|
+
width: 100%;
|
|
48479
|
+
display: flex;
|
|
48480
|
+
flex-direction: column;
|
|
48481
|
+
gap: 0.75rem;
|
|
48482
|
+
}
|
|
48483
|
+
.blocks-legend__header {
|
|
48484
|
+
display: flex;
|
|
48485
|
+
justify-content: space-between;
|
|
48486
|
+
align-items: flex-start;
|
|
48487
|
+
gap: 1rem;
|
|
48488
|
+
}
|
|
48489
|
+
.blocks-legend__header-text {
|
|
48490
|
+
display: flex;
|
|
48491
|
+
flex-direction: column;
|
|
48492
|
+
gap: 2px;
|
|
48493
|
+
flex: 1;
|
|
48494
|
+
min-width: 0;
|
|
48495
|
+
}
|
|
48496
|
+
.blocks-legend__title {
|
|
48497
|
+
font-size: 0.94rem;
|
|
48498
|
+
font-weight: 700;
|
|
48499
|
+
line-height: 1.4;
|
|
48500
|
+
margin: 0;
|
|
48501
|
+
color: #1b1b1b;
|
|
48502
|
+
white-space: nowrap;
|
|
48503
|
+
overflow: hidden;
|
|
48504
|
+
text-overflow: ellipsis;
|
|
48505
|
+
}
|
|
48506
|
+
.blocks-legend__subtitle {
|
|
48507
|
+
font-size: 0.88rem;
|
|
48508
|
+
font-weight: normal;
|
|
48509
|
+
margin: 0;
|
|
48510
|
+
color: #565c65;
|
|
48511
|
+
white-space: nowrap;
|
|
48512
|
+
overflow: hidden;
|
|
48513
|
+
text-overflow: ellipsis;
|
|
48514
|
+
}
|
|
48515
|
+
.blocks-legend__info-toggle {
|
|
48516
|
+
background: none;
|
|
48517
|
+
border: none;
|
|
48518
|
+
cursor: pointer;
|
|
48519
|
+
padding: 0;
|
|
48520
|
+
color: #71767a;
|
|
48521
|
+
display: flex;
|
|
48522
|
+
align-items: center;
|
|
48523
|
+
flex-shrink: 0;
|
|
48524
|
+
}
|
|
48525
|
+
.blocks-legend__info-toggle:hover {
|
|
48526
|
+
color: #565c65;
|
|
48527
|
+
}
|
|
48528
|
+
.blocks-legend__info-toggle[aria-expanded=true] {
|
|
48529
|
+
color: #1b1b1b;
|
|
48530
|
+
}
|
|
48531
|
+
.blocks-legend__gradient-bar {
|
|
48532
|
+
position: relative;
|
|
48533
|
+
height: 0.75rem;
|
|
48534
|
+
border: 1px solid #dfe1e2;
|
|
48535
|
+
border-radius: 0.25rem;
|
|
48536
|
+
}
|
|
48537
|
+
.blocks-legend__gradient {
|
|
48538
|
+
position: absolute;
|
|
48539
|
+
inset: 0;
|
|
48540
|
+
border-radius: 0.25rem;
|
|
48541
|
+
}
|
|
48542
|
+
.blocks-legend__labels {
|
|
48543
|
+
display: flex;
|
|
48544
|
+
justify-content: space-between;
|
|
48545
|
+
align-items: center;
|
|
48546
|
+
}
|
|
48547
|
+
.blocks-legend__min, .blocks-legend__max {
|
|
48548
|
+
font-size: 0.88rem;
|
|
48549
|
+
font-weight: normal;
|
|
48550
|
+
color: #71767a;
|
|
48551
|
+
}
|
|
48552
|
+
.blocks-legend__unit {
|
|
48553
|
+
font-size: 0.88rem;
|
|
48554
|
+
font-weight: 700;
|
|
48555
|
+
color: #1b1b1b;
|
|
48556
|
+
}
|
|
48557
|
+
.blocks-legend__description {
|
|
48558
|
+
margin: 0 -1rem -0.75rem;
|
|
48559
|
+
background-color: rgba(27, 27, 27, 0.04);
|
|
48560
|
+
box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
|
|
48561
|
+
max-height: 7.5rem;
|
|
48562
|
+
overflow-y: auto;
|
|
48563
|
+
overscroll-behavior: none;
|
|
48564
|
+
}
|
|
48565
|
+
.blocks-legend__description-inner {
|
|
48566
|
+
padding: 0.75rem 1rem;
|
|
48567
|
+
font-size: 0.94rem;
|
|
48568
|
+
font-weight: 300;
|
|
48569
|
+
line-height: 1.6;
|
|
48570
|
+
color: #1b1b1b;
|
|
48571
|
+
}
|
|
48572
|
+
|
|
48573
|
+
.blocks-stacmap-compare {
|
|
48574
|
+
position: relative;
|
|
48575
|
+
width: 100%;
|
|
48576
|
+
flex: 1;
|
|
48577
|
+
min-height: 0;
|
|
48578
|
+
}
|
|
48579
|
+
.blocks-stacmap-compare__date-chip {
|
|
48580
|
+
left: 50%;
|
|
48581
|
+
position: absolute;
|
|
48582
|
+
top: 1rem;
|
|
48583
|
+
transform: translateX(-50%);
|
|
48584
|
+
z-index: 2;
|
|
48585
|
+
}
|
|
48586
|
+
.blocks-stacmap-compare__legend-left {
|
|
48587
|
+
bottom: 1rem;
|
|
48588
|
+
left: 1rem;
|
|
48589
|
+
position: absolute;
|
|
48590
|
+
width: 15rem;
|
|
48591
|
+
}
|
|
48592
|
+
.blocks-stacmap-compare__legend-right {
|
|
48593
|
+
bottom: 1rem;
|
|
48594
|
+
position: absolute;
|
|
48595
|
+
right: 1rem;
|
|
48596
|
+
width: 15rem;
|
|
48597
|
+
}
|
|
48598
|
+
.blocks-stacmap-compare .mapboxgl-compare .compare-swiper-vertical {
|
|
48599
|
+
background-color: #1a4480;
|
|
48600
|
+
}
|
|
48601
|
+
|
|
48602
|
+
.blocks-stacmap-singlelayer {
|
|
48603
|
+
flex: 1;
|
|
48604
|
+
min-height: 0;
|
|
48605
|
+
position: relative;
|
|
48606
|
+
width: 100%;
|
|
48607
|
+
}
|
|
48608
|
+
.blocks-stacmap-singlelayer__date-chip {
|
|
48609
|
+
left: 50%;
|
|
48610
|
+
position: absolute;
|
|
48611
|
+
top: 1rem;
|
|
48612
|
+
transform: translateX(-50%);
|
|
48613
|
+
z-index: 2;
|
|
48614
|
+
}
|
|
48615
|
+
.blocks-stacmap-singlelayer__legend {
|
|
48616
|
+
bottom: 1rem;
|
|
48617
|
+
width: 15rem;
|
|
48618
|
+
position: absolute;
|
|
48619
|
+
right: 1rem;
|
|
48620
|
+
}
|
|
48621
|
+
|
|
48622
|
+
.maplibregl-map {
|
|
48623
|
+
font: 12px/20px Helvetica Neue, Arial, Helvetica, sans-serif;
|
|
48624
|
+
overflow: hidden;
|
|
48625
|
+
position: relative;
|
|
48626
|
+
-webkit-tap-highlight-color: rgb(0 0 0/0);
|
|
48627
|
+
}
|
|
48628
|
+
|
|
48629
|
+
.maplibregl-canvas {
|
|
48630
|
+
left: 0;
|
|
48631
|
+
position: absolute;
|
|
48632
|
+
top: 0;
|
|
48633
|
+
}
|
|
48634
|
+
|
|
48635
|
+
.maplibregl-map:fullscreen {
|
|
48636
|
+
height: 100%;
|
|
48637
|
+
width: 100%;
|
|
48638
|
+
}
|
|
48639
|
+
|
|
48640
|
+
.maplibregl-ctrl-group button.maplibregl-ctrl-compass {
|
|
48641
|
+
touch-action: none;
|
|
48642
|
+
}
|
|
48643
|
+
|
|
48644
|
+
.maplibregl-canvas-container.maplibregl-interactive, .maplibregl-ctrl-group button.maplibregl-ctrl-compass {
|
|
48645
|
+
cursor: grab;
|
|
48646
|
+
-webkit-user-select: none;
|
|
48647
|
+
-moz-user-select: none;
|
|
48648
|
+
user-select: none;
|
|
48649
|
+
}
|
|
48650
|
+
|
|
48651
|
+
.maplibregl-canvas-container.maplibregl-interactive.maplibregl-track-pointer {
|
|
48652
|
+
cursor: pointer;
|
|
48653
|
+
}
|
|
48654
|
+
|
|
48655
|
+
.maplibregl-canvas-container.maplibregl-interactive:active, .maplibregl-ctrl-group button.maplibregl-ctrl-compass:active {
|
|
48656
|
+
cursor: grabbing;
|
|
48657
|
+
}
|
|
48658
|
+
|
|
48659
|
+
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate, .maplibregl-canvas-container.maplibregl-touch-zoom-rotate .maplibregl-canvas {
|
|
48660
|
+
touch-action: pan-x pan-y;
|
|
48661
|
+
}
|
|
48662
|
+
|
|
48663
|
+
.maplibregl-canvas-container.maplibregl-touch-drag-pan, .maplibregl-canvas-container.maplibregl-touch-drag-pan .maplibregl-canvas {
|
|
48664
|
+
touch-action: pinch-zoom;
|
|
48665
|
+
}
|
|
48666
|
+
|
|
48667
|
+
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan, .maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan .maplibregl-canvas {
|
|
48668
|
+
touch-action: none;
|
|
48669
|
+
}
|
|
48670
|
+
|
|
48671
|
+
.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures, .maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures .maplibregl-canvas {
|
|
48672
|
+
touch-action: pan-x pan-y;
|
|
48673
|
+
}
|
|
48674
|
+
|
|
48675
|
+
.maplibregl-ctrl-bottom-left, .maplibregl-ctrl-bottom-right, .maplibregl-ctrl-top-left, .maplibregl-ctrl-top-right {
|
|
48676
|
+
pointer-events: none;
|
|
48677
|
+
position: absolute;
|
|
48678
|
+
z-index: 2;
|
|
48679
|
+
}
|
|
48680
|
+
|
|
48681
|
+
.maplibregl-ctrl-top-left {
|
|
48682
|
+
left: 0;
|
|
48683
|
+
top: 0;
|
|
48684
|
+
}
|
|
48685
|
+
|
|
48686
|
+
.maplibregl-ctrl-top-right {
|
|
48687
|
+
right: 0;
|
|
48688
|
+
top: 0;
|
|
48689
|
+
}
|
|
48690
|
+
|
|
48691
|
+
.maplibregl-ctrl-bottom-left {
|
|
48692
|
+
bottom: 0;
|
|
48693
|
+
left: 0;
|
|
48694
|
+
}
|
|
48695
|
+
|
|
48696
|
+
.maplibregl-ctrl-bottom-right {
|
|
48697
|
+
bottom: 0;
|
|
48698
|
+
right: 0;
|
|
48699
|
+
}
|
|
48700
|
+
|
|
48701
|
+
.maplibregl-ctrl {
|
|
48702
|
+
clear: both;
|
|
48703
|
+
pointer-events: auto;
|
|
48704
|
+
transform: translate(0);
|
|
48705
|
+
}
|
|
48706
|
+
|
|
48707
|
+
.maplibregl-ctrl-top-left .maplibregl-ctrl {
|
|
48708
|
+
float: left;
|
|
48709
|
+
margin: 10px 0 0 10px;
|
|
48710
|
+
}
|
|
48711
|
+
|
|
48712
|
+
.maplibregl-ctrl-top-right .maplibregl-ctrl {
|
|
48713
|
+
float: right;
|
|
48714
|
+
margin: 10px 10px 0 0;
|
|
48715
|
+
}
|
|
48716
|
+
|
|
48717
|
+
.maplibregl-ctrl-bottom-left .maplibregl-ctrl {
|
|
48718
|
+
float: left;
|
|
48719
|
+
margin: 0 0 10px 10px;
|
|
48720
|
+
}
|
|
48721
|
+
|
|
48722
|
+
.maplibregl-ctrl-bottom-right .maplibregl-ctrl {
|
|
48723
|
+
float: right;
|
|
48724
|
+
margin: 0 10px 10px 0;
|
|
48725
|
+
}
|
|
48726
|
+
|
|
48727
|
+
.maplibregl-ctrl-group {
|
|
48728
|
+
background: #fff;
|
|
48729
|
+
border-radius: 4px;
|
|
48730
|
+
}
|
|
48731
|
+
|
|
48732
|
+
.maplibregl-ctrl-group:not(:empty) {
|
|
48733
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
|
|
48734
|
+
}
|
|
48735
|
+
|
|
48736
|
+
@media (forced-colors: active) {
|
|
48737
|
+
.maplibregl-ctrl-group:not(:empty) {
|
|
48738
|
+
box-shadow: 0 0 0 2px ButtonText;
|
|
48739
|
+
}
|
|
48740
|
+
}
|
|
48741
|
+
.maplibregl-ctrl-group button {
|
|
48742
|
+
background-color: transparent;
|
|
48743
|
+
border: 0;
|
|
48744
|
+
box-sizing: border-box;
|
|
48745
|
+
cursor: pointer;
|
|
48746
|
+
display: block;
|
|
48747
|
+
height: 29px;
|
|
48748
|
+
outline: none;
|
|
48749
|
+
padding: 0;
|
|
48750
|
+
width: 29px;
|
|
48751
|
+
}
|
|
48752
|
+
|
|
48753
|
+
.maplibregl-ctrl-group button + button {
|
|
48754
|
+
border-top: 1px solid #ddd;
|
|
48755
|
+
}
|
|
48756
|
+
|
|
48757
|
+
.maplibregl-ctrl button .maplibregl-ctrl-icon {
|
|
48758
|
+
background-position: 50%;
|
|
48759
|
+
background-repeat: no-repeat;
|
|
48760
|
+
display: block;
|
|
48761
|
+
height: 100%;
|
|
48762
|
+
width: 100%;
|
|
48763
|
+
}
|
|
48764
|
+
|
|
48765
|
+
@media (forced-colors: active) {
|
|
48766
|
+
.maplibregl-ctrl-icon {
|
|
48767
|
+
background-color: transparent;
|
|
48768
|
+
}
|
|
48769
|
+
.maplibregl-ctrl-group button + button {
|
|
48770
|
+
border-top: 1px solid ButtonText;
|
|
48771
|
+
}
|
|
48772
|
+
}
|
|
48773
|
+
.maplibregl-ctrl button::-moz-focus-inner {
|
|
48774
|
+
border: 0;
|
|
48775
|
+
padding: 0;
|
|
48776
|
+
}
|
|
48777
|
+
|
|
48778
|
+
.maplibregl-ctrl-attrib-button:focus, .maplibregl-ctrl-group button:focus {
|
|
48779
|
+
box-shadow: 0 0 2px 2px #0096ff;
|
|
48780
|
+
}
|
|
48781
|
+
|
|
48782
|
+
.maplibregl-ctrl button:disabled {
|
|
48783
|
+
cursor: not-allowed;
|
|
48784
|
+
}
|
|
48785
|
+
|
|
48786
|
+
.maplibregl-ctrl button:disabled .maplibregl-ctrl-icon {
|
|
48787
|
+
opacity: 0.25;
|
|
48788
|
+
}
|
|
48789
|
+
|
|
48790
|
+
@media (hover: hover) {
|
|
48791
|
+
.maplibregl-ctrl button:not(:disabled):hover {
|
|
48792
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
48793
|
+
}
|
|
48794
|
+
}
|
|
48795
|
+
.maplibregl-ctrl button:not(:disabled):active {
|
|
48796
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
48797
|
+
}
|
|
48798
|
+
|
|
48799
|
+
.maplibregl-ctrl-group button:focus:focus-visible {
|
|
48800
|
+
box-shadow: 0 0 2px 2px #0096ff;
|
|
48801
|
+
}
|
|
48802
|
+
|
|
48803
|
+
.maplibregl-ctrl-group button:focus:not(:focus-visible) {
|
|
48804
|
+
box-shadow: none;
|
|
48805
|
+
}
|
|
48806
|
+
|
|
48807
|
+
.maplibregl-ctrl-group button:focus:first-child {
|
|
48808
|
+
border-radius: 4px 4px 0 0;
|
|
48809
|
+
}
|
|
48810
|
+
|
|
48811
|
+
.maplibregl-ctrl-group button:focus:last-child {
|
|
48812
|
+
border-radius: 0 0 4px 4px;
|
|
48813
|
+
}
|
|
48814
|
+
|
|
48815
|
+
.maplibregl-ctrl-group button:focus:only-child {
|
|
48816
|
+
border-radius: inherit;
|
|
48817
|
+
}
|
|
48818
|
+
|
|
48819
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
48820
|
+
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");
|
|
48821
|
+
}
|
|
48822
|
+
|
|
48823
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
48824
|
+
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");
|
|
48825
|
+
}
|
|
48826
|
+
|
|
48827
|
+
@media (forced-colors: active) {
|
|
48828
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
48829
|
+
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");
|
|
48830
|
+
}
|
|
48831
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
48832
|
+
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");
|
|
48833
|
+
}
|
|
48834
|
+
}
|
|
48835
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
48836
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
|
|
48837
|
+
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");
|
|
48838
|
+
}
|
|
48839
|
+
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
|
|
48840
|
+
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");
|
|
48841
|
+
}
|
|
48842
|
+
}
|
|
48843
|
+
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
48844
|
+
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");
|
|
48845
|
+
}
|
|
48846
|
+
|
|
48847
|
+
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
48848
|
+
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");
|
|
48849
|
+
}
|
|
48850
|
+
|
|
48851
|
+
@media (forced-colors: active) {
|
|
48852
|
+
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
48853
|
+
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");
|
|
48854
|
+
}
|
|
48855
|
+
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
48856
|
+
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");
|
|
48857
|
+
}
|
|
48858
|
+
}
|
|
48859
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
48860
|
+
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
|
|
48861
|
+
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");
|
|
48862
|
+
}
|
|
48863
|
+
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
|
|
48864
|
+
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");
|
|
48865
|
+
}
|
|
48866
|
+
}
|
|
48867
|
+
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
48868
|
+
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");
|
|
48869
|
+
}
|
|
48870
|
+
|
|
48871
|
+
@media (forced-colors: active) {
|
|
48872
|
+
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
48873
|
+
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");
|
|
48874
|
+
}
|
|
48875
|
+
}
|
|
48876
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
48877
|
+
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
|
|
48878
|
+
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");
|
|
48879
|
+
}
|
|
48880
|
+
}
|
|
48881
|
+
.maplibregl-ctrl button.maplibregl-ctrl-globe .maplibregl-ctrl-icon {
|
|
48882
|
+
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");
|
|
48883
|
+
}
|
|
48884
|
+
|
|
48885
|
+
.maplibregl-ctrl button.maplibregl-ctrl-globe-enabled .maplibregl-ctrl-icon {
|
|
48886
|
+
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");
|
|
48887
|
+
}
|
|
48888
|
+
|
|
48889
|
+
.maplibregl-ctrl button.maplibregl-ctrl-terrain .maplibregl-ctrl-icon {
|
|
48890
|
+
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");
|
|
48891
|
+
}
|
|
48892
|
+
|
|
48893
|
+
.maplibregl-ctrl button.maplibregl-ctrl-terrain-enabled .maplibregl-ctrl-icon {
|
|
48894
|
+
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");
|
|
48895
|
+
}
|
|
48896
|
+
|
|
48897
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
48898
|
+
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");
|
|
48899
|
+
}
|
|
48900
|
+
|
|
48901
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
|
|
48902
|
+
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");
|
|
48903
|
+
}
|
|
48904
|
+
|
|
48905
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon {
|
|
48906
|
+
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");
|
|
48907
|
+
}
|
|
48908
|
+
|
|
48909
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon {
|
|
48910
|
+
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");
|
|
48911
|
+
}
|
|
48912
|
+
|
|
48913
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon {
|
|
48914
|
+
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");
|
|
48915
|
+
}
|
|
48916
|
+
|
|
48917
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon {
|
|
48918
|
+
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");
|
|
48919
|
+
}
|
|
48920
|
+
|
|
48921
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting .maplibregl-ctrl-icon {
|
|
48922
|
+
animation: maplibregl-spin 2s linear infinite;
|
|
48923
|
+
}
|
|
48924
|
+
|
|
48925
|
+
@media (forced-colors: active) {
|
|
48926
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
48927
|
+
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");
|
|
48928
|
+
}
|
|
48929
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
|
|
48930
|
+
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");
|
|
48931
|
+
}
|
|
48932
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon {
|
|
48933
|
+
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");
|
|
48934
|
+
}
|
|
48935
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon {
|
|
48936
|
+
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");
|
|
48937
|
+
}
|
|
48938
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon {
|
|
48939
|
+
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");
|
|
48940
|
+
}
|
|
48941
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon {
|
|
48942
|
+
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");
|
|
48943
|
+
}
|
|
48944
|
+
}
|
|
48945
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
48946
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
|
|
48947
|
+
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");
|
|
48948
|
+
}
|
|
48949
|
+
.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
|
|
48950
|
+
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");
|
|
48951
|
+
}
|
|
48952
|
+
}
|
|
48953
|
+
@keyframes maplibregl-spin {
|
|
48954
|
+
0% {
|
|
48955
|
+
transform: rotate(0deg);
|
|
48956
|
+
}
|
|
48957
|
+
to {
|
|
48958
|
+
transform: rotate(1turn);
|
|
48959
|
+
}
|
|
48960
|
+
}
|
|
48961
|
+
a.maplibregl-ctrl-logo {
|
|
48962
|
+
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");
|
|
48963
|
+
background-repeat: no-repeat;
|
|
48964
|
+
cursor: pointer;
|
|
48965
|
+
display: block;
|
|
48966
|
+
height: 23px;
|
|
48967
|
+
margin: 0 0 -4px -4px;
|
|
48968
|
+
overflow: hidden;
|
|
48969
|
+
width: 88px;
|
|
48970
|
+
}
|
|
48971
|
+
|
|
48972
|
+
a.maplibregl-ctrl-logo.maplibregl-compact {
|
|
48973
|
+
width: 14px;
|
|
48974
|
+
}
|
|
48975
|
+
|
|
48976
|
+
@media (forced-colors: active) {
|
|
48977
|
+
a.maplibregl-ctrl-logo {
|
|
48978
|
+
background-color: transparent;
|
|
48979
|
+
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");
|
|
48980
|
+
}
|
|
48981
|
+
}
|
|
48982
|
+
@media (forced-colors: active) and (prefers-color-scheme: light) {
|
|
48983
|
+
a.maplibregl-ctrl-logo {
|
|
48984
|
+
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");
|
|
48985
|
+
}
|
|
48986
|
+
}
|
|
48987
|
+
.maplibregl-ctrl.maplibregl-ctrl-attrib {
|
|
48988
|
+
background-color: hsla(0, 0%, 100%, 0.5);
|
|
48989
|
+
margin: 0;
|
|
48990
|
+
padding: 0 5px;
|
|
48991
|
+
}
|
|
48992
|
+
|
|
48993
|
+
@media screen {
|
|
48994
|
+
.maplibregl-ctrl-attrib.maplibregl-compact {
|
|
48995
|
+
background-color: #fff;
|
|
48996
|
+
border-radius: 12px;
|
|
48997
|
+
box-sizing: content-box;
|
|
48998
|
+
color: #000;
|
|
48999
|
+
margin: 10px;
|
|
49000
|
+
min-height: 20px;
|
|
49001
|
+
padding: 2px 24px 2px 0;
|
|
49002
|
+
position: relative;
|
|
49003
|
+
}
|
|
49004
|
+
.maplibregl-ctrl-attrib.maplibregl-compact-show {
|
|
49005
|
+
padding: 2px 28px 2px 8px;
|
|
49006
|
+
visibility: visible;
|
|
49007
|
+
}
|
|
49008
|
+
.maplibregl-ctrl-bottom-left > .maplibregl-ctrl-attrib.maplibregl-compact-show, .maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact-show {
|
|
49009
|
+
border-radius: 12px;
|
|
49010
|
+
padding: 2px 8px 2px 28px;
|
|
49011
|
+
}
|
|
49012
|
+
.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-inner {
|
|
49013
|
+
display: none;
|
|
49014
|
+
}
|
|
49015
|
+
.maplibregl-ctrl-attrib-button {
|
|
49016
|
+
background-color: hsla(0, 0%, 100%, 0.5);
|
|
49017
|
+
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");
|
|
49018
|
+
border: 0;
|
|
49019
|
+
border-radius: 12px;
|
|
49020
|
+
box-sizing: border-box;
|
|
49021
|
+
cursor: pointer;
|
|
49022
|
+
display: none;
|
|
49023
|
+
height: 24px;
|
|
49024
|
+
outline: none;
|
|
49025
|
+
position: absolute;
|
|
49026
|
+
right: 0;
|
|
49027
|
+
top: 0;
|
|
49028
|
+
width: 24px;
|
|
49029
|
+
}
|
|
49030
|
+
.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button {
|
|
49031
|
+
-webkit-appearance: none;
|
|
49032
|
+
-moz-appearance: none;
|
|
49033
|
+
appearance: none;
|
|
49034
|
+
list-style: none;
|
|
49035
|
+
}
|
|
49036
|
+
.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button::-webkit-details-marker {
|
|
49037
|
+
display: none;
|
|
49038
|
+
}
|
|
49039
|
+
.maplibregl-ctrl-bottom-left .maplibregl-ctrl-attrib-button, .maplibregl-ctrl-top-left .maplibregl-ctrl-attrib-button {
|
|
49040
|
+
left: 0;
|
|
49041
|
+
}
|
|
49042
|
+
.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button, .maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-inner {
|
|
49043
|
+
display: block;
|
|
49044
|
+
}
|
|
49045
|
+
.maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-button {
|
|
49046
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
49047
|
+
}
|
|
49048
|
+
.maplibregl-ctrl-bottom-right > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49049
|
+
bottom: 0;
|
|
49050
|
+
right: 0;
|
|
49051
|
+
}
|
|
49052
|
+
.maplibregl-ctrl-top-right > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49053
|
+
right: 0;
|
|
49054
|
+
top: 0;
|
|
49055
|
+
}
|
|
49056
|
+
.maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49057
|
+
left: 0;
|
|
49058
|
+
top: 0;
|
|
49059
|
+
}
|
|
49060
|
+
.maplibregl-ctrl-bottom-left > .maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49061
|
+
bottom: 0;
|
|
49062
|
+
left: 0;
|
|
49063
|
+
}
|
|
49064
|
+
}
|
|
49065
|
+
@media screen and (forced-colors: active) {
|
|
49066
|
+
.maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49067
|
+
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");
|
|
49068
|
+
}
|
|
49069
|
+
}
|
|
49070
|
+
@media screen and (forced-colors: active) and (prefers-color-scheme: light) {
|
|
49071
|
+
.maplibregl-ctrl-attrib.maplibregl-compact:after {
|
|
49072
|
+
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");
|
|
49073
|
+
}
|
|
49074
|
+
}
|
|
49075
|
+
.maplibregl-ctrl-attrib a {
|
|
49076
|
+
color: rgba(0, 0, 0, 0.75);
|
|
49077
|
+
text-decoration: none;
|
|
49078
|
+
}
|
|
49079
|
+
|
|
49080
|
+
.maplibregl-ctrl-attrib a:hover {
|
|
49081
|
+
color: inherit;
|
|
49082
|
+
text-decoration: underline;
|
|
49083
|
+
}
|
|
49084
|
+
|
|
49085
|
+
.maplibregl-attrib-empty {
|
|
49086
|
+
display: none;
|
|
49087
|
+
}
|
|
49088
|
+
|
|
49089
|
+
.maplibregl-ctrl-scale {
|
|
49090
|
+
background-color: hsla(0, 0%, 100%, 0.75);
|
|
49091
|
+
border: 2px solid #333;
|
|
49092
|
+
border-top: #333;
|
|
49093
|
+
box-sizing: border-box;
|
|
49094
|
+
color: #333;
|
|
49095
|
+
font-size: 10px;
|
|
49096
|
+
padding: 0 5px;
|
|
49097
|
+
white-space: nowrap;
|
|
49098
|
+
}
|
|
49099
|
+
|
|
49100
|
+
.maplibregl-popup {
|
|
49101
|
+
display: flex;
|
|
49102
|
+
left: 0;
|
|
49103
|
+
pointer-events: none;
|
|
49104
|
+
position: absolute;
|
|
49105
|
+
top: 0;
|
|
49106
|
+
will-change: transform;
|
|
49107
|
+
}
|
|
49108
|
+
|
|
49109
|
+
.maplibregl-popup-anchor-top, .maplibregl-popup-anchor-top-left, .maplibregl-popup-anchor-top-right {
|
|
49110
|
+
flex-direction: column;
|
|
49111
|
+
}
|
|
49112
|
+
|
|
49113
|
+
.maplibregl-popup-anchor-bottom, .maplibregl-popup-anchor-bottom-left, .maplibregl-popup-anchor-bottom-right {
|
|
49114
|
+
flex-direction: column-reverse;
|
|
49115
|
+
}
|
|
49116
|
+
|
|
49117
|
+
.maplibregl-popup-anchor-left {
|
|
49118
|
+
flex-direction: row;
|
|
49119
|
+
}
|
|
49120
|
+
|
|
49121
|
+
.maplibregl-popup-anchor-right {
|
|
49122
|
+
flex-direction: row-reverse;
|
|
49123
|
+
}
|
|
49124
|
+
|
|
49125
|
+
.maplibregl-popup-tip {
|
|
49126
|
+
border: 10px solid transparent;
|
|
49127
|
+
height: 0;
|
|
49128
|
+
width: 0;
|
|
49129
|
+
z-index: 1;
|
|
49130
|
+
}
|
|
49131
|
+
|
|
49132
|
+
.maplibregl-popup-anchor-top .maplibregl-popup-tip {
|
|
49133
|
+
align-self: center;
|
|
49134
|
+
border-bottom-color: #fff;
|
|
49135
|
+
border-top: none;
|
|
49136
|
+
}
|
|
49137
|
+
|
|
49138
|
+
.maplibregl-popup-anchor-top-left .maplibregl-popup-tip {
|
|
49139
|
+
align-self: flex-start;
|
|
49140
|
+
border-bottom-color: #fff;
|
|
49141
|
+
border-left: none;
|
|
49142
|
+
border-top: none;
|
|
49143
|
+
}
|
|
49144
|
+
|
|
49145
|
+
.maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
|
|
49146
|
+
align-self: flex-end;
|
|
49147
|
+
border-bottom-color: #fff;
|
|
49148
|
+
border-right: none;
|
|
49149
|
+
border-top: none;
|
|
49150
|
+
}
|
|
49151
|
+
|
|
49152
|
+
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
|
|
49153
|
+
align-self: center;
|
|
49154
|
+
border-bottom: none;
|
|
49155
|
+
border-top-color: #fff;
|
|
49156
|
+
}
|
|
49157
|
+
|
|
49158
|
+
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip {
|
|
49159
|
+
align-self: flex-start;
|
|
49160
|
+
border-bottom: none;
|
|
49161
|
+
border-left: none;
|
|
49162
|
+
border-top-color: #fff;
|
|
49163
|
+
}
|
|
49164
|
+
|
|
49165
|
+
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
|
|
49166
|
+
align-self: flex-end;
|
|
49167
|
+
border-bottom: none;
|
|
49168
|
+
border-right: none;
|
|
49169
|
+
border-top-color: #fff;
|
|
49170
|
+
}
|
|
49171
|
+
|
|
49172
|
+
.maplibregl-popup-anchor-left .maplibregl-popup-tip {
|
|
49173
|
+
align-self: center;
|
|
49174
|
+
border-left: none;
|
|
49175
|
+
border-right-color: #fff;
|
|
49176
|
+
}
|
|
49177
|
+
|
|
49178
|
+
.maplibregl-popup-anchor-right .maplibregl-popup-tip {
|
|
49179
|
+
align-self: center;
|
|
49180
|
+
border-left-color: #fff;
|
|
49181
|
+
border-right: none;
|
|
49182
|
+
}
|
|
49183
|
+
|
|
49184
|
+
[dir=rtl] .maplibregl-popup-anchor-left {
|
|
49185
|
+
flex-direction: row-reverse;
|
|
49186
|
+
}
|
|
49187
|
+
|
|
49188
|
+
[dir=rtl] .maplibregl-popup-anchor-right {
|
|
49189
|
+
flex-direction: row;
|
|
49190
|
+
}
|
|
49191
|
+
|
|
49192
|
+
[dir=rtl] .maplibregl-popup-anchor-top-left .maplibregl-popup-tip {
|
|
49193
|
+
align-self: flex-end;
|
|
49194
|
+
}
|
|
49195
|
+
|
|
49196
|
+
[dir=rtl] .maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
|
|
49197
|
+
align-self: flex-start;
|
|
49198
|
+
}
|
|
49199
|
+
|
|
49200
|
+
[dir=rtl] .maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip {
|
|
49201
|
+
align-self: flex-end;
|
|
49202
|
+
}
|
|
49203
|
+
|
|
49204
|
+
[dir=rtl] .maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
|
|
49205
|
+
align-self: flex-start;
|
|
49206
|
+
}
|
|
49207
|
+
|
|
49208
|
+
.maplibregl-popup-close-button {
|
|
49209
|
+
background-color: transparent;
|
|
49210
|
+
border: 0;
|
|
49211
|
+
border-radius: 0 3px 0 0;
|
|
49212
|
+
cursor: pointer;
|
|
49213
|
+
position: absolute;
|
|
49214
|
+
right: 0;
|
|
49215
|
+
top: 0;
|
|
49216
|
+
}
|
|
49217
|
+
|
|
49218
|
+
.maplibregl-popup-close-button:hover {
|
|
49219
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
49220
|
+
}
|
|
49221
|
+
|
|
49222
|
+
.maplibregl-popup-content {
|
|
49223
|
+
background: #fff;
|
|
49224
|
+
border-radius: 3px;
|
|
49225
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
49226
|
+
padding: 15px 10px;
|
|
49227
|
+
pointer-events: auto;
|
|
49228
|
+
position: relative;
|
|
49229
|
+
}
|
|
49230
|
+
|
|
49231
|
+
.maplibregl-popup-anchor-top-left .maplibregl-popup-content {
|
|
49232
|
+
border-top-left-radius: 0;
|
|
49233
|
+
}
|
|
49234
|
+
|
|
49235
|
+
.maplibregl-popup-anchor-top-right .maplibregl-popup-content {
|
|
49236
|
+
border-top-right-radius: 0;
|
|
49237
|
+
}
|
|
49238
|
+
|
|
49239
|
+
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-content {
|
|
49240
|
+
border-bottom-left-radius: 0;
|
|
49241
|
+
}
|
|
49242
|
+
|
|
49243
|
+
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-content {
|
|
49244
|
+
border-bottom-right-radius: 0;
|
|
49245
|
+
}
|
|
49246
|
+
|
|
49247
|
+
.maplibregl-popup-track-pointer {
|
|
49248
|
+
display: none;
|
|
49249
|
+
}
|
|
49250
|
+
|
|
49251
|
+
.maplibregl-popup-track-pointer * {
|
|
49252
|
+
pointer-events: none;
|
|
49253
|
+
-webkit-user-select: none;
|
|
49254
|
+
-moz-user-select: none;
|
|
49255
|
+
user-select: none;
|
|
49256
|
+
}
|
|
49257
|
+
|
|
49258
|
+
.maplibregl-map:hover .maplibregl-popup-track-pointer {
|
|
49259
|
+
display: flex;
|
|
49260
|
+
}
|
|
49261
|
+
|
|
49262
|
+
.maplibregl-map:active .maplibregl-popup-track-pointer {
|
|
49263
|
+
display: none;
|
|
49264
|
+
}
|
|
49265
|
+
|
|
49266
|
+
.maplibregl-marker {
|
|
49267
|
+
left: 0;
|
|
49268
|
+
position: absolute;
|
|
49269
|
+
top: 0;
|
|
49270
|
+
transition: opacity 0.2s;
|
|
49271
|
+
will-change: transform;
|
|
49272
|
+
}
|
|
49273
|
+
|
|
49274
|
+
.maplibregl-user-location-dot, .maplibregl-user-location-dot:before {
|
|
49275
|
+
background-color: #1da1f2;
|
|
49276
|
+
border-radius: 50%;
|
|
49277
|
+
height: 15px;
|
|
49278
|
+
width: 15px;
|
|
49279
|
+
}
|
|
49280
|
+
|
|
49281
|
+
.maplibregl-user-location-dot:before {
|
|
49282
|
+
animation: maplibregl-user-location-dot-pulse 2s infinite;
|
|
49283
|
+
content: "";
|
|
49284
|
+
position: absolute;
|
|
49285
|
+
}
|
|
49286
|
+
|
|
49287
|
+
.maplibregl-user-location-dot:after {
|
|
49288
|
+
border: 2px solid #fff;
|
|
49289
|
+
border-radius: 50%;
|
|
49290
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
|
|
49291
|
+
box-sizing: border-box;
|
|
49292
|
+
content: "";
|
|
49293
|
+
height: 19px;
|
|
49294
|
+
left: -2px;
|
|
49295
|
+
position: absolute;
|
|
49296
|
+
top: -2px;
|
|
49297
|
+
width: 19px;
|
|
49298
|
+
}
|
|
49299
|
+
|
|
49300
|
+
@media (prefers-reduced-motion: reduce) {
|
|
49301
|
+
.maplibregl-user-location-dot:before {
|
|
49302
|
+
animation: none;
|
|
49303
|
+
}
|
|
49304
|
+
}
|
|
49305
|
+
@keyframes maplibregl-user-location-dot-pulse {
|
|
49306
|
+
0% {
|
|
49307
|
+
opacity: 1;
|
|
49308
|
+
transform: scale(1);
|
|
49309
|
+
}
|
|
49310
|
+
70% {
|
|
49311
|
+
opacity: 0;
|
|
49312
|
+
transform: scale(3);
|
|
49313
|
+
}
|
|
49314
|
+
to {
|
|
49315
|
+
opacity: 0;
|
|
49316
|
+
transform: scale(1);
|
|
49317
|
+
}
|
|
49318
|
+
}
|
|
49319
|
+
.maplibregl-user-location-dot-stale {
|
|
49320
|
+
background-color: #aaa;
|
|
49321
|
+
}
|
|
49322
|
+
|
|
49323
|
+
.maplibregl-user-location-dot-stale:after {
|
|
49324
|
+
display: none;
|
|
49325
|
+
}
|
|
49326
|
+
|
|
49327
|
+
.maplibregl-user-location-accuracy-circle {
|
|
49328
|
+
background-color: rgba(29, 161, 242, 0.2);
|
|
49329
|
+
border-radius: 100%;
|
|
49330
|
+
height: 1px;
|
|
49331
|
+
width: 1px;
|
|
49332
|
+
}
|
|
49333
|
+
|
|
49334
|
+
.maplibregl-crosshair, .maplibregl-crosshair .maplibregl-interactive, .maplibregl-crosshair .maplibregl-interactive:active {
|
|
49335
|
+
cursor: crosshair;
|
|
49336
|
+
}
|
|
49337
|
+
|
|
49338
|
+
.maplibregl-boxzoom {
|
|
49339
|
+
background: #fff;
|
|
49340
|
+
border: 2px dotted #202020;
|
|
49341
|
+
height: 0;
|
|
49342
|
+
left: 0;
|
|
49343
|
+
opacity: 0.5;
|
|
49344
|
+
position: absolute;
|
|
49345
|
+
top: 0;
|
|
49346
|
+
width: 0;
|
|
49347
|
+
}
|
|
49348
|
+
|
|
49349
|
+
.maplibregl-cooperative-gesture-screen {
|
|
49350
|
+
align-items: center;
|
|
49351
|
+
background: rgba(0, 0, 0, 0.4);
|
|
49352
|
+
color: #fff;
|
|
49353
|
+
display: flex;
|
|
49354
|
+
font-size: 1.4em;
|
|
49355
|
+
inset: 0;
|
|
49356
|
+
justify-content: center;
|
|
49357
|
+
line-height: 1.2;
|
|
49358
|
+
opacity: 0;
|
|
49359
|
+
padding: 1rem;
|
|
49360
|
+
pointer-events: none;
|
|
49361
|
+
position: absolute;
|
|
49362
|
+
transition: opacity 1s ease 1s;
|
|
49363
|
+
z-index: 99999;
|
|
49364
|
+
}
|
|
49365
|
+
|
|
49366
|
+
.maplibregl-cooperative-gesture-screen.maplibregl-show {
|
|
49367
|
+
opacity: 1;
|
|
49368
|
+
transition: opacity 0.05s;
|
|
49369
|
+
}
|
|
49370
|
+
|
|
49371
|
+
.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
|
|
49372
|
+
display: none;
|
|
49373
|
+
}
|
|
49374
|
+
|
|
49375
|
+
@media (hover: none), (pointer: coarse) {
|
|
49376
|
+
.maplibregl-cooperative-gesture-screen .maplibregl-desktop-message {
|
|
49377
|
+
display: none;
|
|
49378
|
+
}
|
|
49379
|
+
.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
|
|
49380
|
+
display: block;
|
|
49381
|
+
}
|
|
49382
|
+
}
|
|
49383
|
+
.maplibregl-pseudo-fullscreen {
|
|
49384
|
+
height: 100% !important;
|
|
49385
|
+
left: 0 !important;
|
|
49386
|
+
position: fixed !important;
|
|
49387
|
+
top: 0 !important;
|
|
49388
|
+
width: 100% !important;
|
|
49389
|
+
z-index: 99999;
|
|
49390
|
+
}
|
|
49391
|
+
|
|
49392
|
+
.mapboxgl-compare {
|
|
49393
|
+
background-color: #fff;
|
|
49394
|
+
position: absolute;
|
|
49395
|
+
width: 2px;
|
|
49396
|
+
height: 100%;
|
|
49397
|
+
z-index: 1;
|
|
49398
|
+
}
|
|
49399
|
+
|
|
49400
|
+
.mapboxgl-compare .compare-swiper-vertical {
|
|
49401
|
+
background-color: #3887be;
|
|
49402
|
+
box-shadow: inset 0 0 0 2px #fff;
|
|
49403
|
+
display: inline-block;
|
|
49404
|
+
border-radius: 50%;
|
|
49405
|
+
position: absolute;
|
|
49406
|
+
width: 60px;
|
|
49407
|
+
height: 60px;
|
|
49408
|
+
top: 50%;
|
|
49409
|
+
left: -30px;
|
|
49410
|
+
margin: -30px 1px 0;
|
|
49411
|
+
color: #fff;
|
|
49412
|
+
cursor: ew-resize;
|
|
49413
|
+
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgd2lkdGg9IjYwIiAgIGhlaWdodD0iNjAiICAgdmVyc2lvbj0iMS4xIiAgIHZpZXdCb3g9IjAgMCA2MCA2MCIgICBpZD0ic3ZnNTQzNCIgICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkxK2RldmVsK29zeG1lbnUgcjEyOTExIiAgIHNvZGlwb2RpOmRvY25hbWU9Imwtci5zdmciPiAgPG1ldGFkYXRhICAgICBpZD0ibWV0YWRhdGE1NDQ0Ij4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzNTQ0MiIgLz4gIDxzb2RpcG9kaTpuYW1lZHZpZXcgICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIgICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2IiAgICAgYm9yZGVyb3BhY2l0eT0iMSIgICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiICAgICBncmlkdG9sZXJhbmNlPSIxMCIgICAgIGd1aWRldG9sZXJhbmNlPSIxMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIgICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTI4NiIgICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9Ijc1MSIgICAgIGlkPSJuYW1lZHZpZXc1NDQwIiAgICAgc2hvd2dyaWQ9InRydWUiICAgICBpbmtzY2FwZTp6b29tPSI0IiAgICAgaW5rc2NhcGU6Y3g9IjI1Ljg4OTgzMSIgICAgIGlua3NjYXBlOmN5PSIzNC4zODE4MzMiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMCIgICAgIGlua3NjYXBlOndpbmRvdy15PSIyMyIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjAiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmc1NDM0IiAgICAgaW5rc2NhcGU6b2JqZWN0LW5vZGVzPSJ0cnVlIiAgICAgaW5rc2NhcGU6c25hcC1zbW9vdGgtbm9kZXM9InRydWUiPiAgICA8aW5rc2NhcGU6Z3JpZCAgICAgICB0eXBlPSJ4eWdyaWQiICAgICAgIGlkPSJncmlkNTk4OSIgLz4gIDwvc29kaXBvZGk6bmFtZWR2aWV3PiAgPHBhdGggICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjFweDtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2Utb3BhY2l0eToxIiAgICAgZD0iTSAyNSAyNCBMIDE2IDMwIEwgMjUgMzYgTCAyNSAyNCB6IE0gMzUgMjQgTCAzNSAzNiBMIDQ0IDMwIEwgMzUgMjQgeiAiICAgICBpZD0icGF0aDU5OTUiIC8+PC9zdmc+);
|
|
49414
|
+
}
|
|
49415
|
+
|
|
49416
|
+
.mapboxgl-compare-horizontal {
|
|
49417
|
+
position: relative;
|
|
49418
|
+
width: 100%;
|
|
49419
|
+
height: 2px;
|
|
49420
|
+
}
|
|
49421
|
+
|
|
49422
|
+
.mapboxgl-compare .compare-swiper-horizontal {
|
|
49423
|
+
background-color: #3887be;
|
|
49424
|
+
box-shadow: inset 0 0 0 2px #fff;
|
|
49425
|
+
display: inline-block;
|
|
49426
|
+
border-radius: 50%;
|
|
49427
|
+
position: absolute;
|
|
49428
|
+
width: 60px;
|
|
49429
|
+
height: 60px;
|
|
49430
|
+
top: 50%;
|
|
49431
|
+
left: 50%;
|
|
49432
|
+
margin: -30px 1px 0;
|
|
49433
|
+
color: #fff;
|
|
49434
|
+
cursor: ns-resize;
|
|
49435
|
+
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgd2lkdGg9IjYwIiAgIGhlaWdodD0iNjAiICAgdmVyc2lvbj0iMS4xIiAgIHZpZXdCb3g9IjAgMCA2MCA2MCIgICBpZD0ic3ZnNTQzNCIgICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkxK2RldmVsK29zeG1lbnUgcjEyOTExIiAgIHNvZGlwb2RpOmRvY25hbWU9Imwtci5zdmciPiAgPG1ldGFkYXRhICAgICBpZD0ibWV0YWRhdGE1NDQ0Ij4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzNTQ0MiIgLz4gIDxzb2RpcG9kaTpuYW1lZHZpZXcgICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIgICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2IiAgICAgYm9yZGVyb3BhY2l0eT0iMSIgICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiICAgICBncmlkdG9sZXJhbmNlPSIxMCIgICAgIGd1aWRldG9sZXJhbmNlPSIxMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIgICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTI4NiIgICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9Ijc1MSIgICAgIGlkPSJuYW1lZHZpZXc1NDQwIiAgICAgc2hvd2dyaWQ9InRydWUiICAgICBpbmtzY2FwZTp6b29tPSI0IiAgICAgaW5rc2NhcGU6Y3g9IjI1Ljg4OTgzMSIgICAgIGlua3NjYXBlOmN5PSIzNC4zODE4MzMiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMCIgICAgIGlua3NjYXBlOndpbmRvdy15PSIyMyIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjAiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmc1NDM0IiAgICAgaW5rc2NhcGU6b2JqZWN0LW5vZGVzPSJ0cnVlIiAgICAgaW5rc2NhcGU6c25hcC1zbW9vdGgtbm9kZXM9InRydWUiPiAgICA8aW5rc2NhcGU6Z3JpZCAgICAgICB0eXBlPSJ4eWdyaWQiICAgICAgIGlkPSJncmlkNTk4OSIgLz4gIDwvc29kaXBvZGk6bmFtZWR2aWV3PiAgPHBhdGggICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjFweDtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2Utb3BhY2l0eToxIiAgICAgZD0iTSAyNSAyNCBMIDE2IDMwIEwgMjUgMzYgTCAyNSAyNCB6IE0gMzUgMjQgTCAzNSAzNiBMIDQ0IDMwIEwgMzUgMjQgeiAiICAgICBpZD0icGF0aDU5OTUiIC8+PC9zdmc+);
|
|
49436
|
+
transform: rotate(90deg);
|
|
49437
|
+
}
|
|
49438
|
+
|
|
48458
49439
|
/*# sourceMappingURL=default.css.map */
|