1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
@tailwind base;
@tailwind components;
@tailwind utilities;
/* GENERAL
// ------------------------- */
/* * {
font-family: 'Helvetica Neue', Helvetica, sans-serif;
} */
#map {
height: 100%;
height: 100dvh;
width: 100%;
}
.gm-style-mtc-bbw {
display: none;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
.gm-fullscreen-control,
.gm-svpc {
display: none;
}
.st0 {
fill: none;
stroke: #000000;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10;
}
.st1 {
fill: none;
stroke: #000000;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.st2 {
fill: none;
stroke: #000000;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
stroke-dasharray: 6, 6;
}
.st3 {
fill: none;
stroke: #000000;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
stroke-dasharray: 4, 4;
}
.st4 {
fill: none;
stroke: #000000;
stroke-width: 2;
stroke-linecap: round;
}
.st5 {
fill: none;
stroke: #000000;
stroke-width: 2;
stroke-linecap: round;
stroke-dasharray: 3.1081, 3.1081;
}
.st6 {
fill: none;
stroke: #000000;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
stroke-miterlimit: 10;
stroke-dasharray: 4, 3;
}
/* header {
background: rgb(38, 38, 38);
background: linear-gradient(
180deg,
rgba(38, 38, 38, 1) 0%,
rgba(38, 38, 38, 0.7665660014005602) 51%,
rgba(38, 38, 38, 0) 100%
);
} */
/* body {
color: #646c78;
background-color: #222e3e;
} */
/*
.container {
max-width: 1200px;
margin: 0 auto;
padding-left: 15px;
padding-right: 15px;
} */
|