io-sanita-theme 2.2.2 → 2.2.4
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/CHANGELOG.md +13 -0
- package/package.json +1 -1
- package/src/components/Blocks/CTA/Block.jsx +1 -1
- package/src/components/Blocks/CTA/ctaBlock.scss +1 -0
- package/src/components/Blocks/QuickSearch/Body.jsx +8 -2
- package/src/components/Blocks/QuickSearch/Edit.jsx +1 -1
- package/src/components/Blocks/QuickSearch/quickSearchBlock.scss +7 -0
- package/src/components/layout/Header/LanguageSelector.jsx +23 -11
- package/src/icons/default-bg-2.svg +723 -87
- package/src/theme/bootstrap-italia/custom/_headerslim.scss +18 -2
- package/src/theme/io-sanita/_mixins.scss +2 -1
- package/src/theme/io-sanita/components/layout/_tertiaryMenu.scss +9 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.2.4](https://github.com/RedTurtle/io-sanita-theme/compare/2.2.3...2.2.4) (2025-02-21)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* language selector border ([ff5fece](https://github.com/RedTurtle/io-sanita-theme/commit/ff5fece6e99da36d47208cef5e51e3387fe408aa))
|
|
8
|
+
* styles for quicksearch block ([f3e7084](https://github.com/RedTurtle/io-sanita-theme/commit/f3e7084e9a31071faaacb0e99d6791437e3f1f6b))
|
|
9
|
+
|
|
10
|
+
## [2.2.3](https://github.com/RedTurtle/io-sanita-theme/compare/2.2.2...2.2.3) (2025-02-17)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* language selector ([23b94a1](https://github.com/RedTurtle/io-sanita-theme/commit/23b94a16ccc2e3db86c443f91a8e7a4ce67c6cb4))
|
|
15
|
+
|
|
3
16
|
## [2.2.2](https://github.com/RedTurtle/io-sanita-theme/compare/2.2.1...2.2.2) (2025-02-13)
|
|
4
17
|
|
|
5
18
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React, { useState, useEffect } from 'react';
|
|
2
|
+
import cx from 'classnames';
|
|
2
3
|
import { useIntl, defineMessages } from 'react-intl';
|
|
3
4
|
import { useSelector } from 'react-redux';
|
|
4
5
|
import { Container, Row, Col } from 'design-react-kit';
|
|
@@ -13,7 +14,7 @@ const messages = defineMessages({
|
|
|
13
14
|
},
|
|
14
15
|
});
|
|
15
16
|
|
|
16
|
-
const Body = ({ data, id }) => {
|
|
17
|
+
const Body = ({ data, id, isEditMode }) => {
|
|
17
18
|
const intl = useIntl();
|
|
18
19
|
const [searchableText, setSearchableText] = useState();
|
|
19
20
|
const subsite = useSelector((state) => state.subsite?.data);
|
|
@@ -30,7 +31,12 @@ const Body = ({ data, id }) => {
|
|
|
30
31
|
}
|
|
31
32
|
}, [searchableText]);
|
|
32
33
|
return (
|
|
33
|
-
<div
|
|
34
|
+
<div
|
|
35
|
+
className={cx(
|
|
36
|
+
'full-width bg-primary-lightest py-4 quick-search-block mb-4',
|
|
37
|
+
{ block: !isEditMode },
|
|
38
|
+
)}
|
|
39
|
+
>
|
|
34
40
|
<Container className="px-4">
|
|
35
41
|
<Row>
|
|
36
42
|
<Col xl={6}>
|
|
@@ -4,4 +4,11 @@
|
|
|
4
4
|
.form-group.search-bar-widget label.active {
|
|
5
5
|
@include rem-size(font-size, 24);
|
|
6
6
|
}
|
|
7
|
+
|
|
8
|
+
// &:has(+ .block.image),
|
|
9
|
+
// &:has(+ .block.listing.carouselTemplate) {
|
|
10
|
+
// margin-bottom: 0 !important;
|
|
11
|
+
// }
|
|
7
12
|
}
|
|
13
|
+
|
|
14
|
+
@include nearFullWidthBlocks('.quick-search-block');
|
|
@@ -9,7 +9,7 @@ import PropTypes from 'prop-types';
|
|
|
9
9
|
|
|
10
10
|
import find from 'lodash/find';
|
|
11
11
|
import map from 'lodash/map';
|
|
12
|
-
import
|
|
12
|
+
import UniversalLink from '@plone/volto/components/manage/UniversalLink/UniversalLink';
|
|
13
13
|
import { useSelector } from 'react-redux';
|
|
14
14
|
import cx from 'classnames';
|
|
15
15
|
import {
|
|
@@ -19,7 +19,8 @@ import {
|
|
|
19
19
|
DropdownToggle,
|
|
20
20
|
LinkList,
|
|
21
21
|
LinkListItem,
|
|
22
|
-
|
|
22
|
+
UncontrolledDropdown,
|
|
23
|
+
Icon,
|
|
23
24
|
} from 'design-react-kit';
|
|
24
25
|
|
|
25
26
|
import langmap from '@plone/volto/helpers/LanguageMap/LanguageMap';
|
|
@@ -53,20 +54,30 @@ const LanguageSelector = (props) => {
|
|
|
53
54
|
);
|
|
54
55
|
|
|
55
56
|
return config.settings.isMultilingual ? (
|
|
56
|
-
<
|
|
57
|
-
|
|
57
|
+
<UncontrolledDropdown
|
|
58
|
+
nav
|
|
59
|
+
tag="div"
|
|
60
|
+
inNavbar
|
|
61
|
+
className="is-language-selector"
|
|
62
|
+
>
|
|
63
|
+
<DropdownToggle aria-haspopup caret inNavbar nav role="button">
|
|
58
64
|
{languagesISO392[currentLang]}
|
|
65
|
+
<Icon
|
|
66
|
+
icon="it-expand"
|
|
67
|
+
color="icon-white"
|
|
68
|
+
className="d-none d-lg-block"
|
|
69
|
+
/>
|
|
59
70
|
</DropdownToggle>
|
|
60
|
-
<DropdownMenu flip
|
|
61
|
-
<Row
|
|
62
|
-
<Col
|
|
63
|
-
<LinkList
|
|
71
|
+
<DropdownMenu flip>
|
|
72
|
+
<Row>
|
|
73
|
+
<Col size="12">
|
|
74
|
+
<LinkList>
|
|
64
75
|
{map(config.settings.supportedLanguages, (lang) => {
|
|
65
76
|
const translation = find(translations, { language: lang });
|
|
66
77
|
return (
|
|
67
78
|
<LinkListItem
|
|
68
79
|
className={cx({ selected: lang === currentLang })}
|
|
69
|
-
|
|
80
|
+
href={
|
|
70
81
|
translation
|
|
71
82
|
? flattenToAppURL(translation['@id'])
|
|
72
83
|
: `/${lang}`
|
|
@@ -76,7 +87,8 @@ const LanguageSelector = (props) => {
|
|
|
76
87
|
props.onClickAction();
|
|
77
88
|
}}
|
|
78
89
|
key={`language-selector-${lang}`}
|
|
79
|
-
tag={
|
|
90
|
+
tag={UniversalLink}
|
|
91
|
+
inDropdown
|
|
80
92
|
>
|
|
81
93
|
<span>{langmap[lang].nativeName}</span>
|
|
82
94
|
</LinkListItem>
|
|
@@ -86,7 +98,7 @@ const LanguageSelector = (props) => {
|
|
|
86
98
|
</Col>
|
|
87
99
|
</Row>
|
|
88
100
|
</DropdownMenu>
|
|
89
|
-
</
|
|
101
|
+
</UncontrolledDropdown>
|
|
90
102
|
) : (
|
|
91
103
|
<Helmet>
|
|
92
104
|
<html lang={config.settings.defaultLanguage} />
|
|
@@ -1,88 +1,724 @@
|
|
|
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
|
-
<ellipse
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
<ellipse
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
<ellipse
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
<ellipse
|
|
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
|
-
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="1440"
|
|
4
|
+
height="284"
|
|
5
|
+
viewBox="0 0 1440 284"
|
|
6
|
+
fill="none"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg78"
|
|
9
|
+
sodipodi:docname="default-bg-2.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs78" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview78"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
inkscape:zoom="0.44930556"
|
|
27
|
+
inkscape:cx="718.88717"
|
|
28
|
+
inkscape:cy="141.32921"
|
|
29
|
+
inkscape:window-width="1728"
|
|
30
|
+
inkscape:window-height="954"
|
|
31
|
+
inkscape:window-x="0"
|
|
32
|
+
inkscape:window-y="38"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg78" />
|
|
35
|
+
<g
|
|
36
|
+
opacity="0.15"
|
|
37
|
+
id="g64">
|
|
38
|
+
<ellipse
|
|
39
|
+
cx="6.99078"
|
|
40
|
+
cy="7.123"
|
|
41
|
+
rx="6.99078"
|
|
42
|
+
ry="7.123"
|
|
43
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 39.959 -7.7475)"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
id="ellipse1" />
|
|
46
|
+
<ellipse
|
|
47
|
+
cx="1.64875"
|
|
48
|
+
cy="40.4415"
|
|
49
|
+
rx="6.98668"
|
|
50
|
+
ry="7.11882"
|
|
51
|
+
transform="rotate(45 1.64875 40.4415)"
|
|
52
|
+
fill="currentColor"
|
|
53
|
+
id="ellipse2" />
|
|
54
|
+
<ellipse
|
|
55
|
+
cx="20.7562"
|
|
56
|
+
cy="21.336"
|
|
57
|
+
rx="6.98668"
|
|
58
|
+
ry="7.11882"
|
|
59
|
+
transform="rotate(45 20.7562 21.336)"
|
|
60
|
+
fill="currentColor"
|
|
61
|
+
id="ellipse3" />
|
|
62
|
+
<ellipse
|
|
63
|
+
cx="6.99076"
|
|
64
|
+
cy="7.12298"
|
|
65
|
+
rx="6.99076"
|
|
66
|
+
ry="7.12298"
|
|
67
|
+
transform="matrix(0.706691 0.706693 -0.706691 0.706693 191.402 -9.16547)"
|
|
68
|
+
fill="currentColor"
|
|
69
|
+
id="ellipse4" />
|
|
70
|
+
<ellipse
|
|
71
|
+
cx="6.99078"
|
|
72
|
+
cy="7.123"
|
|
73
|
+
rx="6.99078"
|
|
74
|
+
ry="7.123"
|
|
75
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 153.186 29.0493)"
|
|
76
|
+
fill="currentColor"
|
|
77
|
+
id="ellipse5" />
|
|
78
|
+
<ellipse
|
|
79
|
+
cx="114.877"
|
|
80
|
+
cy="77.2383"
|
|
81
|
+
rx="6.98668"
|
|
82
|
+
ry="7.11882"
|
|
83
|
+
transform="rotate(45 114.877 77.2383)"
|
|
84
|
+
fill="currentColor"
|
|
85
|
+
id="ellipse6" />
|
|
86
|
+
<ellipse
|
|
87
|
+
cx="76.6605"
|
|
88
|
+
cy="115.453"
|
|
89
|
+
rx="6.98668"
|
|
90
|
+
ry="7.11882"
|
|
91
|
+
transform="rotate(45 76.6605 115.453)"
|
|
92
|
+
fill="currentColor"
|
|
93
|
+
id="ellipse7" />
|
|
94
|
+
<ellipse
|
|
95
|
+
cx="38.4476"
|
|
96
|
+
cy="153.672"
|
|
97
|
+
rx="6.98668"
|
|
98
|
+
ry="7.11882"
|
|
99
|
+
transform="rotate(45 38.4476 153.672)"
|
|
100
|
+
fill="currentColor"
|
|
101
|
+
id="ellipse8" />
|
|
102
|
+
<ellipse
|
|
103
|
+
cx="6.99079"
|
|
104
|
+
cy="7.123"
|
|
105
|
+
rx="6.99079"
|
|
106
|
+
ry="7.123"
|
|
107
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 0.324219 181.913)"
|
|
108
|
+
fill="currentColor"
|
|
109
|
+
id="ellipse9" />
|
|
110
|
+
<ellipse
|
|
111
|
+
cx="172.2"
|
|
112
|
+
cy="19.9141"
|
|
113
|
+
rx="6.98668"
|
|
114
|
+
ry="7.11882"
|
|
115
|
+
transform="rotate(45 172.2 19.9141)"
|
|
116
|
+
fill="currentColor"
|
|
117
|
+
id="ellipse10" />
|
|
118
|
+
<ellipse
|
|
119
|
+
cx="133.985"
|
|
120
|
+
cy="58.1289"
|
|
121
|
+
rx="6.98668"
|
|
122
|
+
ry="7.11882"
|
|
123
|
+
transform="rotate(45 133.985 58.1289)"
|
|
124
|
+
fill="currentColor"
|
|
125
|
+
id="ellipse11" />
|
|
126
|
+
<ellipse
|
|
127
|
+
cx="6.99078"
|
|
128
|
+
cy="7.123"
|
|
129
|
+
rx="6.99078"
|
|
130
|
+
ry="7.123"
|
|
131
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 95.8613 86.3736)"
|
|
132
|
+
fill="currentColor"
|
|
133
|
+
id="ellipse12" />
|
|
134
|
+
<ellipse
|
|
135
|
+
cx="57.555"
|
|
136
|
+
cy="134.563"
|
|
137
|
+
rx="6.98668"
|
|
138
|
+
ry="7.11882"
|
|
139
|
+
transform="rotate(45 57.555 134.563)"
|
|
140
|
+
fill="currentColor"
|
|
141
|
+
id="ellipse13" />
|
|
142
|
+
<ellipse
|
|
143
|
+
cx="19.3382"
|
|
144
|
+
cy="172.781"
|
|
145
|
+
rx="6.98668"
|
|
146
|
+
ry="7.11882"
|
|
147
|
+
transform="rotate(45 19.3382 172.781)"
|
|
148
|
+
fill="currentColor"
|
|
149
|
+
id="ellipse14" />
|
|
150
|
+
<ellipse
|
|
151
|
+
cx="115.588"
|
|
152
|
+
cy="1.51569"
|
|
153
|
+
rx="6.98668"
|
|
154
|
+
ry="7.11882"
|
|
155
|
+
transform="rotate(45 115.588 1.51569)"
|
|
156
|
+
fill="currentColor"
|
|
157
|
+
id="ellipse15" />
|
|
158
|
+
<ellipse
|
|
159
|
+
cx="77.3714"
|
|
160
|
+
cy="39.7305"
|
|
161
|
+
rx="6.98668"
|
|
162
|
+
ry="7.11882"
|
|
163
|
+
transform="rotate(45 77.3714 39.7305)"
|
|
164
|
+
fill="currentColor"
|
|
165
|
+
id="ellipse16" />
|
|
166
|
+
<ellipse
|
|
167
|
+
cx="6.99078"
|
|
168
|
+
cy="7.123"
|
|
169
|
+
rx="6.99078"
|
|
170
|
+
ry="7.123"
|
|
171
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 39.25 67.9752)"
|
|
172
|
+
fill="currentColor"
|
|
173
|
+
id="ellipse17" />
|
|
174
|
+
<ellipse
|
|
175
|
+
cx="6.99079"
|
|
176
|
+
cy="7.12301"
|
|
177
|
+
rx="6.99079"
|
|
178
|
+
ry="7.12301"
|
|
179
|
+
transform="matrix(0.706693 0.706692 -0.706693 0.706692 1.0332 106.19)"
|
|
180
|
+
fill="currentColor"
|
|
181
|
+
id="ellipse18" />
|
|
182
|
+
<ellipse
|
|
183
|
+
cx="96.4788"
|
|
184
|
+
cy="20.625"
|
|
185
|
+
rx="6.98668"
|
|
186
|
+
ry="7.11882"
|
|
187
|
+
transform="rotate(45 96.4788 20.625)"
|
|
188
|
+
fill="currentColor"
|
|
189
|
+
id="ellipse19" />
|
|
190
|
+
<ellipse
|
|
191
|
+
cx="58.264"
|
|
192
|
+
cy="58.8399"
|
|
193
|
+
rx="6.98668"
|
|
194
|
+
ry="7.11882"
|
|
195
|
+
transform="rotate(45 58.264 58.8399)"
|
|
196
|
+
fill="currentColor"
|
|
197
|
+
id="ellipse20" />
|
|
198
|
+
<ellipse
|
|
199
|
+
cx="20.0472"
|
|
200
|
+
cy="97.0547"
|
|
201
|
+
rx="6.98668"
|
|
202
|
+
ry="7.11882"
|
|
203
|
+
transform="rotate(45 20.0472 97.0547)"
|
|
204
|
+
fill="currentColor"
|
|
205
|
+
id="ellipse21" />
|
|
206
|
+
<ellipse
|
|
207
|
+
cx="6.99076"
|
|
208
|
+
cy="7.12298"
|
|
209
|
+
rx="6.99076"
|
|
210
|
+
ry="7.12298"
|
|
211
|
+
transform="matrix(0.706691 0.706693 -0.706691 0.706693 267.123 -9.87637)"
|
|
212
|
+
fill="currentColor"
|
|
213
|
+
id="ellipse22" />
|
|
214
|
+
<ellipse
|
|
215
|
+
cx="6.99076"
|
|
216
|
+
cy="7.12298"
|
|
217
|
+
rx="6.99076"
|
|
218
|
+
ry="7.12298"
|
|
219
|
+
transform="matrix(0.706691 0.706693 -0.706691 0.706693 228.906 28.3385)"
|
|
220
|
+
fill="currentColor"
|
|
221
|
+
id="ellipse23" />
|
|
222
|
+
<ellipse
|
|
223
|
+
cx="190.6"
|
|
224
|
+
cy="76.5313"
|
|
225
|
+
rx="6.98668"
|
|
226
|
+
ry="7.11882"
|
|
227
|
+
transform="rotate(45 190.6 76.5313)"
|
|
228
|
+
fill="currentColor"
|
|
229
|
+
id="ellipse24" />
|
|
230
|
+
<ellipse
|
|
231
|
+
cx="152.383"
|
|
232
|
+
cy="114.746"
|
|
233
|
+
rx="6.98668"
|
|
234
|
+
ry="7.11882"
|
|
235
|
+
transform="rotate(45 152.383 114.746)"
|
|
236
|
+
fill="currentColor"
|
|
237
|
+
id="ellipse25" />
|
|
238
|
+
<ellipse
|
|
239
|
+
cx="6.99079"
|
|
240
|
+
cy="7.123"
|
|
241
|
+
rx="6.99079"
|
|
242
|
+
ry="7.123"
|
|
243
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 114.262 142.987)"
|
|
244
|
+
fill="currentColor"
|
|
245
|
+
id="ellipse26" />
|
|
246
|
+
<ellipse
|
|
247
|
+
cx="75.9515"
|
|
248
|
+
cy="191.18"
|
|
249
|
+
rx="6.98668"
|
|
250
|
+
ry="7.11882"
|
|
251
|
+
transform="rotate(45 75.9515 191.18)"
|
|
252
|
+
fill="currentColor"
|
|
253
|
+
id="ellipse27" />
|
|
254
|
+
<ellipse
|
|
255
|
+
cx="37.7386"
|
|
256
|
+
cy="229.395"
|
|
257
|
+
rx="6.98668"
|
|
258
|
+
ry="7.11882"
|
|
259
|
+
transform="rotate(45 37.7386 229.395)"
|
|
260
|
+
fill="currentColor"
|
|
261
|
+
id="ellipse28" />
|
|
262
|
+
<ellipse
|
|
263
|
+
cx="6.99076"
|
|
264
|
+
cy="7.12298"
|
|
265
|
+
rx="6.99076"
|
|
266
|
+
ry="7.12298"
|
|
267
|
+
transform="matrix(0.706691 0.706693 -0.706691 0.706693 248.014 9.23297)"
|
|
268
|
+
fill="currentColor"
|
|
269
|
+
id="ellipse29" />
|
|
270
|
+
<ellipse
|
|
271
|
+
cx="6.99076"
|
|
272
|
+
cy="7.12298"
|
|
273
|
+
rx="6.99076"
|
|
274
|
+
ry="7.12298"
|
|
275
|
+
transform="matrix(0.706691 0.706693 -0.706691 0.706693 209.801 47.4478)"
|
|
276
|
+
fill="currentColor"
|
|
277
|
+
id="ellipse30" />
|
|
278
|
+
<ellipse
|
|
279
|
+
cx="6.99078"
|
|
280
|
+
cy="7.123"
|
|
281
|
+
rx="6.99078"
|
|
282
|
+
ry="7.123"
|
|
283
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 171.584 85.6627)"
|
|
284
|
+
fill="currentColor"
|
|
285
|
+
id="ellipse31" />
|
|
286
|
+
<ellipse
|
|
287
|
+
cx="133.276"
|
|
288
|
+
cy="133.855"
|
|
289
|
+
rx="6.98668"
|
|
290
|
+
ry="7.11882"
|
|
291
|
+
transform="rotate(45 133.276 133.855)"
|
|
292
|
+
fill="currentColor"
|
|
293
|
+
id="ellipse32" />
|
|
294
|
+
<ellipse
|
|
295
|
+
cx="95.0589"
|
|
296
|
+
cy="172.066"
|
|
297
|
+
rx="6.98668"
|
|
298
|
+
ry="7.11882"
|
|
299
|
+
transform="rotate(45 95.0589 172.066)"
|
|
300
|
+
fill="currentColor"
|
|
301
|
+
id="ellipse33" />
|
|
302
|
+
<ellipse
|
|
303
|
+
cx="56.8441"
|
|
304
|
+
cy="210.285"
|
|
305
|
+
rx="6.98668"
|
|
306
|
+
ry="7.11882"
|
|
307
|
+
transform="rotate(45 56.8441 210.285)"
|
|
308
|
+
fill="currentColor"
|
|
309
|
+
id="ellipse34" />
|
|
310
|
+
<ellipse
|
|
311
|
+
cx="18.6292"
|
|
312
|
+
cy="248.5"
|
|
313
|
+
rx="6.98668"
|
|
314
|
+
ry="7.11882"
|
|
315
|
+
transform="rotate(45 18.6292 248.5)"
|
|
316
|
+
fill="currentColor"
|
|
317
|
+
id="ellipse35" />
|
|
318
|
+
<ellipse
|
|
319
|
+
cx="6.99079"
|
|
320
|
+
cy="7.123"
|
|
321
|
+
rx="6.99079"
|
|
322
|
+
ry="7.123"
|
|
323
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 -0.384766 257.635)"
|
|
324
|
+
fill="currentColor"
|
|
325
|
+
id="ellipse36" />
|
|
326
|
+
<ellipse
|
|
327
|
+
cx="58.6175"
|
|
328
|
+
cy="20.9805"
|
|
329
|
+
rx="6.98668"
|
|
330
|
+
ry="7.11882"
|
|
331
|
+
transform="rotate(45 58.6175 20.9805)"
|
|
332
|
+
fill="currentColor"
|
|
333
|
+
id="ellipse37" />
|
|
334
|
+
<ellipse
|
|
335
|
+
cx="6.99078"
|
|
336
|
+
cy="7.123"
|
|
337
|
+
rx="6.99078"
|
|
338
|
+
ry="7.123"
|
|
339
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 20.4941 49.2213)"
|
|
340
|
+
fill="currentColor"
|
|
341
|
+
id="ellipse38" />
|
|
342
|
+
<ellipse
|
|
343
|
+
cx="77.7249"
|
|
344
|
+
cy="1.87112"
|
|
345
|
+
rx="6.98668"
|
|
346
|
+
ry="7.11882"
|
|
347
|
+
transform="rotate(45 77.7249 1.87112)"
|
|
348
|
+
fill="currentColor"
|
|
349
|
+
id="ellipse39" />
|
|
350
|
+
<ellipse
|
|
351
|
+
cx="6.99078"
|
|
352
|
+
cy="7.123"
|
|
353
|
+
rx="6.99078"
|
|
354
|
+
ry="7.123"
|
|
355
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 39.6055 30.1158)"
|
|
356
|
+
fill="currentColor"
|
|
357
|
+
id="ellipse40" />
|
|
358
|
+
<ellipse
|
|
359
|
+
cx="6.99078"
|
|
360
|
+
cy="7.123"
|
|
361
|
+
rx="6.99078"
|
|
362
|
+
ry="7.123"
|
|
363
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 1.38867 68.3306)"
|
|
364
|
+
fill="currentColor"
|
|
365
|
+
id="ellipse41" />
|
|
366
|
+
<ellipse
|
|
367
|
+
cx="6.99076"
|
|
368
|
+
cy="7.12298"
|
|
369
|
+
rx="6.99076"
|
|
370
|
+
ry="7.12298"
|
|
371
|
+
transform="matrix(0.706691 0.706693 -0.706691 0.706693 210.154 9.58453)"
|
|
372
|
+
fill="currentColor"
|
|
373
|
+
id="ellipse42" />
|
|
374
|
+
<ellipse
|
|
375
|
+
cx="171.844"
|
|
376
|
+
cy="57.7774"
|
|
377
|
+
rx="6.98668"
|
|
378
|
+
ry="7.11882"
|
|
379
|
+
transform="rotate(45 171.844 57.7774)"
|
|
380
|
+
fill="currentColor"
|
|
381
|
+
id="ellipse43" />
|
|
382
|
+
<ellipse
|
|
383
|
+
cx="133.631"
|
|
384
|
+
cy="95.9922"
|
|
385
|
+
rx="6.98668"
|
|
386
|
+
ry="7.11882"
|
|
387
|
+
transform="rotate(45 133.631 95.9922)"
|
|
388
|
+
fill="currentColor"
|
|
389
|
+
id="ellipse44" />
|
|
390
|
+
<ellipse
|
|
391
|
+
cx="95.4144"
|
|
392
|
+
cy="134.207"
|
|
393
|
+
rx="6.98668"
|
|
394
|
+
ry="7.11882"
|
|
395
|
+
transform="rotate(45 95.4144 134.207)"
|
|
396
|
+
fill="currentColor"
|
|
397
|
+
id="ellipse45" />
|
|
398
|
+
<ellipse
|
|
399
|
+
cx="6.99079"
|
|
400
|
+
cy="7.123"
|
|
401
|
+
rx="6.99079"
|
|
402
|
+
ry="7.123"
|
|
403
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 57.293 162.448)"
|
|
404
|
+
fill="currentColor"
|
|
405
|
+
id="ellipse46" />
|
|
406
|
+
<ellipse
|
|
407
|
+
cx="18.9827"
|
|
408
|
+
cy="210.641"
|
|
409
|
+
rx="6.98668"
|
|
410
|
+
ry="7.11882"
|
|
411
|
+
transform="rotate(45 18.9827 210.641)"
|
|
412
|
+
fill="currentColor"
|
|
413
|
+
id="ellipse47" />
|
|
414
|
+
<ellipse
|
|
415
|
+
cx="6.99076"
|
|
416
|
+
cy="7.12298"
|
|
417
|
+
rx="6.99076"
|
|
418
|
+
ry="7.12298"
|
|
419
|
+
transform="matrix(0.706691 0.706693 -0.706691 0.706693 229.262 -9.52094)"
|
|
420
|
+
fill="currentColor"
|
|
421
|
+
id="ellipse48" />
|
|
422
|
+
<ellipse
|
|
423
|
+
cx="190.953"
|
|
424
|
+
cy="38.668"
|
|
425
|
+
rx="6.98668"
|
|
426
|
+
ry="7.11882"
|
|
427
|
+
transform="rotate(45 190.953 38.668)"
|
|
428
|
+
fill="currentColor"
|
|
429
|
+
id="ellipse49" />
|
|
430
|
+
<ellipse
|
|
431
|
+
cx="6.99079"
|
|
432
|
+
cy="7.123"
|
|
433
|
+
rx="6.99079"
|
|
434
|
+
ry="7.123"
|
|
435
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 152.83 66.9088)"
|
|
436
|
+
fill="currentColor"
|
|
437
|
+
id="ellipse50" />
|
|
438
|
+
<ellipse
|
|
439
|
+
cx="114.524"
|
|
440
|
+
cy="115.098"
|
|
441
|
+
rx="6.98668"
|
|
442
|
+
ry="7.11882"
|
|
443
|
+
transform="rotate(45 114.524 115.098)"
|
|
444
|
+
fill="currentColor"
|
|
445
|
+
id="ellipse51" />
|
|
446
|
+
<ellipse
|
|
447
|
+
cx="6.99078"
|
|
448
|
+
cy="7.123"
|
|
449
|
+
rx="6.99078"
|
|
450
|
+
ry="7.123"
|
|
451
|
+
transform="matrix(0.706692 0.706693 -0.706692 0.706693 76.4004 143.342)"
|
|
452
|
+
fill="currentColor"
|
|
453
|
+
id="ellipse52" />
|
|
454
|
+
<ellipse
|
|
455
|
+
cx="6.99079"
|
|
456
|
+
cy="7.123"
|
|
457
|
+
rx="6.99079"
|
|
458
|
+
ry="7.123"
|
|
459
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 38.1855 181.557)"
|
|
460
|
+
fill="currentColor"
|
|
461
|
+
id="ellipse53" />
|
|
462
|
+
<ellipse
|
|
463
|
+
cx="-0.124686"
|
|
464
|
+
cy="229.746"
|
|
465
|
+
rx="6.98668"
|
|
466
|
+
ry="7.11882"
|
|
467
|
+
transform="rotate(45 -0.124686 229.746)"
|
|
468
|
+
fill="currentColor"
|
|
469
|
+
id="ellipse54" />
|
|
470
|
+
<ellipse
|
|
471
|
+
cx="6.99079"
|
|
472
|
+
cy="7.123"
|
|
473
|
+
rx="6.99079"
|
|
474
|
+
ry="7.123"
|
|
475
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 134.434 10.2955)"
|
|
476
|
+
fill="currentColor"
|
|
477
|
+
id="ellipse55" />
|
|
478
|
+
<ellipse
|
|
479
|
+
cx="96.1234"
|
|
480
|
+
cy="58.4844"
|
|
481
|
+
rx="6.98668"
|
|
482
|
+
ry="7.11882"
|
|
483
|
+
transform="rotate(45 96.1234 58.4844)"
|
|
484
|
+
fill="currentColor"
|
|
485
|
+
id="ellipse56" />
|
|
486
|
+
<ellipse
|
|
487
|
+
cx="6.99079"
|
|
488
|
+
cy="7.123"
|
|
489
|
+
rx="6.99079"
|
|
490
|
+
ry="7.123"
|
|
491
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 58.002 86.7252)"
|
|
492
|
+
fill="currentColor"
|
|
493
|
+
id="ellipse57" />
|
|
494
|
+
<ellipse
|
|
495
|
+
cx="19.6917"
|
|
496
|
+
cy="134.918"
|
|
497
|
+
rx="6.98668"
|
|
498
|
+
ry="7.11882"
|
|
499
|
+
transform="rotate(45 19.6917 134.918)"
|
|
500
|
+
fill="currentColor"
|
|
501
|
+
id="ellipse58" />
|
|
502
|
+
<ellipse
|
|
503
|
+
cx="153.448"
|
|
504
|
+
cy="1.16412"
|
|
505
|
+
rx="6.98668"
|
|
506
|
+
ry="7.11882"
|
|
507
|
+
transform="rotate(45 153.448 1.16412)"
|
|
508
|
+
fill="currentColor"
|
|
509
|
+
id="ellipse59" />
|
|
510
|
+
<ellipse
|
|
511
|
+
cx="115.233"
|
|
512
|
+
cy="39.3789"
|
|
513
|
+
rx="6.98668"
|
|
514
|
+
ry="7.11882"
|
|
515
|
+
transform="rotate(45 115.233 39.3789)"
|
|
516
|
+
fill="currentColor"
|
|
517
|
+
id="ellipse60" />
|
|
518
|
+
<ellipse
|
|
519
|
+
cx="77.0159"
|
|
520
|
+
cy="77.5938"
|
|
521
|
+
rx="6.98668"
|
|
522
|
+
ry="7.11882"
|
|
523
|
+
transform="rotate(45 77.0159 77.5938)"
|
|
524
|
+
fill="currentColor"
|
|
525
|
+
id="ellipse61" />
|
|
526
|
+
<ellipse
|
|
527
|
+
cx="6.99079"
|
|
528
|
+
cy="7.123"
|
|
529
|
+
rx="6.99079"
|
|
530
|
+
ry="7.123"
|
|
531
|
+
transform="matrix(0.706693 0.706691 -0.706693 0.706691 38.8945 105.835)"
|
|
532
|
+
fill="currentColor"
|
|
533
|
+
id="ellipse62" />
|
|
534
|
+
<ellipse
|
|
535
|
+
cx="0.584298"
|
|
536
|
+
cy="154.027"
|
|
537
|
+
rx="6.98668"
|
|
538
|
+
ry="7.11882"
|
|
539
|
+
transform="rotate(45 0.584298 154.027)"
|
|
540
|
+
fill="currentColor"
|
|
541
|
+
id="ellipse63" />
|
|
542
|
+
<ellipse
|
|
543
|
+
cx="2.00422"
|
|
544
|
+
cy="2.58209"
|
|
545
|
+
rx="6.98668"
|
|
546
|
+
ry="7.11882"
|
|
547
|
+
transform="rotate(45 2.00422 2.58209)"
|
|
548
|
+
fill="currentColor"
|
|
549
|
+
id="ellipse64" />
|
|
550
|
+
<path
|
|
551
|
+
d="M1308.5 -34C1308.5 18.3392 1266.49 60.5 1215 60.5C1163.51 60.5 1121.5 18.3392 1121.5 -34C1121.5 -86.3392 1163.51 -128.5 1215 -128.5C1266.49 -128.5 1308.5 -86.3392 1308.5 -34Z"
|
|
552
|
+
stroke="currentColor"
|
|
553
|
+
stroke-width="35"
|
|
554
|
+
fill="none"
|
|
555
|
+
id="path64" />
|
|
556
|
+
</g>
|
|
557
|
+
<circle
|
|
558
|
+
cx="1243"
|
|
559
|
+
cy="8"
|
|
560
|
+
r="95.5"
|
|
561
|
+
stroke="currentColor"
|
|
562
|
+
stroke-width="3"
|
|
563
|
+
id="circle64"
|
|
564
|
+
fill="none" />
|
|
565
|
+
<g
|
|
566
|
+
opacity="0.15"
|
|
567
|
+
id="g78">
|
|
568
|
+
<line
|
|
569
|
+
x1="1.5"
|
|
570
|
+
y1="-1.5"
|
|
571
|
+
x2="49.0587"
|
|
572
|
+
y2="-1.5"
|
|
573
|
+
transform="matrix(0.641913 0.766778 -0.742101 0.670288 10 169)"
|
|
574
|
+
stroke="currentColor"
|
|
575
|
+
stroke-width="3"
|
|
576
|
+
stroke-linecap="round"
|
|
577
|
+
id="line64" />
|
|
578
|
+
<line
|
|
579
|
+
x1="1.5"
|
|
580
|
+
y1="-1.5"
|
|
581
|
+
x2="49.0587"
|
|
582
|
+
y2="-1.5"
|
|
583
|
+
transform="matrix(0.641913 0.766778 -0.742101 0.670288 67.3867 169)"
|
|
584
|
+
stroke="currentColor"
|
|
585
|
+
stroke-width="3"
|
|
586
|
+
stroke-linecap="round"
|
|
587
|
+
id="line65" />
|
|
588
|
+
<line
|
|
589
|
+
x1="1.5"
|
|
590
|
+
y1="-1.5"
|
|
591
|
+
x2="49.0587"
|
|
592
|
+
y2="-1.5"
|
|
593
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 124.773 169)"
|
|
594
|
+
stroke="currentColor"
|
|
595
|
+
stroke-width="3"
|
|
596
|
+
stroke-linecap="round"
|
|
597
|
+
id="line66" />
|
|
598
|
+
<line
|
|
599
|
+
x1="1.5"
|
|
600
|
+
y1="-1.5"
|
|
601
|
+
x2="49.0587"
|
|
602
|
+
y2="-1.5"
|
|
603
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 182.16 169)"
|
|
604
|
+
stroke="currentColor"
|
|
605
|
+
stroke-width="3"
|
|
606
|
+
stroke-linecap="round"
|
|
607
|
+
id="line67" />
|
|
608
|
+
<line
|
|
609
|
+
x1="1.5"
|
|
610
|
+
y1="-1.5"
|
|
611
|
+
x2="49.0587"
|
|
612
|
+
y2="-1.5"
|
|
613
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 239.545 169)"
|
|
614
|
+
stroke="currentColor"
|
|
615
|
+
stroke-width="3"
|
|
616
|
+
stroke-linecap="round"
|
|
617
|
+
id="line68" />
|
|
618
|
+
<line
|
|
619
|
+
x1="1.5"
|
|
620
|
+
y1="-1.5"
|
|
621
|
+
x2="49.0587"
|
|
622
|
+
y2="-1.5"
|
|
623
|
+
transform="matrix(0.641913 0.766778 -0.742101 0.670288 10 226.309)"
|
|
624
|
+
stroke="currentColor"
|
|
625
|
+
stroke-width="3"
|
|
626
|
+
stroke-linecap="round"
|
|
627
|
+
id="line69" />
|
|
628
|
+
<line
|
|
629
|
+
x1="1.5"
|
|
630
|
+
y1="-1.5"
|
|
631
|
+
x2="49.0587"
|
|
632
|
+
y2="-1.5"
|
|
633
|
+
transform="matrix(0.641913 0.766778 -0.742101 0.670288 67.3867 226.309)"
|
|
634
|
+
stroke="currentColor"
|
|
635
|
+
stroke-width="3"
|
|
636
|
+
stroke-linecap="round"
|
|
637
|
+
id="line70" />
|
|
638
|
+
<line
|
|
639
|
+
x1="1.5"
|
|
640
|
+
y1="-1.5"
|
|
641
|
+
x2="49.0587"
|
|
642
|
+
y2="-1.5"
|
|
643
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 124.773 226.309)"
|
|
644
|
+
stroke="currentColor"
|
|
645
|
+
stroke-width="3"
|
|
646
|
+
stroke-linecap="round"
|
|
647
|
+
id="line71" />
|
|
648
|
+
<line
|
|
649
|
+
x1="1.5"
|
|
650
|
+
y1="-1.5"
|
|
651
|
+
x2="49.0587"
|
|
652
|
+
y2="-1.5"
|
|
653
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 182.16 226.309)"
|
|
654
|
+
stroke="currentColor"
|
|
655
|
+
stroke-width="3"
|
|
656
|
+
stroke-linecap="round"
|
|
657
|
+
id="line72" />
|
|
658
|
+
<line
|
|
659
|
+
x1="1.5"
|
|
660
|
+
y1="-1.5"
|
|
661
|
+
x2="49.0587"
|
|
662
|
+
y2="-1.5"
|
|
663
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 239.545 226.309)"
|
|
664
|
+
stroke="currentColor"
|
|
665
|
+
stroke-width="3"
|
|
666
|
+
stroke-linecap="round"
|
|
667
|
+
id="line73" />
|
|
668
|
+
<line
|
|
669
|
+
x1="1.5"
|
|
670
|
+
y1="-1.5"
|
|
671
|
+
x2="49.0587"
|
|
672
|
+
y2="-1.5"
|
|
673
|
+
transform="matrix(0.641913 0.766778 -0.742101 0.670288 10 283.617)"
|
|
674
|
+
stroke="currentColor"
|
|
675
|
+
stroke-width="3"
|
|
676
|
+
stroke-linecap="round"
|
|
677
|
+
id="line74" />
|
|
678
|
+
<line
|
|
679
|
+
x1="1.5"
|
|
680
|
+
y1="-1.5"
|
|
681
|
+
x2="49.0587"
|
|
682
|
+
y2="-1.5"
|
|
683
|
+
transform="matrix(0.641913 0.766778 -0.742101 0.670288 67.3867 283.615)"
|
|
684
|
+
stroke="currentColor"
|
|
685
|
+
stroke-width="3"
|
|
686
|
+
stroke-linecap="round"
|
|
687
|
+
id="line75" />
|
|
688
|
+
<line
|
|
689
|
+
x1="1.5"
|
|
690
|
+
y1="-1.5"
|
|
691
|
+
x2="49.0587"
|
|
692
|
+
y2="-1.5"
|
|
693
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 124.773 283.615)"
|
|
694
|
+
stroke="currentColor"
|
|
695
|
+
stroke-width="3"
|
|
696
|
+
stroke-linecap="round"
|
|
697
|
+
id="line76" />
|
|
698
|
+
<line
|
|
699
|
+
x1="1.5"
|
|
700
|
+
y1="-1.5"
|
|
701
|
+
x2="49.0587"
|
|
702
|
+
y2="-1.5"
|
|
703
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 182.16 283.615)"
|
|
704
|
+
stroke="currentColor"
|
|
705
|
+
stroke-width="3"
|
|
706
|
+
stroke-linecap="round"
|
|
707
|
+
id="line77" />
|
|
708
|
+
<line
|
|
709
|
+
x1="1.5"
|
|
710
|
+
y1="-1.5"
|
|
711
|
+
x2="49.0587"
|
|
712
|
+
y2="-1.5"
|
|
713
|
+
transform="matrix(0.641913 0.766777 -0.742102 0.670287 239.545 283.615)"
|
|
714
|
+
stroke="currentColor"
|
|
715
|
+
stroke-width="3"
|
|
716
|
+
stroke-linecap="round"
|
|
717
|
+
id="line78" />
|
|
718
|
+
</g>
|
|
719
|
+
<path
|
|
720
|
+
opacity="0.15"
|
|
721
|
+
d="M1248.42 313.988C1240.03 313.988 1233.16 320.673 1233.16 328.844C1233.16 337.015 1240.03 343.7 1248.42 343.7C1256.82 343.7 1263.68 337.015 1263.68 328.844C1263.68 320.673 1256.82 313.988 1248.42 313.988ZM1248.42 373.412C1240.03 373.412 1233.16 380.097 1233.16 388.268C1233.16 396.439 1240.03 403.124 1248.42 403.124C1256.82 403.124 1263.68 396.439 1263.68 388.268C1263.68 380.097 1256.82 373.412 1248.42 373.412ZM1248.42 254.564C1240.03 254.564 1233.16 261.249 1233.16 269.42C1233.16 277.591 1240.03 284.276 1248.42 284.276C1256.82 284.276 1263.68 277.591 1263.68 269.42C1263.68 261.249 1256.82 254.564 1248.42 254.564ZM1202.63 261.992C1198.36 261.992 1195 265.26 1195 269.42C1195 273.58 1198.36 276.848 1202.63 276.848C1206.91 276.848 1210.26 273.58 1210.26 269.42C1210.26 265.26 1206.91 261.992 1202.63 261.992ZM1248.42 195.14C1240.03 195.14 1233.16 201.825 1233.16 209.996C1233.16 218.167 1240.03 224.852 1248.42 224.852C1256.82 224.852 1263.68 218.167 1263.68 209.996C1263.68 201.825 1256.82 195.14 1248.42 195.14ZM1477.37 276.848C1481.64 276.848 1485 273.58 1485 269.42C1485 265.26 1481.64 261.992 1477.37 261.992C1473.09 261.992 1469.74 265.26 1469.74 269.42C1469.74 273.58 1473.09 276.848 1477.37 276.848ZM1370.53 224.852C1378.92 224.852 1385.79 218.167 1385.79 209.996C1385.79 201.825 1378.92 195.14 1370.53 195.14C1362.13 195.14 1355.26 201.825 1355.26 209.996C1355.26 218.167 1362.13 224.852 1370.53 224.852ZM1370.53 172.856C1374.8 172.856 1378.16 169.588 1378.16 165.428C1378.16 161.268 1374.8 158 1370.53 158C1366.25 158 1362.89 161.268 1362.89 165.428C1362.89 169.588 1366.25 172.856 1370.53 172.856ZM1202.63 321.416C1198.36 321.416 1195 324.685 1195 328.844C1195 333.004 1198.36 336.272 1202.63 336.272C1206.91 336.272 1210.26 333.004 1210.26 328.844C1210.26 324.685 1206.91 321.416 1202.63 321.416ZM1309.47 425.408C1305.2 425.408 1301.84 428.677 1301.84 432.836C1301.84 436.996 1305.2 440.264 1309.47 440.264C1313.75 440.264 1317.11 436.996 1317.11 432.836C1317.11 428.677 1313.75 425.408 1309.47 425.408ZM1309.47 172.856C1313.75 172.856 1317.11 169.588 1317.11 165.428C1317.11 161.268 1313.75 158 1309.47 158C1305.2 158 1301.84 161.268 1301.84 165.428C1301.84 169.588 1305.2 172.856 1309.47 172.856ZM1309.47 224.852C1317.87 224.852 1324.74 218.167 1324.74 209.996C1324.74 201.825 1317.87 195.14 1309.47 195.14C1301.08 195.14 1294.21 201.825 1294.21 209.996C1294.21 218.167 1301.08 224.852 1309.47 224.852ZM1309.47 306.56C1296.81 306.56 1286.58 316.514 1286.58 328.844C1286.58 341.175 1296.81 351.128 1309.47 351.128C1322.14 351.128 1332.37 341.175 1332.37 328.844C1332.37 316.514 1322.14 306.56 1309.47 306.56ZM1431.58 313.988C1423.18 313.988 1416.32 320.673 1416.32 328.844C1416.32 337.015 1423.18 343.7 1431.58 343.7C1439.97 343.7 1446.84 337.015 1446.84 328.844C1446.84 320.673 1439.97 313.988 1431.58 313.988ZM1431.58 373.412C1423.18 373.412 1416.32 380.097 1416.32 388.268C1416.32 396.439 1423.18 403.124 1431.58 403.124C1439.97 403.124 1446.84 396.439 1446.84 388.268C1446.84 380.097 1439.97 373.412 1431.58 373.412ZM1431.58 254.564C1423.18 254.564 1416.32 261.249 1416.32 269.42C1416.32 277.591 1423.18 284.276 1431.58 284.276C1439.97 284.276 1446.84 277.591 1446.84 269.42C1446.84 261.249 1439.97 254.564 1431.58 254.564ZM1431.58 195.14C1423.18 195.14 1416.32 201.825 1416.32 209.996C1416.32 218.167 1423.18 224.852 1431.58 224.852C1439.97 224.852 1446.84 218.167 1446.84 209.996C1446.84 201.825 1439.97 195.14 1431.58 195.14ZM1477.37 321.416C1473.09 321.416 1469.74 324.685 1469.74 328.844C1469.74 333.004 1473.09 336.272 1477.37 336.272C1481.64 336.272 1485 333.004 1485 328.844C1485 324.685 1481.64 321.416 1477.37 321.416ZM1370.53 373.412C1362.13 373.412 1355.26 380.097 1355.26 388.268C1355.26 396.439 1362.13 403.124 1370.53 403.124C1378.92 403.124 1385.79 396.439 1385.79 388.268C1385.79 380.097 1378.92 373.412 1370.53 373.412ZM1370.53 425.408C1366.25 425.408 1362.89 428.677 1362.89 432.836C1362.89 436.996 1366.25 440.264 1370.53 440.264C1374.8 440.264 1378.16 436.996 1378.16 432.836C1378.16 428.677 1374.8 425.408 1370.53 425.408ZM1309.47 247.136C1296.81 247.136 1286.58 257.09 1286.58 269.42C1286.58 281.751 1296.81 291.704 1309.47 291.704C1322.14 291.704 1332.37 281.751 1332.37 269.42C1332.37 257.09 1322.14 247.136 1309.47 247.136ZM1309.47 373.412C1301.08 373.412 1294.21 380.097 1294.21 388.268C1294.21 396.439 1301.08 403.124 1309.47 403.124C1317.87 403.124 1324.74 396.439 1324.74 388.268C1324.74 380.097 1317.87 373.412 1309.47 373.412ZM1370.53 306.56C1357.86 306.56 1347.63 316.514 1347.63 328.844C1347.63 341.175 1357.86 351.128 1370.53 351.128C1383.19 351.128 1393.42 341.175 1393.42 328.844C1393.42 316.514 1383.19 306.56 1370.53 306.56ZM1370.53 247.136C1357.86 247.136 1347.63 257.09 1347.63 269.42C1347.63 281.751 1357.86 291.704 1370.53 291.704C1383.19 291.704 1393.42 281.751 1393.42 269.42C1393.42 257.09 1383.19 247.136 1370.53 247.136Z"
|
|
722
|
+
fill="currentColor"
|
|
723
|
+
id="path78" />
|
|
88
724
|
</svg>
|
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
.it-header-slim-wrapper {
|
|
2
2
|
font-weight: $font-weight-semibold;
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
|
|
4
|
+
.it-header-slim-wrapper-content {
|
|
5
|
+
a {
|
|
6
|
+
background-color: transparent;
|
|
7
|
+
}
|
|
8
|
+
.dropdown-menu {
|
|
9
|
+
top: 100% !important;
|
|
10
|
+
}
|
|
5
11
|
}
|
|
6
12
|
}
|
|
13
|
+
|
|
14
|
+
// @include media-breakpoint-up(lg) {
|
|
15
|
+
// .it-header-slim-wrapper {
|
|
16
|
+
// .it-header-slim-wrapper-content {
|
|
17
|
+
// .dropdown-menu {
|
|
18
|
+
// top: 100% !important;
|
|
19
|
+
// }
|
|
20
|
+
// }
|
|
21
|
+
// }
|
|
22
|
+
// }
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
@mixin nearFullWidthBlocks($class) {
|
|
10
10
|
.block.full-width[class*='bg-']:has(+ .block#{$class}),
|
|
11
11
|
.block#{$class}:has(+ .block.full-width[class*='bg-']),
|
|
12
|
+
.block#{$class}:has(+ .block.align.full),
|
|
12
13
|
.block#{$class}:has(+ .block.iosanita-block-search) {
|
|
13
|
-
margin-bottom: 0;
|
|
14
|
+
margin-bottom: 0 !important;
|
|
14
15
|
}
|
|
15
16
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
$tertiary-menu-border: 1px solid #fff;
|
|
2
|
+
|
|
1
3
|
.tertiary-menu {
|
|
2
4
|
li.nav-item {
|
|
3
5
|
display: flex;
|
|
4
6
|
align-items: center;
|
|
5
7
|
&:not(:last-of-type) {
|
|
6
|
-
border-right:
|
|
8
|
+
border-right: $tertiary-menu-border;
|
|
7
9
|
}
|
|
8
10
|
|
|
9
11
|
a {
|
|
@@ -18,4 +20,10 @@
|
|
|
18
20
|
}
|
|
19
21
|
}
|
|
20
22
|
}
|
|
23
|
+
|
|
24
|
+
&:has(+ .is-language-selector) {
|
|
25
|
+
li.nav-item:last-of-type {
|
|
26
|
+
border-right: $tertiary-menu-border;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
21
29
|
}
|