Version Description
- Updated auto open q3 removed.
- Fixed subscribe form button value.
- Updated pinterest model images.
- Fixed claim feed from Q8 popup.
Download this release
Release Info
Developer | socialsharepro |
Plugin | Social Share Icons & Social Share Buttons |
Version | 3.3.6 |
Comparing to | |
See all releases |
Code changes from version 3.3.5 to 3.3.6
- analyst/assets/css/customize.css +280 -280
- analyst/assets/index.php +2 -2
- analyst/assets/js/customize.js +29 -29
- analyst/autoload.php +40 -40
- analyst/index.php +2 -2
- analyst/main.php +36 -36
- analyst/sdk_resolver.php +79 -79
- analyst/src/Account/Account.php +584 -584
- analyst/src/Account/AccountData.php +176 -176
- analyst/src/Account/AccountDataFactory.php +125 -125
- analyst/src/Analyst.php +167 -167
- analyst/src/ApiRequestor.php +257 -257
- analyst/src/ApiResponse.php +44 -44
- analyst/src/Cache/DatabaseCache.php +127 -127
- analyst/src/Collector.php +217 -217
- analyst/src/Contracts/AnalystContract.php +12 -12
- analyst/src/Contracts/CacheContract.php +47 -47
- analyst/src/Contracts/HttpClientContract.php +25 -25
- analyst/src/Contracts/RequestContract.php +22 -22
- analyst/src/Contracts/RequestorContract.php +44 -44
- analyst/src/Contracts/TrackerContract.php +69 -69
- analyst/src/Core/AbstractFactory.php +27 -27
- analyst/src/Core/AbstractFactory.php~HEAD +27 -27
- analyst/src/Http/CurlHttpClient.php +102 -102
- analyst/src/Http/DummyHttpClient.php +33 -33
- analyst/src/Http/Requests/AbstractLoggerRequest.php +64 -64
- analyst/src/Http/Requests/ActivateRequest.php +42 -42
- analyst/src/Http/Requests/DeactivateRequest.php +64 -64
- analyst/src/Http/Requests/InstallRequest.php +38 -38
- analyst/src/Http/Requests/OptInRequest.php +42 -42
- analyst/src/Http/Requests/OptOutRequest.php +40 -40
- analyst/src/Http/Requests/UninstallRequest.php +36 -36
- analyst/src/Http/WordPressHttpClient.php +61 -61
- analyst/src/Mutator.php +103 -103
- analyst/src/Notices/Notice.php +121 -121
- analyst/src/Notices/NoticeFactory.php +130 -130
- analyst/src/helpers.php +84 -84
- analyst/templates/forms/deactivate.php +156 -156
- analyst/templates/forms/install.php +106 -113
- analyst/templates/notice.php +10 -10
- analyst/templates/optin.php +60 -60
- analyst/templates/optout.php +109 -109
- analyst/version.php +15 -15
- css/bootstrap.min.css +33 -33
- css/sfsi-admin-common-style.css +97 -97
- css/sfsi-admin-style.css +5022 -5019
- css/sfsi-style.css +4946 -4854
- dist/blocks.build.js +1 -1
- dist/blocks.editor.build.css +1 -1
- images/share_icons/Linkedin_Share/Chinese (traditional) - share.svg +13 -13
- images/share_icons/Linkedin_Share/ar_AR_share.svg +17 -17
- images/share_icons/Linkedin_Share/de_DE_share.svg +17 -17
- images/share_icons/Linkedin_Share/el_GR_share.svg +22 -22
- images/share_icons/Linkedin_Share/en_US_share.svg +16 -16
- images/share_icons/Linkedin_Share/es_ES_share.svg +20 -20
- images/share_icons/Linkedin_Share/fa_IR_share.svg +22 -22
- images/share_icons/Linkedin_Share/fr_FR_share.svg +19 -19
- images/share_icons/Linkedin_Share/he_IL_share.svg +14 -14
- images/share_icons/Linkedin_Share/hi_IN_share.svg +15 -15
- images/share_icons/Linkedin_Share/id_ID_share.svg +17 -17
- images/share_icons/Linkedin_Share/it_IT_share.svg +20 -20
- images/share_icons/Linkedin_Share/ja_JP_share.svg +14 -14
- images/share_icons/Linkedin_Share/ko_KR_share.svg +15 -15
- images/share_icons/Linkedin_Share/nl_NL_share.svg +16 -16
- images/share_icons/Linkedin_Share/pl_PL_share.svg +20 -20
- images/share_icons/Linkedin_Share/pt_BR_share.svg +23 -23
- images/share_icons/Linkedin_Share/pt_PT_share.svg +20 -20
- images/share_icons/Linkedin_Share/ru_RU_share.svg +21 -21
- images/share_icons/Linkedin_Share/sv_SE_share.svg +15 -15
- images/share_icons/Linkedin_Share/tr_TR_share.svg +19 -19
- images/share_icons/Linkedin_Share/uk_UA_share.svg +19 -19
- images/share_icons/Linkedin_Share/vi_VN_share.svg +17 -17
- images/share_icons/Linkedin_Share/zh_CN_share.svg +13 -13
- images/share_icons/Pinterest_Save/Chinese (traditional) - save.svg +21 -21
- images/share_icons/Pinterest_Save/ar_AR_save.svg +22 -22
- images/share_icons/Pinterest_Save/de_DE_save.svg +17 -25
analyst/assets/css/customize.css
CHANGED
@@ -1,280 +1,280 @@
|
|
1 |
-
.analyst-action-opt {
|
2 |
-
cursor: pointer;
|
3 |
-
}
|
4 |
-
|
5 |
-
.analyst-modal {
|
6 |
-
color: #000000;
|
7 |
-
display: none;
|
8 |
-
position: fixed;
|
9 |
-
z-index: 1000;
|
10 |
-
padding-top: 100px;
|
11 |
-
left: 0;
|
12 |
-
top: 0;
|
13 |
-
width: 100%;
|
14 |
-
height: 100%;
|
15 |
-
overflow: auto;
|
16 |
-
background-color: rgb(0,0,0);
|
17 |
-
background-color: rgba(0,0,0,0.4);
|
18 |
-
}
|
19 |
-
|
20 |
-
.analyst-modal-content {
|
21 |
-
font-family: Helvetica, serif;
|
22 |
-
position: relative;
|
23 |
-
background-color: #fefefe;
|
24 |
-
margin: auto;
|
25 |
-
padding: 35px 35px 20px;
|
26 |
-
border: 1px solid #F2F2F2;
|
27 |
-
width: 40%;
|
28 |
-
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
|
29 |
-
-webkit-animation-name: analyst-animatetop;
|
30 |
-
-webkit-animation-duration: 0.4s;
|
31 |
-
animation-name: analyst-animatetop;
|
32 |
-
animation-duration: 0.4s
|
33 |
-
}
|
34 |
-
|
35 |
-
.analyst-btn-success {
|
36 |
-
cursor: pointer;
|
37 |
-
color: #ffffff;
|
38 |
-
background-color: #00AF5E;
|
39 |
-
border: none;
|
40 |
-
width: 100%;
|
41 |
-
font-size: 18px;
|
42 |
-
padding: 8px;
|
43 |
-
font-weight: bold;
|
44 |
-
}
|
45 |
-
|
46 |
-
.analyst-btn-grey {
|
47 |
-
cursor: pointer;
|
48 |
-
color: #2D2D2D;
|
49 |
-
background-color: #D8D8D8;
|
50 |
-
border: none;
|
51 |
-
width: 100%;
|
52 |
-
font-size: 18px;
|
53 |
-
padding: 8px;
|
54 |
-
font-weight: bold;
|
55 |
-
}
|
56 |
-
|
57 |
-
.analyst-btn-secondary-ghost {
|
58 |
-
cursor: pointer;
|
59 |
-
background: transparent;
|
60 |
-
border: none;
|
61 |
-
color: #898686;
|
62 |
-
font-size: 18px;
|
63 |
-
}
|
64 |
-
|
65 |
-
.analyst-modal-def-top-padding {
|
66 |
-
padding-top: 20px;
|
67 |
-
}
|
68 |
-
|
69 |
-
.analyst-modal-header {
|
70 |
-
font-size: 20px;
|
71 |
-
font-weight: bold;
|
72 |
-
}
|
73 |
-
|
74 |
-
/*INSTALL STYLES*/
|
75 |
-
.analyst-install-footer {
|
76 |
-
padding-top: 10px;
|
77 |
-
text-align: center;
|
78 |
-
}
|
79 |
-
|
80 |
-
.analyst-install-image-block {
|
81 |
-
width: 140px;
|
82 |
-
}
|
83 |
-
|
84 |
-
.analyst-install-image-block img {
|
85 |
-
width: inherit;
|
86 |
-
}
|
87 |
-
|
88 |
-
.analyst-install-description-block {
|
89 |
-
padding-left: 40px;
|
90 |
-
padding-top: 5px
|
91 |
-
}
|
92 |
-
|
93 |
-
.analyst-install-description-text {
|
94 |
-
font-size: 16px;
|
95 |
-
color: #000000;
|
96 |
-
}
|
97 |
-
|
98 |
-
.analyst-install-permissions-list {
|
99 |
-
list-style: disc inside;
|
100 |
-
}
|
101 |
-
|
102 |
-
.analyst-install-permissions-list li {
|
103 |
-
padding-left: 15px;
|
104 |
-
margin-bottom: 2px;
|
105 |
-
}
|
106 |
-
|
107 |
-
.analyst-install-footer span {
|
108 |
-
color: #8a8787;
|
109 |
-
padding-right: 10px;
|
110 |
-
padding-left: 10px;
|
111 |
-
}
|
112 |
-
|
113 |
-
.analyst-install-footer span:not(:last-child) {
|
114 |
-
border-right: 1px solid #8a8787;
|
115 |
-
}
|
116 |
-
|
117 |
-
/*INSTALL STYLES*/
|
118 |
-
|
119 |
-
.reason-answer {
|
120 |
-
padding: 7px;
|
121 |
-
margin-left: 23px;
|
122 |
-
border: 1px solid #F2F2F2;
|
123 |
-
}
|
124 |
-
|
125 |
-
.analyst-link {
|
126 |
-
color: #00AF5E;
|
127 |
-
text-decoration: none;
|
128 |
-
}
|
129 |
-
|
130 |
-
.analyst-action-text {
|
131 |
-
cursor: pointer;
|
132 |
-
}
|
133 |
-
|
134 |
-
.analyst-action-text:hover {
|
135 |
-
color: #9d9a9a;
|
136 |
-
}
|
137 |
-
|
138 |
-
.analyst-disable-modal-mask {
|
139 |
-
width: 100%;
|
140 |
-
height: 100%;
|
141 |
-
opacity: 0.5;
|
142 |
-
position: absolute;
|
143 |
-
background: white;
|
144 |
-
top: 0;
|
145 |
-
left: 0;
|
146 |
-
}
|
147 |
-
|
148 |
-
.analyst-smile-image {
|
149 |
-
vertical-align: middle;
|
150 |
-
padding-bottom: 3px;
|
151 |
-
width: 24px;
|
152 |
-
}
|
153 |
-
|
154 |
-
#analyst-deactivation-reasons li {
|
155 |
-
padding-bottom: 3px;
|
156 |
-
font-size: 16px;
|
157 |
-
color: #000000;
|
158 |
-
}
|
159 |
-
|
160 |
-
@-webkit-keyframes analyst-animatetop {
|
161 |
-
from {top:-300px; opacity:0}
|
162 |
-
to {top:0; opacity:1}
|
163 |
-
}
|
164 |
-
|
165 |
-
@keyframes analyst-animatetop {
|
166 |
-
from {top:-300px; opacity:0}
|
167 |
-
to {top:0; opacity:1}
|
168 |
-
}
|
169 |
-
|
170 |
-
.analyst-modal-close {
|
171 |
-
color: #48036F;
|
172 |
-
font-size: 28px;
|
173 |
-
font-weight: bold;
|
174 |
-
top: 12px;
|
175 |
-
position: absolute;
|
176 |
-
right: 15px;
|
177 |
-
}
|
178 |
-
|
179 |
-
.analyst-modal-close:hover,
|
180 |
-
.analyst-modal-close:focus {
|
181 |
-
color: #000;
|
182 |
-
text-decoration: none;
|
183 |
-
cursor: pointer;
|
184 |
-
}
|
185 |
-
|
186 |
-
.analyst-modal-body {padding: 2px 16px;}
|
187 |
-
|
188 |
-
.analyst-modal-footer {
|
189 |
-
padding: 6px 16px;
|
190 |
-
background-color: #FFE773;
|
191 |
-
color: white;
|
192 |
-
}
|
193 |
-
|
194 |
-
#analyst-deactivate-modal .question-answer input, textarea {
|
195 |
-
margin-top: 5px;
|
196 |
-
width: 100%;
|
197 |
-
}
|
198 |
-
|
199 |
-
.analyst-btn-primary {
|
200 |
-
cursor: pointer;
|
201 |
-
border: none;
|
202 |
-
display:inline-block;
|
203 |
-
padding:0.7em 1.4em;
|
204 |
-
margin:0 0.3em 0.3em 0;
|
205 |
-
border-radius:0.15em;
|
206 |
-
box-sizing: border-box;
|
207 |
-
text-decoration:none;
|
208 |
-
font-family:'Roboto',sans-serif;
|
209 |
-
text-transform:uppercase;
|
210 |
-
font-weight:400;
|
211 |
-
color:#FFFFFF;
|
212 |
-
background-color:#9F3ED5;
|
213 |
-
box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
|
214 |
-
text-align:center;
|
215 |
-
position:relative;
|
216 |
-
}
|
217 |
-
|
218 |
-
.analyst-btn-primary:disabled {
|
219 |
-
background-color: #AD66D5;
|
220 |
-
cursor: not-allowed;
|
221 |
-
}
|
222 |
-
|
223 |
-
.analyst-btn-primary:active{
|
224 |
-
top:0.1em;
|
225 |
-
}
|
226 |
-
@media all and (max-width:30em){
|
227 |
-
.analyst-btn-primary {
|
228 |
-
display:block;
|
229 |
-
margin:0.4em auto;
|
230 |
-
}
|
231 |
-
}
|
232 |
-
|
233 |
-
.analyst-btn-secondary {
|
234 |
-
cursor: pointer;
|
235 |
-
border: none;
|
236 |
-
display:inline-block;
|
237 |
-
padding:0.7em 1.4em;
|
238 |
-
margin:0 0.3em 0.3em 0;
|
239 |
-
border-radius:0.15em;
|
240 |
-
box-sizing: border-box;
|
241 |
-
text-decoration:none;
|
242 |
-
font-family:'Roboto',sans-serif;
|
243 |
-
text-transform:uppercase;
|
244 |
-
font-weight:400;
|
245 |
-
color:#FFFFFF;
|
246 |
-
background-color:#6C8CD5;
|
247 |
-
box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
|
248 |
-
text-align:center;
|
249 |
-
position:relative;
|
250 |
-
}
|
251 |
-
|
252 |
-
.analyst-btn-secondary:disabled {
|
253 |
-
background-color: #6C8CD5;
|
254 |
-
cursor: not-allowed;
|
255 |
-
}
|
256 |
-
|
257 |
-
.analyst-btn-secondary:active{
|
258 |
-
top:0.1em;
|
259 |
-
}
|
260 |
-
@media all and (max-width:30em){
|
261 |
-
.analyst-btn-secondary {
|
262 |
-
display:block;
|
263 |
-
margin:0.4em auto;
|
264 |
-
}
|
265 |
-
}
|
266 |
-
|
267 |
-
.analyst-notice {
|
268 |
-
padding-right: 38px;
|
269 |
-
position: relative;
|
270 |
-
margin-bottom: 30px !important;
|
271 |
-
}
|
272 |
-
|
273 |
-
.analyst-notice .analyst-plugin-name {
|
274 |
-
background-color: #00000024;
|
275 |
-
padding-left: 7px;
|
276 |
-
padding-right: 7px;
|
277 |
-
position: absolute;
|
278 |
-
top: 100%;
|
279 |
-
border-radius: 0 0 5px 5px;
|
280 |
-
}
|
1 |
+
.analyst-action-opt {
|
2 |
+
cursor: pointer;
|
3 |
+
}
|
4 |
+
|
5 |
+
.analyst-modal {
|
6 |
+
color: #000000;
|
7 |
+
display: none;
|
8 |
+
position: fixed;
|
9 |
+
z-index: 1000;
|
10 |
+
padding-top: 100px;
|
11 |
+
left: 0;
|
12 |
+
top: 0;
|
13 |
+
width: 100%;
|
14 |
+
height: 100%;
|
15 |
+
overflow: auto;
|
16 |
+
background-color: rgb(0,0,0);
|
17 |
+
background-color: rgba(0,0,0,0.4);
|
18 |
+
}
|
19 |
+
|
20 |
+
.analyst-modal-content {
|
21 |
+
font-family: Helvetica, serif;
|
22 |
+
position: relative;
|
23 |
+
background-color: #fefefe;
|
24 |
+
margin: auto;
|
25 |
+
padding: 35px 35px 20px;
|
26 |
+
border: 1px solid #F2F2F2;
|
27 |
+
width: 40%;
|
28 |
+
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
|
29 |
+
-webkit-animation-name: analyst-animatetop;
|
30 |
+
-webkit-animation-duration: 0.4s;
|
31 |
+
animation-name: analyst-animatetop;
|
32 |
+
animation-duration: 0.4s
|
33 |
+
}
|
34 |
+
|
35 |
+
.analyst-btn-success {
|
36 |
+
cursor: pointer;
|
37 |
+
color: #ffffff;
|
38 |
+
background-color: #00AF5E;
|
39 |
+
border: none;
|
40 |
+
width: 100%;
|
41 |
+
font-size: 18px;
|
42 |
+
padding: 8px;
|
43 |
+
font-weight: bold;
|
44 |
+
}
|
45 |
+
|
46 |
+
.analyst-btn-grey {
|
47 |
+
cursor: pointer;
|
48 |
+
color: #2D2D2D;
|
49 |
+
background-color: #D8D8D8;
|
50 |
+
border: none;
|
51 |
+
width: 100%;
|
52 |
+
font-size: 18px;
|
53 |
+
padding: 8px;
|
54 |
+
font-weight: bold;
|
55 |
+
}
|
56 |
+
|
57 |
+
.analyst-btn-secondary-ghost {
|
58 |
+
cursor: pointer;
|
59 |
+
background: transparent;
|
60 |
+
border: none;
|
61 |
+
color: #898686;
|
62 |
+
font-size: 18px;
|
63 |
+
}
|
64 |
+
|
65 |
+
.analyst-modal-def-top-padding {
|
66 |
+
padding-top: 20px;
|
67 |
+
}
|
68 |
+
|
69 |
+
.analyst-modal-header {
|
70 |
+
font-size: 20px;
|
71 |
+
font-weight: bold;
|
72 |
+
}
|
73 |
+
|
74 |
+
/*INSTALL STYLES*/
|
75 |
+
.analyst-install-footer {
|
76 |
+
padding-top: 10px;
|
77 |
+
text-align: center;
|
78 |
+
}
|
79 |
+
|
80 |
+
.analyst-install-image-block {
|
81 |
+
width: 140px;
|
82 |
+
}
|
83 |
+
|
84 |
+
.analyst-install-image-block img {
|
85 |
+
width: inherit;
|
86 |
+
}
|
87 |
+
|
88 |
+
.analyst-install-description-block {
|
89 |
+
padding-left: 40px;
|
90 |
+
padding-top: 5px
|
91 |
+
}
|
92 |
+
|
93 |
+
.analyst-install-description-text {
|
94 |
+
font-size: 16px;
|
95 |
+
color: #000000;
|
96 |
+
}
|
97 |
+
|
98 |
+
.analyst-install-permissions-list {
|
99 |
+
list-style: disc inside;
|
100 |
+
}
|
101 |
+
|
102 |
+
.analyst-install-permissions-list li {
|
103 |
+
padding-left: 15px;
|
104 |
+
margin-bottom: 2px;
|
105 |
+
}
|
106 |
+
|
107 |
+
.analyst-install-footer span {
|
108 |
+
color: #8a8787;
|
109 |
+
padding-right: 10px;
|
110 |
+
padding-left: 10px;
|
111 |
+
}
|
112 |
+
|
113 |
+
.analyst-install-footer span:not(:last-child) {
|
114 |
+
border-right: 1px solid #8a8787;
|
115 |
+
}
|
116 |
+
|
117 |
+
/*INSTALL STYLES*/
|
118 |
+
|
119 |
+
.reason-answer {
|
120 |
+
padding: 7px;
|
121 |
+
margin-left: 23px;
|
122 |
+
border: 1px solid #F2F2F2;
|
123 |
+
}
|
124 |
+
|
125 |
+
.analyst-link {
|
126 |
+
color: #00AF5E;
|
127 |
+
text-decoration: none;
|
128 |
+
}
|
129 |
+
|
130 |
+
.analyst-action-text {
|
131 |
+
cursor: pointer;
|
132 |
+
}
|
133 |
+
|
134 |
+
.analyst-action-text:hover {
|
135 |
+
color: #9d9a9a;
|
136 |
+
}
|
137 |
+
|
138 |
+
.analyst-disable-modal-mask {
|
139 |
+
width: 100%;
|
140 |
+
height: 100%;
|
141 |
+
opacity: 0.5;
|
142 |
+
position: absolute;
|
143 |
+
background: white;
|
144 |
+
top: 0;
|
145 |
+
left: 0;
|
146 |
+
}
|
147 |
+
|
148 |
+
.analyst-smile-image {
|
149 |
+
vertical-align: middle;
|
150 |
+
padding-bottom: 3px;
|
151 |
+
width: 24px;
|
152 |
+
}
|
153 |
+
|
154 |
+
#analyst-deactivation-reasons li {
|
155 |
+
padding-bottom: 3px;
|
156 |
+
font-size: 16px;
|
157 |
+
color: #000000;
|
158 |
+
}
|
159 |
+
|
160 |
+
@-webkit-keyframes analyst-animatetop {
|
161 |
+
from {top:-300px; opacity:0}
|
162 |
+
to {top:0; opacity:1}
|
163 |
+
}
|
164 |
+
|
165 |
+
@keyframes analyst-animatetop {
|
166 |
+
from {top:-300px; opacity:0}
|
167 |
+
to {top:0; opacity:1}
|
168 |
+
}
|
169 |
+
|
170 |
+
.analyst-modal-close {
|
171 |
+
color: #48036F;
|
172 |
+
font-size: 28px;
|
173 |
+
font-weight: bold;
|
174 |
+
top: 12px;
|
175 |
+
position: absolute;
|
176 |
+
right: 15px;
|
177 |
+
}
|
178 |
+
|
179 |
+
.analyst-modal-close:hover,
|
180 |
+
.analyst-modal-close:focus {
|
181 |
+
color: #000;
|
182 |
+
text-decoration: none;
|
183 |
+
cursor: pointer;
|
184 |
+
}
|
185 |
+
|
186 |
+
.analyst-modal-body {padding: 2px 16px;}
|
187 |
+
|
188 |
+
.analyst-modal-footer {
|
189 |
+
padding: 6px 16px;
|
190 |
+
background-color: #FFE773;
|
191 |
+
color: white;
|
192 |
+
}
|
193 |
+
|
194 |
+
#analyst-deactivate-modal .question-answer input, textarea {
|
195 |
+
margin-top: 5px;
|
196 |
+
width: 100%;
|
197 |
+
}
|
198 |
+
|
199 |
+
.analyst-btn-primary {
|
200 |
+
cursor: pointer;
|
201 |
+
border: none;
|
202 |
+
display:inline-block;
|
203 |
+
padding:0.7em 1.4em;
|
204 |
+
margin:0 0.3em 0.3em 0;
|
205 |
+
border-radius:0.15em;
|
206 |
+
box-sizing: border-box;
|
207 |
+
text-decoration:none;
|
208 |
+
font-family:'Roboto',sans-serif;
|
209 |
+
text-transform:uppercase;
|
210 |
+
font-weight:400;
|
211 |
+
color:#FFFFFF;
|
212 |
+
background-color:#9F3ED5;
|
213 |
+
box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
|
214 |
+
text-align:center;
|
215 |
+
position:relative;
|
216 |
+
}
|
217 |
+
|
218 |
+
.analyst-btn-primary:disabled {
|
219 |
+
background-color: #AD66D5;
|
220 |
+
cursor: not-allowed;
|
221 |
+
}
|
222 |
+
|
223 |
+
.analyst-btn-primary:active{
|
224 |
+
top:0.1em;
|
225 |
+
}
|
226 |
+
@media all and (max-width:30em){
|
227 |
+
.analyst-btn-primary {
|
228 |
+
display:block;
|
229 |
+
margin:0.4em auto;
|
230 |
+
}
|
231 |
+
}
|
232 |
+
|
233 |
+
.analyst-btn-secondary {
|
234 |
+
cursor: pointer;
|
235 |
+
border: none;
|
236 |
+
display:inline-block;
|
237 |
+
padding:0.7em 1.4em;
|
238 |
+
margin:0 0.3em 0.3em 0;
|
239 |
+
border-radius:0.15em;
|
240 |
+
box-sizing: border-box;
|
241 |
+
text-decoration:none;
|
242 |
+
font-family:'Roboto',sans-serif;
|
243 |
+
text-transform:uppercase;
|
244 |
+
font-weight:400;
|
245 |
+
color:#FFFFFF;
|
246 |
+
background-color:#6C8CD5;
|
247 |
+
box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
|
248 |
+
text-align:center;
|
249 |
+
position:relative;
|
250 |
+
}
|
251 |
+
|
252 |
+
.analyst-btn-secondary:disabled {
|
253 |
+
background-color: #6C8CD5;
|
254 |
+
cursor: not-allowed;
|
255 |
+
}
|
256 |
+
|
257 |
+
.analyst-btn-secondary:active{
|
258 |
+
top:0.1em;
|
259 |
+
}
|
260 |
+
@media all and (max-width:30em){
|
261 |
+
.analyst-btn-secondary {
|
262 |
+
display:block;
|
263 |
+
margin:0.4em auto;
|
264 |
+
}
|
265 |
+
}
|
266 |
+
|
267 |
+
.analyst-notice {
|
268 |
+
padding-right: 38px;
|
269 |
+
position: relative;
|
270 |
+
margin-bottom: 30px !important;
|
271 |
+
}
|
272 |
+
|
273 |
+
.analyst-notice .analyst-plugin-name {
|
274 |
+
background-color: #00000024;
|
275 |
+
padding-left: 7px;
|
276 |
+
padding-right: 7px;
|
277 |
+
position: absolute;
|
278 |
+
top: 100%;
|
279 |
+
border-radius: 0 0 5px 5px;
|
280 |
+
}
|
analyst/assets/index.php
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
<?php
|
2 |
-
// Silence is golden.
|
1 |
+
<?php
|
2 |
+
// Silence is golden.
|
analyst/assets/js/customize.js
CHANGED
@@ -1,29 +1,29 @@
|
|
1 |
-
(function ($) {
|
2 |
-
$(document).on('click', '.analyst-notice-dismiss', function () {
|
3 |
-
var id = $(this).attr('analyst-notice-id');
|
4 |
-
var self = this;
|
5 |
-
|
6 |
-
$.post(ajaxurl, {action: 'analyst_notification_dismiss', id: id})
|
7 |
-
.done(function () {
|
8 |
-
$(self).parent().fadeOut()
|
9 |
-
})
|
10 |
-
})
|
11 |
-
|
12 |
-
var url = new URL(window.location.href)
|
13 |
-
|
14 |
-
if (url.searchParams.has('verify')) {
|
15 |
-
var pluginId = url.searchParams.get('plugin_id')
|
16 |
-
|
17 |
-
$.ajax({
|
18 |
-
url: ajaxurl,
|
19 |
-
method: 'POST',
|
20 |
-
data: {
|
21 |
-
action: 'analyst_install_verified_' + pluginId,
|
22 |
-
},
|
23 |
-
success: function () {
|
24 |
-
// Refresh page without query params
|
25 |
-
window.location.href = window.location.origin + window.location.pathname
|
26 |
-
}
|
27 |
-
})
|
28 |
-
}
|
29 |
-
})(jQuery)
|
1 |
+
(function ($) {
|
2 |
+
$(document).on('click', '.analyst-notice-dismiss', function () {
|
3 |
+
var id = $(this).attr('analyst-notice-id');
|
4 |
+
var self = this;
|
5 |
+
|
6 |
+
$.post(ajaxurl, {action: 'analyst_notification_dismiss', id: id})
|
7 |
+
.done(function () {
|
8 |
+
$(self).parent().fadeOut()
|
9 |
+
})
|
10 |
+
})
|
11 |
+
|
12 |
+
var url = new URL(window.location.href)
|
13 |
+
|
14 |
+
if (url.searchParams.has('verify')) {
|
15 |
+
var pluginId = url.searchParams.get('plugin_id')
|
16 |
+
|
17 |
+
$.ajax({
|
18 |
+
url: ajaxurl,
|
19 |
+
method: 'POST',
|
20 |
+
data: {
|
21 |
+
action: 'analyst_install_verified_' + pluginId,
|
22 |
+
},
|
23 |
+
success: function () {
|
24 |
+
// Refresh page without query params
|
25 |
+
window.location.href = window.location.origin + window.location.pathname
|
26 |
+
}
|
27 |
+
})
|
28 |
+
}
|
29 |
+
})(jQuery)
|
analyst/autoload.php
CHANGED
@@ -1,40 +1,40 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
require_once __DIR__ . '/src/helpers.php';
|
4 |
-
|
5 |
-
require_once __DIR__ . '/src/Contracts/HttpClientContract.php';
|
6 |
-
require_once __DIR__ . '/src/Contracts/RequestContract.php';
|
7 |
-
require_once __DIR__ . '/src/Contracts/RequestorContract.php';
|
8 |
-
require_once __DIR__ . '/src/Contracts/TrackerContract.php';
|
9 |
-
require_once __DIR__ . '/src/Contracts/CacheContract.php';
|
10 |
-
|
11 |
-
require_once __DIR__ . '/src/Core/AbstractFactory.php';
|
12 |
-
|
13 |
-
require_once __DIR__ . '/src/Cache/DatabaseCache.php';
|
14 |
-
|
15 |
-
require_once __DIR__ . '/src/Account/Account.php';
|
16 |
-
require_once __DIR__ . '/src/Account/AccountData.php';
|
17 |
-
require_once __DIR__ . '/src/Account/AccountDataFactory.php';
|
18 |
-
require_once __DIR__ . '/src/Contracts/AnalystContract.php';
|
19 |
-
|
20 |
-
require_once __DIR__ . '/src/Http/Requests/AbstractLoggerRequest.php';
|
21 |
-
require_once __DIR__ . '/src/Http/Requests/ActivateRequest.php';
|
22 |
-
require_once __DIR__ . '/src/Http/Requests/DeactivateRequest.php';
|
23 |
-
require_once __DIR__ . '/src/Http/Requests/InstallRequest.php';
|
24 |
-
require_once __DIR__ . '/src/Http/Requests/OptInRequest.php';
|
25 |
-
require_once __DIR__ . '/src/Http/Requests/OptOutRequest.php';
|
26 |
-
require_once __DIR__ . '/src/Http/Requests/UninstallRequest.php';
|
27 |
-
|
28 |
-
require_once __DIR__ . '/src/Http/CurlHttpClient.php';
|
29 |
-
require_once __DIR__ . '/src/Http/DummyHttpClient.php';
|
30 |
-
require_once __DIR__ . '/src/Http/WordPressHttpClient.php';
|
31 |
-
|
32 |
-
require_once __DIR__ . '/src/Notices/Notice.php';
|
33 |
-
require_once __DIR__ . '/src/Notices/NoticeFactory.php';
|
34 |
-
|
35 |
-
require_once __DIR__ . '/src/Analyst.php';
|
36 |
-
require_once __DIR__ . '/src/ApiRequestor.php';
|
37 |
-
require_once __DIR__ . '/src/ApiResponse.php';
|
38 |
-
require_once __DIR__ . '/src/Collector.php';
|
39 |
-
require_once __DIR__ . '/src/Mutator.php';
|
40 |
-
|
1 |
+
<?php
|
2 |
+
|
3 |
+
require_once __DIR__ . '/src/helpers.php';
|
4 |
+
|
5 |
+
require_once __DIR__ . '/src/Contracts/HttpClientContract.php';
|
6 |
+
require_once __DIR__ . '/src/Contracts/RequestContract.php';
|
7 |
+
require_once __DIR__ . '/src/Contracts/RequestorContract.php';
|
8 |
+
require_once __DIR__ . '/src/Contracts/TrackerContract.php';
|
9 |
+
require_once __DIR__ . '/src/Contracts/CacheContract.php';
|
10 |
+
|
11 |
+
require_once __DIR__ . '/src/Core/AbstractFactory.php';
|
12 |
+
|
13 |
+
require_once __DIR__ . '/src/Cache/DatabaseCache.php';
|
14 |
+
|
15 |
+
require_once __DIR__ . '/src/Account/Account.php';
|
16 |
+
require_once __DIR__ . '/src/Account/AccountData.php';
|
17 |
+
require_once __DIR__ . '/src/Account/AccountDataFactory.php';
|
18 |
+
require_once __DIR__ . '/src/Contracts/AnalystContract.php';
|
19 |
+
|
20 |
+
require_once __DIR__ . '/src/Http/Requests/AbstractLoggerRequest.php';
|
21 |
+
require_once __DIR__ . '/src/Http/Requests/ActivateRequest.php';
|
22 |
+
require_once __DIR__ . '/src/Http/Requests/DeactivateRequest.php';
|
23 |
+
require_once __DIR__ . '/src/Http/Requests/InstallRequest.php';
|
24 |
+
require_once __DIR__ . '/src/Http/Requests/OptInRequest.php';
|
25 |
+
require_once __DIR__ . '/src/Http/Requests/OptOutRequest.php';
|
26 |
+
require_once __DIR__ . '/src/Http/Requests/UninstallRequest.php';
|
27 |
+
|
28 |
+
require_once __DIR__ . '/src/Http/CurlHttpClient.php';
|
29 |
+
require_once __DIR__ . '/src/Http/DummyHttpClient.php';
|
30 |
+
require_once __DIR__ . '/src/Http/WordPressHttpClient.php';
|
31 |
+
|
32 |
+
require_once __DIR__ . '/src/Notices/Notice.php';
|
33 |
+
require_once __DIR__ . '/src/Notices/NoticeFactory.php';
|
34 |
+
|
35 |
+
require_once __DIR__ . '/src/Analyst.php';
|
36 |
+
require_once __DIR__ . '/src/ApiRequestor.php';
|
37 |
+
require_once __DIR__ . '/src/ApiResponse.php';
|
38 |
+
require_once __DIR__ . '/src/Collector.php';
|
39 |
+
require_once __DIR__ . '/src/Mutator.php';
|
40 |
+
|
analyst/index.php
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
<?php
|
2 |
-
// Silence
|
1 |
+
<?php
|
2 |
+
// Silence
|
analyst/main.php
CHANGED
@@ -1,36 +1,36 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
require_once 'sdk_resolver.php';
|
4 |
-
|
5 |
-
|
6 |
-
if (!function_exists('analyst_init')) {
|
7 |
-
/**
|
8 |
-
* Initialize analyst
|
9 |
-
*
|
10 |
-
* @param array $options
|
11 |
-
*/
|
12 |
-
function analyst_init ($options) {
|
13 |
-
// Try resolve latest supported SDK
|
14 |
-
// In case resolving is failed exit the execution
|
15 |
-
try {
|
16 |
-
analyst_resolve_sdk($options['base-dir']);
|
17 |
-
} catch (Exception $exception) {
|
18 |
-
error_log('[ANALYST] Cannot resolve any supported SDK');
|
19 |
-
return;
|
20 |
-
}
|
21 |
-
|
22 |
-
try {
|
23 |
-
global /** @var Analyst\Analyst $analyst */
|
24 |
-
$analyst;
|
25 |
-
|
26 |
-
// Set global instance of analyst
|
27 |
-
if (!$analyst) {
|
28 |
-
$analyst = Analyst\Analyst::getInstance();
|
29 |
-
}
|
30 |
-
|
31 |
-
$analyst->registerAccount(new Account\Account($options['client-id'], $options['client-secret'], $options['base-dir']));
|
32 |
-
} catch (Exception $e) {
|
33 |
-
error_log('Analyst SDK receive an error: [' . $e->getMessage() . '] Please contact our support at support@analyst.com');
|
34 |
-
}
|
35 |
-
}
|
36 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
require_once 'sdk_resolver.php';
|
4 |
+
|
5 |
+
|
6 |
+
if (!function_exists('analyst_init')) {
|
7 |
+
/**
|
8 |
+
* Initialize analyst
|
9 |
+
*
|
10 |
+
* @param array $options
|
11 |
+
*/
|
12 |
+
function analyst_init ($options) {
|
13 |
+
// Try resolve latest supported SDK
|
14 |
+
// In case resolving is failed exit the execution
|
15 |
+
try {
|
16 |
+
analyst_resolve_sdk($options['base-dir']);
|
17 |
+
} catch (Exception $exception) {
|
18 |
+
error_log('[ANALYST] Cannot resolve any supported SDK');
|
19 |
+
return;
|
20 |
+
}
|
21 |
+
|
22 |
+
try {
|
23 |
+
global /** @var Analyst\Analyst $analyst */
|
24 |
+
$analyst;
|
25 |
+
|
26 |
+
// Set global instance of analyst
|
27 |
+
if (!$analyst) {
|
28 |
+
$analyst = Analyst\Analyst::getInstance();
|
29 |
+
}
|
30 |
+
|
31 |
+
$analyst->registerAccount(new Account\Account($options['client-id'], $options['client-secret'], $options['base-dir']));
|
32 |
+
} catch (Exception $e) {
|
33 |
+
error_log('Analyst SDK receive an error: [' . $e->getMessage() . '] Please contact our support at support@analyst.com');
|
34 |
+
}
|
35 |
+
}
|
36 |
+
}
|
analyst/sdk_resolver.php
CHANGED
@@ -1,79 +1,79 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
if (!function_exists('analyst_resolve_sdk')) {
|
4 |
-
|
5 |
-
/**
|
6 |
-
* Resolve supported sdk versions and load latest supported one
|
7 |
-
* also bootstrap sdk with autoloader
|
8 |
-
*
|
9 |
-
* @since 1.1.3
|
10 |
-
*
|
11 |
-
* @param null $thisPluginPath
|
12 |
-
* @return void
|
13 |
-
* @throws Exception
|
14 |
-
*/
|
15 |
-
function analyst_resolve_sdk($thisPluginPath = null) {
|
16 |
-
static $loaded = false;
|
17 |
-
|
18 |
-
// Exit if we already resolved SDK
|
19 |
-
if ($loaded) return;
|
20 |
-
|
21 |
-
$plugins = get_option('active_plugins');
|
22 |
-
|
23 |
-
if ($thisPluginPath) {
|
24 |
-
array_push($plugins, plugin_basename($thisPluginPath));
|
25 |
-
}
|
26 |
-
|
27 |
-
$pluginsFolder = WP_PLUGIN_DIR;
|
28 |
-
|
29 |
-
$possibleSDKs = array_map(function ($path) use ($pluginsFolder) {
|
30 |
-
$sdkFolder = sprintf('%s/%s/analyst/', $pluginsFolder, dirname($path));
|
31 |
-
|
32 |
-
$sdkFolder = str_replace('\\', '/', $sdkFolder);
|
33 |
-
|
34 |
-
$versionPath = $sdkFolder . 'version.php';
|
35 |
-
|
36 |
-
if (file_exists($versionPath)) {
|
37 |
-
return require $versionPath;
|
38 |
-
}
|
39 |
-
|
40 |
-
return false;
|
41 |
-
}, $plugins);
|
42 |
-
|
43 |
-
global $wp_version;
|
44 |
-
|
45 |
-
// Filter out plugins which has no SDK
|
46 |
-
$SDKs = array_filter($possibleSDKs, function ($s) {return is_array($s);});
|
47 |
-
|
48 |
-
// Filter SDKs which is supported by PHP and WP
|
49 |
-
$supported = array_values(array_filter($SDKs, function ($sdk) use($wp_version) {
|
50 |
-
$phpSupported = version_compare(PHP_VERSION, $sdk['php']) >= 0;
|
51 |
-
$wpSupported = version_compare($wp_version, $sdk['wp']) >= 0;
|
52 |
-
|
53 |
-
return $phpSupported && $wpSupported;
|
54 |
-
}));
|
55 |
-
|
56 |
-
// Sort SDK by version in descending order
|
57 |
-
uasort($supported, function ($x, $y) {
|
58 |
-
return version_compare($y['sdk'], $x['sdk']);
|
59 |
-
});
|
60 |
-
|
61 |
-
// Reset sorted values keys
|
62 |
-
$supported = array_values($supported);
|
63 |
-
|
64 |
-
if (!isset($supported[0])) {
|
65 |
-
throw new Exception('There is no SDK which is support current PHP version and WP version');
|
66 |
-
}
|
67 |
-
|
68 |
-
// Autoload files for supported SDK
|
69 |
-
$autoloaderPath = str_replace(
|
70 |
-
'\\',
|
71 |
-
'/',
|
72 |
-
sprintf('%s/autoload.php', $supported[0]['path'])
|
73 |
-
);
|
74 |
-
|
75 |
-
require_once $autoloaderPath;
|
76 |
-
|
77 |
-
$loaded = true;
|
78 |
-
}
|
79 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if (!function_exists('analyst_resolve_sdk')) {
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Resolve supported sdk versions and load latest supported one
|
7 |
+
* also bootstrap sdk with autoloader
|
8 |
+
*
|
9 |
+
* @since 1.1.3
|
10 |
+
*
|
11 |
+
* @param null $thisPluginPath
|
12 |
+
* @return void
|
13 |
+
* @throws Exception
|
14 |
+
*/
|
15 |
+
function analyst_resolve_sdk($thisPluginPath = null) {
|
16 |
+
static $loaded = false;
|
17 |
+
|
18 |
+
// Exit if we already resolved SDK
|
19 |
+
if ($loaded) return;
|
20 |
+
|
21 |
+
$plugins = get_option('active_plugins');
|
22 |
+
|
23 |
+
if ($thisPluginPath) {
|
24 |
+
array_push($plugins, plugin_basename($thisPluginPath));
|
25 |
+
}
|
26 |
+
|
27 |
+
$pluginsFolder = WP_PLUGIN_DIR;
|
28 |
+
|
29 |
+
$possibleSDKs = array_map(function ($path) use ($pluginsFolder) {
|
30 |
+
$sdkFolder = sprintf('%s/%s/analyst/', $pluginsFolder, dirname($path));
|
31 |
+
|
32 |
+
$sdkFolder = str_replace('\\', '/', $sdkFolder);
|
33 |
+
|
34 |
+
$versionPath = $sdkFolder . 'version.php';
|
35 |
+
|
36 |
+
if (file_exists($versionPath)) {
|
37 |
+
return require $versionPath;
|
38 |
+
}
|
39 |
+
|
40 |
+
return false;
|
41 |
+
}, $plugins);
|
42 |
+
|
43 |
+
global $wp_version;
|
44 |
+
|
45 |
+
// Filter out plugins which has no SDK
|
46 |
+
$SDKs = array_filter($possibleSDKs, function ($s) {return is_array($s);});
|
47 |
+
|
48 |
+
// Filter SDKs which is supported by PHP and WP
|
49 |
+
$supported = array_values(array_filter($SDKs, function ($sdk) use($wp_version) {
|
50 |
+
$phpSupported = version_compare(PHP_VERSION, $sdk['php']) >= 0;
|
51 |
+
$wpSupported = version_compare($wp_version, $sdk['wp']) >= 0;
|
52 |
+
|
53 |
+
return $phpSupported && $wpSupported;
|
54 |
+
}));
|
55 |
+
|
56 |
+
// Sort SDK by version in descending order
|
57 |
+
uasort($supported, function ($x, $y) {
|
58 |
+
return version_compare($y['sdk'], $x['sdk']);
|
59 |
+
});
|
60 |
+
|
61 |
+
// Reset sorted values keys
|
62 |
+
$supported = array_values($supported);
|
63 |
+
|
64 |
+
if (!isset($supported[0])) {
|
65 |
+
throw new Exception('There is no SDK which is support current PHP version and WP version');
|
66 |
+
}
|
67 |
+
|
68 |
+
// Autoload files for supported SDK
|
69 |
+
$autoloaderPath = str_replace(
|
70 |
+
'\\',
|
71 |
+
'/',
|
72 |
+
sprintf('%s/autoload.php', $supported[0]['path'])
|
73 |
+
);
|
74 |
+
|
75 |
+
require_once $autoloaderPath;
|
76 |
+
|
77 |
+
$loaded = true;
|
78 |
+
}
|
79 |
+
}
|
analyst/src/Account/Account.php
CHANGED
@@ -1,584 +1,584 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Account;
|
4 |
-
|
5 |
-
use Analyst\Analyst;
|
6 |
-
use Analyst\ApiRequestor;
|
7 |
-
use Analyst\Cache\DatabaseCache;
|
8 |
-
use Analyst\Collector;
|
9 |
-
use Analyst\Http\Requests\ActivateRequest;
|
10 |
-
use Analyst\Http\Requests\DeactivateRequest;
|
11 |
-
use Analyst\Http\Requests\InstallRequest;
|
12 |
-
use Analyst\Http\Requests\OptInRequest;
|
13 |
-
use Analyst\Http\Requests\OptOutRequest;
|
14 |
-
use Analyst\Http\Requests\UninstallRequest;
|
15 |
-
use Analyst\Notices\Notice;
|
16 |
-
use Analyst\Notices\NoticeFactory;
|
17 |
-
use Analyst\Contracts\TrackerContract;
|
18 |
-
use Analyst\Contracts\RequestorContract;
|
19 |
-
|
20 |
-
/**
|
21 |
-
* Class Account
|
22 |
-
*
|
23 |
-
* This is plugin's account object
|
24 |
-
*/
|
25 |
-
class Account implements TrackerContract
|
26 |
-
{
|
27 |
-
/**
|
28 |
-
* Account id
|
29 |
-
*
|
30 |
-
* @var string
|
31 |
-
*/
|
32 |
-
protected $id;
|
33 |
-
|
34 |
-
/**
|
35 |
-
* Basename of plugin
|
36 |
-
*
|
37 |
-
* @var string
|
38 |
-
*/
|
39 |
-
protected $path;
|
40 |
-
|
41 |
-
/**
|
42 |
-
* Whether plugin is active or not
|
43 |
-
*
|
44 |
-
* @var bool
|
45 |
-
*/
|
46 |
-
protected $isInstalled = false;
|
47 |
-
|
48 |
-
/**
|
49 |
-
* Is user sign in for data tracking
|
50 |
-
*
|
51 |
-
* @var bool
|
52 |
-
*/
|
53 |
-
protected $isOptedIn = false;
|
54 |
-
|
55 |
-
/**
|
56 |
-
* Is user accepted permissions grant
|
57 |
-
* for collection site data
|
58 |
-
*
|
59 |
-
* @var bool
|
60 |
-
*/
|
61 |
-
protected $isSigned = false;
|
62 |
-
|
63 |
-
/**
|
64 |
-
* Is user ever resolved install modal window?
|
65 |
-
*
|
66 |
-
* @var bool
|
67 |
-
*/
|
68 |
-
protected $isInstallResolved = false;
|
69 |
-
|
70 |
-
/**
|
71 |
-
* Public secret code
|
72 |
-
*
|
73 |
-
* @var string
|
74 |
-
*/
|
75 |
-
protected $clientSecret;
|
76 |
-
|
77 |
-
/**
|
78 |
-
* @var AccountData
|
79 |
-
*/
|
80 |
-
protected $data;
|
81 |
-
|
82 |
-
/**
|
83 |
-
* Base plugin path
|
84 |
-
*
|
85 |
-
* @var string
|
86 |
-
*/
|
87 |
-
protected $basePluginPath;
|
88 |
-
|
89 |
-
/**
|
90 |
-
* @var RequestorContract
|
91 |
-
*/
|
92 |
-
protected $requestor;
|
93 |
-
|
94 |
-
/**
|
95 |
-
* @var Collector
|
96 |
-
*/
|
97 |
-
protected $collector;
|
98 |
-
|
99 |
-
/**
|
100 |
-
* Account constructor.
|
101 |
-
* @param $id
|
102 |
-
* @param $secret
|
103 |
-
* @param $baseDir
|
104 |
-
*/
|
105 |
-
public function __construct($id, $secret, $baseDir)
|
106 |
-
{
|
107 |
-
$this->id = $id;
|
108 |
-
$this->clientSecret = $secret;
|
109 |
-
|
110 |
-
$this->path = $baseDir;
|
111 |
-
|
112 |
-
$this->basePluginPath = plugin_basename($baseDir);
|
113 |
-
}
|
114 |
-
|
115 |
-
/**
|
116 |
-
* @return string
|
117 |
-
*/
|
118 |
-
public function getPath()
|
119 |
-
{
|
120 |
-
return $this->path;
|
121 |
-
}
|
122 |
-
|
123 |
-
/**
|
124 |
-
* @param string $path
|
125 |
-
*/
|
126 |
-
public function setPath($path)
|
127 |
-
{
|
128 |
-
$this->data->setPath($path);
|
129 |
-
|
130 |
-
$this->path = $path;
|
131 |
-
}
|
132 |
-
|
133 |
-
/**
|
134 |
-
* @return bool
|
135 |
-
*/
|
136 |
-
public function isOptedIn()
|
137 |
-
{
|
138 |
-
return $this->isOptedIn;
|
139 |
-
}
|
140 |
-
|
141 |
-
/**
|
142 |
-
* @param bool $isOptedIn
|
143 |
-
*/
|
144 |
-
public function setIsOptedIn($isOptedIn)
|
145 |
-
{
|
146 |
-
$this->data->setIsOptedIn($isOptedIn);
|
147 |
-
|
148 |
-
$this->isOptedIn = $isOptedIn;
|
149 |
-
}
|
150 |
-
|
151 |
-
/**
|
152 |
-
* Whether plugin is active
|
153 |
-
*
|
154 |
-
* @return bool
|
155 |
-
*/
|
156 |
-
public function isActive()
|
157 |
-
{
|
158 |
-
return is_plugin_active($this->path);
|
159 |
-
}
|
160 |
-
|
161 |
-
/**
|
162 |
-
* @param string $id
|
163 |
-
*/
|
164 |
-
public function setId($id)
|
165 |
-
{
|
166 |
-
$this->id = $id;
|
167 |
-
}
|
168 |
-
|
169 |
-
/**
|
170 |
-
* @return string
|
171 |
-
*/
|
172 |
-
public function getId()
|
173 |
-
{
|
174 |
-
return $this->id;
|
175 |
-
}
|
176 |
-
|
177 |
-
/**
|
178 |
-
* @return bool
|
179 |
-
*/
|
180 |
-
public function isInstalled()
|
181 |
-
{
|
182 |
-
return $this->isInstalled;
|
183 |
-
}
|
184 |
-
|
185 |
-
/**
|
186 |
-
* @param bool $isInstalled
|
187 |
-
*/
|
188 |
-
public function setIsInstalled($isInstalled)
|
189 |
-
{
|
190 |
-
$this->data->setIsInstalled($isInstalled);
|
191 |
-
|
192 |
-
$this->isInstalled = $isInstalled;
|
193 |
-
}
|
194 |
-
|
195 |
-
/**
|
196 |
-
* Should register activation and deactivation
|
197 |
-
* event hooks
|
198 |
-
*
|
199 |
-
* @return void
|
200 |
-
*/
|
201 |
-
public function registerHooks()
|
202 |
-
{
|
203 |
-
register_activation_hook($this->basePluginPath, [&$this, 'onActivePluginListener']);
|
204 |
-
register_uninstall_hook($this->basePluginPath, ['Account\Account', 'onUninstallPluginListener']);
|
205 |
-
|
206 |
-
$this->addFilter('plugin_action_links', [&$this, 'onRenderActionLinksHook']);
|
207 |
-
|
208 |
-
$this->addAjax('analyst_opt_in', [&$this, 'onOptInListener']);
|
209 |
-
$this->addAjax('analyst_opt_out', [&$this, 'onOptOutListener']);
|
210 |
-
$this->addAjax('analyst_plugin_deactivate', [&$this, 'onDeactivatePluginListener']);
|
211 |
-
$this->addAjax('analyst_install', [&$this, 'onInstallListener']);
|
212 |
-
$this->addAjax('analyst_skip_install', [&$this, 'onSkipInstallListener']);
|
213 |
-
$this->addAjax('analyst_install_verified', [&$this, 'onInstallVerifiedListener']);
|
214 |
-
}
|
215 |
-
|
216 |
-
/**
|
217 |
-
* Will fire when admin activates plugin
|
218 |
-
*
|
219 |
-
* @return void
|
220 |
-
*/
|
221 |
-
public function onActivePluginListener()
|
222 |
-
{
|
223 |
-
if (!$this->isInstallResolved()) {
|
224 |
-
DatabaseCache::getInstance()->put('plugin_to_install', $this->id);
|
225 |
-
}
|
226 |
-
|
227 |
-
if (!$this->isAllowingLogging()) return;
|
228 |
-
|
229 |
-
ActivateRequest::make($this->collector, $this->id, $this->path)
|
230 |
-
->execute($this->requestor);
|
231 |
-
|
232 |
-
$this->setIsInstalled(true);
|
233 |
-
|
234 |
-
AccountDataFactory::syncData();
|
235 |
-
}
|
236 |
-
|
237 |
-
/**
|
238 |
-
* Will fire when admin deactivates plugin
|
239 |
-
*
|
240 |
-
* @return void
|
241 |
-
*/
|
242 |
-
public function onDeactivatePluginListener()
|
243 |
-
{
|
244 |
-
if (!$this->isAllowingLogging()) return;
|
245 |
-
|
246 |
-
$question = isset($_POST['question']) ? stripslashes($_POST['question']) : null;
|
247 |
-
$reason = isset($_POST['reason']) ? stripslashes($_POST['reason']) : null;
|
248 |
-
|
249 |
-
DeactivateRequest::make($this->collector, $this->id, $this->path, $question, $reason)
|
250 |
-
->execute($this->requestor);
|
251 |
-
|
252 |
-
$this->setIsInstalled(false);
|
253 |
-
|
254 |
-
AccountDataFactory::syncData();
|
255 |
-
|
256 |
-
wp_send_json_success();
|
257 |
-
}
|
258 |
-
|
259 |
-
/**
|
260 |
-
* Will fire when user opted in
|
261 |
-
*
|
262 |
-
* @return void
|
263 |
-
*/
|
264 |
-
public function onOptInListener()
|
265 |
-
{
|
266 |
-
OptInRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
|
267 |
-
|
268 |
-
$this->setIsOptedIn(true);
|
269 |
-
|
270 |
-
AccountDataFactory::syncData();
|
271 |
-
|
272 |
-
wp_die();
|
273 |
-
}
|
274 |
-
|
275 |
-
/**
|
276 |
-
* Will fire when user opted out
|
277 |
-
*
|
278 |
-
* @return void
|
279 |
-
*/
|
280 |
-
public function onOptOutListener()
|
281 |
-
{
|
282 |
-
OptOutRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
|
283 |
-
|
284 |
-
$this->setIsOptedIn(false);
|
285 |
-
|
286 |
-
AccountDataFactory::syncData();
|
287 |
-
|
288 |
-
wp_send_json_success();
|
289 |
-
}
|
290 |
-
|
291 |
-
/**
|
292 |
-
* Will fire when user accept opt-in
|
293 |
-
* at first time
|
294 |
-
*
|
295 |
-
* @return void
|
296 |
-
*/
|
297 |
-
public function onInstallListener()
|
298 |
-
{
|
299 |
-
$cache = DatabaseCache::getInstance();
|
300 |
-
|
301 |
-
// Set flag to true which indicates that install is resolved
|
302 |
-
// also remove install plugin id from cache
|
303 |
-
$this->setIsInstallResolved(true);
|
304 |
-
$cache->delete('plugin_to_install');
|
305 |
-
|
306 |
-
InstallRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
|
307 |
-
|
308 |
-
$this->setIsSigned(true);
|
309 |
-
|
310 |
-
$this->setIsOptedIn(true);
|
311 |
-
|
312 |
-
$factory = NoticeFactory::instance();
|
313 |
-
|
314 |
-
$message = sprintf('Please confirm your email by clicking on the link we sent to %s. This makes sure you’re not a bot.', $this->collector->getGeneralEmailAddress());
|
315 |
-
|
316 |
-
$notificationId = uniqid();
|
317 |
-
|
318 |
-
$notice = Notice::make(
|
319 |
-
$notificationId,
|
320 |
-
$this->getId(),
|
321 |
-
$message,
|
322 |
-
$this->collector->getPluginName($this->path)
|
323 |
-
);
|
324 |
-
|
325 |
-
$factory->addNotice($notice);
|
326 |
-
|
327 |
-
AccountDataFactory::syncData();
|
328 |
-
|
329 |
-
// Set email confirmation notification id to cache
|
330 |
-
// se we can extract and remove it when user confirmed email
|
331 |
-
$cache->put(
|
332 |
-
sprintf('account_email_confirmation_%s', $this->getId()),
|
333 |
-
$notificationId
|
334 |
-
);
|
335 |
-
|
336 |
-
wp_send_json_success();
|
337 |
-
}
|
338 |
-
|
339 |
-
/**
|
340 |
-
* Will fire when user skipped installation
|
341 |
-
*
|
342 |
-
* @return void
|
343 |
-
*/
|
344 |
-
public function onSkipInstallListener()
|
345 |
-
{
|
346 |
-
// Set flag to true which indicates that install is resolved
|
347 |
-
// also remove install plugin id from cache
|
348 |
-
$this->setIsInstallResolved(true);
|
349 |
-
DatabaseCache::getInstance()->delete('plugin_to_install');
|
350 |
-
}
|
351 |
-
|
352 |
-
/**
|
353 |
-
* Will fire when user delete plugin through admin panel.
|
354 |
-
* This action will happen if admin at least once
|
355 |
-
* activated the plugin.
|
356 |
-
*
|
357 |
-
* @return void
|
358 |
-
* @throws \Exception
|
359 |
-
*/
|
360 |
-
public static function onUninstallPluginListener()
|
361 |
-
{
|
362 |
-
$factory = AccountDataFactory::instance();
|
363 |
-
|
364 |
-
$pluginFile = substr(current_filter(), strlen( 'uninstall_' ));
|
365 |
-
|
366 |
-
$account = $factory->getAccountDataByBasePath($pluginFile);
|
367 |
-
|
368 |
-
// If account somehow is not found, exit the execution
|
369 |
-
if (!$account) return;
|
370 |
-
|
371 |
-
$analyst = Analyst::getInstance();
|
372 |
-
|
373 |
-
$collector = new Collector($analyst);
|
374 |
-
|
375 |
-
$requestor = new ApiRequestor($account->getId(), $account->getSecret(), $analyst->getApiBase());
|
376 |
-
|
377 |
-
// Just send request to log uninstall event not caring about response
|
378 |
-
UninstallRequest::make($collector, $account->getId(), $account->getPath())->execute($requestor);
|
379 |
-
|
380 |
-
$factory->sync();
|
381 |
-
}
|
382 |
-
|
383 |
-
/**
|
384 |
-
* Fires when used verified his account
|
385 |
-
*/
|
386 |
-
public function onInstallVerifiedListener()
|
387 |
-
{
|
388 |
-
$factory = NoticeFactory::instance();
|
389 |
-
|
390 |
-
$notice = Notice::make(
|
391 |
-
uniqid(),
|
392 |
-
$this->getId(),
|
393 |
-
'Thank you for confirming your email.',
|
394 |
-
$this->collector->getPluginName($this->path)
|
395 |
-
);
|
396 |
-
|
397 |
-
$factory->addNotice($notice);
|
398 |
-
|
399 |
-
// Remove confirmation notification
|
400 |
-
$confirmationNotificationId = DatabaseCache::getInstance()->pop(sprintf('account_email_confirmation_%s', $this->getId()));
|
401 |
-
$factory->remove($confirmationNotificationId);
|
402 |
-
|
403 |
-
AccountDataFactory::syncData();
|
404 |
-
|
405 |
-
wp_send_json_success();
|
406 |
-
}
|
407 |
-
|
408 |
-
/**
|
409 |
-
* Will fire when wp renders plugin
|
410 |
-
* action buttons
|
411 |
-
*
|
412 |
-
* @param $defaultLinks
|
413 |
-
* @return array
|
414 |
-
*/
|
415 |
-
public function onRenderActionLinksHook($defaultLinks)
|
416 |
-
{
|
417 |
-
$customLinks = [];
|
418 |
-
|
419 |
-
$customLinks[] = $this->isOptedIn()
|
420 |
-
? '<a class="analyst-action-opt analyst-opt-out" analyst-plugin-id="' . $this->getId() . '" analyst-plugin-signed="' . (int) $this->isSigned() . '">Opt Out</a>'
|
421 |
-
: '<a class="analyst-action-opt analyst-opt-in" analyst-plugin-id="' . $this->getId() . '" analyst-plugin-signed="' . (int) $this->isSigned() . '">Opt In</a>';
|
422 |
-
|
423 |
-
// Append anchor to find specific deactivation link
|
424 |
-
if (isset($defaultLinks['deactivate'])) {
|
425 |
-
$defaultLinks['deactivate'] .= '<span analyst-plugin-id="' . $this->getId() . '" analyst-plugin-opted-in="' . (int) $this->isOptedIn() . '"></span>';
|
426 |
-
}
|
427 |
-
|
428 |
-
return array_merge($customLinks, $defaultLinks);
|
429 |
-
}
|
430 |
-
|
431 |
-
/**
|
432 |
-
* @return AccountData
|
433 |
-
*/
|
434 |
-
public function getData()
|
435 |
-
{
|
436 |
-
return $this->data;
|
437 |
-
}
|
438 |
-
|
439 |
-
/**
|
440 |
-
* @param AccountData $data
|
441 |
-
*/
|
442 |
-
public function setData(AccountData $data)
|
443 |
-
{
|
444 |
-
$this->data = $data;
|
445 |
-
|
446 |
-
$this->setIsOptedIn($data->isOptedIn());
|
447 |
-
$this->setIsInstalled($data->isInstalled());
|
448 |
-
$this->setIsSigned($data->isSigned());
|
449 |
-
$this->setIsInstallResolved($data->isInstallResolved());
|
450 |
-
}
|
451 |
-
|
452 |
-
/**
|
453 |
-
* Resolves valid action name
|
454 |
-
* based on client id
|
455 |
-
*
|
456 |
-
* @param $action
|
457 |
-
* @return string
|
458 |
-
*/
|
459 |
-
private function resolveActionName($action)
|
460 |
-
{
|
461 |
-
return sprintf('%s_%s', $action, $this->id);
|
462 |
-
}
|
463 |
-
|
464 |
-
/**
|
465 |
-
* Register action for current plugin
|
466 |
-
*
|
467 |
-
* @param $action
|
468 |
-
* @param $callback
|
469 |
-
*/
|
470 |
-
private function addFilter($action, $callback)
|
471 |
-
{
|
472 |
-
$validAction = sprintf('%s_%s', $action, $this->basePluginPath);
|
473 |
-
|
474 |
-
add_filter($validAction, $callback, 10);
|
475 |
-
}
|
476 |
-
|
477 |
-
/**
|
478 |
-
* Add ajax action for current plugin
|
479 |
-
*
|
480 |
-
* @param $action
|
481 |
-
* @param $callback
|
482 |
-
* @param bool $raw Format action ??
|
483 |
-
*/
|
484 |
-
private function addAjax($action, $callback, $raw = false)
|
485 |
-
{
|
486 |
-
$validAction = $raw ? $action : sprintf('%s%s', 'wp_ajax_', $this->resolveActionName($action));
|
487 |
-
|
488 |
-
add_action($validAction, $callback);
|
489 |
-
}
|
490 |
-
|
491 |
-
/**
|
492 |
-
* @return bool
|
493 |
-
*/
|
494 |
-
public function isSigned()
|
495 |
-
{
|
496 |
-
return $this->isSigned;
|
497 |
-
}
|
498 |
-
|
499 |
-
/**
|
500 |
-
* @param bool $isSigned
|
501 |
-
*/
|
502 |
-
public function setIsSigned($isSigned)
|
503 |
-
{
|
504 |
-
$this->data->setIsSigned($isSigned);
|
505 |
-
|
506 |
-
$this->isSigned = $isSigned;
|
507 |
-
}
|
508 |
-
|
509 |
-
/**
|
510 |
-
* @return RequestorContract
|
511 |
-
*/
|
512 |
-
public function getRequestor()
|
513 |
-
{
|
514 |
-
return $this->requestor;
|
515 |
-
}
|
516 |
-
|
517 |
-
/**
|
518 |
-
* @param RequestorContract $requestor
|
519 |
-
*/
|
520 |
-
public function setRequestor(RequestorContract $requestor)
|
521 |
-
{
|
522 |
-
$this->requestor = $requestor;
|
523 |
-
}
|
524 |
-
|
525 |
-
/**
|
526 |
-
* @return string
|
527 |
-
*/
|
528 |
-
public function getClientSecret()
|
529 |
-
{
|
530 |
-
return $this->clientSecret;
|
531 |
-
}
|
532 |
-
|
533 |
-
/**
|
534 |
-
* @return Collector
|
535 |
-
*/
|
536 |
-
public function getCollector()
|
537 |
-
{
|
538 |
-
return $this->collector;
|
539 |
-
}
|
540 |
-
|
541 |
-
/**
|
542 |
-
* @param Collector $collector
|
543 |
-
*/
|
544 |
-
public function setCollector(Collector $collector)
|
545 |
-
{
|
546 |
-
$this->collector = $collector;
|
547 |
-
}
|
548 |
-
|
549 |
-
/**
|
550 |
-
* Do we allowing logging
|
551 |
-
*
|
552 |
-
* @return bool
|
553 |
-
*/
|
554 |
-
public function isAllowingLogging()
|
555 |
-
{
|
556 |
-
return $this->isOptedIn;
|
557 |
-
}
|
558 |
-
|
559 |
-
/**
|
560 |
-
* @return string
|
561 |
-
*/
|
562 |
-
public function getBasePluginPath()
|
563 |
-
{
|
564 |
-
return $this->basePluginPath;
|
565 |
-
}
|
566 |
-
|
567 |
-
/**
|
568 |
-
* @return bool
|
569 |
-
*/
|
570 |
-
public function isInstallResolved()
|
571 |
-
{
|
572 |
-
return $this->isInstallResolved;
|
573 |
-
}
|
574 |
-
|
575 |
-
/**
|
576 |
-
* @param bool $isInstallResolved
|
577 |
-
*/
|
578 |
-
public function setIsInstallResolved($isInstallResolved)
|
579 |
-
{
|
580 |
-
$this->data->setIsInstallResolved($isInstallResolved);
|
581 |
-
|
582 |
-
$this->isInstallResolved = $isInstallResolved;
|
583 |
-
}
|
584 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Account;
|
4 |
+
|
5 |
+
use Analyst\Analyst;
|
6 |
+
use Analyst\ApiRequestor;
|
7 |
+
use Analyst\Cache\DatabaseCache;
|
8 |
+
use Analyst\Collector;
|
9 |
+
use Analyst\Http\Requests\ActivateRequest;
|
10 |
+
use Analyst\Http\Requests\DeactivateRequest;
|
11 |
+
use Analyst\Http\Requests\InstallRequest;
|
12 |
+
use Analyst\Http\Requests\OptInRequest;
|
13 |
+
use Analyst\Http\Requests\OptOutRequest;
|
14 |
+
use Analyst\Http\Requests\UninstallRequest;
|
15 |
+
use Analyst\Notices\Notice;
|
16 |
+
use Analyst\Notices\NoticeFactory;
|
17 |
+
use Analyst\Contracts\TrackerContract;
|
18 |
+
use Analyst\Contracts\RequestorContract;
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Class Account
|
22 |
+
*
|
23 |
+
* This is plugin's account object
|
24 |
+
*/
|
25 |
+
class Account implements TrackerContract
|
26 |
+
{
|
27 |
+
/**
|
28 |
+
* Account id
|
29 |
+
*
|
30 |
+
* @var string
|
31 |
+
*/
|
32 |
+
protected $id;
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Basename of plugin
|
36 |
+
*
|
37 |
+
* @var string
|
38 |
+
*/
|
39 |
+
protected $path;
|
40 |
+
|
41 |
+
/**
|
42 |
+
* Whether plugin is active or not
|
43 |
+
*
|
44 |
+
* @var bool
|
45 |
+
*/
|
46 |
+
protected $isInstalled = false;
|
47 |
+
|
48 |
+
/**
|
49 |
+
* Is user sign in for data tracking
|
50 |
+
*
|
51 |
+
* @var bool
|
52 |
+
*/
|
53 |
+
protected $isOptedIn = false;
|
54 |
+
|
55 |
+
/**
|
56 |
+
* Is user accepted permissions grant
|
57 |
+
* for collection site data
|
58 |
+
*
|
59 |
+
* @var bool
|
60 |
+
*/
|
61 |
+
protected $isSigned = false;
|
62 |
+
|
63 |
+
/**
|
64 |
+
* Is user ever resolved install modal window?
|
65 |
+
*
|
66 |
+
* @var bool
|
67 |
+
*/
|
68 |
+
protected $isInstallResolved = false;
|
69 |
+
|
70 |
+
/**
|
71 |
+
* Public secret code
|
72 |
+
*
|
73 |
+
* @var string
|
74 |
+
*/
|
75 |
+
protected $clientSecret;
|
76 |
+
|
77 |
+
/**
|
78 |
+
* @var AccountData
|
79 |
+
*/
|
80 |
+
protected $data;
|
81 |
+
|
82 |
+
/**
|
83 |
+
* Base plugin path
|
84 |
+
*
|
85 |
+
* @var string
|
86 |
+
*/
|
87 |
+
protected $basePluginPath;
|
88 |
+
|
89 |
+
/**
|
90 |
+
* @var RequestorContract
|
91 |
+
*/
|
92 |
+
protected $requestor;
|
93 |
+
|
94 |
+
/**
|
95 |
+
* @var Collector
|
96 |
+
*/
|
97 |
+
protected $collector;
|
98 |
+
|
99 |
+
/**
|
100 |
+
* Account constructor.
|
101 |
+
* @param $id
|
102 |
+
* @param $secret
|
103 |
+
* @param $baseDir
|
104 |
+
*/
|
105 |
+
public function __construct($id, $secret, $baseDir)
|
106 |
+
{
|
107 |
+
$this->id = $id;
|
108 |
+
$this->clientSecret = $secret;
|
109 |
+
|
110 |
+
$this->path = $baseDir;
|
111 |
+
|
112 |
+
$this->basePluginPath = plugin_basename($baseDir);
|
113 |
+
}
|
114 |
+
|
115 |
+
/**
|
116 |
+
* @return string
|
117 |
+
*/
|
118 |
+
public function getPath()
|
119 |
+
{
|
120 |
+
return $this->path;
|
121 |
+
}
|
122 |
+
|
123 |
+
/**
|
124 |
+
* @param string $path
|
125 |
+
*/
|
126 |
+
public function setPath($path)
|
127 |
+
{
|
128 |
+
$this->data->setPath($path);
|
129 |
+
|
130 |
+
$this->path = $path;
|
131 |
+
}
|
132 |
+
|
133 |
+
/**
|
134 |
+
* @return bool
|
135 |
+
*/
|
136 |
+
public function isOptedIn()
|
137 |
+
{
|
138 |
+
return $this->isOptedIn;
|
139 |
+
}
|
140 |
+
|
141 |
+
/**
|
142 |
+
* @param bool $isOptedIn
|
143 |
+
*/
|
144 |
+
public function setIsOptedIn($isOptedIn)
|
145 |
+
{
|
146 |
+
$this->data->setIsOptedIn($isOptedIn);
|
147 |
+
|
148 |
+
$this->isOptedIn = $isOptedIn;
|
149 |
+
}
|
150 |
+
|
151 |
+
/**
|
152 |
+
* Whether plugin is active
|
153 |
+
*
|
154 |
+
* @return bool
|
155 |
+
*/
|
156 |
+
public function isActive()
|
157 |
+
{
|
158 |
+
return is_plugin_active($this->path);
|
159 |
+
}
|
160 |
+
|
161 |
+
/**
|
162 |
+
* @param string $id
|
163 |
+
*/
|
164 |
+
public function setId($id)
|
165 |
+
{
|
166 |
+
$this->id = $id;
|
167 |
+
}
|
168 |
+
|
169 |
+
/**
|
170 |
+
* @return string
|
171 |
+
*/
|
172 |
+
public function getId()
|
173 |
+
{
|
174 |
+
return $this->id;
|
175 |
+
}
|
176 |
+
|
177 |
+
/**
|
178 |
+
* @return bool
|
179 |
+
*/
|
180 |
+
public function isInstalled()
|
181 |
+
{
|
182 |
+
return $this->isInstalled;
|
183 |
+
}
|
184 |
+
|
185 |
+
/**
|
186 |
+
* @param bool $isInstalled
|
187 |
+
*/
|
188 |
+
public function setIsInstalled($isInstalled)
|
189 |
+
{
|
190 |
+
$this->data->setIsInstalled($isInstalled);
|
191 |
+
|
192 |
+
$this->isInstalled = $isInstalled;
|
193 |
+
}
|
194 |
+
|
195 |
+
/**
|
196 |
+
* Should register activation and deactivation
|
197 |
+
* event hooks
|
198 |
+
*
|
199 |
+
* @return void
|
200 |
+
*/
|
201 |
+
public function registerHooks()
|
202 |
+
{
|
203 |
+
register_activation_hook($this->basePluginPath, [&$this, 'onActivePluginListener']);
|
204 |
+
register_uninstall_hook($this->basePluginPath, ['Account\Account', 'onUninstallPluginListener']);
|
205 |
+
|
206 |
+
$this->addFilter('plugin_action_links', [&$this, 'onRenderActionLinksHook']);
|
207 |
+
|
208 |
+
$this->addAjax('analyst_opt_in', [&$this, 'onOptInListener']);
|
209 |
+
$this->addAjax('analyst_opt_out', [&$this, 'onOptOutListener']);
|
210 |
+
$this->addAjax('analyst_plugin_deactivate', [&$this, 'onDeactivatePluginListener']);
|
211 |
+
$this->addAjax('analyst_install', [&$this, 'onInstallListener']);
|
212 |
+
$this->addAjax('analyst_skip_install', [&$this, 'onSkipInstallListener']);
|
213 |
+
$this->addAjax('analyst_install_verified', [&$this, 'onInstallVerifiedListener']);
|
214 |
+
}
|
215 |
+
|
216 |
+
/**
|
217 |
+
* Will fire when admin activates plugin
|
218 |
+
*
|
219 |
+
* @return void
|
220 |
+
*/
|
221 |
+
public function onActivePluginListener()
|
222 |
+
{
|
223 |
+
if (!$this->isInstallResolved()) {
|
224 |
+
DatabaseCache::getInstance()->put('plugin_to_install', $this->id);
|
225 |
+
}
|
226 |
+
|
227 |
+
if (!$this->isAllowingLogging()) return;
|
228 |
+
|
229 |
+
ActivateRequest::make($this->collector, $this->id, $this->path)
|
230 |
+
->execute($this->requestor);
|
231 |
+
|
232 |
+
$this->setIsInstalled(true);
|
233 |
+
|
234 |
+
AccountDataFactory::syncData();
|
235 |
+
}
|
236 |
+
|
237 |
+
/**
|
238 |
+
* Will fire when admin deactivates plugin
|
239 |
+
*
|
240 |
+
* @return void
|
241 |
+
*/
|
242 |
+
public function onDeactivatePluginListener()
|
243 |
+
{
|
244 |
+
if (!$this->isAllowingLogging()) return;
|
245 |
+
|
246 |
+
$question = isset($_POST['question']) ? stripslashes($_POST['question']) : null;
|
247 |
+
$reason = isset($_POST['reason']) ? stripslashes($_POST['reason']) : null;
|
248 |
+
|
249 |
+
DeactivateRequest::make($this->collector, $this->id, $this->path, $question, $reason)
|
250 |
+
->execute($this->requestor);
|
251 |
+
|
252 |
+
$this->setIsInstalled(false);
|
253 |
+
|
254 |
+
AccountDataFactory::syncData();
|
255 |
+
|
256 |
+
wp_send_json_success();
|
257 |
+
}
|
258 |
+
|
259 |
+
/**
|
260 |
+
* Will fire when user opted in
|
261 |
+
*
|
262 |
+
* @return void
|
263 |
+
*/
|
264 |
+
public function onOptInListener()
|
265 |
+
{
|
266 |
+
OptInRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
|
267 |
+
|
268 |
+
$this->setIsOptedIn(true);
|
269 |
+
|
270 |
+
AccountDataFactory::syncData();
|
271 |
+
|
272 |
+
wp_die();
|
273 |
+
}
|
274 |
+
|
275 |
+
/**
|
276 |
+
* Will fire when user opted out
|
277 |
+
*
|
278 |
+
* @return void
|
279 |
+
*/
|
280 |
+
public function onOptOutListener()
|
281 |
+
{
|
282 |
+
OptOutRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
|
283 |
+
|
284 |
+
$this->setIsOptedIn(false);
|
285 |
+
|
286 |
+
AccountDataFactory::syncData();
|
287 |
+
|
288 |
+
wp_send_json_success();
|
289 |
+
}
|
290 |
+
|
291 |
+
/**
|
292 |
+
* Will fire when user accept opt-in
|
293 |
+
* at first time
|
294 |
+
*
|
295 |
+
* @return void
|
296 |
+
*/
|
297 |
+
public function onInstallListener()
|
298 |
+
{
|
299 |
+
$cache = DatabaseCache::getInstance();
|
300 |
+
|
301 |
+
// Set flag to true which indicates that install is resolved
|
302 |
+
// also remove install plugin id from cache
|
303 |
+
$this->setIsInstallResolved(true);
|
304 |
+
$cache->delete('plugin_to_install');
|
305 |
+
|
306 |
+
InstallRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
|
307 |
+
|
308 |
+
$this->setIsSigned(true);
|
309 |
+
|
310 |
+
$this->setIsOptedIn(true);
|
311 |
+
|
312 |
+
$factory = NoticeFactory::instance();
|
313 |
+
|
314 |
+
$message = sprintf('Please confirm your email by clicking on the link we sent to %s. This makes sure you’re not a bot.', $this->collector->getGeneralEmailAddress());
|
315 |
+
|
316 |
+
$notificationId = uniqid();
|
317 |
+
|
318 |
+
$notice = Notice::make(
|
319 |
+
$notificationId,
|
320 |
+
$this->getId(),
|
321 |
+
$message,
|
322 |
+
$this->collector->getPluginName($this->path)
|
323 |
+
);
|
324 |
+
|
325 |
+
$factory->addNotice($notice);
|
326 |
+
|
327 |
+
AccountDataFactory::syncData();
|
328 |
+
|
329 |
+
// Set email confirmation notification id to cache
|
330 |
+
// se we can extract and remove it when user confirmed email
|
331 |
+
$cache->put(
|
332 |
+
sprintf('account_email_confirmation_%s', $this->getId()),
|
333 |
+
$notificationId
|
334 |
+
);
|
335 |
+
|
336 |
+
wp_send_json_success();
|
337 |
+
}
|
338 |
+
|
339 |
+
/**
|
340 |
+
* Will fire when user skipped installation
|
341 |
+
*
|
342 |
+
* @return void
|
343 |
+
*/
|
344 |
+
public function onSkipInstallListener()
|
345 |
+
{
|
346 |
+
// Set flag to true which indicates that install is resolved
|
347 |
+
// also remove install plugin id from cache
|
348 |
+
$this->setIsInstallResolved(true);
|
349 |
+
DatabaseCache::getInstance()->delete('plugin_to_install');
|
350 |
+
}
|
351 |
+
|
352 |
+
/**
|
353 |
+
* Will fire when user delete plugin through admin panel.
|
354 |
+
* This action will happen if admin at least once
|
355 |
+
* activated the plugin.
|
356 |
+
*
|
357 |
+
* @return void
|
358 |
+
* @throws \Exception
|
359 |
+
*/
|
360 |
+
public static function onUninstallPluginListener()
|
361 |
+
{
|
362 |
+
$factory = AccountDataFactory::instance();
|
363 |
+
|
364 |
+
$pluginFile = substr(current_filter(), strlen( 'uninstall_' ));
|
365 |
+
|
366 |
+
$account = $factory->getAccountDataByBasePath($pluginFile);
|
367 |
+
|
368 |
+
// If account somehow is not found, exit the execution
|
369 |
+
if (!$account) return;
|
370 |
+
|
371 |
+
$analyst = Analyst::getInstance();
|
372 |
+
|
373 |
+
$collector = new Collector($analyst);
|
374 |
+
|
375 |
+
$requestor = new ApiRequestor($account->getId(), $account->getSecret(), $analyst->getApiBase());
|
376 |
+
|
377 |
+
// Just send request to log uninstall event not caring about response
|
378 |
+
UninstallRequest::make($collector, $account->getId(), $account->getPath())->execute($requestor);
|
379 |
+
|
380 |
+
$factory->sync();
|
381 |
+
}
|
382 |
+
|
383 |
+
/**
|
384 |
+
* Fires when used verified his account
|
385 |
+
*/
|
386 |
+
public function onInstallVerifiedListener()
|
387 |
+
{
|
388 |
+
$factory = NoticeFactory::instance();
|
389 |
+
|
390 |
+
$notice = Notice::make(
|
391 |
+
uniqid(),
|
392 |
+
$this->getId(),
|
393 |
+
'Thank you for confirming your email.',
|
394 |
+
$this->collector->getPluginName($this->path)
|
395 |
+
);
|
396 |
+
|
397 |
+
$factory->addNotice($notice);
|
398 |
+
|
399 |
+
// Remove confirmation notification
|
400 |
+
$confirmationNotificationId = DatabaseCache::getInstance()->pop(sprintf('account_email_confirmation_%s', $this->getId()));
|
401 |
+
$factory->remove($confirmationNotificationId);
|
402 |
+
|
403 |
+
AccountDataFactory::syncData();
|
404 |
+
|
405 |
+
wp_send_json_success();
|
406 |
+
}
|
407 |
+
|
408 |
+
/**
|
409 |
+
* Will fire when wp renders plugin
|
410 |
+
* action buttons
|
411 |
+
*
|
412 |
+
* @param $defaultLinks
|
413 |
+
* @return array
|
414 |
+
*/
|
415 |
+
public function onRenderActionLinksHook($defaultLinks)
|
416 |
+
{
|
417 |
+
$customLinks = [];
|
418 |
+
|
419 |
+
$customLinks[] = $this->isOptedIn()
|
420 |
+
? '<a class="analyst-action-opt analyst-opt-out" analyst-plugin-id="' . $this->getId() . '" analyst-plugin-signed="' . (int) $this->isSigned() . '">Opt Out</a>'
|
421 |
+
: '<a class="analyst-action-opt analyst-opt-in" analyst-plugin-id="' . $this->getId() . '" analyst-plugin-signed="' . (int) $this->isSigned() . '">Opt In</a>';
|
422 |
+
|
423 |
+
// Append anchor to find specific deactivation link
|
424 |
+
if (isset($defaultLinks['deactivate'])) {
|
425 |
+
$defaultLinks['deactivate'] .= '<span analyst-plugin-id="' . $this->getId() . '" analyst-plugin-opted-in="' . (int) $this->isOptedIn() . '"></span>';
|
426 |
+
}
|
427 |
+
|
428 |
+
return array_merge($customLinks, $defaultLinks);
|
429 |
+
}
|
430 |
+
|
431 |
+
/**
|
432 |
+
* @return AccountData
|
433 |
+
*/
|
434 |
+
public function getData()
|
435 |
+
{
|
436 |
+
return $this->data;
|
437 |
+
}
|
438 |
+
|
439 |
+
/**
|
440 |
+
* @param AccountData $data
|
441 |
+
*/
|
442 |
+
public function setData(AccountData $data)
|
443 |
+
{
|
444 |
+
$this->data = $data;
|
445 |
+
|
446 |
+
$this->setIsOptedIn($data->isOptedIn());
|
447 |
+
$this->setIsInstalled($data->isInstalled());
|
448 |
+
$this->setIsSigned($data->isSigned());
|
449 |
+
$this->setIsInstallResolved($data->isInstallResolved());
|
450 |
+
}
|
451 |
+
|
452 |
+
/**
|
453 |
+
* Resolves valid action name
|
454 |
+
* based on client id
|
455 |
+
*
|
456 |
+
* @param $action
|
457 |
+
* @return string
|
458 |
+
*/
|
459 |
+
private function resolveActionName($action)
|
460 |
+
{
|
461 |
+
return sprintf('%s_%s', $action, $this->id);
|
462 |
+
}
|
463 |
+
|
464 |
+
/**
|
465 |
+
* Register action for current plugin
|
466 |
+
*
|
467 |
+
* @param $action
|
468 |
+
* @param $callback
|
469 |
+
*/
|
470 |
+
private function addFilter($action, $callback)
|
471 |
+
{
|
472 |
+
$validAction = sprintf('%s_%s', $action, $this->basePluginPath);
|
473 |
+
|
474 |
+
add_filter($validAction, $callback, 10);
|
475 |
+
}
|
476 |
+
|
477 |
+
/**
|
478 |
+
* Add ajax action for current plugin
|
479 |
+
*
|
480 |
+
* @param $action
|
481 |
+
* @param $callback
|
482 |
+
* @param bool $raw Format action ??
|
483 |
+
*/
|
484 |
+
private function addAjax($action, $callback, $raw = false)
|
485 |
+
{
|
486 |
+
$validAction = $raw ? $action : sprintf('%s%s', 'wp_ajax_', $this->resolveActionName($action));
|
487 |
+
|
488 |
+
add_action($validAction, $callback);
|
489 |
+
}
|
490 |
+
|
491 |
+
/**
|
492 |
+
* @return bool
|
493 |
+
*/
|
494 |
+
public function isSigned()
|
495 |
+
{
|
496 |
+
return $this->isSigned;
|
497 |
+
}
|
498 |
+
|
499 |
+
/**
|
500 |
+
* @param bool $isSigned
|
501 |
+
*/
|
502 |
+
public function setIsSigned($isSigned)
|
503 |
+
{
|
504 |
+
$this->data->setIsSigned($isSigned);
|
505 |
+
|
506 |
+
$this->isSigned = $isSigned;
|
507 |
+
}
|
508 |
+
|
509 |
+
/**
|
510 |
+
* @return RequestorContract
|
511 |
+
*/
|
512 |
+
public function getRequestor()
|
513 |
+
{
|
514 |
+
return $this->requestor;
|
515 |
+
}
|
516 |
+
|
517 |
+
/**
|
518 |
+
* @param RequestorContract $requestor
|
519 |
+
*/
|
520 |
+
public function setRequestor(RequestorContract $requestor)
|
521 |
+
{
|
522 |
+
$this->requestor = $requestor;
|
523 |
+
}
|
524 |
+
|
525 |
+
/**
|
526 |
+
* @return string
|
527 |
+
*/
|
528 |
+
public function getClientSecret()
|
529 |
+
{
|
530 |
+
return $this->clientSecret;
|
531 |
+
}
|
532 |
+
|
533 |
+
/**
|
534 |
+
* @return Collector
|
535 |
+
*/
|
536 |
+
public function getCollector()
|
537 |
+
{
|
538 |
+
return $this->collector;
|
539 |
+
}
|
540 |
+
|
541 |
+
/**
|
542 |
+
* @param Collector $collector
|
543 |
+
*/
|
544 |
+
public function setCollector(Collector $collector)
|
545 |
+
{
|
546 |
+
$this->collector = $collector;
|
547 |
+
}
|
548 |
+
|
549 |
+
/**
|
550 |
+
* Do we allowing logging
|
551 |
+
*
|
552 |
+
* @return bool
|
553 |
+
*/
|
554 |
+
public function isAllowingLogging()
|
555 |
+
{
|
556 |
+
return $this->isOptedIn;
|
557 |
+
}
|
558 |
+
|
559 |
+
/**
|
560 |
+
* @return string
|
561 |
+
*/
|
562 |
+
public function getBasePluginPath()
|
563 |
+
{
|
564 |
+
return $this->basePluginPath;
|
565 |
+
}
|
566 |
+
|
567 |
+
/**
|
568 |
+
* @return bool
|
569 |
+
*/
|
570 |
+
public function isInstallResolved()
|
571 |
+
{
|
572 |
+
return $this->isInstallResolved;
|
573 |
+
}
|
574 |
+
|
575 |
+
/**
|
576 |
+
* @param bool $isInstallResolved
|
577 |
+
*/
|
578 |
+
public function setIsInstallResolved($isInstallResolved)
|
579 |
+
{
|
580 |
+
$this->data->setIsInstallResolved($isInstallResolved);
|
581 |
+
|
582 |
+
$this->isInstallResolved = $isInstallResolved;
|
583 |
+
}
|
584 |
+
}
|
analyst/src/Account/AccountData.php
CHANGED
@@ -1,176 +1,176 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Account;
|
4 |
-
|
5 |
-
/**
|
6 |
-
* Class AccountData is the data holder
|
7 |
-
* for Analyst\Account\Account class
|
8 |
-
* which is unserialized from database
|
9 |
-
*/
|
10 |
-
class AccountData
|
11 |
-
{
|
12 |
-
/**
|
13 |
-
* Account id
|
14 |
-
*
|
15 |
-
* @var string
|
16 |
-
*/
|
17 |
-
protected $id;
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Account secret key
|
21 |
-
*
|
22 |
-
* @var string
|
23 |
-
*/
|
24 |
-
protected $secret;
|
25 |
-
|
26 |
-
/**
|
27 |
-
* Basename of plugin
|
28 |
-
*
|
29 |
-
* @var string
|
30 |
-
*/
|
31 |
-
protected $path;
|
32 |
-
|
33 |
-
/**
|
34 |
-
* Whether admin accepted opt in
|
35 |
-
* terms and permissions
|
36 |
-
*
|
37 |
-
* @var bool
|
38 |
-
*/
|
39 |
-
protected $isInstalled = false;
|
40 |
-
|
41 |
-
/**
|
42 |
-
* Is user sign in for data tracking
|
43 |
-
*
|
44 |
-
* @var bool
|
45 |
-
*/
|
46 |
-
protected $isOptedIn = false;
|
47 |
-
|
48 |
-
/**
|
49 |
-
* Is user accepted permissions grant
|
50 |
-
* for collection site data
|
51 |
-
*
|
52 |
-
* @var bool
|
53 |
-
*/
|
54 |
-
protected $isSigned = false;
|
55 |
-
|
56 |
-
/**
|
57 |
-
* Is user ever resolved install modal window?
|
58 |
-
*
|
59 |
-
* @var bool
|
60 |
-
*/
|
61 |
-
protected $isInstallResolved;
|
62 |
-
|
63 |
-
/**
|
64 |
-
* @return string
|
65 |
-
*/
|
66 |
-
public function getId()
|
67 |
-
{
|
68 |
-
return $this->id;
|
69 |
-
}
|
70 |
-
|
71 |
-
/**
|
72 |
-
* @param string $id
|
73 |
-
*/
|
74 |
-
public function setId($id)
|
75 |
-
{
|
76 |
-
$this->id = $id;
|
77 |
-
}
|
78 |
-
|
79 |
-
/**
|
80 |
-
* @param string $path
|
81 |
-
* @return AccountData
|
82 |
-
*/
|
83 |
-
public function setPath($path)
|
84 |
-
{
|
85 |
-
$this->path = $path;
|
86 |
-
return $this;
|
87 |
-
}
|
88 |
-
|
89 |
-
/**
|
90 |
-
* @return bool
|
91 |
-
*/
|
92 |
-
public function isInstalled()
|
93 |
-
{
|
94 |
-
return $this->isInstalled;
|
95 |
-
}
|
96 |
-
|
97 |
-
/**
|
98 |
-
* @param bool $isInstalled
|
99 |
-
*/
|
100 |
-
public function setIsInstalled($isInstalled)
|
101 |
-
{
|
102 |
-
$this->isInstalled = $isInstalled;
|
103 |
-
}
|
104 |
-
|
105 |
-
/**
|
106 |
-
* @return bool
|
107 |
-
*/
|
108 |
-
public function isOptedIn()
|
109 |
-
{
|
110 |
-
return $this->isOptedIn;
|
111 |
-
}
|
112 |
-
|
113 |
-
/**
|
114 |
-
* @param bool $isOptedIn
|
115 |
-
*/
|
116 |
-
public function setIsOptedIn($isOptedIn)
|
117 |
-
{
|
118 |
-
$this->isOptedIn = $isOptedIn;
|
119 |
-
}
|
120 |
-
|
121 |
-
/**
|
122 |
-
* @return bool
|
123 |
-
*/
|
124 |
-
public function isSigned()
|
125 |
-
{
|
126 |
-
return $this->isSigned;
|
127 |
-
}
|
128 |
-
|
129 |
-
/**
|
130 |
-
* @param bool $isSigned
|
131 |
-
*/
|
132 |
-
public function setIsSigned($isSigned)
|
133 |
-
{
|
134 |
-
$this->isSigned = $isSigned;
|
135 |
-
}
|
136 |
-
|
137 |
-
/**
|
138 |
-
* @return string
|
139 |
-
*/
|
140 |
-
public function getPath()
|
141 |
-
{
|
142 |
-
return $this->path;
|
143 |
-
}
|
144 |
-
|
145 |
-
/**
|
146 |
-
* @return string
|
147 |
-
*/
|
148 |
-
public function getSecret()
|
149 |
-
{
|
150 |
-
return $this->secret;
|
151 |
-
}
|
152 |
-
|
153 |
-
/**
|
154 |
-
* @param string $secret
|
155 |
-
*/
|
156 |
-
public function setSecret($secret)
|
157 |
-
{
|
158 |
-
$this->secret = $secret;
|
159 |
-
}
|
160 |
-
|
161 |
-
/**
|
162 |
-
* @return bool
|
163 |
-
*/
|
164 |
-
public function isInstallResolved()
|
165 |
-
{
|
166 |
-
return $this->isInstallResolved;
|
167 |
-
}
|
168 |
-
|
169 |
-
/**
|
170 |
-
* @param bool $isInstallResolved
|
171 |
-
*/
|
172 |
-
public function setIsInstallResolved($isInstallResolved)
|
173 |
-
{
|
174 |
-
$this->isInstallResolved = $isInstallResolved;
|
175 |
-
}
|
176 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Account;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Class AccountData is the data holder
|
7 |
+
* for Analyst\Account\Account class
|
8 |
+
* which is unserialized from database
|
9 |
+
*/
|
10 |
+
class AccountData
|
11 |
+
{
|
12 |
+
/**
|
13 |
+
* Account id
|
14 |
+
*
|
15 |
+
* @var string
|
16 |
+
*/
|
17 |
+
protected $id;
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Account secret key
|
21 |
+
*
|
22 |
+
* @var string
|
23 |
+
*/
|
24 |
+
protected $secret;
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Basename of plugin
|
28 |
+
*
|
29 |
+
* @var string
|
30 |
+
*/
|
31 |
+
protected $path;
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Whether admin accepted opt in
|
35 |
+
* terms and permissions
|
36 |
+
*
|
37 |
+
* @var bool
|
38 |
+
*/
|
39 |
+
protected $isInstalled = false;
|
40 |
+
|
41 |
+
/**
|
42 |
+
* Is user sign in for data tracking
|
43 |
+
*
|
44 |
+
* @var bool
|
45 |
+
*/
|
46 |
+
protected $isOptedIn = false;
|
47 |
+
|
48 |
+
/**
|
49 |
+
* Is user accepted permissions grant
|
50 |
+
* for collection site data
|
51 |
+
*
|
52 |
+
* @var bool
|
53 |
+
*/
|
54 |
+
protected $isSigned = false;
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Is user ever resolved install modal window?
|
58 |
+
*
|
59 |
+
* @var bool
|
60 |
+
*/
|
61 |
+
protected $isInstallResolved;
|
62 |
+
|
63 |
+
/**
|
64 |
+
* @return string
|
65 |
+
*/
|
66 |
+
public function getId()
|
67 |
+
{
|
68 |
+
return $this->id;
|
69 |
+
}
|
70 |
+
|
71 |
+
/**
|
72 |
+
* @param string $id
|
73 |
+
*/
|
74 |
+
public function setId($id)
|
75 |
+
{
|
76 |
+
$this->id = $id;
|
77 |
+
}
|
78 |
+
|
79 |
+
/**
|
80 |
+
* @param string $path
|
81 |
+
* @return AccountData
|
82 |
+
*/
|
83 |
+
public function setPath($path)
|
84 |
+
{
|
85 |
+
$this->path = $path;
|
86 |
+
return $this;
|
87 |
+
}
|
88 |
+
|
89 |
+
/**
|
90 |
+
* @return bool
|
91 |
+
*/
|
92 |
+
public function isInstalled()
|
93 |
+
{
|
94 |
+
return $this->isInstalled;
|
95 |
+
}
|
96 |
+
|
97 |
+
/**
|
98 |
+
* @param bool $isInstalled
|
99 |
+
*/
|
100 |
+
public function setIsInstalled($isInstalled)
|
101 |
+
{
|
102 |
+
$this->isInstalled = $isInstalled;
|
103 |
+
}
|
104 |
+
|
105 |
+
/**
|
106 |
+
* @return bool
|
107 |
+
*/
|
108 |
+
public function isOptedIn()
|
109 |
+
{
|
110 |
+
return $this->isOptedIn;
|
111 |
+
}
|
112 |
+
|
113 |
+
/**
|
114 |
+
* @param bool $isOptedIn
|
115 |
+
*/
|
116 |
+
public function setIsOptedIn($isOptedIn)
|
117 |
+
{
|
118 |
+
$this->isOptedIn = $isOptedIn;
|
119 |
+
}
|
120 |
+
|
121 |
+
/**
|
122 |
+
* @return bool
|
123 |
+
*/
|
124 |
+
public function isSigned()
|
125 |
+
{
|
126 |
+
return $this->isSigned;
|
127 |
+
}
|
128 |
+
|
129 |
+
/**
|
130 |
+
* @param bool $isSigned
|
131 |
+
*/
|
132 |
+
public function setIsSigned($isSigned)
|
133 |
+
{
|
134 |
+
$this->isSigned = $isSigned;
|
135 |
+
}
|
136 |
+
|
137 |
+
/**
|
138 |
+
* @return string
|
139 |
+
*/
|
140 |
+
public function getPath()
|
141 |
+
{
|
142 |
+
return $this->path;
|
143 |
+
}
|
144 |
+
|
145 |
+
/**
|
146 |
+
* @return string
|
147 |
+
*/
|
148 |
+
public function getSecret()
|
149 |
+
{
|
150 |
+
return $this->secret;
|
151 |
+
}
|
152 |
+
|
153 |
+
/**
|
154 |
+
* @param string $secret
|
155 |
+
*/
|
156 |
+
public function setSecret($secret)
|
157 |
+
{
|
158 |
+
$this->secret = $secret;
|
159 |
+
}
|
160 |
+
|
161 |
+
/**
|
162 |
+
* @return bool
|
163 |
+
*/
|
164 |
+
public function isInstallResolved()
|
165 |
+
{
|
166 |
+
return $this->isInstallResolved;
|
167 |
+
}
|
168 |
+
|
169 |
+
/**
|
170 |
+
* @param bool $isInstallResolved
|
171 |
+
*/
|
172 |
+
public function setIsInstallResolved($isInstallResolved)
|
173 |
+
{
|
174 |
+
$this->isInstallResolved = $isInstallResolved;
|
175 |
+
}
|
176 |
+
}
|
analyst/src/Account/AccountDataFactory.php
CHANGED
@@ -1,125 +1,125 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Account;
|
4 |
-
|
5 |
-
|
6 |
-
use Analyst\Core\AbstractFactory;
|
7 |
-
|
8 |
-
/**
|
9 |
-
* Class AccountDataFactory
|
10 |
-
*
|
11 |
-
* Holds information about this
|
12 |
-
* wordpress project plugins accounts
|
13 |
-
*
|
14 |
-
*/
|
15 |
-
class AccountDataFactory extends AbstractFactory
|
16 |
-
{
|
17 |
-
private static $instance;
|
18 |
-
|
19 |
-
CONST OPTIONS_KEY = 'analyst_accounts_data';
|
20 |
-
|
21 |
-
/**
|
22 |
-
* @var AccountData[]
|
23 |
-
*/
|
24 |
-
protected $accounts = [];
|
25 |
-
|
26 |
-
/**
|
27 |
-
* Read factory from options or make fresh instance
|
28 |
-
*
|
29 |
-
* @return static
|
30 |
-
*/
|
31 |
-
public static function instance()
|
32 |
-
{
|
33 |
-
if (!static::$instance) {
|
34 |
-
$raw = get_option(self::OPTIONS_KEY);
|
35 |
-
|
36 |
-
// In case object is already unserialized
|
37 |
-
// and instance of AccountDataFactory we
|
38 |
-
// return it, in other case deal with
|
39 |
-
// serialized string data
|
40 |
-
if ($raw instanceof self) {
|
41 |
-
static::$instance = $raw;
|
42 |
-
} else {
|
43 |
-
static::$instance = is_string($raw) ? static::unserialize($raw) : new self();
|
44 |
-
}
|
45 |
-
}
|
46 |
-
|
47 |
-
return static::$instance;
|
48 |
-
}
|
49 |
-
|
50 |
-
/**
|
51 |
-
* Sync this object data with cache
|
52 |
-
*/
|
53 |
-
public function sync()
|
54 |
-
{
|
55 |
-
update_option(self::OPTIONS_KEY, serialize($this));
|
56 |
-
}
|
57 |
-
|
58 |
-
/**
|
59 |
-
* Sync this instance data with cache
|
60 |
-
*/
|
61 |
-
public static function syncData()
|
62 |
-
{
|
63 |
-
static::instance()->sync();
|
64 |
-
}
|
65 |
-
|
66 |
-
/**
|
67 |
-
* Find plugin account data or create fresh one
|
68 |
-
*
|
69 |
-
* @param Account $account
|
70 |
-
* @return AccountData|null
|
71 |
-
*/
|
72 |
-
public function resolvePluginAccountData(Account $account)
|
73 |
-
{
|
74 |
-
$accountData = $this->findAccountDataById($account->getId());
|
75 |
-
|
76 |
-
if (!$accountData) {
|
77 |
-
$accountData = new AccountData();
|
78 |
-
|
79 |
-
// Set proper default values
|
80 |
-
$accountData->setPath($account->getPath());
|
81 |
-
$accountData->setId($account->getId());
|
82 |
-
$accountData->setSecret($account->getClientSecret());
|
83 |
-
|
84 |
-
array_push($this->accounts, $accountData);
|
85 |
-
}
|
86 |
-
|
87 |
-
return $accountData;
|
88 |
-
}
|
89 |
-
|
90 |
-
/**
|
91 |
-
* Should return account data by base path
|
92 |
-
*
|
93 |
-
* @param $basePath
|
94 |
-
* @return AccountData
|
95 |
-
*/
|
96 |
-
public function getAccountDataByBasePath($basePath)
|
97 |
-
{
|
98 |
-
foreach ($this->accounts as $iterable) {
|
99 |
-
$iterableBasePath = plugin_basename($iterable->getPath());
|
100 |
-
|
101 |
-
if ($iterableBasePath === $basePath) {
|
102 |
-
return $iterable;
|
103 |
-
}
|
104 |
-
}
|
105 |
-
|
106 |
-
return null;
|
107 |
-
}
|
108 |
-
|
109 |
-
/**
|
110 |
-
* Return account by id
|
111 |
-
*
|
112 |
-
* @param $id
|
113 |
-
* @return AccountData|null
|
114 |
-
*/
|
115 |
-
private function findAccountDataById($id)
|
116 |
-
{
|
117 |
-
foreach ($this->accounts as &$iterable) {
|
118 |
-
if ($iterable->getId() === $id) {
|
119 |
-
return $iterable;
|
120 |
-
}
|
121 |
-
}
|
122 |
-
|
123 |
-
return null;
|
124 |
-
}
|
125 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Account;
|
4 |
+
|
5 |
+
|
6 |
+
use Analyst\Core\AbstractFactory;
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Class AccountDataFactory
|
10 |
+
*
|
11 |
+
* Holds information about this
|
12 |
+
* wordpress project plugins accounts
|
13 |
+
*
|
14 |
+
*/
|
15 |
+
class AccountDataFactory extends AbstractFactory
|
16 |
+
{
|
17 |
+
private static $instance;
|
18 |
+
|
19 |
+
CONST OPTIONS_KEY = 'analyst_accounts_data';
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @var AccountData[]
|
23 |
+
*/
|
24 |
+
protected $accounts = [];
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Read factory from options or make fresh instance
|
28 |
+
*
|
29 |
+
* @return static
|
30 |
+
*/
|
31 |
+
public static function instance()
|
32 |
+
{
|
33 |
+
if (!static::$instance) {
|
34 |
+
$raw = get_option(self::OPTIONS_KEY);
|
35 |
+
|
36 |
+
// In case object is already unserialized
|
37 |
+
// and instance of AccountDataFactory we
|
38 |
+
// return it, in other case deal with
|
39 |
+
// serialized string data
|
40 |
+
if ($raw instanceof self) {
|
41 |
+
static::$instance = $raw;
|
42 |
+
} else {
|
43 |
+
static::$instance = is_string($raw) ? static::unserialize($raw) : new self();
|
44 |
+
}
|
45 |
+
}
|
46 |
+
|
47 |
+
return static::$instance;
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Sync this object data with cache
|
52 |
+
*/
|
53 |
+
public function sync()
|
54 |
+
{
|
55 |
+
update_option(self::OPTIONS_KEY, serialize($this));
|
56 |
+
}
|
57 |
+
|
58 |
+
/**
|
59 |
+
* Sync this instance data with cache
|
60 |
+
*/
|
61 |
+
public static function syncData()
|
62 |
+
{
|
63 |
+
static::instance()->sync();
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Find plugin account data or create fresh one
|
68 |
+
*
|
69 |
+
* @param Account $account
|
70 |
+
* @return AccountData|null
|
71 |
+
*/
|
72 |
+
public function resolvePluginAccountData(Account $account)
|
73 |
+
{
|
74 |
+
$accountData = $this->findAccountDataById($account->getId());
|
75 |
+
|
76 |
+
if (!$accountData) {
|
77 |
+
$accountData = new AccountData();
|
78 |
+
|
79 |
+
// Set proper default values
|
80 |
+
$accountData->setPath($account->getPath());
|
81 |
+
$accountData->setId($account->getId());
|
82 |
+
$accountData->setSecret($account->getClientSecret());
|
83 |
+
|
84 |
+
array_push($this->accounts, $accountData);
|
85 |
+
}
|
86 |
+
|
87 |
+
return $accountData;
|
88 |
+
}
|
89 |
+
|
90 |
+
/**
|
91 |
+
* Should return account data by base path
|
92 |
+
*
|
93 |
+
* @param $basePath
|
94 |
+
* @return AccountData
|
95 |
+
*/
|
96 |
+
public function getAccountDataByBasePath($basePath)
|
97 |
+
{
|
98 |
+
foreach ($this->accounts as $iterable) {
|
99 |
+
$iterableBasePath = plugin_basename($iterable->getPath());
|
100 |
+
|
101 |
+
if ($iterableBasePath === $basePath) {
|
102 |
+
return $iterable;
|
103 |
+
}
|
104 |
+
}
|
105 |
+
|
106 |
+
return null;
|
107 |
+
}
|
108 |
+
|
109 |
+
/**
|
110 |
+
* Return account by id
|
111 |
+
*
|
112 |
+
* @param $id
|
113 |
+
* @return AccountData|null
|
114 |
+
*/
|
115 |
+
private function findAccountDataById($id)
|
116 |
+
{
|
117 |
+
foreach ($this->accounts as &$iterable) {
|
118 |
+
if ($iterable->getId() === $id) {
|
119 |
+
return $iterable;
|
120 |
+
}
|
121 |
+
}
|
122 |
+
|
123 |
+
return null;
|
124 |
+
}
|
125 |
+
}
|
analyst/src/Analyst.php
CHANGED
@@ -1,167 +1,167 @@
|
|
1 |
-
<?php
|
2 |
-
namespace Analyst;
|
3 |
-
|
4 |
-
use Account\Account;
|
5 |
-
use Account\AccountDataFactory;
|
6 |
-
use Analyst\Contracts\AnalystContract;
|
7 |
-
use Analyst\Contracts\RequestorContract;
|
8 |
-
|
9 |
-
class Analyst implements AnalystContract
|
10 |
-
{
|
11 |
-
/**
|
12 |
-
* All plugin's accounts
|
13 |
-
*
|
14 |
-
* @var array
|
15 |
-
*/
|
16 |
-
protected $accounts = array();
|
17 |
-
|
18 |
-
/**
|
19 |
-
* @var Mutator
|
20 |
-
*/
|
21 |
-
protected $mutator;
|
22 |
-
|
23 |
-
/**
|
24 |
-
* @var AccountDataFactory
|
25 |
-
*/
|
26 |
-
protected $accountDataFactory;
|
27 |
-
|
28 |
-
/**
|
29 |
-
* Base url to api
|
30 |
-
*
|
31 |
-
* @var string
|
32 |
-
*/
|
33 |
-
protected $apiBase = 'https://feedback.sellcodes.com/api/v1';
|
34 |
-
|
35 |
-
/**
|
36 |
-
* @var Collector
|
37 |
-
*/
|
38 |
-
protected $collector;
|
39 |
-
|
40 |
-
/**
|
41 |
-
* Singleton instance
|
42 |
-
*
|
43 |
-
* @var static
|
44 |
-
*/
|
45 |
-
protected static $instance;
|
46 |
-
|
47 |
-
/**
|
48 |
-
* Get instance of analyst
|
49 |
-
*
|
50 |
-
* @return Analyst
|
51 |
-
* @throws \Exception
|
52 |
-
*/
|
53 |
-
public static function getInstance()
|
54 |
-
{
|
55 |
-
if (!static::$instance) {
|
56 |
-
static::$instance = new Analyst();
|
57 |
-
}
|
58 |
-
|
59 |
-
return static::$instance;
|
60 |
-
}
|
61 |
-
|
62 |
-
protected function __construct()
|
63 |
-
{
|
64 |
-
$this->mutator = new Mutator();
|
65 |
-
|
66 |
-
$this->accountDataFactory = AccountDataFactory::instance();
|
67 |
-
|
68 |
-
$this->mutator->initialize();
|
69 |
-
|
70 |
-
$this->collector = new Collector($this);
|
71 |
-
|
72 |
-
$this->initialize();
|
73 |
-
}
|
74 |
-
|
75 |
-
/**
|
76 |
-
* Initialize rest of application
|
77 |
-
*/
|
78 |
-
public function initialize()
|
79 |
-
{
|
80 |
-
add_action('init', function () {
|
81 |
-
$this->collector->loadCurrentUser();
|
82 |
-
});
|
83 |
-
}
|
84 |
-
|
85 |
-
/**
|
86 |
-
* Register new account
|
87 |
-
*
|
88 |
-
* @param Account $account
|
89 |
-
* @return Analyst
|
90 |
-
* @throws \Exception
|
91 |
-
*/
|
92 |
-
public function registerAccount($account)
|
93 |
-
{
|
94 |
-
// Stop propagation when account is already registered
|
95 |
-
if ($this->isAccountRegistered($account)) {
|
96 |
-
return $this;
|
97 |
-
}
|
98 |
-
|
99 |
-
// Resolve account data from factory
|
100 |
-
$accountData = $this->accountDataFactory->resolvePluginAccountData($account);
|
101 |
-
|
102 |
-
$account->setData($accountData);
|
103 |
-
|
104 |
-
$account->setRequestor(
|
105 |
-
$this->resolveRequestorForAccount($account)
|
106 |
-
);
|
107 |
-
|
108 |
-
$account->setCollector($this->collector);
|
109 |
-
|
110 |
-
$account->registerHooks();
|
111 |
-
|
112 |
-
$this->accounts[$account->getId()] = $account;
|
113 |
-
|
114 |
-
return $this;
|
115 |
-
}
|
116 |
-
|
117 |
-
/**
|
118 |
-
* Must return version of analyst
|
119 |
-
*
|
120 |
-
* @return string
|
121 |
-
*/
|
122 |
-
public static function version()
|
123 |
-
{
|
124 |
-
$version = require __DIR__ . '/../version.php';
|
125 |
-
|
126 |
-
return $version['sdk'];
|
127 |
-
}
|
128 |
-
|
129 |
-
/**
|
130 |
-
* Is this account registered
|
131 |
-
*
|
132 |
-
* @param Account $account
|
133 |
-
* @return bool
|
134 |
-
*/
|
135 |
-
protected function isAccountRegistered($account)
|
136 |
-
{
|
137 |
-
return isset($this->accounts[$account->getId()]);
|
138 |
-
}
|
139 |
-
|
140 |
-
/**
|
141 |
-
* Resolves requestor for account
|
142 |
-
*
|
143 |
-
* @param Account $account
|
144 |
-
* @return RequestorContract
|
145 |
-
* @throws \Exception
|
146 |
-
*/
|
147 |
-
protected function resolveRequestorForAccount(Account $account)
|
148 |
-
{
|
149 |
-
$requestor = new ApiRequestor($account->getId(), $account->getClientSecret(), $this->apiBase);
|
150 |
-
|
151 |
-
// Set SDK version
|
152 |
-
$requestor->setDefaultHeader(
|
153 |
-
'x-analyst-client-user-agent',
|
154 |
-
sprintf('Analyst/%s', $this->version())
|
155 |
-
);
|
156 |
-
|
157 |
-
return $requestor;
|
158 |
-
}
|
159 |
-
|
160 |
-
/**
|
161 |
-
* @return string
|
162 |
-
*/
|
163 |
-
public function getApiBase()
|
164 |
-
{
|
165 |
-
return $this->apiBase;
|
166 |
-
}
|
167 |
-
}
|
1 |
+
<?php
|
2 |
+
namespace Analyst;
|
3 |
+
|
4 |
+
use Account\Account;
|
5 |
+
use Account\AccountDataFactory;
|
6 |
+
use Analyst\Contracts\AnalystContract;
|
7 |
+
use Analyst\Contracts\RequestorContract;
|
8 |
+
|
9 |
+
class Analyst implements AnalystContract
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* All plugin's accounts
|
13 |
+
*
|
14 |
+
* @var array
|
15 |
+
*/
|
16 |
+
protected $accounts = array();
|
17 |
+
|
18 |
+
/**
|
19 |
+
* @var Mutator
|
20 |
+
*/
|
21 |
+
protected $mutator;
|
22 |
+
|
23 |
+
/**
|
24 |
+
* @var AccountDataFactory
|
25 |
+
*/
|
26 |
+
protected $accountDataFactory;
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Base url to api
|
30 |
+
*
|
31 |
+
* @var string
|
32 |
+
*/
|
33 |
+
protected $apiBase = 'https://feedback.sellcodes.com/api/v1';
|
34 |
+
|
35 |
+
/**
|
36 |
+
* @var Collector
|
37 |
+
*/
|
38 |
+
protected $collector;
|
39 |
+
|
40 |
+
/**
|
41 |
+
* Singleton instance
|
42 |
+
*
|
43 |
+
* @var static
|
44 |
+
*/
|
45 |
+
protected static $instance;
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Get instance of analyst
|
49 |
+
*
|
50 |
+
* @return Analyst
|
51 |
+
* @throws \Exception
|
52 |
+
*/
|
53 |
+
public static function getInstance()
|
54 |
+
{
|
55 |
+
if (!static::$instance) {
|
56 |
+
static::$instance = new Analyst();
|
57 |
+
}
|
58 |
+
|
59 |
+
return static::$instance;
|
60 |
+
}
|
61 |
+
|
62 |
+
protected function __construct()
|
63 |
+
{
|
64 |
+
$this->mutator = new Mutator();
|
65 |
+
|
66 |
+
$this->accountDataFactory = AccountDataFactory::instance();
|
67 |
+
|
68 |
+
$this->mutator->initialize();
|
69 |
+
|
70 |
+
$this->collector = new Collector($this);
|
71 |
+
|
72 |
+
$this->initialize();
|
73 |
+
}
|
74 |
+
|
75 |
+
/**
|
76 |
+
* Initialize rest of application
|
77 |
+
*/
|
78 |
+
public function initialize()
|
79 |
+
{
|
80 |
+
add_action('init', function () {
|
81 |
+
$this->collector->loadCurrentUser();
|
82 |
+
});
|
83 |
+
}
|
84 |
+
|
85 |
+
/**
|
86 |
+
* Register new account
|
87 |
+
*
|
88 |
+
* @param Account $account
|
89 |
+
* @return Analyst
|
90 |
+
* @throws \Exception
|
91 |
+
*/
|
92 |
+
public function registerAccount($account)
|
93 |
+
{
|
94 |
+
// Stop propagation when account is already registered
|
95 |
+
if ($this->isAccountRegistered($account)) {
|
96 |
+
return $this;
|
97 |
+
}
|
98 |
+
|
99 |
+
// Resolve account data from factory
|
100 |
+
$accountData = $this->accountDataFactory->resolvePluginAccountData($account);
|
101 |
+
|
102 |
+
$account->setData($accountData);
|
103 |
+
|
104 |
+
$account->setRequestor(
|
105 |
+
$this->resolveRequestorForAccount($account)
|
106 |
+
);
|
107 |
+
|
108 |
+
$account->setCollector($this->collector);
|
109 |
+
|
110 |
+
$account->registerHooks();
|
111 |
+
|
112 |
+
$this->accounts[$account->getId()] = $account;
|
113 |
+
|
114 |
+
return $this;
|
115 |
+
}
|
116 |
+
|
117 |
+
/**
|
118 |
+
* Must return version of analyst
|
119 |
+
*
|
120 |
+
* @return string
|
121 |
+
*/
|
122 |
+
public static function version()
|
123 |
+
{
|
124 |
+
$version = require __DIR__ . '/../version.php';
|
125 |
+
|
126 |
+
return $version['sdk'];
|
127 |
+
}
|
128 |
+
|
129 |
+
/**
|
130 |
+
* Is this account registered
|
131 |
+
*
|
132 |
+
* @param Account $account
|
133 |
+
* @return bool
|
134 |
+
*/
|
135 |
+
protected function isAccountRegistered($account)
|
136 |
+
{
|
137 |
+
return isset($this->accounts[$account->getId()]);
|
138 |
+
}
|
139 |
+
|
140 |
+
/**
|
141 |
+
* Resolves requestor for account
|
142 |
+
*
|
143 |
+
* @param Account $account
|
144 |
+
* @return RequestorContract
|
145 |
+
* @throws \Exception
|
146 |
+
*/
|
147 |
+
protected function resolveRequestorForAccount(Account $account)
|
148 |
+
{
|
149 |
+
$requestor = new ApiRequestor($account->getId(), $account->getClientSecret(), $this->apiBase);
|
150 |
+
|
151 |
+
// Set SDK version
|
152 |
+
$requestor->setDefaultHeader(
|
153 |
+
'x-analyst-client-user-agent',
|
154 |
+
sprintf('Analyst/%s', $this->version())
|
155 |
+
);
|
156 |
+
|
157 |
+
return $requestor;
|
158 |
+
}
|
159 |
+
|
160 |
+
/**
|
161 |
+
* @return string
|
162 |
+
*/
|
163 |
+
public function getApiBase()
|
164 |
+
{
|
165 |
+
return $this->apiBase;
|
166 |
+
}
|
167 |
+
}
|
analyst/src/ApiRequestor.php
CHANGED
@@ -1,257 +1,257 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst;
|
4 |
-
|
5 |
-
use Exception;
|
6 |
-
use Analyst\Contracts\HttpClientContract;
|
7 |
-
use Analyst\Contracts\RequestorContract;
|
8 |
-
|
9 |
-
class ApiRequestor implements RequestorContract
|
10 |
-
{
|
11 |
-
/**
|
12 |
-
* Supported http client
|
13 |
-
*
|
14 |
-
* @var HttpClientContract
|
15 |
-
*/
|
16 |
-
protected $httpClient;
|
17 |
-
|
18 |
-
/**
|
19 |
-
* @var string
|
20 |
-
*/
|
21 |
-
protected $clientId;
|
22 |
-
|
23 |
-
/**
|
24 |
-
* @var string
|
25 |
-
*/
|
26 |
-
protected $clientSecret;
|
27 |
-
|
28 |
-
/**
|
29 |
-
* @var string
|
30 |
-
*/
|
31 |
-
protected $apiBase;
|
32 |
-
|
33 |
-
/**
|
34 |
-
* Default headers to be sent
|
35 |
-
*
|
36 |
-
* @var array
|
37 |
-
*/
|
38 |
-
protected $defaultHeaders = [
|
39 |
-
'accept' => 'application/json',
|
40 |
-
'content-type' => 'application/json'
|
41 |
-
];
|
42 |
-
|
43 |
-
/**
|
44 |
-
* Prioritized http clients
|
45 |
-
*
|
46 |
-
* @var array
|
47 |
-
*/
|
48 |
-
protected $availableClients = [
|
49 |
-
'Analyst\Http\WordPressHttpClient',
|
50 |
-
'Analyst\Http\CurlHttpClient',
|
51 |
-
'Analyst\Http\DummyHttpClient',
|
52 |
-
];
|
53 |
-
|
54 |
-
/**
|
55 |
-
* ApiRequestor constructor.
|
56 |
-
* @param $id
|
57 |
-
* @param $secret
|
58 |
-
* @param $apiBase
|
59 |
-
* @throws \Exception
|
60 |
-
*/
|
61 |
-
public function __construct($id, $secret, $apiBase)
|
62 |
-
{
|
63 |
-
$this->clientId = $id;
|
64 |
-
$this->clientSecret = $secret;
|
65 |
-
|
66 |
-
$this->setApiBase($apiBase);
|
67 |
-
|
68 |
-
$this->httpClient = $this->resolveHttpClient();
|
69 |
-
}
|
70 |
-
|
71 |
-
/**
|
72 |
-
* Set api base url
|
73 |
-
*
|
74 |
-
* @param $url
|
75 |
-
*/
|
76 |
-
public function setApiBase($url)
|
77 |
-
{
|
78 |
-
$this->apiBase = $url;
|
79 |
-
}
|
80 |
-
|
81 |
-
/**
|
82 |
-
* Get request
|
83 |
-
*
|
84 |
-
* @param $url
|
85 |
-
* @param array $headers
|
86 |
-
* @return mixed
|
87 |
-
*/
|
88 |
-
public function get($url, $headers = [])
|
89 |
-
{
|
90 |
-
return $this->request('GET', $url, null, $headers);
|
91 |
-
}
|
92 |
-
|
93 |
-
/**
|
94 |
-
* Post request
|
95 |
-
*
|
96 |
-
* @param $url
|
97 |
-
* @param $body
|
98 |
-
* @param array $headers
|
99 |
-
* @return mixed
|
100 |
-
*/
|
101 |
-
public function post($url, $body = [], $headers = [])
|
102 |
-
{
|
103 |
-
return $this->request('POST', $url, $body, $headers);
|
104 |
-
}
|
105 |
-
|
106 |
-
/**
|
107 |
-
* Put request
|
108 |
-
*
|
109 |
-
* @param $url
|
110 |
-
* @param $body
|
111 |
-
* @param array $headers
|
112 |
-
* @return mixed
|
113 |
-
*/
|
114 |
-
public function put($url, $body = [], $headers = [])
|
115 |
-
{
|
116 |
-
return $this->request('PUT', $url, $body, $headers);
|
117 |
-
}
|
118 |
-
|
119 |
-
/**
|
120 |
-
* Delete request
|
121 |
-
*
|
122 |
-
* @param $url
|
123 |
-
* @param array $headers
|
124 |
-
* @return mixed
|
125 |
-
*/
|
126 |
-
public function delete($url, $headers = [])
|
127 |
-
{
|
128 |
-
return $this->request('DELETE', $url, null, $headers);
|
129 |
-
}
|
130 |
-
|
131 |
-
/**
|
132 |
-
* Make request to api
|
133 |
-
*
|
134 |
-
* @param $method
|
135 |
-
* @param $url
|
136 |
-
* @param array $body
|
137 |
-
* @param array $headers
|
138 |
-
* @return mixed
|
139 |
-
*/
|
140 |
-
protected function request($method, $url, $body = [], $headers = [])
|
141 |
-
{
|
142 |
-
$fullUrl = $this->resolveFullUrl($url);
|
143 |
-
|
144 |
-
$date = date('r', time());
|
145 |
-
|
146 |
-
$headers['date'] = $date;
|
147 |
-
$headers['signature'] = $this->resolveSignature($this->clientSecret, $method, $fullUrl, $body, $date);
|
148 |
-
|
149 |
-
// Lowercase header names
|
150 |
-
$headers = $this->prepareHeaders(
|
151 |
-
array_merge($headers, $this->defaultHeaders)
|
152 |
-
);
|
153 |
-
|
154 |
-
$response = $this->httpClient->request($method, $fullUrl, $body, $headers);
|
155 |
-
|
156 |
-
// TODO: Check response code and take actions
|
157 |
-
|
158 |
-
return $response;
|
159 |
-
}
|
160 |
-
|
161 |
-
/**
|
162 |
-
* Set one default header
|
163 |
-
*
|
164 |
-
* @param $header
|
165 |
-
* @param $value
|
166 |
-
*/
|
167 |
-
public function setDefaultHeader($header, $value)
|
168 |
-
{
|
169 |
-
$this->defaultHeaders[
|
170 |
-
$this->resolveValidHeaderName($header)
|
171 |
-
] = $value;
|
172 |
-
}
|
173 |
-
|
174 |
-
/**
|
175 |
-
* Resolves supported http client
|
176 |
-
*
|
177 |
-
* @return HttpClientContract
|
178 |
-
* @throws Exception
|
179 |
-
*/
|
180 |
-
protected function resolveHttpClient()
|
181 |
-
{
|
182 |
-
$clients = array_filter($this->availableClients, $this->guessClientSupportEnvironment());
|
183 |
-
|
184 |
-
if (!isset($clients[0])) {
|
185 |
-
throw new Exception('There is no http client which this application can support');
|
186 |
-
}
|
187 |
-
|
188 |
-
// Instantiate first supported http client
|
189 |
-
return new $clients[0];
|
190 |
-
}
|
191 |
-
|
192 |
-
/**
|
193 |
-
* This will filter out clients which is not supported
|
194 |
-
* by the current environment
|
195 |
-
*
|
196 |
-
* @return \Closure
|
197 |
-
*/
|
198 |
-
protected function guessClientSupportEnvironment()
|
199 |
-
{
|
200 |
-
return function ($client) {
|
201 |
-
return forward_static_call([$client, 'hasSupport']);
|
202 |
-
};
|
203 |
-
}
|
204 |
-
|
205 |
-
/**
|
206 |
-
* Resolves valid header name
|
207 |
-
*
|
208 |
-
* @param $headerName
|
209 |
-
* @return string
|
210 |
-
*/
|
211 |
-
private function resolveValidHeaderName($headerName)
|
212 |
-
{
|
213 |
-
return strtolower($headerName);
|
214 |
-
}
|
215 |
-
|
216 |
-
/**
|
217 |
-
* Lowercase header names
|
218 |
-
*
|
219 |
-
* @param $headers
|
220 |
-
* @return array
|
221 |
-
*/
|
222 |
-
private function prepareHeaders($headers)
|
223 |
-
{
|
224 |
-
return array_change_key_case($headers, CASE_LOWER);
|
225 |
-
}
|
226 |
-
|
227 |
-
/**
|
228 |
-
* Sign request
|
229 |
-
*
|
230 |
-
* @param $key
|
231 |
-
* @param $method
|
232 |
-
* @param $url
|
233 |
-
* @param $body
|
234 |
-
* @param $date
|
235 |
-
*
|
236 |
-
* @return false|string
|
237 |
-
*/
|
238 |
-
private function resolveSignature($key, $method, $url, $body, $date)
|
239 |
-
{
|
240 |
-
$string = implode('\n', [$method, $url, md5(json_encode($body)), $date]);
|
241 |
-
|
242 |
-
$contentSecret = hash_hmac('sha256', $string, $key);
|
243 |
-
|
244 |
-
return sprintf('%s:%s', $this->clientId, $contentSecret);
|
245 |
-
}
|
246 |
-
|
247 |
-
/**
|
248 |
-
* Compose full url
|
249 |
-
*
|
250 |
-
* @param $url
|
251 |
-
* @return string
|
252 |
-
*/
|
253 |
-
private function resolveFullUrl($url)
|
254 |
-
{
|
255 |
-
return sprintf('%s/%s', $this->apiBase, trim($url, '/'));
|
256 |
-
}
|
257 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst;
|
4 |
+
|
5 |
+
use Exception;
|
6 |
+
use Analyst\Contracts\HttpClientContract;
|
7 |
+
use Analyst\Contracts\RequestorContract;
|
8 |
+
|
9 |
+
class ApiRequestor implements RequestorContract
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* Supported http client
|
13 |
+
*
|
14 |
+
* @var HttpClientContract
|
15 |
+
*/
|
16 |
+
protected $httpClient;
|
17 |
+
|
18 |
+
/**
|
19 |
+
* @var string
|
20 |
+
*/
|
21 |
+
protected $clientId;
|
22 |
+
|
23 |
+
/**
|
24 |
+
* @var string
|
25 |
+
*/
|
26 |
+
protected $clientSecret;
|
27 |
+
|
28 |
+
/**
|
29 |
+
* @var string
|
30 |
+
*/
|
31 |
+
protected $apiBase;
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Default headers to be sent
|
35 |
+
*
|
36 |
+
* @var array
|
37 |
+
*/
|
38 |
+
protected $defaultHeaders = [
|
39 |
+
'accept' => 'application/json',
|
40 |
+
'content-type' => 'application/json'
|
41 |
+
];
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Prioritized http clients
|
45 |
+
*
|
46 |
+
* @var array
|
47 |
+
*/
|
48 |
+
protected $availableClients = [
|
49 |
+
'Analyst\Http\WordPressHttpClient',
|
50 |
+
'Analyst\Http\CurlHttpClient',
|
51 |
+
'Analyst\Http\DummyHttpClient',
|
52 |
+
];
|
53 |
+
|
54 |
+
/**
|
55 |
+
* ApiRequestor constructor.
|
56 |
+
* @param $id
|
57 |
+
* @param $secret
|
58 |
+
* @param $apiBase
|
59 |
+
* @throws \Exception
|
60 |
+
*/
|
61 |
+
public function __construct($id, $secret, $apiBase)
|
62 |
+
{
|
63 |
+
$this->clientId = $id;
|
64 |
+
$this->clientSecret = $secret;
|
65 |
+
|
66 |
+
$this->setApiBase($apiBase);
|
67 |
+
|
68 |
+
$this->httpClient = $this->resolveHttpClient();
|
69 |
+
}
|
70 |
+
|
71 |
+
/**
|
72 |
+
* Set api base url
|
73 |
+
*
|
74 |
+
* @param $url
|
75 |
+
*/
|
76 |
+
public function setApiBase($url)
|
77 |
+
{
|
78 |
+
$this->apiBase = $url;
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* Get request
|
83 |
+
*
|
84 |
+
* @param $url
|
85 |
+
* @param array $headers
|
86 |
+
* @return mixed
|
87 |
+
*/
|
88 |
+
public function get($url, $headers = [])
|
89 |
+
{
|
90 |
+
return $this->request('GET', $url, null, $headers);
|
91 |
+
}
|
92 |
+
|
93 |
+
/**
|
94 |
+
* Post request
|
95 |
+
*
|
96 |
+
* @param $url
|
97 |
+
* @param $body
|
98 |
+
* @param array $headers
|
99 |
+
* @return mixed
|
100 |
+
*/
|
101 |
+
public function post($url, $body = [], $headers = [])
|
102 |
+
{
|
103 |
+
return $this->request('POST', $url, $body, $headers);
|
104 |
+
}
|
105 |
+
|
106 |
+
/**
|
107 |
+
* Put request
|
108 |
+
*
|
109 |
+
* @param $url
|
110 |
+
* @param $body
|
111 |
+
* @param array $headers
|
112 |
+
* @return mixed
|
113 |
+
*/
|
114 |
+
public function put($url, $body = [], $headers = [])
|
115 |
+
{
|
116 |
+
return $this->request('PUT', $url, $body, $headers);
|
117 |
+
}
|
118 |
+
|
119 |
+
/**
|
120 |
+
* Delete request
|
121 |
+
*
|
122 |
+
* @param $url
|
123 |
+
* @param array $headers
|
124 |
+
* @return mixed
|
125 |
+
*/
|
126 |
+
public function delete($url, $headers = [])
|
127 |
+
{
|
128 |
+
return $this->request('DELETE', $url, null, $headers);
|
129 |
+
}
|
130 |
+
|
131 |
+
/**
|
132 |
+
* Make request to api
|
133 |
+
*
|
134 |
+
* @param $method
|
135 |
+
* @param $url
|
136 |
+
* @param array $body
|
137 |
+
* @param array $headers
|
138 |
+
* @return mixed
|
139 |
+
*/
|
140 |
+
protected function request($method, $url, $body = [], $headers = [])
|
141 |
+
{
|
142 |
+
$fullUrl = $this->resolveFullUrl($url);
|
143 |
+
|
144 |
+
$date = date('r', time());
|
145 |
+
|
146 |
+
$headers['date'] = $date;
|
147 |
+
$headers['signature'] = $this->resolveSignature($this->clientSecret, $method, $fullUrl, $body, $date);
|
148 |
+
|
149 |
+
// Lowercase header names
|
150 |
+
$headers = $this->prepareHeaders(
|
151 |
+
array_merge($headers, $this->defaultHeaders)
|
152 |
+
);
|
153 |
+
|
154 |
+
$response = $this->httpClient->request($method, $fullUrl, $body, $headers);
|
155 |
+
|
156 |
+
// TODO: Check response code and take actions
|
157 |
+
|
158 |
+
return $response;
|
159 |
+
}
|
160 |
+
|
161 |
+
/**
|
162 |
+
* Set one default header
|
163 |
+
*
|
164 |
+
* @param $header
|
165 |
+
* @param $value
|
166 |
+
*/
|
167 |
+
public function setDefaultHeader($header, $value)
|
168 |
+
{
|
169 |
+
$this->defaultHeaders[
|
170 |
+
$this->resolveValidHeaderName($header)
|
171 |
+
] = $value;
|
172 |
+
}
|
173 |
+
|
174 |
+
/**
|
175 |
+
* Resolves supported http client
|
176 |
+
*
|
177 |
+
* @return HttpClientContract
|
178 |
+
* @throws Exception
|
179 |
+
*/
|
180 |
+
protected function resolveHttpClient()
|
181 |
+
{
|
182 |
+
$clients = array_filter($this->availableClients, $this->guessClientSupportEnvironment());
|
183 |
+
|
184 |
+
if (!isset($clients[0])) {
|
185 |
+
throw new Exception('There is no http client which this application can support');
|
186 |
+
}
|
187 |
+
|
188 |
+
// Instantiate first supported http client
|
189 |
+
return new $clients[0];
|
190 |
+
}
|
191 |
+
|
192 |
+
/**
|
193 |
+
* This will filter out clients which is not supported
|
194 |
+
* by the current environment
|
195 |
+
*
|
196 |
+
* @return \Closure
|
197 |
+
*/
|
198 |
+
protected function guessClientSupportEnvironment()
|
199 |
+
{
|
200 |
+
return function ($client) {
|
201 |
+
return forward_static_call([$client, 'hasSupport']);
|
202 |
+
};
|
203 |
+
}
|
204 |
+
|
205 |
+
/**
|
206 |
+
* Resolves valid header name
|
207 |
+
*
|
208 |
+
* @param $headerName
|
209 |
+
* @return string
|
210 |
+
*/
|
211 |
+
private function resolveValidHeaderName($headerName)
|
212 |
+
{
|
213 |
+
return strtolower($headerName);
|
214 |
+
}
|
215 |
+
|
216 |
+
/**
|
217 |
+
* Lowercase header names
|
218 |
+
*
|
219 |
+
* @param $headers
|
220 |
+
* @return array
|
221 |
+
*/
|
222 |
+
private function prepareHeaders($headers)
|
223 |
+
{
|
224 |
+
return array_change_key_case($headers, CASE_LOWER);
|
225 |
+
}
|
226 |
+
|
227 |
+
/**
|
228 |
+
* Sign request
|
229 |
+
*
|
230 |
+
* @param $key
|
231 |
+
* @param $method
|
232 |
+
* @param $url
|
233 |
+
* @param $body
|
234 |
+
* @param $date
|
235 |
+
*
|
236 |
+
* @return false|string
|
237 |
+
*/
|
238 |
+
private function resolveSignature($key, $method, $url, $body, $date)
|
239 |
+
{
|
240 |
+
$string = implode('\n', [$method, $url, md5(json_encode($body)), $date]);
|
241 |
+
|
242 |
+
$contentSecret = hash_hmac('sha256', $string, $key);
|
243 |
+
|
244 |
+
return sprintf('%s:%s', $this->clientId, $contentSecret);
|
245 |
+
}
|
246 |
+
|
247 |
+
/**
|
248 |
+
* Compose full url
|
249 |
+
*
|
250 |
+
* @param $url
|
251 |
+
* @return string
|
252 |
+
*/
|
253 |
+
private function resolveFullUrl($url)
|
254 |
+
{
|
255 |
+
return sprintf('%s/%s', $this->apiBase, trim($url, '/'));
|
256 |
+
}
|
257 |
+
}
|
analyst/src/ApiResponse.php
CHANGED
@@ -1,44 +1,44 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst;
|
4 |
-
|
5 |
-
class ApiResponse
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Response headers
|
9 |
-
*
|
10 |
-
* @var array
|
11 |
-
*/
|
12 |
-
public $headers;
|
13 |
-
|
14 |
-
/**
|
15 |
-
* Response body
|
16 |
-
*
|
17 |
-
* @var mixed
|
18 |
-
*/
|
19 |
-
public $body;
|
20 |
-
|
21 |
-
/**
|
22 |
-
* Status code
|
23 |
-
*
|
24 |
-
* @var string
|
25 |
-
*/
|
26 |
-
public $code;
|
27 |
-
|
28 |
-
public function __construct($body, $code, $headers)
|
29 |
-
{
|
30 |
-
$this->body = $body;
|
31 |
-
$this->code = $code;
|
32 |
-
$this->headers = $headers;
|
33 |
-
}
|
34 |
-
|
35 |
-
/**
|
36 |
-
* Whether status code is successful
|
37 |
-
*
|
38 |
-
* @return bool
|
39 |
-
*/
|
40 |
-
public function isSuccess()
|
41 |
-
{
|
42 |
-
return $this->code >= 200 && $this->code < 300;
|
43 |
-
}
|
44 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst;
|
4 |
+
|
5 |
+
class ApiResponse
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Response headers
|
9 |
+
*
|
10 |
+
* @var array
|
11 |
+
*/
|
12 |
+
public $headers;
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Response body
|
16 |
+
*
|
17 |
+
* @var mixed
|
18 |
+
*/
|
19 |
+
public $body;
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Status code
|
23 |
+
*
|
24 |
+
* @var string
|
25 |
+
*/
|
26 |
+
public $code;
|
27 |
+
|
28 |
+
public function __construct($body, $code, $headers)
|
29 |
+
{
|
30 |
+
$this->body = $body;
|
31 |
+
$this->code = $code;
|
32 |
+
$this->headers = $headers;
|
33 |
+
}
|
34 |
+
|
35 |
+
/**
|
36 |
+
* Whether status code is successful
|
37 |
+
*
|
38 |
+
* @return bool
|
39 |
+
*/
|
40 |
+
public function isSuccess()
|
41 |
+
{
|
42 |
+
return $this->code >= 200 && $this->code < 300;
|
43 |
+
}
|
44 |
+
}
|
analyst/src/Cache/DatabaseCache.php
CHANGED
@@ -1,127 +1,127 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Cache;
|
4 |
-
|
5 |
-
use Analyst\Contracts\CacheContract;
|
6 |
-
|
7 |
-
/**
|
8 |
-
* Class DatabaseCache
|
9 |
-
*
|
10 |
-
* @since 1.1.5
|
11 |
-
*/
|
12 |
-
class DatabaseCache implements CacheContract
|
13 |
-
{
|
14 |
-
const OPTION_KEY = 'analyst_cache';
|
15 |
-
|
16 |
-
protected static $instance;
|
17 |
-
|
18 |
-
/**
|
19 |
-
* Get instance of db cache
|
20 |
-
*
|
21 |
-
* @return DatabaseCache
|
22 |
-
*/
|
23 |
-
public static function getInstance()
|
24 |
-
{
|
25 |
-
if (!self::$instance) {
|
26 |
-
self::$instance = new DatabaseCache();
|
27 |
-
}
|
28 |
-
|
29 |
-
return self::$instance;
|
30 |
-
}
|
31 |
-
|
32 |
-
/**
|
33 |
-
* Key value pair
|
34 |
-
*
|
35 |
-
* @var array[]
|
36 |
-
*/
|
37 |
-
protected $values = [];
|
38 |
-
|
39 |
-
/**
|
40 |
-
* DatabaseCache constructor.
|
41 |
-
*/
|
42 |
-
public function __construct()
|
43 |
-
{
|
44 |
-
$raw = get_option(self::OPTION_KEY, serialize([]));
|
45 |
-
|
46 |
-
// Raw data may be an array already
|
47 |
-
$this->values = is_array($raw) ? $raw : @unserialize($raw);
|
48 |
-
|
49 |
-
// In case serialization is failed
|
50 |
-
// make sure values is an array
|
51 |
-
if (!is_array($this->values)) {
|
52 |
-
$this->values = [];
|
53 |
-
}
|
54 |
-
}
|
55 |
-
|
56 |
-
/**
|
57 |
-
* Save value with given key
|
58 |
-
*
|
59 |
-
* @param string $key
|
60 |
-
* @param string $value
|
61 |
-
*
|
62 |
-
* @return static
|
63 |
-
*/
|
64 |
-
public function put($key, $value)
|
65 |
-
{
|
66 |
-
$this->values[$key] = $value;
|
67 |
-
|
68 |
-
$this->sync();
|
69 |
-
|
70 |
-
return $this;
|
71 |
-
}
|
72 |
-
|
73 |
-
/**
|
74 |
-
* Get value by given key
|
75 |
-
*
|
76 |
-
* @param $key
|
77 |
-
*
|
78 |
-
* @param null $default
|
79 |
-
* @return string
|
80 |
-
*/
|
81 |
-
public function get($key, $default = null)
|
82 |
-
{
|
83 |
-
$value = isset($this->values[$key]) ? $this->values[$key] : $default;
|
84 |
-
|
85 |
-
return $value;
|
86 |
-
}
|
87 |
-
|
88 |
-
/**
|
89 |
-
* @param $key
|
90 |
-
*
|
91 |
-
* @return static
|
92 |
-
*/
|
93 |
-
public function delete($key)
|
94 |
-
{
|
95 |
-
if (isset($this->values[$key])) {
|
96 |
-
unset($this->values[$key]);
|
97 |
-
|
98 |
-
$this->sync();
|
99 |
-
}
|
100 |
-
|
101 |
-
return $this;
|
102 |
-
}
|
103 |
-
|
104 |
-
/**
|
105 |
-
* Update cache in DB
|
106 |
-
*/
|
107 |
-
protected function sync()
|
108 |
-
{
|
109 |
-
update_option(self::OPTION_KEY, serialize($this->values));
|
110 |
-
}
|
111 |
-
|
112 |
-
/**
|
113 |
-
* Should get value and remove it from cache
|
114 |
-
*
|
115 |
-
* @param $key
|
116 |
-
* @param null $default
|
117 |
-
* @return mixed
|
118 |
-
*/
|
119 |
-
public function pop($key, $default = null)
|
120 |
-
{
|
121 |
-
$value = $this->get($key);
|
122 |
-
|
123 |
-
$this->delete($key);
|
124 |
-
|
125 |
-
return $value;
|
126 |
-
}
|
127 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Cache;
|
4 |
+
|
5 |
+
use Analyst\Contracts\CacheContract;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Class DatabaseCache
|
9 |
+
*
|
10 |
+
* @since 1.1.5
|
11 |
+
*/
|
12 |
+
class DatabaseCache implements CacheContract
|
13 |
+
{
|
14 |
+
const OPTION_KEY = 'analyst_cache';
|
15 |
+
|
16 |
+
protected static $instance;
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Get instance of db cache
|
20 |
+
*
|
21 |
+
* @return DatabaseCache
|
22 |
+
*/
|
23 |
+
public static function getInstance()
|
24 |
+
{
|
25 |
+
if (!self::$instance) {
|
26 |
+
self::$instance = new DatabaseCache();
|
27 |
+
}
|
28 |
+
|
29 |
+
return self::$instance;
|
30 |
+
}
|
31 |
+
|
32 |
+
/**
|
33 |
+
* Key value pair
|
34 |
+
*
|
35 |
+
* @var array[]
|
36 |
+
*/
|
37 |
+
protected $values = [];
|
38 |
+
|
39 |
+
/**
|
40 |
+
* DatabaseCache constructor.
|
41 |
+
*/
|
42 |
+
public function __construct()
|
43 |
+
{
|
44 |
+
$raw = get_option(self::OPTION_KEY, serialize([]));
|
45 |
+
|
46 |
+
// Raw data may be an array already
|
47 |
+
$this->values = is_array($raw) ? $raw : @unserialize($raw);
|
48 |
+
|
49 |
+
// In case serialization is failed
|
50 |
+
// make sure values is an array
|
51 |
+
if (!is_array($this->values)) {
|
52 |
+
$this->values = [];
|
53 |
+
}
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Save value with given key
|
58 |
+
*
|
59 |
+
* @param string $key
|
60 |
+
* @param string $value
|
61 |
+
*
|
62 |
+
* @return static
|
63 |
+
*/
|
64 |
+
public function put($key, $value)
|
65 |
+
{
|
66 |
+
$this->values[$key] = $value;
|
67 |
+
|
68 |
+
$this->sync();
|
69 |
+
|
70 |
+
return $this;
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* Get value by given key
|
75 |
+
*
|
76 |
+
* @param $key
|
77 |
+
*
|
78 |
+
* @param null $default
|
79 |
+
* @return string
|
80 |
+
*/
|
81 |
+
public function get($key, $default = null)
|
82 |
+
{
|
83 |
+
$value = isset($this->values[$key]) ? $this->values[$key] : $default;
|
84 |
+
|
85 |
+
return $value;
|
86 |
+
}
|
87 |
+
|
88 |
+
/**
|
89 |
+
* @param $key
|
90 |
+
*
|
91 |
+
* @return static
|
92 |
+
*/
|
93 |
+
public function delete($key)
|
94 |
+
{
|
95 |
+
if (isset($this->values[$key])) {
|
96 |
+
unset($this->values[$key]);
|
97 |
+
|
98 |
+
$this->sync();
|
99 |
+
}
|
100 |
+
|
101 |
+
return $this;
|
102 |
+
}
|
103 |
+
|
104 |
+
/**
|
105 |
+
* Update cache in DB
|
106 |
+
*/
|
107 |
+
protected function sync()
|
108 |
+
{
|
109 |
+
update_option(self::OPTION_KEY, serialize($this->values));
|
110 |
+
}
|
111 |
+
|
112 |
+
/**
|
113 |
+
* Should get value and remove it from cache
|
114 |
+
*
|
115 |
+
* @param $key
|
116 |
+
* @param null $default
|
117 |
+
* @return mixed
|
118 |
+
*/
|
119 |
+
public function pop($key, $default = null)
|
120 |
+
{
|
121 |
+
$value = $this->get($key);
|
122 |
+
|
123 |
+
$this->delete($key);
|
124 |
+
|
125 |
+
return $value;
|
126 |
+
}
|
127 |
+
}
|
analyst/src/Collector.php
CHANGED
@@ -1,217 +1,217 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst;
|
4 |
-
|
5 |
-
use Analyst\Contracts\AnalystContract;
|
6 |
-
|
7 |
-
/**
|
8 |
-
* Class Collector is a set of getters
|
9 |
-
* to retrieve some data from wp site
|
10 |
-
*/
|
11 |
-
class Collector
|
12 |
-
{
|
13 |
-
/**
|
14 |
-
* @var AnalystContract
|
15 |
-
*/
|
16 |
-
protected $sdk;
|
17 |
-
|
18 |
-
/**
|
19 |
-
* @var \WP_User
|
20 |
-
*/
|
21 |
-
protected $user;
|
22 |
-
|
23 |
-
public function __construct(AnalystContract $sdk)
|
24 |
-
{
|
25 |
-
$this->sdk = $sdk;
|
26 |
-
}
|
27 |
-
|
28 |
-
/**
|
29 |
-
* Load current user into memory
|
30 |
-
*/
|
31 |
-
public function loadCurrentUser()
|
32 |
-
{
|
33 |
-
$this->user = wp_get_current_user();
|
34 |
-
}
|
35 |
-
|
36 |
-
/**
|
37 |
-
* Get site url
|
38 |
-
*
|
39 |
-
* @return string
|
40 |
-
*/
|
41 |
-
public function getSiteUrl()
|
42 |
-
{
|
43 |
-
return get_option('siteurl');
|
44 |
-
}
|
45 |
-
|
46 |
-
/**
|
47 |
-
* Get current user email
|
48 |
-
*
|
49 |
-
* @return string
|
50 |
-
*/
|
51 |
-
public function getCurrentUserEmail()
|
52 |
-
{
|
53 |
-
return $this->user->user_email;
|
54 |
-
}
|
55 |
-
|
56 |
-
/**
|
57 |
-
* Get's email from general settings
|
58 |
-
*
|
59 |
-
* @return string
|
60 |
-
*/
|
61 |
-
public function getGeneralEmailAddress()
|
62 |
-
{
|
63 |
-
return get_option('admin_email');
|
64 |
-
}
|
65 |
-
|
66 |
-
/**
|
67 |
-
* Is this user administrator
|
68 |
-
*
|
69 |
-
* @return bool
|
70 |
-
*/
|
71 |
-
public function isUserAdministrator()
|
72 |
-
{
|
73 |
-
return in_array('administrator', $this->user->roles);
|
74 |
-
}
|
75 |
-
|
76 |
-
/**
|
77 |
-
* User name
|
78 |
-
*
|
79 |
-
* @return string
|
80 |
-
*/
|
81 |
-
public function getCurrentUserName()
|
82 |
-
{
|
83 |
-
return $this->user ? $this->user->user_nicename : 'unknown';
|
84 |
-
}
|
85 |
-
|
86 |
-
/**
|
87 |
-
* WP version
|
88 |
-
*
|
89 |
-
* @return string
|
90 |
-
*/
|
91 |
-
public function getWordPressVersion()
|
92 |
-
{
|
93 |
-
global $wp_version;
|
94 |
-
|
95 |
-
return $wp_version;
|
96 |
-
}
|
97 |
-
|
98 |
-
/**
|
99 |
-
* PHP version
|
100 |
-
*
|
101 |
-
* @return string
|
102 |
-
*/
|
103 |
-
public function getPHPVersion()
|
104 |
-
{
|
105 |
-
return phpversion();
|
106 |
-
}
|
107 |
-
|
108 |
-
/**
|
109 |
-
* Resolves plugin information
|
110 |
-
*
|
111 |
-
* @param string $path Absolute path to plugin
|
112 |
-
* @return array
|
113 |
-
*/
|
114 |
-
public function resolvePluginData($path)
|
115 |
-
{
|
116 |
-
if( !function_exists('get_plugin_data') ){
|
117 |
-
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
118 |
-
}
|
119 |
-
|
120 |
-
return get_plugin_data($path);
|
121 |
-
}
|
122 |
-
|
123 |
-
/**
|
124 |
-
* Get plugin name by path
|
125 |
-
*
|
126 |
-
* @param $path
|
127 |
-
* @return string
|
128 |
-
*/
|
129 |
-
public function getPluginName($path)
|
130 |
-
{
|
131 |
-
$data = $this->resolvePluginData($path);
|
132 |
-
|
133 |
-
return $data['Name'];
|
134 |
-
}
|
135 |
-
|
136 |
-
/**
|
137 |
-
* Get plugin version
|
138 |
-
*
|
139 |
-
* @param $path
|
140 |
-
* @return string
|
141 |
-
*/
|
142 |
-
public function getPluginVersion($path)
|
143 |
-
{
|
144 |
-
$data = $this->resolvePluginData($path);
|
145 |
-
|
146 |
-
return $data['Version'] ? $data['Version'] : null;
|
147 |
-
}
|
148 |
-
|
149 |
-
/**
|
150 |
-
* Get server ip
|
151 |
-
*
|
152 |
-
* @return string
|
153 |
-
*/
|
154 |
-
public function getServerIp()
|
155 |
-
{
|
156 |
-
return $_SERVER['SERVER_ADDR'];
|
157 |
-
}
|
158 |
-
|
159 |
-
/**
|
160 |
-
* @return string
|
161 |
-
*/
|
162 |
-
public function getSDKVersion()
|
163 |
-
{
|
164 |
-
return $this->sdk->version();
|
165 |
-
}
|
166 |
-
|
167 |
-
/**
|
168 |
-
* @return string
|
169 |
-
*/
|
170 |
-
public function getMysqlVersion()
|
171 |
-
{
|
172 |
-
$conn = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
|
173 |
-
|
174 |
-
$version = mysqli_get_server_info($conn);
|
175 |
-
|
176 |
-
return $version ? $version : 'unknown';
|
177 |
-
}
|
178 |
-
|
179 |
-
/**
|
180 |
-
* @return string
|
181 |
-
*/
|
182 |
-
public function getSiteLanguage()
|
183 |
-
{
|
184 |
-
return get_locale();
|
185 |
-
}
|
186 |
-
|
187 |
-
|
188 |
-
/**
|
189 |
-
* Current WP theme
|
190 |
-
*
|
191 |
-
* @return false|string
|
192 |
-
*/
|
193 |
-
public function getCurrentThemeName()
|
194 |
-
{
|
195 |
-
return wp_get_theme()->get('Name');
|
196 |
-
}
|
197 |
-
|
198 |
-
/**
|
199 |
-
* Get active plugins list
|
200 |
-
*
|
201 |
-
* @return array
|
202 |
-
*/
|
203 |
-
public function getActivePluginsList()
|
204 |
-
{
|
205 |
-
if (!function_exists('get_plugins')) {
|
206 |
-
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
207 |
-
}
|
208 |
-
|
209 |
-
$allPlugins = get_plugins();
|
210 |
-
|
211 |
-
$activePluginsNames = array_map(function ($path) use ($allPlugins) {
|
212 |
-
return $allPlugins[$path]['Name'];
|
213 |
-
}, get_option('active_plugins'));
|
214 |
-
|
215 |
-
return $activePluginsNames;
|
216 |
-
}
|
217 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst;
|
4 |
+
|
5 |
+
use Analyst\Contracts\AnalystContract;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Class Collector is a set of getters
|
9 |
+
* to retrieve some data from wp site
|
10 |
+
*/
|
11 |
+
class Collector
|
12 |
+
{
|
13 |
+
/**
|
14 |
+
* @var AnalystContract
|
15 |
+
*/
|
16 |
+
protected $sdk;
|
17 |
+
|
18 |
+
/**
|
19 |
+
* @var \WP_User
|
20 |
+
*/
|
21 |
+
protected $user;
|
22 |
+
|
23 |
+
public function __construct(AnalystContract $sdk)
|
24 |
+
{
|
25 |
+
$this->sdk = $sdk;
|
26 |
+
}
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Load current user into memory
|
30 |
+
*/
|
31 |
+
public function loadCurrentUser()
|
32 |
+
{
|
33 |
+
$this->user = wp_get_current_user();
|
34 |
+
}
|
35 |
+
|
36 |
+
/**
|
37 |
+
* Get site url
|
38 |
+
*
|
39 |
+
* @return string
|
40 |
+
*/
|
41 |
+
public function getSiteUrl()
|
42 |
+
{
|
43 |
+
return get_option('siteurl');
|
44 |
+
}
|
45 |
+
|
46 |
+
/**
|
47 |
+
* Get current user email
|
48 |
+
*
|
49 |
+
* @return string
|
50 |
+
*/
|
51 |
+
public function getCurrentUserEmail()
|
52 |
+
{
|
53 |
+
return $this->user->user_email;
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Get's email from general settings
|
58 |
+
*
|
59 |
+
* @return string
|
60 |
+
*/
|
61 |
+
public function getGeneralEmailAddress()
|
62 |
+
{
|
63 |
+
return get_option('admin_email');
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Is this user administrator
|
68 |
+
*
|
69 |
+
* @return bool
|
70 |
+
*/
|
71 |
+
public function isUserAdministrator()
|
72 |
+
{
|
73 |
+
return in_array('administrator', $this->user->roles);
|
74 |
+
}
|
75 |
+
|
76 |
+
/**
|
77 |
+
* User name
|
78 |
+
*
|
79 |
+
* @return string
|
80 |
+
*/
|
81 |
+
public function getCurrentUserName()
|
82 |
+
{
|
83 |
+
return $this->user ? $this->user->user_nicename : 'unknown';
|
84 |
+
}
|
85 |
+
|
86 |
+
/**
|
87 |
+
* WP version
|
88 |
+
*
|
89 |
+
* @return string
|
90 |
+
*/
|
91 |
+
public function getWordPressVersion()
|
92 |
+
{
|
93 |
+
global $wp_version;
|
94 |
+
|
95 |
+
return $wp_version;
|
96 |
+
}
|
97 |
+
|
98 |
+
/**
|
99 |
+
* PHP version
|
100 |
+
*
|
101 |
+
* @return string
|
102 |
+
*/
|
103 |
+
public function getPHPVersion()
|
104 |
+
{
|
105 |
+
return phpversion();
|
106 |
+
}
|
107 |
+
|
108 |
+
/**
|
109 |
+
* Resolves plugin information
|
110 |
+
*
|
111 |
+
* @param string $path Absolute path to plugin
|
112 |
+
* @return array
|
113 |
+
*/
|
114 |
+
public function resolvePluginData($path)
|
115 |
+
{
|
116 |
+
if( !function_exists('get_plugin_data') ){
|
117 |
+
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
118 |
+
}
|
119 |
+
|
120 |
+
return get_plugin_data($path);
|
121 |
+
}
|
122 |
+
|
123 |
+
/**
|
124 |
+
* Get plugin name by path
|
125 |
+
*
|
126 |
+
* @param $path
|
127 |
+
* @return string
|
128 |
+
*/
|
129 |
+
public function getPluginName($path)
|
130 |
+
{
|
131 |
+
$data = $this->resolvePluginData($path);
|
132 |
+
|
133 |
+
return $data['Name'];
|
134 |
+
}
|
135 |
+
|
136 |
+
/**
|
137 |
+
* Get plugin version
|
138 |
+
*
|
139 |
+
* @param $path
|
140 |
+
* @return string
|
141 |
+
*/
|
142 |
+
public function getPluginVersion($path)
|
143 |
+
{
|
144 |
+
$data = $this->resolvePluginData($path);
|
145 |
+
|
146 |
+
return $data['Version'] ? $data['Version'] : null;
|
147 |
+
}
|
148 |
+
|
149 |
+
/**
|
150 |
+
* Get server ip
|
151 |
+
*
|
152 |
+
* @return string
|
153 |
+
*/
|
154 |
+
public function getServerIp()
|
155 |
+
{
|
156 |
+
return $_SERVER['SERVER_ADDR'];
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* @return string
|
161 |
+
*/
|
162 |
+
public function getSDKVersion()
|
163 |
+
{
|
164 |
+
return $this->sdk->version();
|
165 |
+
}
|
166 |
+
|
167 |
+
/**
|
168 |
+
* @return string
|
169 |
+
*/
|
170 |
+
public function getMysqlVersion()
|
171 |
+
{
|
172 |
+
$conn = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
|
173 |
+
|
174 |
+
$version = mysqli_get_server_info($conn);
|
175 |
+
|
176 |
+
return $version ? $version : 'unknown';
|
177 |
+
}
|
178 |
+
|
179 |
+
/**
|
180 |
+
* @return string
|
181 |
+
*/
|
182 |
+
public function getSiteLanguage()
|
183 |
+
{
|
184 |
+
return get_locale();
|
185 |
+
}
|
186 |
+
|
187 |
+
|
188 |
+
/**
|
189 |
+
* Current WP theme
|
190 |
+
*
|
191 |
+
* @return false|string
|
192 |
+
*/
|
193 |
+
public function getCurrentThemeName()
|
194 |
+
{
|
195 |
+
return wp_get_theme()->get('Name');
|
196 |
+
}
|
197 |
+
|
198 |
+
/**
|
199 |
+
* Get active plugins list
|
200 |
+
*
|
201 |
+
* @return array
|
202 |
+
*/
|
203 |
+
public function getActivePluginsList()
|
204 |
+
{
|
205 |
+
if (!function_exists('get_plugins')) {
|
206 |
+
require_once ABSPATH . 'wp-admin/includes/plugin.php';
|
207 |
+
}
|
208 |
+
|
209 |
+
$allPlugins = get_plugins();
|
210 |
+
|
211 |
+
$activePluginsNames = array_map(function ($path) use ($allPlugins) {
|
212 |
+
return $allPlugins[$path]['Name'];
|
213 |
+
}, get_option('active_plugins'));
|
214 |
+
|
215 |
+
return $activePluginsNames;
|
216 |
+
}
|
217 |
+
}
|
analyst/src/Contracts/AnalystContract.php
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
<?php
|
2 |
-
namespace Analyst\Contracts;
|
3 |
-
|
4 |
-
interface AnalystContract
|
5 |
-
{
|
6 |
-
/**
|
7 |
-
* Must return version of analyst
|
8 |
-
*
|
9 |
-
* @return string
|
10 |
-
*/
|
11 |
-
public static function version();
|
12 |
-
}
|
1 |
+
<?php
|
2 |
+
namespace Analyst\Contracts;
|
3 |
+
|
4 |
+
interface AnalystContract
|
5 |
+
{
|
6 |
+
/**
|
7 |
+
* Must return version of analyst
|
8 |
+
*
|
9 |
+
* @return string
|
10 |
+
*/
|
11 |
+
public static function version();
|
12 |
+
}
|
analyst/src/Contracts/CacheContract.php
CHANGED
@@ -1,47 +1,47 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Contracts;
|
4 |
-
|
5 |
-
/**
|
6 |
-
* Interface CacheContract
|
7 |
-
*
|
8 |
-
* @since 1.1.5
|
9 |
-
*/
|
10 |
-
interface CacheContract
|
11 |
-
{
|
12 |
-
/**
|
13 |
-
* Save value with given key
|
14 |
-
*
|
15 |
-
* @param string $key
|
16 |
-
* @param string $value
|
17 |
-
*
|
18 |
-
* @return static
|
19 |
-
*/
|
20 |
-
public function put($key, $value);
|
21 |
-
|
22 |
-
/**
|
23 |
-
* Get value by given key
|
24 |
-
*
|
25 |
-
* @param $key
|
26 |
-
*
|
27 |
-
* @param null $default
|
28 |
-
* @return string
|
29 |
-
*/
|
30 |
-
public function get($key, $default = null);
|
31 |
-
|
32 |
-
/**
|
33 |
-
* @param $key
|
34 |
-
*
|
35 |
-
* @return static
|
36 |
-
*/
|
37 |
-
public function delete($key);
|
38 |
-
|
39 |
-
/**
|
40 |
-
* Should get value and remove it from cache
|
41 |
-
*
|
42 |
-
* @param $key
|
43 |
-
* @param null $default
|
44 |
-
* @return mixed
|
45 |
-
*/
|
46 |
-
public function pop($key, $default = null);
|
47 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Contracts;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Interface CacheContract
|
7 |
+
*
|
8 |
+
* @since 1.1.5
|
9 |
+
*/
|
10 |
+
interface CacheContract
|
11 |
+
{
|
12 |
+
/**
|
13 |
+
* Save value with given key
|
14 |
+
*
|
15 |
+
* @param string $key
|
16 |
+
* @param string $value
|
17 |
+
*
|
18 |
+
* @return static
|
19 |
+
*/
|
20 |
+
public function put($key, $value);
|
21 |
+
|
22 |
+
/**
|
23 |
+
* Get value by given key
|
24 |
+
*
|
25 |
+
* @param $key
|
26 |
+
*
|
27 |
+
* @param null $default
|
28 |
+
* @return string
|
29 |
+
*/
|
30 |
+
public function get($key, $default = null);
|
31 |
+
|
32 |
+
/**
|
33 |
+
* @param $key
|
34 |
+
*
|
35 |
+
* @return static
|
36 |
+
*/
|
37 |
+
public function delete($key);
|
38 |
+
|
39 |
+
/**
|
40 |
+
* Should get value and remove it from cache
|
41 |
+
*
|
42 |
+
* @param $key
|
43 |
+
* @param null $default
|
44 |
+
* @return mixed
|
45 |
+
*/
|
46 |
+
public function pop($key, $default = null);
|
47 |
+
}
|
analyst/src/Contracts/HttpClientContract.php
CHANGED
@@ -1,25 +1,25 @@
|
|
1 |
-
<?php
|
2 |
-
namespace Analyst\Contracts;
|
3 |
-
|
4 |
-
use Analyst\ApiResponse;
|
5 |
-
|
6 |
-
interface HttpClientContract
|
7 |
-
{
|
8 |
-
/**
|
9 |
-
* Make an http request
|
10 |
-
*
|
11 |
-
* @param $method
|
12 |
-
* @param $url
|
13 |
-
* @param $body
|
14 |
-
* @param $headers
|
15 |
-
* @return ApiResponse
|
16 |
-
*/
|
17 |
-
public function request($method, $url, $body, $headers);
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Must return `true` if client is supported
|
21 |
-
*
|
22 |
-
* @return bool
|
23 |
-
*/
|
24 |
-
public static function hasSupport();
|
25 |
-
}
|
1 |
+
<?php
|
2 |
+
namespace Analyst\Contracts;
|
3 |
+
|
4 |
+
use Analyst\ApiResponse;
|
5 |
+
|
6 |
+
interface HttpClientContract
|
7 |
+
{
|
8 |
+
/**
|
9 |
+
* Make an http request
|
10 |
+
*
|
11 |
+
* @param $method
|
12 |
+
* @param $url
|
13 |
+
* @param $body
|
14 |
+
* @param $headers
|
15 |
+
* @return ApiResponse
|
16 |
+
*/
|
17 |
+
public function request($method, $url, $body, $headers);
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Must return `true` if client is supported
|
21 |
+
*
|
22 |
+
* @return bool
|
23 |
+
*/
|
24 |
+
public static function hasSupport();
|
25 |
+
}
|
analyst/src/Contracts/RequestContract.php
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Contracts;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
|
7 |
-
interface RequestContract
|
8 |
-
{
|
9 |
-
/**
|
10 |
-
* Cast request data to array
|
11 |
-
*
|
12 |
-
* @return array
|
13 |
-
*/
|
14 |
-
public function toArray();
|
15 |
-
|
16 |
-
/**
|
17 |
-
* Execute the request
|
18 |
-
* @param RequestorContract $requestor
|
19 |
-
* @return ApiResponse
|
20 |
-
*/
|
21 |
-
public function execute(RequestorContract $requestor);
|
22 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Contracts;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
|
7 |
+
interface RequestContract
|
8 |
+
{
|
9 |
+
/**
|
10 |
+
* Cast request data to array
|
11 |
+
*
|
12 |
+
* @return array
|
13 |
+
*/
|
14 |
+
public function toArray();
|
15 |
+
|
16 |
+
/**
|
17 |
+
* Execute the request
|
18 |
+
* @param RequestorContract $requestor
|
19 |
+
* @return ApiResponse
|
20 |
+
*/
|
21 |
+
public function execute(RequestorContract $requestor);
|
22 |
+
}
|
analyst/src/Contracts/RequestorContract.php
CHANGED
@@ -1,44 +1,44 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Contracts;
|
4 |
-
|
5 |
-
interface RequestorContract
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Get request
|
9 |
-
*
|
10 |
-
* @param $url
|
11 |
-
* @param array $headers
|
12 |
-
* @return mixed
|
13 |
-
*/
|
14 |
-
public function get($url, $headers = []);
|
15 |
-
|
16 |
-
/**
|
17 |
-
* Post request
|
18 |
-
*
|
19 |
-
* @param $url
|
20 |
-
* @param $body
|
21 |
-
* @param array $headers
|
22 |
-
* @return mixed
|
23 |
-
*/
|
24 |
-
public function post($url, $body = [], $headers = []);
|
25 |
-
|
26 |
-
/**
|
27 |
-
* Put request
|
28 |
-
*
|
29 |
-
* @param $url
|
30 |
-
* @param $body
|
31 |
-
* @param array $headers
|
32 |
-
* @return mixed
|
33 |
-
*/
|
34 |
-
public function put($url, $body = [], $headers = []);
|
35 |
-
|
36 |
-
/**
|
37 |
-
* Delete request
|
38 |
-
*
|
39 |
-
* @param $url
|
40 |
-
* @param array $headers
|
41 |
-
* @return mixed
|
42 |
-
*/
|
43 |
-
public function delete($url, $headers = []);
|
44 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Contracts;
|
4 |
+
|
5 |
+
interface RequestorContract
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Get request
|
9 |
+
*
|
10 |
+
* @param $url
|
11 |
+
* @param array $headers
|
12 |
+
* @return mixed
|
13 |
+
*/
|
14 |
+
public function get($url, $headers = []);
|
15 |
+
|
16 |
+
/**
|
17 |
+
* Post request
|
18 |
+
*
|
19 |
+
* @param $url
|
20 |
+
* @param $body
|
21 |
+
* @param array $headers
|
22 |
+
* @return mixed
|
23 |
+
*/
|
24 |
+
public function post($url, $body = [], $headers = []);
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Put request
|
28 |
+
*
|
29 |
+
* @param $url
|
30 |
+
* @param $body
|
31 |
+
* @param array $headers
|
32 |
+
* @return mixed
|
33 |
+
*/
|
34 |
+
public function put($url, $body = [], $headers = []);
|
35 |
+
|
36 |
+
/**
|
37 |
+
* Delete request
|
38 |
+
*
|
39 |
+
* @param $url
|
40 |
+
* @param array $headers
|
41 |
+
* @return mixed
|
42 |
+
*/
|
43 |
+
public function delete($url, $headers = []);
|
44 |
+
}
|
analyst/src/Contracts/TrackerContract.php
CHANGED
@@ -1,69 +1,69 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Contracts;
|
4 |
-
|
5 |
-
interface TrackerContract
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Should register activation and deactivation
|
9 |
-
* event hooks
|
10 |
-
*
|
11 |
-
* @return void
|
12 |
-
*/
|
13 |
-
public function registerHooks();
|
14 |
-
|
15 |
-
/**
|
16 |
-
* Will fire when admin activates plugin
|
17 |
-
*
|
18 |
-
* @return void
|
19 |
-
*/
|
20 |
-
public function onActivePluginListener();
|
21 |
-
|
22 |
-
/**
|
23 |
-
* Will fire when admin deactivates plugin
|
24 |
-
*
|
25 |
-
* @return void
|
26 |
-
*/
|
27 |
-
public function onDeactivatePluginListener();
|
28 |
-
|
29 |
-
/**
|
30 |
-
* Will fire when user opted in
|
31 |
-
*
|
32 |
-
* @return void
|
33 |
-
*/
|
34 |
-
public function onOptInListener();
|
35 |
-
|
36 |
-
/**
|
37 |
-
* Will fire when user opted out
|
38 |
-
*
|
39 |
-
* @return void
|
40 |
-
*/
|
41 |
-
public function onOptOutListener();
|
42 |
-
|
43 |
-
/**
|
44 |
-
* Will fire when user accept opt/in at first time
|
45 |
-
*
|
46 |
-
* @return void
|
47 |
-
*/
|
48 |
-
public function onInstallListener();
|
49 |
-
|
50 |
-
/**
|
51 |
-
* Will fire when user skipped installation
|
52 |
-
*
|
53 |
-
* @return void
|
54 |
-
*/
|
55 |
-
public function onSkipInstallListener();
|
56 |
-
|
57 |
-
/**
|
58 |
-
* Will fire when user delete plugin through admin panel.
|
59 |
-
* This action will happen if admin at least once
|
60 |
-
* activated the plugin.
|
61 |
-
*
|
62 |
-
* The register_uninstall_hook function accepts only static
|
63 |
-
* function or global function to be executed, so this is
|
64 |
-
* why this method is static
|
65 |
-
*
|
66 |
-
* @return void
|
67 |
-
*/
|
68 |
-
public static function onUninstallPluginListener();
|
69 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Contracts;
|
4 |
+
|
5 |
+
interface TrackerContract
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Should register activation and deactivation
|
9 |
+
* event hooks
|
10 |
+
*
|
11 |
+
* @return void
|
12 |
+
*/
|
13 |
+
public function registerHooks();
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Will fire when admin activates plugin
|
17 |
+
*
|
18 |
+
* @return void
|
19 |
+
*/
|
20 |
+
public function onActivePluginListener();
|
21 |
+
|
22 |
+
/**
|
23 |
+
* Will fire when admin deactivates plugin
|
24 |
+
*
|
25 |
+
* @return void
|
26 |
+
*/
|
27 |
+
public function onDeactivatePluginListener();
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Will fire when user opted in
|
31 |
+
*
|
32 |
+
* @return void
|
33 |
+
*/
|
34 |
+
public function onOptInListener();
|
35 |
+
|
36 |
+
/**
|
37 |
+
* Will fire when user opted out
|
38 |
+
*
|
39 |
+
* @return void
|
40 |
+
*/
|
41 |
+
public function onOptOutListener();
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Will fire when user accept opt/in at first time
|
45 |
+
*
|
46 |
+
* @return void
|
47 |
+
*/
|
48 |
+
public function onInstallListener();
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Will fire when user skipped installation
|
52 |
+
*
|
53 |
+
* @return void
|
54 |
+
*/
|
55 |
+
public function onSkipInstallListener();
|
56 |
+
|
57 |
+
/**
|
58 |
+
* Will fire when user delete plugin through admin panel.
|
59 |
+
* This action will happen if admin at least once
|
60 |
+
* activated the plugin.
|
61 |
+
*
|
62 |
+
* The register_uninstall_hook function accepts only static
|
63 |
+
* function or global function to be executed, so this is
|
64 |
+
* why this method is static
|
65 |
+
*
|
66 |
+
* @return void
|
67 |
+
*/
|
68 |
+
public static function onUninstallPluginListener();
|
69 |
+
}
|
analyst/src/Core/AbstractFactory.php
CHANGED
@@ -1,27 +1,27 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Core;
|
4 |
-
|
5 |
-
abstract class AbstractFactory
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Unserialize to static::class instance
|
9 |
-
*
|
10 |
-
* @param $raw
|
11 |
-
* @return static
|
12 |
-
*/
|
13 |
-
protected static function unserialize($raw)
|
14 |
-
{
|
15 |
-
$instance = @unserialize($raw);
|
16 |
-
|
17 |
-
$isProperObject = is_object($instance) && $instance instanceof static;
|
18 |
-
|
19 |
-
// In case for some reason unserialized object is not
|
20 |
-
// static::class we make sure it is static::class
|
21 |
-
if (!$isProperObject) {
|
22 |
-
$instance = new static();
|
23 |
-
}
|
24 |
-
|
25 |
-
return $instance;
|
26 |
-
}
|
27 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Core;
|
4 |
+
|
5 |
+
abstract class AbstractFactory
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Unserialize to static::class instance
|
9 |
+
*
|
10 |
+
* @param $raw
|
11 |
+
* @return static
|
12 |
+
*/
|
13 |
+
protected static function unserialize($raw)
|
14 |
+
{
|
15 |
+
$instance = @unserialize($raw);
|
16 |
+
|
17 |
+
$isProperObject = is_object($instance) && $instance instanceof static;
|
18 |
+
|
19 |
+
// In case for some reason unserialized object is not
|
20 |
+
// static::class we make sure it is static::class
|
21 |
+
if (!$isProperObject) {
|
22 |
+
$instance = new static();
|
23 |
+
}
|
24 |
+
|
25 |
+
return $instance;
|
26 |
+
}
|
27 |
+
}
|
analyst/src/Core/AbstractFactory.php~HEAD
CHANGED
@@ -1,27 +1,27 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Core;
|
4 |
-
|
5 |
-
abstract class AbstractFactory
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Unserialize to static::class instance
|
9 |
-
*
|
10 |
-
* @param $raw
|
11 |
-
* @return static
|
12 |
-
*/
|
13 |
-
protected static function unserialize($raw)
|
14 |
-
{
|
15 |
-
$instance = @unserialize($raw);
|
16 |
-
|
17 |
-
$isProperObject = is_object($instance) && $instance instanceof static;
|
18 |
-
|
19 |
-
// In case for some reason unserialized object is not
|
20 |
-
// static::class we make sure it is static::class
|
21 |
-
if (!$isProperObject) {
|
22 |
-
$instance = new static();
|
23 |
-
}
|
24 |
-
|
25 |
-
return $instance;
|
26 |
-
}
|
27 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Core;
|
4 |
+
|
5 |
+
abstract class AbstractFactory
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Unserialize to static::class instance
|
9 |
+
*
|
10 |
+
* @param $raw
|
11 |
+
* @return static
|
12 |
+
*/
|
13 |
+
protected static function unserialize($raw)
|
14 |
+
{
|
15 |
+
$instance = @unserialize($raw);
|
16 |
+
|
17 |
+
$isProperObject = is_object($instance) && $instance instanceof static;
|
18 |
+
|
19 |
+
// In case for some reason unserialized object is not
|
20 |
+
// static::class we make sure it is static::class
|
21 |
+
if (!$isProperObject) {
|
22 |
+
$instance = new static();
|
23 |
+
}
|
24 |
+
|
25 |
+
return $instance;
|
26 |
+
}
|
27 |
+
}
|
analyst/src/Http/CurlHttpClient.php
CHANGED
@@ -1,102 +1,102 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Contracts\HttpClientContract;
|
7 |
-
|
8 |
-
class CurlHttpClient implements HttpClientContract
|
9 |
-
{
|
10 |
-
/**
|
11 |
-
* Make an http request
|
12 |
-
*
|
13 |
-
* @param $method
|
14 |
-
* @param $url
|
15 |
-
* @param array $body
|
16 |
-
* @param $headers
|
17 |
-
* @return mixed
|
18 |
-
*/
|
19 |
-
public function request($method, $url, $body, $headers)
|
20 |
-
{
|
21 |
-
$method = strtoupper($method);
|
22 |
-
|
23 |
-
$options = [
|
24 |
-
CURLOPT_RETURNTRANSFER => true,
|
25 |
-
CURLOPT_URL => $url,
|
26 |
-
CURLOPT_HTTPHEADER => $this->prepareRequestHeaders($headers),
|
27 |
-
CURLOPT_CUSTOMREQUEST => $method,
|
28 |
-
CURLOPT_FAILONERROR => true,
|
29 |
-
CURLOPT_HEADER => true,
|
30 |
-
CURLOPT_TIMEOUT => 30,
|
31 |
-
];
|
32 |
-
|
33 |
-
if ($method === 'POST') {
|
34 |
-
$options[CURLOPT_POST] = 1;
|
35 |
-
$options[CURLOPT_POSTFIELDS] = json_encode($body);
|
36 |
-
}
|
37 |
-
|
38 |
-
$curl = curl_init();
|
39 |
-
|
40 |
-
curl_setopt_array($curl, $options);
|
41 |
-
|
42 |
-
$response = curl_exec($curl);
|
43 |
-
|
44 |
-
list($rawHeaders, $rawBody) = explode("\r\n\r\n", $response, 2);
|
45 |
-
|
46 |
-
$info = curl_getinfo($curl);
|
47 |
-
|
48 |
-
curl_close($curl);
|
49 |
-
|
50 |
-
$responseHeaders = $this->resolveResponseHeaders($rawHeaders);
|
51 |
-
$responseBody = json_decode($rawBody, true);
|
52 |
-
|
53 |
-
return new ApiResponse($responseBody, $info['http_code'], $responseHeaders);
|
54 |
-
}
|
55 |
-
|
56 |
-
/**
|
57 |
-
* Must return `true` if client is supported
|
58 |
-
*
|
59 |
-
* @return bool
|
60 |
-
*/
|
61 |
-
public static function hasSupport()
|
62 |
-
{
|
63 |
-
return function_exists('curl_version');
|
64 |
-
}
|
65 |
-
|
66 |
-
/**
|
67 |
-
* Modify request headers from key value pair
|
68 |
-
* to vector array
|
69 |
-
*
|
70 |
-
* @param array $headers
|
71 |
-
* @return array
|
72 |
-
*/
|
73 |
-
protected function prepareRequestHeaders ($headers)
|
74 |
-
{
|
75 |
-
return array_map(function ($key, $value) {
|
76 |
-
return sprintf('%s:%s', $key, $value);
|
77 |
-
}, array_keys($headers), $headers);
|
78 |
-
}
|
79 |
-
|
80 |
-
/**
|
81 |
-
* Resolve raw response headers as
|
82 |
-
* associative array
|
83 |
-
*
|
84 |
-
* @param $rawHeaders
|
85 |
-
* @return array
|
86 |
-
*/
|
87 |
-
private function resolveResponseHeaders($rawHeaders)
|
88 |
-
{
|
89 |
-
$headers = [];
|
90 |
-
|
91 |
-
foreach (explode("\r\n", $rawHeaders) as $i => $line) {
|
92 |
-
$parts = explode(': ', $line);
|
93 |
-
|
94 |
-
if (count($parts) === 1) {
|
95 |
-
continue;
|
96 |
-
}
|
97 |
-
|
98 |
-
$headers[$parts[0]] = $parts[1];
|
99 |
-
}
|
100 |
-
return $headers;
|
101 |
-
}
|
102 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Contracts\HttpClientContract;
|
7 |
+
|
8 |
+
class CurlHttpClient implements HttpClientContract
|
9 |
+
{
|
10 |
+
/**
|
11 |
+
* Make an http request
|
12 |
+
*
|
13 |
+
* @param $method
|
14 |
+
* @param $url
|
15 |
+
* @param array $body
|
16 |
+
* @param $headers
|
17 |
+
* @return mixed
|
18 |
+
*/
|
19 |
+
public function request($method, $url, $body, $headers)
|
20 |
+
{
|
21 |
+
$method = strtoupper($method);
|
22 |
+
|
23 |
+
$options = [
|
24 |
+
CURLOPT_RETURNTRANSFER => true,
|
25 |
+
CURLOPT_URL => $url,
|
26 |
+
CURLOPT_HTTPHEADER => $this->prepareRequestHeaders($headers),
|
27 |
+
CURLOPT_CUSTOMREQUEST => $method,
|
28 |
+
CURLOPT_FAILONERROR => true,
|
29 |
+
CURLOPT_HEADER => true,
|
30 |
+
CURLOPT_TIMEOUT => 30,
|
31 |
+
];
|
32 |
+
|
33 |
+
if ($method === 'POST') {
|
34 |
+
$options[CURLOPT_POST] = 1;
|
35 |
+
$options[CURLOPT_POSTFIELDS] = json_encode($body);
|
36 |
+
}
|
37 |
+
|
38 |
+
$curl = curl_init();
|
39 |
+
|
40 |
+
curl_setopt_array($curl, $options);
|
41 |
+
|
42 |
+
$response = curl_exec($curl);
|
43 |
+
|
44 |
+
list($rawHeaders, $rawBody) = explode("\r\n\r\n", $response, 2);
|
45 |
+
|
46 |
+
$info = curl_getinfo($curl);
|
47 |
+
|
48 |
+
curl_close($curl);
|
49 |
+
|
50 |
+
$responseHeaders = $this->resolveResponseHeaders($rawHeaders);
|
51 |
+
$responseBody = json_decode($rawBody, true);
|
52 |
+
|
53 |
+
return new ApiResponse($responseBody, $info['http_code'], $responseHeaders);
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Must return `true` if client is supported
|
58 |
+
*
|
59 |
+
* @return bool
|
60 |
+
*/
|
61 |
+
public static function hasSupport()
|
62 |
+
{
|
63 |
+
return function_exists('curl_version');
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Modify request headers from key value pair
|
68 |
+
* to vector array
|
69 |
+
*
|
70 |
+
* @param array $headers
|
71 |
+
* @return array
|
72 |
+
*/
|
73 |
+
protected function prepareRequestHeaders ($headers)
|
74 |
+
{
|
75 |
+
return array_map(function ($key, $value) {
|
76 |
+
return sprintf('%s:%s', $key, $value);
|
77 |
+
}, array_keys($headers), $headers);
|
78 |
+
}
|
79 |
+
|
80 |
+
/**
|
81 |
+
* Resolve raw response headers as
|
82 |
+
* associative array
|
83 |
+
*
|
84 |
+
* @param $rawHeaders
|
85 |
+
* @return array
|
86 |
+
*/
|
87 |
+
private function resolveResponseHeaders($rawHeaders)
|
88 |
+
{
|
89 |
+
$headers = [];
|
90 |
+
|
91 |
+
foreach (explode("\r\n", $rawHeaders) as $i => $line) {
|
92 |
+
$parts = explode(': ', $line);
|
93 |
+
|
94 |
+
if (count($parts) === 1) {
|
95 |
+
continue;
|
96 |
+
}
|
97 |
+
|
98 |
+
$headers[$parts[0]] = $parts[1];
|
99 |
+
}
|
100 |
+
return $headers;
|
101 |
+
}
|
102 |
+
}
|
analyst/src/Http/DummyHttpClient.php
CHANGED
@@ -1,33 +1,33 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Contracts\HttpClientContract;
|
7 |
-
|
8 |
-
class DummyHttpClient implements HttpClientContract
|
9 |
-
{
|
10 |
-
/**
|
11 |
-
* Make an http request
|
12 |
-
*
|
13 |
-
* @param $method
|
14 |
-
* @param $url
|
15 |
-
* @param $body
|
16 |
-
* @param $headers
|
17 |
-
* @return ApiResponse
|
18 |
-
*/
|
19 |
-
public function request($method, $url, $body, $headers)
|
20 |
-
{
|
21 |
-
return new ApiResponse('Dummy response', 200, []);
|
22 |
-
}
|
23 |
-
|
24 |
-
/**
|
25 |
-
* Must return `true` if client is supported
|
26 |
-
*
|
27 |
-
* @return bool
|
28 |
-
*/
|
29 |
-
public static function hasSupport()
|
30 |
-
{
|
31 |
-
return true;
|
32 |
-
}
|
33 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Contracts\HttpClientContract;
|
7 |
+
|
8 |
+
class DummyHttpClient implements HttpClientContract
|
9 |
+
{
|
10 |
+
/**
|
11 |
+
* Make an http request
|
12 |
+
*
|
13 |
+
* @param $method
|
14 |
+
* @param $url
|
15 |
+
* @param $body
|
16 |
+
* @param $headers
|
17 |
+
* @return ApiResponse
|
18 |
+
*/
|
19 |
+
public function request($method, $url, $body, $headers)
|
20 |
+
{
|
21 |
+
return new ApiResponse('Dummy response', 200, []);
|
22 |
+
}
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Must return `true` if client is supported
|
26 |
+
*
|
27 |
+
* @return bool
|
28 |
+
*/
|
29 |
+
public static function hasSupport()
|
30 |
+
{
|
31 |
+
return true;
|
32 |
+
}
|
33 |
+
}
|
analyst/src/Http/Requests/AbstractLoggerRequest.php
CHANGED
@@ -1,64 +1,64 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http\Requests;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Collector;
|
7 |
-
use Analyst\Contracts\RequestContract;
|
8 |
-
use Analyst\Contracts\RequestorContract;
|
9 |
-
|
10 |
-
abstract class AbstractLoggerRequest implements RequestContract
|
11 |
-
{
|
12 |
-
/**
|
13 |
-
* @var Collector
|
14 |
-
*/
|
15 |
-
protected $collector;
|
16 |
-
|
17 |
-
/**
|
18 |
-
* @var integer
|
19 |
-
*/
|
20 |
-
protected $id;
|
21 |
-
|
22 |
-
/**
|
23 |
-
* @var string
|
24 |
-
*/
|
25 |
-
protected $path;
|
26 |
-
|
27 |
-
public function __construct(Collector $collector, $pluginId, $path)
|
28 |
-
{
|
29 |
-
$this->collector = $collector;
|
30 |
-
$this->id = $pluginId;
|
31 |
-
$this->path = $path;
|
32 |
-
}
|
33 |
-
|
34 |
-
/**
|
35 |
-
* Cast request data to array
|
36 |
-
*
|
37 |
-
* @return array
|
38 |
-
*/
|
39 |
-
public function toArray()
|
40 |
-
{
|
41 |
-
return [
|
42 |
-
'plugin_id' => $this->id,
|
43 |
-
'php_version' => $this->collector->getPHPVersion(),
|
44 |
-
'wp_version' => $this->collector->getWordPressVersion(),
|
45 |
-
'plugin_version' => $this->collector->getPluginVersion($this->path),
|
46 |
-
'url' => $this->collector->getSiteUrl(),
|
47 |
-
'sdk_version' => $this->collector->getSDKVersion(),
|
48 |
-
'ip' => $this->collector->getServerIp(),
|
49 |
-
'mysql_version' => $this->collector->getMysqlVersion(),
|
50 |
-
'locale' => $this->collector->getSiteLanguage(),
|
51 |
-
'current_theme' => $this->collector->getCurrentThemeName(),
|
52 |
-
'active_plugins_list' => implode(', ', $this->collector->getActivePluginsList()),
|
53 |
-
'email' => $this->collector->getGeneralEmailAddress(),
|
54 |
-
'name' => $this->collector->getCurrentUserName()
|
55 |
-
];
|
56 |
-
}
|
57 |
-
|
58 |
-
/**
|
59 |
-
* Execute the request
|
60 |
-
* @param RequestorContract $requestor
|
61 |
-
* @return ApiResponse
|
62 |
-
*/
|
63 |
-
public abstract function execute(RequestorContract $requestor);
|
64 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http\Requests;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Collector;
|
7 |
+
use Analyst\Contracts\RequestContract;
|
8 |
+
use Analyst\Contracts\RequestorContract;
|
9 |
+
|
10 |
+
abstract class AbstractLoggerRequest implements RequestContract
|
11 |
+
{
|
12 |
+
/**
|
13 |
+
* @var Collector
|
14 |
+
*/
|
15 |
+
protected $collector;
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @var integer
|
19 |
+
*/
|
20 |
+
protected $id;
|
21 |
+
|
22 |
+
/**
|
23 |
+
* @var string
|
24 |
+
*/
|
25 |
+
protected $path;
|
26 |
+
|
27 |
+
public function __construct(Collector $collector, $pluginId, $path)
|
28 |
+
{
|
29 |
+
$this->collector = $collector;
|
30 |
+
$this->id = $pluginId;
|
31 |
+
$this->path = $path;
|
32 |
+
}
|
33 |
+
|
34 |
+
/**
|
35 |
+
* Cast request data to array
|
36 |
+
*
|
37 |
+
* @return array
|
38 |
+
*/
|
39 |
+
public function toArray()
|
40 |
+
{
|
41 |
+
return [
|
42 |
+
'plugin_id' => $this->id,
|
43 |
+
'php_version' => $this->collector->getPHPVersion(),
|
44 |
+
'wp_version' => $this->collector->getWordPressVersion(),
|
45 |
+
'plugin_version' => $this->collector->getPluginVersion($this->path),
|
46 |
+
'url' => $this->collector->getSiteUrl(),
|
47 |
+
'sdk_version' => $this->collector->getSDKVersion(),
|
48 |
+
'ip' => $this->collector->getServerIp(),
|
49 |
+
'mysql_version' => $this->collector->getMysqlVersion(),
|
50 |
+
'locale' => $this->collector->getSiteLanguage(),
|
51 |
+
'current_theme' => $this->collector->getCurrentThemeName(),
|
52 |
+
'active_plugins_list' => implode(', ', $this->collector->getActivePluginsList()),
|
53 |
+
'email' => $this->collector->getGeneralEmailAddress(),
|
54 |
+
'name' => $this->collector->getCurrentUserName()
|
55 |
+
];
|
56 |
+
}
|
57 |
+
|
58 |
+
/**
|
59 |
+
* Execute the request
|
60 |
+
* @param RequestorContract $requestor
|
61 |
+
* @return ApiResponse
|
62 |
+
*/
|
63 |
+
public abstract function execute(RequestorContract $requestor);
|
64 |
+
}
|
analyst/src/Http/Requests/ActivateRequest.php
CHANGED
@@ -1,42 +1,42 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http\Requests;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Collector;
|
7 |
-
use Analyst\Contracts\RequestContract;
|
8 |
-
use Analyst\Contracts\RequestorContract;
|
9 |
-
|
10 |
-
/**
|
11 |
-
* Class ActivateRequest
|
12 |
-
*
|
13 |
-
* Is is very similar to install request
|
14 |
-
* but with different path
|
15 |
-
*
|
16 |
-
* @since 0.9.12
|
17 |
-
*/
|
18 |
-
class ActivateRequest extends AbstractLoggerRequest
|
19 |
-
{
|
20 |
-
/**
|
21 |
-
* Execute the request
|
22 |
-
* @param RequestorContract $requestor
|
23 |
-
* @return ApiResponse
|
24 |
-
*/
|
25 |
-
public function execute(RequestorContract $requestor)
|
26 |
-
{
|
27 |
-
return $requestor->post('logger/activate', $this->toArray());
|
28 |
-
}
|
29 |
-
|
30 |
-
/**
|
31 |
-
* Make request instance
|
32 |
-
*
|
33 |
-
* @param Collector $collector
|
34 |
-
* @param $pluginId
|
35 |
-
* @param $path
|
36 |
-
* @return static
|
37 |
-
*/
|
38 |
-
public static function make(Collector $collector, $pluginId, $path)
|
39 |
-
{
|
40 |
-
return new static($collector, $pluginId, $path);
|
41 |
-
}
|
42 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http\Requests;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Collector;
|
7 |
+
use Analyst\Contracts\RequestContract;
|
8 |
+
use Analyst\Contracts\RequestorContract;
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Class ActivateRequest
|
12 |
+
*
|
13 |
+
* Is is very similar to install request
|
14 |
+
* but with different path
|
15 |
+
*
|
16 |
+
* @since 0.9.12
|
17 |
+
*/
|
18 |
+
class ActivateRequest extends AbstractLoggerRequest
|
19 |
+
{
|
20 |
+
/**
|
21 |
+
* Execute the request
|
22 |
+
* @param RequestorContract $requestor
|
23 |
+
* @return ApiResponse
|
24 |
+
*/
|
25 |
+
public function execute(RequestorContract $requestor)
|
26 |
+
{
|
27 |
+
return $requestor->post('logger/activate', $this->toArray());
|
28 |
+
}
|
29 |
+
|
30 |
+
/**
|
31 |
+
* Make request instance
|
32 |
+
*
|
33 |
+
* @param Collector $collector
|
34 |
+
* @param $pluginId
|
35 |
+
* @param $path
|
36 |
+
* @return static
|
37 |
+
*/
|
38 |
+
public static function make(Collector $collector, $pluginId, $path)
|
39 |
+
{
|
40 |
+
return new static($collector, $pluginId, $path);
|
41 |
+
}
|
42 |
+
}
|
analyst/src/Http/Requests/DeactivateRequest.php
CHANGED
@@ -1,64 +1,64 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http\Requests;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Collector;
|
7 |
-
use Analyst\Contracts\RequestorContract;
|
8 |
-
|
9 |
-
/**
|
10 |
-
* Class DeactivateRequest
|
11 |
-
*
|
12 |
-
* @since 0.9.10
|
13 |
-
*/
|
14 |
-
class DeactivateRequest extends AbstractLoggerRequest
|
15 |
-
{
|
16 |
-
/**
|
17 |
-
* @var string
|
18 |
-
*/
|
19 |
-
protected $question;
|
20 |
-
|
21 |
-
/**
|
22 |
-
* @var string
|
23 |
-
*/
|
24 |
-
protected $answer;
|
25 |
-
|
26 |
-
/**
|
27 |
-
* @param Collector $collector
|
28 |
-
* @param $pluginId
|
29 |
-
* @param $path
|
30 |
-
* @param $question
|
31 |
-
* @param $answer
|
32 |
-
* @return static
|
33 |
-
*/
|
34 |
-
public static function make(Collector $collector, $pluginId, $path, $question, $answer)
|
35 |
-
{
|
36 |
-
return new static($collector, $pluginId, $path, $question, $answer);
|
37 |
-
}
|
38 |
-
|
39 |
-
public function __construct(Collector $collector, $pluginId, $path, $question, $answer)
|
40 |
-
{
|
41 |
-
parent::__construct($collector, $pluginId, $path);
|
42 |
-
|
43 |
-
$this->question = $question;
|
44 |
-
$this->answer = $answer;
|
45 |
-
}
|
46 |
-
|
47 |
-
public function toArray()
|
48 |
-
{
|
49 |
-
return array_merge(parent::toArray(), [
|
50 |
-
'question' => $this->question,
|
51 |
-
'answer' => $this->answer,
|
52 |
-
]);
|
53 |
-
}
|
54 |
-
|
55 |
-
/**
|
56 |
-
* Execute the request
|
57 |
-
* @param RequestorContract $requestor
|
58 |
-
* @return ApiResponse
|
59 |
-
*/
|
60 |
-
public function execute(RequestorContract $requestor)
|
61 |
-
{
|
62 |
-
return $requestor->post('logger/deactivate', $this->toArray());
|
63 |
-
}
|
64 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http\Requests;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Collector;
|
7 |
+
use Analyst\Contracts\RequestorContract;
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Class DeactivateRequest
|
11 |
+
*
|
12 |
+
* @since 0.9.10
|
13 |
+
*/
|
14 |
+
class DeactivateRequest extends AbstractLoggerRequest
|
15 |
+
{
|
16 |
+
/**
|
17 |
+
* @var string
|
18 |
+
*/
|
19 |
+
protected $question;
|
20 |
+
|
21 |
+
/**
|
22 |
+
* @var string
|
23 |
+
*/
|
24 |
+
protected $answer;
|
25 |
+
|
26 |
+
/**
|
27 |
+
* @param Collector $collector
|
28 |
+
* @param $pluginId
|
29 |
+
* @param $path
|
30 |
+
* @param $question
|
31 |
+
* @param $answer
|
32 |
+
* @return static
|
33 |
+
*/
|
34 |
+
public static function make(Collector $collector, $pluginId, $path, $question, $answer)
|
35 |
+
{
|
36 |
+
return new static($collector, $pluginId, $path, $question, $answer);
|
37 |
+
}
|
38 |
+
|
39 |
+
public function __construct(Collector $collector, $pluginId, $path, $question, $answer)
|
40 |
+
{
|
41 |
+
parent::__construct($collector, $pluginId, $path);
|
42 |
+
|
43 |
+
$this->question = $question;
|
44 |
+
$this->answer = $answer;
|
45 |
+
}
|
46 |
+
|
47 |
+
public function toArray()
|
48 |
+
{
|
49 |
+
return array_merge(parent::toArray(), [
|
50 |
+
'question' => $this->question,
|
51 |
+
'answer' => $this->answer,
|
52 |
+
]);
|
53 |
+
}
|
54 |
+
|
55 |
+
/**
|
56 |
+
* Execute the request
|
57 |
+
* @param RequestorContract $requestor
|
58 |
+
* @return ApiResponse
|
59 |
+
*/
|
60 |
+
public function execute(RequestorContract $requestor)
|
61 |
+
{
|
62 |
+
return $requestor->post('logger/deactivate', $this->toArray());
|
63 |
+
}
|
64 |
+
}
|
analyst/src/Http/Requests/InstallRequest.php
CHANGED
@@ -1,38 +1,38 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http\Requests;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Collector;
|
7 |
-
use Analyst\Contracts\RequestorContract;
|
8 |
-
|
9 |
-
/**
|
10 |
-
* Class InstallRequest
|
11 |
-
*
|
12 |
-
* @since 0.9.4
|
13 |
-
*/
|
14 |
-
class InstallRequest extends AbstractLoggerRequest
|
15 |
-
{
|
16 |
-
/**
|
17 |
-
* Execute the request
|
18 |
-
* @param RequestorContract $requestor
|
19 |
-
* @return ApiResponse
|
20 |
-
*/
|
21 |
-
public function execute(RequestorContract $requestor)
|
22 |
-
{
|
23 |
-
return $requestor->post('logger/install', $this->toArray());
|
24 |
-
}
|
25 |
-
|
26 |
-
/**
|
27 |
-
* Make request instance
|
28 |
-
*
|
29 |
-
* @param Collector $collector
|
30 |
-
* @param $pluginId
|
31 |
-
* @param $path
|
32 |
-
* @return static
|
33 |
-
*/
|
34 |
-
public static function make(Collector $collector, $pluginId, $path)
|
35 |
-
{
|
36 |
-
return new static($collector, $pluginId, $path);
|
37 |
-
}
|
38 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http\Requests;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Collector;
|
7 |
+
use Analyst\Contracts\RequestorContract;
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Class InstallRequest
|
11 |
+
*
|
12 |
+
* @since 0.9.4
|
13 |
+
*/
|
14 |
+
class InstallRequest extends AbstractLoggerRequest
|
15 |
+
{
|
16 |
+
/**
|
17 |
+
* Execute the request
|
18 |
+
* @param RequestorContract $requestor
|
19 |
+
* @return ApiResponse
|
20 |
+
*/
|
21 |
+
public function execute(RequestorContract $requestor)
|
22 |
+
{
|
23 |
+
return $requestor->post('logger/install', $this->toArray());
|
24 |
+
}
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Make request instance
|
28 |
+
*
|
29 |
+
* @param Collector $collector
|
30 |
+
* @param $pluginId
|
31 |
+
* @param $path
|
32 |
+
* @return static
|
33 |
+
*/
|
34 |
+
public static function make(Collector $collector, $pluginId, $path)
|
35 |
+
{
|
36 |
+
return new static($collector, $pluginId, $path);
|
37 |
+
}
|
38 |
+
}
|
analyst/src/Http/Requests/OptInRequest.php
CHANGED
@@ -1,42 +1,42 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http\Requests;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Collector;
|
7 |
-
use Analyst\Contracts\RequestContract;
|
8 |
-
use Analyst\Contracts\RequestorContract;
|
9 |
-
|
10 |
-
/**
|
11 |
-
* Class OptInRequest
|
12 |
-
*
|
13 |
-
* Is is very similar to install request
|
14 |
-
* but with different path
|
15 |
-
*
|
16 |
-
* @since 0.9.5
|
17 |
-
*/
|
18 |
-
class OptInRequest extends AbstractLoggerRequest
|
19 |
-
{
|
20 |
-
/**
|
21 |
-
* Execute the request
|
22 |
-
* @param RequestorContract $requestor
|
23 |
-
* @return ApiResponse
|
24 |
-
*/
|
25 |
-
public function execute(RequestorContract $requestor)
|
26 |
-
{
|
27 |
-
return $requestor->post('logger/opt-in', $this->toArray());
|
28 |
-
}
|
29 |
-
|
30 |
-
/**
|
31 |
-
* Make request instance
|
32 |
-
*
|
33 |
-
* @param Collector $collector
|
34 |
-
* @param $pluginId
|
35 |
-
* @param $path
|
36 |
-
* @return static
|
37 |
-
*/
|
38 |
-
public static function make(Collector $collector, $pluginId, $path)
|
39 |
-
{
|
40 |
-
return new static($collector, $pluginId, $path);
|
41 |
-
}
|
42 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http\Requests;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Collector;
|
7 |
+
use Analyst\Contracts\RequestContract;
|
8 |
+
use Analyst\Contracts\RequestorContract;
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Class OptInRequest
|
12 |
+
*
|
13 |
+
* Is is very similar to install request
|
14 |
+
* but with different path
|
15 |
+
*
|
16 |
+
* @since 0.9.5
|
17 |
+
*/
|
18 |
+
class OptInRequest extends AbstractLoggerRequest
|
19 |
+
{
|
20 |
+
/**
|
21 |
+
* Execute the request
|
22 |
+
* @param RequestorContract $requestor
|
23 |
+
* @return ApiResponse
|
24 |
+
*/
|
25 |
+
public function execute(RequestorContract $requestor)
|
26 |
+
{
|
27 |
+
return $requestor->post('logger/opt-in', $this->toArray());
|
28 |
+
}
|
29 |
+
|
30 |
+
/**
|
31 |
+
* Make request instance
|
32 |
+
*
|
33 |
+
* @param Collector $collector
|
34 |
+
* @param $pluginId
|
35 |
+
* @param $path
|
36 |
+
* @return static
|
37 |
+
*/
|
38 |
+
public static function make(Collector $collector, $pluginId, $path)
|
39 |
+
{
|
40 |
+
return new static($collector, $pluginId, $path);
|
41 |
+
}
|
42 |
+
}
|
analyst/src/Http/Requests/OptOutRequest.php
CHANGED
@@ -1,40 +1,40 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http\Requests;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Collector;
|
7 |
-
use Analyst\Contracts\RequestContract;
|
8 |
-
use Analyst\Contracts\RequestorContract;
|
9 |
-
|
10 |
-
/**
|
11 |
-
* Class OptOutRequest
|
12 |
-
*
|
13 |
-
* Is is very similar to install request
|
14 |
-
* but with different path
|
15 |
-
*
|
16 |
-
* @since 0.9.9
|
17 |
-
*/
|
18 |
-
class OptOutRequest extends AbstractLoggerRequest
|
19 |
-
{
|
20 |
-
/**
|
21 |
-
* @param Collector $collector
|
22 |
-
* @param $pluginId
|
23 |
-
* @param $path
|
24 |
-
* @return static
|
25 |
-
*/
|
26 |
-
public static function make(Collector $collector, $pluginId, $path)
|
27 |
-
{
|
28 |
-
return new static($collector, $pluginId, $path);
|
29 |
-
}
|
30 |
-
|
31 |
-
/**
|
32 |
-
* Execute the request
|
33 |
-
* @param RequestorContract $requestor
|
34 |
-
* @return ApiResponse
|
35 |
-
*/
|
36 |
-
public function execute(RequestorContract $requestor)
|
37 |
-
{
|
38 |
-
return $requestor->post('logger/opt-out', $this->toArray());
|
39 |
-
}
|
40 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http\Requests;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Collector;
|
7 |
+
use Analyst\Contracts\RequestContract;
|
8 |
+
use Analyst\Contracts\RequestorContract;
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Class OptOutRequest
|
12 |
+
*
|
13 |
+
* Is is very similar to install request
|
14 |
+
* but with different path
|
15 |
+
*
|
16 |
+
* @since 0.9.9
|
17 |
+
*/
|
18 |
+
class OptOutRequest extends AbstractLoggerRequest
|
19 |
+
{
|
20 |
+
/**
|
21 |
+
* @param Collector $collector
|
22 |
+
* @param $pluginId
|
23 |
+
* @param $path
|
24 |
+
* @return static
|
25 |
+
*/
|
26 |
+
public static function make(Collector $collector, $pluginId, $path)
|
27 |
+
{
|
28 |
+
return new static($collector, $pluginId, $path);
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Execute the request
|
33 |
+
* @param RequestorContract $requestor
|
34 |
+
* @return ApiResponse
|
35 |
+
*/
|
36 |
+
public function execute(RequestorContract $requestor)
|
37 |
+
{
|
38 |
+
return $requestor->post('logger/opt-out', $this->toArray());
|
39 |
+
}
|
40 |
+
}
|
analyst/src/Http/Requests/UninstallRequest.php
CHANGED
@@ -1,36 +1,36 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http\Requests;
|
4 |
-
|
5 |
-
use Analyst\ApiResponse;
|
6 |
-
use Analyst\Collector;
|
7 |
-
use Analyst\Contracts\RequestorContract;
|
8 |
-
|
9 |
-
/**
|
10 |
-
* Class DeactivateRequest
|
11 |
-
*
|
12 |
-
* @since 0.9.13
|
13 |
-
*/
|
14 |
-
class UninstallRequest extends AbstractLoggerRequest
|
15 |
-
{
|
16 |
-
/**
|
17 |
-
* @param Collector $collector
|
18 |
-
* @param $pluginId
|
19 |
-
* @param $path
|
20 |
-
* @return static
|
21 |
-
*/
|
22 |
-
public static function make(Collector $collector, $pluginId, $path)
|
23 |
-
{
|
24 |
-
return new static($collector, $pluginId, $path);
|
25 |
-
}
|
26 |
-
|
27 |
-
/**
|
28 |
-
* Execute the request
|
29 |
-
* @param RequestorContract $requestor
|
30 |
-
* @return ApiResponse
|
31 |
-
*/
|
32 |
-
public function execute(RequestorContract $requestor)
|
33 |
-
{
|
34 |
-
return $requestor->post('logger/uninstall', $this->toArray());
|
35 |
-
}
|
36 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http\Requests;
|
4 |
+
|
5 |
+
use Analyst\ApiResponse;
|
6 |
+
use Analyst\Collector;
|
7 |
+
use Analyst\Contracts\RequestorContract;
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Class DeactivateRequest
|
11 |
+
*
|
12 |
+
* @since 0.9.13
|
13 |
+
*/
|
14 |
+
class UninstallRequest extends AbstractLoggerRequest
|
15 |
+
{
|
16 |
+
/**
|
17 |
+
* @param Collector $collector
|
18 |
+
* @param $pluginId
|
19 |
+
* @param $path
|
20 |
+
* @return static
|
21 |
+
*/
|
22 |
+
public static function make(Collector $collector, $pluginId, $path)
|
23 |
+
{
|
24 |
+
return new static($collector, $pluginId, $path);
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Execute the request
|
29 |
+
* @param RequestorContract $requestor
|
30 |
+
* @return ApiResponse
|
31 |
+
*/
|
32 |
+
public function execute(RequestorContract $requestor)
|
33 |
+
{
|
34 |
+
return $requestor->post('logger/uninstall', $this->toArray());
|
35 |
+
}
|
36 |
+
}
|
analyst/src/Http/WordPressHttpClient.php
CHANGED
@@ -1,61 +1,61 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Http;
|
4 |
-
|
5 |
-
use WP_Error;
|
6 |
-
use Analyst\ApiResponse;
|
7 |
-
use Analyst\Contracts\HttpClientContract;
|
8 |
-
use Requests_Utility_CaseInsensitiveDictionary;
|
9 |
-
|
10 |
-
class WordPressHttpClient implements HttpClientContract
|
11 |
-
{
|
12 |
-
/**
|
13 |
-
* Make an http request
|
14 |
-
*
|
15 |
-
* @param $method
|
16 |
-
* @param $url
|
17 |
-
* @param $body
|
18 |
-
* @param $headers
|
19 |
-
* @return ApiResponse
|
20 |
-
*/
|
21 |
-
public function request($method, $url, $body, $headers)
|
22 |
-
{
|
23 |
-
$options = [
|
24 |
-
'body' => json_encode($body),
|
25 |
-
'headers' => $headers,
|
26 |
-
'method' => $method,
|
27 |
-
'timeout' => 30,
|
28 |
-
];
|
29 |
-
|
30 |
-
$response = wp_remote_request($url, $options);
|
31 |
-
|
32 |
-
$body = [];
|
33 |
-
$responseHeaders = [];
|
34 |
-
|
35 |
-
if ($response instanceof WP_Error) {
|
36 |
-
$code = $response->get_error_code();
|
37 |
-
} else {
|
38 |
-
/** @var Requests_Utility_CaseInsensitiveDictionary $headers */
|
39 |
-
$responseHeaders = $response['headers']->getAll();
|
40 |
-
$body = json_decode($response['body'], true);
|
41 |
-
$code = $response['response']['code'];
|
42 |
-
}
|
43 |
-
|
44 |
-
|
45 |
-
return new ApiResponse(
|
46 |
-
$body,
|
47 |
-
$code,
|
48 |
-
$responseHeaders
|
49 |
-
);
|
50 |
-
}
|
51 |
-
|
52 |
-
/**
|
53 |
-
* Must return `true` if client is supported
|
54 |
-
*
|
55 |
-
* @return bool
|
56 |
-
*/
|
57 |
-
public static function hasSupport()
|
58 |
-
{
|
59 |
-
return function_exists('wp_remote_request');
|
60 |
-
}
|
61 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Http;
|
4 |
+
|
5 |
+
use WP_Error;
|
6 |
+
use Analyst\ApiResponse;
|
7 |
+
use Analyst\Contracts\HttpClientContract;
|
8 |
+
use Requests_Utility_CaseInsensitiveDictionary;
|
9 |
+
|
10 |
+
class WordPressHttpClient implements HttpClientContract
|
11 |
+
{
|
12 |
+
/**
|
13 |
+
* Make an http request
|
14 |
+
*
|
15 |
+
* @param $method
|
16 |
+
* @param $url
|
17 |
+
* @param $body
|
18 |
+
* @param $headers
|
19 |
+
* @return ApiResponse
|
20 |
+
*/
|
21 |
+
public function request($method, $url, $body, $headers)
|
22 |
+
{
|
23 |
+
$options = [
|
24 |
+
'body' => json_encode($body),
|
25 |
+
'headers' => $headers,
|
26 |
+
'method' => $method,
|
27 |
+
'timeout' => 30,
|
28 |
+
];
|
29 |
+
|
30 |
+
$response = wp_remote_request($url, $options);
|
31 |
+
|
32 |
+
$body = [];
|
33 |
+
$responseHeaders = [];
|
34 |
+
|
35 |
+
if ($response instanceof WP_Error) {
|
36 |
+
$code = $response->get_error_code();
|
37 |
+
} else {
|
38 |
+
/** @var Requests_Utility_CaseInsensitiveDictionary $headers */
|
39 |
+
$responseHeaders = $response['headers']->getAll();
|
40 |
+
$body = json_decode($response['body'], true);
|
41 |
+
$code = $response['response']['code'];
|
42 |
+
}
|
43 |
+
|
44 |
+
|
45 |
+
return new ApiResponse(
|
46 |
+
$body,
|
47 |
+
$code,
|
48 |
+
$responseHeaders
|
49 |
+
);
|
50 |
+
}
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Must return `true` if client is supported
|
54 |
+
*
|
55 |
+
* @return bool
|
56 |
+
*/
|
57 |
+
public static function hasSupport()
|
58 |
+
{
|
59 |
+
return function_exists('wp_remote_request');
|
60 |
+
}
|
61 |
+
}
|
analyst/src/Mutator.php
CHANGED
@@ -1,103 +1,103 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst;
|
4 |
-
|
5 |
-
use Analyst\Cache\DatabaseCache;
|
6 |
-
use Analyst\Contracts\CacheContract;
|
7 |
-
use Analyst\Notices\NoticeFactory;
|
8 |
-
|
9 |
-
/**
|
10 |
-
* Class Mutator mutates (modifies) UX with additional
|
11 |
-
* functional
|
12 |
-
*/
|
13 |
-
class Mutator
|
14 |
-
{
|
15 |
-
protected $notices = [];
|
16 |
-
|
17 |
-
/**
|
18 |
-
* @var NoticeFactory
|
19 |
-
*/
|
20 |
-
protected $factory;
|
21 |
-
|
22 |
-
/**
|
23 |
-
* @var CacheContract
|
24 |
-
*/
|
25 |
-
protected $cache;
|
26 |
-
|
27 |
-
public function __construct()
|
28 |
-
{
|
29 |
-
$this->factory = NoticeFactory::instance();
|
30 |
-
|
31 |
-
$this->notices = $this->factory->getNotices();
|
32 |
-
|
33 |
-
$this->cache = DatabaseCache::getInstance();
|
34 |
-
}
|
35 |
-
|
36 |
-
/**
|
37 |
-
* Register filters all necessary stuff.
|
38 |
-
* Can be invoked only once.
|
39 |
-
*
|
40 |
-
* @return void
|
41 |
-
*/
|
42 |
-
public function initialize()
|
43 |
-
{
|
44 |
-
$this->registerLinks();
|
45 |
-
$this->registerAssets();
|
46 |
-
$this->registerHooks();
|
47 |
-
}
|
48 |
-
|
49 |
-
/**
|
50 |
-
* Register all necessary filters and templates
|
51 |
-
*
|
52 |
-
* @return void
|
53 |
-
*/
|
54 |
-
protected function registerLinks()
|
55 |
-
{
|
56 |
-
add_action('admin_footer', function () {
|
57 |
-
analyst_require_template('optout.php', [
|
58 |
-
'shieldImage' => analyst_assets_url('img/shield_question.png')
|
59 |
-
]);
|
60 |
-
|
61 |
-
analyst_require_template('optin.php');
|
62 |
-
|
63 |
-
analyst_require_template('forms/deactivate.php', [
|
64 |
-
'pencilImage' => analyst_assets_url('img/pencil.png'),
|
65 |
-
'smileImage' => analyst_assets_url('img/smile.png'),
|
66 |
-
]);
|
67 |
-
|
68 |
-
analyst_require_template('forms/install.php', [
|
69 |
-
'pluginToInstall' => $this->cache->get('plugin_to_install'),
|
70 |
-
'shieldImage' => analyst_assets_url('img/shield_success.png'),
|
71 |
-
]);
|
72 |
-
});
|
73 |
-
|
74 |
-
add_action('admin_notices',function () {
|
75 |
-
foreach ($this->notices as $notice) {
|
76 |
-
analyst_require_template('notice.php', ['notice' => $notice]);
|
77 |
-
}
|
78 |
-
});
|
79 |
-
}
|
80 |
-
|
81 |
-
/**
|
82 |
-
* Register all assets
|
83 |
-
*/
|
84 |
-
public function registerAssets()
|
85 |
-
{
|
86 |
-
add_action('admin_enqueue_scripts', function () {
|
87 |
-
wp_enqueue_style('analyst_custom', analyst_assets_url('/css/customize.css'));
|
88 |
-
wp_enqueue_script('analyst_custom', analyst_assets_url('/js/customize.js'));
|
89 |
-
});
|
90 |
-
}
|
91 |
-
|
92 |
-
/**
|
93 |
-
* Register action hooks
|
94 |
-
*/
|
95 |
-
public function registerHooks()
|
96 |
-
{
|
97 |
-
add_action('wp_ajax_analyst_notification_dismiss', function () {
|
98 |
-
$this->factory->remove($_POST['id']);
|
99 |
-
|
100 |
-
$this->factory->sync();
|
101 |
-
});
|
102 |
-
}
|
103 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst;
|
4 |
+
|
5 |
+
use Analyst\Cache\DatabaseCache;
|
6 |
+
use Analyst\Contracts\CacheContract;
|
7 |
+
use Analyst\Notices\NoticeFactory;
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Class Mutator mutates (modifies) UX with additional
|
11 |
+
* functional
|
12 |
+
*/
|
13 |
+
class Mutator
|
14 |
+
{
|
15 |
+
protected $notices = [];
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @var NoticeFactory
|
19 |
+
*/
|
20 |
+
protected $factory;
|
21 |
+
|
22 |
+
/**
|
23 |
+
* @var CacheContract
|
24 |
+
*/
|
25 |
+
protected $cache;
|
26 |
+
|
27 |
+
public function __construct()
|
28 |
+
{
|
29 |
+
$this->factory = NoticeFactory::instance();
|
30 |
+
|
31 |
+
$this->notices = $this->factory->getNotices();
|
32 |
+
|
33 |
+
$this->cache = DatabaseCache::getInstance();
|
34 |
+
}
|
35 |
+
|
36 |
+
/**
|
37 |
+
* Register filters all necessary stuff.
|
38 |
+
* Can be invoked only once.
|
39 |
+
*
|
40 |
+
* @return void
|
41 |
+
*/
|
42 |
+
public function initialize()
|
43 |
+
{
|
44 |
+
$this->registerLinks();
|
45 |
+
$this->registerAssets();
|
46 |
+
$this->registerHooks();
|
47 |
+
}
|
48 |
+
|
49 |
+
/**
|
50 |
+
* Register all necessary filters and templates
|
51 |
+
*
|
52 |
+
* @return void
|
53 |
+
*/
|
54 |
+
protected function registerLinks()
|
55 |
+
{
|
56 |
+
add_action('admin_footer', function () {
|
57 |
+
analyst_require_template('optout.php', [
|
58 |
+
'shieldImage' => analyst_assets_url('img/shield_question.png')
|
59 |
+
]);
|
60 |
+
|
61 |
+
analyst_require_template('optin.php');
|
62 |
+
|
63 |
+
analyst_require_template('forms/deactivate.php', [
|
64 |
+
'pencilImage' => analyst_assets_url('img/pencil.png'),
|
65 |
+
'smileImage' => analyst_assets_url('img/smile.png'),
|
66 |
+
]);
|
67 |
+
|
68 |
+
analyst_require_template('forms/install.php', [
|
69 |
+
'pluginToInstall' => $this->cache->get('plugin_to_install'),
|
70 |
+
'shieldImage' => analyst_assets_url('img/shield_success.png'),
|
71 |
+
]);
|
72 |
+
});
|
73 |
+
|
74 |
+
add_action('admin_notices',function () {
|
75 |
+
foreach ($this->notices as $notice) {
|
76 |
+
analyst_require_template('notice.php', ['notice' => $notice]);
|
77 |
+
}
|
78 |
+
});
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* Register all assets
|
83 |
+
*/
|
84 |
+
public function registerAssets()
|
85 |
+
{
|
86 |
+
add_action('admin_enqueue_scripts', function () {
|
87 |
+
wp_enqueue_style('analyst_custom', analyst_assets_url('/css/customize.css'));
|
88 |
+
wp_enqueue_script('analyst_custom', analyst_assets_url('/js/customize.js'));
|
89 |
+
});
|
90 |
+
}
|
91 |
+
|
92 |
+
/**
|
93 |
+
* Register action hooks
|
94 |
+
*/
|
95 |
+
public function registerHooks()
|
96 |
+
{
|
97 |
+
add_action('wp_ajax_analyst_notification_dismiss', function () {
|
98 |
+
$this->factory->remove($_POST['id']);
|
99 |
+
|
100 |
+
$this->factory->sync();
|
101 |
+
});
|
102 |
+
}
|
103 |
+
}
|
analyst/src/Notices/Notice.php
CHANGED
@@ -1,121 +1,121 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Notices;
|
4 |
-
|
5 |
-
class Notice
|
6 |
-
{
|
7 |
-
/**
|
8 |
-
* Id of notice
|
9 |
-
*
|
10 |
-
* @var string
|
11 |
-
*/
|
12 |
-
protected $id;
|
13 |
-
|
14 |
-
/**
|
15 |
-
* Body of notice
|
16 |
-
*
|
17 |
-
* @var string
|
18 |
-
*/
|
19 |
-
protected $body;
|
20 |
-
|
21 |
-
/**
|
22 |
-
* Account id
|
23 |
-
*
|
24 |
-
* @var string
|
25 |
-
*/
|
26 |
-
protected $accountId;
|
27 |
-
|
28 |
-
/**
|
29 |
-
* The plugin name
|
30 |
-
*
|
31 |
-
* @var string
|
32 |
-
*/
|
33 |
-
protected $pluginName;
|
34 |
-
|
35 |
-
/**
|
36 |
-
* New notice
|
37 |
-
*
|
38 |
-
* @param $id
|
39 |
-
* @param $accountId
|
40 |
-
* @param $body
|
41 |
-
* @param null $pluginName
|
42 |
-
*
|
43 |
-
* @return Notice
|
44 |
-
*/
|
45 |
-
public static function make($id, $accountId, $body, $pluginName = null)
|
46 |
-
{
|
47 |
-
return new Notice($id, $accountId, $body, $pluginName);
|
48 |
-
}
|
49 |
-
|
50 |
-
public function __construct($id, $accountId, $body, $pluginName)
|
51 |
-
{
|
52 |
-
$this->setId($id);
|
53 |
-
$this->setBody($body);
|
54 |
-
$this->setAccountId($accountId);
|
55 |
-
$this->setPluginName($pluginName);
|
56 |
-
}
|
57 |
-
|
58 |
-
/**
|
59 |
-
* @return string
|
60 |
-
*/
|
61 |
-
public function getId()
|
62 |
-
{
|
63 |
-
return $this->id;
|
64 |
-
}
|
65 |
-
|
66 |
-
/**
|
67 |
-
* @param string $id
|
68 |
-
*/
|
69 |
-
public function setId($id)
|
70 |
-
{
|
71 |
-
$this->id = $id;
|
72 |
-
}
|
73 |
-
|
74 |
-
/**
|
75 |
-
* @return string
|
76 |
-
*/
|
77 |
-
public function getBody()
|
78 |
-
{
|
79 |
-
return $this->body;
|
80 |
-
}
|
81 |
-
|
82 |
-
/**
|
83 |
-
* @param string $body
|
84 |
-
*/
|
85 |
-
public function setBody($body)
|
86 |
-
{
|
87 |
-
$this->body = $body;
|
88 |
-
}
|
89 |
-
|
90 |
-
/**
|
91 |
-
* @return string
|
92 |
-
*/
|
93 |
-
public function getAccountId()
|
94 |
-
{
|
95 |
-
return $this->accountId;
|
96 |
-
}
|
97 |
-
|
98 |
-
/**
|
99 |
-
* @param string $accountId
|
100 |
-
*/
|
101 |
-
public function setAccountId($accountId)
|
102 |
-
{
|
103 |
-
$this->accountId = $accountId;
|
104 |
-
}
|
105 |
-
|
106 |
-
/**
|
107 |
-
* @return string|null
|
108 |
-
*/
|
109 |
-
public function getPluginName()
|
110 |
-
{
|
111 |
-
return $this->pluginName;
|
112 |
-
}
|
113 |
-
|
114 |
-
/**
|
115 |
-
* @param string $pluginName
|
116 |
-
*/
|
117 |
-
public function setPluginName($pluginName)
|
118 |
-
{
|
119 |
-
$this->pluginName = $pluginName;
|
120 |
-
}
|
121 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Notices;
|
4 |
+
|
5 |
+
class Notice
|
6 |
+
{
|
7 |
+
/**
|
8 |
+
* Id of notice
|
9 |
+
*
|
10 |
+
* @var string
|
11 |
+
*/
|
12 |
+
protected $id;
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Body of notice
|
16 |
+
*
|
17 |
+
* @var string
|
18 |
+
*/
|
19 |
+
protected $body;
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Account id
|
23 |
+
*
|
24 |
+
* @var string
|
25 |
+
*/
|
26 |
+
protected $accountId;
|
27 |
+
|
28 |
+
/**
|
29 |
+
* The plugin name
|
30 |
+
*
|
31 |
+
* @var string
|
32 |
+
*/
|
33 |
+
protected $pluginName;
|
34 |
+
|
35 |
+
/**
|
36 |
+
* New notice
|
37 |
+
*
|
38 |
+
* @param $id
|
39 |
+
* @param $accountId
|
40 |
+
* @param $body
|
41 |
+
* @param null $pluginName
|
42 |
+
*
|
43 |
+
* @return Notice
|
44 |
+
*/
|
45 |
+
public static function make($id, $accountId, $body, $pluginName = null)
|
46 |
+
{
|
47 |
+
return new Notice($id, $accountId, $body, $pluginName);
|
48 |
+
}
|
49 |
+
|
50 |
+
public function __construct($id, $accountId, $body, $pluginName)
|
51 |
+
{
|
52 |
+
$this->setId($id);
|
53 |
+
$this->setBody($body);
|
54 |
+
$this->setAccountId($accountId);
|
55 |
+
$this->setPluginName($pluginName);
|
56 |
+
}
|
57 |
+
|
58 |
+
/**
|
59 |
+
* @return string
|
60 |
+
*/
|
61 |
+
public function getId()
|
62 |
+
{
|
63 |
+
return $this->id;
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* @param string $id
|
68 |
+
*/
|
69 |
+
public function setId($id)
|
70 |
+
{
|
71 |
+
$this->id = $id;
|
72 |
+
}
|
73 |
+
|
74 |
+
/**
|
75 |
+
* @return string
|
76 |
+
*/
|
77 |
+
public function getBody()
|
78 |
+
{
|
79 |
+
return $this->body;
|
80 |
+
}
|
81 |
+
|
82 |
+
/**
|
83 |
+
* @param string $body
|
84 |
+
*/
|
85 |
+
public function setBody($body)
|
86 |
+
{
|
87 |
+
$this->body = $body;
|
88 |
+
}
|
89 |
+
|
90 |
+
/**
|
91 |
+
* @return string
|
92 |
+
*/
|
93 |
+
public function getAccountId()
|
94 |
+
{
|
95 |
+
return $this->accountId;
|
96 |
+
}
|
97 |
+
|
98 |
+
/**
|
99 |
+
* @param string $accountId
|
100 |
+
*/
|
101 |
+
public function setAccountId($accountId)
|
102 |
+
{
|
103 |
+
$this->accountId = $accountId;
|
104 |
+
}
|
105 |
+
|
106 |
+
/**
|
107 |
+
* @return string|null
|
108 |
+
*/
|
109 |
+
public function getPluginName()
|
110 |
+
{
|
111 |
+
return $this->pluginName;
|
112 |
+
}
|
113 |
+
|
114 |
+
/**
|
115 |
+
* @param string $pluginName
|
116 |
+
*/
|
117 |
+
public function setPluginName($pluginName)
|
118 |
+
{
|
119 |
+
$this->pluginName = $pluginName;
|
120 |
+
}
|
121 |
+
}
|
analyst/src/Notices/NoticeFactory.php
CHANGED
@@ -1,130 +1,130 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
namespace Analyst\Notices;
|
4 |
-
|
5 |
-
use Analyst\Core\AbstractFactory;
|
6 |
-
|
7 |
-
class NoticeFactory extends AbstractFactory
|
8 |
-
{
|
9 |
-
private static $instance;
|
10 |
-
|
11 |
-
CONST OPTIONS_KEY = 'analyst_notices';
|
12 |
-
|
13 |
-
/**
|
14 |
-
* Application notifications
|
15 |
-
*
|
16 |
-
* @var array
|
17 |
-
*/
|
18 |
-
protected $notices = [];
|
19 |
-
|
20 |
-
/**
|
21 |
-
* Read factory from options or make fresh instance
|
22 |
-
*
|
23 |
-
* @return NoticeFactory
|
24 |
-
*/
|
25 |
-
public static function instance()
|
26 |
-
{
|
27 |
-
if (!static::$instance) {
|
28 |
-
$raw = get_option(self::OPTIONS_KEY);
|
29 |
-
|
30 |
-
// In case object is already unserialized
|
31 |
-
// and instance of AccountDataFactory we
|
32 |
-
// return it, in other case deal with
|
33 |
-
// serialized string data
|
34 |
-
if ($raw instanceof self) {
|
35 |
-
static::$instance = $raw;
|
36 |
-
} else {
|
37 |
-
static::$instance = is_string($raw) ? static::unserialize($raw) : new self();
|
38 |
-
}
|
39 |
-
}
|
40 |
-
|
41 |
-
return static::$instance;
|
42 |
-
}
|
43 |
-
|
44 |
-
/**
|
45 |
-
* Sync this object data with cache
|
46 |
-
*/
|
47 |
-
public function sync()
|
48 |
-
{
|
49 |
-
update_option(self::OPTIONS_KEY, serialize($this));
|
50 |
-
}
|
51 |
-
|
52 |
-
/**
|
53 |
-
* Sync this instance data with cache
|
54 |
-
*/
|
55 |
-
public static function syncData()
|
56 |
-
{
|
57 |
-
static::instance()->sync();
|
58 |
-
}
|
59 |
-
|
60 |
-
/**
|
61 |
-
* @return array
|
62 |
-
*/
|
63 |
-
public function getNotices()
|
64 |
-
{
|
65 |
-
return $this->notices;
|
66 |
-
}
|
67 |
-
|
68 |
-
/**
|
69 |
-
* Filter out notices for certain account
|
70 |
-
*
|
71 |
-
* @param $accountId
|
72 |
-
* @return array
|
73 |
-
*/
|
74 |
-
public function getNoticesForAccount($accountId)
|
75 |
-
{
|
76 |
-
return array_filter($this->notices, function (Notice $notice) use ($accountId) {
|
77 |
-
return $notice->getAccountId() === $accountId;
|
78 |
-
});
|
79 |
-
}
|
80 |
-
|
81 |
-
/**
|
82 |
-
* Add new notice
|
83 |
-
*
|
84 |
-
* @param $notice
|
85 |
-
*
|
86 |
-
* @return $this
|
87 |
-
*/
|
88 |
-
public function addNotice($notice)
|
89 |
-
{
|
90 |
-
array_push($this->notices, $notice);
|
91 |
-
|
92 |
-
$this->sync();
|
93 |
-
|
94 |
-
return $this;
|
95 |
-
}
|
96 |
-
|
97 |
-
/**
|
98 |
-
* Find notice by id
|
99 |
-
*
|
100 |
-
* @param $id
|
101 |
-
* @return Notice|null
|
102 |
-
*/
|
103 |
-
public function find($id)
|
104 |
-
{
|
105 |
-
$notices = array_filter($this->notices, function (Notice $notice) use ($id) {
|
106 |
-
return $notice->getId() === $id;
|
107 |
-
});
|
108 |
-
|
109 |
-
return array_pop($notices);
|
110 |
-
}
|
111 |
-
|
112 |
-
/**
|
113 |
-
* Remove notice by it's id
|
114 |
-
*
|
115 |
-
* @param $id
|
116 |
-
*/
|
117 |
-
public function remove($id)
|
118 |
-
{
|
119 |
-
// Get key of notice to remove
|
120 |
-
$key = array_search(
|
121 |
-
$this->find($id),
|
122 |
-
$this->notices
|
123 |
-
);
|
124 |
-
|
125 |
-
// Unset notice with key
|
126 |
-
unset($this->notices[$key]);
|
127 |
-
|
128 |
-
$this->sync();
|
129 |
-
}
|
130 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Analyst\Notices;
|
4 |
+
|
5 |
+
use Analyst\Core\AbstractFactory;
|
6 |
+
|
7 |
+
class NoticeFactory extends AbstractFactory
|
8 |
+
{
|
9 |
+
private static $instance;
|
10 |
+
|
11 |
+
CONST OPTIONS_KEY = 'analyst_notices';
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Application notifications
|
15 |
+
*
|
16 |
+
* @var array
|
17 |
+
*/
|
18 |
+
protected $notices = [];
|
19 |
+
|
20 |
+
/**
|
21 |
+
* Read factory from options or make fresh instance
|
22 |
+
*
|
23 |
+
* @return NoticeFactory
|
24 |
+
*/
|
25 |
+
public static function instance()
|
26 |
+
{
|
27 |
+
if (!static::$instance) {
|
28 |
+
$raw = get_option(self::OPTIONS_KEY);
|
29 |
+
|
30 |
+
// In case object is already unserialized
|
31 |
+
// and instance of AccountDataFactory we
|
32 |
+
// return it, in other case deal with
|
33 |
+
// serialized string data
|
34 |
+
if ($raw instanceof self) {
|
35 |
+
static::$instance = $raw;
|
36 |
+
} else {
|
37 |
+
static::$instance = is_string($raw) ? static::unserialize($raw) : new self();
|
38 |
+
}
|
39 |
+
}
|
40 |
+
|
41 |
+
return static::$instance;
|
42 |
+
}
|
43 |
+
|
44 |
+
/**
|
45 |
+
* Sync this object data with cache
|
46 |
+
*/
|
47 |
+
public function sync()
|
48 |
+
{
|
49 |
+
update_option(self::OPTIONS_KEY, serialize($this));
|
50 |
+
}
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Sync this instance data with cache
|
54 |
+
*/
|
55 |
+
public static function syncData()
|
56 |
+
{
|
57 |
+
static::instance()->sync();
|
58 |
+
}
|
59 |
+
|
60 |
+
/**
|
61 |
+
* @return array
|
62 |
+
*/
|
63 |
+
public function getNotices()
|
64 |
+
{
|
65 |
+
return $this->notices;
|
66 |
+
}
|
67 |
+
|
68 |
+
/**
|
69 |
+
* Filter out notices for certain account
|
70 |
+
*
|
71 |
+
* @param $accountId
|
72 |
+
* @return array
|
73 |
+
*/
|
74 |
+
public function getNoticesForAccount($accountId)
|
75 |
+
{
|
76 |
+
return array_filter($this->notices, function (Notice $notice) use ($accountId) {
|
77 |
+
return $notice->getAccountId() === $accountId;
|
78 |
+
});
|
79 |
+
}
|
80 |
+
|
81 |
+
/**
|
82 |
+
* Add new notice
|
83 |
+
*
|
84 |
+
* @param $notice
|
85 |
+
*
|
86 |
+
* @return $this
|
87 |
+
*/
|
88 |
+
public function addNotice($notice)
|
89 |
+
{
|
90 |
+
array_push($this->notices, $notice);
|
91 |
+
|
92 |
+
$this->sync();
|
93 |
+
|
94 |
+
return $this;
|
95 |
+
}
|
96 |
+
|
97 |
+
/**
|
98 |
+
* Find notice by id
|
99 |
+
*
|
100 |
+
* @param $id
|
101 |
+
* @return Notice|null
|
102 |
+
*/
|
103 |
+
public function find($id)
|
104 |
+
{
|
105 |
+
$notices = array_filter($this->notices, function (Notice $notice) use ($id) {
|
106 |
+
return $notice->getId() === $id;
|
107 |
+
});
|
108 |
+
|
109 |
+
return array_pop($notices);
|
110 |
+
}
|
111 |
+
|
112 |
+
/**
|
113 |
+
* Remove notice by it's id
|
114 |
+
*
|
115 |
+
* @param $id
|
116 |
+
*/
|
117 |
+
public function remove($id)
|
118 |
+
{
|
119 |
+
// Get key of notice to remove
|
120 |
+
$key = array_search(
|
121 |
+
$this->find($id),
|
122 |
+
$this->notices
|
123 |
+
);
|
124 |
+
|
125 |
+
// Unset notice with key
|
126 |
+
unset($this->notices[$key]);
|
127 |
+
|
128 |
+
$this->sync();
|
129 |
+
}
|
130 |
+
}
|
analyst/src/helpers.php
CHANGED
@@ -1,84 +1,84 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
if (! function_exists('analyst_assets_path')) {
|
4 |
-
/**
|
5 |
-
* Generates path to file in assets folder
|
6 |
-
*
|
7 |
-
* @param $file
|
8 |
-
* @return string
|
9 |
-
*/
|
10 |
-
function analyst_assets_path($file)
|
11 |
-
{
|
12 |
-
$path = sprintf('%s/assets/%s', realpath(__DIR__ . '/..'), trim($file, '/'));
|
13 |
-
|
14 |
-
return wp_normalize_path($path);
|
15 |
-
}
|
16 |
-
}
|
17 |
-
|
18 |
-
|
19 |
-
if (! function_exists('analyst_assets_url')) {
|
20 |
-
/**
|
21 |
-
* Generates url to file in assets folder
|
22 |
-
*
|
23 |
-
* @param $file
|
24 |
-
* @return string
|
25 |
-
*/
|
26 |
-
function analyst_assets_url($file)
|
27 |
-
{
|
28 |
-
$absolutePath = analyst_assets_path($file);
|
29 |
-
|
30 |
-
// We can always rely on WP_PLUGIN_DIR, because that's where
|
31 |
-
// wordpress install it's plugin's. So we remove last segment
|
32 |
-
// of that path to get the content dir AKA directly where
|
33 |
-
// plugins are installed and make the magic...
|
34 |
-
$contentDir = is_link(WP_PLUGIN_DIR) ?
|
35 |
-
dirname(wp_normalize_path(readlink(WP_PLUGIN_DIR))) :
|
36 |
-
dirname(wp_normalize_path(WP_PLUGIN_DIR));
|
37 |
-
|
38 |
-
$relativePath = str_replace( $contentDir, '', $absolutePath);
|
39 |
-
|
40 |
-
return content_url(wp_normalize_path($relativePath));
|
41 |
-
}
|
42 |
-
}
|
43 |
-
|
44 |
-
if (! function_exists('analyst_templates_path')) {
|
45 |
-
/**
|
46 |
-
* Generates path to file in templates folder
|
47 |
-
*
|
48 |
-
* @param $file
|
49 |
-
* @return string
|
50 |
-
*/
|
51 |
-
function analyst_templates_path($file)
|
52 |
-
{
|
53 |
-
$path = sprintf('%s/templates/%s', realpath(__DIR__ . '/..'), trim($file, '/'));
|
54 |
-
|
55 |
-
return wp_normalize_path($path);
|
56 |
-
}
|
57 |
-
}
|
58 |
-
|
59 |
-
if (! function_exists('analyst_require_template')) {
|
60 |
-
/**
|
61 |
-
* Require certain template with data
|
62 |
-
*
|
63 |
-
* @param $file
|
64 |
-
* @param array $data
|
65 |
-
*/
|
66 |
-
function analyst_require_template($file, $data = [])
|
67 |
-
{
|
68 |
-
// Extract data to current scope table
|
69 |
-
extract($data);
|
70 |
-
|
71 |
-
require analyst_templates_path($file);
|
72 |
-
}
|
73 |
-
}
|
74 |
-
|
75 |
-
if (! function_exists('dd')) {
|
76 |
-
/**
|
77 |
-
* Dump some data
|
78 |
-
*/
|
79 |
-
function dd ()
|
80 |
-
{
|
81 |
-
var_dump(func_get_args());
|
82 |
-
die();
|
83 |
-
}
|
84 |
-
}
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if (! function_exists('analyst_assets_path')) {
|
4 |
+
/**
|
5 |
+
* Generates path to file in assets folder
|
6 |
+
*
|
7 |
+
* @param $file
|
8 |
+
* @return string
|
9 |
+
*/
|
10 |
+
function analyst_assets_path($file)
|
11 |
+
{
|
12 |
+
$path = sprintf('%s/assets/%s', realpath(__DIR__ . '/..'), trim($file, '/'));
|
13 |
+
|
14 |
+
return wp_normalize_path($path);
|
15 |
+
}
|
16 |
+
}
|
17 |
+
|
18 |
+
|
19 |
+
if (! function_exists('analyst_assets_url')) {
|
20 |
+
/**
|
21 |
+
* Generates url to file in assets folder
|
22 |
+
*
|
23 |
+
* @param $file
|
24 |
+
* @return string
|
25 |
+
*/
|
26 |
+
function analyst_assets_url($file)
|
27 |
+
{
|
28 |
+
$absolutePath = analyst_assets_path($file);
|
29 |
+
|
30 |
+
// We can always rely on WP_PLUGIN_DIR, because that's where
|
31 |
+
// wordpress install it's plugin's. So we remove last segment
|
32 |
+
// of that path to get the content dir AKA directly where
|
33 |
+
// plugins are installed and make the magic...
|
34 |
+
$contentDir = is_link(WP_PLUGIN_DIR) ?
|
35 |
+
dirname(wp_normalize_path(readlink(WP_PLUGIN_DIR))) :
|
36 |
+
dirname(wp_normalize_path(WP_PLUGIN_DIR));
|
37 |
+
|
38 |
+
$relativePath = str_replace( $contentDir, '', $absolutePath);
|
39 |
+
|
40 |
+
return content_url(wp_normalize_path($relativePath));
|
41 |
+
}
|
42 |
+
}
|
43 |
+
|
44 |
+
if (! function_exists('analyst_templates_path')) {
|
45 |
+
/**
|
46 |
+
* Generates path to file in templates folder
|
47 |
+
*
|
48 |
+
* @param $file
|
49 |
+
* @return string
|
50 |
+
*/
|
51 |
+
function analyst_templates_path($file)
|
52 |
+
{
|
53 |
+
$path = sprintf('%s/templates/%s', realpath(__DIR__ . '/..'), trim($file, '/'));
|
54 |
+
|
55 |
+
return wp_normalize_path($path);
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
if (! function_exists('analyst_require_template')) {
|
60 |
+
/**
|
61 |
+
* Require certain template with data
|
62 |
+
*
|
63 |
+
* @param $file
|
64 |
+
* @param array $data
|
65 |
+
*/
|
66 |
+
function analyst_require_template($file, $data = [])
|
67 |
+
{
|
68 |
+
// Extract data to current scope table
|
69 |
+
extract($data);
|
70 |
+
|
71 |
+
require analyst_templates_path($file);
|
72 |
+
}
|
73 |
+
}
|
74 |
+
|
75 |
+
if (! function_exists('dd')) {
|
76 |
+
/**
|
77 |
+
* Dump some data
|
78 |
+
*/
|
79 |
+
function dd ()
|
80 |
+
{
|
81 |
+
var_dump(func_get_args());
|
82 |
+
die();
|
83 |
+
}
|
84 |
+
}
|
analyst/templates/forms/deactivate.php
CHANGED
@@ -1,156 +1,156 @@
|
|
1 |
-
<div id="analyst-deactivate-modal" class="analyst-modal" style="display: none">
|
2 |
-
<div class="analyst-modal-content" style="width: 500px">
|
3 |
-
<div class="analyst-disable-modal-mask" id="analyst-disable-deactivate-modal-mask" style="display: none"></div>
|
4 |
-
<div style="display: flex">
|
5 |
-
<div class="analyst-install-image-block" style="width: 80px">
|
6 |
-
<img src="<?=$pencilImage?>"/>
|
7 |
-
</div>
|
8 |
-
<div class="analyst-install-description-block" style="padding-left: 20px">
|
9 |
-
<strong class="analyst-modal-header">Why do you deactivate?</strong>
|
10 |
-
<div class="analyst-install-description-text" style="padding-top: 2px">
|
11 |
-
Please let us know, so we can improve it! Thank you <img class="analyst-smile-image" src="<?=$smileImage?>" alt="">
|
12 |
-
</div>
|
13 |
-
</div>
|
14 |
-
</div>
|
15 |
-
<div>
|
16 |
-
<ul id="analyst-deactivation-reasons">
|
17 |
-
<li>
|
18 |
-
<label>
|
19 |
-
<span>
|
20 |
-
<input type="radio" name="deactivation-reason">
|
21 |
-
</span>
|
22 |
-
<span class="question" data-question="I couldn't understand how to make it work">I couldn't understand how to make it work</span>
|
23 |
-
</label>
|
24 |
-
</li>
|
25 |
-
<li data-input-type="textarea" data-input-placeholder="What should have worked, but didn’t?">
|
26 |
-
<label>
|
27 |
-
<span>
|
28 |
-
<input type="radio" name="deactivation-reason">
|
29 |
-
</span>
|
30 |
-
<span class="question" data-question="The plugin didn't work as expected">The plugin didn't work as expected</span>
|
31 |
-
</label>
|
32 |
-
<div class="question-answer"></div>
|
33 |
-
</li>
|
34 |
-
<li data-input-type="input" data-input-placeholder="What is the plugin name?">
|
35 |
-
<label>
|
36 |
-
<span>
|
37 |
-
<input type="radio" name="deactivation-reason">
|
38 |
-
</span>
|
39 |
-
<span class="question" data-question="I found a better plugin">I found a better plugin</span>
|
40 |
-
</label>
|
41 |
-
<div class="question-answer"></div>
|
42 |
-
</li>
|
43 |
-
<li>
|
44 |
-
<label>
|
45 |
-
<span>
|
46 |
-
<input type="radio" name="deactivation-reason">
|
47 |
-
</span>
|
48 |
-
<span class="question" data-question="It's a temporary deactivation">It's a temporary deactivation</span>
|
49 |
-
</label>
|
50 |
-
<div class="question-answer"></div>
|
51 |
-
</li>
|
52 |
-
<li data-input-type="textarea" data-input-placeholder="Please provide the reason of deactivation">
|
53 |
-
<label>
|
54 |
-
<span>
|
55 |
-
<input type="radio" name="deactivation-reason">
|
56 |
-
</span>
|
57 |
-
<span class="question" data-question="Other">Other</span>
|
58 |
-
</label>
|
59 |
-
<div class="question-answer"></div>
|
60 |
-
</li>
|
61 |
-
</ul>
|
62 |
-
<p id="analyst-deactivation-error" style="color: #dc3232; font-size: 16px; display: none">Please let us know the reason for de-activation. Thank you!</p>
|
63 |
-
</div>
|
64 |
-
<div>
|
65 |
-
<button class="analyst-btn-grey" id="analyst-disabled-plugin-action">Deactivate</button>
|
66 |
-
</div>
|
67 |
-
<div class="" style="text-align: center; font-size: 18px; padding-top: 10px">
|
68 |
-
<button class="analyst-btn-secondary-ghost analyst-deactivate-modal-close" style="color: #cccccc">Cancel</button>
|
69 |
-
</div>
|
70 |
-
</div>
|
71 |
-
</div>
|
72 |
-
|
73 |
-
<script type="text/javascript">
|
74 |
-
(function ($) {
|
75 |
-
$('.deactivate').click(function (e) {
|
76 |
-
var anchor = $(this).find('[analyst-plugin-id]')
|
77 |
-
var pluginId = anchor.attr('analyst-plugin-id')
|
78 |
-
var isOptedIn = anchor.attr('analyst-plugin-opted-in') === '1'
|
79 |
-
|
80 |
-
// Do not ask for reason if not opted in
|
81 |
-
if (!isOptedIn) {
|
82 |
-
return
|
83 |
-
}
|
84 |
-
|
85 |
-
e.preventDefault()
|
86 |
-
|
87 |
-
$('#analyst-deactivate-modal')
|
88 |
-
.attr({
|
89 |
-
'analyst-plugin-id': pluginId,
|
90 |
-
'analyst-redirect-url': $(this).find('a').attr('href')
|
91 |
-
})
|
92 |
-
.show()
|
93 |
-
})
|
94 |
-
|
95 |
-
$('.analyst-deactivate-modal-close').click(function () {
|
96 |
-
$('#analyst-deactivate-modal').hide()
|
97 |
-
})
|
98 |
-
|
99 |
-
$('#analyst-deactivation-reasons input[name="deactivation-reason"]').change(function () {
|
100 |
-
$('.question-answer').empty()
|
101 |
-
|
102 |
-
var root = $('#analyst-deactivation-reasons input[name="deactivation-reason"]:checked').parents('li')
|
103 |
-
|
104 |
-
$('#analyst-deactivation-error').hide()
|
105 |
-
|
106 |
-
if (!root.attr('data-input-type')) return
|
107 |
-
|
108 |
-
var reasonInput = $('<' + root.attr('data-input-type') + '/>').attr({placeholder: root.attr('data-input-placeholder'), class: 'reason-answer'})
|
109 |
-
|
110 |
-
root.find('.question-answer').append(reasonInput)
|
111 |
-
})
|
112 |
-
|
113 |
-
$('#analyst-disabled-plugin-action').click(function () {
|
114 |
-
var pluginId = $('#analyst-deactivate-modal').attr('analyst-plugin-id')
|
115 |
-
var pluginDeactivationUrl = $('#analyst-deactivate-modal').attr('analyst-redirect-url')
|
116 |
-
|
117 |
-
var root = $('#analyst-deactivation-reasons input[name="deactivation-reason"]:checked').parents('li');
|
118 |
-
|
119 |
-
var reason = root.find('.question-answer .reason-answer').val();
|
120 |
-
|
121 |
-
var question = root.find('.question').attr('data-question').trim()
|
122 |
-
|
123 |
-
var $errorBlock = $('#analyst-deactivation-error')
|
124 |
-
|
125 |
-
if (!question) {
|
126 |
-
return $errorBlock.show()
|
127 |
-
}
|
128 |
-
|
129 |
-
$errorBlock.hide()
|
130 |
-
|
131 |
-
var data = {
|
132 |
-
action: 'analyst_plugin_deactivate_' + pluginId,
|
133 |
-
question: question
|
134 |
-
}
|
135 |
-
|
136 |
-
if (reason) {
|
137 |
-
data['reason'] = reason.trim();
|
138 |
-
}
|
139 |
-
|
140 |
-
$(this).attr('disabled', true).text('Deactivating...');
|
141 |
-
|
142 |
-
$('#analyst-disable-deactivate-modal-mask').show();
|
143 |
-
|
144 |
-
$.ajax({
|
145 |
-
url: ajaxurl,
|
146 |
-
method: 'POST',
|
147 |
-
data: data
|
148 |
-
}).done(function () {
|
149 |
-
window.location.href = pluginDeactivationUrl
|
150 |
-
|
151 |
-
$('#analyst-disable-deactivate-modal-mask').hide();
|
152 |
-
})
|
153 |
-
})
|
154 |
-
|
155 |
-
})(jQuery)
|
156 |
-
</script>
|
1 |
+
<div id="analyst-deactivate-modal" class="analyst-modal" style="display: none">
|
2 |
+
<div class="analyst-modal-content" style="width: 500px">
|
3 |
+
<div class="analyst-disable-modal-mask" id="analyst-disable-deactivate-modal-mask" style="display: none"></div>
|
4 |
+
<div style="display: flex">
|
5 |
+
<div class="analyst-install-image-block" style="width: 80px">
|
6 |
+
<img src="<?=$pencilImage?>"/>
|
7 |
+
</div>
|
8 |
+
<div class="analyst-install-description-block" style="padding-left: 20px">
|
9 |
+
<strong class="analyst-modal-header">Why do you deactivate?</strong>
|
10 |
+
<div class="analyst-install-description-text" style="padding-top: 2px">
|
11 |
+
Please let us know, so we can improve it! Thank you <img class="analyst-smile-image" src="<?=$smileImage?>" alt="">
|
12 |
+
</div>
|
13 |
+
</div>
|
14 |
+
</div>
|
15 |
+
<div>
|
16 |
+
<ul id="analyst-deactivation-reasons">
|
17 |
+
<li>
|
18 |
+
<label>
|
19 |
+
<span>
|
20 |
+
<input type="radio" name="deactivation-reason">
|
21 |
+
</span>
|
22 |
+
<span class="question" data-question="I couldn't understand how to make it work">I couldn't understand how to make it work</span>
|
23 |
+
</label>
|
24 |
+
</li>
|
25 |
+
<li data-input-type="textarea" data-input-placeholder="What should have worked, but didn’t?">
|
26 |
+
<label>
|
27 |
+
<span>
|
28 |
+
<input type="radio" name="deactivation-reason">
|
29 |
+
</span>
|
30 |
+
<span class="question" data-question="The plugin didn't work as expected">The plugin didn't work as expected</span>
|
31 |
+
</label>
|
32 |
+
<div class="question-answer"></div>
|
33 |
+
</li>
|
34 |
+
<li data-input-type="input" data-input-placeholder="What is the plugin name?">
|
35 |
+
<label>
|
36 |
+
<span>
|
37 |
+
<input type="radio" name="deactivation-reason">
|
38 |
+
</span>
|
39 |
+
<span class="question" data-question="I found a better plugin">I found a better plugin</span>
|
40 |
+
</label>
|
41 |
+
<div class="question-answer"></div>
|
42 |
+
</li>
|
43 |
+
<li>
|
44 |
+
<label>
|
45 |
+
<span>
|
46 |
+
<input type="radio" name="deactivation-reason">
|
47 |
+
</span>
|
48 |
+
<span class="question" data-question="It's a temporary deactivation">It's a temporary deactivation</span>
|
49 |
+
</label>
|
50 |
+
<div class="question-answer"></div>
|
51 |
+
</li>
|
52 |
+
<li data-input-type="textarea" data-input-placeholder="Please provide the reason of deactivation">
|
53 |
+
<label>
|
54 |
+
<span>
|
55 |
+
<input type="radio" name="deactivation-reason">
|
56 |
+
</span>
|
57 |
+
<span class="question" data-question="Other">Other</span>
|
58 |
+
</label>
|
59 |
+
<div class="question-answer"></div>
|
60 |
+
</li>
|
61 |
+
</ul>
|
62 |
+
<p id="analyst-deactivation-error" style="color: #dc3232; font-size: 16px; display: none">Please let us know the reason for de-activation. Thank you!</p>
|
63 |
+
</div>
|
64 |
+
<div>
|
65 |
+
<button class="analyst-btn-grey" id="analyst-disabled-plugin-action">Deactivate</button>
|
66 |
+
</div>
|
67 |
+
<div class="" style="text-align: center; font-size: 18px; padding-top: 10px">
|
68 |
+
<button class="analyst-btn-secondary-ghost analyst-deactivate-modal-close" style="color: #cccccc">Cancel</button>
|
69 |
+
</div>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
|
73 |
+
<script type="text/javascript">
|
74 |
+
(function ($) {
|
75 |
+
$('.deactivate').click(function (e) {
|
76 |
+
var anchor = $(this).find('[analyst-plugin-id]')
|
77 |
+
var pluginId = anchor.attr('analyst-plugin-id')
|
78 |
+
var isOptedIn = anchor.attr('analyst-plugin-opted-in') === '1'
|
79 |
+
|
80 |
+
// Do not ask for reason if not opted in
|
81 |
+
if (!isOptedIn) {
|
82 |
+
return
|
83 |
+
}
|
84 |
+
|
85 |
+
e.preventDefault()
|
86 |
+
|
87 |
+
$('#analyst-deactivate-modal')
|
88 |
+
.attr({
|
89 |
+
'analyst-plugin-id': pluginId,
|
90 |
+
'analyst-redirect-url': $(this).find('a').attr('href')
|
91 |
+
})
|
92 |
+
.show()
|
93 |
+
})
|
94 |
+
|
95 |
+
$('.analyst-deactivate-modal-close').click(function () {
|
96 |
+
$('#analyst-deactivate-modal').hide()
|
97 |
+
})
|
98 |
+
|
99 |
+
$('#analyst-deactivation-reasons input[name="deactivation-reason"]').change(function () {
|
100 |
+
$('.question-answer').empty()
|
101 |
+
|
102 |
+
var root = $('#analyst-deactivation-reasons input[name="deactivation-reason"]:checked').parents('li')
|
103 |
+
|
104 |
+
$('#analyst-deactivation-error').hide()
|
105 |
+
|
106 |
+
if (!root.attr('data-input-type')) return
|
107 |
+
|
108 |
+
var reasonInput = $('<' + root.attr('data-input-type') + '/>').attr({placeholder: root.attr('data-input-placeholder'), class: 'reason-answer'})
|
109 |
+
|
110 |
+
root.find('.question-answer').append(reasonInput)
|
111 |
+
})
|
112 |
+
|
113 |
+
$('#analyst-disabled-plugin-action').click(function () {
|
114 |
+
var pluginId = $('#analyst-deactivate-modal').attr('analyst-plugin-id')
|
115 |
+
var pluginDeactivationUrl = $('#analyst-deactivate-modal').attr('analyst-redirect-url')
|
116 |
+
|
117 |
+
var root = $('#analyst-deactivation-reasons input[name="deactivation-reason"]:checked').parents('li');
|
118 |
+
|
119 |
+
var reason = root.find('.question-answer .reason-answer').val();
|
120 |
+
|
121 |
+
var question = root.find('.question').attr('data-question').trim()
|
122 |
+
|
123 |
+
var $errorBlock = $('#analyst-deactivation-error')
|
124 |
+
|
125 |
+
if (!question) {
|
126 |
+
return $errorBlock.show()
|
127 |
+
}
|
128 |
+
|
129 |
+
$errorBlock.hide()
|
130 |
+
|
131 |
+
var data = {
|
132 |
+
action: 'analyst_plugin_deactivate_' + pluginId,
|
133 |
+
question: question
|
134 |
+
}
|
135 |
+
|
136 |
+
if (reason) {
|
137 |
+
data['reason'] = reason.trim();
|
138 |
+
}
|
139 |
+
|
140 |
+
$(this).attr('disabled', true).text('Deactivating...');
|
141 |
+
|
142 |
+
$('#analyst-disable-deactivate-modal-mask').show();
|
143 |
+
|
144 |
+
$.ajax({
|
145 |
+
url: ajaxurl,
|
146 |
+
method: 'POST',
|
147 |
+
data: data
|
148 |
+
}).done(function () {
|
149 |
+
window.location.href = pluginDeactivationUrl
|
150 |
+
|
151 |
+
$('#analyst-disable-deactivate-modal-mask').hide();
|
152 |
+
})
|
153 |
+
})
|
154 |
+
|
155 |
+
})(jQuery)
|
156 |
+
</script>
|
analyst/templates/forms/install.php
CHANGED
@@ -1,113 +1,106 @@
|
|
1 |
-
<div id="analyst-install-modal" class="analyst-modal" style="display: none" analyst-plugin-id="<?=$pluginToInstall?>">
|
2 |
-
<div class="analyst-modal-content" style="width: 450px">
|
3 |
-
<div class="analyst-disable-modal-mask" id="analyst-disable-install-modal-mask" style="display: none"></div>
|
4 |
-
<div style="display: flex">
|
5 |
-
<div class="analyst-install-image-block">
|
6 |
-
<img src="<?=$shieldImage?>"/>
|
7 |
-
</div>
|
8 |
-
<div class="analyst-install-description-block">
|
9 |
-
<strong class="analyst-modal-header">Stay on the safe side</strong>
|
10 |
-
<p class="analyst-install-description-text">Receive our plugin’s alerts in
|
11 |
-
case of <strong>critical security</strong> & feature
|
12 |
-
updates and allow non-sensitive
|
13 |
-
diagnostic tracking.</p>
|
14 |
-
</div>
|
15 |
-
</div>
|
16 |
-
<div class="analyst-modal-def-top-padding">
|
17 |
-
<button class="analyst-btn-success" id="analyst-install-action">Allow & Continue ></button>
|
18 |
-
</div>
|
19 |
-
<div class="analyst-modal-def-top-padding" id="analyst-permissions-block" style="display: none">
|
20 |
-
<span>You’re granting these permissions:</span>
|
21 |
-
<ul class="analyst-install-permissions-list">
|
22 |
-
<li><strong>Your profile information</strong> (name and email) </li>
|
23 |
-
<li><strong>Your site information</strong> (URL, WP version, PHP info, plugins & themes)</li>
|
24 |
-
<li><strong>Plugin notices</strong> (updates, announcements, marketing, no spam)</li>
|
25 |
-
<li><strong>Plugin events</strong> (activation, deactivation and uninstall)</li>
|
26 |
-
</ul>
|
27 |
-
</div>
|
28 |
-
<div class="analyst-install-footer analyst-modal-def-top-padding">
|
29 |
-
<span class="analyst-action-text" id="analyst-permissions-toggle">Learn more</span>
|
30 |
-
<span id="analyst-powered-by" style="display: none;">Powered by <a href="https://sellcodes.com/blog/wordpress-feedback-system-for-plugin-creators/?utm_source=optin_screen" target="_blank" class="analyst-link">Sellcodes.com</a></span>
|
31 |
-
<span class="analyst-action-text analyst-install-modal-close" id="analyst-install-skip">Skip</span>
|
32 |
-
</div>
|
33 |
-
<div id="analyst-install-error" class="analyst-modal-def-top-padding" style="display: none; text-align: center">
|
34 |
-
<span style="color: #dc3232; font-size: 16px">Service unavailable. Please try again later</span>
|
35 |
-
</div>
|
36 |
-
</div>
|
37 |
-
</div>
|
38 |
-
|
39 |
-
<script type="text/javascript">
|
40 |
-
(function ($) {
|
41 |
-
|
42 |
-
var installPlugin = function (pluginId) {
|
43 |
-
var $error = $('#analyst-install-error')
|
44 |
-
|
45 |
-
$error.hide()
|
46 |
-
|
47 |
-
$.ajax({
|
48 |
-
url: ajaxurl,
|
49 |
-
method: 'POST',
|
50 |
-
data: {
|
51 |
-
action: 'analyst_install_' + pluginId
|
52 |
-
},
|
53 |
-
success: function (data) {
|
54 |
-
if (data && !data.success) {
|
55 |
-
//error
|
56 |
-
$('#analyst-install-modal').hide()
|
57 |
-
|
58 |
-
return
|
59 |
-
}
|
60 |
-
|
61 |
-
window.location.reload()
|
62 |
-
},
|
63 |
-
error: function () {
|
64 |
-
$('#analyst-install-modal').hide()
|
65 |
-
}
|
66 |
-
}).done(function () {
|
67 |
-
$('#analyst-disable-install-modal-mask').hide()
|
68 |
-
|
69 |
-
$('#analyst-install-action')
|
70 |
-
.attr('disabled', false)
|
71 |
-
.text('Allow & Continue >')
|
72 |
-
})
|
73 |
-
}
|
74 |
-
|
75 |
-
if ($('#analyst-install-modal').attr('analyst-plugin-id')) {
|
76 |
-
$('#analyst-install-modal').show()
|
77 |
-
}
|
78 |
-
|
79 |
-
|
80 |
-
$('.analyst-install-modal-close').click(function () {
|
81 |
-
$('#analyst-install-modal').hide()
|
82 |
-
})
|
83 |
-
|
84 |
-
$('#analyst-install-action').click(function () {
|
85 |
-
var pluginId = $('#analyst-install-modal').attr('analyst-plugin-id')
|
86 |
-
|
87 |
-
$('#analyst-install-action')
|
88 |
-
.attr('disabled', true)
|
89 |
-
.text('Please wait...')
|
90 |
-
|
91 |
-
$('#analyst-disable-install-modal-mask').show()
|
92 |
-
|
93 |
-
installPlugin(pluginId)
|
94 |
-
})
|
95 |
-
|
96 |
-
$('#analyst-permissions-toggle').click(function () {
|
97 |
-
var isVisible = $('#analyst-permissions-block').toggle().is(':visible')
|
98 |
-
|
99 |
-
isVisible ? $(this).text('Close section') : $(this).text('Learn more')
|
100 |
-
|
101 |
-
var poweredBy = $('#analyst-powered-by')
|
102 |
-
isVisible ? poweredBy.show() : poweredBy.hide()
|
103 |
-
})
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
$.post(ajaxurl, {action: 'analyst_skip_install_' + pluginId}).done(function () {
|
109 |
-
$('#analyst-install-modal').hide()
|
110 |
-
})
|
111 |
-
})
|
112 |
-
})(jQuery)
|
113 |
-
</script>
|
1 |
+
<div id="analyst-install-modal" class="analyst-modal" style="display: none" analyst-plugin-id="<?=$pluginToInstall?>">
|
2 |
+
<div class="analyst-modal-content" style="width: 450px">
|
3 |
+
<div class="analyst-disable-modal-mask" id="analyst-disable-install-modal-mask" style="display: none"></div>
|
4 |
+
<div style="display: flex">
|
5 |
+
<div class="analyst-install-image-block">
|
6 |
+
<img src="<?=$shieldImage?>"/>
|
7 |
+
</div>
|
8 |
+
<div class="analyst-install-description-block">
|
9 |
+
<strong class="analyst-modal-header">Stay on the safe side</strong>
|
10 |
+
<p class="analyst-install-description-text">Receive our plugin’s alerts in
|
11 |
+
case of <strong>critical security</strong> & feature
|
12 |
+
updates and allow non-sensitive
|
13 |
+
diagnostic tracking.</p>
|
14 |
+
</div>
|
15 |
+
</div>
|
16 |
+
<div class="analyst-modal-def-top-padding">
|
17 |
+
<button class="analyst-btn-success" id="analyst-install-action">Allow & Continue ></button>
|
18 |
+
</div>
|
19 |
+
<div class="analyst-modal-def-top-padding" id="analyst-permissions-block" style="display: none">
|
20 |
+
<span>You’re granting these permissions:</span>
|
21 |
+
<ul class="analyst-install-permissions-list">
|
22 |
+
<li><strong>Your profile information</strong> (name and email) </li>
|
23 |
+
<li><strong>Your site information</strong> (URL, WP version, PHP info, plugins & themes)</li>
|
24 |
+
<li><strong>Plugin notices</strong> (updates, announcements, marketing, no spam)</li>
|
25 |
+
<li><strong>Plugin events</strong> (activation, deactivation and uninstall)</li>
|
26 |
+
</ul>
|
27 |
+
</div>
|
28 |
+
<div class="analyst-install-footer analyst-modal-def-top-padding">
|
29 |
+
<span class="analyst-action-text" id="analyst-permissions-toggle">Learn more</span>
|
30 |
+
<span id="analyst-powered-by" style="display: none;">Powered by <a href="https://sellcodes.com/blog/wordpress-feedback-system-for-plugin-creators/?utm_source=optin_screen" target="_blank" class="analyst-link">Sellcodes.com</a></span>
|
31 |
+
<span class="analyst-action-text analyst-install-modal-close" id="analyst-install-skip">Skip</span>
|
32 |
+
</div>
|
33 |
+
<div id="analyst-install-error" class="analyst-modal-def-top-padding" style="display: none; text-align: center">
|
34 |
+
<span style="color: #dc3232; font-size: 16px">Service unavailable. Please try again later</span>
|
35 |
+
</div>
|
36 |
+
</div>
|
37 |
+
</div>
|
38 |
+
|
39 |
+
<script type="text/javascript">
|
40 |
+
(function ($) {
|
41 |
+
|
42 |
+
var installPlugin = function (pluginId) {
|
43 |
+
var $error = $('#analyst-install-error')
|
44 |
+
|
45 |
+
$error.hide()
|
46 |
+
|
47 |
+
$.ajax({
|
48 |
+
url: ajaxurl,
|
49 |
+
method: 'POST',
|
50 |
+
data: {
|
51 |
+
action: 'analyst_install_' + pluginId
|
52 |
+
},
|
53 |
+
success: function (data) {
|
54 |
+
if (data && !data.success) {
|
55 |
+
//error
|
56 |
+
$('#analyst-install-modal').hide()
|
57 |
+
|
58 |
+
return
|
59 |
+
}
|
60 |
+
|
61 |
+
window.location.reload()
|
62 |
+
},
|
63 |
+
error: function () {
|
64 |
+
$('#analyst-install-modal').hide()
|
65 |
+
}
|
66 |
+
}).done(function () {
|
67 |
+
$('#analyst-disable-install-modal-mask').hide()
|
68 |
+
|
69 |
+
$('#analyst-install-action')
|
70 |
+
.attr('disabled', false)
|
71 |
+
.text('Allow & Continue >')
|
72 |
+
})
|
73 |
+
}
|
74 |
+
|
75 |
+
if ($('#analyst-install-modal').attr('analyst-plugin-id')) {
|
76 |
+
$('#analyst-install-modal').show()
|
77 |
+
}
|
78 |
+
|
79 |
+
|
80 |
+
$('.analyst-install-modal-close').click(function () {
|
81 |
+
$('#analyst-install-modal').hide()
|
82 |
+
})
|
83 |
+
|
84 |
+
$('#analyst-install-action').click(function () {
|
85 |
+
var pluginId = $('#analyst-install-modal').attr('analyst-plugin-id')
|
86 |
+
|
87 |
+
$('#analyst-install-action')
|
88 |
+
.attr('disabled', true)
|
89 |
+
.text('Please wait...')
|
90 |
+
|
91 |
+
$('#analyst-disable-install-modal-mask').show()
|
92 |
+
|
93 |
+
installPlugin(pluginId)
|
94 |
+
})
|
95 |
+
|
96 |
+
$('#analyst-permissions-toggle').click(function () {
|
97 |
+
var isVisible = $('#analyst-permissions-block').toggle().is(':visible')
|
98 |
+
|
99 |
+
isVisible ? $(this).text('Close section') : $(this).text('Learn more')
|
100 |
+
|
101 |
+
var poweredBy = $('#analyst-powered-by')
|
102 |
+
isVisible ? poweredBy.show() : poweredBy.hide()
|
103 |
+
})
|
104 |
+
|
105 |
+
})(jQuery)
|
106 |
+
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
analyst/templates/notice.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
<div class="notice notice-success analyst-notice">
|
2 |
-
<p>
|
3 |
-
<strong class="analyst-plugin-name"><?=$notice->getPluginName()?></strong>
|
4 |
-
<?=$notice->getBody()?>
|
5 |
-
</p>
|
6 |
-
|
7 |
-
<button type="button" class="analyst-notice-dismiss notice-dismiss" analyst-notice-id="<?=$notice->getId()?>">
|
8 |
-
<span class="screen-reader-text">Dismiss this notice.</span>
|
9 |
-
</button>
|
10 |
-
</div>
|
1 |
+
<div class="notice notice-success analyst-notice">
|
2 |
+
<p>
|
3 |
+
<strong class="analyst-plugin-name"><?=$notice->getPluginName()?></strong>
|
4 |
+
<?=$notice->getBody()?>
|
5 |
+
</p>
|
6 |
+
|
7 |
+
<button type="button" class="analyst-notice-dismiss notice-dismiss" analyst-notice-id="<?=$notice->getId()?>">
|
8 |
+
<span class="screen-reader-text">Dismiss this notice.</span>
|
9 |
+
</button>
|
10 |
+
</div>
|
analyst/templates/optin.php
CHANGED
@@ -1,60 +1,60 @@
|
|
1 |
-
<script type="text/javascript">
|
2 |
-
|
3 |
-
(function ($) {
|
4 |
-
var isOptingIn = false
|
5 |
-
|
6 |
-
$('#analyst-opt-in-modal').appendTo($('body'))
|
7 |
-
|
8 |
-
var makeOptIn = function (pluginId) {
|
9 |
-
if (isOptingIn) return
|
10 |
-
|
11 |
-
isOptingIn = true
|
12 |
-
|
13 |
-
$.ajax({
|
14 |
-
url: ajaxurl,
|
15 |
-
method: 'POST',
|
16 |
-
data: {
|
17 |
-
action: 'analyst_opt_in_' + pluginId,
|
18 |
-
},
|
19 |
-
success: function () {
|
20 |
-
$('#analyst-opt-in-modal').hide()
|
21 |
-
|
22 |
-
isOptingIn = false
|
23 |
-
|
24 |
-
var optOutAction = $('<a />').attr({
|
25 |
-
class: 'analyst-action-opt analyst-opt-out',
|
26 |
-
'analyst-plugin-id': pluginId,
|
27 |
-
'analyst-plugin-signed': '1'
|
28 |
-
})
|
29 |
-
.text('Opt Out')
|
30 |
-
$('.analyst-opt-in[analyst-plugin-id="'+ pluginId +'"').replaceWith(optOutAction)
|
31 |
-
|
32 |
-
$('[analyst-plugin-id="' + pluginId + '"').attr('analyst-plugin-opted-in', 1)
|
33 |
-
}
|
34 |
-
})
|
35 |
-
}
|
36 |
-
|
37 |
-
$(document).on('click', '.analyst-opt-in:not([loading])', function() {
|
38 |
-
var pluginId = $(this).attr('analyst-plugin-id')
|
39 |
-
var isSigned = $(this).attr('analyst-plugin-signed') === '1'
|
40 |
-
|
41 |
-
if (!isSigned) {
|
42 |
-
$('#analyst-install-modal')
|
43 |
-
.attr('analyst-plugin-id', pluginId)
|
44 |
-
.show()
|
45 |
-
|
46 |
-
return;
|
47 |
-
}
|
48 |
-
|
49 |
-
$('#analyst-install-modal').attr({'analyst-plugin-id': pluginId})
|
50 |
-
|
51 |
-
$(this).attr('loading', true).text('Opting In...')
|
52 |
-
|
53 |
-
makeOptIn(pluginId);
|
54 |
-
})
|
55 |
-
|
56 |
-
$('.opt-in-modal-close').click(function () {
|
57 |
-
$('#analyst-opt-in-modal').hide()
|
58 |
-
})
|
59 |
-
})(jQuery)
|
60 |
-
</script>
|
1 |
+
<script type="text/javascript">
|
2 |
+
|
3 |
+
(function ($) {
|
4 |
+
var isOptingIn = false
|
5 |
+
|
6 |
+
$('#analyst-opt-in-modal').appendTo($('body'))
|
7 |
+
|
8 |
+
var makeOptIn = function (pluginId) {
|
9 |
+
if (isOptingIn) return
|
10 |
+
|
11 |
+
isOptingIn = true
|
12 |
+
|
13 |
+
$.ajax({
|
14 |
+
url: ajaxurl,
|
15 |
+
method: 'POST',
|
16 |
+
data: {
|
17 |
+
action: 'analyst_opt_in_' + pluginId,
|
18 |
+
},
|
19 |
+
success: function () {
|
20 |
+
$('#analyst-opt-in-modal').hide()
|
21 |
+
|
22 |
+
isOptingIn = false
|
23 |
+
|
24 |
+
var optOutAction = $('<a />').attr({
|
25 |
+
class: 'analyst-action-opt analyst-opt-out',
|
26 |
+
'analyst-plugin-id': pluginId,
|
27 |
+
'analyst-plugin-signed': '1'
|
28 |
+
})
|
29 |
+
.text('Opt Out')
|
30 |
+
$('.analyst-opt-in[analyst-plugin-id="'+ pluginId +'"').replaceWith(optOutAction)
|
31 |
+
|
32 |
+
$('[analyst-plugin-id="' + pluginId + '"').attr('analyst-plugin-opted-in', 1)
|
33 |
+
}
|
34 |
+
})
|
35 |
+
}
|
36 |
+
|
37 |
+
$(document).on('click', '.analyst-opt-in:not([loading])', function() {
|
38 |
+
var pluginId = $(this).attr('analyst-plugin-id')
|
39 |
+
var isSigned = $(this).attr('analyst-plugin-signed') === '1'
|
40 |
+
|
41 |
+
if (!isSigned) {
|
42 |
+
$('#analyst-install-modal')
|
43 |
+
.attr('analyst-plugin-id', pluginId)
|
44 |
+
.show()
|
45 |
+
|
46 |
+
return;
|
47 |
+
}
|
48 |
+
|
49 |
+
$('#analyst-install-modal').attr({'analyst-plugin-id': pluginId})
|
50 |
+
|
51 |
+
$(this).attr('loading', true).text('Opting In...')
|
52 |
+
|
53 |
+
makeOptIn(pluginId);
|
54 |
+
})
|
55 |
+
|
56 |
+
$('.opt-in-modal-close').click(function () {
|
57 |
+
$('#analyst-opt-in-modal').hide()
|
58 |
+
})
|
59 |
+
})(jQuery)
|
60 |
+
</script>
|
analyst/templates/optout.php
CHANGED
@@ -1,109 +1,109 @@
|
|
1 |
-
<div id="analyst-opt-out-modal" class="analyst-modal" style="display: none">
|
2 |
-
<div class="analyst-modal-content" style="width: 600px">
|
3 |
-
<div class="analyst-disable-modal-mask" id="analyst-disable-opt-out-modal-mask" style="display: none"></div>
|
4 |
-
<div style="display: flex">
|
5 |
-
<div class="analyst-install-image-block" style="width: 120px">
|
6 |
-
<img src="<?=$shieldImage?>"/>
|
7 |
-
</div>
|
8 |
-
<div class="analyst-install-description-block">
|
9 |
-
<strong class="analyst-modal-header">By opting out, we cannot alert you anymore in case of important security updates.</strong>
|
10 |
-
<p class="analyst-install-description-text">
|
11 |
-
In addition, we won’t get pointers how to further improve the plugin based on your integration with our plugin.
|
12 |
-
</p>
|
13 |
-
</div>
|
14 |
-
</div>
|
15 |
-
<div class="analyst-modal-def-top-padding">
|
16 |
-
<button class="analyst-btn-success opt-out-modal-close">Ok, don't opt out</button>
|
17 |
-
</div>
|
18 |
-
<div class="analyst-modal-def-top-padding" style="text-align: center;">
|
19 |
-
<button class="analyst-btn-secondary-ghost" id="opt-out-action">Opt out</button>
|
20 |
-
</div>
|
21 |
-
<div id="analyst-opt-out-error" class="analyst-modal-def-top-padding" style="display: none;">
|
22 |
-
<span style="color: #dc3232; font-size: 16px">Service unavailable. Please try again later</span>
|
23 |
-
</div>
|
24 |
-
</div>
|
25 |
-
</div>
|
26 |
-
</div>
|
27 |
-
|
28 |
-
<script type="text/javascript">
|
29 |
-
|
30 |
-
(function ($) {
|
31 |
-
var isOptingOut = false
|
32 |
-
|
33 |
-
$('#analyst-opt-out-modal').appendTo($('body'))
|
34 |
-
|
35 |
-
$(document).on('click', '.analyst-opt-out', function() {
|
36 |
-
var pluginId = $(this).attr('analyst-plugin-id')
|
37 |
-
|
38 |
-
$('#analyst-opt-out-modal')
|
39 |
-
.attr({'analyst-plugin-id': pluginId})
|
40 |
-
.show()
|
41 |
-
})
|
42 |
-
|
43 |
-
$('.opt-out-modal-close').click(function () {
|
44 |
-
$('#analyst-opt-out-modal').hide()
|
45 |
-
})
|
46 |
-
|
47 |
-
$('#opt-out-action').click(function () {
|
48 |
-
if (isOptingOut) return
|
49 |
-
|
50 |
-
var $mask = $('#analyst-disable-opt-out-modal-mask')
|
51 |
-
var $error = $('#analyst-opt-out-error')
|
52 |
-
|
53 |
-
var pluginId = $('#analyst-opt-out-modal').attr('analyst-plugin-id')
|
54 |
-
|
55 |
-
$mask.show()
|
56 |
-
$error.hide()
|
57 |
-
|
58 |
-
var self = this
|
59 |
-
|
60 |
-
isOptingOut = true
|
61 |
-
|
62 |
-
$(self).text('Opting out...')
|
63 |
-
|
64 |
-
$.ajax({
|
65 |
-
url: ajaxurl,
|
66 |
-
method: 'POST',
|
67 |
-
data: {
|
68 |
-
action: 'analyst_opt_out_' + pluginId,
|
69 |
-
},
|
70 |
-
success: function (data) {
|
71 |
-
$(self).text('Opt out')
|
72 |
-
|
73 |
-
if (data && !data.success) {
|
74 |
-
$('#analyst-opt-out-modal').hide()
|
75 |
-
|
76 |
-
return
|
77 |
-
}
|
78 |
-
|
79 |
-
$error.hide()
|
80 |
-
|
81 |
-
$('#analyst-opt-out-modal').hide()
|
82 |
-
|
83 |
-
isOptingOut = false
|
84 |
-
|
85 |
-
var optInAction = $('<a />').attr({
|
86 |
-
class: 'analyst-action-opt analyst-opt-in',
|
87 |
-
'analyst-plugin-id': pluginId,
|
88 |
-
'analyst-plugin-signed': '1'
|
89 |
-
})
|
90 |
-
.text('Opt In')
|
91 |
-
$('.analyst-opt-out[analyst-plugin-id="'+ pluginId +'"').replaceWith(optInAction)
|
92 |
-
|
93 |
-
$('[analyst-plugin-id="' + pluginId + '"').attr('analyst-plugin-opted-in', 0)
|
94 |
-
|
95 |
-
$mask.hide()
|
96 |
-
},
|
97 |
-
error: function () {
|
98 |
-
$('#analyst-opt-out-error').show()
|
99 |
-
|
100 |
-
$(self).text('Opt out')
|
101 |
-
}
|
102 |
-
}).done(function () {
|
103 |
-
$mask.hide()
|
104 |
-
|
105 |
-
isOptingOut = false
|
106 |
-
})
|
107 |
-
})
|
108 |
-
})(jQuery)
|
109 |
-
</script>
|
1 |
+
<div id="analyst-opt-out-modal" class="analyst-modal" style="display: none">
|
2 |
+
<div class="analyst-modal-content" style="width: 600px">
|
3 |
+
<div class="analyst-disable-modal-mask" id="analyst-disable-opt-out-modal-mask" style="display: none"></div>
|
4 |
+
<div style="display: flex">
|
5 |
+
<div class="analyst-install-image-block" style="width: 120px">
|
6 |
+
<img src="<?=$shieldImage?>"/>
|
7 |
+
</div>
|
8 |
+
<div class="analyst-install-description-block">
|
9 |
+
<strong class="analyst-modal-header">By opting out, we cannot alert you anymore in case of important security updates.</strong>
|
10 |
+
<p class="analyst-install-description-text">
|
11 |
+
In addition, we won’t get pointers how to further improve the plugin based on your integration with our plugin.
|
12 |
+
</p>
|
13 |
+
</div>
|
14 |
+
</div>
|
15 |
+
<div class="analyst-modal-def-top-padding">
|
16 |
+
<button class="analyst-btn-success opt-out-modal-close">Ok, don't opt out</button>
|
17 |
+
</div>
|
18 |
+
<div class="analyst-modal-def-top-padding" style="text-align: center;">
|
19 |
+
<button class="analyst-btn-secondary-ghost" id="opt-out-action">Opt out</button>
|
20 |
+
</div>
|
21 |
+
<div id="analyst-opt-out-error" class="analyst-modal-def-top-padding" style="display: none;">
|
22 |
+
<span style="color: #dc3232; font-size: 16px">Service unavailable. Please try again later</span>
|
23 |
+
</div>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
+
</div>
|
27 |
+
|
28 |
+
<script type="text/javascript">
|
29 |
+
|
30 |
+
(function ($) {
|
31 |
+
var isOptingOut = false
|
32 |
+
|
33 |
+
$('#analyst-opt-out-modal').appendTo($('body'))
|
34 |
+
|
35 |
+
$(document).on('click', '.analyst-opt-out', function() {
|
36 |
+
var pluginId = $(this).attr('analyst-plugin-id')
|
37 |
+
|
38 |
+
$('#analyst-opt-out-modal')
|
39 |
+
.attr({'analyst-plugin-id': pluginId})
|
40 |
+
.show()
|
41 |
+
})
|
42 |
+
|
43 |
+
$('.opt-out-modal-close').click(function () {
|
44 |
+
$('#analyst-opt-out-modal').hide()
|
45 |
+
})
|
46 |
+
|
47 |
+
$('#opt-out-action').click(function () {
|
48 |
+
if (isOptingOut) return
|
49 |
+
|
50 |
+
var $mask = $('#analyst-disable-opt-out-modal-mask')
|
51 |
+
var $error = $('#analyst-opt-out-error')
|
52 |
+
|
53 |
+
var pluginId = $('#analyst-opt-out-modal').attr('analyst-plugin-id')
|
54 |
+
|
55 |
+
$mask.show()
|
56 |
+
$error.hide()
|
57 |
+
|
58 |
+
var self = this
|
59 |
+
|
60 |
+
isOptingOut = true
|
61 |
+
|
62 |
+
$(self).text('Opting out...')
|
63 |
+
|
64 |
+
$.ajax({
|
65 |
+
url: ajaxurl,
|
66 |
+
method: 'POST',
|
67 |
+
data: {
|
68 |
+
action: 'analyst_opt_out_' + pluginId,
|
69 |
+
},
|
70 |
+
success: function (data) {
|
71 |
+
$(self).text('Opt out')
|
72 |
+
|
73 |
+
if (data && !data.success) {
|
74 |
+
$('#analyst-opt-out-modal').hide()
|
75 |
+
|
76 |
+
return
|
77 |
+
}
|
78 |
+
|
79 |
+
$error.hide()
|
80 |
+
|
81 |
+
$('#analyst-opt-out-modal').hide()
|
82 |
+
|
83 |
+
isOptingOut = false
|
84 |
+
|
85 |
+
var optInAction = $('<a />').attr({
|
86 |
+
class: 'analyst-action-opt analyst-opt-in',
|
87 |
+
'analyst-plugin-id': pluginId,
|
88 |
+
'analyst-plugin-signed': '1'
|
89 |
+
})
|
90 |
+
.text('Opt In')
|
91 |
+
$('.analyst-opt-out[analyst-plugin-id="'+ pluginId +'"').replaceWith(optInAction)
|
92 |
+
|
93 |
+
$('[analyst-plugin-id="' + pluginId + '"').attr('analyst-plugin-opted-in', 0)
|
94 |
+
|
95 |
+
$mask.hide()
|
96 |
+
},
|
97 |
+
error: function () {
|
98 |
+
$('#analyst-opt-out-error').show()
|
99 |
+
|
100 |
+
$(self).text('Opt out')
|
101 |
+
}
|
102 |
+
}).done(function () {
|
103 |
+
$mask.hide()
|
104 |
+
|
105 |
+
isOptingOut = false
|
106 |
+
})
|
107 |
+
})
|
108 |
+
})(jQuery)
|
109 |
+
</script>
|
analyst/version.php
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
return array(
|
4 |
-
// The sdk version
|
5 |
-
'sdk' => '1.3.30',
|
6 |
-
|
7 |
-
// Minimum supported WordPress version
|
8 |
-
'wp' => '4.7',
|
9 |
-
|
10 |
-
// Supported PHP version
|
11 |
-
'php' => '5.4',
|
12 |
-
|
13 |
-
// Path to current SDK$
|
14 |
-
'path' => __DIR__,
|
15 |
-
);
|
1 |
+
<?php
|
2 |
+
|
3 |
+
return array(
|
4 |
+
// The sdk version
|
5 |
+
'sdk' => '1.3.30',
|
6 |
+
|
7 |
+
// Minimum supported WordPress version
|
8 |
+
'wp' => '4.7',
|
9 |
+
|
10 |
+
// Supported PHP version
|
11 |
+
'php' => '5.4',
|
12 |
+
|
13 |
+
// Path to current SDK$
|
14 |
+
'path' => __DIR__,
|
15 |
+
);
|
css/bootstrap.min.css
CHANGED
@@ -1,34 +1,34 @@
|
|
1 |
-
/*!
|
2 |
-
* Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
|
3 |
-
* Copyright 2011-2019 The Bootstrap Authors
|
4 |
-
* Copyright 2011-2019 Twitter, Inc.
|
5 |
-
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
6 |
-
*/html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}} .main_contant .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}
|
7 |
-
/*# sourceMappingURL=bootstrap-grid.min.css.map */
|
8 |
-
.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.text-success{color:#28a745!important}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}
|
9 |
-
@media (min-width:1600px){.container{max-width:1140px}.col-xxl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xxl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xxl-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xxl-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xxl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xxl-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xxl-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xxl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xxl-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xxl-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xxl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xxl-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xxl-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xxl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xxl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xxl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xxl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xxl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xxl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xxl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xxl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xxl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xxl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xxl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xxl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xxl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xxl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xxl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xxl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.333333%}.offset-xxl-2{margin-left:16.666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.333333%}.offset-xxl-5{margin-left:41.666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.333333%}.offset-xxl-8{margin-left:66.666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.333333%}.offset-xxl-11{margin-left:91.666667%}.d-xxl-none{display:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xxl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.flex-xxl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xxl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xxl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xxl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xxl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xxl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xxl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xxl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xxl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xxl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xxl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xxl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xxl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xxl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xxl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xxl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xxl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xxl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xxl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xxl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xxl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xxl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xxl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xxl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xxl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xxl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xxl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xxl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}
|
10 |
-
.font-weight-light {
|
11 |
-
font-weight: 300 !important;
|
12 |
-
}
|
13 |
-
.font-weight-lighter {
|
14 |
-
font-weight: lighter !important;
|
15 |
-
}
|
16 |
-
.font-weight-normal {
|
17 |
-
font-weight: 400 !important;
|
18 |
-
}
|
19 |
-
.font-weight-bold {
|
20 |
-
font-weight: 700 !important;
|
21 |
-
}
|
22 |
-
.font-weight-bolder {
|
23 |
-
font-weight: bolder !important;
|
24 |
-
}
|
25 |
-
.font-italic {
|
26 |
-
font-style: italic !important;
|
27 |
-
}
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
|
1 |
+
/*!
|
2 |
+
* Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
|
3 |
+
* Copyright 2011-2019 The Bootstrap Authors
|
4 |
+
* Copyright 2011-2019 Twitter, Inc.
|
5 |
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
6 |
+
*/html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}} .main_contant .row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}
|
7 |
+
/*# sourceMappingURL=bootstrap-grid.min.css.map */
|
8 |
+
.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.text-success{color:#28a745!important}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}
|
9 |
+
@media (min-width:1600px){.container{max-width:1140px}.col-xxl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xxl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xxl-1{-webkit-box-flex:0;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xxl-2{-webkit-box-flex:0;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xxl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xxl-4{-webkit-box-flex:0;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xxl-5{-webkit-box-flex:0;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xxl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xxl-7{-webkit-box-flex:0;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xxl-8{-webkit-box-flex:0;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xxl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xxl-10{-webkit-box-flex:0;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xxl-11{-webkit-box-flex:0;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xxl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xxl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xxl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xxl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xxl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xxl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xxl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xxl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xxl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xxl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xxl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xxl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xxl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xxl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xxl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xxl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.333333%}.offset-xxl-2{margin-left:16.666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.333333%}.offset-xxl-5{margin-left:41.666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.333333%}.offset-xxl-8{margin-left:66.666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.333333%}.offset-xxl-11{margin-left:91.666667%}.d-xxl-none{display:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xxl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.flex-xxl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xxl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xxl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xxl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xxl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xxl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xxl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xxl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xxl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xxl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xxl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xxl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xxl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xxl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xxl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xxl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xxl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xxl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xxl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xxl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xxl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xxl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xxl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xxl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xxl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xxl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xxl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xxl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}
|
10 |
+
.font-weight-light {
|
11 |
+
font-weight: 300 !important;
|
12 |
+
}
|
13 |
+
.font-weight-lighter {
|
14 |
+
font-weight: lighter !important;
|
15 |
+
}
|
16 |
+
.font-weight-normal {
|
17 |
+
font-weight: 400 !important;
|
18 |
+
}
|
19 |
+
.font-weight-bold {
|
20 |
+
font-weight: 700 !important;
|
21 |
+
}
|
22 |
+
.font-weight-bolder {
|
23 |
+
font-weight: bolder !important;
|
24 |
+
}
|
25 |
+
.font-italic {
|
26 |
+
font-style: italic !important;
|
27 |
+
}
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
|
css/sfsi-admin-common-style.css
CHANGED
@@ -1,98 +1,98 @@
|
|
1 |
-
@charset "utf-8";
|
2 |
-
|
3 |
-
@font-face {
|
4 |
-
font-family: helveticabold;
|
5 |
-
src: url(fonts/helvetica_bold_0-webfont.eot);
|
6 |
-
src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
|
7 |
-
font-weight: 400;
|
8 |
-
font-style: normal;
|
9 |
-
}
|
10 |
-
|
11 |
-
@font-face {
|
12 |
-
font-family: helveticaregular;
|
13 |
-
src: url(fonts/helvetica_0-webfont.eot);
|
14 |
-
src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
|
15 |
-
font-weight: 400;
|
16 |
-
font-style: normal;
|
17 |
-
}
|
18 |
-
|
19 |
-
@font-face {
|
20 |
-
font-family: helvetica-light;
|
21 |
-
src: url(fonts/helvetica_0-webfont.eot);
|
22 |
-
src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helvetica-light) format('svg');
|
23 |
-
font-weight: 400;
|
24 |
-
font-style: normal;
|
25 |
-
}
|
26 |
-
|
27 |
-
@font-face {
|
28 |
-
font-family: helveticaneue-light;
|
29 |
-
src: url(fonts/helveticaneue-light.eot);
|
30 |
-
src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'), url(fonts/helveticaneue-light.woff) format('woff'), url(fonts/helveticaneue-light.ttf) format('truetype'), url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
|
31 |
-
font-weight: 400;
|
32 |
-
font-style: normal;
|
33 |
-
}
|
34 |
-
|
35 |
-
#sfsi-social-media .inside {
|
36 |
-
min-height: 950px;
|
37 |
-
overflow: hidden;
|
38 |
-
}
|
39 |
-
input[type='button'].sfsi-post-meta-btn{
|
40 |
-
width: 100%;
|
41 |
-
margin-top: 10px;
|
42 |
-
min-height: 45px;
|
43 |
-
background: #45a745;
|
44 |
-
color: white;
|
45 |
-
font-size: 16px;
|
46 |
-
}
|
47 |
-
#sfsi-social-media .inside{min-height: 950px;overflow: hidden;}
|
48 |
-
.sfsi_custom_social_data_container{float:left;width: 23%;display: inline-block;}
|
49 |
-
.imgContainer img{width: 100%;height: 323px;}
|
50 |
-
.imgUploadBtn{width: auto;}
|
51 |
-
img#sfsi-social-media-image-preview {}
|
52 |
-
input#sfsi-social-media-image-button,input#sfsi-social-pinterest-image-button {width: 100%;margin-top: 10px;min-height: 45px;background: #45a745;color: white;font-size: 16px;}
|
53 |
-
.imgTxt{ margin-top: 10px;width: 100%;}
|
54 |
-
.imgTopTxt{ font-size: 14px;padding-bottom: 10px;}
|
55 |
-
.imgTopTxt strong {font-size: 17px;font-family: inherit;}
|
56 |
-
.sfsi_custom_social_titlePlusDescription { margin-left: 30px; width: 70%;float: left; margin-top:7px;}
|
57 |
-
.sfsi_titlePlusDescription{ margin-left: 30px; width: 100%;float: left;}
|
58 |
-
.sfsi_custom_social_data_title{float: left;width: 100%;}
|
59 |
-
.sfsi_custom_social_data_description{margin-top: 40px;float: left;}
|
60 |
-
.social_description {width: 73%;float:left;margin-top: 10px;}
|
61 |
-
.sfsi_textarea{ width: 100%;min-height: 84px; border-radius: 4px;}
|
62 |
-
.remaining_char_box { background: #666;width: 25%;height: 34px;float: left;color: white;text-align: left;padding: 9px 0px 0px 8px;margin-top: 10px;font-weight: 600;border-radius: 25px 25px;text-align:center !important;font-size: 16px;}
|
63 |
-
.social_description_container{width: 100%;}
|
64 |
-
.social_data_container_first{float: left;padding: 15px 0px 10px 15px;}
|
65 |
-
.social_data_container_second{float: left;margin-top: 25px;padding: 15px 0px 10px 15px;}
|
66 |
-
.social_description_hint {float: left;width: 73%;margin-top:10px;}
|
67 |
-
|
68 |
-
/* CSS for notice if usm is disabled for adding open graph meta tags */
|
69 |
-
.sfsi_disable_usm_ogtags_notice {background-color: #fde9d8;float: left;padding: 10px;margin: 4px 0 20px 0;font-size: 14px;line-height: 25px;}
|
70 |
-
a.sfsi_disable_usm_ogtags_setting_change {color: #444;cursor: pointer;font-weight: 600;}
|
71 |
-
|
72 |
-
.imgpicker{ position: relative;z-index:10;}
|
73 |
-
.usm-remove-media {position: absolute;z-index: 100000;text-decoration: none;top: 0px;right: 0px;z-index: 10;display: none;color: white !important;}
|
74 |
-
.usm-remove-media:hover{color: white !important;text-decoration: none;}
|
75 |
-
.usm-overlay{position: absolute;top: 0;bottom: 0;left: 0;right: 0;background: rgba(0, 0, 0, .6);display: none;}
|
76 |
-
|
77 |
-
|
78 |
-
.sfsi-post-tooltip a:after{
|
79 |
-
content: "";
|
80 |
-
border-color: transparent green;
|
81 |
-
border-style: solid;
|
82 |
-
border-left: 0px solid red;
|
83 |
-
border-right: 2px solid #dddddd;
|
84 |
-
border-top: 0px solid red;
|
85 |
-
border-bottom: 2px solid #dddddd;
|
86 |
-
height: 18px;
|
87 |
-
background: #ddd;
|
88 |
-
width: 13px;
|
89 |
-
top: 128% !important;
|
90 |
-
left: 54%;
|
91 |
-
position: absolute;
|
92 |
-
color: green;
|
93 |
-
transform: rotate(45deg);
|
94 |
-
padding-right: 5px;
|
95 |
-
font-size: 22px;
|
96 |
-
margin-left: -25px;
|
97 |
-
margin-top: -28px;
|
98 |
}
|
1 |
+
@charset "utf-8";
|
2 |
+
|
3 |
+
@font-face {
|
4 |
+
font-family: helveticabold;
|
5 |
+
src: url(fonts/helvetica_bold_0-webfont.eot);
|
6 |
+
src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
|
7 |
+
font-weight: 400;
|
8 |
+
font-style: normal;
|
9 |
+
}
|
10 |
+
|
11 |
+
@font-face {
|
12 |
+
font-family: helveticaregular;
|
13 |
+
src: url(fonts/helvetica_0-webfont.eot);
|
14 |
+
src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
|
15 |
+
font-weight: 400;
|
16 |
+
font-style: normal;
|
17 |
+
}
|
18 |
+
|
19 |
+
@font-face {
|
20 |
+
font-family: helvetica-light;
|
21 |
+
src: url(fonts/helvetica_0-webfont.eot);
|
22 |
+
src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helvetica-light) format('svg');
|
23 |
+
font-weight: 400;
|
24 |
+
font-style: normal;
|
25 |
+
}
|
26 |
+
|
27 |
+
@font-face {
|
28 |
+
font-family: helveticaneue-light;
|
29 |
+
src: url(fonts/helveticaneue-light.eot);
|
30 |
+
src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'), url(fonts/helveticaneue-light.woff) format('woff'), url(fonts/helveticaneue-light.ttf) format('truetype'), url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
|
31 |
+
font-weight: 400;
|
32 |
+
font-style: normal;
|
33 |
+
}
|
34 |
+
|
35 |
+
#sfsi-social-media .inside {
|
36 |
+
min-height: 950px;
|
37 |
+
overflow: hidden;
|
38 |
+
}
|
39 |
+
input[type='button'].sfsi-post-meta-btn{
|
40 |
+
width: 100%;
|
41 |
+
margin-top: 10px;
|
42 |
+
min-height: 45px;
|
43 |
+
background: #45a745;
|
44 |
+
color: white;
|
45 |
+
font-size: 16px;
|
46 |
+
}
|
47 |
+
#sfsi-social-media .inside{min-height: 950px;overflow: hidden;}
|
48 |
+
.sfsi_custom_social_data_container{float:left;width: 23%;display: inline-block;}
|
49 |
+
.imgContainer img{width: 100%;height: 323px;}
|
50 |
+
.imgUploadBtn{width: auto;}
|
51 |
+
img#sfsi-social-media-image-preview {}
|
52 |
+
input#sfsi-social-media-image-button,input#sfsi-social-pinterest-image-button {width: 100%;margin-top: 10px;min-height: 45px;background: #45a745;color: white;font-size: 16px;}
|
53 |
+
.imgTxt{ margin-top: 10px;width: 100%;}
|
54 |
+
.imgTopTxt{ font-size: 14px;padding-bottom: 10px;}
|
55 |
+
.imgTopTxt strong {font-size: 17px;font-family: inherit;}
|
56 |
+
.sfsi_custom_social_titlePlusDescription { margin-left: 30px; width: 70%;float: left; margin-top:7px;}
|
57 |
+
.sfsi_titlePlusDescription{ margin-left: 30px; width: 100%;float: left;}
|
58 |
+
.sfsi_custom_social_data_title{float: left;width: 100%;}
|
59 |
+
.sfsi_custom_social_data_description{margin-top: 40px;float: left;}
|
60 |
+
.social_description {width: 73%;float:left;margin-top: 10px;}
|
61 |
+
.sfsi_textarea{ width: 100%;min-height: 84px; border-radius: 4px;}
|
62 |
+
.remaining_char_box { background: #666;width: 25%;height: 34px;float: left;color: white;text-align: left;padding: 9px 0px 0px 8px;margin-top: 10px;font-weight: 600;border-radius: 25px 25px;text-align:center !important;font-size: 16px;}
|
63 |
+
.social_description_container{width: 100%;}
|
64 |
+
.social_data_container_first{float: left;padding: 15px 0px 10px 15px;}
|
65 |
+
.social_data_container_second{float: left;margin-top: 25px;padding: 15px 0px 10px 15px;}
|
66 |
+
.social_description_hint {float: left;width: 73%;margin-top:10px;}
|
67 |
+
|
68 |
+
/* CSS for notice if usm is disabled for adding open graph meta tags */
|
69 |
+
.sfsi_disable_usm_ogtags_notice {background-color: #fde9d8;float: left;padding: 10px;margin: 4px 0 20px 0;font-size: 14px;line-height: 25px;}
|
70 |
+
a.sfsi_disable_usm_ogtags_setting_change {color: #444;cursor: pointer;font-weight: 600;}
|
71 |
+
|
72 |
+
.imgpicker{ position: relative;z-index:10;}
|
73 |
+
.usm-remove-media {position: absolute;z-index: 100000;text-decoration: none;top: 0px;right: 0px;z-index: 10;display: none;color: white !important;}
|
74 |
+
.usm-remove-media:hover{color: white !important;text-decoration: none;}
|
75 |
+
.usm-overlay{position: absolute;top: 0;bottom: 0;left: 0;right: 0;background: rgba(0, 0, 0, .6);display: none;}
|
76 |
+
|
77 |
+
|
78 |
+
.sfsi-post-tooltip a:after{
|
79 |
+
content: "";
|
80 |
+
border-color: transparent green;
|
81 |
+
border-style: solid;
|
82 |
+
border-left: 0px solid red;
|
83 |
+
border-right: 2px solid #dddddd;
|
84 |
+
border-top: 0px solid red;
|
85 |
+
border-bottom: 2px solid #dddddd;
|
86 |
+
height: 18px;
|
87 |
+
background: #ddd;
|
88 |
+
width: 13px;
|
89 |
+
top: 128% !important;
|
90 |
+
left: 54%;
|
91 |
+
position: absolute;
|
92 |
+
color: green;
|
93 |
+
transform: rotate(45deg);
|
94 |
+
padding-right: 5px;
|
95 |
+
font-size: 22px;
|
96 |
+
margin-left: -25px;
|
97 |
+
margin-top: -28px;
|
98 |
}
|
css/sfsi-admin-style.css
CHANGED
@@ -1,5020 +1,5023 @@
|
|
1 |
-
@charset "utf-8";
|
2 |
-
|
3 |
-
@font-face {
|
4 |
-
font-family: helveticabold;
|
5 |
-
src: url(fonts/helvetica_bold_0-webfont.eot);
|
6 |
-
src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
|
7 |
-
font-weight: 400;
|
8 |
-
font-style: normal;
|
9 |
-
}
|
10 |
-
|
11 |
-
@font-face {
|
12 |
-
font-family: helveticaregular;
|
13 |
-
src: url(fonts/helvetica_0-webfont.eot);
|
14 |
-
src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
|
15 |
-
font-weight: 400;
|
16 |
-
font-style: normal;
|
17 |
-
}
|
18 |
-
|
19 |
-
@font-face {
|
20 |
-
font-family: helveticaneue-light;
|
21 |
-
src: url(fonts/helveticaneue-light.eot);
|
22 |
-
src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
|
23 |
-
url(fonts/helveticaneue-light.woff) format('woff'),
|
24 |
-
url(fonts/helveticaneue-light.ttf) format('truetype'),
|
25 |
-
url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
|
26 |
-
font-weight: 400;
|
27 |
-
font-style: normal;
|
28 |
-
}
|
29 |
-
|
30 |
-
body {
|
31 |
-
margin: 0;
|
32 |
-
padding: 0;
|
33 |
-
}
|
34 |
-
|
35 |
-
/*Tab 1*/
|
36 |
-
.tab1 ul.plus_icn_listing li .custom,
|
37 |
-
.tab1 ul.plus_icn_listing li .sfsicls_email,
|
38 |
-
.tab1 ul.plus_icn_listing li .sfsicls_facebook,
|
39 |
-
.tab1 ul.plus_icn_listing li .sfsicls_ggle_pls,
|
40 |
-
.tab1 ul.plus_icn_listing li .sfsicls_instagram,
|
41 |
-
.tab1 ul.plus_icn_listing li .sfsicls_telegram,
|
42 |
-
.tab1 ul.plus_icn_listing li .sfsicls_ok,
|
43 |
-
.tab1 ul.plus_icn_listing li .sfsicls_vk,
|
44 |
-
.tab1 ul.plus_icn_listing li .sfsicls_weibo,
|
45 |
-
.tab1 ul.plus_icn_listing li .sfsicls_houzz,
|
46 |
-
.tab1 ul.plus_icn_listing li .sfsicls_linkdin,
|
47 |
-
.tab1 ul.plus_icn_listing li .sfsicls_pinterest,
|
48 |
-
.tab1 ul.plus_icn_listing li .sfsicls_rs_s,
|
49 |
-
.tab1 ul.plus_icn_listing li .sfsicls_share,
|
50 |
-
.tab1 ul.plus_icn_listing li .sfsicls_twt,
|
51 |
-
.tab1 ul.plus_icn_listing li .sfsicls_utube,
|
52 |
-
.tab1 ul.plus_icn_listing li .sfsicls_wechat {
|
53 |
-
background: url(../images/tab_1_icn_list.png) no-repeat;
|
54 |
-
float: left;
|
55 |
-
padding: 0 0 0 59px;
|
56 |
-
margin: 0 0 0 17px;
|
57 |
-
height: 52px;
|
58 |
-
line-height: 51px;
|
59 |
-
font-family: helveticaregular;
|
60 |
-
font-size: 22px;
|
61 |
-
}
|
62 |
-
|
63 |
-
.tab1 ul.plus_icn_listing li .sfsicls_wechat,
|
64 |
-
.tab1 ul.sfsi_plus_mobile_icon_listing li .sfsicls_wechat {
|
65 |
-
background-image: url('../images/icons_theme/default/default_wechat.png');
|
66 |
-
-webkit-background-size: contain;
|
67 |
-
-moz-background-size: contain;
|
68 |
-
-o-background-size: contain;
|
69 |
-
background-size: contain;
|
70 |
-
}
|
71 |
-
|
72 |
-
.tab2 .row h2.sfsicls_wechat {
|
73 |
-
background-image: url('../images/icons_theme/default/default_wechat.png');
|
74 |
-
}
|
75 |
-
|
76 |
-
.tab1 ul.plus_icn_listing li .sfsicls_rs_s {
|
77 |
-
background-position: 0 0;
|
78 |
-
color: #f7941d;
|
79 |
-
}
|
80 |
-
|
81 |
-
.tab1 ul.plus_icn_listing li .sfsicls_email {
|
82 |
-
background-position: 0 -73px;
|
83 |
-
color: #d1c800;
|
84 |
-
}
|
85 |
-
|
86 |
-
.tab1 ul.plus_icn_listing li .sfsicls_facebook {
|
87 |
-
background-position: 0 -145px;
|
88 |
-
color: #004088;
|
89 |
-
}
|
90 |
-
|
91 |
-
.tab1 ul.plus_icn_listing li .sfsicls_twt {
|
92 |
-
background-position: 0 -221px;
|
93 |
-
color: #00abe3;
|
94 |
-
}
|
95 |
-
|
96 |
-
.tab1 ul.plus_icn_listing li .sfsicls_ggle_pls {
|
97 |
-
background-position: 0 -295px;
|
98 |
-
color: #444749;
|
99 |
-
}
|
100 |
-
|
101 |
-
.tab1 ul.plus_icn_listing li .sfsicls_share {
|
102 |
-
background-position: 0 -372px;
|
103 |
-
color: #ef4746;
|
104 |
-
}
|
105 |
-
|
106 |
-
.tab1 ul.plus_icn_listing li .sfsicls_utube {
|
107 |
-
background-position: 0 -448px;
|
108 |
-
color: #f07963;
|
109 |
-
}
|
110 |
-
|
111 |
-
.tab1 ul.plus_icn_listing li .sfsicls_linkdin {
|
112 |
-
background-position: 0 -548px;
|
113 |
-
color: #1e88c9;
|
114 |
-
}
|
115 |
-
|
116 |
-
.tab1 ul.plus_icn_listing li .sfsicls_pinterest {
|
117 |
-
background-position: 0 -623px;
|
118 |
-
color: #f15f5d;
|
119 |
-
}
|
120 |
-
|
121 |
-
.tab1 ul.plus_icn_listing li .sfsicls_instagram {
|
122 |
-
background-position: 0 -781px;
|
123 |
-
color: #369;
|
124 |
-
}
|
125 |
-
|
126 |
-
.tab1 ul.plus_icn_listing li .sfsicls_telegram {
|
127 |
-
background-position: 0 -1889px;
|
128 |
-
color: #369;
|
129 |
-
}
|
130 |
-
|
131 |
-
.tab1 ul.plus_icn_listing li .sfsicls_vk {
|
132 |
-
background-position: 0 -1968px;
|
133 |
-
color: #369;
|
134 |
-
}
|
135 |
-
|
136 |
-
.tab1 ul.plus_icn_listing li .sfsicls_ok {
|
137 |
-
background-position: 0 -1810px;
|
138 |
-
color: #369;
|
139 |
-
}
|
140 |
-
|
141 |
-
.sfsicls_wechat {
|
142 |
-
background-image: url('../images/icons_theme/default/default_wechat.png');
|
143 |
-
-webkit-background-size: contain;
|
144 |
-
-moz-background-size: contain;
|
145 |
-
-o-background-size: contain;
|
146 |
-
background-size: contain;
|
147 |
-
}
|
148 |
-
|
149 |
-
.tab1 ul.plus_icn_listing li .sfsicls_weibo {
|
150 |
-
background-position: 0 -2046px;
|
151 |
-
color: #369;
|
152 |
-
}
|
153 |
-
|
154 |
-
.tab1 ul.sfsi_premium_mobile_icon_listing li .sfsicls_ok {
|
155 |
-
background-position: 0 -1810px;
|
156 |
-
color: #369;
|
157 |
-
}
|
158 |
-
|
159 |
-
.tab1 ul.plus_icn_listing li .sfsicls_houzz {
|
160 |
-
background-position: 0 -939px;
|
161 |
-
color: #369;
|
162 |
-
}
|
163 |
-
|
164 |
-
.tab1 ul.plus_icn_listing li .custom {
|
165 |
-
background-position: 0 -702px;
|
166 |
-
color: #5a6570;
|
167 |
-
}
|
168 |
-
|
169 |
-
.tab1 ul.plus_icn_listing li .sfsiplus_right_info {
|
170 |
-
width: 70%;
|
171 |
-
float: right;
|
172 |
-
font-family: helveticaregular;
|
173 |
-
margin-right: 13px;
|
174 |
-
}
|
175 |
-
|
176 |
-
ul.plus_icn_listing li .sfsiplus_right_info a {
|
177 |
-
text-decoration: underline;
|
178 |
-
color: #a4a9ad;
|
179 |
-
font-size: 16px;
|
180 |
-
}
|
181 |
-
|
182 |
-
ul.sfsiplus_icn_listing8 li .sfsiplus_right_info a {
|
183 |
-
text-decoration: underline;
|
184 |
-
color: #a4a9ad;
|
185 |
-
font-size: 20px;
|
186 |
-
}
|
187 |
-
|
188 |
-
.tab1 .tab_2_sav {
|
189 |
-
padding-top: 30px;
|
190 |
-
}
|
191 |
-
|
192 |
-
/*Tab 2*/
|
193 |
-
.tab2 .row h2.sfsicls_email,
|
194 |
-
.tab2 .row h2.sfsicls_facebook,
|
195 |
-
.tab2 .row h2.sfsicls_ggle_pls,
|
196 |
-
.tab2 .row h2.sfsicls_instagram,
|
197 |
-
.tab2 .row h2.sfsicls_houzz,
|
198 |
-
.tab2 .row h2.sfsicls_linkdin,
|
199 |
-
.tab2 .row h2.sfsicls_pinterest,
|
200 |
-
.tab2 .row h2.sfsicls_rs_s,
|
201 |
-
.tab2 .row h2.sfsicls_share,
|
202 |
-
.tab2 .row h2.sfsicls_twt,
|
203 |
-
.tab2 .row h2.sfsicls_utube,
|
204 |
-
.tab2 .row h2.sfsicls_snapchat,
|
205 |
-
.tab2 .row h2.sfsicls_whatsapp,
|
206 |
-
.tab2 .row h2.sfsicls_skype,
|
207 |
-
.tab2 .row h2.sfsicls_vimeo,
|
208 |
-
.tab2 .row h2.sfsicls_soundcloud,
|
209 |
-
.tab2 .row h2.sfsicls_yummly,
|
210 |
-
.tab2 .row h2.sfsicls_flickr,
|
211 |
-
.tab2 .row h2.sfsicls_reddit,
|
212 |
-
.tab2 .row h2.sfsicls_tumblr,
|
213 |
-
.tab2 .row h2.sfsicls_fbmessenger,
|
214 |
-
.tab2 .row h2.sfsicls_mix,
|
215 |
-
.tab2 .row h2.sfsicls_ok,
|
216 |
-
.tab2 .row h2.sfsicls_telegram,
|
217 |
-
.tab2 .row h2.sfsicls_vk,
|
218 |
-
.tab2 .row h2.sfsicls_weibo,
|
219 |
-
.tab2 .row h2.sfsicls_wechat,
|
220 |
-
.tab2 .row h2.sfsicls_xing {
|
221 |
-
background: url(../images/tab_1_icn_list.png) no-repeat;
|
222 |
-
padding: 10px 0 0 70px;
|
223 |
-
margin: 15px 0 7px 21px;
|
224 |
-
height: 52px;
|
225 |
-
line-height: 32px;
|
226 |
-
font-family: helveticaregular;
|
227 |
-
font-size: 22px;
|
228 |
-
|
229 |
-
}
|
230 |
-
|
231 |
-
.tab2 .row h2.sfsicls_rs_s {
|
232 |
-
background-position: 0 0;
|
233 |
-
color: #f7941d;
|
234 |
-
}
|
235 |
-
|
236 |
-
.tab2 .row h2.sfsicls_email {
|
237 |
-
background-position: 0 -71px;
|
238 |
-
color: #d1c800;
|
239 |
-
}
|
240 |
-
|
241 |
-
.tab2 .row h2.sfsicls_facebook {
|
242 |
-
background-position: 0 -145px;
|
243 |
-
color: #004088;
|
244 |
-
}
|
245 |
-
|
246 |
-
.tab2 .row h2.sfsicls_twt {
|
247 |
-
background-position: 0 -221px;
|
248 |
-
color: #00abe3;
|
249 |
-
}
|
250 |
-
|
251 |
-
.tab2 .row h2.sfsicls_ggle_pls {
|
252 |
-
background-position: 0 -295px;
|
253 |
-
color: #444749;
|
254 |
-
}
|
255 |
-
|
256 |
-
.tab2 .row h2.sfsicls_share {
|
257 |
-
background-position: 0 -372px;
|
258 |
-
color: #ef4746;
|
259 |
-
}
|
260 |
-
|
261 |
-
.tab2 .row h2.sfsicls_utube {
|
262 |
-
background-position: 0 -448px;
|
263 |
-
color: #f07963;
|
264 |
-
}
|
265 |
-
|
266 |
-
.tab2 .row h2.sfsicls_linkdin {
|
267 |
-
background-position: 0 -548px;
|
268 |
-
color: #1e88c9;
|
269 |
-
}
|
270 |
-
|
271 |
-
.tab2 .row h2.sfsicls_pinterest {
|
272 |
-
background-position: 0 -623px;
|
273 |
-
color: #f15f5d;
|
274 |
-
}
|
275 |
-
|
276 |
-
.tab2 .row h2.sfsicls_instagram {
|
277 |
-
background-position: 0 -781px;
|
278 |
-
color: #369;
|
279 |
-
}
|
280 |
-
|
281 |
-
.tab2 .row h2.sfsicls_houzz {
|
282 |
-
background-position: 0 -939px;
|
283 |
-
color: #7BC043;
|
284 |
-
}
|
285 |
-
|
286 |
-
.tab2 .row h2.sfsicls_snapchat {
|
287 |
-
background-position: 0 -1019px;
|
288 |
-
color: #369;
|
289 |
-
}
|
290 |
-
|
291 |
-
.tab2 .row h2.sfsicls_whatsapp {
|
292 |
-
background-position: 0 -1099px;
|
293 |
-
color: #369;
|
294 |
-
}
|
295 |
-
|
296 |
-
.tab2 .row h2.sfsicls_skype {
|
297 |
-
background-position: 0 -1179px;
|
298 |
-
color: #369;
|
299 |
-
}
|
300 |
-
|
301 |
-
.tab2 .row h2.sfsicls_vimeo {
|
302 |
-
background-position: 0 -1257px;
|
303 |
-
color: #369;
|
304 |
-
}
|
305 |
-
|
306 |
-
.tab2 .row h2.sfsicls_soundcloud {
|
307 |
-
background-position: 0 -1336px;
|
308 |
-
color: #369;
|
309 |
-
}
|
310 |
-
|
311 |
-
.tab2 .row h2.sfsicls_yummly {
|
312 |
-
background-position: 0 -1415px;
|
313 |
-
color: #369;
|
314 |
-
}
|
315 |
-
|
316 |
-
.tab2 .row h2.sfsicls_flickr {
|
317 |
-
background-position: 0 -1494px;
|
318 |
-
color: #369;
|
319 |
-
}
|
320 |
-
|
321 |
-
.tab2 .row h2.sfsicls_reddit {
|
322 |
-
background-position: 0 -1573px;
|
323 |
-
color: #369;
|
324 |
-
}
|
325 |
-
|
326 |
-
.tab2 .row h2.sfsicls_tumblr {
|
327 |
-
background-position: 0 -1653px;
|
328 |
-
color: #369;
|
329 |
-
}
|
330 |
-
|
331 |
-
.tab2 .row h2.sfsicls_fbmessenger {
|
332 |
-
background-position: 0 -2206px;
|
333 |
-
}
|
334 |
-
|
335 |
-
.tab2 .row h2.sfsicls_mix {
|
336 |
-
background-position: 0 -1732px;
|
337 |
-
}
|
338 |
-
|
339 |
-
.tab2 .row h2.sfsicls_ok {
|
340 |
-
background-position: 0 -1810px;
|
341 |
-
;
|
342 |
-
color: #DC752B;
|
343 |
-
}
|
344 |
-
|
345 |
-
.tab2 .row h2.sfsicls_telegram {
|
346 |
-
background-position: 0 -1889px;
|
347 |
-
color: #2E91BC;
|
348 |
-
}
|
349 |
-
|
350 |
-
.tab2 .row h2.sfsicls_vk {
|
351 |
-
background-position: 0 -1968px;
|
352 |
-
color: #4E77A2;
|
353 |
-
}
|
354 |
-
|
355 |
-
.tab2 .row h2.sfsicls_wechat {
|
356 |
-
background-position: 0 -2126px;
|
357 |
-
color: #56AD33;
|
358 |
-
}
|
359 |
-
|
360 |
-
.tab2 .row h2.sfsicls_weibo {
|
361 |
-
background-position: 0 -2046px;
|
362 |
-
color: #B93524;
|
363 |
-
}
|
364 |
-
|
365 |
-
.tab2 .row h2.sfsicls_xing {
|
366 |
-
background-position: 0 -2127px;
|
367 |
-
}
|
368 |
-
|
369 |
-
.tab2 .inr_cont {
|
370 |
-
margin: 0 0 0px 94px;
|
371 |
-
}
|
372 |
-
|
373 |
-
/*replace*/
|
374 |
-
|
375 |
-
.tab2 .radio_section.fb_url.cus_link.instagram_space>ul {
|
376 |
-
float: left;
|
377 |
-
margin: 0 !important;
|
378 |
-
width: 100%;
|
379 |
-
}
|
380 |
-
|
381 |
-
.tab2 .radio_section.fb_url.cus_link.instagram_space ul li {
|
382 |
-
float: left;
|
383 |
-
margin: 10px 0 20px;
|
384 |
-
width: 100%;
|
385 |
-
}
|
386 |
-
|
387 |
-
.tab2 .sfsi_plus_pageurl_type {
|
388 |
-
display: inline-block;
|
389 |
-
float: none !important;
|
390 |
-
vertical-align: middle;
|
391 |
-
width: 100%;
|
392 |
-
}
|
393 |
-
|
394 |
-
.tab2 .sfsi_plus_pageurl_type .radio {
|
395 |
-
display: inline-block;
|
396 |
-
float: none !important;
|
397 |
-
vertical-align: middle;
|
398 |
-
}
|
399 |
-
|
400 |
-
.tab2 .sfsi_plus_pageurl_type>label {
|
401 |
-
float: none !important;
|
402 |
-
width: auto !important;
|
403 |
-
}
|
404 |
-
|
405 |
-
.tab2 .sfsi_plus_whatsapp_share_page_container {
|
406 |
-
margin-left: 170px;
|
407 |
-
}
|
408 |
-
|
409 |
-
.tab2 .sfsi_plus_whatsapp_share_page_container label {
|
410 |
-
float: left !important;
|
411 |
-
font-family: "helveticaneue-light";
|
412 |
-
font-size: 16px !important;
|
413 |
-
margin: 6px 0 0 19px !important;
|
414 |
-
width: 100% !important;
|
415 |
-
}
|
416 |
-
|
417 |
-
.tab2 .sfsi_plus_email_icons_content {
|
418 |
-
display: inline-block;
|
419 |
-
float: none;
|
420 |
-
margin: 0 !important;
|
421 |
-
vertical-align: top;
|
422 |
-
width: 85%;
|
423 |
-
}
|
424 |
-
|
425 |
-
.tab2 .sfsi_plus_email_icons_content textarea.add_txt {
|
426 |
-
margin: 0 !important;
|
427 |
-
}
|
428 |
-
|
429 |
-
.tab2 .sfsi_plus_email_icons_content p {
|
430 |
-
width: 100%;
|
431 |
-
}
|
432 |
-
|
433 |
-
ul.tab_2_email_sec .sf_arow {
|
434 |
-
width: 55px;
|
435 |
-
height: 55px;
|
436 |
-
float: left;
|
437 |
-
background: url(../images/sf_arow_icn.png) no-repeat;
|
438 |
-
margin: 0 0px 0 6px;
|
439 |
-
}
|
440 |
-
|
441 |
-
ul.tab_2_email_sec .email_icn {
|
442 |
-
background: url(../images/tab_1_icn_list.png) 0 -71px no-repeat;
|
443 |
-
width: 60px;
|
444 |
-
height: 52px;
|
445 |
-
float: left;
|
446 |
-
margin: 0 0 0 5px;
|
447 |
-
}
|
448 |
-
|
449 |
-
ul.tab_2_email_sec .subscribe_icn {
|
450 |
-
background: url(../images/tab_1_icn_list.png) 0 -860px no-repeat;
|
451 |
-
width: 60px;
|
452 |
-
height: 52px;
|
453 |
-
float: left;
|
454 |
-
margin: 0 0 0 5px;
|
455 |
-
}
|
456 |
-
|
457 |
-
ul.tab_2_email_sec li .radio {
|
458 |
-
float: left;
|
459 |
-
margin: 8px 0 0;
|
460 |
-
}
|
461 |
-
|
462 |
-
.row ul.tab_2_email_sec li label {
|
463 |
-
margin: 13px 0 0 7px;
|
464 |
-
font-size: 16px;
|
465 |
-
float: left;
|
466 |
-
width: 160px;
|
467 |
-
}
|
468 |
-
|
469 |
-
.row ul.tab_2_email_sec li label span {
|
470 |
-
font-size: 15px;
|
471 |
-
color: #808080;
|
472 |
-
width: 100%;
|
473 |
-
float: left;
|
474 |
-
}
|
475 |
-
|
476 |
-
.tab2 .sfsi_plus_whatsapp_number_container {
|
477 |
-
display: inline-block;
|
478 |
-
vertical-align: middle;
|
479 |
-
width: auto;
|
480 |
-
}
|
481 |
-
|
482 |
-
.tab2 .sfsi_plus_whatsapp_number_container label {
|
483 |
-
font-family: "helveticaneue-light";
|
484 |
-
font-size: 16px !important;
|
485 |
-
margin: 0 0 0 20px !important;
|
486 |
-
width: 100% !important;
|
487 |
-
float: left !important;
|
488 |
-
}
|
489 |
-
|
490 |
-
.tab2 .radio_section.fb_url.twt_fld_2 p {
|
491 |
-
width: 60%;
|
492 |
-
float: left;
|
493 |
-
margin-left: 237px;
|
494 |
-
}
|
495 |
-
|
496 |
-
.tab2 ul.sfsi_plus_email_functions_container,
|
497 |
-
.tab2 ul.sfsi_plus_email_functions_container li {
|
498 |
-
width: 100%;
|
499 |
-
float: left;
|
500 |
-
}
|
501 |
-
|
502 |
-
.tab2 ul.sfsi_plus_email_functions_container {
|
503 |
-
margin: 12px 0 18px 0;
|
504 |
-
}
|
505 |
-
|
506 |
-
.tab2 ul.sfsi_plus_email_functions_container li {
|
507 |
-
margin-bottom: 10px;
|
508 |
-
}
|
509 |
-
|
510 |
-
.tab2 ul.sfsi_plus_email_functions_container li .sfsiplusicnsdvwrp,
|
511 |
-
.tab2 ul.sfsi_plus_email_functions_container li p {
|
512 |
-
width: auto;
|
513 |
-
float: left;
|
514 |
-
}
|
515 |
-
|
516 |
-
.tab2 ul.sfsi_plus_email_functions_container li .sfsiplusicnsdvwrp {
|
517 |
-
margin-right: 10px;
|
518 |
-
}
|
519 |
-
|
520 |
-
.tab2 ul.sfsi_plus_email_functions_container li p {
|
521 |
-
width: 90% !important;
|
522 |
-
padding-top: 5px !important;
|
523 |
-
}
|
524 |
-
|
525 |
-
.tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field {
|
526 |
-
width: 100%;
|
527 |
-
float: left;
|
528 |
-
margin: 10px 10px 10px 50px;
|
529 |
-
}
|
530 |
-
|
531 |
-
.tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field label,
|
532 |
-
.tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field input {
|
533 |
-
width: 110px;
|
534 |
-
float: none;
|
535 |
-
display: inline-block;
|
536 |
-
vertical-align: middle;
|
537 |
-
}
|
538 |
-
|
539 |
-
.tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field input {
|
540 |
-
width: 380px;
|
541 |
-
padding: 10px;
|
542 |
-
}
|
543 |
-
|
544 |
-
/*Tab 3*/
|
545 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_1,
|
546 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_10,
|
547 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_11,
|
548 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_2,
|
549 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_3,
|
550 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_4,
|
551 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_5,
|
552 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_6,
|
553 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_7,
|
554 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_8,
|
555 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_9,
|
556 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_1,
|
557 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_10,
|
558 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_11,
|
559 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_2,
|
560 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_3,
|
561 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_4,
|
562 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_5,
|
563 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_6,
|
564 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_7,
|
565 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_8,
|
566 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_9,
|
567 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_1,
|
568 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_10,
|
569 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_11,
|
570 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_2,
|
571 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_3,
|
572 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_4,
|
573 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_5,
|
574 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_6,
|
575 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_7,
|
576 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_8,
|
577 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_9,
|
578 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_1,
|
579 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_10,
|
580 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_11,
|
581 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_2,
|
582 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_3,
|
583 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_4,
|
584 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_5,
|
585 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_6,
|
586 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_7,
|
587 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_8,
|
588 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_9,
|
589 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_1,
|
590 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_10,
|
591 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_11,
|
592 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_2,
|
593 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_3,
|
594 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_4,
|
595 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_5,
|
596 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_6,
|
597 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_7,
|
598 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_8,
|
599 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_9,
|
600 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_1,
|
601 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_10,
|
602 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_11,
|
603 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_2,
|
604 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_3,
|
605 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_4,
|
606 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_5,
|
607 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_6,
|
608 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_7,
|
609 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_8,
|
610 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_9,
|
611 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_1,
|
612 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_10,
|
613 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_11,
|
614 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_2,
|
615 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_3,
|
616 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_4,
|
617 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_5,
|
618 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_6,
|
619 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_7,
|
620 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_8,
|
621 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_9,
|
622 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_1,
|
623 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_10,
|
624 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_11,
|
625 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_22,
|
626 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_2,
|
627 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_3,
|
628 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_4,
|
629 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_5,
|
630 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_6,
|
631 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_7,
|
632 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_8,
|
633 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_9,
|
634 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_1,
|
635 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_10,
|
636 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_11,
|
637 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_22,
|
638 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_2,
|
639 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_3,
|
640 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_4,
|
641 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_5,
|
642 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_6,
|
643 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_7,
|
644 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_8,
|
645 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_9,
|
646 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_1,
|
647 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_10,
|
648 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_11,
|
649 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_22,
|
650 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_2,
|
651 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_3,
|
652 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_4,
|
653 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_5,
|
654 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_6,
|
655 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_7,
|
656 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_8,
|
657 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_9,
|
658 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_1,
|
659 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_10,
|
660 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_11,
|
661 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_22,
|
662 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_2,
|
663 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_3,
|
664 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_4,
|
665 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_5,
|
666 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_6,
|
667 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_7,
|
668 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_8,
|
669 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_9,
|
670 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_1,
|
671 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_10,
|
672 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_11,
|
673 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_22,
|
674 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_2,
|
675 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_3,
|
676 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_4,
|
677 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_5,
|
678 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_6,
|
679 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_7,
|
680 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_8,
|
681 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_9,
|
682 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_1,
|
683 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_10,
|
684 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_11,
|
685 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_22,
|
686 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_2,
|
687 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_3,
|
688 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_4,
|
689 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_5,
|
690 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_6,
|
691 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_7,
|
692 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_8,
|
693 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_9,
|
694 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_1,
|
695 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_10,
|
696 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_11,
|
697 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_2,
|
698 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_3,
|
699 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_4,
|
700 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_5,
|
701 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_6,
|
702 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_7,
|
703 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_8,
|
704 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_9,
|
705 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_1,
|
706 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_10,
|
707 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_11,
|
708 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_2,
|
709 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_3,
|
710 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_4,
|
711 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_5,
|
712 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_6,
|
713 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_7,
|
714 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_8,
|
715 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_9,
|
716 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_1,
|
717 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_10,
|
718 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_11,
|
719 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_2,
|
720 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_3,
|
721 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_4,
|
722 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_5,
|
723 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_6,
|
724 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_7,
|
725 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_8,
|
726 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_9,
|
727 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_1,
|
728 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_2,
|
729 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_3,
|
730 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_4,
|
731 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_5,
|
732 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_6,
|
733 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_7,
|
734 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_8,
|
735 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_9,
|
736 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_10,
|
737 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_11,
|
738 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_22,
|
739 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_22,
|
740 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_22,
|
741 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_22,
|
742 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_22,
|
743 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_22,
|
744 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_22,
|
745 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_22,
|
746 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_22,
|
747 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_22,
|
748 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_22,
|
749 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_23,
|
750 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_24,
|
751 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_25,
|
752 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_23,
|
753 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_23,
|
754 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_23,
|
755 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_23,
|
756 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_23,
|
757 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_23,
|
758 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_23,
|
759 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_23,
|
760 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_23,
|
761 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_23,
|
762 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_23,
|
763 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_23,
|
764 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_23,
|
765 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_23,
|
766 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_23,
|
767 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_23,
|
768 |
-
|
769 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_24,
|
770 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_24,
|
771 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_24,
|
772 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_24,
|
773 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_24,
|
774 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_24,
|
775 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_24,
|
776 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_24,
|
777 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_24,
|
778 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_24,
|
779 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_24,
|
780 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_24,
|
781 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_24,
|
782 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_24,
|
783 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_24,
|
784 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_24,
|
785 |
-
|
786 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_25,
|
787 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_25,
|
788 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_25,
|
789 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_25,
|
790 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_25,
|
791 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_25,
|
792 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_25,
|
793 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_25,
|
794 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_25,
|
795 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_25,
|
796 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_25,
|
797 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_25,
|
798 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_25,
|
799 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_25,
|
800 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_25,
|
801 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_25,
|
802 |
-
|
803 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_26,
|
804 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_26,
|
805 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_26,
|
806 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_26,
|
807 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_26,
|
808 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_26,
|
809 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_26,
|
810 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_26,
|
811 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_26,
|
812 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_26,
|
813 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_26,
|
814 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_26,
|
815 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_26,
|
816 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_26,
|
817 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_26,
|
818 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_26,
|
819 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_17_26 {
|
820 |
-
background: url(../images/tab_3_icns.png) no-repeat;
|
821 |
-
width: 53px;
|
822 |
-
height: 52px;
|
823 |
-
float: left;
|
824 |
-
margin: 0 4px 0 0;
|
825 |
-
}
|
826 |
-
|
827 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_1 {
|
828 |
-
background-position: -1px 0;
|
829 |
-
}
|
830 |
-
|
831 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_2 {
|
832 |
-
background-position: -60px 0;
|
833 |
-
}
|
834 |
-
|
835 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_3 {
|
836 |
-
background-position: -118px 0;
|
837 |
-
}
|
838 |
-
|
839 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_4 {
|
840 |
-
background-position: -176px 0;
|
841 |
-
}
|
842 |
-
|
843 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_5 {
|
844 |
-
background-position: -235px 0;
|
845 |
-
}
|
846 |
-
|
847 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_6 {
|
848 |
-
background-position: -293px 0;
|
849 |
-
}
|
850 |
-
|
851 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_7 {
|
852 |
-
background-position: -350px 0;
|
853 |
-
}
|
854 |
-
|
855 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_8 {
|
856 |
-
background-position: -409px 0;
|
857 |
-
}
|
858 |
-
|
859 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_9 {
|
860 |
-
background-position: -467px 0;
|
861 |
-
}
|
862 |
-
|
863 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_10 {
|
864 |
-
background-position: -526px 0;
|
865 |
-
}
|
866 |
-
|
867 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_11 {
|
868 |
-
background-position: -711px 0;
|
869 |
-
}
|
870 |
-
|
871 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_22 {
|
872 |
-
background-position: -773px 0;
|
873 |
-
}
|
874 |
-
|
875 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_23 {
|
876 |
-
background-position: -838px 0;
|
877 |
-
}
|
878 |
-
|
879 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_24 {
|
880 |
-
background-position: -909px 0;
|
881 |
-
}
|
882 |
-
|
883 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_25 {
|
884 |
-
background-position: -977px 0;
|
885 |
-
}
|
886 |
-
|
887 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_1_26 {
|
888 |
-
background-position: -1045px 0;
|
889 |
-
}
|
890 |
-
|
891 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_1 {
|
892 |
-
background-position: 0 -74px;
|
893 |
-
}
|
894 |
-
|
895 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_2 {
|
896 |
-
background-position: -60px -74px;
|
897 |
-
}
|
898 |
-
|
899 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_3 {
|
900 |
-
background-position: -118px -74px;
|
901 |
-
}
|
902 |
-
|
903 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_4 {
|
904 |
-
background-position: -176px -74px;
|
905 |
-
}
|
906 |
-
|
907 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_5 {
|
908 |
-
background-position: -235px -74px;
|
909 |
-
}
|
910 |
-
|
911 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_6 {
|
912 |
-
background-position: -293px -74px;
|
913 |
-
}
|
914 |
-
|
915 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_7 {
|
916 |
-
background-position: -350px -74px;
|
917 |
-
}
|
918 |
-
|
919 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_8 {
|
920 |
-
background-position: -409px -74px;
|
921 |
-
}
|
922 |
-
|
923 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_9 {
|
924 |
-
background-position: -467px -74px;
|
925 |
-
}
|
926 |
-
|
927 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_10 {
|
928 |
-
background-position: -526px -74px;
|
929 |
-
}
|
930 |
-
|
931 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_11 {
|
932 |
-
background-position: -711px -74px;
|
933 |
-
}
|
934 |
-
|
935 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_22 {
|
936 |
-
background-position: -773px -74px;
|
937 |
-
}
|
938 |
-
|
939 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_23 {
|
940 |
-
background-position: -838px -74px;
|
941 |
-
}
|
942 |
-
|
943 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_24 {
|
944 |
-
background-position: -909px -74px;
|
945 |
-
}
|
946 |
-
|
947 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_25 {
|
948 |
-
background-position: -977px -74px;
|
949 |
-
}
|
950 |
-
|
951 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_2_26 {
|
952 |
-
background-position: -1045px 0;
|
953 |
-
}
|
954 |
-
|
955 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_1 {
|
956 |
-
background-position: 0 -146px;
|
957 |
-
}
|
958 |
-
|
959 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_2 {
|
960 |
-
background-position: -60px -146px;
|
961 |
-
}
|
962 |
-
|
963 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_3 {
|
964 |
-
background-position: -118px -146px;
|
965 |
-
}
|
966 |
-
|
967 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_4 {
|
968 |
-
background-position: -176px -146px;
|
969 |
-
}
|
970 |
-
|
971 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_5 {
|
972 |
-
background-position: -235px -146px;
|
973 |
-
}
|
974 |
-
|
975 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_6 {
|
976 |
-
background-position: -293px -146px;
|
977 |
-
}
|
978 |
-
|
979 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_7 {
|
980 |
-
background-position: -350px -146px;
|
981 |
-
}
|
982 |
-
|
983 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_8 {
|
984 |
-
background-position: -409px -146px;
|
985 |
-
}
|
986 |
-
|
987 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_9 {
|
988 |
-
background-position: -467px -146px;
|
989 |
-
}
|
990 |
-
|
991 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_10 {
|
992 |
-
background-position: -526px -146px;
|
993 |
-
}
|
994 |
-
|
995 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_11 {
|
996 |
-
background-position: -711px -147px;
|
997 |
-
}
|
998 |
-
|
999 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_22 {
|
1000 |
-
background-position: -773px -147px;
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_23 {
|
1004 |
-
background-position: -838px -147px;
|
1005 |
-
}
|
1006 |
-
|
1007 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_24 {
|
1008 |
-
background-position: -909px -147px;
|
1009 |
-
}
|
1010 |
-
|
1011 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_25 {
|
1012 |
-
background-position: -977px -147px;
|
1013 |
-
}
|
1014 |
-
|
1015 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_3_26 {
|
1016 |
-
background-position: -1045px 0;
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_1 {
|
1020 |
-
background-position: 0 -222px;
|
1021 |
-
}
|
1022 |
-
|
1023 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_2 {
|
1024 |
-
background-position: -60px -222px;
|
1025 |
-
}
|
1026 |
-
|
1027 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_3 {
|
1028 |
-
background-position: -118px -222px;
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_4 {
|
1032 |
-
background-position: -176px -222px;
|
1033 |
-
}
|
1034 |
-
|
1035 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_5 {
|
1036 |
-
background-position: -235px -222px;
|
1037 |
-
}
|
1038 |
-
|
1039 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_6 {
|
1040 |
-
background-position: -293px -222px;
|
1041 |
-
}
|
1042 |
-
|
1043 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_7 {
|
1044 |
-
background-position: -350px -222px;
|
1045 |
-
}
|
1046 |
-
|
1047 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_8 {
|
1048 |
-
background-position: -409px -222px;
|
1049 |
-
}
|
1050 |
-
|
1051 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_9 {
|
1052 |
-
background-position: -467px -222px;
|
1053 |
-
}
|
1054 |
-
|
1055 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_10 {
|
1056 |
-
background-position: -526px -222px;
|
1057 |
-
}
|
1058 |
-
|
1059 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_11 {
|
1060 |
-
background-position: -711px -222px;
|
1061 |
-
}
|
1062 |
-
|
1063 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_22 {
|
1064 |
-
background-position: -773px -222px;
|
1065 |
-
}
|
1066 |
-
|
1067 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_23 {
|
1068 |
-
background-position: -838px -222px;
|
1069 |
-
}
|
1070 |
-
|
1071 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_24 {
|
1072 |
-
background-position: -909px -222px;
|
1073 |
-
}
|
1074 |
-
|
1075 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_25 {
|
1076 |
-
background-position: -977px -222px;
|
1077 |
-
}
|
1078 |
-
|
1079 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_4_26 {
|
1080 |
-
background-position: -1045px 0;
|
1081 |
-
}
|
1082 |
-
|
1083 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_1 {
|
1084 |
-
background-position: 0 -296px;
|
1085 |
-
}
|
1086 |
-
|
1087 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_2 {
|
1088 |
-
background-position: -60px -296px;
|
1089 |
-
}
|
1090 |
-
|
1091 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_3 {
|
1092 |
-
background-position: -118px -296px;
|
1093 |
-
}
|
1094 |
-
|
1095 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_4 {
|
1096 |
-
background-position: -176px -296px;
|
1097 |
-
}
|
1098 |
-
|
1099 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_5 {
|
1100 |
-
background-position: -235px -296px;
|
1101 |
-
}
|
1102 |
-
|
1103 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_6 {
|
1104 |
-
background-position: -293px -296px;
|
1105 |
-
}
|
1106 |
-
|
1107 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_7 {
|
1108 |
-
background-position: -350px -296px;
|
1109 |
-
}
|
1110 |
-
|
1111 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_8 {
|
1112 |
-
background-position: -409px -296px;
|
1113 |
-
}
|
1114 |
-
|
1115 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_9 {
|
1116 |
-
background-position: -467px -296px;
|
1117 |
-
}
|
1118 |
-
|
1119 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_10 {
|
1120 |
-
background-position: -526px -296px;
|
1121 |
-
}
|
1122 |
-
|
1123 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_11 {
|
1124 |
-
background-position: -711px -296px;
|
1125 |
-
}
|
1126 |
-
|
1127 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_22 {
|
1128 |
-
background-position: -773px -296px;
|
1129 |
-
}
|
1130 |
-
|
1131 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_23 {
|
1132 |
-
background-position: -838px -296px;
|
1133 |
-
}
|
1134 |
-
|
1135 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_24 {
|
1136 |
-
background-position: -909px -296px;
|
1137 |
-
}
|
1138 |
-
|
1139 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_25 {
|
1140 |
-
background-position: -977px -296px;
|
1141 |
-
}
|
1142 |
-
|
1143 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_5_26 {
|
1144 |
-
background-position: -1045px 0;
|
1145 |
-
}
|
1146 |
-
|
1147 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_1 {
|
1148 |
-
background-position: 0 -370px;
|
1149 |
-
}
|
1150 |
-
|
1151 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_2 {
|
1152 |
-
background-position: -60px -370px;
|
1153 |
-
}
|
1154 |
-
|
1155 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_3 {
|
1156 |
-
background-position: -118px -370px;
|
1157 |
-
}
|
1158 |
-
|
1159 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_4 {
|
1160 |
-
background-position: -176px -370px;
|
1161 |
-
}
|
1162 |
-
|
1163 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_5 {
|
1164 |
-
background-position: -235px -370px;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_6 {
|
1168 |
-
background-position: -293px -370px;
|
1169 |
-
}
|
1170 |
-
|
1171 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_7 {
|
1172 |
-
background-position: -350px -370px;
|
1173 |
-
}
|
1174 |
-
|
1175 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_8 {
|
1176 |
-
background-position: -409px -370px;
|
1177 |
-
}
|
1178 |
-
|
1179 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_9 {
|
1180 |
-
background-position: -468px -370px;
|
1181 |
-
}
|
1182 |
-
|
1183 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_10 {
|
1184 |
-
background-position: -526px -370px;
|
1185 |
-
}
|
1186 |
-
|
1187 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_11 {
|
1188 |
-
background-position: -711px -370px;
|
1189 |
-
}
|
1190 |
-
|
1191 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_22 {
|
1192 |
-
background-position: -773px -370px;
|
1193 |
-
}
|
1194 |
-
|
1195 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_23 {
|
1196 |
-
background-position: -838px -370px;
|
1197 |
-
}
|
1198 |
-
|
1199 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_24 {
|
1200 |
-
background-position: -909px -370px;
|
1201 |
-
}
|
1202 |
-
|
1203 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_25 {
|
1204 |
-
background-position: -977px -370px;
|
1205 |
-
}
|
1206 |
-
|
1207 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_6_26 {
|
1208 |
-
background-position: -1045px 0;
|
1209 |
-
}
|
1210 |
-
|
1211 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_1 {
|
1212 |
-
background-position: 0 -444px;
|
1213 |
-
}
|
1214 |
-
|
1215 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_2 {
|
1216 |
-
background-position: -60px -444px;
|
1217 |
-
}
|
1218 |
-
|
1219 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_3 {
|
1220 |
-
background-position: -118px -444px;
|
1221 |
-
}
|
1222 |
-
|
1223 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_4 {
|
1224 |
-
background-position: -176px -444px;
|
1225 |
-
}
|
1226 |
-
|
1227 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_5 {
|
1228 |
-
background-position: -235px -444px;
|
1229 |
-
}
|
1230 |
-
|
1231 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_6 {
|
1232 |
-
background-position: -293px -444px;
|
1233 |
-
}
|
1234 |
-
|
1235 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_7 {
|
1236 |
-
background-position: -350px -444px;
|
1237 |
-
}
|
1238 |
-
|
1239 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_8 {
|
1240 |
-
background-position: -409px -444px;
|
1241 |
-
}
|
1242 |
-
|
1243 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_9 {
|
1244 |
-
background-position: -466px -444px;
|
1245 |
-
}
|
1246 |
-
|
1247 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_10 {
|
1248 |
-
background-position: -526px -444px;
|
1249 |
-
}
|
1250 |
-
|
1251 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_11 {
|
1252 |
-
background-position: -711px -444px;
|
1253 |
-
}
|
1254 |
-
|
1255 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_22 {
|
1256 |
-
background-position: -773px -444px;
|
1257 |
-
}
|
1258 |
-
|
1259 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_23 {
|
1260 |
-
background-position: -838px -444px;
|
1261 |
-
}
|
1262 |
-
|
1263 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_24 {
|
1264 |
-
background-position: -909px -444px;
|
1265 |
-
}
|
1266 |
-
|
1267 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_25 {
|
1268 |
-
background-position: -977px -444px;
|
1269 |
-
}
|
1270 |
-
|
1271 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_7_26 {
|
1272 |
-
background-position: -1045px 0;
|
1273 |
-
}
|
1274 |
-
|
1275 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_1 {
|
1276 |
-
background-position: 0 -518px;
|
1277 |
-
}
|
1278 |
-
|
1279 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_2 {
|
1280 |
-
background-position: -60px -518px;
|
1281 |
-
}
|
1282 |
-
|
1283 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_3 {
|
1284 |
-
background-position: -118px -518px;
|
1285 |
-
}
|
1286 |
-
|
1287 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_4 {
|
1288 |
-
background-position: -176px -518px;
|
1289 |
-
}
|
1290 |
-
|
1291 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_5 {
|
1292 |
-
background-position: -235px -518px;
|
1293 |
-
}
|
1294 |
-
|
1295 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_6 {
|
1296 |
-
background-position: -293px -518px;
|
1297 |
-
}
|
1298 |
-
|
1299 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_7 {
|
1300 |
-
background-position: -350px -518px;
|
1301 |
-
}
|
1302 |
-
|
1303 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_8 {
|
1304 |
-
background-position: -409px -518px;
|
1305 |
-
}
|
1306 |
-
|
1307 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_9 {
|
1308 |
-
background-position: -467px -518px;
|
1309 |
-
}
|
1310 |
-
|
1311 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_10 {
|
1312 |
-
background-position: -526px -518px;
|
1313 |
-
}
|
1314 |
-
|
1315 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_11 {
|
1316 |
-
background-position: -711px -518px;
|
1317 |
-
}
|
1318 |
-
|
1319 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_22 {
|
1320 |
-
background-position: -773px -518px;
|
1321 |
-
}
|
1322 |
-
|
1323 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_23 {
|
1324 |
-
background-position: -838px -518px;
|
1325 |
-
}
|
1326 |
-
|
1327 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_24 {
|
1328 |
-
background-position: -909px -518px;
|
1329 |
-
}
|
1330 |
-
|
1331 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_25 {
|
1332 |
-
background-position: -977px -518px;
|
1333 |
-
}
|
1334 |
-
|
1335 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_8_26 {
|
1336 |
-
background-position: -1045px 0;
|
1337 |
-
}
|
1338 |
-
|
1339 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_1 {
|
1340 |
-
background-position: 0 -592px;
|
1341 |
-
}
|
1342 |
-
|
1343 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_2 {
|
1344 |
-
background-position: -60px -592px;
|
1345 |
-
}
|
1346 |
-
|
1347 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_3 {
|
1348 |
-
background-position: -118px -592px;
|
1349 |
-
}
|
1350 |
-
|
1351 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_4 {
|
1352 |
-
background-position: -176px -592px;
|
1353 |
-
}
|
1354 |
-
|
1355 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_5 {
|
1356 |
-
background-position: -235px -592px;
|
1357 |
-
}
|
1358 |
-
|
1359 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_6 {
|
1360 |
-
background-position: -293px -592px;
|
1361 |
-
}
|
1362 |
-
|
1363 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_7 {
|
1364 |
-
background-position: -350px -592px;
|
1365 |
-
}
|
1366 |
-
|
1367 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_8 {
|
1368 |
-
background-position: -409px -592px;
|
1369 |
-
}
|
1370 |
-
|
1371 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_9 {
|
1372 |
-
background-position: -467px -592px;
|
1373 |
-
}
|
1374 |
-
|
1375 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_10 {
|
1376 |
-
background-position: -526px -592px;
|
1377 |
-
}
|
1378 |
-
|
1379 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_11 {
|
1380 |
-
background-position: -711px -592px;
|
1381 |
-
}
|
1382 |
-
|
1383 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_22 {
|
1384 |
-
background-position: -773px -592px;
|
1385 |
-
}
|
1386 |
-
|
1387 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_23 {
|
1388 |
-
background-position: -838px -592px;
|
1389 |
-
}
|
1390 |
-
|
1391 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_24 {
|
1392 |
-
background-position: -909px -592px;
|
1393 |
-
}
|
1394 |
-
|
1395 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_25 {
|
1396 |
-
background-position: -977px -592px;
|
1397 |
-
}
|
1398 |
-
|
1399 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_9_26 {
|
1400 |
-
background-position: -1045px 0;
|
1401 |
-
}
|
1402 |
-
|
1403 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_1 {
|
1404 |
-
background-position: 0 -666px;
|
1405 |
-
}
|
1406 |
-
|
1407 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_2 {
|
1408 |
-
background-position: -60px -666px;
|
1409 |
-
}
|
1410 |
-
|
1411 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_3 {
|
1412 |
-
background-position: -118px -666px;
|
1413 |
-
}
|
1414 |
-
|
1415 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_4 {
|
1416 |
-
background-position: -176px -666px;
|
1417 |
-
}
|
1418 |
-
|
1419 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_5 {
|
1420 |
-
background-position: -235px -666px;
|
1421 |
-
}
|
1422 |
-
|
1423 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_6 {
|
1424 |
-
background-position: -293px -666px;
|
1425 |
-
}
|
1426 |
-
|
1427 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_7 {
|
1428 |
-
background-position: -350px -666px;
|
1429 |
-
}
|
1430 |
-
|
1431 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_8 {
|
1432 |
-
background-position: -409px -666px;
|
1433 |
-
}
|
1434 |
-
|
1435 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_9 {
|
1436 |
-
background-position: -467px -666px;
|
1437 |
-
}
|
1438 |
-
|
1439 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_10 {
|
1440 |
-
background-position: -526px -666px;
|
1441 |
-
}
|
1442 |
-
|
1443 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_11 {
|
1444 |
-
background-position: -711px -666px;
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_22 {
|
1448 |
-
background-position: -773px -666px;
|
1449 |
-
}
|
1450 |
-
|
1451 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_23 {
|
1452 |
-
background-position: -838px -666px;
|
1453 |
-
}
|
1454 |
-
|
1455 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_24 {
|
1456 |
-
background-position: -909px -666px;
|
1457 |
-
}
|
1458 |
-
|
1459 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_25 {
|
1460 |
-
background-position: -977px -666px;
|
1461 |
-
}
|
1462 |
-
|
1463 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_10_26 {
|
1464 |
-
background-position: -1045px 0;
|
1465 |
-
}
|
1466 |
-
|
1467 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_1 {
|
1468 |
-
background-position: 0 -740px;
|
1469 |
-
}
|
1470 |
-
|
1471 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_2 {
|
1472 |
-
background-position: -60px -740px;
|
1473 |
-
}
|
1474 |
-
|
1475 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_3 {
|
1476 |
-
background-position: -118px -740px;
|
1477 |
-
}
|
1478 |
-
|
1479 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_4 {
|
1480 |
-
background-position: -176px -740px;
|
1481 |
-
}
|
1482 |
-
|
1483 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_5 {
|
1484 |
-
background-position: -235px -740px;
|
1485 |
-
}
|
1486 |
-
|
1487 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_6 {
|
1488 |
-
background-position: -293px -740px;
|
1489 |
-
}
|
1490 |
-
|
1491 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_7 {
|
1492 |
-
background-position: -350px -740px;
|
1493 |
-
}
|
1494 |
-
|
1495 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_8 {
|
1496 |
-
background-position: -409px -740px;
|
1497 |
-
}
|
1498 |
-
|
1499 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_9 {
|
1500 |
-
background-position: -467px -740px;
|
1501 |
-
}
|
1502 |
-
|
1503 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_10 {
|
1504 |
-
background-position: -526px -740px;
|
1505 |
-
}
|
1506 |
-
|
1507 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_11 {
|
1508 |
-
background-position: -711px -740px;
|
1509 |
-
}
|
1510 |
-
|
1511 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_22 {
|
1512 |
-
background-position: -773px -740px;
|
1513 |
-
}
|
1514 |
-
|
1515 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_23 {
|
1516 |
-
background-position: -838px -740px;
|
1517 |
-
}
|
1518 |
-
|
1519 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_24 {
|
1520 |
-
background-position: -909px -740px;
|
1521 |
-
}
|
1522 |
-
|
1523 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_25 {
|
1524 |
-
background-position: -977px -740px;
|
1525 |
-
}
|
1526 |
-
|
1527 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_11_26 {
|
1528 |
-
background-position: -1045px 0;
|
1529 |
-
}
|
1530 |
-
|
1531 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_1 {
|
1532 |
-
background-position: 0 -814px;
|
1533 |
-
}
|
1534 |
-
|
1535 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_2 {
|
1536 |
-
background-position: -60px -814px;
|
1537 |
-
}
|
1538 |
-
|
1539 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_3 {
|
1540 |
-
background-position: -118px -814px;
|
1541 |
-
}
|
1542 |
-
|
1543 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_4 {
|
1544 |
-
background-position: -176px -814px;
|
1545 |
-
}
|
1546 |
-
|
1547 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_5 {
|
1548 |
-
background-position: -235px -814px;
|
1549 |
-
}
|
1550 |
-
|
1551 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_6 {
|
1552 |
-
background-position: -293px -814px;
|
1553 |
-
}
|
1554 |
-
|
1555 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_7 {
|
1556 |
-
background-position: -350px -814px;
|
1557 |
-
}
|
1558 |
-
|
1559 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_8 {
|
1560 |
-
background-position: -409px -814px;
|
1561 |
-
}
|
1562 |
-
|
1563 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_9 {
|
1564 |
-
background-position: -467px -814px;
|
1565 |
-
}
|
1566 |
-
|
1567 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_10 {
|
1568 |
-
background-position: -526px -814px;
|
1569 |
-
}
|
1570 |
-
|
1571 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_11 {
|
1572 |
-
background-position: -711px -814px;
|
1573 |
-
}
|
1574 |
-
|
1575 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_22 {
|
1576 |
-
background-position: -773px -814px;
|
1577 |
-
}
|
1578 |
-
|
1579 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_23 {
|
1580 |
-
background-position: -838px -814px;
|
1581 |
-
}
|
1582 |
-
|
1583 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_24 {
|
1584 |
-
background-position: -909px -814px;
|
1585 |
-
}
|
1586 |
-
|
1587 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_25 {
|
1588 |
-
background-position: -977px -814px;
|
1589 |
-
}
|
1590 |
-
|
1591 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_12_26 {
|
1592 |
-
background-position: -1045px 0;
|
1593 |
-
}
|
1594 |
-
|
1595 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_1 {
|
1596 |
-
background-position: 0 -888px;
|
1597 |
-
}
|
1598 |
-
|
1599 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_2 {
|
1600 |
-
background-position: -60px -888px;
|
1601 |
-
}
|
1602 |
-
|
1603 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_3 {
|
1604 |
-
background-position: -118px -888px;
|
1605 |
-
}
|
1606 |
-
|
1607 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_4 {
|
1608 |
-
background-position: -176px -888px;
|
1609 |
-
}
|
1610 |
-
|
1611 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_5 {
|
1612 |
-
background-position: -235px -888px;
|
1613 |
-
}
|
1614 |
-
|
1615 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_6 {
|
1616 |
-
background-position: -293px -888px;
|
1617 |
-
}
|
1618 |
-
|
1619 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_7 {
|
1620 |
-
background-position: -350px -888px;
|
1621 |
-
}
|
1622 |
-
|
1623 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_8 {
|
1624 |
-
background-position: -409px -888px;
|
1625 |
-
}
|
1626 |
-
|
1627 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_9 {
|
1628 |
-
background-position: -467px -888px;
|
1629 |
-
}
|
1630 |
-
|
1631 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_10 {
|
1632 |
-
background-position: -526px -888px;
|
1633 |
-
}
|
1634 |
-
|
1635 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_11 {
|
1636 |
-
background-position: -711px -888px;
|
1637 |
-
}
|
1638 |
-
|
1639 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_22 {
|
1640 |
-
background-position: -773px -888px;
|
1641 |
-
}
|
1642 |
-
|
1643 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_23 {
|
1644 |
-
background-position: -838px -888px;
|
1645 |
-
}
|
1646 |
-
|
1647 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_24 {
|
1648 |
-
background-position: -909px -888px;
|
1649 |
-
}
|
1650 |
-
|
1651 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_25 {
|
1652 |
-
background-position: -977px -888px;
|
1653 |
-
}
|
1654 |
-
|
1655 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_13_26 {
|
1656 |
-
background-position: -1045px 0;
|
1657 |
-
}
|
1658 |
-
|
1659 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_1 {
|
1660 |
-
background-position: 0 -962px;
|
1661 |
-
}
|
1662 |
-
|
1663 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_2 {
|
1664 |
-
background-position: -60px -962px;
|
1665 |
-
}
|
1666 |
-
|
1667 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_3 {
|
1668 |
-
background-position: -118px -962px;
|
1669 |
-
}
|
1670 |
-
|
1671 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_4 {
|
1672 |
-
background-position: -176px -962px;
|
1673 |
-
}
|
1674 |
-
|
1675 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_5 {
|
1676 |
-
background-position: -235px -962px;
|
1677 |
-
}
|
1678 |
-
|
1679 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_6 {
|
1680 |
-
background-position: -293px -962px;
|
1681 |
-
}
|
1682 |
-
|
1683 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_7 {
|
1684 |
-
background-position: -350px -962px;
|
1685 |
-
}
|
1686 |
-
|
1687 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_8 {
|
1688 |
-
background-position: -409px -962px;
|
1689 |
-
}
|
1690 |
-
|
1691 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_9 {
|
1692 |
-
background-position: -467px -962px;
|
1693 |
-
}
|
1694 |
-
|
1695 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_10 {
|
1696 |
-
background-position: -526px -962px;
|
1697 |
-
}
|
1698 |
-
|
1699 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_11 {
|
1700 |
-
background-position: -711px -962px;
|
1701 |
-
}
|
1702 |
-
|
1703 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_22 {
|
1704 |
-
background-position: -773px -962px;
|
1705 |
-
}
|
1706 |
-
|
1707 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_23 {
|
1708 |
-
background-position: -838px -962px;
|
1709 |
-
}
|
1710 |
-
|
1711 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_24 {
|
1712 |
-
background-position: -909px -962px;
|
1713 |
-
}
|
1714 |
-
|
1715 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_25 {
|
1716 |
-
background-position: -977px -962px;
|
1717 |
-
}
|
1718 |
-
|
1719 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_14_26 {
|
1720 |
-
background-position: -1045px 0;
|
1721 |
-
}
|
1722 |
-
|
1723 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_1 {
|
1724 |
-
background-position: 0 -1036px;
|
1725 |
-
}
|
1726 |
-
|
1727 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_2 {
|
1728 |
-
background-position: -60px -1036px;
|
1729 |
-
}
|
1730 |
-
|
1731 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_3 {
|
1732 |
-
background-position: -118px -1036px;
|
1733 |
-
}
|
1734 |
-
|
1735 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_4 {
|
1736 |
-
background-position: -176px -1036px;
|
1737 |
-
}
|
1738 |
-
|
1739 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_5 {
|
1740 |
-
background-position: -235px -1036px;
|
1741 |
-
}
|
1742 |
-
|
1743 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_6 {
|
1744 |
-
background-position: -293px -1036px;
|
1745 |
-
}
|
1746 |
-
|
1747 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_7 {
|
1748 |
-
background-position: -350px -1036px;
|
1749 |
-
}
|
1750 |
-
|
1751 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_8 {
|
1752 |
-
background-position: -409px -1036px;
|
1753 |
-
}
|
1754 |
-
|
1755 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_9 {
|
1756 |
-
background-position: -467px -1036px;
|
1757 |
-
}
|
1758 |
-
|
1759 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_10 {
|
1760 |
-
background-position: -526px -1036px;
|
1761 |
-
}
|
1762 |
-
|
1763 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_11 {
|
1764 |
-
background-position: -711px -1036px;
|
1765 |
-
}
|
1766 |
-
|
1767 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_22 {
|
1768 |
-
background-position: -773px -1036px;
|
1769 |
-
}
|
1770 |
-
|
1771 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_23 {
|
1772 |
-
background-position: -838px -1036px;
|
1773 |
-
}
|
1774 |
-
|
1775 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_24 {
|
1776 |
-
background-position: -909px -1036px;
|
1777 |
-
}
|
1778 |
-
|
1779 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_25 {
|
1780 |
-
background-position: -977px -1036px;
|
1781 |
-
}
|
1782 |
-
|
1783 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_15_26 {
|
1784 |
-
background-position: -1045px 0;
|
1785 |
-
}
|
1786 |
-
|
1787 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_1 {
|
1788 |
-
background-position: 0 -1109px;
|
1789 |
-
}
|
1790 |
-
|
1791 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_2 {
|
1792 |
-
background-position: -60px -1109px;
|
1793 |
-
}
|
1794 |
-
|
1795 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_3 {
|
1796 |
-
background-position: -118px -1109px;
|
1797 |
-
}
|
1798 |
-
|
1799 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_4 {
|
1800 |
-
background-position: -176px -1109px;
|
1801 |
-
}
|
1802 |
-
|
1803 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_5 {
|
1804 |
-
background-position: -235px -1109px;
|
1805 |
-
}
|
1806 |
-
|
1807 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_6 {
|
1808 |
-
background-position: -293px -1109px;
|
1809 |
-
}
|
1810 |
-
|
1811 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_7 {
|
1812 |
-
background-position: -350px -1109px;
|
1813 |
-
}
|
1814 |
-
|
1815 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_8 {
|
1816 |
-
background-position: -409px -1109px;
|
1817 |
-
}
|
1818 |
-
|
1819 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_9 {
|
1820 |
-
background-position: -467px -1109px;
|
1821 |
-
}
|
1822 |
-
|
1823 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_10 {
|
1824 |
-
background-position: -526px -1109px;
|
1825 |
-
}
|
1826 |
-
|
1827 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_11 {
|
1828 |
-
background-position: -711px -1109px;
|
1829 |
-
}
|
1830 |
-
|
1831 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_22 {
|
1832 |
-
background-position: -773px -1109px;
|
1833 |
-
}
|
1834 |
-
|
1835 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_23 {
|
1836 |
-
background-position: -838px -1109px;
|
1837 |
-
}
|
1838 |
-
|
1839 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_24 {
|
1840 |
-
background-position: -909px -1109px;
|
1841 |
-
}
|
1842 |
-
|
1843 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_25 {
|
1844 |
-
background-position: -977px -1109px;
|
1845 |
-
}
|
1846 |
-
|
1847 |
-
.sfsiplus_icns_tab_3 .sfsiplus_row_16_26 {
|
1848 |
-
background-position: -1045px 0;
|
1849 |
-
}
|
1850 |
-
|
1851 |
-
/*Admin menu*/
|
1852 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options div.wp-menu-image {
|
1853 |
-
display: none;
|
1854 |
-
}
|
1855 |
-
|
1856 |
-
#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options {
|
1857 |
-
padding: 0 0 0 38px;
|
1858 |
-
font-family: helveticabold;
|
1859 |
-
}
|
1860 |
-
|
1861 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options {
|
1862 |
-
color: #e12522;
|
1863 |
-
transition: 0s;
|
1864 |
-
background: url(images/left_log_icn.png) 6px 15px no-repeat #000;
|
1865 |
-
background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
|
1866 |
-
color: #fafafa;
|
1867 |
-
}
|
1868 |
-
|
1869 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options:hover {
|
1870 |
-
background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
|
1871 |
-
color: #fafafa;
|
1872 |
-
}
|
1873 |
-
|
1874 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options a.wp-has-current-submenu,
|
1875 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options a.wp-has-current-submenu:hover {
|
1876 |
-
background: url(images/left_log_icn.png) 6px 15px no-repeat #000000;
|
1877 |
-
/*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
|
1878 |
-
color: #e12522;
|
1879 |
-
}
|
1880 |
-
|
1881 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options a.current,
|
1882 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options a.current:hover {
|
1883 |
-
background: url(images/left_log_icn.png) 6px 15px no-repeat #000000 !important;
|
1884 |
-
/*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
|
1885 |
-
color: #e12522 !important;
|
1886 |
-
}
|
1887 |
-
|
1888 |
-
/*tab 9 css*/
|
1889 |
-
.tab9 .sfsi_plus_tab8_container {
|
1890 |
-
width: 100%;
|
1891 |
-
float: left;
|
1892 |
-
}
|
1893 |
-
|
1894 |
-
.tab9 .sfsi_plus_tab8_subcontainer {
|
1895 |
-
float: left;
|
1896 |
-
padding: 20px 0;
|
1897 |
-
width: 100%;
|
1898 |
-
}
|
1899 |
-
|
1900 |
-
.tab9 h3.sfsi_plus_section_title {
|
1901 |
-
font-weight: bold;
|
1902 |
-
}
|
1903 |
-
|
1904 |
-
.tab9 .like_pop_box {
|
1905 |
-
width: 100%;
|
1906 |
-
margin: 35px auto auto;
|
1907 |
-
position: relative;
|
1908 |
-
text-align: center;
|
1909 |
-
}
|
1910 |
-
|
1911 |
-
.tab9 .like_pop_box h2 {
|
1912 |
-
font-family: helveticabold;
|
1913 |
-
text-align: center;
|
1914 |
-
color: #414951;
|
1915 |
-
font-size: 26px;
|
1916 |
-
}
|
1917 |
-
|
1918 |
-
.tab9 .sfsi_plus_subscribe_Popinner {
|
1919 |
-
display: inline-block;
|
1920 |
-
padding: 18px 20px;
|
1921 |
-
-webkit-box-shadow: 0 0 5px #ccc;
|
1922 |
-
border: 1px solid #ededed;
|
1923 |
-
background: #FFF;
|
1924 |
-
position: relative;
|
1925 |
-
}
|
1926 |
-
|
1927 |
-
.tab9 .sfsi_plus_subscribe_Popinner .form-overlay {
|
1928 |
-
height: 100%;
|
1929 |
-
left: 0;
|
1930 |
-
position: absolute;
|
1931 |
-
top: 0;
|
1932 |
-
width: 100%;
|
1933 |
-
}
|
1934 |
-
|
1935 |
-
.tab9 .like_pop_box .sfsi_plus_subscribe_Popinner {
|
1936 |
-
box-shadow: 0 0 5px #ccc;
|
1937 |
-
}
|
1938 |
-
|
1939 |
-
.tab9 .like_pop_box .sfsi_plus_subscribe_Popinner h5 {
|
1940 |
-
margin: 0 0 10px;
|
1941 |
-
padding: 0;
|
1942 |
-
color: #414951;
|
1943 |
-
font-size: 22px;
|
1944 |
-
text-align: center;
|
1945 |
-
}
|
1946 |
-
|
1947 |
-
.tab9 .sfsi_plus_subscribe_Popinner h5 {
|
1948 |
-
margin: 0 0 10px;
|
1949 |
-
padding: 0;
|
1950 |
-
color: #414951;
|
1951 |
-
font-size: 18px;
|
1952 |
-
text-align: center;
|
1953 |
-
}
|
1954 |
-
|
1955 |
-
.tab9 .sfsi_plus_subscription_form_field {
|
1956 |
-
float: left;
|
1957 |
-
margin: 5px 0;
|
1958 |
-
width: 100%;
|
1959 |
-
}
|
1960 |
-
|
1961 |
-
.tab9 .sfsi_plus_subscription_form_field input {
|
1962 |
-
padding: 10px 0px;
|
1963 |
-
text-align: center;
|
1964 |
-
width: 100%;
|
1965 |
-
}
|
1966 |
-
|
1967 |
-
.tab9 .sfsi_plus_tab8_subcontainer label.sfsi_plus_label_text {
|
1968 |
-
float: left;
|
1969 |
-
margin: 10px 0;
|
1970 |
-
width: 100%;
|
1971 |
-
}
|
1972 |
-
|
1973 |
-
.tab9 ul.sfsi_plus_form_info {
|
1974 |
-
list-style: none !important;
|
1975 |
-
margin-left: 32px;
|
1976 |
-
}
|
1977 |
-
|
1978 |
-
.tab9 ul.sfsi_plus_form_info li {
|
1979 |
-
margin: 3px 0;
|
1980 |
-
}
|
1981 |
-
|
1982 |
-
.tab9 .sfsi_plus_subscription_html {
|
1983 |
-
background-color: #e5e5e5;
|
1984 |
-
float: left;
|
1985 |
-
margin: 12px 0 0 30px;
|
1986 |
-
width: 90%;
|
1987 |
-
}
|
1988 |
-
|
1989 |
-
.tab9 .sfsi_plus_seprater {
|
1990 |
-
border-bottom: 1px solid #ccc;
|
1991 |
-
}
|
1992 |
-
|
1993 |
-
.tab9 .sfsi_plus_tab8_subcontainer h5.sfsi_plus_section_subtitle {
|
1994 |
-
float: left;
|
1995 |
-
font-size: 18px;
|
1996 |
-
margin: 5px 0;
|
1997 |
-
width: 100%;
|
1998 |
-
}
|
1999 |
-
|
2000 |
-
.tab9 .sfsi_plus_left_container {
|
2001 |
-
margin-top: 30px;
|
2002 |
-
text-align: center;
|
2003 |
-
width: 24%;
|
2004 |
-
display: inline-block;
|
2005 |
-
}
|
2006 |
-
|
2007 |
-
.tab9 .sfsi_plus_right_container {
|
2008 |
-
display: inline-block;
|
2009 |
-
margin-top: 30px;
|
2010 |
-
padding: 0 20px;
|
2011 |
-
vertical-align: top;
|
2012 |
-
width: 72%;
|
2013 |
-
}
|
2014 |
-
|
2015 |
-
.tab9 .row_tab {
|
2016 |
-
display: inline-block;
|
2017 |
-
margin-bottom: 30px;
|
2018 |
-
width: 100%;
|
2019 |
-
}
|
2020 |
-
|
2021 |
-
.tab9 .row_tab label {
|
2022 |
-
color: #5a6570;
|
2023 |
-
font-size: 16px;
|
2024 |
-
}
|
2025 |
-
|
2026 |
-
.tab9 .row_tab div.sfsi_plus_field {
|
2027 |
-
display: inline-block;
|
2028 |
-
vertical-align: middle;
|
2029 |
-
width: auto;
|
2030 |
-
margin-right: 25px;
|
2031 |
-
}
|
2032 |
-
|
2033 |
-
.tab9 .color_box {
|
2034 |
-
width: 40px;
|
2035 |
-
height: 34px;
|
2036 |
-
border: 3px solid #fff;
|
2037 |
-
box-shadow: 1px 2px 2px #ccc;
|
2038 |
-
float: right;
|
2039 |
-
position: relative;
|
2040 |
-
margin-left: 13px;
|
2041 |
-
}
|
2042 |
-
|
2043 |
-
.tab9 .color_box1 {
|
2044 |
-
width: 100%;
|
2045 |
-
height: 34px;
|
2046 |
-
background: #5a6570;
|
2047 |
-
box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
|
2048 |
-
}
|
2049 |
-
|
2050 |
-
.tab9 .corner {
|
2051 |
-
width: 10px;
|
2052 |
-
height: 10px;
|
2053 |
-
background: #fff;
|
2054 |
-
position: absolute;
|
2055 |
-
right: 0;
|
2056 |
-
bottom: 0;
|
2057 |
-
}
|
2058 |
-
|
2059 |
-
.tab9 .sfsi_plus_right_container label {
|
2060 |
-
color: #5a6570;
|
2061 |
-
font-size: 18px;
|
2062 |
-
}
|
2063 |
-
|
2064 |
-
.tab9 label.sfsi_plus_heding {
|
2065 |
-
display: inline-block;
|
2066 |
-
font-weight: bold;
|
2067 |
-
padding-top: 10px;
|
2068 |
-
width: 303px;
|
2069 |
-
}
|
2070 |
-
|
2071 |
-
.tab9 .border_shadow {
|
2072 |
-
display: inline-block;
|
2073 |
-
vertical-align: top;
|
2074 |
-
}
|
2075 |
-
|
2076 |
-
.tab9 .border_shadow li {
|
2077 |
-
display: inline-block;
|
2078 |
-
vertical-align: top;
|
2079 |
-
padding-right: 20px;
|
2080 |
-
}
|
2081 |
-
|
2082 |
-
.tab9 .border_shadow li span {
|
2083 |
-
vertical-align: middle;
|
2084 |
-
}
|
2085 |
-
|
2086 |
-
.tab9 .border_shadow .radio {
|
2087 |
-
margin-right: 5px;
|
2088 |
-
}
|
2089 |
-
|
2090 |
-
.tab9 .sfsi_plus_field .rec-inp {
|
2091 |
-
background: #e5e5e5 none repeat scroll 0 0;
|
2092 |
-
height: 44px;
|
2093 |
-
text-align: center;
|
2094 |
-
width: 54px;
|
2095 |
-
}
|
2096 |
-
|
2097 |
-
.tab9 .pix {
|
2098 |
-
color: #5a6570;
|
2099 |
-
font-size: 18px;
|
2100 |
-
padding-left: 10px;
|
2101 |
-
vertical-align: middle;
|
2102 |
-
}
|
2103 |
-
|
2104 |
-
.tab9 .sfsi_plus_heding.autowidth {
|
2105 |
-
width: auto;
|
2106 |
-
margin-right: 15px;
|
2107 |
-
}
|
2108 |
-
|
2109 |
-
.tab9 .sfsi_plus_heding.fixwidth {
|
2110 |
-
width: 80px;
|
2111 |
-
}
|
2112 |
-
|
2113 |
-
.tab9 .small {
|
2114 |
-
background-color: #e5e5e5;
|
2115 |
-
height: 44px;
|
2116 |
-
width: 200px;
|
2117 |
-
}
|
2118 |
-
|
2119 |
-
.tab9 .small.new-inp {
|
2120 |
-
background-color: #e5e5e5;
|
2121 |
-
height: 44px;
|
2122 |
-
width: 277px;
|
2123 |
-
}
|
2124 |
-
|
2125 |
-
.tab9 .small.color-code {
|
2126 |
-
width: 138px !important;
|
2127 |
-
}
|
2128 |
-
|
2129 |
-
.tab9 .select-same {
|
2130 |
-
border: 1px solid #d6d6d6;
|
2131 |
-
height: 47px !important;
|
2132 |
-
width: 171px;
|
2133 |
-
appearance: none;
|
2134 |
-
-moz-appearance: none;
|
2135 |
-
-webkit-appearance: none;
|
2136 |
-
background-image: url(images/select-arrow.png);
|
2137 |
-
background-repeat: no-repeat;
|
2138 |
-
background-position: right 15px center;
|
2139 |
-
}
|
2140 |
-
|
2141 |
-
.tab9 .sfsi_plus_same_width {
|
2142 |
-
display: inline-block;
|
2143 |
-
width: 100px !important;
|
2144 |
-
}
|
2145 |
-
|
2146 |
-
.disabled_checkbox .sfsiplus_right_info .sfsiplus_toglepstpgspn {
|
2147 |
-
color: rgba(0, 0, 0, .3);
|
2148 |
-
}
|
2149 |
-
|
2150 |
-
.sfsi_plus_subscription_html xmp {
|
2151 |
-
display: block;
|
2152 |
-
padding: 0 10px;
|
2153 |
-
white-space: pre-line;
|
2154 |
-
word-wrap: break-word;
|
2155 |
-
}
|
2156 |
-
|
2157 |
-
.sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li {
|
2158 |
-
float: left;
|
2159 |
-
width: 300px !important;
|
2160 |
-
max-width: 300px !important;
|
2161 |
-
min-width: 300px !important;
|
2162 |
-
}
|
2163 |
-
|
2164 |
-
.sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec label {
|
2165 |
-
font-size: 17px;
|
2166 |
-
padding-right: 20px;
|
2167 |
-
width: 65px !important;
|
2168 |
-
display: inline-block;
|
2169 |
-
}
|
2170 |
-
|
2171 |
-
.sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li input {
|
2172 |
-
background-color: #dedede;
|
2173 |
-
border: medium none;
|
2174 |
-
box-shadow: none;
|
2175 |
-
padding: 14px 8px;
|
2176 |
-
width: 80px;
|
2177 |
-
}
|
2178 |
-
|
2179 |
-
.sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li ins {
|
2180 |
-
font-size: 17px;
|
2181 |
-
font-weight: 400;
|
2182 |
-
margin-left: 15px;
|
2183 |
-
text-decoration: none;
|
2184 |
-
}
|
2185 |
-
|
2186 |
-
@media (max-width:1160px) {
|
2187 |
-
.sfsi_plus_subscription_html xmp {
|
2188 |
-
display: block;
|
2189 |
-
padding: 0 10px;
|
2190 |
-
white-space: pre-line;
|
2191 |
-
word-wrap: break-word;
|
2192 |
-
}
|
2193 |
-
}
|
2194 |
-
|
2195 |
-
@media (max-width:1350px) {
|
2196 |
-
.tab9 .sfsi_plus_left_container {
|
2197 |
-
width: 100% !important;
|
2198 |
-
}
|
2199 |
-
|
2200 |
-
.tab9 .sfsi_plus_right_container {
|
2201 |
-
width: 100%;
|
2202 |
-
}
|
2203 |
-
|
2204 |
-
.tab9 .border_shadow {
|
2205 |
-
margin-top: 10px;
|
2206 |
-
}
|
2207 |
-
|
2208 |
-
.tab9 .row_tab div.sfsi_plus_field {
|
2209 |
-
margin-bottom: 10px;
|
2210 |
-
}
|
2211 |
-
}
|
2212 |
-
|
2213 |
-
@media (max-width:770px) {
|
2214 |
-
#sfsi_plus_form_heading_fontstyle {
|
2215 |
-
margin-left: 19px !important;
|
2216 |
-
margin-top: 10px !important;
|
2217 |
-
}
|
2218 |
-
}
|
2219 |
-
|
2220 |
-
/*poonam Style*/
|
2221 |
-
.feedClaiming-overlay h1 {
|
2222 |
-
font-size: 22px !important;
|
2223 |
-
font-weight: bolder !important;
|
2224 |
-
margin-top: 7px !important;
|
2225 |
-
}
|
2226 |
-
|
2227 |
-
.feedClaiming-overlay input[type="email"] {
|
2228 |
-
font-size: 16px;
|
2229 |
-
margin: 26px 0 0;
|
2230 |
-
padding: 10px 0;
|
2231 |
-
text-align: center;
|
2232 |
-
width: 100%;
|
2233 |
-
color: #bebebe !important;
|
2234 |
-
box-shadow: none;
|
2235 |
-
}
|
2236 |
-
|
2237 |
-
.feedClaiming-overlay input[type="email"]::-webkit-input-placeholder {
|
2238 |
-
color: #bebebe !important;
|
2239 |
-
}
|
2240 |
-
|
2241 |
-
.feedClaiming-overlay input[type="email"]:-moz-placeholder {
|
2242 |
-
/* Firefox 18- */
|
2243 |
-
color: #bebebe !important;
|
2244 |
-
}
|
2245 |
-
|
2246 |
-
.feedClaiming-overlay input[type="email"]::-moz-placeholder {
|
2247 |
-
/* Firefox 19+ */
|
2248 |
-
color: #bebebe !important;
|
2249 |
-
}
|
2250 |
-
|
2251 |
-
.feedClaiming-overlay input[type="email"]:-ms-input-placeholder {
|
2252 |
-
color: #bebebe !important;
|
2253 |
-
}
|
2254 |
-
|
2255 |
-
.feedClaiming-overlay .save_button {
|
2256 |
-
padding: 0 !important;
|
2257 |
-
width: 100%;
|
2258 |
-
}
|
2259 |
-
|
2260 |
-
.feedClaiming-overlay .save_button a#getMeFullAccess {
|
2261 |
-
border-radius: 4px;
|
2262 |
-
font-size: 18px;
|
2263 |
-
font-weight: bolder;
|
2264 |
-
}
|
2265 |
-
|
2266 |
-
.feedClaiming-overlay .sfsicloseBtn {
|
2267 |
-
right: 8px !important;
|
2268 |
-
top: 8px !important;
|
2269 |
-
}
|
2270 |
-
|
2271 |
-
.feedClaiming-overlay p {
|
2272 |
-
text-align: center !important;
|
2273 |
-
font-size: 12px !important;
|
2274 |
-
line-height: 23px !important;
|
2275 |
-
padding: 18px 0 0 !important;
|
2276 |
-
color: #bebebe !important;
|
2277 |
-
}
|
2278 |
-
|
2279 |
-
.feedClaiming-overlay p a {
|
2280 |
-
display: inline-block;
|
2281 |
-
font-size: 12px;
|
2282 |
-
margin: 0;
|
2283 |
-
padding: 0;
|
2284 |
-
width: auto;
|
2285 |
-
color: #274da3 !important;
|
2286 |
-
}
|
2287 |
-
|
2288 |
-
.feedClaiming-overlay .pop_up_box {
|
2289 |
-
padding: 25px 30px !important;
|
2290 |
-
width: 435px !important;
|
2291 |
-
min-height: 220px;
|
2292 |
-
}
|
2293 |
-
|
2294 |
-
.follows-btn {
|
2295 |
-
float: left;
|
2296 |
-
width: 25%;
|
2297 |
-
}
|
2298 |
-
|
2299 |
-
.preview-btn {
|
2300 |
-
float: left;
|
2301 |
-
width: 10%;
|
2302 |
-
}
|
2303 |
-
|
2304 |
-
.social-img-link {
|
2305 |
-
float: left;
|
2306 |
-
width: 15%;
|
2307 |
-
}
|
2308 |
-
|
2309 |
-
.social-img-link img {
|
2310 |
-
vertical-align: middle;
|
2311 |
-
}
|
2312 |
-
|
2313 |
-
.language-field {
|
2314 |
-
float: left;
|
2315 |
-
width: 24%;
|
2316 |
-
}
|
2317 |
-
|
2318 |
-
.language-field select {
|
2319 |
-
width: 100%;
|
2320 |
-
}
|
2321 |
-
|
2322 |
-
.icons_size {
|
2323 |
-
clear: both;
|
2324 |
-
}
|
2325 |
-
|
2326 |
-
.plus_custom-img img,
|
2327 |
-
.sfsiplus_custom_section img,
|
2328 |
-
.sfsiplus_custom_iconOrder img,
|
2329 |
-
.plus_sfsi_sample_icons img {
|
2330 |
-
width: 51px;
|
2331 |
-
}
|
2332 |
-
|
2333 |
-
.cstomskins_upload span.sfsi_plus-bgimage {
|
2334 |
-
background-size: 51px 51px !important;
|
2335 |
-
}
|
2336 |
-
|
2337 |
-
/* poonam */
|
2338 |
-
.sfsi_plus_premium_brdr_box {
|
2339 |
-
box-sizing: border-box;
|
2340 |
-
}
|
2341 |
-
|
2342 |
-
.sf_si_plus_our_prmium_plugin-add,
|
2343 |
-
.sfsi_plus_prem_icons_added,
|
2344 |
-
.sfsi_plus_new_prmium_follw {
|
2345 |
-
background: #f3faf6;
|
2346 |
-
border: 1px solid #12a252;
|
2347 |
-
padding: 25px 38px 35px 40px;
|
2348 |
-
clear: both;
|
2349 |
-
}
|
2350 |
-
|
2351 |
-
.banner_custom_icon {
|
2352 |
-
margin-left: 94px !important;
|
2353 |
-
float: left;
|
2354 |
-
}
|
2355 |
-
|
2356 |
-
.banner_custom_icon p a {
|
2357 |
-
font-family: helveticabold !important
|
2358 |
-
}
|
2359 |
-
|
2360 |
-
.sf_si_plus_our_prmium_plugin-add {
|
2361 |
-
padding: 25px 38px 45px 44px;
|
2362 |
-
}
|
2363 |
-
|
2364 |
-
.sf_si_plus_default_design ul {
|
2365 |
-
padding: 0;
|
2366 |
-
margin: 0;
|
2367 |
-
}
|
2368 |
-
|
2369 |
-
.sf_si_plus_default_design ul li {
|
2370 |
-
list-style: none;
|
2371 |
-
font-size: 20px;
|
2372 |
-
color: #1a1d20;
|
2373 |
-
clear: both;
|
2374 |
-
}
|
2375 |
-
|
2376 |
-
.sf_si_plus_default_design ul li b {
|
2377 |
-
font-weight: bold;
|
2378 |
-
}
|
2379 |
-
|
2380 |
-
.sf_si_plus_default_design ul li img {
|
2381 |
-
vertical-align: middle;
|
2382 |
-
}
|
2383 |
-
|
2384 |
-
.sf_si_plus_default_design ul li h4 {
|
2385 |
-
color: #1a1d20 !important;
|
2386 |
-
font-size: 20px !important;
|
2387 |
-
font-weight: bold;
|
2388 |
-
padding-bottom: 21px !important;
|
2389 |
-
}
|
2390 |
-
|
2391 |
-
.sf_si_plus_default_design ul li h4 span {
|
2392 |
-
font-weight: normal;
|
2393 |
-
}
|
2394 |
-
|
2395 |
-
.sf_si_plus_default_design ul li b span {
|
2396 |
-
font-weight: normal !important;
|
2397 |
-
}
|
2398 |
-
|
2399 |
-
.sf_si_plus_default_design ul li {
|
2400 |
-
margin: 0 !important;
|
2401 |
-
}
|
2402 |
-
|
2403 |
-
.sf_si_plus_default_design ul li h4.sfsi_plus_second_themedTitle {
|
2404 |
-
padding-bottom: 16px !important;
|
2405 |
-
}
|
2406 |
-
|
2407 |
-
.sfsi_plus_row_table {
|
2408 |
-
clear: both;
|
2409 |
-
}
|
2410 |
-
|
2411 |
-
.sfsi_plus_first_icon_field,
|
2412 |
-
.sfsi_plus_second_icon_img {
|
2413 |
-
display: table-cell;
|
2414 |
-
vertical-align: middle;
|
2415 |
-
padding: 5px 0;
|
2416 |
-
}
|
2417 |
-
|
2418 |
-
.sfsi_plus_first_icon_field {
|
2419 |
-
width: 125px;
|
2420 |
-
}
|
2421 |
-
|
2422 |
-
.sfsi_plus_first_icon_field h2 {
|
2423 |
-
font-size: 18px !important;
|
2424 |
-
color: #1a1d20 !important;
|
2425 |
-
margin: 0 !important;
|
2426 |
-
font-weight: bold !important;
|
2427 |
-
}
|
2428 |
-
|
2429 |
-
.sfsi_plus_first_icon_field p {
|
2430 |
-
color: #1a1d20 !important;
|
2431 |
-
font-size: 12px !important;
|
2432 |
-
margin: 0 !important;
|
2433 |
-
padding: 0 !important;
|
2434 |
-
line-height: 18px !important;
|
2435 |
-
}
|
2436 |
-
|
2437 |
-
.sfsi_plus_cool_font_weight h2 {
|
2438 |
-
font-weight: normal !important;
|
2439 |
-
}
|
2440 |
-
|
2441 |
-
.sf_si_plus_prmium_head span {
|
2442 |
-
font-weight: normal;
|
2443 |
-
}
|
2444 |
-
|
2445 |
-
.sf_si_plus_prmium_head h2 {
|
2446 |
-
font-size: 26px;
|
2447 |
-
color: #000;
|
2448 |
-
font-weight: bold !important;
|
2449 |
-
padding-bottom: 13px !important;
|
2450 |
-
margin-top: 0;
|
2451 |
-
}
|
2452 |
-
|
2453 |
-
.sf_si_plus_our_prmium_plugin-add .sf_si_plus_prmium_head h2 {
|
2454 |
-
padding-bottom: 23px !important;
|
2455 |
-
}
|
2456 |
-
|
2457 |
-
.sfsi_plus_premium_row {
|
2458 |
-
clear: both;
|
2459 |
-
}
|
2460 |
-
|
2461 |
-
.sfsi_plus_prem_cmn_rowlisting {
|
2462 |
-
width: 225px;
|
2463 |
-
float: left;
|
2464 |
-
margin-top: 10px;
|
2465 |
-
margin-bottom: 1px;
|
2466 |
-
}
|
2467 |
-
|
2468 |
-
.sfsi_plus_prem_cmn_rowlisting span {
|
2469 |
-
color: #1a1d20;
|
2470 |
-
font-size: 20px;
|
2471 |
-
display: table-cell;
|
2472 |
-
vertical-align: middle;
|
2473 |
-
padding-right: 10px;
|
2474 |
-
}
|
2475 |
-
|
2476 |
-
.sfsi_mainContainer .sfsi_plus_prem_cmn_rowlisting img {
|
2477 |
-
width: 52px;
|
2478 |
-
height: 52px;
|
2479 |
-
vertical-align: middle;
|
2480 |
-
}
|
2481 |
-
|
2482 |
-
.sfsi_plus_need_another_tell_us,
|
2483 |
-
.sfsi_plus_need_another_one_link {
|
2484 |
-
clear: both;
|
2485 |
-
}
|
2486 |
-
|
2487 |
-
.sfsi_plus_need_another_one_link p {
|
2488 |
-
color: #c1c3c5;
|
2489 |
-
font-size: 18.9px !important;
|
2490 |
-
}
|
2491 |
-
|
2492 |
-
.sfsi_plus_need_another_one_link p a {
|
2493 |
-
color: #12a252 !important;
|
2494 |
-
text-decoration: none;
|
2495 |
-
}
|
2496 |
-
|
2497 |
-
.sfsi_plus_need_another_one_link {
|
2498 |
-
padding: 23px 0 20px 5px;
|
2499 |
-
}
|
2500 |
-
|
2501 |
-
.sf_si_plus_all_features_premium a,
|
2502 |
-
.sfsi_plus_need_another_tell_us a {
|
2503 |
-
color: #12a252 !important;
|
2504 |
-
font-size: 18.9px;
|
2505 |
-
font-weight: bold;
|
2506 |
-
border-bottom: 1px solid #12a252;
|
2507 |
-
text-decoration: none;
|
2508 |
-
}
|
2509 |
-
|
2510 |
-
.sfsi_plus_need_another_tell_us a {
|
2511 |
-
margin-left: 5px;
|
2512 |
-
padding-top: 25px;
|
2513 |
-
}
|
2514 |
-
|
2515 |
-
.sfsi_plus_new_prmium_follw {
|
2516 |
-
margin-top: 20px;
|
2517 |
-
display: inline-block;
|
2518 |
-
padding: 15px 75px 20px 24px;
|
2519 |
-
float: left;
|
2520 |
-
}
|
2521 |
-
|
2522 |
-
.sfsi_plus_new_prmium_follw p {
|
2523 |
-
margin: 0 !important;
|
2524 |
-
}
|
2525 |
-
|
2526 |
-
.sfsi_plus_new_prmium_follw p {
|
2527 |
-
color: #1a1d20 !important;
|
2528 |
-
font-size: 20px !important;
|
2529 |
-
font-family: helveticaregular !important;
|
2530 |
-
}
|
2531 |
-
|
2532 |
-
.sfsi_plus_new_prmium_follw p a {
|
2533 |
-
color: #12a252 !important;
|
2534 |
-
border-bottom: 1px solid #12a252;
|
2535 |
-
text-decoration: none;
|
2536 |
-
}
|
2537 |
-
|
2538 |
-
.sfsi_plus_new_prmium_follw p b {
|
2539 |
-
font-weight: bold;
|
2540 |
-
color: #1a1d20 !important;
|
2541 |
-
}
|
2542 |
-
|
2543 |
-
p.sfsi_plus_prem_plu_desc a,
|
2544 |
-
p.sfsi_plus_prem_plu_desc_define a {
|
2545 |
-
text-decoration: none !important;
|
2546 |
-
color: #00a0d2 !important;
|
2547 |
-
}
|
2548 |
-
|
2549 |
-
p.sfsi_plus_prem_plu_desc {
|
2550 |
-
font-size: 18px !important;
|
2551 |
-
}
|
2552 |
-
|
2553 |
-
p.sfsi_plus_prem_plu_desc_define {
|
2554 |
-
font-size: 18px !important;
|
2555 |
-
border-left: 0px solid transparent !important;
|
2556 |
-
}
|
2557 |
-
|
2558 |
-
.sfsi_plus_icons_prem_disc {
|
2559 |
-
float: left;
|
2560 |
-
padding-top: 20px;
|
2561 |
-
}
|
2562 |
-
|
2563 |
-
.sfsi_plus_prem_show {
|
2564 |
-
padding-top: 140px !important;
|
2565 |
-
}
|
2566 |
-
|
2567 |
-
.sfsi_plus_first_icon_more h2 {
|
2568 |
-
font-size: 18px !important;
|
2569 |
-
color: #1a1d20 !important;
|
2570 |
-
margin: 0 !important;
|
2571 |
-
padding-top: 17px !important;
|
2572 |
-
padding-bottom: 22px !important;
|
2573 |
-
}
|
2574 |
-
|
2575 |
-
.sfsi_plus_fbpaget {
|
2576 |
-
float: left !important;
|
2577 |
-
padding: 4px 0 0 0px !important;
|
2578 |
-
width: 100% !important;
|
2579 |
-
}
|
2580 |
-
|
2581 |
-
.sfsi_plus_fbpaget .sfsi_plus_facebook_count {
|
2582 |
-
width: 100% !important;
|
2583 |
-
padding: 4px 0 0 0px !important;
|
2584 |
-
}
|
2585 |
-
|
2586 |
-
.sfsi_plus_facebook_pagedeasc {
|
2587 |
-
font-size: 14px !important;
|
2588 |
-
padding: 15px 0 0 60px;
|
2589 |
-
width: 42%;
|
2590 |
-
float: right;
|
2591 |
-
line-height: 22px;
|
2592 |
-
color: #080808;
|
2593 |
-
}
|
2594 |
-
|
2595 |
-
p.sfsi_plus_instagram_shared_premium,
|
2596 |
-
p.sfsi_plus_shared_premium {
|
2597 |
-
color: #1a1d20 !important;
|
2598 |
-
font-family: helveticaregular !important;
|
2599 |
-
padding-top: 0 !important;
|
2600 |
-
}
|
2601 |
-
|
2602 |
-
p.sfsi_plus_shared_premium a,
|
2603 |
-
p.sfsi_plus_instagram_shared_premium a {
|
2604 |
-
text-decoration: none;
|
2605 |
-
color: #00a0d2 !important;
|
2606 |
-
}
|
2607 |
-
|
2608 |
-
p.sfsi_plus_shared_premium b,
|
2609 |
-
p.sfsi_plus_instagram_shared_premium b {
|
2610 |
-
font-weight: bold;
|
2611 |
-
}
|
2612 |
-
|
2613 |
-
p.sfsi_plus_instagram_shared_premium {
|
2614 |
-
float: right;
|
2615 |
-
width: 41%;
|
2616 |
-
line-height: 20px;
|
2617 |
-
color: #1f1d1d;
|
2618 |
-
font-size: 13px;
|
2619 |
-
}
|
2620 |
-
|
2621 |
-
.sfsi_plus_fb_popup_contain {
|
2622 |
-
width: 50%;
|
2623 |
-
display: inline-block;
|
2624 |
-
}
|
2625 |
-
|
2626 |
-
.sfsi_plus_icons_align_other {
|
2627 |
-
width: auto;
|
2628 |
-
font-size: 15px !important;
|
2629 |
-
}
|
2630 |
-
|
2631 |
-
/* notification css*/
|
2632 |
-
.sfsi_plus_new_notification {
|
2633 |
-
background-color: #fff;
|
2634 |
-
border: 4px dashed #00c853;
|
2635 |
-
margin-bottom: 30px;
|
2636 |
-
width: 100%;
|
2637 |
-
}
|
2638 |
-
|
2639 |
-
.sfsi_plus_new_notification_header {
|
2640 |
-
background-color: #e8faef;
|
2641 |
-
display: -webkit-box;
|
2642 |
-
display: -webkit-flex;
|
2643 |
-
display: -ms-flexbox;
|
2644 |
-
display: flex;
|
2645 |
-
-webkit-box-align: center;
|
2646 |
-
-webkit-align-items: center;
|
2647 |
-
-ms-flex-align: center;
|
2648 |
-
align-items: center;
|
2649 |
-
-webkit-box-pack: justify;
|
2650 |
-
-webkit-justify-content: space-between;
|
2651 |
-
-ms-flex-pack: justify;
|
2652 |
-
justify-content: space-between;
|
2653 |
-
padding: 10px 0 12px 0;
|
2654 |
-
}
|
2655 |
-
|
2656 |
-
.sfsi_plus_new_notification_header h1 {
|
2657 |
-
margin: 0 !important;
|
2658 |
-
color: #00c853;
|
2659 |
-
font-size: 18px;
|
2660 |
-
margin: 0 auto !important;
|
2661 |
-
font-family: Arial, Helvetica, sans-serif;
|
2662 |
-
}
|
2663 |
-
|
2664 |
-
.sfsi_plus_new_notification_header h1 a {
|
2665 |
-
margin: 0 !important;
|
2666 |
-
color: #00c853;
|
2667 |
-
font-size: 18px;
|
2668 |
-
margin: 0 auto !important;
|
2669 |
-
font-family: Arial, Helvetica, sans-serif;
|
2670 |
-
text-decoration: none;
|
2671 |
-
}
|
2672 |
-
|
2673 |
-
.sfsi_plus_new_notification_cross {
|
2674 |
-
float: right;
|
2675 |
-
font-size: 18px;
|
2676 |
-
font-weight: 700;
|
2677 |
-
line-height: 1;
|
2678 |
-
color: #00c853;
|
2679 |
-
font-family: Arial, Helvetica, sans-serif;
|
2680 |
-
margin-right: 15px;
|
2681 |
-
cursor: pointer;
|
2682 |
-
}
|
2683 |
-
|
2684 |
-
.sfsi_plus_new_notification_body {
|
2685 |
-
width: 100%;
|
2686 |
-
background-color: #fff;
|
2687 |
-
display: -webkit-box;
|
2688 |
-
display: -webkit-flex;
|
2689 |
-
display: -ms-flexbox;
|
2690 |
-
display: flex;
|
2691 |
-
-webkit-box-align: center;
|
2692 |
-
-webkit-align-items: center;
|
2693 |
-
-ms-flex-align: center;
|
2694 |
-
align-items: center;
|
2695 |
-
-webkit-box-pack: justify;
|
2696 |
-
-webkit-justify-content: space-between;
|
2697 |
-
-ms-flex-pack: justify;
|
2698 |
-
justify-content: space-between;
|
2699 |
-
}
|
2700 |
-
|
2701 |
-
.sfsi_plus_new_notification_image {
|
2702 |
-
margin: 0 20px 0px 20px;
|
2703 |
-
width: 100%;
|
2704 |
-
text-align: center;
|
2705 |
-
overflow: hidden;
|
2706 |
-
}
|
2707 |
-
|
2708 |
-
.sfsi_plus_new_notification_image img {
|
2709 |
-
width: auto;
|
2710 |
-
}
|
2711 |
-
|
2712 |
-
.sfsi_plus_new_notification_learnmore {
|
2713 |
-
float: right;
|
2714 |
-
}
|
2715 |
-
|
2716 |
-
.sfsi_plus_new_notification_learnmore {
|
2717 |
-
background-color: #00c853;
|
2718 |
-
display: block;
|
2719 |
-
text-decoration: none;
|
2720 |
-
text-align: center;
|
2721 |
-
font-size: 20px;
|
2722 |
-
font-family: Arial, Helvetica, sans-serif;
|
2723 |
-
width: 150px;
|
2724 |
-
margin-bottom: -4px;
|
2725 |
-
margin-right: -4px;
|
2726 |
-
position: relative;
|
2727 |
-
color: #fff;
|
2728 |
-
padding: 70px 10px;
|
2729 |
-
}
|
2730 |
-
|
2731 |
-
.sfsi_plus_new_notification_body_link a {
|
2732 |
-
display: block;
|
2733 |
-
text-decoration: none;
|
2734 |
-
text-align: center;
|
2735 |
-
font-size: 20px;
|
2736 |
-
font-family: Arial, Helvetica, sans-serif;
|
2737 |
-
color: #fff;
|
2738 |
-
}
|
2739 |
-
|
2740 |
-
/*Tab 4*/
|
2741 |
-
.tab4 .sfsi_plus_tokenGenerateButton {
|
2742 |
-
margin: 25px 0;
|
2743 |
-
}
|
2744 |
-
|
2745 |
-
.tab4 .sfsi_plus_tokenGenerateButton p {
|
2746 |
-
display: inline-block;
|
2747 |
-
margin-bottom: 11px;
|
2748 |
-
vertical-align: middle;
|
2749 |
-
width: 100%;
|
2750 |
-
}
|
2751 |
-
|
2752 |
-
.tab4 .sfsi_plus_tokenGenerateButton a {
|
2753 |
-
background-color: #12a252;
|
2754 |
-
color: #fff;
|
2755 |
-
padding: 10px 20px;
|
2756 |
-
text-decoration: none;
|
2757 |
-
}
|
2758 |
-
|
2759 |
-
.tab4 .sfsi_plus_instagramInstruction {
|
2760 |
-
float: left;
|
2761 |
-
margin-bottom: 12px;
|
2762 |
-
width: 450px;
|
2763 |
-
}
|
2764 |
-
|
2765 |
-
.tab4 .sfsi_plus_instagramInstruction ul {
|
2766 |
-
padding-left: 14px !important;
|
2767 |
-
}
|
2768 |
-
|
2769 |
-
.tab4 .sfsi_plus_instagramInstruction ul li {
|
2770 |
-
font-size: 13px !important;
|
2771 |
-
line-height: 20px !important;
|
2772 |
-
list-style: outside none bullets !important;
|
2773 |
-
margin-top: 5px !important;
|
2774 |
-
padding: 0 !important;
|
2775 |
-
}
|
2776 |
-
|
2777 |
-
.tab4 .sfsi_instagram_follower {
|
2778 |
-
width: 50%;
|
2779 |
-
float: left;
|
2780 |
-
}
|
2781 |
-
|
2782 |
-
/* tab2 emailsection */
|
2783 |
-
.sfsi_plus_service_row {
|
2784 |
-
margin-right: -15px;
|
2785 |
-
margin-left: -15px;
|
2786 |
-
}
|
2787 |
-
|
2788 |
-
.sfsi_plus_service_column {
|
2789 |
-
float: left;
|
2790 |
-
margin-bottom: 40px;
|
2791 |
-
margin-top: 15px;
|
2792 |
-
padding-left: 30px;
|
2793 |
-
width: 47%;
|
2794 |
-
}
|
2795 |
-
|
2796 |
-
.sfsi_plus_service_column ul {
|
2797 |
-
margin-left: 11% !important;
|
2798 |
-
}
|
2799 |
-
|
2800 |
-
.sfsi_plus_service_column ul li {
|
2801 |
-
padding-bottom: 10px;
|
2802 |
-
font-size: 16px;
|
2803 |
-
line-height: 25px;
|
2804 |
-
}
|
2805 |
-
|
2806 |
-
.sfsi_plus_service_column ul li span {
|
2807 |
-
color: #12a252;
|
2808 |
-
}
|
2809 |
-
|
2810 |
-
.sfsi_plus_service_column ul li::before {
|
2811 |
-
content: url(../images/tick-icon.png);
|
2812 |
-
position: relative;
|
2813 |
-
top: 0px;
|
2814 |
-
right: 10px;
|
2815 |
-
text-indent: -22px;
|
2816 |
-
float: left;
|
2817 |
-
}
|
2818 |
-
|
2819 |
-
.sfsi_plus_inputbtn {
|
2820 |
-
clear: both;
|
2821 |
-
display: block;
|
2822 |
-
}
|
2823 |
-
|
2824 |
-
.sfsi_plus_inputbtn input {
|
2825 |
-
width: 100%;
|
2826 |
-
padding: 15px 0px;
|
2827 |
-
text-align: center;
|
2828 |
-
margin-bottom: 10px;
|
2829 |
-
}
|
2830 |
-
|
2831 |
-
.sfsi_plus_email_services_text {
|
2832 |
-
clear: both;
|
2833 |
-
}
|
2834 |
-
|
2835 |
-
.sfsi_plus_email_services_paragraph {
|
2836 |
-
width: 600px;
|
2837 |
-
float: left;
|
2838 |
-
margin-top: 10px;
|
2839 |
-
margin-bottom: 40px;
|
2840 |
-
}
|
2841 |
-
|
2842 |
-
.sfsi_plus_more_services_link a {
|
2843 |
-
background-color: #12a252;
|
2844 |
-
color: #fff !important;
|
2845 |
-
padding: 20px 0px;
|
2846 |
-
text-decoration: none;
|
2847 |
-
text-align: center;
|
2848 |
-
font-size: 20px;
|
2849 |
-
display: block;
|
2850 |
-
clear: both;
|
2851 |
-
font-weight: bold;
|
2852 |
-
}
|
2853 |
-
|
2854 |
-
.sfsi_plus_subscribe_popbox_link a {
|
2855 |
-
color: #00a0d2 !important;
|
2856 |
-
}
|
2857 |
-
|
2858 |
-
.sfsi_plus_email_services_paragraph ul {
|
2859 |
-
margin-left: 11% !important;
|
2860 |
-
}
|
2861 |
-
|
2862 |
-
.sfsi_plus_email_services_paragraph ul li {
|
2863 |
-
padding-bottom: 10px;
|
2864 |
-
font-size: 16px;
|
2865 |
-
}
|
2866 |
-
|
2867 |
-
.sfsi_plus_email_services_paragraph ul li span {
|
2868 |
-
color: #12a252;
|
2869 |
-
}
|
2870 |
-
|
2871 |
-
.sfsi_plus_email_services_paragraph ul li::before {
|
2872 |
-
content: url(../images/tick-icon.png);
|
2873 |
-
position: relative;
|
2874 |
-
top: 5px;
|
2875 |
-
right: 10px;
|
2876 |
-
text-indent: -22px;
|
2877 |
-
float: left;
|
2878 |
-
}
|
2879 |
-
|
2880 |
-
.sfsi_plus_email_last_paragraph {
|
2881 |
-
width: 60%;
|
2882 |
-
text-align: center !important;
|
2883 |
-
margin: 20px auto ! important;
|
2884 |
-
font-size: 16px !important;
|
2885 |
-
color: #a4a9ad !important;
|
2886 |
-
padding-top: 0px !important;
|
2887 |
-
}
|
2888 |
-
|
2889 |
-
.sfsi_plus_email_last_paragraph a {
|
2890 |
-
color: #12a252 !important;
|
2891 |
-
font-family: 'helveticaneue-light' !important;
|
2892 |
-
}
|
2893 |
-
|
2894 |
-
.pop_up_box.sfsi_pop_up.sfsi_pop_box {
|
2895 |
-
padding: 25px 30px 0 !important;
|
2896 |
-
}
|
2897 |
-
|
2898 |
-
#adminmenu #toplevel_page_sfsi-plus-options ul .wp-first-item {
|
2899 |
-
display: none;
|
2900 |
-
}
|
2901 |
-
|
2902 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options ul.wp-submenu a.current,
|
2903 |
-
ul#adminmenu li.toplevel_page_sfsi-plus-options ul.wp-submenu a.current:hover {
|
2904 |
-
background: none !important;
|
2905 |
-
|
2906 |
-
}
|
2907 |
-
|
2908 |
-
/*new banner styles*/
|
2909 |
-
.sfsi_plus_new_notification_cat {
|
2910 |
-
width: 100%;
|
2911 |
-
min-height: 300px;
|
2912 |
-
max-width: 700px;
|
2913 |
-
}
|
2914 |
-
|
2915 |
-
.sfsi_plus_new_notification_cat {
|
2916 |
-
background-color: #fff;
|
2917 |
-
margin: 30px auto;
|
2918 |
-
width: 100%;
|
2919 |
-
}
|
2920 |
-
|
2921 |
-
.sfsi_plus_new_notification_header_cat {
|
2922 |
-
background-color: #e8faef;
|
2923 |
-
padding: 21px 0 21px 0;
|
2924 |
-
text-align: center;
|
2925 |
-
}
|
2926 |
-
|
2927 |
-
.sfsi_plus_new_notification_header_cat h1 {
|
2928 |
-
margin: 0;
|
2929 |
-
color: #000000;
|
2930 |
-
font-size: 24px;
|
2931 |
-
margin: 0 auto !important;
|
2932 |
-
font-family: Arial, Helvetica, sans-serif;
|
2933 |
-
font-weight: bold !important;
|
2934 |
-
}
|
2935 |
-
|
2936 |
-
.sfsi_plus_new_notification_header_cat h3 {
|
2937 |
-
margin-top: 10px !important;
|
2938 |
-
font-size: 16px;
|
2939 |
-
color: #000000;
|
2940 |
-
}
|
2941 |
-
|
2942 |
-
.sfsi_plus_new_notification_header_cat h3 a {
|
2943 |
-
text-decoration: none;
|
2944 |
-
color: #38B54A;
|
2945 |
-
}
|
2946 |
-
|
2947 |
-
.sfsi_plus_new_notification_header_cat h1 a {
|
2948 |
-
margin: 0;
|
2949 |
-
color: #00c853;
|
2950 |
-
font-size: 18px;
|
2951 |
-
margin: 0 auto;
|
2952 |
-
font-family: Arial, Helvetica, sans-serif;
|
2953 |
-
text-decoration: none;
|
2954 |
-
}
|
2955 |
-
|
2956 |
-
.sfsi_plus_new_notification_cross_cat {
|
2957 |
-
float: right;
|
2958 |
-
font-size: 18px;
|
2959 |
-
font-weight: 700;
|
2960 |
-
line-height: 1;
|
2961 |
-
color: #000000;
|
2962 |
-
font-family: Arial, Helvetica, sans-serif;
|
2963 |
-
margin-right: 15px;
|
2964 |
-
cursor: pointer;
|
2965 |
-
margin-top: -50px;
|
2966 |
-
}
|
2967 |
-
|
2968 |
-
.sfsi_plus_new_notification_body_link_cat a {
|
2969 |
-
display: block;
|
2970 |
-
text-decoration: none;
|
2971 |
-
text-align: center;
|
2972 |
-
font-size: 20px;
|
2973 |
-
font-family: Arial, Helvetica, sans-serif;
|
2974 |
-
color: #fff;
|
2975 |
-
}
|
2976 |
-
|
2977 |
-
.sfsi_plus_new_notification_body_cat {
|
2978 |
-
width: 100%;
|
2979 |
-
background-color: #fff;
|
2980 |
-
}
|
2981 |
-
|
2982 |
-
.sfsi_plus_new_notification_image_cat {
|
2983 |
-
width: 100%;
|
2984 |
-
text-align: center;
|
2985 |
-
overflow: hidden;
|
2986 |
-
}
|
2987 |
-
|
2988 |
-
.sfsi_plus_new_notification_image_cat img {
|
2989 |
-
width: auto;
|
2990 |
-
border: 0;
|
2991 |
-
vertical-align: middle;
|
2992 |
-
}
|
2993 |
-
|
2994 |
-
.sfsiplus_bottom_text {
|
2995 |
-
background: #38B54A;
|
2996 |
-
text-align: center;
|
2997 |
-
padding: 15px 0px;
|
2998 |
-
font-size: 18px;
|
2999 |
-
font-weight: bold;
|
3000 |
-
color: #fff;
|
3001 |
-
}
|
3002 |
-
|
3003 |
-
.sfsi_plus_new_notification_image_cat p {
|
3004 |
-
color: #000000;
|
3005 |
-
padding: 10px;
|
3006 |
-
font-size: 16px;
|
3007 |
-
}
|
3008 |
-
|
3009 |
-
.sfsi_plus_new_notification_body_link_cat .sfsi_plus_tailored_icons_img {
|
3010 |
-
display: block;
|
3011 |
-
text-decoration: none;
|
3012 |
-
text-align: center;
|
3013 |
-
font-size: 20px;
|
3014 |
-
font-family: Arial, Helvetica, sans-serif;
|
3015 |
-
color: #fff;
|
3016 |
-
margin: 28px 0px;
|
3017 |
-
}
|
3018 |
-
|
3019 |
-
/**curl error box*/
|
3020 |
-
.sfsiplus_curlerror {
|
3021 |
-
margin: 0px 0px 10px 94px;
|
3022 |
-
background: rgba(244, 67, 54, 0.08);
|
3023 |
-
padding: 20px;
|
3024 |
-
line-height: 20px;
|
3025 |
-
}
|
3026 |
-
|
3027 |
-
.sfsi_plus_versionNotification .sfsiplus_curlerror {
|
3028 |
-
background: rgba(244, 67, 54, 0.08);
|
3029 |
-
padding: 20px;
|
3030 |
-
line-height: 20px;
|
3031 |
-
margin: 0px 0px 10px 0px;
|
3032 |
-
}
|
3033 |
-
|
3034 |
-
.sfsi_plus_curlerror_cross {
|
3035 |
-
float: right;
|
3036 |
-
text-decoration: underline;
|
3037 |
-
margin-top: 10px;
|
3038 |
-
}
|
3039 |
-
|
3040 |
-
.sfsiplus_curlerrortab4 a {
|
3041 |
-
color: #0073aa !important;
|
3042 |
-
}
|
3043 |
-
|
3044 |
-
.sfsiplus_curlerror a {
|
3045 |
-
color: #0073aa !important;
|
3046 |
-
}
|
3047 |
-
|
3048 |
-
.social_data_post_types {
|
3049 |
-
float: left;
|
3050 |
-
width: 100%;
|
3051 |
-
margin-top: 10px;
|
3052 |
-
}
|
3053 |
-
|
3054 |
-
.social_data_post_types .checkbox {
|
3055 |
-
float: left;
|
3056 |
-
margin-top: 5px;
|
3057 |
-
margin-right: 5px;
|
3058 |
-
}
|
3059 |
-
|
3060 |
-
.social_data_post_types ul {
|
3061 |
-
float: left;
|
3062 |
-
margin-top: 5px;
|
3063 |
-
}
|
3064 |
-
|
3065 |
-
.social_data_post_types li {
|
3066 |
-
float: left;
|
3067 |
-
min-width: 90px;
|
3068 |
-
}
|
3069 |
-
|
3070 |
-
.social_data_post_types .radio_section.tb_4_ck {
|
3071 |
-
float: left;
|
3072 |
-
margin-right: 5px;
|
3073 |
-
}
|
3074 |
-
|
3075 |
-
.social_data_post_types .radio_section.tb_4_ck .cstmdsplsub {
|
3076 |
-
font-size: 16px;
|
3077 |
-
}
|
3078 |
-
|
3079 |
-
.social_data_post_types ul {
|
3080 |
-
float: left;
|
3081 |
-
width: 84%;
|
3082 |
-
}
|
3083 |
-
|
3084 |
-
.social_data_post_types .radio_section.tb_4_ck input.styled {
|
3085 |
-
margin-top: 20px;
|
3086 |
-
}
|
3087 |
-
|
3088 |
-
ul.sfsi_show_hide_section {
|
3089 |
-
float: right;
|
3090 |
-
width: 14%;
|
3091 |
-
}
|
3092 |
-
|
3093 |
-
.sfsi_social_sharing {
|
3094 |
-
margin-bottom: 15px;
|
3095 |
-
float: left;
|
3096 |
-
width: 51%;
|
3097 |
-
}
|
3098 |
-
|
3099 |
-
.socialPostTypesUl span {
|
3100 |
-
pointer-events: none
|
3101 |
-
}
|
3102 |
-
|
3103 |
-
.sfsiplus_pinterest_section .sfsi_plus_new_prmium_follw a {
|
3104 |
-
font-weight: bold;
|
3105 |
-
}
|
3106 |
-
|
3107 |
-
/*support forum*/
|
3108 |
-
.welcometext {
|
3109 |
-
float: left;
|
3110 |
-
width: 78%;
|
3111 |
-
}
|
3112 |
-
|
3113 |
-
.welcometext p {
|
3114 |
-
margin-bottom: 8px !important;
|
3115 |
-
margin-top: 15px !important;
|
3116 |
-
}
|
3117 |
-
|
3118 |
-
.supportforum {
|
3119 |
-
float: right;
|
3120 |
-
width: auto;
|
3121 |
-
background: #fff;
|
3122 |
-
text-align: center;
|
3123 |
-
padding: 0 20px 3px 7px;
|
3124 |
-
}
|
3125 |
-
|
3126 |
-
.support-container p {
|
3127 |
-
font-family: helveticaregular !important;
|
3128 |
-
}
|
3129 |
-
|
3130 |
-
.support-container {
|
3131 |
-
padding: 7px 4px;
|
3132 |
-
}
|
3133 |
-
|
3134 |
-
.have-questions {
|
3135 |
-
text-align: center;
|
3136 |
-
font-size: 20px;
|
3137 |
-
}
|
3138 |
-
|
3139 |
-
.have-questions img {
|
3140 |
-
width: 45px;
|
3141 |
-
display: inline-block;
|
3142 |
-
}
|
3143 |
-
|
3144 |
-
.have-questions .have-quest {
|
3145 |
-
display: inline-block;
|
3146 |
-
font-size: 20px;
|
3147 |
-
font-weight: 700;
|
3148 |
-
margin: 0;
|
3149 |
-
vertical-align: top;
|
3150 |
-
margin-top: 13px;
|
3151 |
-
}
|
3152 |
-
|
3153 |
-
.have-questions .ask-question {
|
3154 |
-
margin-bottom: 3px !important;
|
3155 |
-
margin-top: 2px !important;
|
3156 |
-
}
|
3157 |
-
|
3158 |
-
.support-forum-green-bg {
|
3159 |
-
margin-top: 5px;
|
3160 |
-
margin-left: 20px;
|
3161 |
-
background: #26B654;
|
3162 |
-
width: 145px;
|
3163 |
-
border-radius: 5px;
|
3164 |
-
padding: 10px 16px 8px 15px;
|
3165 |
-
}
|
3166 |
-
|
3167 |
-
.support-forum-green-bg img {
|
3168 |
-
display: inline-block;
|
3169 |
-
padding-right: 5px;
|
3170 |
-
vertical-align: top;
|
3171 |
-
margin-top: 3px;
|
3172 |
-
}
|
3173 |
-
|
3174 |
-
.support-forum-green-div p.support-forum {
|
3175 |
-
display: inline-block;
|
3176 |
-
color: #fff;
|
3177 |
-
font-weight: 700;
|
3178 |
-
margin: 0 !important;
|
3179 |
-
}
|
3180 |
-
|
3181 |
-
.support-forum-green-div a {
|
3182 |
-
text-decoration: none !important;
|
3183 |
-
}
|
3184 |
-
|
3185 |
-
.respond-text p {
|
3186 |
-
margin: 10px 0 0 0px !important
|
3187 |
-
}
|
3188 |
-
|
3189 |
-
.respond-text {
|
3190 |
-
margin-left: 20px;
|
3191 |
-
float: left;
|
3192 |
-
margin-bottom: 8px;
|
3193 |
-
}
|
3194 |
-
|
3195 |
-
#accordion,
|
3196 |
-
#accordion1 {
|
3197 |
-
float: left;
|
3198 |
-
clear: both;
|
3199 |
-
width: 100%;
|
3200 |
-
}
|
3201 |
-
|
3202 |
-
@media (min-width: 1631px) and (max-width: 1631px) {
|
3203 |
-
.premiumComponent {
|
3204 |
-
width: 52% !important;
|
3205 |
-
}
|
3206 |
-
|
3207 |
-
.premiumButtonsContainer {
|
3208 |
-
width: 44% !important;
|
3209 |
-
}
|
3210 |
-
|
3211 |
-
.premiumButtonsContainer .premiumSection2 {
|
3212 |
-
width: 41% !important;
|
3213 |
-
}
|
3214 |
-
|
3215 |
-
.premiumButtonsContainer .premiumSection3 {
|
3216 |
-
width: 41% !important;
|
3217 |
-
}
|
3218 |
-
}
|
3219 |
-
|
3220 |
-
/* Link to support forum for different languages */
|
3221 |
-
#sfsi_plus_langnotice {
|
3222 |
-
position: relative;
|
3223 |
-
padding: 15px 10px;
|
3224 |
-
margin: 0px 15px 35px 0px;
|
3225 |
-
}
|
3226 |
-
|
3227 |
-
#sfsi_plus_langnotice .sfsi-notice-dismiss {
|
3228 |
-
position: absolute;
|
3229 |
-
right: 1px;
|
3230 |
-
border: none;
|
3231 |
-
margin: 0;
|
3232 |
-
padding: 9px;
|
3233 |
-
background: none;
|
3234 |
-
color: #72777c;
|
3235 |
-
cursor: pointer;
|
3236 |
-
top: 5px;
|
3237 |
-
}
|
3238 |
-
|
3239 |
-
/* Link to support forum left of every Save button */
|
3240 |
-
.ui-accordion .ui-accordion-content {
|
3241 |
-
position: relative;
|
3242 |
-
}
|
3243 |
-
|
3244 |
-
.sfsi_plus_askforhelp {
|
3245 |
-
float: left;
|
3246 |
-
width: auto;
|
3247 |
-
position: absolute;
|
3248 |
-
bottom: 30px;
|
3249 |
-
}
|
3250 |
-
|
3251 |
-
.sfsi_plus_askforhelp img {
|
3252 |
-
float: left;
|
3253 |
-
width: 35px;
|
3254 |
-
height: 35px;
|
3255 |
-
vertical-align: middle;
|
3256 |
-
}
|
3257 |
-
|
3258 |
-
.sfsi_plus_askforhelp span {
|
3259 |
-
float: left;
|
3260 |
-
margin-left: 6px;
|
3261 |
-
margin-top: 8px;
|
3262 |
-
}
|
3263 |
-
|
3264 |
-
.askhelpInview2 {
|
3265 |
-
bottom: 25px;
|
3266 |
-
}
|
3267 |
-
|
3268 |
-
.askhelpInview3 {
|
3269 |
-
bottom: 51px;
|
3270 |
-
}
|
3271 |
-
|
3272 |
-
.askhelpInview7 {
|
3273 |
-
bottom: 50px;
|
3274 |
-
}
|
3275 |
-
|
3276 |
-
.ulSuppressErrors {
|
3277 |
-
margin-top: 20px !important;
|
3278 |
-
}
|
3279 |
-
|
3280 |
-
.ulSuppressErrors li {
|
3281 |
-
float: left;
|
3282 |
-
}
|
3283 |
-
|
3284 |
-
div#sfsi_plus_addThis_removal_notice {
|
3285 |
-
padding: 10px;
|
3286 |
-
margin-left: 0px;
|
3287 |
-
position: relative;
|
3288 |
-
}
|
3289 |
-
|
3290 |
-
div#sfsi_plus_langnotice {
|
3291 |
-
padding: 10px;
|
3292 |
-
margin-left: 0px;
|
3293 |
-
position: relative;
|
3294 |
-
}
|
3295 |
-
|
3296 |
-
|
3297 |
-
.clear {
|
3298 |
-
clear: both;
|
3299 |
-
}
|
3300 |
-
|
3301 |
-
.show {
|
3302 |
-
display: block;
|
3303 |
-
}
|
3304 |
-
|
3305 |
-
.hide {
|
3306 |
-
display: none;
|
3307 |
-
}
|
3308 |
-
|
3309 |
-
.zeropadding {
|
3310 |
-
padding: 0px !important;
|
3311 |
-
}
|
3312 |
-
|
3313 |
-
.zerotoppadding {
|
3314 |
-
padding-top: 0px !important;
|
3315 |
-
}
|
3316 |
-
|
3317 |
-
.zerobottompadding {
|
3318 |
-
padding-bottom: 0px !important;
|
3319 |
-
}
|
3320 |
-
|
3321 |
-
.zerotopmargin {
|
3322 |
-
margin-top: 0px !important;
|
3323 |
-
}
|
3324 |
-
|
3325 |
-
.rowpadding10 {
|
3326 |
-
padding: 10px 0 !important;
|
3327 |
-
}
|
3328 |
-
|
3329 |
-
.rowmarginleft15 {
|
3330 |
-
margin-left: 15px !important;
|
3331 |
-
}
|
3332 |
-
|
3333 |
-
.rowmarginleft25 {
|
3334 |
-
margin-left: 25px !important;
|
3335 |
-
}
|
3336 |
-
|
3337 |
-
.rowmarginleft45 {
|
3338 |
-
margin-left: 45px !important;
|
3339 |
-
}
|
3340 |
-
|
3341 |
-
.bottommargin20 {
|
3342 |
-
margin-bottom: 20px !important;
|
3343 |
-
}
|
3344 |
-
|
3345 |
-
.bottommargin30 {
|
3346 |
-
margin-bottom: 30px !important;
|
3347 |
-
}
|
3348 |
-
|
3349 |
-
.bottommargin40 {
|
3350 |
-
margin-bottom: 40px !important;
|
3351 |
-
}
|
3352 |
-
|
3353 |
-
.inactiveSection {
|
3354 |
-
opacity: 0.2;
|
3355 |
-
pointer-events: none;
|
3356 |
-
}
|
3357 |
-
|
3358 |
-
/* */
|
3359 |
-
.tab3 .sub_row {
|
3360 |
-
float: left;
|
3361 |
-
margin: 35px 0 0 4%;
|
3362 |
-
width: 80%;
|
3363 |
-
}
|
3364 |
-
|
3365 |
-
.tab3 .sub_row label {
|
3366 |
-
float: left;
|
3367 |
-
margin: 0 0px 0 10px;
|
3368 |
-
line-height: 36px;
|
3369 |
-
font-size: 18px;
|
3370 |
-
}
|
3371 |
-
|
3372 |
-
.tab3 .sub_row .effectContainer {
|
3373 |
-
float: left;
|
3374 |
-
width: 100%;
|
3375 |
-
margin-left: 45px;
|
3376 |
-
}
|
3377 |
-
|
3378 |
-
.tab3 .sub_row .effectName {
|
3379 |
-
float: left;
|
3380 |
-
width: 25%;
|
3381 |
-
}
|
3382 |
-
|
3383 |
-
.tab3 .tab_3_sav {
|
3384 |
-
padding-top: 0;
|
3385 |
-
margin: 0px auto 10px;
|
3386 |
-
position: relative;
|
3387 |
-
z-index: 9;
|
3388 |
-
}
|
3389 |
-
|
3390 |
-
.tab3 .Shuffle_auto {
|
3391 |
-
float: left;
|
3392 |
-
width: 80%;
|
3393 |
-
clear: both;
|
3394 |
-
}
|
3395 |
-
|
3396 |
-
.tab3 #animationSection label {
|
3397 |
-
font-family: 'helveticaneue-light';
|
3398 |
-
}
|
3399 |
-
|
3400 |
-
.tab3 select[name='mouseover_other_icons_transition_effect'] {
|
3401 |
-
margin-left: 10px;
|
3402 |
-
padding: 0px 11px;
|
3403 |
-
margin-top: 4px;
|
3404 |
-
font-size: 15px;
|
3405 |
-
border-radius: 5px;
|
3406 |
-
}
|
3407 |
-
|
3408 |
-
.tab3 .other_icons_effects_options .mouseover_other_icon_label {
|
3409 |
-
float: left;
|
3410 |
-
width: 30%;
|
3411 |
-
font-size: 16px;
|
3412 |
-
}
|
3413 |
-
|
3414 |
-
.tab3 .mouse-over-effects span.radio {
|
3415 |
-
float: left;
|
3416 |
-
display: inline-block;
|
3417 |
-
}
|
3418 |
-
|
3419 |
-
.tab3 .same_icons_effects label span {
|
3420 |
-
float: left;
|
3421 |
-
clear: both;
|
3422 |
-
line-height: 20px;
|
3423 |
-
}
|
3424 |
-
|
3425 |
-
.tab3 .same_icons_effects label span:nth-child(2) {
|
3426 |
-
font-size: 14px;
|
3427 |
-
}
|
3428 |
-
|
3429 |
-
.tab3 .other_icons_effects_options .mouseover_other_icon_img {
|
3430 |
-
float: left;
|
3431 |
-
width: 40px;
|
3432 |
-
height: 40px;
|
3433 |
-
}
|
3434 |
-
|
3435 |
-
.tab3 .other_icons_effects_options .mouseover_other_icon_change_link,
|
3436 |
-
.tab3 .other_icons_effects_options .mouseover_other_icon_revert_link {
|
3437 |
-
float: left;
|
3438 |
-
color: #337ab7;
|
3439 |
-
margin-left: 15px;
|
3440 |
-
padding: 5px 0px;
|
3441 |
-
font-size: 15px;
|
3442 |
-
text-decoration: underline;
|
3443 |
-
}
|
3444 |
-
|
3445 |
-
/* MZ CSS */
|
3446 |
-
.notopborder {
|
3447 |
-
border-top: none !important;
|
3448 |
-
}
|
3449 |
-
|
3450 |
-
|
3451 |
-
/* MZ CSS END */
|
3452 |
-
.mouseover-premium-notice {}
|
3453 |
-
|
3454 |
-
.mouseover-premium-notice label {
|
3455 |
-
width: auto !important;
|
3456 |
-
margin: 0 !important;
|
3457 |
-
}
|
3458 |
-
|
3459 |
-
.mouseover-premium-notice a {
|
3460 |
-
float: left;
|
3461 |
-
color: #12a252 !important;
|
3462 |
-
padding-top: 5px;
|
3463 |
-
margin-left: 5px;
|
3464 |
-
font-size: 18px;
|
3465 |
-
}
|
3466 |
-
|
3467 |
-
@media (min-width:414px) and (max-width: 736px) and (orientation:portrait) {
|
3468 |
-
.tab3 .sub_row {
|
3469 |
-
width: 100%;
|
3470 |
-
}
|
3471 |
-
|
3472 |
-
.tab3 .sub_row .effectContainer {
|
3473 |
-
margin-left: 25px;
|
3474 |
-
margin-bottom: 0px;
|
3475 |
-
clear: both;
|
3476 |
-
}
|
3477 |
-
|
3478 |
-
.tab3 .sub_row .effectName {
|
3479 |
-
width: 100%;
|
3480 |
-
margin-bottom: 25px
|
3481 |
-
}
|
3482 |
-
|
3483 |
-
.rowmarginleft45 {
|
3484 |
-
margin-left: 0px !important;
|
3485 |
-
}
|
3486 |
-
|
3487 |
-
.bottommargin40 {
|
3488 |
-
margin-bottom: 0px !important;
|
3489 |
-
}
|
3490 |
-
}
|
3491 |
-
|
3492 |
-
@media (min-width:414px) and (max-width: 736px) and (orientation:landscape) {
|
3493 |
-
.tab3 .sub_row {
|
3494 |
-
width: 100%;
|
3495 |
-
}
|
3496 |
-
|
3497 |
-
.tab3 .sub_row .effectContainer {
|
3498 |
-
margin-left: 25px;
|
3499 |
-
margin-bottom: 0px;
|
3500 |
-
clear: both;
|
3501 |
-
}
|
3502 |
-
|
3503 |
-
.tab3 .sub_row .effectName {
|
3504 |
-
width: 50%;
|
3505 |
-
margin-bottom: 25px
|
3506 |
-
}
|
3507 |
-
|
3508 |
-
.rowmarginleft45 {
|
3509 |
-
margin-left: 25px !important;
|
3510 |
-
}
|
3511 |
-
|
3512 |
-
.bottommargin40 {
|
3513 |
-
margin-bottom: 0px !important;
|
3514 |
-
}
|
3515 |
-
}
|
3516 |
-
|
3517 |
-
@media (min-width:1024px) and (max-width: 1366px) and (orientation:portrait) {}
|
3518 |
-
|
3519 |
-
@media (min-width:1024px) and (max-width: 1366px) and (orientation:landscape) {
|
3520 |
-
.tab3 .sub_row .effectName {
|
3521 |
-
width: 40%;
|
3522 |
-
}
|
3523 |
-
|
3524 |
-
.tab3 .sub_row label {
|
3525 |
-
width: 75%;
|
3526 |
-
}
|
3527 |
-
}
|
3528 |
-
|
3529 |
-
@media (min-width:768px) and (max-width: 1024px) and (orientation:portrait) {
|
3530 |
-
.tab3 .sub_row {
|
3531 |
-
width: 100%;
|
3532 |
-
}
|
3533 |
-
|
3534 |
-
.tab3 .sub_row .effectContainer {
|
3535 |
-
margin-bottom: 25px;
|
3536 |
-
clear: both;
|
3537 |
-
}
|
3538 |
-
|
3539 |
-
.tab3 .sub_row .effectName {
|
3540 |
-
width: 50%;
|
3541 |
-
}
|
3542 |
-
|
3543 |
-
.tab3 .sub_row label {
|
3544 |
-
width: 77%;
|
3545 |
-
}
|
3546 |
-
}
|
3547 |
-
|
3548 |
-
/* */
|
3549 |
-
|
3550 |
-
.col-lg-1,
|
3551 |
-
.col-lg-10,
|
3552 |
-
.col-lg-11,
|
3553 |
-
.col-lg-12,
|
3554 |
-
.col-lg-2,
|
3555 |
-
.col-lg-3,
|
3556 |
-
.col-lg-4,
|
3557 |
-
.col-lg-5,
|
3558 |
-
.col-lg-6,
|
3559 |
-
.col-lg-7,
|
3560 |
-
.col-lg-8,
|
3561 |
-
.col-lg-9,
|
3562 |
-
.col-md-1,
|
3563 |
-
.col-md-10,
|
3564 |
-
.col-md-11,
|
3565 |
-
.col-md-12,
|
3566 |
-
.col-md-2,
|
3567 |
-
.col-md-3,
|
3568 |
-
.col-md-4,
|
3569 |
-
.col-md-5,
|
3570 |
-
.col-md-6,
|
3571 |
-
.col-md-7,
|
3572 |
-
.col-md-8,
|
3573 |
-
.col-md-9,
|
3574 |
-
.col-sm-1,
|
3575 |
-
.col-sm-10,
|
3576 |
-
.col-sm-11,
|
3577 |
-
.col-sm-12,
|
3578 |
-
.col-sm-2,
|
3579 |
-
.col-sm-3,
|
3580 |
-
.col-sm-4,
|
3581 |
-
.col-sm-5,
|
3582 |
-
.col-sm-6,
|
3583 |
-
.col-sm-7,
|
3584 |
-
.col-sm-8,
|
3585 |
-
.col-sm-9,
|
3586 |
-
.col-xs-1,
|
3587 |
-
.col-xs-10,
|
3588 |
-
.col-xs-11,
|
3589 |
-
.col-xs-12,
|
3590 |
-
.col-xs-2,
|
3591 |
-
.col-xs-3,
|
3592 |
-
.col-xs-4,
|
3593 |
-
.col-xs-5,
|
3594 |
-
.col-xs-6,
|
3595 |
-
.col-xs-7,
|
3596 |
-
.col-xs-8,
|
3597 |
-
.col-xs-9 {
|
3598 |
-
position: relative;
|
3599 |
-
min-height: 1px;
|
3600 |
-
padding-right: 15px;
|
3601 |
-
padding-left: 15px;
|
3602 |
-
}
|
3603 |
-
|
3604 |
-
@media (min-width: 992px) {
|
3605 |
-
.col-md-3 {
|
3606 |
-
width: 25%;
|
3607 |
-
}
|
3608 |
-
|
3609 |
-
.col-md-1,
|
3610 |
-
.col-md-10,
|
3611 |
-
.col-md-11,
|
3612 |
-
.col-md-12,
|
3613 |
-
.col-md-2,
|
3614 |
-
.col-md-3,
|
3615 |
-
.col-md-4,
|
3616 |
-
.col-md-5,
|
3617 |
-
.col-md-6,
|
3618 |
-
.col-md-7,
|
3619 |
-
.col-md-8,
|
3620 |
-
.col-md-9 {
|
3621 |
-
float: left;
|
3622 |
-
}
|
3623 |
-
|
3624 |
-
.col-md-12 {
|
3625 |
-
width: 100%
|
3626 |
-
}
|
3627 |
-
|
3628 |
-
.col-md-11 {
|
3629 |
-
width: 91.66666667%
|
3630 |
-
}
|
3631 |
-
|
3632 |
-
.col-md-10 {
|
3633 |
-
width: 83.33333333%
|
3634 |
-
}
|
3635 |
-
|
3636 |
-
.col-md-9 {
|
3637 |
-
width: 75%
|
3638 |
-
}
|
3639 |
-
|
3640 |
-
.col-md-8 {
|
3641 |
-
width: 66.66666667%
|
3642 |
-
}
|
3643 |
-
|
3644 |
-
.col-md-7 {
|
3645 |
-
width: 58.33333333%
|
3646 |
-
}
|
3647 |
-
|
3648 |
-
.col-md-6 {
|
3649 |
-
width: 50%
|
3650 |
-
}
|
3651 |
-
|
3652 |
-
.col-md-5 {
|
3653 |
-
width: 41.66666667%
|
3654 |
-
}
|
3655 |
-
|
3656 |
-
.col-md-4 {
|
3657 |
-
width: 33.33333333%
|
3658 |
-
}
|
3659 |
-
|
3660 |
-
.col-md-3 {
|
3661 |
-
width: 25%
|
3662 |
-
}
|
3663 |
-
|
3664 |
-
.col-md-2 {
|
3665 |
-
width: 16.66666667%
|
3666 |
-
}
|
3667 |
-
|
3668 |
-
.col-md-1 {
|
3669 |
-
width: 8.33333333%
|
3670 |
-
}
|
3671 |
-
|
3672 |
-
.col-md-pull-12 {
|
3673 |
-
right: 100%
|
3674 |
-
}
|
3675 |
-
|
3676 |
-
.col-md-pull-11 {
|
3677 |
-
right: 91.66666667%
|
3678 |
-
}
|
3679 |
-
|
3680 |
-
.col-md-pull-10 {
|
3681 |
-
right: 83.33333333%
|
3682 |
-
}
|
3683 |
-
|
3684 |
-
.col-md-pull-9 {
|
3685 |
-
right: 75%
|
3686 |
-
}
|
3687 |
-
|
3688 |
-
.col-md-pull-8 {
|
3689 |
-
right: 66.66666667%
|
3690 |
-
}
|
3691 |
-
|
3692 |
-
.col-md-pull-7 {
|
3693 |
-
right: 58.33333333%
|
3694 |
-
}
|
3695 |
-
|
3696 |
-
.col-md-pull-6 {
|
3697 |
-
right: 50%
|
3698 |
-
}
|
3699 |
-
|
3700 |
-
.col-md-pull-5 {
|
3701 |
-
right: 41.66666667%
|
3702 |
-
}
|
3703 |
-
|
3704 |
-
.col-md-pull-4 {
|
3705 |
-
right: 33.33333333%
|
3706 |
-
}
|
3707 |
-
|
3708 |
-
.col-md-pull-3 {
|
3709 |
-
right: 25%
|
3710 |
-
}
|
3711 |
-
|
3712 |
-
.col-md-pull-2 {
|
3713 |
-
right: 16.66666667%
|
3714 |
-
}
|
3715 |
-
|
3716 |
-
.col-md-pull-1 {
|
3717 |
-
right: 8.33333333%
|
3718 |
-
}
|
3719 |
-
|
3720 |
-
.col-md-pull-0 {
|
3721 |
-
right: auto
|
3722 |
-
}
|
3723 |
-
|
3724 |
-
.col-md-push-12 {
|
3725 |
-
left: 100%
|
3726 |
-
}
|
3727 |
-
|
3728 |
-
.col-md-push-11 {
|
3729 |
-
left: 91.66666667%
|
3730 |
-
}
|
3731 |
-
|
3732 |
-
.col-md-push-10 {
|
3733 |
-
left: 83.33333333%
|
3734 |
-
}
|
3735 |
-
|
3736 |
-
.col-md-push-9 {
|
3737 |
-
left: 75%
|
3738 |
-
}
|
3739 |
-
|
3740 |
-
.col-md-push-8 {
|
3741 |
-
left: 66.66666667%
|
3742 |
-
}
|
3743 |
-
|
3744 |
-
.col-md-push-7 {
|
3745 |
-
left: 58.33333333%
|
3746 |
-
}
|
3747 |
-
|
3748 |
-
.col-md-push-6 {
|
3749 |
-
left: 50%
|
3750 |
-
}
|
3751 |
-
|
3752 |
-
.col-md-push-5 {
|
3753 |
-
left: 41.66666667%
|
3754 |
-
}
|
3755 |
-
|
3756 |
-
.col-md-push-4 {
|
3757 |
-
left: 33.33333333%
|
3758 |
-
}
|
3759 |
-
|
3760 |
-
.col-md-push-3 {
|
3761 |
-
left: 25%
|
3762 |
-
}
|
3763 |
-
|
3764 |
-
.col-md-push-2 {
|
3765 |
-
left: 16.66666667%
|
3766 |
-
}
|
3767 |
-
|
3768 |
-
.col-md-push-1 {
|
3769 |
-
left: 8.33333333%
|
3770 |
-
}
|
3771 |
-
|
3772 |
-
.col-md-push-0 {
|
3773 |
-
left: auto
|
3774 |
-
}
|
3775 |
-
|
3776 |
-
.col-md-offset-12 {
|
3777 |
-
margin-left: 100%
|
3778 |
-
}
|
3779 |
-
|
3780 |
-
.col-md-offset-11 {
|
3781 |
-
margin-left: 91.66666667%
|
3782 |
-
}
|
3783 |
-
|
3784 |
-
.col-md-offset-10 {
|
3785 |
-
margin-left: 83.33333333%
|
3786 |
-
}
|
3787 |
-
|
3788 |
-
.col-md-offset-9 {
|
3789 |
-
margin-left: 75%
|
3790 |
-
}
|
3791 |
-
|
3792 |
-
.col-md-offset-8 {
|
3793 |
-
margin-left: 66.66666667%
|
3794 |
-
}
|
3795 |
-
|
3796 |
-
.col-md-offset-7 {
|
3797 |
-
margin-left: 58.33333333%
|
3798 |
-
}
|
3799 |
-
|
3800 |
-
.col-md-offset-6 {
|
3801 |
-
margin-left: 50%
|
3802 |
-
}
|
3803 |
-
|
3804 |
-
.col-md-offset-5 {
|
3805 |
-
margin-left: 41.66666667%
|
3806 |
-
}
|
3807 |
-
|
3808 |
-
.col-md-offset-4 {
|
3809 |
-
margin-left: 33.33333333%
|
3810 |
-
}
|
3811 |
-
|
3812 |
-
.col-md-offset-3 {
|
3813 |
-
margin-left: 25%
|
3814 |
-
}
|
3815 |
-
|
3816 |
-
.col-md-offset-2 {
|
3817 |
-
margin-left: 16.66666667%
|
3818 |
-
}
|
3819 |
-
|
3820 |
-
.col-md-offset-1 {
|
3821 |
-
margin-left: 8.33333333%
|
3822 |
-
}
|
3823 |
-
|
3824 |
-
.col-md-offset-0 {
|
3825 |
-
margin-left: 0
|
3826 |
-
}
|
3827 |
-
}
|
3828 |
-
|
3829 |
-
@media (min-width:768px) {
|
3830 |
-
|
3831 |
-
.col-sm-1,
|
3832 |
-
.col-sm-10,
|
3833 |
-
.col-sm-11,
|
3834 |
-
.col-sm-12,
|
3835 |
-
.col-sm-2,
|
3836 |
-
.col-sm-3,
|
3837 |
-
.col-sm-4,
|
3838 |
-
.col-sm-5,
|
3839 |
-
.col-sm-6,
|
3840 |
-
.col-sm-7,
|
3841 |
-
.col-sm-8,
|
3842 |
-
.col-sm-9 {
|
3843 |
-
float: left
|
3844 |
-
}
|
3845 |
-
|
3846 |
-
.col-sm-12 {
|
3847 |
-
width: 100%
|
3848 |
-
}
|
3849 |
-
|
3850 |
-
.col-sm-11 {
|
3851 |
-
width: 91.66666667%
|
3852 |
-
}
|
3853 |
-
|
3854 |
-
.col-sm-10 {
|
3855 |
-
width: 83.33333333%
|
3856 |
-
}
|
3857 |
-
|
3858 |
-
.col-sm-9 {
|
3859 |
-
width: 75%
|
3860 |
-
}
|
3861 |
-
|
3862 |
-
.col-sm-8 {
|
3863 |
-
width: 66.66666667%
|
3864 |
-
}
|
3865 |
-
|
3866 |
-
.col-sm-7 {
|
3867 |
-
width: 58.33333333%
|
3868 |
-
}
|
3869 |
-
|
3870 |
-
.col-sm-6 {
|
3871 |
-
width: 50%
|
3872 |
-
}
|
3873 |
-
|
3874 |
-
.col-sm-5 {
|
3875 |
-
width: 41.66666667%
|
3876 |
-
}
|
3877 |
-
|
3878 |
-
.col-sm-4 {
|
3879 |
-
width: 33.33333333%
|
3880 |
-
}
|
3881 |
-
|
3882 |
-
.col-sm-3 {
|
3883 |
-
width: 25%
|
3884 |
-
}
|
3885 |
-
|
3886 |
-
.col-sm-2 {
|
3887 |
-
width: 16.66666667%
|
3888 |
-
}
|
3889 |
-
|
3890 |
-
.col-sm-1 {
|
3891 |
-
width: 8.33333333%
|
3892 |
-
}
|
3893 |
-
|
3894 |
-
.col-sm-pull-12 {
|
3895 |
-
right: 100%
|
3896 |
-
}
|
3897 |
-
|
3898 |
-
.col-sm-pull-11 {
|
3899 |
-
right: 91.66666667%
|
3900 |
-
}
|
3901 |
-
|
3902 |
-
.col-sm-pull-10 {
|
3903 |
-
right: 83.33333333%
|
3904 |
-
}
|
3905 |
-
|
3906 |
-
.col-sm-pull-9 {
|
3907 |
-
right: 75%
|
3908 |
-
}
|
3909 |
-
|
3910 |
-
.col-sm-pull-8 {
|
3911 |
-
right: 66.66666667%
|
3912 |
-
}
|
3913 |
-
|
3914 |
-
.col-sm-pull-7 {
|
3915 |
-
right: 58.33333333%
|
3916 |
-
}
|
3917 |
-
|
3918 |
-
.col-sm-pull-6 {
|
3919 |
-
right: 50%
|
3920 |
-
}
|
3921 |
-
|
3922 |
-
.col-sm-pull-5 {
|
3923 |
-
right: 41.66666667%
|
3924 |
-
}
|
3925 |
-
|
3926 |
-
.col-sm-pull-4 {
|
3927 |
-
right: 33.33333333%
|
3928 |
-
}
|
3929 |
-
|
3930 |
-
.col-sm-pull-3 {
|
3931 |
-
right: 25%
|
3932 |
-
}
|
3933 |
-
|
3934 |
-
.col-sm-pull-2 {
|
3935 |
-
right: 16.66666667%
|
3936 |
-
}
|
3937 |
-
|
3938 |
-
.col-sm-pull-1 {
|
3939 |
-
right: 8.33333333%
|
3940 |
-
}
|
3941 |
-
|
3942 |
-
.col-sm-pull-0 {
|
3943 |
-
right: auto
|
3944 |
-
}
|
3945 |
-
|
3946 |
-
.col-sm-push-12 {
|
3947 |
-
left: 100%
|
3948 |
-
}
|
3949 |
-
|
3950 |
-
.col-sm-push-11 {
|
3951 |
-
left: 91.66666667%
|
3952 |
-
}
|
3953 |
-
|
3954 |
-
.col-sm-push-10 {
|
3955 |
-
left: 83.33333333%
|
3956 |
-
}
|
3957 |
-
|
3958 |
-
.col-sm-push-9 {
|
3959 |
-
left: 75%
|
3960 |
-
}
|
3961 |
-
|
3962 |
-
.col-sm-push-8 {
|
3963 |
-
left: 66.66666667%
|
3964 |
-
}
|
3965 |
-
|
3966 |
-
.col-sm-push-7 {
|
3967 |
-
left: 58.33333333%
|
3968 |
-
}
|
3969 |
-
|
3970 |
-
.col-sm-push-6 {
|
3971 |
-
left: 50%
|
3972 |
-
}
|
3973 |
-
|
3974 |
-
.col-sm-push-5 {
|
3975 |
-
left: 41.66666667%
|
3976 |
-
}
|
3977 |
-
|
3978 |
-
.col-sm-push-4 {
|
3979 |
-
left: 33.33333333%
|
3980 |
-
}
|
3981 |
-
|
3982 |
-
.col-sm-push-3 {
|
3983 |
-
left: 25%
|
3984 |
-
}
|
3985 |
-
|
3986 |
-
.col-sm-push-2 {
|
3987 |
-
left: 16.66666667%
|
3988 |
-
}
|
3989 |
-
|
3990 |
-
.col-sm-push-1 {
|
3991 |
-
left: 8.33333333%
|
3992 |
-
}
|
3993 |
-
|
3994 |
-
.col-sm-push-0 {
|
3995 |
-
left: auto
|
3996 |
-
}
|
3997 |
-
|
3998 |
-
.col-sm-offset-12 {
|
3999 |
-
margin-left: 100%
|
4000 |
-
}
|
4001 |
-
|
4002 |
-
.col-sm-offset-11 {
|
4003 |
-
margin-left: 91.66666667%
|
4004 |
-
}
|
4005 |
-
|
4006 |
-
.col-sm-offset-10 {
|
4007 |
-
margin-left: 83.33333333%
|
4008 |
-
}
|
4009 |
-
|
4010 |
-
.col-sm-offset-9 {
|
4011 |
-
margin-left: 75%
|
4012 |
-
}
|
4013 |
-
|
4014 |
-
.col-sm-offset-8 {
|
4015 |
-
margin-left: 66.66666667%
|
4016 |
-
}
|
4017 |
-
|
4018 |
-
.col-sm-offset-7 {
|
4019 |
-
margin-left: 58.33333333%
|
4020 |
-
}
|
4021 |
-
|
4022 |
-
.col-sm-offset-6 {
|
4023 |
-
margin-left: 50%
|
4024 |
-
}
|
4025 |
-
|
4026 |
-
.col-sm-offset-5 {
|
4027 |
-
margin-left: 41.66666667%
|
4028 |
-
}
|
4029 |
-
|
4030 |
-
.col-sm-offset-4 {
|
4031 |
-
margin-left: 33.33333333%
|
4032 |
-
}
|
4033 |
-
|
4034 |
-
.col-sm-offset-3 {
|
4035 |
-
margin-left: 25%
|
4036 |
-
}
|
4037 |
-
|
4038 |
-
.col-sm-offset-2 {
|
4039 |
-
margin-left: 16.66666667%
|
4040 |
-
}
|
4041 |
-
|
4042 |
-
.col-sm-offset-1 {
|
4043 |
-
margin-left: 8.33333333%
|
4044 |
-
}
|
4045 |
-
|
4046 |
-
.col-sm-offset-0 {
|
4047 |
-
margin-left: 0
|
4048 |
-
}
|
4049 |
-
}
|
4050 |
-
|
4051 |
-
@media (min-width:1200px) {
|
4052 |
-
|
4053 |
-
.col-lg-1,
|
4054 |
-
.col-lg-10,
|
4055 |
-
.col-lg-11,
|
4056 |
-
.col-lg-12,
|
4057 |
-
.col-lg-2,
|
4058 |
-
.col-lg-3,
|
4059 |
-
.col-lg-4,
|
4060 |
-
.col-lg-5,
|
4061 |
-
.col-lg-6,
|
4062 |
-
.col-lg-7,
|
4063 |
-
.col-lg-8,
|
4064 |
-
.col-lg-9 {
|
4065 |
-
float: left
|
4066 |
-
}
|
4067 |
-
|
4068 |
-
.col-lg-12 {
|
4069 |
-
width: 100%
|
4070 |
-
}
|
4071 |
-
|
4072 |
-
.col-lg-11 {
|
4073 |
-
width: 91.66666667%
|
4074 |
-
}
|
4075 |
-
|
4076 |
-
.col-lg-10 {
|
4077 |
-
width: 83.33333333%
|
4078 |
-
}
|
4079 |
-
|
4080 |
-
.col-lg-9 {
|
4081 |
-
width: 75%
|
4082 |
-
}
|
4083 |
-
|
4084 |
-
.col-lg-8 {
|
4085 |
-
width: 66.66666667%
|
4086 |
-
}
|
4087 |
-
|
4088 |
-
.col-lg-7 {
|
4089 |
-
width: 58.33333333%
|
4090 |
-
}
|
4091 |
-
|
4092 |
-
.col-lg-6 {
|
4093 |
-
width: 50%
|
4094 |
-
}
|
4095 |
-
|
4096 |
-
.col-lg-5 {
|
4097 |
-
width: 41.66666667%
|
4098 |
-
}
|
4099 |
-
|
4100 |
-
.col-lg-4 {
|
4101 |
-
width: 33.33333333%
|
4102 |
-
}
|
4103 |
-
|
4104 |
-
.col-lg-3 {
|
4105 |
-
width: 25%
|
4106 |
-
}
|
4107 |
-
|
4108 |
-
.col-lg-2 {
|
4109 |
-
width: 16.66666667%
|
4110 |
-
}
|
4111 |
-
|
4112 |
-
.col-lg-1 {
|
4113 |
-
width: 8.33333333%
|
4114 |
-
}
|
4115 |
-
|
4116 |
-
.col-lg-pull-12 {
|
4117 |
-
right: 100%
|
4118 |
-
}
|
4119 |
-
|
4120 |
-
.col-lg-pull-11 {
|
4121 |
-
right: 91.66666667%
|
4122 |
-
}
|
4123 |
-
|
4124 |
-
.col-lg-pull-10 {
|
4125 |
-
right: 83.33333333%
|
4126 |
-
}
|
4127 |
-
|
4128 |
-
.col-lg-pull-9 {
|
4129 |
-
right: 75%
|
4130 |
-
}
|
4131 |
-
|
4132 |
-
.col-lg-pull-8 {
|
4133 |
-
right: 66.66666667%
|
4134 |
-
}
|
4135 |
-
|
4136 |
-
.col-lg-pull-7 {
|
4137 |
-
right: 58.33333333%
|
4138 |
-
}
|
4139 |
-
|
4140 |
-
.col-lg-pull-6 {
|
4141 |
-
right: 50%
|
4142 |
-
}
|
4143 |
-
|
4144 |
-
.col-lg-pull-5 {
|
4145 |
-
right: 41.66666667%
|
4146 |
-
}
|
4147 |
-
|
4148 |
-
.col-lg-pull-4 {
|
4149 |
-
right: 33.33333333%
|
4150 |
-
}
|
4151 |
-
|
4152 |
-
.col-lg-pull-3 {
|
4153 |
-
right: 25%
|
4154 |
-
}
|
4155 |
-
|
4156 |
-
.col-lg-pull-2 {
|
4157 |
-
right: 16.66666667%
|
4158 |
-
}
|
4159 |
-
|
4160 |
-
.col-lg-pull-1 {
|
4161 |
-
right: 8.33333333%
|
4162 |
-
}
|
4163 |
-
|
4164 |
-
.col-lg-pull-0 {
|
4165 |
-
right: auto
|
4166 |
-
}
|
4167 |
-
|
4168 |
-
.col-lg-push-12 {
|
4169 |
-
left: 100%
|
4170 |
-
}
|
4171 |
-
|
4172 |
-
.col-lg-push-11 {
|
4173 |
-
left: 91.66666667%
|
4174 |
-
}
|
4175 |
-
|
4176 |
-
.col-lg-push-10 {
|
4177 |
-
left: 83.33333333%
|
4178 |
-
}
|
4179 |
-
|
4180 |
-
.col-lg-push-9 {
|
4181 |
-
left: 75%
|
4182 |
-
}
|
4183 |
-
|
4184 |
-
.col-lg-push-8 {
|
4185 |
-
left: 66.66666667%
|
4186 |
-
}
|
4187 |
-
|
4188 |
-
.col-lg-push-7 {
|
4189 |
-
left: 58.33333333%
|
4190 |
-
}
|
4191 |
-
|
4192 |
-
.col-lg-push-6 {
|
4193 |
-
left: 50%
|
4194 |
-
}
|
4195 |
-
|
4196 |
-
.col-lg-push-5 {
|
4197 |
-
left: 41.66666667%
|
4198 |
-
}
|
4199 |
-
|
4200 |
-
.col-lg-push-4 {
|
4201 |
-
left: 33.33333333%
|
4202 |
-
}
|
4203 |
-
|
4204 |
-
.col-lg-push-3 {
|
4205 |
-
left: 25%
|
4206 |
-
}
|
4207 |
-
|
4208 |
-
.col-lg-push-2 {
|
4209 |
-
left: 16.66666667%
|
4210 |
-
}
|
4211 |
-
|
4212 |
-
.col-lg-push-1 {
|
4213 |
-
left: 8.33333333%
|
4214 |
-
}
|
4215 |
-
|
4216 |
-
.col-lg-push-0 {
|
4217 |
-
left: auto
|
4218 |
-
}
|
4219 |
-
|
4220 |
-
.col-lg-offset-12 {
|
4221 |
-
margin-left: 100%
|
4222 |
-
}
|
4223 |
-
|
4224 |
-
.col-lg-offset-11 {
|
4225 |
-
margin-left: 91.66666667%
|
4226 |
-
}
|
4227 |
-
|
4228 |
-
.col-lg-offset-10 {
|
4229 |
-
margin-left: 83.33333333%
|
4230 |
-
}
|
4231 |
-
|
4232 |
-
.col-lg-offset-9 {
|
4233 |
-
margin-left: 75%
|
4234 |
-
}
|
4235 |
-
|
4236 |
-
.col-lg-offset-8 {
|
4237 |
-
margin-left: 66.66666667%
|
4238 |
-
}
|
4239 |
-
|
4240 |
-
.col-lg-offset-7 {
|
4241 |
-
margin-left: 58.33333333%
|
4242 |
-
}
|
4243 |
-
|
4244 |
-
.col-lg-offset-6 {
|
4245 |
-
margin-left: 50%
|
4246 |
-
}
|
4247 |
-
|
4248 |
-
.col-lg-offset-5 {
|
4249 |
-
margin-left: 41.66666667%
|
4250 |
-
}
|
4251 |
-
|
4252 |
-
.col-lg-offset-4 {
|
4253 |
-
margin-left: 33.33333333%
|
4254 |
-
}
|
4255 |
-
|
4256 |
-
.col-lg-offset-3 {
|
4257 |
-
margin-left: 25%
|
4258 |
-
}
|
4259 |
-
|
4260 |
-
.col-lg-offset-2 {
|
4261 |
-
margin-left: 16.66666667%
|
4262 |
-
}
|
4263 |
-
|
4264 |
-
.col-lg-offset-1 {
|
4265 |
-
margin-left: 8.33333333%
|
4266 |
-
}
|
4267 |
-
|
4268 |
-
.col-lg-offset-0 {
|
4269 |
-
margin-left: 0
|
4270 |
-
}
|
4271 |
-
}
|
4272 |
-
|
4273 |
-
#sfsi_plus_jivo_offline_chat {
|
4274 |
-
position: fixed;
|
4275 |
-
bottom: 0;
|
4276 |
-
right: 30px;
|
4277 |
-
height: 350px;
|
4278 |
-
min-width: 45%;
|
4279 |
-
background: #fff;
|
4280 |
-
border-top-left-radius: 30px;
|
4281 |
-
border-top-right-radius: 30px;
|
4282 |
-
padding: 10px;
|
4283 |
-
border: 3px solid #ddd;
|
4284 |
-
border-bottom: 0;
|
4285 |
-
}
|
4286 |
-
|
4287 |
-
#sfsi_plus_jivo_offline_chat .heading-text {
|
4288 |
-
font-size: 16px;
|
4289 |
-
font-weight: 500;
|
4290 |
-
color: #999;
|
4291 |
-
}
|
4292 |
-
|
4293 |
-
#sfsi_plus_jivo_offline_chat .heading-text a {
|
4294 |
-
font-size: 16px;
|
4295 |
-
font-weight: 900;
|
4296 |
-
color: #999;
|
4297 |
-
}
|
4298 |
-
|
4299 |
-
#sfsi_plus_jivo_offline_chat .tab-changer {
|
4300 |
-
/*width:100%;*/
|
4301 |
-
padding: 0 15px;
|
4302 |
-
|
4303 |
-
}
|
4304 |
-
|
4305 |
-
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link {
|
4306 |
-
float: left;
|
4307 |
-
width: 50%;
|
4308 |
-
text-align: center;
|
4309 |
-
background: #eee;
|
4310 |
-
border-bottom: 5px solid #24497B;
|
4311 |
-
}
|
4312 |
-
|
4313 |
-
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link:first-child {
|
4314 |
-
border-top-left-radius: 8px;
|
4315 |
-
}
|
4316 |
-
|
4317 |
-
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link:last-child {
|
4318 |
-
border-top-right-radius: 8px;
|
4319 |
-
}
|
4320 |
-
|
4321 |
-
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link p {
|
4322 |
-
background: #eee;
|
4323 |
-
padding: 5px 0;
|
4324 |
-
margin: 0;
|
4325 |
-
border-top-left-radius: 10px;
|
4326 |
-
border-top-right-radius: 10px;
|
4327 |
-
font-size: 25px;
|
4328 |
-
cursor: pointer;
|
4329 |
-
line-height: 1;
|
4330 |
-
}
|
4331 |
-
|
4332 |
-
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link p span {
|
4333 |
-
font-size: 15px;
|
4334 |
-
}
|
4335 |
-
|
4336 |
-
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link.active p {
|
4337 |
-
background: #24497B;
|
4338 |
-
color: #fff;
|
4339 |
-
}
|
4340 |
-
|
4341 |
-
#sfsi_plus_jivo_offline_chat .tabs {
|
4342 |
-
/*background: #dbeef4;*/
|
4343 |
-
background: #ddd;
|
4344 |
-
margin: -6px 15px 0 15px;
|
4345 |
-
min-height: 250px;
|
4346 |
-
}
|
4347 |
-
|
4348 |
-
#sfsi_plus_jivo_offline_chat #sfsi_technical {
|
4349 |
-
padding: 50px;
|
4350 |
-
}
|
4351 |
-
|
4352 |
-
#sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div {
|
4353 |
-
margin: 10px 0;
|
4354 |
-
}
|
4355 |
-
|
4356 |
-
#sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div a {
|
4357 |
-
padding: 20px 26px 18px 25px;
|
4358 |
-
width: 245px;
|
4359 |
-
margin: 0;
|
4360 |
-
}
|
4361 |
-
|
4362 |
-
#sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div a img {
|
4363 |
-
margin-top: 11px;
|
4364 |
-
}
|
4365 |
-
|
4366 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_technical p {
|
4367 |
-
font-size: 20px;
|
4368 |
-
padding-top: 5px;
|
4369 |
-
margin: 0;
|
4370 |
-
}
|
4371 |
-
|
4372 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales {
|
4373 |
-
padding: 15px;
|
4374 |
-
}
|
4375 |
-
|
4376 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .right-message {
|
4377 |
-
width: 50%;
|
4378 |
-
float: right;
|
4379 |
-
text-align: right;
|
4380 |
-
margin: 0;
|
4381 |
-
}
|
4382 |
-
|
4383 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales form>div {
|
4384 |
-
margin-top: 5px;
|
4385 |
-
}
|
4386 |
-
|
4387 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales label {
|
4388 |
-
font-size: 20px;
|
4389 |
-
color: #000;
|
4390 |
-
font-weight: 900;
|
4391 |
-
padding-bottom: 5px;
|
4392 |
-
}
|
4393 |
-
|
4394 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input,
|
4395 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales textarea {
|
4396 |
-
margin-top: 5px;
|
4397 |
-
width: 100%;
|
4398 |
-
border: 0;
|
4399 |
-
box-shadow: 0 0 5px 0 #888;
|
4400 |
-
}
|
4401 |
-
|
4402 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input {
|
4403 |
-
height: 40px;
|
4404 |
-
}
|
4405 |
-
|
4406 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales textarea {
|
4407 |
-
height: 80px;
|
4408 |
-
resize: none;
|
4409 |
-
}
|
4410 |
-
|
4411 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
|
4412 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
|
4413 |
-
border: 0;
|
4414 |
-
background: #079345;
|
4415 |
-
color: #fff;
|
4416 |
-
margin-top: 23px;
|
4417 |
-
width: 100%;
|
4418 |
-
font-size: 16px;
|
4419 |
-
border-radius: 4px;
|
4420 |
-
cursor: pointer;
|
4421 |
-
box-shadow: none;
|
4422 |
-
}
|
4423 |
-
|
4424 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent {
|
4425 |
-
text-align: center;
|
4426 |
-
}
|
4427 |
-
|
4428 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
|
4429 |
-
font-size: 35px;
|
4430 |
-
}
|
4431 |
-
|
4432 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
|
4433 |
-
font-size: 25px;
|
4434 |
-
font-weight: 300;
|
4435 |
-
}
|
4436 |
-
|
4437 |
-
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
|
4438 |
-
width: auto;
|
4439 |
-
margin-top: 0;
|
4440 |
-
padding: 10px;
|
4441 |
-
}
|
4442 |
-
|
4443 |
-
#sfsi_plus_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
|
4444 |
-
font-size: 13px !important;
|
4445 |
-
font-weight: 900;
|
4446 |
-
float: right;
|
4447 |
-
text-align: right;
|
4448 |
-
margin-top: -40px !important;
|
4449 |
-
}
|
4450 |
-
|
4451 |
-
#sfsi_plus_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
|
4452 |
-
background-image: url('images/select-arrow.png');
|
4453 |
-
width: 15px;
|
4454 |
-
height: 9px;
|
4455 |
-
display: inline-block;
|
4456 |
-
-webkit-transform: rotate(90deg);
|
4457 |
-
-moz-transform: rotate(90deg);
|
4458 |
-
-ms-transform: rotate(90deg);
|
4459 |
-
-o-transform: rotate(90deg);
|
4460 |
-
transform: rotate(90deg);
|
4461 |
-
}
|
4462 |
-
|
4463 |
-
@media (max-width: 543px) {
|
4464 |
-
#sfsi_plus_jivo_offline_chat {
|
4465 |
-
width: 400px;
|
4466 |
-
}
|
4467 |
-
}
|
4468 |
-
|
4469 |
-
/* MZ CSS */
|
4470 |
-
|
4471 |
-
.sfsiLabel {
|
4472 |
-
float: left;
|
4473 |
-
margin-top: -29px;
|
4474 |
-
margin-left: 37px;
|
4475 |
-
color: #5a6570;
|
4476 |
-
text-align: left;
|
4477 |
-
font-family: 'helveticaneue-light';
|
4478 |
-
font-size: 17px;
|
4479 |
-
line-height: 26px;
|
4480 |
-
min-width: 200px;
|
4481 |
-
}
|
4482 |
-
|
4483 |
-
.sfsiLabel1 {
|
4484 |
-
float: left;
|
4485 |
-
margin-top: 32px;
|
4486 |
-
margin-left: 100px;
|
4487 |
-
color: #5a6570;
|
4488 |
-
text-align: left;
|
4489 |
-
font-family: 'helveticaneue-light';
|
4490 |
-
font-size: 17px;
|
4491 |
-
line-height: 26px;
|
4492 |
-
min-width: 200px;
|
4493 |
-
}
|
4494 |
-
|
4495 |
-
.infoLabel {
|
4496 |
-
margin-left: 89px;
|
4497 |
-
margin-bottom: 32px;
|
4498 |
-
float: left;
|
4499 |
-
margin-top: -13px;
|
4500 |
-
|
4501 |
-
color: #5a6570;
|
4502 |
-
text-align: left;
|
4503 |
-
font-family: 'helveticaneue-light';
|
4504 |
-
font-size: 17px;
|
4505 |
-
line-height: 26px;
|
4506 |
-
min-width: 200px;
|
4507 |
-
}
|
4508 |
-
|
4509 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_1_26 {
|
4510 |
-
background: url('../images/icons_theme/default/default_wechat.png');
|
4511 |
-
background-size: contain;
|
4512 |
-
}
|
4513 |
-
|
4514 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_2_26 {
|
4515 |
-
background: url('../images/icons_theme/flat/flat_wechat.png');
|
4516 |
-
background-size: contain;
|
4517 |
-
}
|
4518 |
-
|
4519 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_3_26 {
|
4520 |
-
background: url('../images/icons_theme/thin/thin_wechat.png');
|
4521 |
-
background-size: contain;
|
4522 |
-
}
|
4523 |
-
|
4524 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_4_26 {
|
4525 |
-
background: url('../images/icons_theme/cute/cute_wechat.png');
|
4526 |
-
background-size: contain;
|
4527 |
-
}
|
4528 |
-
|
4529 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_5_26 {
|
4530 |
-
background: url('../images/icons_theme/cubes/cubes_wechat.png');
|
4531 |
-
background-size: contain;
|
4532 |
-
}
|
4533 |
-
|
4534 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_6_26 {
|
4535 |
-
background: url('../images/icons_theme/chrome_blue/chrome_blue_wechat.png');
|
4536 |
-
background-size: contain;
|
4537 |
-
}
|
4538 |
-
|
4539 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_7_26 {
|
4540 |
-
background: url('../images/icons_theme/chrome_grey/chrome_grey_wechat.png');
|
4541 |
-
background-size: contain;
|
4542 |
-
}
|
4543 |
-
|
4544 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_8_26 {
|
4545 |
-
background: url('../images/icons_theme/splash/splash_wechat.png');
|
4546 |
-
background-size: contain;
|
4547 |
-
}
|
4548 |
-
|
4549 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_9_26 {
|
4550 |
-
background: url('../images/icons_theme/orange/orange_wechat.png');
|
4551 |
-
background-size: contain;
|
4552 |
-
}
|
4553 |
-
|
4554 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_10_26 {
|
4555 |
-
background: url('../images/icons_theme/crystal/crystal_wechat.png');
|
4556 |
-
background-size: contain;
|
4557 |
-
}
|
4558 |
-
|
4559 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_11_26 {
|
4560 |
-
background: url('../images/icons_theme/glossy/glossy_wechat.png');
|
4561 |
-
background-size: contain;
|
4562 |
-
}
|
4563 |
-
|
4564 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_12_26 {
|
4565 |
-
background: url('../images/icons_theme/black/black_wechat.png');
|
4566 |
-
background-size: contain;
|
4567 |
-
}
|
4568 |
-
|
4569 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_13_26 {
|
4570 |
-
background: url('../images/icons_theme/silver/silver_wechat.png');
|
4571 |
-
background-size: contain;
|
4572 |
-
}
|
4573 |
-
|
4574 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_14_26 {
|
4575 |
-
background: url('../images/icons_theme/shaded_dark/shaded_dark_wechat.png');
|
4576 |
-
background-size: contain;
|
4577 |
-
}
|
4578 |
-
|
4579 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_15_26 {
|
4580 |
-
background: url('../images/icons_theme/shaded_light/shaded_light_wechat.png');
|
4581 |
-
background-size: contain;
|
4582 |
-
}
|
4583 |
-
|
4584 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_16_26 {
|
4585 |
-
background: url('../images/icons_theme/transparent/transparent_wechat.png');
|
4586 |
-
background-size: contain;
|
4587 |
-
}
|
4588 |
-
|
4589 |
-
.tab3 .sfsiplus_wechat_section.sfsiplus_row_17_26 {
|
4590 |
-
background: url('../images/icons_theme/default/default_wechat.png');
|
4591 |
-
background-size: contain;
|
4592 |
-
background-position: 0 0;
|
4593 |
-
}
|
4594 |
-
|
4595 |
-
.sfsi_plus_font_inherit {
|
4596 |
-
font-family: inherit !important;
|
4597 |
-
border: 0 !important;
|
4598 |
-
font-weight: normal !important;
|
4599 |
-
}
|
4600 |
-
|
4601 |
-
.sfisi_plus_font_bold {
|
4602 |
-
font-family: helveticabold !important;
|
4603 |
-
}
|
4604 |
-
|
4605 |
-
.sfsi_plus_instagramInstruction ul>li {
|
4606 |
-
list-style-type: decimal !important;
|
4607 |
-
}
|
4608 |
-
|
4609 |
-
.sfsi_plus_instagramInstruction>p {
|
4610 |
-
list-style-type: decimal !important;
|
4611 |
-
}
|
4612 |
-
|
4613 |
-
.sfsiplus_houzz_section .sfsiLabel,
|
4614 |
-
.sfsiplus_ok_section .sfsiLabel,
|
4615 |
-
.sfsiplus_vk_section .sfsiLabel,
|
4616 |
-
.sfsiplus_weibo_section .sfsiLabel,
|
4617 |
-
.sfsiplus_telegram_section .sfsiLabel1 {
|
4618 |
-
margin-left: 0 !important;
|
4619 |
-
}
|
4620 |
-
|
4621 |
-
.pop-up {
|
4622 |
-
font-weight: bold;
|
4623 |
-
}
|
4624 |
-
|
4625 |
-
.sfsi_plus_quickpay-overlay a {
|
4626 |
-
display: inline !important;
|
4627 |
-
font-size: inherit !important;
|
4628 |
-
text-decoration: underline !important;
|
4629 |
-
font-weight: 900;
|
4630 |
-
color: #666;
|
4631 |
-
}
|
4632 |
-
|
4633 |
-
.sfsi_plus_col_6 {
|
4634 |
-
width: 49%;
|
4635 |
-
display: inline-block;
|
4636 |
-
}
|
4637 |
-
|
4638 |
-
.sfsi_plus_col_6>div {
|
4639 |
-
padding: 18px 30px !important;
|
4640 |
-
margin: 20px 0 0 0;
|
4641 |
-
border: 1px solid #999;
|
4642 |
-
display: inline-block;
|
4643 |
-
float: none;
|
4644 |
-
}
|
4645 |
-
|
4646 |
-
.sfsi_plus_col_6>div:hover {
|
4647 |
-
background-image: radial-gradient(circle, #fff, #eee);
|
4648 |
-
}
|
4649 |
-
|
4650 |
-
.vertical-align {
|
4651 |
-
display: flex;
|
4652 |
-
align-items: center;
|
4653 |
-
justify-content: space-between;
|
4654 |
-
}
|
4655 |
-
|
4656 |
-
.sfsi_vertical_center {
|
4657 |
-
display: flex;
|
4658 |
-
align-items: center;
|
4659 |
-
}
|
4660 |
-
|
4661 |
-
.sfsi_plus_border_left_0 {
|
4662 |
-
border-left: 0 !important;
|
4663 |
-
}
|
4664 |
-
|
4665 |
-
.tab8 .sfsi_plus_inputSec input {
|
4666 |
-
width: 140px !important;
|
4667 |
-
padding: 13px;
|
4668 |
-
}
|
4669 |
-
|
4670 |
-
.tab8 .sfsi_plus_inputSec span {
|
4671 |
-
width: auto;
|
4672 |
-
}
|
4673 |
-
|
4674 |
-
.tab8 .sfsi_plus_inputSec span {
|
4675 |
-
display: inline-block;
|
4676 |
-
font-size: 18px;
|
4677 |
-
vertical-align: middle;
|
4678 |
-
width: 200px;
|
4679 |
-
color: #5A6570;
|
4680 |
-
}
|
4681 |
-
|
4682 |
-
.sfsi_plus_responsive_icon_item_container {
|
4683 |
-
height: 40px;
|
4684 |
-
vertical-align: middle;
|
4685 |
-
margin-top: auto;
|
4686 |
-
margin-bottom: auto;
|
4687 |
-
}
|
4688 |
-
|
4689 |
-
.sfsi_plus_responsive_icon_item_container img {
|
4690 |
-
margin: 7px;
|
4691 |
-
vertical-align: middle !important;
|
4692 |
-
box-shadow: unset !important;
|
4693 |
-
-webkit-box-shadow: unset !important;
|
4694 |
-
max-width: 40px !important;
|
4695 |
-
max-height: 40px;
|
4696 |
-
}
|
4697 |
-
|
4698 |
-
.sfsi_plus_responsive_icon_item_container span {
|
4699 |
-
padding: 7px;
|
4700 |
-
vertical-align: middle !important;
|
4701 |
-
box-shadow: unset !important;
|
4702 |
-
-webkit-box-shadow: unset !important;
|
4703 |
-
line-height: 40px
|
4704 |
-
}
|
4705 |
-
|
4706 |
-
|
4707 |
-
.sfsi_plus_responsive_icon_facebook_container {
|
4708 |
-
background-color: #336699;
|
4709 |
-
}
|
4710 |
-
|
4711 |
-
.sfsi_plus_responsive_icon_follow_container {
|
4712 |
-
background-color: #00B04E;
|
4713 |
-
}
|
4714 |
-
|
4715 |
-
.sfsi_plus_responsive_icon_twitter_container {
|
4716 |
-
background-color: #55ACEE;
|
4717 |
-
}
|
4718 |
-
|
4719 |
-
|
4720 |
-
.sfsi_plus_icons_container_box_fully_container {
|
4721 |
-
flex-wrap: wrap;
|
4722 |
-
}
|
4723 |
-
|
4724 |
-
.sfsi_plus_icons_container_box_fully_container a {
|
4725 |
-
flex-basis: auto !important;
|
4726 |
-
flex-grow: 1;
|
4727 |
-
flex-shrink: 1;
|
4728 |
-
}
|
4729 |
-
|
4730 |
-
.sfsi_plus_responsive_icons .sfsi_plus_icons_container span {
|
4731 |
-
font-family: sans-serif;
|
4732 |
-
font-size: 15px;
|
4733 |
-
}
|
4734 |
-
|
4735 |
-
.sfsi_plus_widget_title {
|
4736 |
-
font-weight: 700;
|
4737 |
-
line-height: 1.2;
|
4738 |
-
font-size: 27px;
|
4739 |
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
4740 |
-
|
4741 |
-
}
|
4742 |
-
|
4743 |
-
.sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container,
|
4744 |
-
.sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container {
|
4745 |
-
padding: 0px 20px;
|
4746 |
-
width: 245px;
|
4747 |
-
text-align: center;
|
4748 |
-
margin-right: 8px;
|
4749 |
-
margin-top: -5px;
|
4750 |
-
}
|
4751 |
-
|
4752 |
-
.sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container img,
|
4753 |
-
.sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container img {
|
4754 |
-
max-height: 25px !important;
|
4755 |
-
max-width: 40px !important;
|
4756 |
-
float: left;
|
4757 |
-
height: 25px;
|
4758 |
-
}
|
4759 |
-
|
4760 |
-
.sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container span,
|
4761 |
-
.sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container span {
|
4762 |
-
color: #ffffff;
|
4763 |
-
font-size: 20px;
|
4764 |
-
padding: 0 10px;
|
4765 |
-
letter-spacing: 0.5px;
|
4766 |
-
font-weight: 500;
|
4767 |
-
}
|
4768 |
-
|
4769 |
-
.tab8 .sfsi_plus_responsive_default_icon_container,
|
4770 |
-
.tab8 .sfsi_plus_responsive_custom_icon_container {
|
4771 |
-
width: 100% !important;
|
4772 |
-
max-width: unset !important;
|
4773 |
-
/* padding-left: 60px!important; */
|
4774 |
-
}
|
4775 |
-
|
4776 |
-
.tab8 .sfsi_plus_responsive_default_icon_container input,
|
4777 |
-
.tab8 .sfsi_plus_responsive_custom_icon_container input {
|
4778 |
-
padding: 8px 11px;
|
4779 |
-
height: 39px;
|
4780 |
-
}
|
4781 |
-
|
4782 |
-
.tab8 .heading-label {
|
4783 |
-
font-size: 18px !important;
|
4784 |
-
font-weight: 400;
|
4785 |
-
}
|
4786 |
-
|
4787 |
-
.sfsi_plus_responsive_default_icon_container,
|
4788 |
-
.sfsi_plus_responsive_custom_icon_container {
|
4789 |
-
padding: 2px 0 !important;
|
4790 |
-
}
|
4791 |
-
|
4792 |
-
.sfsi_plus_responsive_default_icon_container .sfsi_plus_responsive_default_url_toggler,
|
4793 |
-
.sfsi_plus_responsive_custom_icon_container .sfsi_plus_responsive_default_url_toggler,
|
4794 |
-
.sfsi_plus_responsive_default_icon_container .sfsi_plus_responsive_default_url_hide {
|
4795 |
-
color: #337ab7 !important;
|
4796 |
-
font-size: 18px !important;
|
4797 |
-
letter-spacing: 1px;
|
4798 |
-
font-weight: 500;
|
4799 |
-
margin-left: 20px;
|
4800 |
-
text-decoration: none !important
|
4801 |
-
}
|
4802 |
-
|
4803 |
-
.sfsi_plus_responsive_fluid {
|
4804 |
-
text-decoration: none !important;
|
4805 |
-
}
|
4806 |
-
|
4807 |
-
.sfsi_plus_large_button_container {
|
4808 |
-
width: calc(100% - 81px) !important;
|
4809 |
-
}
|
4810 |
-
|
4811 |
-
.sfsi_plus_medium_button_container {
|
4812 |
-
width: calc(100% - 70px) !important;
|
4813 |
-
}
|
4814 |
-
|
4815 |
-
.sfsi_plus_small_button_container {
|
4816 |
-
width: calc(100% - 100px) !important;
|
4817 |
-
}
|
4818 |
-
|
4819 |
-
/* .sfsi_plus_responsive_custom_icon{line-height: 6px;} */
|
4820 |
-
/* .sfsi_plus_responsive_fixed_width .sfsi_plus_responsive_custom_icon{line-height: 6px;} */
|
4821 |
-
/*Override for front end - icon of right height*/
|
4822 |
-
/* .sfsi_plus_responsive_fluid .sfsi_plus_large_button{padding: 13px !important;} */
|
4823 |
-
/* .sfsi_plus_responsive_fluid .sfsi_plus_medium_button{padding: 10px !important;} */
|
4824 |
-
|
4825 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button {
|
4826 |
-
padding: 12px 13px 9px 13px !important;
|
4827 |
-
}
|
4828 |
-
|
4829 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button h3 {
|
4830 |
-
margin: 0px 0px 15px 0px !important;
|
4831 |
-
}
|
4832 |
-
|
4833 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_medium_button {
|
4834 |
-
padding: 9px 10px 7px 10px !important;
|
4835 |
-
}
|
4836 |
-
|
4837 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button {
|
4838 |
-
padding: 12px 13px 9px 13px !important;
|
4839 |
-
}
|
4840 |
-
|
4841 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button h3 {
|
4842 |
-
margin: 0px 0px 15px 0px !important;
|
4843 |
-
}
|
4844 |
-
|
4845 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_medium_button {
|
4846 |
-
padding: 9px 10px 7px 10px !important;
|
4847 |
-
}
|
4848 |
-
|
4849 |
-
.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a .sfsi_plus_responsive_icon_item_container {
|
4850 |
-
/* white-space: nowrap;
|
4851 |
-
overflow: hidden;
|
4852 |
-
text-overflow: ellipsis;*/
|
4853 |
-
display: inline-block;
|
4854 |
-
}
|
4855 |
-
|
4856 |
-
.sfsiplus_right_info ul .sfsi_plus_responsive_icon_option_li .options .field .sfsi_plus_responsive_icons_icon_width input,
|
4857 |
-
.sfsiplus_right_info ul .sfsi_plus_responsive_icon_option_li .options .field input {
|
4858 |
-
width: 75px !important;
|
4859 |
-
background: #ffffff;
|
4860 |
-
box-shadow: none;
|
4861 |
-
border: 1px solid rgb(221, 221, 221);
|
4862 |
-
border-radius: 0px;
|
4863 |
-
}
|
4864 |
-
|
4865 |
-
input[type="number"] {
|
4866 |
-
height: 45px !important;
|
4867 |
-
}
|
4868 |
-
.sfsi_plus_small_button {
|
4869 |
-
line-height: 0px;
|
4870 |
-
height: unset;
|
4871 |
-
padding: 6px !important;
|
4872 |
-
}
|
4873 |
-
.sfsi_plus_small_button span {
|
4874 |
-
margin-left: 10px;
|
4875 |
-
font-size: 16px;
|
4876 |
-
padding: 0px;
|
4877 |
-
line-height: 16px;
|
4878 |
-
vertical-align: -webkit-baseline-middle !important;
|
4879 |
-
margin-left: 10px;
|
4880 |
-
}
|
4881 |
-
.sfsi_plus_small_button img {
|
4882 |
-
max-height: 16px !important;
|
4883 |
-
padding: 0px;
|
4884 |
-
line-height: 0px;
|
4885 |
-
vertical-align: -webkit-baseline-middle !important;
|
4886 |
-
}
|
4887 |
-
.sfsi_plus_medium_button span {
|
4888 |
-
margin-left: 10px;
|
4889 |
-
font-size: 18px;
|
4890 |
-
padding: 0px;
|
4891 |
-
line-height: 16px;
|
4892 |
-
vertical-align: -webkit-baseline-middle !important;
|
4893 |
-
margin-left: 10px;
|
4894 |
-
}
|
4895 |
-
.sfsi_plus_medium_button img {
|
4896 |
-
max-height: 16px !important;
|
4897 |
-
padding: 0px;
|
4898 |
-
line-height: 0px;
|
4899 |
-
vertical-align: -webkit-baseline-middle !important;
|
4900 |
-
}
|
4901 |
-
.sfsi_plus_medium_button {
|
4902 |
-
line-height: 0px;
|
4903 |
-
height: unset;
|
4904 |
-
padding: 10px !important;
|
4905 |
-
}
|
4906 |
-
|
4907 |
-
.sfsi_plus_medium_button span {
|
4908 |
-
margin-left: 10px;
|
4909 |
-
font-size: 18px;
|
4910 |
-
padding: 0px;
|
4911 |
-
line-height: 16px;
|
4912 |
-
vertical-align: -webkit-baseline-middle !important;
|
4913 |
-
margin-left: 10px;
|
4914 |
-
}
|
4915 |
-
.sfsi_plus_medium_button img {
|
4916 |
-
max-height: 16px !important;
|
4917 |
-
padding: 0px;
|
4918 |
-
line-height: 0px;
|
4919 |
-
vertical-align: -webkit-baseline-middle !important;
|
4920 |
-
}
|
4921 |
-
.sfsi_plus_medium_button {
|
4922 |
-
line-height: 0px;
|
4923 |
-
height: unset;
|
4924 |
-
padding: 10px !important;
|
4925 |
-
}
|
4926 |
-
.sfsi_plus_large_button span {
|
4927 |
-
font-size: 20px;
|
4928 |
-
padding: 0px;
|
4929 |
-
line-height: 16px;
|
4930 |
-
vertical-align: -webkit-baseline-middle !important;
|
4931 |
-
display: inline;
|
4932 |
-
margin-left: 10px;
|
4933 |
-
}
|
4934 |
-
.sfsi_plus_large_button img {
|
4935 |
-
max-height: 16px !important;
|
4936 |
-
padding: 0px;
|
4937 |
-
line-height: 0px;
|
4938 |
-
vertical-align: -webkit-baseline-middle !important;
|
4939 |
-
display: inline;
|
4940 |
-
}
|
4941 |
-
.sfsi_plus_large_button {
|
4942 |
-
line-height: 0px;
|
4943 |
-
height: unset;
|
4944 |
-
padding: 13px !important;
|
4945 |
-
}
|
4946 |
-
.tab8 .sfsi_float_position_icon_label {
|
4947 |
-
border: 1px solid #ccc;
|
4948 |
-
border-radius: 18px;
|
4949 |
-
margin-top: 3px;
|
4950 |
-
position: relative;
|
4951 |
-
width: 189px;
|
4952 |
-
height: 148px;
|
4953 |
-
float: left;
|
4954 |
-
}
|
4955 |
-
.tab8 .sfsi_float_position_icon_label img {
|
4956 |
-
margin-left: auto;
|
4957 |
-
margin-right: auto;
|
4958 |
-
display: block;
|
4959 |
-
margin-top: 7px;
|
4960 |
-
}
|
4961 |
-
.tab8 .sfsi_float_position_icon_label img.sfsi_img_center_bottom {
|
4962 |
-
position: absolute;
|
4963 |
-
bottom: 0px;
|
4964 |
-
left: 18%;
|
4965 |
-
}
|
4966 |
-
.tab8 .flthmonpg .radio {
|
4967 |
-
margin-top: 55px;
|
4968 |
-
}
|
4969 |
-
.tab8 ul li .radio {
|
4970 |
-
float: left;
|
4971 |
-
}
|
4972 |
-
@media screen and (max-width: 1366px) and (min-width: 1366px){
|
4973 |
-
.tab8 .sfsi_flicnsoptn3 {
|
4974 |
-
font-size: 18px !important;
|
4975 |
-
min-width: 113px !important;
|
4976 |
-
margin: 60px 0px 0 10px !important;
|
4977 |
-
width: auto !important;
|
4978 |
-
}
|
4979 |
-
}
|
4980 |
-
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns li{
|
4981 |
-
width:33%;
|
4982 |
-
min-width:33%;
|
4983 |
-
}
|
4984 |
-
|
4985 |
-
.sfsi-top-banner-higligted-text{
|
4986 |
-
border: 1px solid green;
|
4987 |
-
border-radius:10px;
|
4988 |
-
padding:10px!important;
|
4989 |
-
background:white;
|
4990 |
-
margin:0!important;
|
4991 |
-
}
|
4992 |
-
.sfsi-top-banner-higligted-text a,.sfsi-top-banner-higligted-text span,.sfsi-top-banner-no-decoration{
|
4993 |
-
text-decoration:none!important;
|
4994 |
-
}
|
4995 |
-
.sfsi-top-header-subheading:before,.sfsi-premium-btn:before,.sfsi-premium-btn:after{
|
4996 |
-
content: "";
|
4997 |
-
border-color: transparent green;
|
4998 |
-
border-style: solid;
|
4999 |
-
border-width: 0.32em 0 0.35em 0.50em;
|
5000 |
-
display: inline-block;
|
5001 |
-
height: 0;
|
5002 |
-
width: 0;
|
5003 |
-
position: relative;
|
5004 |
-
color:green;
|
5005 |
-
padding-right: 5px;
|
5006 |
-
font-size: 22px;
|
5007 |
-
top: 4px;
|
5008 |
-
}
|
5009 |
-
.sfsi-premium-btn:after{
|
5010 |
-
border-width: 0.35em 0.45em 0.35em 0;
|
5011 |
-
right:0;
|
5012 |
-
}
|
5013 |
-
@media screen and (max-width: 786px){
|
5014 |
-
.save_button{
|
5015 |
-
width:auto!important;
|
5016 |
-
}
|
5017 |
-
}
|
5018 |
-
.tab8 .radio_section.tb_4_ck {
|
5019 |
-
margin: 0 15px 0 0 !important;
|
|
|
|
|
|
|
5020 |
}
|
1 |
+
@charset "utf-8";
|
2 |
+
|
3 |
+
@font-face {
|
4 |
+
font-family: helveticabold;
|
5 |
+
src: url(fonts/helvetica_bold_0-webfont.eot);
|
6 |
+
src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
|
7 |
+
font-weight: 400;
|
8 |
+
font-style: normal;
|
9 |
+
}
|
10 |
+
|
11 |
+
@font-face {
|
12 |
+
font-family: helveticaregular;
|
13 |
+
src: url(fonts/helvetica_0-webfont.eot);
|
14 |
+
src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
|
15 |
+
font-weight: 400;
|
16 |
+
font-style: normal;
|
17 |
+
}
|
18 |
+
|
19 |
+
@font-face {
|
20 |
+
font-family: helveticaneue-light;
|
21 |
+
src: url(fonts/helveticaneue-light.eot);
|
22 |
+
src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
|
23 |
+
url(fonts/helveticaneue-light.woff) format('woff'),
|
24 |
+
url(fonts/helveticaneue-light.ttf) format('truetype'),
|
25 |
+
url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
|
26 |
+
font-weight: 400;
|
27 |
+
font-style: normal;
|
28 |
+
}
|
29 |
+
|
30 |
+
body {
|
31 |
+
margin: 0;
|
32 |
+
padding: 0;
|
33 |
+
}
|
34 |
+
|
35 |
+
/*Tab 1*/
|
36 |
+
.tab1 ul.plus_icn_listing li .custom,
|
37 |
+
.tab1 ul.plus_icn_listing li .sfsicls_email,
|
38 |
+
.tab1 ul.plus_icn_listing li .sfsicls_facebook,
|
39 |
+
.tab1 ul.plus_icn_listing li .sfsicls_ggle_pls,
|
40 |
+
.tab1 ul.plus_icn_listing li .sfsicls_instagram,
|
41 |
+
.tab1 ul.plus_icn_listing li .sfsicls_telegram,
|
42 |
+
.tab1 ul.plus_icn_listing li .sfsicls_ok,
|
43 |
+
.tab1 ul.plus_icn_listing li .sfsicls_vk,
|
44 |
+
.tab1 ul.plus_icn_listing li .sfsicls_weibo,
|
45 |
+
.tab1 ul.plus_icn_listing li .sfsicls_houzz,
|
46 |
+
.tab1 ul.plus_icn_listing li .sfsicls_linkdin,
|
47 |
+
.tab1 ul.plus_icn_listing li .sfsicls_pinterest,
|
48 |
+
.tab1 ul.plus_icn_listing li .sfsicls_rs_s,
|
49 |
+
.tab1 ul.plus_icn_listing li .sfsicls_share,
|
50 |
+
.tab1 ul.plus_icn_listing li .sfsicls_twt,
|
51 |
+
.tab1 ul.plus_icn_listing li .sfsicls_utube,
|
52 |
+
.tab1 ul.plus_icn_listing li .sfsicls_wechat {
|
53 |
+
background: url(../images/tab_1_icn_list.png) no-repeat;
|
54 |
+
float: left;
|
55 |
+
padding: 0 0 0 59px;
|
56 |
+
margin: 0 0 0 17px;
|
57 |
+
height: 52px;
|
58 |
+
line-height: 51px;
|
59 |
+
font-family: helveticaregular;
|
60 |
+
font-size: 22px;
|
61 |
+
}
|
62 |
+
|
63 |
+
.tab1 ul.plus_icn_listing li .sfsicls_wechat,
|
64 |
+
.tab1 ul.sfsi_plus_mobile_icon_listing li .sfsicls_wechat {
|
65 |
+
background-image: url('../images/icons_theme/default/default_wechat.png');
|
66 |
+
-webkit-background-size: contain;
|
67 |
+
-moz-background-size: contain;
|
68 |
+
-o-background-size: contain;
|
69 |
+
background-size: contain;
|
70 |
+
}
|
71 |
+
|
72 |
+
.tab2 .row h2.sfsicls_wechat {
|
73 |
+
background-image: url('../images/icons_theme/default/default_wechat.png');
|
74 |
+
}
|
75 |
+
|
76 |
+
.tab1 ul.plus_icn_listing li .sfsicls_rs_s {
|
77 |
+
background-position: 0 0;
|
78 |
+
color: #f7941d;
|
79 |
+
}
|
80 |
+
|
81 |
+
.tab1 ul.plus_icn_listing li .sfsicls_email {
|
82 |
+
background-position: 0 -73px;
|
83 |
+
color: #d1c800;
|
84 |
+
}
|
85 |
+
|
86 |
+
.tab1 ul.plus_icn_listing li .sfsicls_facebook {
|
87 |
+
background-position: 0 -145px;
|
88 |
+
color: #004088;
|
89 |
+
}
|
90 |
+
|
91 |
+
.tab1 ul.plus_icn_listing li .sfsicls_twt {
|
92 |
+
background-position: 0 -221px;
|
93 |
+
color: #00abe3;
|
94 |
+
}
|
95 |
+
|
96 |
+
.tab1 ul.plus_icn_listing li .sfsicls_ggle_pls {
|
97 |
+
background-position: 0 -295px;
|
98 |
+
color: #444749;
|
99 |
+
}
|
100 |
+
|
101 |
+
.tab1 ul.plus_icn_listing li .sfsicls_share {
|
102 |
+
background-position: 0 -372px;
|
103 |
+
color: #ef4746;
|
104 |
+
}
|
105 |
+
|
106 |
+
.tab1 ul.plus_icn_listing li .sfsicls_utube {
|
107 |
+
background-position: 0 -448px;
|
108 |
+
color: #f07963;
|
109 |
+
}
|
110 |
+
|
111 |
+
.tab1 ul.plus_icn_listing li .sfsicls_linkdin {
|
112 |
+
background-position: 0 -548px;
|
113 |
+
color: #1e88c9;
|
114 |
+
}
|
115 |
+
|
116 |
+
.tab1 ul.plus_icn_listing li .sfsicls_pinterest {
|
117 |
+
background-position: 0 -623px;
|
118 |
+
color: #f15f5d;
|
119 |
+
}
|
120 |
+
|
121 |
+
.tab1 ul.plus_icn_listing li .sfsicls_instagram {
|
122 |
+
background-position: 0 -781px;
|
123 |
+
color: #369;
|
124 |
+
}
|
125 |
+
|
126 |
+
.tab1 ul.plus_icn_listing li .sfsicls_telegram {
|
127 |
+
background-position: 0 -1889px;
|
128 |
+
color: #369;
|
129 |
+
}
|
130 |
+
|
131 |
+
.tab1 ul.plus_icn_listing li .sfsicls_vk {
|
132 |
+
background-position: 0 -1968px;
|
133 |
+
color: #369;
|
134 |
+
}
|
135 |
+
|
136 |
+
.tab1 ul.plus_icn_listing li .sfsicls_ok {
|
137 |
+
background-position: 0 -1810px;
|
138 |
+
color: #369;
|
139 |
+
}
|
140 |
+
|
141 |
+
.sfsicls_wechat {
|
142 |
+
background-image: url('../images/icons_theme/default/default_wechat.png');
|
143 |
+
-webkit-background-size: contain;
|
144 |
+
-moz-background-size: contain;
|
145 |
+
-o-background-size: contain;
|
146 |
+
background-size: contain;
|
147 |
+
}
|
148 |
+
|
149 |
+
.tab1 ul.plus_icn_listing li .sfsicls_weibo {
|
150 |
+
background-position: 0 -2046px;
|
151 |
+
color: #369;
|
152 |
+
}
|
153 |
+
|
154 |
+
.tab1 ul.sfsi_premium_mobile_icon_listing li .sfsicls_ok {
|
155 |
+
background-position: 0 -1810px;
|
156 |
+
color: #369;
|
157 |
+
}
|
158 |
+
|
159 |
+
.tab1 ul.plus_icn_listing li .sfsicls_houzz {
|
160 |
+
background-position: 0 -939px;
|
161 |
+
color: #369;
|
162 |
+
}
|
163 |
+
|
164 |
+
.tab1 ul.plus_icn_listing li .custom {
|
165 |
+
background-position: 0 -702px;
|
166 |
+
color: #5a6570;
|
167 |
+
}
|
168 |
+
|
169 |
+
.tab1 ul.plus_icn_listing li .sfsiplus_right_info {
|
170 |
+
width: 70%;
|
171 |
+
float: right;
|
172 |
+
font-family: helveticaregular;
|
173 |
+
margin-right: 13px;
|
174 |
+
}
|
175 |
+
|
176 |
+
ul.plus_icn_listing li .sfsiplus_right_info a {
|
177 |
+
text-decoration: underline;
|
178 |
+
color: #a4a9ad;
|
179 |
+
font-size: 16px;
|
180 |
+
}
|
181 |
+
|
182 |
+
ul.sfsiplus_icn_listing8 li .sfsiplus_right_info a {
|
183 |
+
text-decoration: underline;
|
184 |
+
color: #a4a9ad;
|
185 |
+
font-size: 20px;
|
186 |
+
}
|
187 |
+
|
188 |
+
.tab1 .tab_2_sav {
|
189 |
+
padding-top: 30px;
|
190 |
+
}
|
191 |
+
|
192 |
+
/*Tab 2*/
|
193 |
+
.tab2 .row h2.sfsicls_email,
|
194 |
+
.tab2 .row h2.sfsicls_facebook,
|
195 |
+
.tab2 .row h2.sfsicls_ggle_pls,
|
196 |
+
.tab2 .row h2.sfsicls_instagram,
|
197 |
+
.tab2 .row h2.sfsicls_houzz,
|
198 |
+
.tab2 .row h2.sfsicls_linkdin,
|
199 |
+
.tab2 .row h2.sfsicls_pinterest,
|
200 |
+
.tab2 .row h2.sfsicls_rs_s,
|
201 |
+
.tab2 .row h2.sfsicls_share,
|
202 |
+
.tab2 .row h2.sfsicls_twt,
|
203 |
+
.tab2 .row h2.sfsicls_utube,
|
204 |
+
.tab2 .row h2.sfsicls_snapchat,
|
205 |
+
.tab2 .row h2.sfsicls_whatsapp,
|
206 |
+
.tab2 .row h2.sfsicls_skype,
|
207 |
+
.tab2 .row h2.sfsicls_vimeo,
|
208 |
+
.tab2 .row h2.sfsicls_soundcloud,
|
209 |
+
.tab2 .row h2.sfsicls_yummly,
|
210 |
+
.tab2 .row h2.sfsicls_flickr,
|
211 |
+
.tab2 .row h2.sfsicls_reddit,
|
212 |
+
.tab2 .row h2.sfsicls_tumblr,
|
213 |
+
.tab2 .row h2.sfsicls_fbmessenger,
|
214 |
+
.tab2 .row h2.sfsicls_mix,
|
215 |
+
.tab2 .row h2.sfsicls_ok,
|
216 |
+
.tab2 .row h2.sfsicls_telegram,
|
217 |
+
.tab2 .row h2.sfsicls_vk,
|
218 |
+
.tab2 .row h2.sfsicls_weibo,
|
219 |
+
.tab2 .row h2.sfsicls_wechat,
|
220 |
+
.tab2 .row h2.sfsicls_xing {
|
221 |
+
background: url(../images/tab_1_icn_list.png) no-repeat;
|
222 |
+
padding: 10px 0 0 70px;
|
223 |
+
margin: 15px 0 7px 21px;
|
224 |
+
height: 52px;
|
225 |
+
line-height: 32px;
|
226 |
+
font-family: helveticaregular;
|
227 |
+
font-size: 22px;
|
228 |
+
|
229 |
+
}
|
230 |
+
|
231 |
+
.tab2 .row h2.sfsicls_rs_s {
|
232 |
+
background-position: 0 0;
|
233 |
+
color: #f7941d;
|
234 |
+
}
|
235 |
+
|
236 |
+
.tab2 .row h2.sfsicls_email {
|
237 |
+
background-position: 0 -71px;
|
238 |
+
color: #d1c800;
|
239 |
+
}
|
240 |
+
|
241 |
+
.tab2 .row h2.sfsicls_facebook {
|
242 |
+
background-position: 0 -145px;
|
243 |
+
color: #004088;
|
244 |
+
}
|
245 |
+
|
246 |
+
.tab2 .row h2.sfsicls_twt {
|
247 |
+
background-position: 0 -221px;
|
248 |
+
color: #00abe3;
|
249 |
+
}
|
250 |
+
|
251 |
+
.tab2 .row h2.sfsicls_ggle_pls {
|
252 |
+
background-position: 0 -295px;
|
253 |
+
color: #444749;
|
254 |
+
}
|
255 |
+
|
256 |
+
.tab2 .row h2.sfsicls_share {
|
257 |
+
background-position: 0 -372px;
|
258 |
+
color: #ef4746;
|
259 |
+
}
|
260 |
+
|
261 |
+
.tab2 .row h2.sfsicls_utube {
|
262 |
+
background-position: 0 -448px;
|
263 |
+
color: #f07963;
|
264 |
+
}
|
265 |
+
|
266 |
+
.tab2 .row h2.sfsicls_linkdin {
|
267 |
+
background-position: 0 -548px;
|
268 |
+
color: #1e88c9;
|
269 |
+
}
|
270 |
+
|
271 |
+
.tab2 .row h2.sfsicls_pinterest {
|
272 |
+
background-position: 0 -623px;
|
273 |
+
color: #f15f5d;
|
274 |
+
}
|
275 |
+
|
276 |
+
.tab2 .row h2.sfsicls_instagram {
|
277 |
+
background-position: 0 -781px;
|
278 |
+
color: #369;
|
279 |
+
}
|
280 |
+
|
281 |
+
.tab2 .row h2.sfsicls_houzz {
|
282 |
+
background-position: 0 -939px;
|
283 |
+
color: #7BC043;
|
284 |
+
}
|
285 |
+
|
286 |
+
.tab2 .row h2.sfsicls_snapchat {
|
287 |
+
background-position: 0 -1019px;
|
288 |
+
color: #369;
|
289 |
+
}
|
290 |
+
|
291 |
+
.tab2 .row h2.sfsicls_whatsapp {
|
292 |
+
background-position: 0 -1099px;
|
293 |
+
color: #369;
|
294 |
+
}
|
295 |
+
|
296 |
+
.tab2 .row h2.sfsicls_skype {
|
297 |
+
background-position: 0 -1179px;
|
298 |
+
color: #369;
|
299 |
+
}
|
300 |
+
|
301 |
+
.tab2 .row h2.sfsicls_vimeo {
|
302 |
+
background-position: 0 -1257px;
|
303 |
+
color: #369;
|
304 |
+
}
|
305 |
+
|
306 |
+
.tab2 .row h2.sfsicls_soundcloud {
|
307 |
+
background-position: 0 -1336px;
|
308 |
+
color: #369;
|
309 |
+
}
|
310 |
+
|
311 |
+
.tab2 .row h2.sfsicls_yummly {
|
312 |
+
background-position: 0 -1415px;
|
313 |
+
color: #369;
|
314 |
+
}
|
315 |
+
|
316 |
+
.tab2 .row h2.sfsicls_flickr {
|
317 |
+
background-position: 0 -1494px;
|
318 |
+
color: #369;
|
319 |
+
}
|
320 |
+
|
321 |
+
.tab2 .row h2.sfsicls_reddit {
|
322 |
+
background-position: 0 -1573px;
|
323 |
+
color: #369;
|
324 |
+
}
|
325 |
+
|
326 |
+
.tab2 .row h2.sfsicls_tumblr {
|
327 |
+
background-position: 0 -1653px;
|
328 |
+
color: #369;
|
329 |
+
}
|
330 |
+
|
331 |
+
.tab2 .row h2.sfsicls_fbmessenger {
|
332 |
+
background-position: 0 -2206px;
|
333 |
+
}
|
334 |
+
|
335 |
+
.tab2 .row h2.sfsicls_mix {
|
336 |
+
background-position: 0 -1732px;
|
337 |
+
}
|
338 |
+
|
339 |
+
.tab2 .row h2.sfsicls_ok {
|
340 |
+
background-position: 0 -1810px;
|
341 |
+
;
|
342 |
+
color: #DC752B;
|
343 |
+
}
|
344 |
+
|
345 |
+
.tab2 .row h2.sfsicls_telegram {
|
346 |
+
background-position: 0 -1889px;
|
347 |
+
color: #2E91BC;
|
348 |
+
}
|
349 |
+
|
350 |
+
.tab2 .row h2.sfsicls_vk {
|
351 |
+
background-position: 0 -1968px;
|
352 |
+
color: #4E77A2;
|
353 |
+
}
|
354 |
+
|
355 |
+
.tab2 .row h2.sfsicls_wechat {
|
356 |
+
background-position: 0 -2126px;
|
357 |
+
color: #56AD33;
|
358 |
+
}
|
359 |
+
|
360 |
+
.tab2 .row h2.sfsicls_weibo {
|
361 |
+
background-position: 0 -2046px;
|
362 |
+
color: #B93524;
|
363 |
+
}
|
364 |
+
|
365 |
+
.tab2 .row h2.sfsicls_xing {
|
366 |
+
background-position: 0 -2127px;
|
367 |
+
}
|
368 |
+
|
369 |
+
.tab2 .inr_cont {
|
370 |
+
margin: 0 0 0px 94px;
|
371 |
+
}
|
372 |
+
|
373 |
+
/*replace*/
|
374 |
+
|
375 |
+
.tab2 .radio_section.fb_url.cus_link.instagram_space>ul {
|
376 |
+
float: left;
|
377 |
+
margin: 0 !important;
|
378 |
+
width: 100%;
|
379 |
+
}
|
380 |
+
|
381 |
+
.tab2 .radio_section.fb_url.cus_link.instagram_space ul li {
|
382 |
+
float: left;
|
383 |
+
margin: 10px 0 20px;
|
384 |
+
width: 100%;
|
385 |
+
}
|
386 |
+
|
387 |
+
.tab2 .sfsi_plus_pageurl_type {
|
388 |
+
display: inline-block;
|
389 |
+
float: none !important;
|
390 |
+
vertical-align: middle;
|
391 |
+
width: 100%;
|
392 |
+
}
|
393 |
+
|
394 |
+
.tab2 .sfsi_plus_pageurl_type .radio {
|
395 |
+
display: inline-block;
|
396 |
+
float: none !important;
|
397 |
+
vertical-align: middle;
|
398 |
+
}
|
399 |
+
|
400 |
+
.tab2 .sfsi_plus_pageurl_type>label {
|
401 |
+
float: none !important;
|
402 |
+
width: auto !important;
|
403 |
+
}
|
404 |
+
|
405 |
+
.tab2 .sfsi_plus_whatsapp_share_page_container {
|
406 |
+
margin-left: 170px;
|
407 |
+
}
|
408 |
+
|
409 |
+
.tab2 .sfsi_plus_whatsapp_share_page_container label {
|
410 |
+
float: left !important;
|
411 |
+
font-family: "helveticaneue-light";
|
412 |
+
font-size: 16px !important;
|
413 |
+
margin: 6px 0 0 19px !important;
|
414 |
+
width: 100% !important;
|
415 |
+
}
|
416 |
+
|
417 |
+
.tab2 .sfsi_plus_email_icons_content {
|
418 |
+
display: inline-block;
|
419 |
+
float: none;
|
420 |
+
margin: 0 !important;
|
421 |
+
vertical-align: top;
|
422 |
+
width: 85%;
|
423 |
+
}
|
424 |
+
|
425 |
+
.tab2 .sfsi_plus_email_icons_content textarea.add_txt {
|
426 |
+
margin: 0 !important;
|
427 |
+
}
|
428 |
+
|
429 |
+
.tab2 .sfsi_plus_email_icons_content p {
|
430 |
+
width: 100%;
|
431 |
+
}
|
432 |
+
|
433 |
+
ul.tab_2_email_sec .sf_arow {
|
434 |
+
width: 55px;
|
435 |
+
height: 55px;
|
436 |
+
float: left;
|
437 |
+
background: url(../images/sf_arow_icn.png) no-repeat;
|
438 |
+
margin: 0 0px 0 6px;
|
439 |
+
}
|
440 |
+
|
441 |
+
ul.tab_2_email_sec .email_icn {
|
442 |
+
background: url(../images/tab_1_icn_list.png) 0 -71px no-repeat;
|
443 |
+
width: 60px;
|
444 |
+
height: 52px;
|
445 |
+
float: left;
|
446 |
+
margin: 0 0 0 5px;
|
447 |
+
}
|
448 |
+
|
449 |
+
ul.tab_2_email_sec .subscribe_icn {
|
450 |
+
background: url(../images/tab_1_icn_list.png) 0 -860px no-repeat;
|
451 |
+
width: 60px;
|
452 |
+
height: 52px;
|
453 |
+
float: left;
|
454 |
+
margin: 0 0 0 5px;
|
455 |
+
}
|
456 |
+
|
457 |
+
ul.tab_2_email_sec li .radio {
|
458 |
+
float: left;
|
459 |
+
margin: 8px 0 0;
|
460 |
+
}
|
461 |
+
|
462 |
+
.row ul.tab_2_email_sec li label {
|
463 |
+
margin: 13px 0 0 7px;
|
464 |
+
font-size: 16px;
|
465 |
+
float: left;
|
466 |
+
width: 160px;
|
467 |
+
}
|
468 |
+
|
469 |
+
.row ul.tab_2_email_sec li label span {
|
470 |
+
font-size: 15px;
|
471 |
+
color: #808080;
|
472 |
+
width: 100%;
|
473 |
+
float: left;
|
474 |
+
}
|
475 |
+
|
476 |
+
.tab2 .sfsi_plus_whatsapp_number_container {
|
477 |
+
display: inline-block;
|
478 |
+
vertical-align: middle;
|
479 |
+
width: auto;
|
480 |
+
}
|
481 |
+
|
482 |
+
.tab2 .sfsi_plus_whatsapp_number_container label {
|
483 |
+
font-family: "helveticaneue-light";
|
484 |
+
font-size: 16px !important;
|
485 |
+
margin: 0 0 0 20px !important;
|
486 |
+
width: 100% !important;
|
487 |
+
float: left !important;
|
488 |
+
}
|
489 |
+
|
490 |
+
.tab2 .radio_section.fb_url.twt_fld_2 p {
|
491 |
+
width: 60%;
|
492 |
+
float: left;
|
493 |
+
margin-left: 237px;
|
494 |
+
}
|
495 |
+
|
496 |
+
.tab2 ul.sfsi_plus_email_functions_container,
|
497 |
+
.tab2 ul.sfsi_plus_email_functions_container li {
|
498 |
+
width: 100%;
|
499 |
+
float: left;
|
500 |
+
}
|
501 |
+
|
502 |
+
.tab2 ul.sfsi_plus_email_functions_container {
|
503 |
+
margin: 12px 0 18px 0;
|
504 |
+
}
|
505 |
+
|
506 |
+
.tab2 ul.sfsi_plus_email_functions_container li {
|
507 |
+
margin-bottom: 10px;
|
508 |
+
}
|
509 |
+
|
510 |
+
.tab2 ul.sfsi_plus_email_functions_container li .sfsiplusicnsdvwrp,
|
511 |
+
.tab2 ul.sfsi_plus_email_functions_container li p {
|
512 |
+
width: auto;
|
513 |
+
float: left;
|
514 |
+
}
|
515 |
+
|
516 |
+
.tab2 ul.sfsi_plus_email_functions_container li .sfsiplusicnsdvwrp {
|
517 |
+
margin-right: 10px;
|
518 |
+
}
|
519 |
+
|
520 |
+
.tab2 ul.sfsi_plus_email_functions_container li p {
|
521 |
+
width: 90% !important;
|
522 |
+
padding-top: 5px !important;
|
523 |
+
}
|
524 |
+
|
525 |
+
.tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field {
|
526 |
+
width: 100%;
|
527 |
+
float: left;
|
528 |
+
margin: 10px 10px 10px 50px;
|
529 |
+
}
|
530 |
+
|
531 |
+
.tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field label,
|
532 |
+
.tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field input {
|
533 |
+
width: 110px;
|
534 |
+
float: none;
|
535 |
+
display: inline-block;
|
536 |
+
vertical-align: middle;
|
537 |
+
}
|
538 |
+
|
539 |
+
.tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field input {
|
540 |
+
width: 380px;
|
541 |
+
padding: 10px;
|
542 |
+
}
|
543 |
+
|
544 |
+
/*Tab 3*/
|
545 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_1,
|
546 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_10,
|
547 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_11,
|
548 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_2,
|
549 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_3,
|
550 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_4,
|
551 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_5,
|
552 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_6,
|
553 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_7,
|
554 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_8,
|
555 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_9,
|
556 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_1,
|
557 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_10,
|
558 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_11,
|
559 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_2,
|
560 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_3,
|
561 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_4,
|
562 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_5,
|
563 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_6,
|
564 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_7,
|
565 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_8,
|
566 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_9,
|
567 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_1,
|
568 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_10,
|
569 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_11,
|
570 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_2,
|
571 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_3,
|
572 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_4,
|
573 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_5,
|
574 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_6,
|
575 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_7,
|
576 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_8,
|
577 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_9,
|
578 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_1,
|
579 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_10,
|
580 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_11,
|
581 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_2,
|
582 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_3,
|
583 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_4,
|
584 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_5,
|
585 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_6,
|
586 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_7,
|
587 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_8,
|
588 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_9,
|
589 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_1,
|
590 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_10,
|
591 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_11,
|
592 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_2,
|
593 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_3,
|
594 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_4,
|
595 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_5,
|
596 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_6,
|
597 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_7,
|
598 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_8,
|
599 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_9,
|
600 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_1,
|
601 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_10,
|
602 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_11,
|
603 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_2,
|
604 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_3,
|
605 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_4,
|
606 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_5,
|
607 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_6,
|
608 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_7,
|
609 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_8,
|
610 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_9,
|
611 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_1,
|
612 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_10,
|
613 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_11,
|
614 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_2,
|
615 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_3,
|
616 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_4,
|
617 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_5,
|
618 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_6,
|
619 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_7,
|
620 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_8,
|
621 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_9,
|
622 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_1,
|
623 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_10,
|
624 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_11,
|
625 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_22,
|
626 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_2,
|
627 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_3,
|
628 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_4,
|
629 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_5,
|
630 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_6,
|
631 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_7,
|
632 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_8,
|
633 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_9,
|
634 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_1,
|
635 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_10,
|
636 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_11,
|
637 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_22,
|
638 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_2,
|
639 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_3,
|
640 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_4,
|
641 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_5,
|
642 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_6,
|
643 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_7,
|
644 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_8,
|
645 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_9,
|
646 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_1,
|
647 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_10,
|
648 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_11,
|
649 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_22,
|
650 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_2,
|
651 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_3,
|
652 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_4,
|
653 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_5,
|
654 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_6,
|
655 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_7,
|
656 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_8,
|
657 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_9,
|
658 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_1,
|
659 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_10,
|
660 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_11,
|
661 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_22,
|
662 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_2,
|
663 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_3,
|
664 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_4,
|
665 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_5,
|
666 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_6,
|
667 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_7,
|
668 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_8,
|
669 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_9,
|
670 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_1,
|
671 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_10,
|
672 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_11,
|
673 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_22,
|
674 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_2,
|
675 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_3,
|
676 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_4,
|
677 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_5,
|
678 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_6,
|
679 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_7,
|
680 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_8,
|
681 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_9,
|
682 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_1,
|
683 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_10,
|
684 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_11,
|
685 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_22,
|
686 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_2,
|
687 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_3,
|
688 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_4,
|
689 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_5,
|
690 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_6,
|
691 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_7,
|
692 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_8,
|
693 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_9,
|
694 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_1,
|
695 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_10,
|
696 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_11,
|
697 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_2,
|
698 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_3,
|
699 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_4,
|
700 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_5,
|
701 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_6,
|
702 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_7,
|
703 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_8,
|
704 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_9,
|
705 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_1,
|
706 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_10,
|
707 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_11,
|
708 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_2,
|
709 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_3,
|
710 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_4,
|
711 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_5,
|
712 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_6,
|
713 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_7,
|
714 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_8,
|
715 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_9,
|
716 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_1,
|
717 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_10,
|
718 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_11,
|
719 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_2,
|
720 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_3,
|
721 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_4,
|
722 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_5,
|
723 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_6,
|
724 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_7,
|
725 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_8,
|
726 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_9,
|
727 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_1,
|
728 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_2,
|
729 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_3,
|
730 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_4,
|
731 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_5,
|
732 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_6,
|
733 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_7,
|
734 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_8,
|
735 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_9,
|
736 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_10,
|
737 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_11,
|
738 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_22,
|
739 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_22,
|
740 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_22,
|
741 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_22,
|
742 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_22,
|
743 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_22,
|
744 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_22,
|
745 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_22,
|
746 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_22,
|
747 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_22,
|
748 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_22,
|
749 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_23,
|
750 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_24,
|
751 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_25,
|
752 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_23,
|
753 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_23,
|
754 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_23,
|
755 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_23,
|
756 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_23,
|
757 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_23,
|
758 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_23,
|
759 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_23,
|
760 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_23,
|
761 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_23,
|
762 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_23,
|
763 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_23,
|
764 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_23,
|
765 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_23,
|
766 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_23,
|
767 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_23,
|
768 |
+
|
769 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_24,
|
770 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_24,
|
771 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_24,
|
772 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_24,
|
773 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_24,
|
774 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_24,
|
775 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_24,
|
776 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_24,
|
777 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_24,
|
778 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_24,
|
779 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_24,
|
780 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_24,
|
781 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_24,
|
782 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_24,
|
783 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_24,
|
784 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_24,
|
785 |
+
|
786 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_25,
|
787 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_25,
|
788 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_25,
|
789 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_25,
|
790 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_25,
|
791 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_25,
|
792 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_25,
|
793 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_25,
|
794 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_25,
|
795 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_25,
|
796 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_25,
|
797 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_25,
|
798 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_25,
|
799 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_25,
|
800 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_25,
|
801 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_25,
|
802 |
+
|
803 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_26,
|
804 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_26,
|
805 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_26,
|
806 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_26,
|
807 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_26,
|
808 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_26,
|
809 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_26,
|
810 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_26,
|
811 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_26,
|
812 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_26,
|
813 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_26,
|
814 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_26,
|
815 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_26,
|
816 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_26,
|
817 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_26,
|
818 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_26,
|
819 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_17_26 {
|
820 |
+
background: url(../images/tab_3_icns.png) no-repeat;
|
821 |
+
width: 53px;
|
822 |
+
height: 52px;
|
823 |
+
float: left;
|
824 |
+
margin: 0 4px 0 0;
|
825 |
+
}
|
826 |
+
|
827 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_1 {
|
828 |
+
background-position: -1px 0;
|
829 |
+
}
|
830 |
+
|
831 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_2 {
|
832 |
+
background-position: -60px 0;
|
833 |
+
}
|
834 |
+
|
835 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_3 {
|
836 |
+
background-position: -118px 0;
|
837 |
+
}
|
838 |
+
|
839 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_4 {
|
840 |
+
background-position: -176px 0;
|
841 |
+
}
|
842 |
+
|
843 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_5 {
|
844 |
+
background-position: -235px 0;
|
845 |
+
}
|
846 |
+
|
847 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_6 {
|
848 |
+
background-position: -293px 0;
|
849 |
+
}
|
850 |
+
|
851 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_7 {
|
852 |
+
background-position: -350px 0;
|
853 |
+
}
|
854 |
+
|
855 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_8 {
|
856 |
+
background-position: -409px 0;
|
857 |
+
}
|
858 |
+
|
859 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_9 {
|
860 |
+
background-position: -467px 0;
|
861 |
+
}
|
862 |
+
|
863 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_10 {
|
864 |
+
background-position: -526px 0;
|
865 |
+
}
|
866 |
+
|
867 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_11 {
|
868 |
+
background-position: -711px 0;
|
869 |
+
}
|
870 |
+
|
871 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_22 {
|
872 |
+
background-position: -773px 0;
|
873 |
+
}
|
874 |
+
|
875 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_23 {
|
876 |
+
background-position: -838px 0;
|
877 |
+
}
|
878 |
+
|
879 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_24 {
|
880 |
+
background-position: -909px 0;
|
881 |
+
}
|
882 |
+
|
883 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_25 {
|
884 |
+
background-position: -977px 0;
|
885 |
+
}
|
886 |
+
|
887 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_1_26 {
|
888 |
+
background-position: -1045px 0;
|
889 |
+
}
|
890 |
+
|
891 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_1 {
|
892 |
+
background-position: 0 -74px;
|
893 |
+
}
|
894 |
+
|
895 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_2 {
|
896 |
+
background-position: -60px -74px;
|
897 |
+
}
|
898 |
+
|
899 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_3 {
|
900 |
+
background-position: -118px -74px;
|
901 |
+
}
|
902 |
+
|
903 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_4 {
|
904 |
+
background-position: -176px -74px;
|
905 |
+
}
|
906 |
+
|
907 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_5 {
|
908 |
+
background-position: -235px -74px;
|
909 |
+
}
|
910 |
+
|
911 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_6 {
|
912 |
+
background-position: -293px -74px;
|
913 |
+
}
|
914 |
+
|
915 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_7 {
|
916 |
+
background-position: -350px -74px;
|
917 |
+
}
|
918 |
+
|
919 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_8 {
|
920 |
+
background-position: -409px -74px;
|
921 |
+
}
|
922 |
+
|
923 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_9 {
|
924 |
+
background-position: -467px -74px;
|
925 |
+
}
|
926 |
+
|
927 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_10 {
|
928 |
+
background-position: -526px -74px;
|
929 |
+
}
|
930 |
+
|
931 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_11 {
|
932 |
+
background-position: -711px -74px;
|
933 |
+
}
|
934 |
+
|
935 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_22 {
|
936 |
+
background-position: -773px -74px;
|
937 |
+
}
|
938 |
+
|
939 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_23 {
|
940 |
+
background-position: -838px -74px;
|
941 |
+
}
|
942 |
+
|
943 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_24 {
|
944 |
+
background-position: -909px -74px;
|
945 |
+
}
|
946 |
+
|
947 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_25 {
|
948 |
+
background-position: -977px -74px;
|
949 |
+
}
|
950 |
+
|
951 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_2_26 {
|
952 |
+
background-position: -1045px 0;
|
953 |
+
}
|
954 |
+
|
955 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_1 {
|
956 |
+
background-position: 0 -146px;
|
957 |
+
}
|
958 |
+
|
959 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_2 {
|
960 |
+
background-position: -60px -146px;
|
961 |
+
}
|
962 |
+
|
963 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_3 {
|
964 |
+
background-position: -118px -146px;
|
965 |
+
}
|
966 |
+
|
967 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_4 {
|
968 |
+
background-position: -176px -146px;
|
969 |
+
}
|
970 |
+
|
971 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_5 {
|
972 |
+
background-position: -235px -146px;
|
973 |
+
}
|
974 |
+
|
975 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_6 {
|
976 |
+
background-position: -293px -146px;
|
977 |
+
}
|
978 |
+
|
979 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_7 {
|
980 |
+
background-position: -350px -146px;
|
981 |
+
}
|
982 |
+
|
983 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_8 {
|
984 |
+
background-position: -409px -146px;
|
985 |
+
}
|
986 |
+
|
987 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_9 {
|
988 |
+
background-position: -467px -146px;
|
989 |
+
}
|
990 |
+
|
991 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_10 {
|
992 |
+
background-position: -526px -146px;
|
993 |
+
}
|
994 |
+
|
995 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_11 {
|
996 |
+
background-position: -711px -147px;
|
997 |
+
}
|
998 |
+
|
999 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_22 {
|
1000 |
+
background-position: -773px -147px;
|
1001 |
+
}
|
1002 |
+
|
1003 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_23 {
|
1004 |
+
background-position: -838px -147px;
|
1005 |
+
}
|
1006 |
+
|
1007 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_24 {
|
1008 |
+
background-position: -909px -147px;
|
1009 |
+
}
|
1010 |
+
|
1011 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_25 {
|
1012 |
+
background-position: -977px -147px;
|
1013 |
+
}
|
1014 |
+
|
1015 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_3_26 {
|
1016 |
+
background-position: -1045px 0;
|
1017 |
+
}
|
1018 |
+
|
1019 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_1 {
|
1020 |
+
background-position: 0 -222px;
|
1021 |
+
}
|
1022 |
+
|
1023 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_2 {
|
1024 |
+
background-position: -60px -222px;
|
1025 |
+
}
|
1026 |
+
|
1027 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_3 {
|
1028 |
+
background-position: -118px -222px;
|
1029 |
+
}
|
1030 |
+
|
1031 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_4 {
|
1032 |
+
background-position: -176px -222px;
|
1033 |
+
}
|
1034 |
+
|
1035 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_5 {
|
1036 |
+
background-position: -235px -222px;
|
1037 |
+
}
|
1038 |
+
|
1039 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_6 {
|
1040 |
+
background-position: -293px -222px;
|
1041 |
+
}
|
1042 |
+
|
1043 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_7 {
|
1044 |
+
background-position: -350px -222px;
|
1045 |
+
}
|
1046 |
+
|
1047 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_8 {
|
1048 |
+
background-position: -409px -222px;
|
1049 |
+
}
|
1050 |
+
|
1051 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_9 {
|
1052 |
+
background-position: -467px -222px;
|
1053 |
+
}
|
1054 |
+
|
1055 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_10 {
|
1056 |
+
background-position: -526px -222px;
|
1057 |
+
}
|
1058 |
+
|
1059 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_11 {
|
1060 |
+
background-position: -711px -222px;
|
1061 |
+
}
|
1062 |
+
|
1063 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_22 {
|
1064 |
+
background-position: -773px -222px;
|
1065 |
+
}
|
1066 |
+
|
1067 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_23 {
|
1068 |
+
background-position: -838px -222px;
|
1069 |
+
}
|
1070 |
+
|
1071 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_24 {
|
1072 |
+
background-position: -909px -222px;
|
1073 |
+
}
|
1074 |
+
|
1075 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_25 {
|
1076 |
+
background-position: -977px -222px;
|
1077 |
+
}
|
1078 |
+
|
1079 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_4_26 {
|
1080 |
+
background-position: -1045px 0;
|
1081 |
+
}
|
1082 |
+
|
1083 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_1 {
|
1084 |
+
background-position: 0 -296px;
|
1085 |
+
}
|
1086 |
+
|
1087 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_2 {
|
1088 |
+
background-position: -60px -296px;
|
1089 |
+
}
|
1090 |
+
|
1091 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_3 {
|
1092 |
+
background-position: -118px -296px;
|
1093 |
+
}
|
1094 |
+
|
1095 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_4 {
|
1096 |
+
background-position: -176px -296px;
|
1097 |
+
}
|
1098 |
+
|
1099 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_5 {
|
1100 |
+
background-position: -235px -296px;
|
1101 |
+
}
|
1102 |
+
|
1103 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_6 {
|
1104 |
+
background-position: -293px -296px;
|
1105 |
+
}
|
1106 |
+
|
1107 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_7 {
|
1108 |
+
background-position: -350px -296px;
|
1109 |
+
}
|
1110 |
+
|
1111 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_8 {
|
1112 |
+
background-position: -409px -296px;
|
1113 |
+
}
|
1114 |
+
|
1115 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_9 {
|
1116 |
+
background-position: -467px -296px;
|
1117 |
+
}
|
1118 |
+
|
1119 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_10 {
|
1120 |
+
background-position: -526px -296px;
|
1121 |
+
}
|
1122 |
+
|
1123 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_11 {
|
1124 |
+
background-position: -711px -296px;
|
1125 |
+
}
|
1126 |
+
|
1127 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_22 {
|
1128 |
+
background-position: -773px -296px;
|
1129 |
+
}
|
1130 |
+
|
1131 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_23 {
|
1132 |
+
background-position: -838px -296px;
|
1133 |
+
}
|
1134 |
+
|
1135 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_24 {
|
1136 |
+
background-position: -909px -296px;
|
1137 |
+
}
|
1138 |
+
|
1139 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_25 {
|
1140 |
+
background-position: -977px -296px;
|
1141 |
+
}
|
1142 |
+
|
1143 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_5_26 {
|
1144 |
+
background-position: -1045px 0;
|
1145 |
+
}
|
1146 |
+
|
1147 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_1 {
|
1148 |
+
background-position: 0 -370px;
|
1149 |
+
}
|
1150 |
+
|
1151 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_2 {
|
1152 |
+
background-position: -60px -370px;
|
1153 |
+
}
|
1154 |
+
|
1155 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_3 {
|
1156 |
+
background-position: -118px -370px;
|
1157 |
+
}
|
1158 |
+
|
1159 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_4 {
|
1160 |
+
background-position: -176px -370px;
|
1161 |
+
}
|
1162 |
+
|
1163 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_5 {
|
1164 |
+
background-position: -235px -370px;
|
1165 |
+
}
|
1166 |
+
|
1167 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_6 {
|
1168 |
+
background-position: -293px -370px;
|
1169 |
+
}
|
1170 |
+
|
1171 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_7 {
|
1172 |
+
background-position: -350px -370px;
|
1173 |
+
}
|
1174 |
+
|
1175 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_8 {
|
1176 |
+
background-position: -409px -370px;
|
1177 |
+
}
|
1178 |
+
|
1179 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_9 {
|
1180 |
+
background-position: -468px -370px;
|
1181 |
+
}
|
1182 |
+
|
1183 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_10 {
|
1184 |
+
background-position: -526px -370px;
|
1185 |
+
}
|
1186 |
+
|
1187 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_11 {
|
1188 |
+
background-position: -711px -370px;
|
1189 |
+
}
|
1190 |
+
|
1191 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_22 {
|
1192 |
+
background-position: -773px -370px;
|
1193 |
+
}
|
1194 |
+
|
1195 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_23 {
|
1196 |
+
background-position: -838px -370px;
|
1197 |
+
}
|
1198 |
+
|
1199 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_24 {
|
1200 |
+
background-position: -909px -370px;
|
1201 |
+
}
|
1202 |
+
|
1203 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_25 {
|
1204 |
+
background-position: -977px -370px;
|
1205 |
+
}
|
1206 |
+
|
1207 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_6_26 {
|
1208 |
+
background-position: -1045px 0;
|
1209 |
+
}
|
1210 |
+
|
1211 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_1 {
|
1212 |
+
background-position: 0 -444px;
|
1213 |
+
}
|
1214 |
+
|
1215 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_2 {
|
1216 |
+
background-position: -60px -444px;
|
1217 |
+
}
|
1218 |
+
|
1219 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_3 {
|
1220 |
+
background-position: -118px -444px;
|
1221 |
+
}
|
1222 |
+
|
1223 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_4 {
|
1224 |
+
background-position: -176px -444px;
|
1225 |
+
}
|
1226 |
+
|
1227 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_5 {
|
1228 |
+
background-position: -235px -444px;
|
1229 |
+
}
|
1230 |
+
|
1231 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_6 {
|
1232 |
+
background-position: -293px -444px;
|
1233 |
+
}
|
1234 |
+
|
1235 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_7 {
|
1236 |
+
background-position: -350px -444px;
|
1237 |
+
}
|
1238 |
+
|
1239 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_8 {
|
1240 |
+
background-position: -409px -444px;
|
1241 |
+
}
|
1242 |
+
|
1243 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_9 {
|
1244 |
+
background-position: -466px -444px;
|
1245 |
+
}
|
1246 |
+
|
1247 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_10 {
|
1248 |
+
background-position: -526px -444px;
|
1249 |
+
}
|
1250 |
+
|
1251 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_11 {
|
1252 |
+
background-position: -711px -444px;
|
1253 |
+
}
|
1254 |
+
|
1255 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_22 {
|
1256 |
+
background-position: -773px -444px;
|
1257 |
+
}
|
1258 |
+
|
1259 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_23 {
|
1260 |
+
background-position: -838px -444px;
|
1261 |
+
}
|
1262 |
+
|
1263 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_24 {
|
1264 |
+
background-position: -909px -444px;
|
1265 |
+
}
|
1266 |
+
|
1267 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_25 {
|
1268 |
+
background-position: -977px -444px;
|
1269 |
+
}
|
1270 |
+
|
1271 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_7_26 {
|
1272 |
+
background-position: -1045px 0;
|
1273 |
+
}
|
1274 |
+
|
1275 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_1 {
|
1276 |
+
background-position: 0 -518px;
|
1277 |
+
}
|
1278 |
+
|
1279 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_2 {
|
1280 |
+
background-position: -60px -518px;
|
1281 |
+
}
|
1282 |
+
|
1283 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_3 {
|
1284 |
+
background-position: -118px -518px;
|
1285 |
+
}
|
1286 |
+
|
1287 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_4 {
|
1288 |
+
background-position: -176px -518px;
|
1289 |
+
}
|
1290 |
+
|
1291 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_5 {
|
1292 |
+
background-position: -235px -518px;
|
1293 |
+
}
|
1294 |
+
|
1295 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_6 {
|
1296 |
+
background-position: -293px -518px;
|
1297 |
+
}
|
1298 |
+
|
1299 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_7 {
|
1300 |
+
background-position: -350px -518px;
|
1301 |
+
}
|
1302 |
+
|
1303 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_8 {
|
1304 |
+
background-position: -409px -518px;
|
1305 |
+
}
|
1306 |
+
|
1307 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_9 {
|
1308 |
+
background-position: -467px -518px;
|
1309 |
+
}
|
1310 |
+
|
1311 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_10 {
|
1312 |
+
background-position: -526px -518px;
|
1313 |
+
}
|
1314 |
+
|
1315 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_11 {
|
1316 |
+
background-position: -711px -518px;
|
1317 |
+
}
|
1318 |
+
|
1319 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_22 {
|
1320 |
+
background-position: -773px -518px;
|
1321 |
+
}
|
1322 |
+
|
1323 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_23 {
|
1324 |
+
background-position: -838px -518px;
|
1325 |
+
}
|
1326 |
+
|
1327 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_24 {
|
1328 |
+
background-position: -909px -518px;
|
1329 |
+
}
|
1330 |
+
|
1331 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_25 {
|
1332 |
+
background-position: -977px -518px;
|
1333 |
+
}
|
1334 |
+
|
1335 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_8_26 {
|
1336 |
+
background-position: -1045px 0;
|
1337 |
+
}
|
1338 |
+
|
1339 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_1 {
|
1340 |
+
background-position: 0 -592px;
|
1341 |
+
}
|
1342 |
+
|
1343 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_2 {
|
1344 |
+
background-position: -60px -592px;
|
1345 |
+
}
|
1346 |
+
|
1347 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_3 {
|
1348 |
+
background-position: -118px -592px;
|
1349 |
+
}
|
1350 |
+
|
1351 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_4 {
|
1352 |
+
background-position: -176px -592px;
|
1353 |
+
}
|
1354 |
+
|
1355 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_5 {
|
1356 |
+
background-position: -235px -592px;
|
1357 |
+
}
|
1358 |
+
|
1359 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_6 {
|
1360 |
+
background-position: -293px -592px;
|
1361 |
+
}
|
1362 |
+
|
1363 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_7 {
|
1364 |
+
background-position: -350px -592px;
|
1365 |
+
}
|
1366 |
+
|
1367 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_8 {
|
1368 |
+
background-position: -409px -592px;
|
1369 |
+
}
|
1370 |
+
|
1371 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_9 {
|
1372 |
+
background-position: -467px -592px;
|
1373 |
+
}
|
1374 |
+
|
1375 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_10 {
|
1376 |
+
background-position: -526px -592px;
|
1377 |
+
}
|
1378 |
+
|
1379 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_11 {
|
1380 |
+
background-position: -711px -592px;
|
1381 |
+
}
|
1382 |
+
|
1383 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_22 {
|
1384 |
+
background-position: -773px -592px;
|
1385 |
+
}
|
1386 |
+
|
1387 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_23 {
|
1388 |
+
background-position: -838px -592px;
|
1389 |
+
}
|
1390 |
+
|
1391 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_24 {
|
1392 |
+
background-position: -909px -592px;
|
1393 |
+
}
|
1394 |
+
|
1395 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_25 {
|
1396 |
+
background-position: -977px -592px;
|
1397 |
+
}
|
1398 |
+
|
1399 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_9_26 {
|
1400 |
+
background-position: -1045px 0;
|
1401 |
+
}
|
1402 |
+
|
1403 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_1 {
|
1404 |
+
background-position: 0 -666px;
|
1405 |
+
}
|
1406 |
+
|
1407 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_2 {
|
1408 |
+
background-position: -60px -666px;
|
1409 |
+
}
|
1410 |
+
|
1411 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_3 {
|
1412 |
+
background-position: -118px -666px;
|
1413 |
+
}
|
1414 |
+
|
1415 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_4 {
|
1416 |
+
background-position: -176px -666px;
|
1417 |
+
}
|
1418 |
+
|
1419 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_5 {
|
1420 |
+
background-position: -235px -666px;
|
1421 |
+
}
|
1422 |
+
|
1423 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_6 {
|
1424 |
+
background-position: -293px -666px;
|
1425 |
+
}
|
1426 |
+
|
1427 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_7 {
|
1428 |
+
background-position: -350px -666px;
|
1429 |
+
}
|
1430 |
+
|
1431 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_8 {
|
1432 |
+
background-position: -409px -666px;
|
1433 |
+
}
|
1434 |
+
|
1435 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_9 {
|
1436 |
+
background-position: -467px -666px;
|
1437 |
+
}
|
1438 |
+
|
1439 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_10 {
|
1440 |
+
background-position: -526px -666px;
|
1441 |
+
}
|
1442 |
+
|
1443 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_11 {
|
1444 |
+
background-position: -711px -666px;
|
1445 |
+
}
|
1446 |
+
|
1447 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_22 {
|
1448 |
+
background-position: -773px -666px;
|
1449 |
+
}
|
1450 |
+
|
1451 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_23 {
|
1452 |
+
background-position: -838px -666px;
|
1453 |
+
}
|
1454 |
+
|
1455 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_24 {
|
1456 |
+
background-position: -909px -666px;
|
1457 |
+
}
|
1458 |
+
|
1459 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_25 {
|
1460 |
+
background-position: -977px -666px;
|
1461 |
+
}
|
1462 |
+
|
1463 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_10_26 {
|
1464 |
+
background-position: -1045px 0;
|
1465 |
+
}
|
1466 |
+
|
1467 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_1 {
|
1468 |
+
background-position: 0 -740px;
|
1469 |
+
}
|
1470 |
+
|
1471 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_2 {
|
1472 |
+
background-position: -60px -740px;
|
1473 |
+
}
|
1474 |
+
|
1475 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_3 {
|
1476 |
+
background-position: -118px -740px;
|
1477 |
+
}
|
1478 |
+
|
1479 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_4 {
|
1480 |
+
background-position: -176px -740px;
|
1481 |
+
}
|
1482 |
+
|
1483 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_5 {
|
1484 |
+
background-position: -235px -740px;
|
1485 |
+
}
|
1486 |
+
|
1487 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_6 {
|
1488 |
+
background-position: -293px -740px;
|
1489 |
+
}
|
1490 |
+
|
1491 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_7 {
|
1492 |
+
background-position: -350px -740px;
|
1493 |
+
}
|
1494 |
+
|
1495 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_8 {
|
1496 |
+
background-position: -409px -740px;
|
1497 |
+
}
|
1498 |
+
|
1499 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_9 {
|
1500 |
+
background-position: -467px -740px;
|
1501 |
+
}
|
1502 |
+
|
1503 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_10 {
|
1504 |
+
background-position: -526px -740px;
|
1505 |
+
}
|
1506 |
+
|
1507 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_11 {
|
1508 |
+
background-position: -711px -740px;
|
1509 |
+
}
|
1510 |
+
|
1511 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_22 {
|
1512 |
+
background-position: -773px -740px;
|
1513 |
+
}
|
1514 |
+
|
1515 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_23 {
|
1516 |
+
background-position: -838px -740px;
|
1517 |
+
}
|
1518 |
+
|
1519 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_24 {
|
1520 |
+
background-position: -909px -740px;
|
1521 |
+
}
|
1522 |
+
|
1523 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_25 {
|
1524 |
+
background-position: -977px -740px;
|
1525 |
+
}
|
1526 |
+
|
1527 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_11_26 {
|
1528 |
+
background-position: -1045px 0;
|
1529 |
+
}
|
1530 |
+
|
1531 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_1 {
|
1532 |
+
background-position: 0 -814px;
|
1533 |
+
}
|
1534 |
+
|
1535 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_2 {
|
1536 |
+
background-position: -60px -814px;
|
1537 |
+
}
|
1538 |
+
|
1539 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_3 {
|
1540 |
+
background-position: -118px -814px;
|
1541 |
+
}
|
1542 |
+
|
1543 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_4 {
|
1544 |
+
background-position: -176px -814px;
|
1545 |
+
}
|
1546 |
+
|
1547 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_5 {
|
1548 |
+
background-position: -235px -814px;
|
1549 |
+
}
|
1550 |
+
|
1551 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_6 {
|
1552 |
+
background-position: -293px -814px;
|
1553 |
+
}
|
1554 |
+
|
1555 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_7 {
|
1556 |
+
background-position: -350px -814px;
|
1557 |
+
}
|
1558 |
+
|
1559 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_8 {
|
1560 |
+
background-position: -409px -814px;
|
1561 |
+
}
|
1562 |
+
|
1563 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_9 {
|
1564 |
+
background-position: -467px -814px;
|
1565 |
+
}
|
1566 |
+
|
1567 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_10 {
|
1568 |
+
background-position: -526px -814px;
|
1569 |
+
}
|
1570 |
+
|
1571 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_11 {
|
1572 |
+
background-position: -711px -814px;
|
1573 |
+
}
|
1574 |
+
|
1575 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_22 {
|
1576 |
+
background-position: -773px -814px;
|
1577 |
+
}
|
1578 |
+
|
1579 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_23 {
|
1580 |
+
background-position: -838px -814px;
|
1581 |
+
}
|
1582 |
+
|
1583 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_24 {
|
1584 |
+
background-position: -909px -814px;
|
1585 |
+
}
|
1586 |
+
|
1587 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_25 {
|
1588 |
+
background-position: -977px -814px;
|
1589 |
+
}
|
1590 |
+
|
1591 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_12_26 {
|
1592 |
+
background-position: -1045px 0;
|
1593 |
+
}
|
1594 |
+
|
1595 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_1 {
|
1596 |
+
background-position: 0 -888px;
|
1597 |
+
}
|
1598 |
+
|
1599 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_2 {
|
1600 |
+
background-position: -60px -888px;
|
1601 |
+
}
|
1602 |
+
|
1603 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_3 {
|
1604 |
+
background-position: -118px -888px;
|
1605 |
+
}
|
1606 |
+
|
1607 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_4 {
|
1608 |
+
background-position: -176px -888px;
|
1609 |
+
}
|
1610 |
+
|
1611 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_5 {
|
1612 |
+
background-position: -235px -888px;
|
1613 |
+
}
|
1614 |
+
|
1615 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_6 {
|
1616 |
+
background-position: -293px -888px;
|
1617 |
+
}
|
1618 |
+
|
1619 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_7 {
|
1620 |
+
background-position: -350px -888px;
|
1621 |
+
}
|
1622 |
+
|
1623 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_8 {
|
1624 |
+
background-position: -409px -888px;
|
1625 |
+
}
|
1626 |
+
|
1627 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_9 {
|
1628 |
+
background-position: -467px -888px;
|
1629 |
+
}
|
1630 |
+
|
1631 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_10 {
|
1632 |
+
background-position: -526px -888px;
|
1633 |
+
}
|
1634 |
+
|
1635 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_11 {
|
1636 |
+
background-position: -711px -888px;
|
1637 |
+
}
|
1638 |
+
|
1639 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_22 {
|
1640 |
+
background-position: -773px -888px;
|
1641 |
+
}
|
1642 |
+
|
1643 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_23 {
|
1644 |
+
background-position: -838px -888px;
|
1645 |
+
}
|
1646 |
+
|
1647 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_24 {
|
1648 |
+
background-position: -909px -888px;
|
1649 |
+
}
|
1650 |
+
|
1651 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_25 {
|
1652 |
+
background-position: -977px -888px;
|
1653 |
+
}
|
1654 |
+
|
1655 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_13_26 {
|
1656 |
+
background-position: -1045px 0;
|
1657 |
+
}
|
1658 |
+
|
1659 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_1 {
|
1660 |
+
background-position: 0 -962px;
|
1661 |
+
}
|
1662 |
+
|
1663 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_2 {
|
1664 |
+
background-position: -60px -962px;
|
1665 |
+
}
|
1666 |
+
|
1667 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_3 {
|
1668 |
+
background-position: -118px -962px;
|
1669 |
+
}
|
1670 |
+
|
1671 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_4 {
|
1672 |
+
background-position: -176px -962px;
|
1673 |
+
}
|
1674 |
+
|
1675 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_5 {
|
1676 |
+
background-position: -235px -962px;
|
1677 |
+
}
|
1678 |
+
|
1679 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_6 {
|
1680 |
+
background-position: -293px -962px;
|
1681 |
+
}
|
1682 |
+
|
1683 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_7 {
|
1684 |
+
background-position: -350px -962px;
|
1685 |
+
}
|
1686 |
+
|
1687 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_8 {
|
1688 |
+
background-position: -409px -962px;
|
1689 |
+
}
|
1690 |
+
|
1691 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_9 {
|
1692 |
+
background-position: -467px -962px;
|
1693 |
+
}
|
1694 |
+
|
1695 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_10 {
|
1696 |
+
background-position: -526px -962px;
|
1697 |
+
}
|
1698 |
+
|
1699 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_11 {
|
1700 |
+
background-position: -711px -962px;
|
1701 |
+
}
|
1702 |
+
|
1703 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_22 {
|
1704 |
+
background-position: -773px -962px;
|
1705 |
+
}
|
1706 |
+
|
1707 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_23 {
|
1708 |
+
background-position: -838px -962px;
|
1709 |
+
}
|
1710 |
+
|
1711 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_24 {
|
1712 |
+
background-position: -909px -962px;
|
1713 |
+
}
|
1714 |
+
|
1715 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_25 {
|
1716 |
+
background-position: -977px -962px;
|
1717 |
+
}
|
1718 |
+
|
1719 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_14_26 {
|
1720 |
+
background-position: -1045px 0;
|
1721 |
+
}
|
1722 |
+
|
1723 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_1 {
|
1724 |
+
background-position: 0 -1036px;
|
1725 |
+
}
|
1726 |
+
|
1727 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_2 {
|
1728 |
+
background-position: -60px -1036px;
|
1729 |
+
}
|
1730 |
+
|
1731 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_3 {
|
1732 |
+
background-position: -118px -1036px;
|
1733 |
+
}
|
1734 |
+
|
1735 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_4 {
|
1736 |
+
background-position: -176px -1036px;
|
1737 |
+
}
|
1738 |
+
|
1739 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_5 {
|
1740 |
+
background-position: -235px -1036px;
|
1741 |
+
}
|
1742 |
+
|
1743 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_6 {
|
1744 |
+
background-position: -293px -1036px;
|
1745 |
+
}
|
1746 |
+
|
1747 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_7 {
|
1748 |
+
background-position: -350px -1036px;
|
1749 |
+
}
|
1750 |
+
|
1751 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_8 {
|
1752 |
+
background-position: -409px -1036px;
|
1753 |
+
}
|
1754 |
+
|
1755 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_9 {
|
1756 |
+
background-position: -467px -1036px;
|
1757 |
+
}
|
1758 |
+
|
1759 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_10 {
|
1760 |
+
background-position: -526px -1036px;
|
1761 |
+
}
|
1762 |
+
|
1763 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_11 {
|
1764 |
+
background-position: -711px -1036px;
|
1765 |
+
}
|
1766 |
+
|
1767 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_22 {
|
1768 |
+
background-position: -773px -1036px;
|
1769 |
+
}
|
1770 |
+
|
1771 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_23 {
|
1772 |
+
background-position: -838px -1036px;
|
1773 |
+
}
|
1774 |
+
|
1775 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_24 {
|
1776 |
+
background-position: -909px -1036px;
|
1777 |
+
}
|
1778 |
+
|
1779 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_25 {
|
1780 |
+
background-position: -977px -1036px;
|
1781 |
+
}
|
1782 |
+
|
1783 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_15_26 {
|
1784 |
+
background-position: -1045px 0;
|
1785 |
+
}
|
1786 |
+
|
1787 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_1 {
|
1788 |
+
background-position: 0 -1109px;
|
1789 |
+
}
|
1790 |
+
|
1791 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_2 {
|
1792 |
+
background-position: -60px -1109px;
|
1793 |
+
}
|
1794 |
+
|
1795 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_3 {
|
1796 |
+
background-position: -118px -1109px;
|
1797 |
+
}
|
1798 |
+
|
1799 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_4 {
|
1800 |
+
background-position: -176px -1109px;
|
1801 |
+
}
|
1802 |
+
|
1803 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_5 {
|
1804 |
+
background-position: -235px -1109px;
|
1805 |
+
}
|
1806 |
+
|
1807 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_6 {
|
1808 |
+
background-position: -293px -1109px;
|
1809 |
+
}
|
1810 |
+
|
1811 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_7 {
|
1812 |
+
background-position: -350px -1109px;
|
1813 |
+
}
|
1814 |
+
|
1815 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_8 {
|
1816 |
+
background-position: -409px -1109px;
|
1817 |
+
}
|
1818 |
+
|
1819 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_9 {
|
1820 |
+
background-position: -467px -1109px;
|
1821 |
+
}
|
1822 |
+
|
1823 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_10 {
|
1824 |
+
background-position: -526px -1109px;
|
1825 |
+
}
|
1826 |
+
|
1827 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_11 {
|
1828 |
+
background-position: -711px -1109px;
|
1829 |
+
}
|
1830 |
+
|
1831 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_22 {
|
1832 |
+
background-position: -773px -1109px;
|
1833 |
+
}
|
1834 |
+
|
1835 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_23 {
|
1836 |
+
background-position: -838px -1109px;
|
1837 |
+
}
|
1838 |
+
|
1839 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_24 {
|
1840 |
+
background-position: -909px -1109px;
|
1841 |
+
}
|
1842 |
+
|
1843 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_25 {
|
1844 |
+
background-position: -977px -1109px;
|
1845 |
+
}
|
1846 |
+
|
1847 |
+
.sfsiplus_icns_tab_3 .sfsiplus_row_16_26 {
|
1848 |
+
background-position: -1045px 0;
|
1849 |
+
}
|
1850 |
+
|
1851 |
+
/*Admin menu*/
|
1852 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options div.wp-menu-image {
|
1853 |
+
display: none;
|
1854 |
+
}
|
1855 |
+
|
1856 |
+
#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options {
|
1857 |
+
padding: 0 0 0 38px;
|
1858 |
+
font-family: helveticabold;
|
1859 |
+
}
|
1860 |
+
|
1861 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options {
|
1862 |
+
color: #e12522;
|
1863 |
+
transition: 0s;
|
1864 |
+
background: url(images/left_log_icn.png) 6px 15px no-repeat #000;
|
1865 |
+
background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
|
1866 |
+
color: #fafafa;
|
1867 |
+
}
|
1868 |
+
|
1869 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options:hover {
|
1870 |
+
background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
|
1871 |
+
color: #fafafa;
|
1872 |
+
}
|
1873 |
+
|
1874 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options a.wp-has-current-submenu,
|
1875 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options a.wp-has-current-submenu:hover {
|
1876 |
+
background: url(images/left_log_icn.png) 6px 15px no-repeat #000000;
|
1877 |
+
/*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
|
1878 |
+
color: #e12522;
|
1879 |
+
}
|
1880 |
+
|
1881 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options a.current,
|
1882 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options a.current:hover {
|
1883 |
+
background: url(images/left_log_icn.png) 6px 15px no-repeat #000000 !important;
|
1884 |
+
/*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
|
1885 |
+
color: #e12522 !important;
|
1886 |
+
}
|
1887 |
+
|
1888 |
+
/*tab 9 css*/
|
1889 |
+
.tab9 .sfsi_plus_tab8_container {
|
1890 |
+
width: 100%;
|
1891 |
+
float: left;
|
1892 |
+
}
|
1893 |
+
|
1894 |
+
.tab9 .sfsi_plus_tab8_subcontainer {
|
1895 |
+
float: left;
|
1896 |
+
padding: 20px 0;
|
1897 |
+
width: 100%;
|
1898 |
+
}
|
1899 |
+
|
1900 |
+
.tab9 h3.sfsi_plus_section_title {
|
1901 |
+
font-weight: bold;
|
1902 |
+
}
|
1903 |
+
|
1904 |
+
.tab9 .like_pop_box {
|
1905 |
+
width: 100%;
|
1906 |
+
margin: 35px auto auto;
|
1907 |
+
position: relative;
|
1908 |
+
text-align: center;
|
1909 |
+
}
|
1910 |
+
|
1911 |
+
.tab9 .like_pop_box h2 {
|
1912 |
+
font-family: helveticabold;
|
1913 |
+
text-align: center;
|
1914 |
+
color: #414951;
|
1915 |
+
font-size: 26px;
|
1916 |
+
}
|
1917 |
+
|
1918 |
+
.tab9 .sfsi_plus_subscribe_Popinner {
|
1919 |
+
display: inline-block;
|
1920 |
+
padding: 18px 20px;
|
1921 |
+
-webkit-box-shadow: 0 0 5px #ccc;
|
1922 |
+
border: 1px solid #ededed;
|
1923 |
+
background: #FFF;
|
1924 |
+
position: relative;
|
1925 |
+
}
|
1926 |
+
|
1927 |
+
.tab9 .sfsi_plus_subscribe_Popinner .form-overlay {
|
1928 |
+
height: 100%;
|
1929 |
+
left: 0;
|
1930 |
+
position: absolute;
|
1931 |
+
top: 0;
|
1932 |
+
width: 100%;
|
1933 |
+
}
|
1934 |
+
|
1935 |
+
.tab9 .like_pop_box .sfsi_plus_subscribe_Popinner {
|
1936 |
+
box-shadow: 0 0 5px #ccc;
|
1937 |
+
}
|
1938 |
+
|
1939 |
+
.tab9 .like_pop_box .sfsi_plus_subscribe_Popinner h5 {
|
1940 |
+
margin: 0 0 10px;
|
1941 |
+
padding: 0;
|
1942 |
+
color: #414951;
|
1943 |
+
font-size: 22px;
|
1944 |
+
text-align: center;
|
1945 |
+
}
|
1946 |
+
|
1947 |
+
.tab9 .sfsi_plus_subscribe_Popinner h5 {
|
1948 |
+
margin: 0 0 10px;
|
1949 |
+
padding: 0;
|
1950 |
+
color: #414951;
|
1951 |
+
font-size: 18px;
|
1952 |
+
text-align: center;
|
1953 |
+
}
|
1954 |
+
|
1955 |
+
.tab9 .sfsi_plus_subscription_form_field {
|
1956 |
+
float: left;
|
1957 |
+
margin: 5px 0;
|
1958 |
+
width: 100%;
|
1959 |
+
}
|
1960 |
+
|
1961 |
+
.tab9 .sfsi_plus_subscription_form_field input {
|
1962 |
+
padding: 10px 0px;
|
1963 |
+
text-align: center;
|
1964 |
+
width: 100%;
|
1965 |
+
}
|
1966 |
+
|
1967 |
+
.tab9 .sfsi_plus_tab8_subcontainer label.sfsi_plus_label_text {
|
1968 |
+
float: left;
|
1969 |
+
margin: 10px 0;
|
1970 |
+
width: 100%;
|
1971 |
+
}
|
1972 |
+
|
1973 |
+
.tab9 ul.sfsi_plus_form_info {
|
1974 |
+
list-style: none !important;
|
1975 |
+
margin-left: 32px;
|
1976 |
+
}
|
1977 |
+
|
1978 |
+
.tab9 ul.sfsi_plus_form_info li {
|
1979 |
+
margin: 3px 0;
|
1980 |
+
}
|
1981 |
+
|
1982 |
+
.tab9 .sfsi_plus_subscription_html {
|
1983 |
+
background-color: #e5e5e5;
|
1984 |
+
float: left;
|
1985 |
+
margin: 12px 0 0 30px;
|
1986 |
+
width: 90%;
|
1987 |
+
}
|
1988 |
+
|
1989 |
+
.tab9 .sfsi_plus_seprater {
|
1990 |
+
border-bottom: 1px solid #ccc;
|
1991 |
+
}
|
1992 |
+
|
1993 |
+
.tab9 .sfsi_plus_tab8_subcontainer h5.sfsi_plus_section_subtitle {
|
1994 |
+
float: left;
|
1995 |
+
font-size: 18px;
|
1996 |
+
margin: 5px 0;
|
1997 |
+
width: 100%;
|
1998 |
+
}
|
1999 |
+
|
2000 |
+
.tab9 .sfsi_plus_left_container {
|
2001 |
+
margin-top: 30px;
|
2002 |
+
text-align: center;
|
2003 |
+
width: 24%;
|
2004 |
+
display: inline-block;
|
2005 |
+
}
|
2006 |
+
|
2007 |
+
.tab9 .sfsi_plus_right_container {
|
2008 |
+
display: inline-block;
|
2009 |
+
margin-top: 30px;
|
2010 |
+
padding: 0 20px;
|
2011 |
+
vertical-align: top;
|
2012 |
+
width: 72%;
|
2013 |
+
}
|
2014 |
+
|
2015 |
+
.tab9 .row_tab {
|
2016 |
+
display: inline-block;
|
2017 |
+
margin-bottom: 30px;
|
2018 |
+
width: 100%;
|
2019 |
+
}
|
2020 |
+
|
2021 |
+
.tab9 .row_tab label {
|
2022 |
+
color: #5a6570;
|
2023 |
+
font-size: 16px;
|
2024 |
+
}
|
2025 |
+
|
2026 |
+
.tab9 .row_tab div.sfsi_plus_field {
|
2027 |
+
display: inline-block;
|
2028 |
+
vertical-align: middle;
|
2029 |
+
width: auto;
|
2030 |
+
margin-right: 25px;
|
2031 |
+
}
|
2032 |
+
|
2033 |
+
.tab9 .color_box {
|
2034 |
+
width: 40px;
|
2035 |
+
height: 34px;
|
2036 |
+
border: 3px solid #fff;
|
2037 |
+
box-shadow: 1px 2px 2px #ccc;
|
2038 |
+
float: right;
|
2039 |
+
position: relative;
|
2040 |
+
margin-left: 13px;
|
2041 |
+
}
|
2042 |
+
|
2043 |
+
.tab9 .color_box1 {
|
2044 |
+
width: 100%;
|
2045 |
+
height: 34px;
|
2046 |
+
background: #5a6570;
|
2047 |
+
box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
|
2048 |
+
}
|
2049 |
+
|
2050 |
+
.tab9 .corner {
|
2051 |
+
width: 10px;
|
2052 |
+
height: 10px;
|
2053 |
+
background: #fff;
|
2054 |
+
position: absolute;
|
2055 |
+
right: 0;
|
2056 |
+
bottom: 0;
|
2057 |
+
}
|
2058 |
+
|
2059 |
+
.tab9 .sfsi_plus_right_container label {
|
2060 |
+
color: #5a6570;
|
2061 |
+
font-size: 18px;
|
2062 |
+
}
|
2063 |
+
|
2064 |
+
.tab9 label.sfsi_plus_heding {
|
2065 |
+
display: inline-block;
|
2066 |
+
font-weight: bold;
|
2067 |
+
padding-top: 10px;
|
2068 |
+
width: 303px;
|
2069 |
+
}
|
2070 |
+
|
2071 |
+
.tab9 .border_shadow {
|
2072 |
+
display: inline-block;
|
2073 |
+
vertical-align: top;
|
2074 |
+
}
|
2075 |
+
|
2076 |
+
.tab9 .border_shadow li {
|
2077 |
+
display: inline-block;
|
2078 |
+
vertical-align: top;
|
2079 |
+
padding-right: 20px;
|
2080 |
+
}
|
2081 |
+
|
2082 |
+
.tab9 .border_shadow li span {
|
2083 |
+
vertical-align: middle;
|
2084 |
+
}
|
2085 |
+
|
2086 |
+
.tab9 .border_shadow .radio {
|
2087 |
+
margin-right: 5px;
|
2088 |
+
}
|
2089 |
+
|
2090 |
+
.tab9 .sfsi_plus_field .rec-inp {
|
2091 |
+
background: #e5e5e5 none repeat scroll 0 0;
|
2092 |
+
height: 44px;
|
2093 |
+
text-align: center;
|
2094 |
+
width: 54px;
|
2095 |
+
}
|
2096 |
+
|
2097 |
+
.tab9 .pix {
|
2098 |
+
color: #5a6570;
|
2099 |
+
font-size: 18px;
|
2100 |
+
padding-left: 10px;
|
2101 |
+
vertical-align: middle;
|
2102 |
+
}
|
2103 |
+
|
2104 |
+
.tab9 .sfsi_plus_heding.autowidth {
|
2105 |
+
width: auto;
|
2106 |
+
margin-right: 15px;
|
2107 |
+
}
|
2108 |
+
|
2109 |
+
.tab9 .sfsi_plus_heding.fixwidth {
|
2110 |
+
width: 80px;
|
2111 |
+
}
|
2112 |
+
|
2113 |
+
.tab9 .small {
|
2114 |
+
background-color: #e5e5e5;
|
2115 |
+
height: 44px;
|
2116 |
+
width: 200px;
|
2117 |
+
}
|
2118 |
+
|
2119 |
+
.tab9 .small.new-inp {
|
2120 |
+
background-color: #e5e5e5;
|
2121 |
+
height: 44px;
|
2122 |
+
width: 277px;
|
2123 |
+
}
|
2124 |
+
|
2125 |
+
.tab9 .small.color-code {
|
2126 |
+
width: 138px !important;
|
2127 |
+
}
|
2128 |
+
|
2129 |
+
.tab9 .select-same {
|
2130 |
+
border: 1px solid #d6d6d6;
|
2131 |
+
height: 47px !important;
|
2132 |
+
width: 171px;
|
2133 |
+
appearance: none;
|
2134 |
+
-moz-appearance: none;
|
2135 |
+
-webkit-appearance: none;
|
2136 |
+
background-image: url(images/select-arrow.png);
|
2137 |
+
background-repeat: no-repeat;
|
2138 |
+
background-position: right 15px center;
|
2139 |
+
}
|
2140 |
+
|
2141 |
+
.tab9 .sfsi_plus_same_width {
|
2142 |
+
display: inline-block;
|
2143 |
+
width: 100px !important;
|
2144 |
+
}
|
2145 |
+
|
2146 |
+
.disabled_checkbox .sfsiplus_right_info .sfsiplus_toglepstpgspn {
|
2147 |
+
color: rgba(0, 0, 0, .3);
|
2148 |
+
}
|
2149 |
+
|
2150 |
+
.sfsi_plus_subscription_html xmp {
|
2151 |
+
display: block;
|
2152 |
+
padding: 0 10px;
|
2153 |
+
white-space: pre-line;
|
2154 |
+
word-wrap: break-word;
|
2155 |
+
}
|
2156 |
+
|
2157 |
+
.sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li {
|
2158 |
+
float: left;
|
2159 |
+
width: 300px !important;
|
2160 |
+
max-width: 300px !important;
|
2161 |
+
min-width: 300px !important;
|
2162 |
+
}
|
2163 |
+
|
2164 |
+
.sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec label {
|
2165 |
+
font-size: 17px;
|
2166 |
+
padding-right: 20px;
|
2167 |
+
width: 65px !important;
|
2168 |
+
display: inline-block;
|
2169 |
+
}
|
2170 |
+
|
2171 |
+
.sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li input {
|
2172 |
+
background-color: #dedede;
|
2173 |
+
border: medium none;
|
2174 |
+
box-shadow: none;
|
2175 |
+
padding: 14px 8px;
|
2176 |
+
width: 80px;
|
2177 |
+
}
|
2178 |
+
|
2179 |
+
.sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li ins {
|
2180 |
+
font-size: 17px;
|
2181 |
+
font-weight: 400;
|
2182 |
+
margin-left: 15px;
|
2183 |
+
text-decoration: none;
|
2184 |
+
}
|
2185 |
+
|
2186 |
+
@media (max-width:1160px) {
|
2187 |
+
.sfsi_plus_subscription_html xmp {
|
2188 |
+
display: block;
|
2189 |
+
padding: 0 10px;
|
2190 |
+
white-space: pre-line;
|
2191 |
+
word-wrap: break-word;
|
2192 |
+
}
|
2193 |
+
}
|
2194 |
+
|
2195 |
+
@media (max-width:1350px) {
|
2196 |
+
.tab9 .sfsi_plus_left_container {
|
2197 |
+
width: 100% !important;
|
2198 |
+
}
|
2199 |
+
|
2200 |
+
.tab9 .sfsi_plus_right_container {
|
2201 |
+
width: 100%;
|
2202 |
+
}
|
2203 |
+
|
2204 |
+
.tab9 .border_shadow {
|
2205 |
+
margin-top: 10px;
|
2206 |
+
}
|
2207 |
+
|
2208 |
+
.tab9 .row_tab div.sfsi_plus_field {
|
2209 |
+
margin-bottom: 10px;
|
2210 |
+
}
|
2211 |
+
}
|
2212 |
+
|
2213 |
+
@media (max-width:770px) {
|
2214 |
+
#sfsi_plus_form_heading_fontstyle {
|
2215 |
+
margin-left: 19px !important;
|
2216 |
+
margin-top: 10px !important;
|
2217 |
+
}
|
2218 |
+
}
|
2219 |
+
|
2220 |
+
/*poonam Style*/
|
2221 |
+
.feedClaiming-overlay h1 {
|
2222 |
+
font-size: 22px !important;
|
2223 |
+
font-weight: bolder !important;
|
2224 |
+
margin-top: 7px !important;
|
2225 |
+
}
|
2226 |
+
|
2227 |
+
.feedClaiming-overlay input[type="email"] {
|
2228 |
+
font-size: 16px;
|
2229 |
+
margin: 26px 0 0;
|
2230 |
+
padding: 10px 0;
|
2231 |
+
text-align: center;
|
2232 |
+
width: 100%;
|
2233 |
+
color: #bebebe !important;
|
2234 |
+
box-shadow: none;
|
2235 |
+
}
|
2236 |
+
|
2237 |
+
.feedClaiming-overlay input[type="email"]::-webkit-input-placeholder {
|
2238 |
+
color: #bebebe !important;
|
2239 |
+
}
|
2240 |
+
|
2241 |
+
.feedClaiming-overlay input[type="email"]:-moz-placeholder {
|
2242 |
+
/* Firefox 18- */
|
2243 |
+
color: #bebebe !important;
|
2244 |
+
}
|
2245 |
+
|
2246 |
+
.feedClaiming-overlay input[type="email"]::-moz-placeholder {
|
2247 |
+
/* Firefox 19+ */
|
2248 |
+
color: #bebebe !important;
|
2249 |
+
}
|
2250 |
+
|
2251 |
+
.feedClaiming-overlay input[type="email"]:-ms-input-placeholder {
|
2252 |
+
color: #bebebe !important;
|
2253 |
+
}
|
2254 |
+
|
2255 |
+
.feedClaiming-overlay .save_button {
|
2256 |
+
padding: 0 !important;
|
2257 |
+
width: 100%;
|
2258 |
+
}
|
2259 |
+
|
2260 |
+
.feedClaiming-overlay .save_button a#getMeFullAccess {
|
2261 |
+
border-radius: 4px;
|
2262 |
+
font-size: 18px;
|
2263 |
+
font-weight: bolder;
|
2264 |
+
}
|
2265 |
+
|
2266 |
+
.feedClaiming-overlay .sfsicloseBtn {
|
2267 |
+
right: 8px !important;
|
2268 |
+
top: 8px !important;
|
2269 |
+
}
|
2270 |
+
|
2271 |
+
.feedClaiming-overlay p {
|
2272 |
+
text-align: center !important;
|
2273 |
+
font-size: 12px !important;
|
2274 |
+
line-height: 23px !important;
|
2275 |
+
padding: 18px 0 0 !important;
|
2276 |
+
color: #bebebe !important;
|
2277 |
+
}
|
2278 |
+
|
2279 |
+
.feedClaiming-overlay p a {
|
2280 |
+
display: inline-block;
|
2281 |
+
font-size: 12px;
|
2282 |
+
margin: 0;
|
2283 |
+
padding: 0;
|
2284 |
+
width: auto;
|
2285 |
+
color: #274da3 !important;
|
2286 |
+
}
|
2287 |
+
|
2288 |
+
.feedClaiming-overlay .pop_up_box {
|
2289 |
+
padding: 25px 30px !important;
|
2290 |
+
width: 435px !important;
|
2291 |
+
min-height: 220px;
|
2292 |
+
}
|
2293 |
+
|
2294 |
+
.follows-btn {
|
2295 |
+
float: left;
|
2296 |
+
width: 25%;
|
2297 |
+
}
|
2298 |
+
|
2299 |
+
.preview-btn {
|
2300 |
+
float: left;
|
2301 |
+
width: 10%;
|
2302 |
+
}
|
2303 |
+
|
2304 |
+
.social-img-link {
|
2305 |
+
float: left;
|
2306 |
+
width: 15%;
|
2307 |
+
}
|
2308 |
+
|
2309 |
+
.social-img-link img {
|
2310 |
+
vertical-align: middle;
|
2311 |
+
}
|
2312 |
+
|
2313 |
+
.language-field {
|
2314 |
+
float: left;
|
2315 |
+
width: 24%;
|
2316 |
+
}
|
2317 |
+
|
2318 |
+
.language-field select {
|
2319 |
+
width: 100%;
|
2320 |
+
}
|
2321 |
+
|
2322 |
+
.icons_size {
|
2323 |
+
clear: both;
|
2324 |
+
}
|
2325 |
+
|
2326 |
+
.plus_custom-img img,
|
2327 |
+
.sfsiplus_custom_section img,
|
2328 |
+
.sfsiplus_custom_iconOrder img,
|
2329 |
+
.plus_sfsi_sample_icons img {
|
2330 |
+
width: 51px;
|
2331 |
+
}
|
2332 |
+
|
2333 |
+
.cstomskins_upload span.sfsi_plus-bgimage {
|
2334 |
+
background-size: 51px 51px !important;
|
2335 |
+
}
|
2336 |
+
|
2337 |
+
/* poonam */
|
2338 |
+
.sfsi_plus_premium_brdr_box {
|
2339 |
+
box-sizing: border-box;
|
2340 |
+
}
|
2341 |
+
|
2342 |
+
.sf_si_plus_our_prmium_plugin-add,
|
2343 |
+
.sfsi_plus_prem_icons_added,
|
2344 |
+
.sfsi_plus_new_prmium_follw {
|
2345 |
+
background: #f3faf6;
|
2346 |
+
border: 1px solid #12a252;
|
2347 |
+
padding: 25px 38px 35px 40px;
|
2348 |
+
clear: both;
|
2349 |
+
}
|
2350 |
+
|
2351 |
+
.banner_custom_icon {
|
2352 |
+
margin-left: 94px !important;
|
2353 |
+
float: left;
|
2354 |
+
}
|
2355 |
+
|
2356 |
+
.banner_custom_icon p a {
|
2357 |
+
font-family: helveticabold !important
|
2358 |
+
}
|
2359 |
+
|
2360 |
+
.sf_si_plus_our_prmium_plugin-add {
|
2361 |
+
padding: 25px 38px 45px 44px;
|
2362 |
+
}
|
2363 |
+
|
2364 |
+
.sf_si_plus_default_design ul {
|
2365 |
+
padding: 0;
|
2366 |
+
margin: 0;
|
2367 |
+
}
|
2368 |
+
|
2369 |
+
.sf_si_plus_default_design ul li {
|
2370 |
+
list-style: none;
|
2371 |
+
font-size: 20px;
|
2372 |
+
color: #1a1d20;
|
2373 |
+
clear: both;
|
2374 |
+
}
|
2375 |
+
|
2376 |
+
.sf_si_plus_default_design ul li b {
|
2377 |
+
font-weight: bold;
|
2378 |
+
}
|
2379 |
+
|
2380 |
+
.sf_si_plus_default_design ul li img {
|
2381 |
+
vertical-align: middle;
|
2382 |
+
}
|
2383 |
+
|
2384 |
+
.sf_si_plus_default_design ul li h4 {
|
2385 |
+
color: #1a1d20 !important;
|
2386 |
+
font-size: 20px !important;
|
2387 |
+
font-weight: bold;
|
2388 |
+
padding-bottom: 21px !important;
|
2389 |
+
}
|
2390 |
+
|
2391 |
+
.sf_si_plus_default_design ul li h4 span {
|
2392 |
+
font-weight: normal;
|
2393 |
+
}
|
2394 |
+
|
2395 |
+
.sf_si_plus_default_design ul li b span {
|
2396 |
+
font-weight: normal !important;
|
2397 |
+
}
|
2398 |
+
|
2399 |
+
.sf_si_plus_default_design ul li {
|
2400 |
+
margin: 0 !important;
|
2401 |
+
}
|
2402 |
+
|
2403 |
+
.sf_si_plus_default_design ul li h4.sfsi_plus_second_themedTitle {
|
2404 |
+
padding-bottom: 16px !important;
|
2405 |
+
}
|
2406 |
+
|
2407 |
+
.sfsi_plus_row_table {
|
2408 |
+
clear: both;
|
2409 |
+
}
|
2410 |
+
|
2411 |
+
.sfsi_plus_first_icon_field,
|
2412 |
+
.sfsi_plus_second_icon_img {
|
2413 |
+
display: table-cell;
|
2414 |
+
vertical-align: middle;
|
2415 |
+
padding: 5px 0;
|
2416 |
+
}
|
2417 |
+
|
2418 |
+
.sfsi_plus_first_icon_field {
|
2419 |
+
width: 125px;
|
2420 |
+
}
|
2421 |
+
|
2422 |
+
.sfsi_plus_first_icon_field h2 {
|
2423 |
+
font-size: 18px !important;
|
2424 |
+
color: #1a1d20 !important;
|
2425 |
+
margin: 0 !important;
|
2426 |
+
font-weight: bold !important;
|
2427 |
+
}
|
2428 |
+
|
2429 |
+
.sfsi_plus_first_icon_field p {
|
2430 |
+
color: #1a1d20 !important;
|
2431 |
+
font-size: 12px !important;
|
2432 |
+
margin: 0 !important;
|
2433 |
+
padding: 0 !important;
|
2434 |
+
line-height: 18px !important;
|
2435 |
+
}
|
2436 |
+
|
2437 |
+
.sfsi_plus_cool_font_weight h2 {
|
2438 |
+
font-weight: normal !important;
|
2439 |
+
}
|
2440 |
+
|
2441 |
+
.sf_si_plus_prmium_head span {
|
2442 |
+
font-weight: normal;
|
2443 |
+
}
|
2444 |
+
|
2445 |
+
.sf_si_plus_prmium_head h2 {
|
2446 |
+
font-size: 26px;
|
2447 |
+
color: #000;
|
2448 |
+
font-weight: bold !important;
|
2449 |
+
padding-bottom: 13px !important;
|
2450 |
+
margin-top: 0;
|
2451 |
+
}
|
2452 |
+
|
2453 |
+
.sf_si_plus_our_prmium_plugin-add .sf_si_plus_prmium_head h2 {
|
2454 |
+
padding-bottom: 23px !important;
|
2455 |
+
}
|
2456 |
+
|
2457 |
+
.sfsi_plus_premium_row {
|
2458 |
+
clear: both;
|
2459 |
+
}
|
2460 |
+
|
2461 |
+
.sfsi_plus_prem_cmn_rowlisting {
|
2462 |
+
width: 225px;
|
2463 |
+
float: left;
|
2464 |
+
margin-top: 10px;
|
2465 |
+
margin-bottom: 1px;
|
2466 |
+
}
|
2467 |
+
|
2468 |
+
.sfsi_plus_prem_cmn_rowlisting span {
|
2469 |
+
color: #1a1d20;
|
2470 |
+
font-size: 20px;
|
2471 |
+
display: table-cell;
|
2472 |
+
vertical-align: middle;
|
2473 |
+
padding-right: 10px;
|
2474 |
+
}
|
2475 |
+
|
2476 |
+
.sfsi_mainContainer .sfsi_plus_prem_cmn_rowlisting img {
|
2477 |
+
width: 52px;
|
2478 |
+
height: 52px;
|
2479 |
+
vertical-align: middle;
|
2480 |
+
}
|
2481 |
+
|
2482 |
+
.sfsi_plus_need_another_tell_us,
|
2483 |
+
.sfsi_plus_need_another_one_link {
|
2484 |
+
clear: both;
|
2485 |
+
}
|
2486 |
+
|
2487 |
+
.sfsi_plus_need_another_one_link p {
|
2488 |
+
color: #c1c3c5;
|
2489 |
+
font-size: 18.9px !important;
|
2490 |
+
}
|
2491 |
+
|
2492 |
+
.sfsi_plus_need_another_one_link p a {
|
2493 |
+
color: #12a252 !important;
|
2494 |
+
text-decoration: none;
|
2495 |
+
}
|
2496 |
+
|
2497 |
+
.sfsi_plus_need_another_one_link {
|
2498 |
+
padding: 23px 0 20px 5px;
|
2499 |
+
}
|
2500 |
+
|
2501 |
+
.sf_si_plus_all_features_premium a,
|
2502 |
+
.sfsi_plus_need_another_tell_us a {
|
2503 |
+
color: #12a252 !important;
|
2504 |
+
font-size: 18.9px;
|
2505 |
+
font-weight: bold;
|
2506 |
+
border-bottom: 1px solid #12a252;
|
2507 |
+
text-decoration: none;
|
2508 |
+
}
|
2509 |
+
|
2510 |
+
.sfsi_plus_need_another_tell_us a {
|
2511 |
+
margin-left: 5px;
|
2512 |
+
padding-top: 25px;
|
2513 |
+
}
|
2514 |
+
|
2515 |
+
.sfsi_plus_new_prmium_follw {
|
2516 |
+
margin-top: 20px;
|
2517 |
+
display: inline-block;
|
2518 |
+
padding: 15px 75px 20px 24px;
|
2519 |
+
float: left;
|
2520 |
+
}
|
2521 |
+
|
2522 |
+
.sfsi_plus_new_prmium_follw p {
|
2523 |
+
margin: 0 !important;
|
2524 |
+
}
|
2525 |
+
|
2526 |
+
.sfsi_plus_new_prmium_follw p {
|
2527 |
+
color: #1a1d20 !important;
|
2528 |
+
font-size: 20px !important;
|
2529 |
+
font-family: helveticaregular !important;
|
2530 |
+
}
|
2531 |
+
|
2532 |
+
.sfsi_plus_new_prmium_follw p a {
|
2533 |
+
color: #12a252 !important;
|
2534 |
+
border-bottom: 1px solid #12a252;
|
2535 |
+
text-decoration: none;
|
2536 |
+
}
|
2537 |
+
|
2538 |
+
.sfsi_plus_new_prmium_follw p b {
|
2539 |
+
font-weight: bold;
|
2540 |
+
color: #1a1d20 !important;
|
2541 |
+
}
|
2542 |
+
|
2543 |
+
p.sfsi_plus_prem_plu_desc a,
|
2544 |
+
p.sfsi_plus_prem_plu_desc_define a {
|
2545 |
+
text-decoration: none !important;
|
2546 |
+
color: #00a0d2 !important;
|
2547 |
+
}
|
2548 |
+
|
2549 |
+
p.sfsi_plus_prem_plu_desc {
|
2550 |
+
font-size: 18px !important;
|
2551 |
+
}
|
2552 |
+
|
2553 |
+
p.sfsi_plus_prem_plu_desc_define {
|
2554 |
+
font-size: 18px !important;
|
2555 |
+
border-left: 0px solid transparent !important;
|
2556 |
+
}
|
2557 |
+
|
2558 |
+
.sfsi_plus_icons_prem_disc {
|
2559 |
+
float: left;
|
2560 |
+
padding-top: 20px;
|
2561 |
+
}
|
2562 |
+
|
2563 |
+
.sfsi_plus_prem_show {
|
2564 |
+
padding-top: 140px !important;
|
2565 |
+
}
|
2566 |
+
|
2567 |
+
.sfsi_plus_first_icon_more h2 {
|
2568 |
+
font-size: 18px !important;
|
2569 |
+
color: #1a1d20 !important;
|
2570 |
+
margin: 0 !important;
|
2571 |
+
padding-top: 17px !important;
|
2572 |
+
padding-bottom: 22px !important;
|
2573 |
+
}
|
2574 |
+
|
2575 |
+
.sfsi_plus_fbpaget {
|
2576 |
+
float: left !important;
|
2577 |
+
padding: 4px 0 0 0px !important;
|
2578 |
+
width: 100% !important;
|
2579 |
+
}
|
2580 |
+
|
2581 |
+
.sfsi_plus_fbpaget .sfsi_plus_facebook_count {
|
2582 |
+
width: 100% !important;
|
2583 |
+
padding: 4px 0 0 0px !important;
|
2584 |
+
}
|
2585 |
+
|
2586 |
+
.sfsi_plus_facebook_pagedeasc {
|
2587 |
+
font-size: 14px !important;
|
2588 |
+
padding: 15px 0 0 60px;
|
2589 |
+
width: 42%;
|
2590 |
+
float: right;
|
2591 |
+
line-height: 22px;
|
2592 |
+
color: #080808;
|
2593 |
+
}
|
2594 |
+
|
2595 |
+
p.sfsi_plus_instagram_shared_premium,
|
2596 |
+
p.sfsi_plus_shared_premium {
|
2597 |
+
color: #1a1d20 !important;
|
2598 |
+
font-family: helveticaregular !important;
|
2599 |
+
padding-top: 0 !important;
|
2600 |
+
}
|
2601 |
+
|
2602 |
+
p.sfsi_plus_shared_premium a,
|
2603 |
+
p.sfsi_plus_instagram_shared_premium a {
|
2604 |
+
text-decoration: none;
|
2605 |
+
color: #00a0d2 !important;
|
2606 |
+
}
|
2607 |
+
|
2608 |
+
p.sfsi_plus_shared_premium b,
|
2609 |
+
p.sfsi_plus_instagram_shared_premium b {
|
2610 |
+
font-weight: bold;
|
2611 |
+
}
|
2612 |
+
|
2613 |
+
p.sfsi_plus_instagram_shared_premium {
|
2614 |
+
float: right;
|
2615 |
+
width: 41%;
|
2616 |
+
line-height: 20px;
|
2617 |
+
color: #1f1d1d;
|
2618 |
+
font-size: 13px;
|
2619 |
+
}
|
2620 |
+
|
2621 |
+
.sfsi_plus_fb_popup_contain {
|
2622 |
+
width: 50%;
|
2623 |
+
display: inline-block;
|
2624 |
+
}
|
2625 |
+
|
2626 |
+
.sfsi_plus_icons_align_other {
|
2627 |
+
width: auto;
|
2628 |
+
font-size: 15px !important;
|
2629 |
+
}
|
2630 |
+
|
2631 |
+
/* notification css*/
|
2632 |
+
.sfsi_plus_new_notification {
|
2633 |
+
background-color: #fff;
|
2634 |
+
border: 4px dashed #00c853;
|
2635 |
+
margin-bottom: 30px;
|
2636 |
+
width: 100%;
|
2637 |
+
}
|
2638 |
+
|
2639 |
+
.sfsi_plus_new_notification_header {
|
2640 |
+
background-color: #e8faef;
|
2641 |
+
display: -webkit-box;
|
2642 |
+
display: -webkit-flex;
|
2643 |
+
display: -ms-flexbox;
|
2644 |
+
display: flex;
|
2645 |
+
-webkit-box-align: center;
|
2646 |
+
-webkit-align-items: center;
|
2647 |
+
-ms-flex-align: center;
|
2648 |
+
align-items: center;
|
2649 |
+
-webkit-box-pack: justify;
|
2650 |
+
-webkit-justify-content: space-between;
|
2651 |
+
-ms-flex-pack: justify;
|
2652 |
+
justify-content: space-between;
|
2653 |
+
padding: 10px 0 12px 0;
|
2654 |
+
}
|
2655 |
+
|
2656 |
+
.sfsi_plus_new_notification_header h1 {
|
2657 |
+
margin: 0 !important;
|
2658 |
+
color: #00c853;
|
2659 |
+
font-size: 18px;
|
2660 |
+
margin: 0 auto !important;
|
2661 |
+
font-family: Arial, Helvetica, sans-serif;
|
2662 |
+
}
|
2663 |
+
|
2664 |
+
.sfsi_plus_new_notification_header h1 a {
|
2665 |
+
margin: 0 !important;
|
2666 |
+
color: #00c853;
|
2667 |
+
font-size: 18px;
|
2668 |
+
margin: 0 auto !important;
|
2669 |
+
font-family: Arial, Helvetica, sans-serif;
|
2670 |
+
text-decoration: none;
|
2671 |
+
}
|
2672 |
+
|
2673 |
+
.sfsi_plus_new_notification_cross {
|
2674 |
+
float: right;
|
2675 |
+
font-size: 18px;
|
2676 |
+
font-weight: 700;
|
2677 |
+
line-height: 1;
|
2678 |
+
color: #00c853;
|
2679 |
+
font-family: Arial, Helvetica, sans-serif;
|
2680 |
+
margin-right: 15px;
|
2681 |
+
cursor: pointer;
|
2682 |
+
}
|
2683 |
+
|
2684 |
+
.sfsi_plus_new_notification_body {
|
2685 |
+
width: 100%;
|
2686 |
+
background-color: #fff;
|
2687 |
+
display: -webkit-box;
|
2688 |
+
display: -webkit-flex;
|
2689 |
+
display: -ms-flexbox;
|
2690 |
+
display: flex;
|
2691 |
+
-webkit-box-align: center;
|
2692 |
+
-webkit-align-items: center;
|
2693 |
+
-ms-flex-align: center;
|
2694 |
+
align-items: center;
|
2695 |
+
-webkit-box-pack: justify;
|
2696 |
+
-webkit-justify-content: space-between;
|
2697 |
+
-ms-flex-pack: justify;
|
2698 |
+
justify-content: space-between;
|
2699 |
+
}
|
2700 |
+
|
2701 |
+
.sfsi_plus_new_notification_image {
|
2702 |
+
margin: 0 20px 0px 20px;
|
2703 |
+
width: 100%;
|
2704 |
+
text-align: center;
|
2705 |
+
overflow: hidden;
|
2706 |
+
}
|
2707 |
+
|
2708 |
+
.sfsi_plus_new_notification_image img {
|
2709 |
+
width: auto;
|
2710 |
+
}
|
2711 |
+
|
2712 |
+
.sfsi_plus_new_notification_learnmore {
|
2713 |
+
float: right;
|
2714 |
+
}
|
2715 |
+
|
2716 |
+
.sfsi_plus_new_notification_learnmore {
|
2717 |
+
background-color: #00c853;
|
2718 |
+
display: block;
|
2719 |
+
text-decoration: none;
|
2720 |
+
text-align: center;
|
2721 |
+
font-size: 20px;
|
2722 |
+
font-family: Arial, Helvetica, sans-serif;
|
2723 |
+
width: 150px;
|
2724 |
+
margin-bottom: -4px;
|
2725 |
+
margin-right: -4px;
|
2726 |
+
position: relative;
|
2727 |
+
color: #fff;
|
2728 |
+
padding: 70px 10px;
|
2729 |
+
}
|
2730 |
+
|
2731 |
+
.sfsi_plus_new_notification_body_link a {
|
2732 |
+
display: block;
|
2733 |
+
text-decoration: none;
|
2734 |
+
text-align: center;
|
2735 |
+
font-size: 20px;
|
2736 |
+
font-family: Arial, Helvetica, sans-serif;
|
2737 |
+
color: #fff;
|
2738 |
+
}
|
2739 |
+
|
2740 |
+
/*Tab 4*/
|
2741 |
+
.tab4 .sfsi_plus_tokenGenerateButton {
|
2742 |
+
margin: 25px 0;
|
2743 |
+
}
|
2744 |
+
|
2745 |
+
.tab4 .sfsi_plus_tokenGenerateButton p {
|
2746 |
+
display: inline-block;
|
2747 |
+
margin-bottom: 11px;
|
2748 |
+
vertical-align: middle;
|
2749 |
+
width: 100%;
|
2750 |
+
}
|
2751 |
+
|
2752 |
+
.tab4 .sfsi_plus_tokenGenerateButton a {
|
2753 |
+
background-color: #12a252;
|
2754 |
+
color: #fff;
|
2755 |
+
padding: 10px 20px;
|
2756 |
+
text-decoration: none;
|
2757 |
+
}
|
2758 |
+
|
2759 |
+
.tab4 .sfsi_plus_instagramInstruction {
|
2760 |
+
float: left;
|
2761 |
+
margin-bottom: 12px;
|
2762 |
+
width: 450px;
|
2763 |
+
}
|
2764 |
+
|
2765 |
+
.tab4 .sfsi_plus_instagramInstruction ul {
|
2766 |
+
padding-left: 14px !important;
|
2767 |
+
}
|
2768 |
+
|
2769 |
+
.tab4 .sfsi_plus_instagramInstruction ul li {
|
2770 |
+
font-size: 13px !important;
|
2771 |
+
line-height: 20px !important;
|
2772 |
+
list-style: outside none bullets !important;
|
2773 |
+
margin-top: 5px !important;
|
2774 |
+
padding: 0 !important;
|
2775 |
+
}
|
2776 |
+
|
2777 |
+
.tab4 .sfsi_instagram_follower {
|
2778 |
+
width: 50%;
|
2779 |
+
float: left;
|
2780 |
+
}
|
2781 |
+
|
2782 |
+
/* tab2 emailsection */
|
2783 |
+
.sfsi_plus_service_row {
|
2784 |
+
margin-right: -15px;
|
2785 |
+
margin-left: -15px;
|
2786 |
+
}
|
2787 |
+
|
2788 |
+
.sfsi_plus_service_column {
|
2789 |
+
float: left;
|
2790 |
+
margin-bottom: 40px;
|
2791 |
+
margin-top: 15px;
|
2792 |
+
padding-left: 30px;
|
2793 |
+
width: 47%;
|
2794 |
+
}
|
2795 |
+
|
2796 |
+
.sfsi_plus_service_column ul {
|
2797 |
+
margin-left: 11% !important;
|
2798 |
+
}
|
2799 |
+
|
2800 |
+
.sfsi_plus_service_column ul li {
|
2801 |
+
padding-bottom: 10px;
|
2802 |
+
font-size: 16px;
|
2803 |
+
line-height: 25px;
|
2804 |
+
}
|
2805 |
+
|
2806 |
+
.sfsi_plus_service_column ul li span {
|
2807 |
+
color: #12a252;
|
2808 |
+
}
|
2809 |
+
|
2810 |
+
.sfsi_plus_service_column ul li::before {
|
2811 |
+
content: url(../images/tick-icon.png);
|
2812 |
+
position: relative;
|
2813 |
+
top: 0px;
|
2814 |
+
right: 10px;
|
2815 |
+
text-indent: -22px;
|
2816 |
+
float: left;
|
2817 |
+
}
|
2818 |
+
|
2819 |
+
.sfsi_plus_inputbtn {
|
2820 |
+
clear: both;
|
2821 |
+
display: block;
|
2822 |
+
}
|
2823 |
+
|
2824 |
+
.sfsi_plus_inputbtn input {
|
2825 |
+
width: 100%;
|
2826 |
+
padding: 15px 0px;
|
2827 |
+
text-align: center;
|
2828 |
+
margin-bottom: 10px;
|
2829 |
+
}
|
2830 |
+
|
2831 |
+
.sfsi_plus_email_services_text {
|
2832 |
+
clear: both;
|
2833 |
+
}
|
2834 |
+
|
2835 |
+
.sfsi_plus_email_services_paragraph {
|
2836 |
+
width: 600px;
|
2837 |
+
float: left;
|
2838 |
+
margin-top: 10px;
|
2839 |
+
margin-bottom: 40px;
|
2840 |
+
}
|
2841 |
+
|
2842 |
+
.sfsi_plus_more_services_link a {
|
2843 |
+
background-color: #12a252;
|
2844 |
+
color: #fff !important;
|
2845 |
+
padding: 20px 0px;
|
2846 |
+
text-decoration: none;
|
2847 |
+
text-align: center;
|
2848 |
+
font-size: 20px;
|
2849 |
+
display: block;
|
2850 |
+
clear: both;
|
2851 |
+
font-weight: bold;
|
2852 |
+
}
|
2853 |
+
|
2854 |
+
.sfsi_plus_subscribe_popbox_link a {
|
2855 |
+
color: #00a0d2 !important;
|
2856 |
+
}
|
2857 |
+
|
2858 |
+
.sfsi_plus_email_services_paragraph ul {
|
2859 |
+
margin-left: 11% !important;
|
2860 |
+
}
|
2861 |
+
|
2862 |
+
.sfsi_plus_email_services_paragraph ul li {
|
2863 |
+
padding-bottom: 10px;
|
2864 |
+
font-size: 16px;
|
2865 |
+
}
|
2866 |
+
|
2867 |
+
.sfsi_plus_email_services_paragraph ul li span {
|
2868 |
+
color: #12a252;
|
2869 |
+
}
|
2870 |
+
|
2871 |
+
.sfsi_plus_email_services_paragraph ul li::before {
|
2872 |
+
content: url(../images/tick-icon.png);
|
2873 |
+
position: relative;
|
2874 |
+
top: 5px;
|
2875 |
+
right: 10px;
|
2876 |
+
text-indent: -22px;
|
2877 |
+
float: left;
|
2878 |
+
}
|
2879 |
+
|
2880 |
+
.sfsi_plus_email_last_paragraph {
|
2881 |
+
width: 60%;
|
2882 |
+
text-align: center !important;
|
2883 |
+
margin: 20px auto ! important;
|
2884 |
+
font-size: 16px !important;
|
2885 |
+
color: #a4a9ad !important;
|
2886 |
+
padding-top: 0px !important;
|
2887 |
+
}
|
2888 |
+
|
2889 |
+
.sfsi_plus_email_last_paragraph a {
|
2890 |
+
color: #12a252 !important;
|
2891 |
+
font-family: 'helveticaneue-light' !important;
|
2892 |
+
}
|
2893 |
+
|
2894 |
+
.pop_up_box.sfsi_pop_up.sfsi_pop_box {
|
2895 |
+
padding: 25px 30px 0 !important;
|
2896 |
+
}
|
2897 |
+
|
2898 |
+
#adminmenu #toplevel_page_sfsi-plus-options ul .wp-first-item {
|
2899 |
+
display: none;
|
2900 |
+
}
|
2901 |
+
|
2902 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options ul.wp-submenu a.current,
|
2903 |
+
ul#adminmenu li.toplevel_page_sfsi-plus-options ul.wp-submenu a.current:hover {
|
2904 |
+
background: none !important;
|
2905 |
+
|
2906 |
+
}
|
2907 |
+
|
2908 |
+
/*new banner styles*/
|
2909 |
+
.sfsi_plus_new_notification_cat {
|
2910 |
+
width: 100%;
|
2911 |
+
min-height: 300px;
|
2912 |
+
max-width: 700px;
|
2913 |
+
}
|
2914 |
+
|
2915 |
+
.sfsi_plus_new_notification_cat {
|
2916 |
+
background-color: #fff;
|
2917 |
+
margin: 30px auto;
|
2918 |
+
width: 100%;
|
2919 |
+
}
|
2920 |
+
|
2921 |
+
.sfsi_plus_new_notification_header_cat {
|
2922 |
+
background-color: #e8faef;
|
2923 |
+
padding: 21px 0 21px 0;
|
2924 |
+
text-align: center;
|
2925 |
+
}
|
2926 |
+
|
2927 |
+
.sfsi_plus_new_notification_header_cat h1 {
|
2928 |
+
margin: 0;
|
2929 |
+
color: #000000;
|
2930 |
+
font-size: 24px;
|
2931 |
+
margin: 0 auto !important;
|
2932 |
+
font-family: Arial, Helvetica, sans-serif;
|
2933 |
+
font-weight: bold !important;
|
2934 |
+
}
|
2935 |
+
|
2936 |
+
.sfsi_plus_new_notification_header_cat h3 {
|
2937 |
+
margin-top: 10px !important;
|
2938 |
+
font-size: 16px;
|
2939 |
+
color: #000000;
|
2940 |
+
}
|
2941 |
+
|
2942 |
+
.sfsi_plus_new_notification_header_cat h3 a {
|
2943 |
+
text-decoration: none;
|
2944 |
+
color: #38B54A;
|
2945 |
+
}
|
2946 |
+
|
2947 |
+
.sfsi_plus_new_notification_header_cat h1 a {
|
2948 |
+
margin: 0;
|
2949 |
+
color: #00c853;
|
2950 |
+
font-size: 18px;
|
2951 |
+
margin: 0 auto;
|
2952 |
+
font-family: Arial, Helvetica, sans-serif;
|
2953 |
+
text-decoration: none;
|
2954 |
+
}
|
2955 |
+
|
2956 |
+
.sfsi_plus_new_notification_cross_cat {
|
2957 |
+
float: right;
|
2958 |
+
font-size: 18px;
|
2959 |
+
font-weight: 700;
|
2960 |
+
line-height: 1;
|
2961 |
+
color: #000000;
|
2962 |
+
font-family: Arial, Helvetica, sans-serif;
|
2963 |
+
margin-right: 15px;
|
2964 |
+
cursor: pointer;
|
2965 |
+
margin-top: -50px;
|
2966 |
+
}
|
2967 |
+
|
2968 |
+
.sfsi_plus_new_notification_body_link_cat a {
|
2969 |
+
display: block;
|
2970 |
+
text-decoration: none;
|
2971 |
+
text-align: center;
|
2972 |
+
font-size: 20px;
|
2973 |
+
font-family: Arial, Helvetica, sans-serif;
|
2974 |
+
color: #fff;
|
2975 |
+
}
|
2976 |
+
|
2977 |
+
.sfsi_plus_new_notification_body_cat {
|
2978 |
+
width: 100%;
|
2979 |
+
background-color: #fff;
|
2980 |
+
}
|
2981 |
+
|
2982 |
+
.sfsi_plus_new_notification_image_cat {
|
2983 |
+
width: 100%;
|
2984 |
+
text-align: center;
|
2985 |
+
overflow: hidden;
|
2986 |
+
}
|
2987 |
+
|
2988 |
+
.sfsi_plus_new_notification_image_cat img {
|
2989 |
+
width: auto;
|
2990 |
+
border: 0;
|
2991 |
+
vertical-align: middle;
|
2992 |
+
}
|
2993 |
+
|
2994 |
+
.sfsiplus_bottom_text {
|
2995 |
+
background: #38B54A;
|
2996 |
+
text-align: center;
|
2997 |
+
padding: 15px 0px;
|
2998 |
+
font-size: 18px;
|
2999 |
+
font-weight: bold;
|
3000 |
+
color: #fff;
|
3001 |
+
}
|
3002 |
+
|
3003 |
+
.sfsi_plus_new_notification_image_cat p {
|
3004 |
+
color: #000000;
|
3005 |
+
padding: 10px;
|
3006 |
+
font-size: 16px;
|
3007 |
+
}
|
3008 |
+
|
3009 |
+
.sfsi_plus_new_notification_body_link_cat .sfsi_plus_tailored_icons_img {
|
3010 |
+
display: block;
|
3011 |
+
text-decoration: none;
|
3012 |
+
text-align: center;
|
3013 |
+
font-size: 20px;
|
3014 |
+
font-family: Arial, Helvetica, sans-serif;
|
3015 |
+
color: #fff;
|
3016 |
+
margin: 28px 0px;
|
3017 |
+
}
|
3018 |
+
|
3019 |
+
/**curl error box*/
|
3020 |
+
.sfsiplus_curlerror {
|
3021 |
+
margin: 0px 0px 10px 94px;
|
3022 |
+
background: rgba(244, 67, 54, 0.08);
|
3023 |
+
padding: 20px;
|
3024 |
+
line-height: 20px;
|
3025 |
+
}
|
3026 |
+
|
3027 |
+
.sfsi_plus_versionNotification .sfsiplus_curlerror {
|
3028 |
+
background: rgba(244, 67, 54, 0.08);
|
3029 |
+
padding: 20px;
|
3030 |
+
line-height: 20px;
|
3031 |
+
margin: 0px 0px 10px 0px;
|
3032 |
+
}
|
3033 |
+
|
3034 |
+
.sfsi_plus_curlerror_cross {
|
3035 |
+
float: right;
|
3036 |
+
text-decoration: underline;
|
3037 |
+
margin-top: 10px;
|
3038 |
+
}
|
3039 |
+
|
3040 |
+
.sfsiplus_curlerrortab4 a {
|
3041 |
+
color: #0073aa !important;
|
3042 |
+
}
|
3043 |
+
|
3044 |
+
.sfsiplus_curlerror a {
|
3045 |
+
color: #0073aa !important;
|
3046 |
+
}
|
3047 |
+
|
3048 |
+
.social_data_post_types {
|
3049 |
+
float: left;
|
3050 |
+
width: 100%;
|
3051 |
+
margin-top: 10px;
|
3052 |
+
}
|
3053 |
+
|
3054 |
+
.social_data_post_types .checkbox {
|
3055 |
+
float: left;
|
3056 |
+
margin-top: 5px;
|
3057 |
+
margin-right: 5px;
|
3058 |
+
}
|
3059 |
+
|
3060 |
+
.social_data_post_types ul {
|
3061 |
+
float: left;
|
3062 |
+
margin-top: 5px;
|
3063 |
+
}
|
3064 |
+
|
3065 |
+
.social_data_post_types li {
|
3066 |
+
float: left;
|
3067 |
+
min-width: 90px;
|
3068 |
+
}
|
3069 |
+
|
3070 |
+
.social_data_post_types .radio_section.tb_4_ck {
|
3071 |
+
float: left;
|
3072 |
+
margin-right: 5px;
|
3073 |
+
}
|
3074 |
+
|
3075 |
+
.social_data_post_types .radio_section.tb_4_ck .cstmdsplsub {
|
3076 |
+
font-size: 16px;
|
3077 |
+
}
|
3078 |
+
|
3079 |
+
.social_data_post_types ul {
|
3080 |
+
float: left;
|
3081 |
+
width: 84%;
|
3082 |
+
}
|
3083 |
+
|
3084 |
+
.social_data_post_types .radio_section.tb_4_ck input.styled {
|
3085 |
+
margin-top: 20px;
|
3086 |
+
}
|
3087 |
+
|
3088 |
+
ul.sfsi_show_hide_section {
|
3089 |
+
float: right;
|
3090 |
+
width: 14%;
|
3091 |
+
}
|
3092 |
+
|
3093 |
+
.sfsi_social_sharing {
|
3094 |
+
margin-bottom: 15px;
|
3095 |
+
float: left;
|
3096 |
+
width: 51%;
|
3097 |
+
}
|
3098 |
+
|
3099 |
+
.socialPostTypesUl span {
|
3100 |
+
pointer-events: none
|
3101 |
+
}
|
3102 |
+
|
3103 |
+
.sfsiplus_pinterest_section .sfsi_plus_new_prmium_follw a {
|
3104 |
+
font-weight: bold;
|
3105 |
+
}
|
3106 |
+
|
3107 |
+
/*support forum*/
|
3108 |
+
.welcometext {
|
3109 |
+
float: left;
|
3110 |
+
width: 78%;
|
3111 |
+
}
|
3112 |
+
|
3113 |
+
.welcometext p {
|
3114 |
+
margin-bottom: 8px !important;
|
3115 |
+
margin-top: 15px !important;
|
3116 |
+
}
|
3117 |
+
|
3118 |
+
.supportforum {
|
3119 |
+
float: right;
|
3120 |
+
width: auto;
|
3121 |
+
background: #fff;
|
3122 |
+
text-align: center;
|
3123 |
+
padding: 0 20px 3px 7px;
|
3124 |
+
}
|
3125 |
+
|
3126 |
+
.support-container p {
|
3127 |
+
font-family: helveticaregular !important;
|
3128 |
+
}
|
3129 |
+
|
3130 |
+
.support-container {
|
3131 |
+
padding: 7px 4px;
|
3132 |
+
}
|
3133 |
+
|
3134 |
+
.have-questions {
|
3135 |
+
text-align: center;
|
3136 |
+
font-size: 20px;
|
3137 |
+
}
|
3138 |
+
|
3139 |
+
.have-questions img {
|
3140 |
+
width: 45px;
|
3141 |
+
display: inline-block;
|
3142 |
+
}
|
3143 |
+
|
3144 |
+
.have-questions .have-quest {
|
3145 |
+
display: inline-block;
|
3146 |
+
font-size: 20px;
|
3147 |
+
font-weight: 700;
|
3148 |
+
margin: 0;
|
3149 |
+
vertical-align: top;
|
3150 |
+
margin-top: 13px;
|
3151 |
+
}
|
3152 |
+
|
3153 |
+
.have-questions .ask-question {
|
3154 |
+
margin-bottom: 3px !important;
|
3155 |
+
margin-top: 2px !important;
|
3156 |
+
}
|
3157 |
+
|
3158 |
+
.support-forum-green-bg {
|
3159 |
+
margin-top: 5px;
|
3160 |
+
margin-left: 20px;
|
3161 |
+
background: #26B654;
|
3162 |
+
width: 145px;
|
3163 |
+
border-radius: 5px;
|
3164 |
+
padding: 10px 16px 8px 15px;
|
3165 |
+
}
|
3166 |
+
|
3167 |
+
.support-forum-green-bg img {
|
3168 |
+
display: inline-block;
|
3169 |
+
padding-right: 5px;
|
3170 |
+
vertical-align: top;
|
3171 |
+
margin-top: 3px;
|
3172 |
+
}
|
3173 |
+
|
3174 |
+
.support-forum-green-div p.support-forum {
|
3175 |
+
display: inline-block;
|
3176 |
+
color: #fff;
|
3177 |
+
font-weight: 700;
|
3178 |
+
margin: 0 !important;
|
3179 |
+
}
|
3180 |
+
|
3181 |
+
.support-forum-green-div a {
|
3182 |
+
text-decoration: none !important;
|
3183 |
+
}
|
3184 |
+
|
3185 |
+
.respond-text p {
|
3186 |
+
margin: 10px 0 0 0px !important
|
3187 |
+
}
|
3188 |
+
|
3189 |
+
.respond-text {
|
3190 |
+
margin-left: 20px;
|
3191 |
+
float: left;
|
3192 |
+
margin-bottom: 8px;
|
3193 |
+
}
|
3194 |
+
|
3195 |
+
#accordion,
|
3196 |
+
#accordion1 {
|
3197 |
+
float: left;
|
3198 |
+
clear: both;
|
3199 |
+
width: 100%;
|
3200 |
+
}
|
3201 |
+
|
3202 |
+
@media (min-width: 1631px) and (max-width: 1631px) {
|
3203 |
+
.premiumComponent {
|
3204 |
+
width: 52% !important;
|
3205 |
+
}
|
3206 |
+
|
3207 |
+
.premiumButtonsContainer {
|
3208 |
+
width: 44% !important;
|
3209 |
+
}
|
3210 |
+
|
3211 |
+
.premiumButtonsContainer .premiumSection2 {
|
3212 |
+
width: 41% !important;
|
3213 |
+
}
|
3214 |
+
|
3215 |
+
.premiumButtonsContainer .premiumSection3 {
|
3216 |
+
width: 41% !important;
|
3217 |
+
}
|
3218 |
+
}
|
3219 |
+
|
3220 |
+
/* Link to support forum for different languages */
|
3221 |
+
#sfsi_plus_langnotice {
|
3222 |
+
position: relative;
|
3223 |
+
padding: 15px 10px;
|
3224 |
+
margin: 0px 15px 35px 0px;
|
3225 |
+
}
|
3226 |
+
|
3227 |
+
#sfsi_plus_langnotice .sfsi-notice-dismiss {
|
3228 |
+
position: absolute;
|
3229 |
+
right: 1px;
|
3230 |
+
border: none;
|
3231 |
+
margin: 0;
|
3232 |
+
padding: 9px;
|
3233 |
+
background: none;
|
3234 |
+
color: #72777c;
|
3235 |
+
cursor: pointer;
|
3236 |
+
top: 5px;
|
3237 |
+
}
|
3238 |
+
|
3239 |
+
/* Link to support forum left of every Save button */
|
3240 |
+
.ui-accordion .ui-accordion-content {
|
3241 |
+
position: relative;
|
3242 |
+
}
|
3243 |
+
|
3244 |
+
.sfsi_plus_askforhelp {
|
3245 |
+
float: left;
|
3246 |
+
width: auto;
|
3247 |
+
position: absolute;
|
3248 |
+
bottom: 30px;
|
3249 |
+
}
|
3250 |
+
|
3251 |
+
.sfsi_plus_askforhelp img {
|
3252 |
+
float: left;
|
3253 |
+
width: 35px;
|
3254 |
+
height: 35px;
|
3255 |
+
vertical-align: middle;
|
3256 |
+
}
|
3257 |
+
|
3258 |
+
.sfsi_plus_askforhelp span {
|
3259 |
+
float: left;
|
3260 |
+
margin-left: 6px;
|
3261 |
+
margin-top: 8px;
|
3262 |
+
}
|
3263 |
+
|
3264 |
+
.askhelpInview2 {
|
3265 |
+
bottom: 25px;
|
3266 |
+
}
|
3267 |
+
|
3268 |
+
.askhelpInview3 {
|
3269 |
+
bottom: 51px;
|
3270 |
+
}
|
3271 |
+
|
3272 |
+
.askhelpInview7 {
|
3273 |
+
bottom: 50px;
|
3274 |
+
}
|
3275 |
+
|
3276 |
+
.ulSuppressErrors {
|
3277 |
+
margin-top: 20px !important;
|
3278 |
+
}
|
3279 |
+
|
3280 |
+
.ulSuppressErrors li {
|
3281 |
+
float: left;
|
3282 |
+
}
|
3283 |
+
|
3284 |
+
div#sfsi_plus_addThis_removal_notice {
|
3285 |
+
padding: 10px;
|
3286 |
+
margin-left: 0px;
|
3287 |
+
position: relative;
|
3288 |
+
}
|
3289 |
+
|
3290 |
+
div#sfsi_plus_langnotice {
|
3291 |
+
padding: 10px;
|
3292 |
+
margin-left: 0px;
|
3293 |
+
position: relative;
|
3294 |
+
}
|
3295 |
+
|
3296 |
+
|
3297 |
+
.clear {
|
3298 |
+
clear: both;
|
3299 |
+
}
|
3300 |
+
|
3301 |
+
.show {
|
3302 |
+
display: block;
|
3303 |
+
}
|
3304 |
+
|
3305 |
+
.hide {
|
3306 |
+
display: none;
|
3307 |
+
}
|
3308 |
+
|
3309 |
+
.zeropadding {
|
3310 |
+
padding: 0px !important;
|
3311 |
+
}
|
3312 |
+
|
3313 |
+
.zerotoppadding {
|
3314 |
+
padding-top: 0px !important;
|
3315 |
+
}
|
3316 |
+
|
3317 |
+
.zerobottompadding {
|
3318 |
+
padding-bottom: 0px !important;
|
3319 |
+
}
|
3320 |
+
|
3321 |
+
.zerotopmargin {
|
3322 |
+
margin-top: 0px !important;
|
3323 |
+
}
|
3324 |
+
|
3325 |
+
.rowpadding10 {
|
3326 |
+
padding: 10px 0 !important;
|
3327 |
+
}
|
3328 |
+
|
3329 |
+
.rowmarginleft15 {
|
3330 |
+
margin-left: 15px !important;
|
3331 |
+
}
|
3332 |
+
|
3333 |
+
.rowmarginleft25 {
|
3334 |
+
margin-left: 25px !important;
|
3335 |
+
}
|
3336 |
+
|
3337 |
+
.rowmarginleft45 {
|
3338 |
+
margin-left: 45px !important;
|
3339 |
+
}
|
3340 |
+
|
3341 |
+
.bottommargin20 {
|
3342 |
+
margin-bottom: 20px !important;
|
3343 |
+
}
|
3344 |
+
|
3345 |
+
.bottommargin30 {
|
3346 |
+
margin-bottom: 30px !important;
|
3347 |
+
}
|
3348 |
+
|
3349 |
+
.bottommargin40 {
|
3350 |
+
margin-bottom: 40px !important;
|
3351 |
+
}
|
3352 |
+
|
3353 |
+
.inactiveSection {
|
3354 |
+
opacity: 0.2;
|
3355 |
+
pointer-events: none;
|
3356 |
+
}
|
3357 |
+
|
3358 |
+
/* */
|
3359 |
+
.tab3 .sub_row {
|
3360 |
+
float: left;
|
3361 |
+
margin: 35px 0 0 4%;
|
3362 |
+
width: 80%;
|
3363 |
+
}
|
3364 |
+
|
3365 |
+
.tab3 .sub_row label {
|
3366 |
+
float: left;
|
3367 |
+
margin: 0 0px 0 10px;
|
3368 |
+
line-height: 36px;
|
3369 |
+
font-size: 18px;
|
3370 |
+
}
|
3371 |
+
|
3372 |
+
.tab3 .sub_row .effectContainer {
|
3373 |
+
float: left;
|
3374 |
+
width: 100%;
|
3375 |
+
margin-left: 45px;
|
3376 |
+
}
|
3377 |
+
|
3378 |
+
.tab3 .sub_row .effectName {
|
3379 |
+
float: left;
|
3380 |
+
width: 25%;
|
3381 |
+
}
|
3382 |
+
|
3383 |
+
.tab3 .tab_3_sav {
|
3384 |
+
padding-top: 0;
|
3385 |
+
margin: 0px auto 10px;
|
3386 |
+
position: relative;
|
3387 |
+
z-index: 9;
|
3388 |
+
}
|
3389 |
+
|
3390 |
+
.tab3 .Shuffle_auto {
|
3391 |
+
float: left;
|
3392 |
+
width: 80%;
|
3393 |
+
clear: both;
|
3394 |
+
}
|
3395 |
+
|
3396 |
+
.tab3 #animationSection label {
|
3397 |
+
font-family: 'helveticaneue-light';
|
3398 |
+
}
|
3399 |
+
|
3400 |
+
.tab3 select[name='mouseover_other_icons_transition_effect'] {
|
3401 |
+
margin-left: 10px;
|
3402 |
+
padding: 0px 11px;
|
3403 |
+
margin-top: 4px;
|
3404 |
+
font-size: 15px;
|
3405 |
+
border-radius: 5px;
|
3406 |
+
}
|
3407 |
+
|
3408 |
+
.tab3 .other_icons_effects_options .mouseover_other_icon_label {
|
3409 |
+
float: left;
|
3410 |
+
width: 30%;
|
3411 |
+
font-size: 16px;
|
3412 |
+
}
|
3413 |
+
|
3414 |
+
.tab3 .mouse-over-effects span.radio {
|
3415 |
+
float: left;
|
3416 |
+
display: inline-block;
|
3417 |
+
}
|
3418 |
+
|
3419 |
+
.tab3 .same_icons_effects label span {
|
3420 |
+
float: left;
|
3421 |
+
clear: both;
|
3422 |
+
line-height: 20px;
|
3423 |
+
}
|
3424 |
+
|
3425 |
+
.tab3 .same_icons_effects label span:nth-child(2) {
|
3426 |
+
font-size: 14px;
|
3427 |
+
}
|
3428 |
+
|
3429 |
+
.tab3 .other_icons_effects_options .mouseover_other_icon_img {
|
3430 |
+
float: left;
|
3431 |
+
width: 40px;
|
3432 |
+
height: 40px;
|
3433 |
+
}
|
3434 |
+
|
3435 |
+
.tab3 .other_icons_effects_options .mouseover_other_icon_change_link,
|
3436 |
+
.tab3 .other_icons_effects_options .mouseover_other_icon_revert_link {
|
3437 |
+
float: left;
|
3438 |
+
color: #337ab7;
|
3439 |
+
margin-left: 15px;
|
3440 |
+
padding: 5px 0px;
|
3441 |
+
font-size: 15px;
|
3442 |
+
text-decoration: underline;
|
3443 |
+
}
|
3444 |
+
|
3445 |
+
/* MZ CSS */
|
3446 |
+
.notopborder {
|
3447 |
+
border-top: none !important;
|
3448 |
+
}
|
3449 |
+
|
3450 |
+
|
3451 |
+
/* MZ CSS END */
|
3452 |
+
.mouseover-premium-notice {}
|
3453 |
+
|
3454 |
+
.mouseover-premium-notice label {
|
3455 |
+
width: auto !important;
|
3456 |
+
margin: 0 !important;
|
3457 |
+
}
|
3458 |
+
|
3459 |
+
.mouseover-premium-notice a {
|
3460 |
+
float: left;
|
3461 |
+
color: #12a252 !important;
|
3462 |
+
padding-top: 5px;
|
3463 |
+
margin-left: 5px;
|
3464 |
+
font-size: 18px;
|
3465 |
+
}
|
3466 |
+
|
3467 |
+
@media (min-width:414px) and (max-width: 736px) and (orientation:portrait) {
|
3468 |
+
.tab3 .sub_row {
|
3469 |
+
width: 100%;
|
3470 |
+
}
|
3471 |
+
|
3472 |
+
.tab3 .sub_row .effectContainer {
|
3473 |
+
margin-left: 25px;
|
3474 |
+
margin-bottom: 0px;
|
3475 |
+
clear: both;
|
3476 |
+
}
|
3477 |
+
|
3478 |
+
.tab3 .sub_row .effectName {
|
3479 |
+
width: 100%;
|
3480 |
+
margin-bottom: 25px
|
3481 |
+
}
|
3482 |
+
|
3483 |
+
.rowmarginleft45 {
|
3484 |
+
margin-left: 0px !important;
|
3485 |
+
}
|
3486 |
+
|
3487 |
+
.bottommargin40 {
|
3488 |
+
margin-bottom: 0px !important;
|
3489 |
+
}
|
3490 |
+
}
|
3491 |
+
|
3492 |
+
@media (min-width:414px) and (max-width: 736px) and (orientation:landscape) {
|
3493 |
+
.tab3 .sub_row {
|
3494 |
+
width: 100%;
|
3495 |
+
}
|
3496 |
+
|
3497 |
+
.tab3 .sub_row .effectContainer {
|
3498 |
+
margin-left: 25px;
|
3499 |
+
margin-bottom: 0px;
|
3500 |
+
clear: both;
|
3501 |
+
}
|
3502 |
+
|
3503 |
+
.tab3 .sub_row .effectName {
|
3504 |
+
width: 50%;
|
3505 |
+
margin-bottom: 25px
|
3506 |
+
}
|
3507 |
+
|
3508 |
+
.rowmarginleft45 {
|
3509 |
+
margin-left: 25px !important;
|
3510 |
+
}
|
3511 |
+
|
3512 |
+
.bottommargin40 {
|
3513 |
+
margin-bottom: 0px !important;
|
3514 |
+
}
|
3515 |
+
}
|
3516 |
+
|
3517 |
+
@media (min-width:1024px) and (max-width: 1366px) and (orientation:portrait) {}
|
3518 |
+
|
3519 |
+
@media (min-width:1024px) and (max-width: 1366px) and (orientation:landscape) {
|
3520 |
+
.tab3 .sub_row .effectName {
|
3521 |
+
width: 40%;
|
3522 |
+
}
|
3523 |
+
|
3524 |
+
.tab3 .sub_row label {
|
3525 |
+
width: 75%;
|
3526 |
+
}
|
3527 |
+
}
|
3528 |
+
|
3529 |
+
@media (min-width:768px) and (max-width: 1024px) and (orientation:portrait) {
|
3530 |
+
.tab3 .sub_row {
|
3531 |
+
width: 100%;
|
3532 |
+
}
|
3533 |
+
|
3534 |
+
.tab3 .sub_row .effectContainer {
|
3535 |
+
margin-bottom: 25px;
|
3536 |
+
clear: both;
|
3537 |
+
}
|
3538 |
+
|
3539 |
+
.tab3 .sub_row .effectName {
|
3540 |
+
width: 50%;
|
3541 |
+
}
|
3542 |
+
|
3543 |
+
.tab3 .sub_row label {
|
3544 |
+
width: 77%;
|
3545 |
+
}
|
3546 |
+
}
|
3547 |
+
|
3548 |
+
/* */
|
3549 |
+
|
3550 |
+
.col-lg-1,
|
3551 |
+
.col-lg-10,
|
3552 |
+
.col-lg-11,
|
3553 |
+
.col-lg-12,
|
3554 |
+
.col-lg-2,
|
3555 |
+
.col-lg-3,
|
3556 |
+
.col-lg-4,
|
3557 |
+
.col-lg-5,
|
3558 |
+
.col-lg-6,
|
3559 |
+
.col-lg-7,
|
3560 |
+
.col-lg-8,
|
3561 |
+
.col-lg-9,
|
3562 |
+
.col-md-1,
|
3563 |
+
.col-md-10,
|
3564 |
+
.col-md-11,
|
3565 |
+
.col-md-12,
|
3566 |
+
.col-md-2,
|
3567 |
+
.col-md-3,
|
3568 |
+
.col-md-4,
|
3569 |
+
.col-md-5,
|
3570 |
+
.col-md-6,
|
3571 |
+
.col-md-7,
|
3572 |
+
.col-md-8,
|
3573 |
+
.col-md-9,
|
3574 |
+
.col-sm-1,
|
3575 |
+
.col-sm-10,
|
3576 |
+
.col-sm-11,
|
3577 |
+
.col-sm-12,
|
3578 |
+
.col-sm-2,
|
3579 |
+
.col-sm-3,
|
3580 |
+
.col-sm-4,
|
3581 |
+
.col-sm-5,
|
3582 |
+
.col-sm-6,
|
3583 |
+
.col-sm-7,
|
3584 |
+
.col-sm-8,
|
3585 |
+
.col-sm-9,
|
3586 |
+
.col-xs-1,
|
3587 |
+
.col-xs-10,
|
3588 |
+
.col-xs-11,
|
3589 |
+
.col-xs-12,
|
3590 |
+
.col-xs-2,
|
3591 |
+
.col-xs-3,
|
3592 |
+
.col-xs-4,
|
3593 |
+
.col-xs-5,
|
3594 |
+
.col-xs-6,
|
3595 |
+
.col-xs-7,
|
3596 |
+
.col-xs-8,
|
3597 |
+
.col-xs-9 {
|
3598 |
+
position: relative;
|
3599 |
+
min-height: 1px;
|
3600 |
+
padding-right: 15px;
|
3601 |
+
padding-left: 15px;
|
3602 |
+
}
|
3603 |
+
|
3604 |
+
@media (min-width: 992px) {
|
3605 |
+
.col-md-3 {
|
3606 |
+
width: 25%;
|
3607 |
+
}
|
3608 |
+
|
3609 |
+
.col-md-1,
|
3610 |
+
.col-md-10,
|
3611 |
+
.col-md-11,
|
3612 |
+
.col-md-12,
|
3613 |
+
.col-md-2,
|
3614 |
+
.col-md-3,
|
3615 |
+
.col-md-4,
|
3616 |
+
.col-md-5,
|
3617 |
+
.col-md-6,
|
3618 |
+
.col-md-7,
|
3619 |
+
.col-md-8,
|
3620 |
+
.col-md-9 {
|
3621 |
+
float: left;
|
3622 |
+
}
|
3623 |
+
|
3624 |
+
.col-md-12 {
|
3625 |
+
width: 100%
|
3626 |
+
}
|
3627 |
+
|
3628 |
+
.col-md-11 {
|
3629 |
+
width: 91.66666667%
|
3630 |
+
}
|
3631 |
+
|
3632 |
+
.col-md-10 {
|
3633 |
+
width: 83.33333333%
|
3634 |
+
}
|
3635 |
+
|
3636 |
+
.col-md-9 {
|
3637 |
+
width: 75%
|
3638 |
+
}
|
3639 |
+
|
3640 |
+
.col-md-8 {
|
3641 |
+
width: 66.66666667%
|
3642 |
+
}
|
3643 |
+
|
3644 |
+
.col-md-7 {
|
3645 |
+
width: 58.33333333%
|
3646 |
+
}
|
3647 |
+
|
3648 |
+
.col-md-6 {
|
3649 |
+
width: 50%
|
3650 |
+
}
|
3651 |
+
|
3652 |
+
.col-md-5 {
|
3653 |
+
width: 41.66666667%
|
3654 |
+
}
|
3655 |
+
|
3656 |
+
.col-md-4 {
|
3657 |
+
width: 33.33333333%
|
3658 |
+
}
|
3659 |
+
|
3660 |
+
.col-md-3 {
|
3661 |
+
width: 25%
|
3662 |
+
}
|
3663 |
+
|
3664 |
+
.col-md-2 {
|
3665 |
+
width: 16.66666667%
|
3666 |
+
}
|
3667 |
+
|
3668 |
+
.col-md-1 {
|
3669 |
+
width: 8.33333333%
|
3670 |
+
}
|
3671 |
+
|
3672 |
+
.col-md-pull-12 {
|
3673 |
+
right: 100%
|
3674 |
+
}
|
3675 |
+
|
3676 |
+
.col-md-pull-11 {
|
3677 |
+
right: 91.66666667%
|
3678 |
+
}
|
3679 |
+
|
3680 |
+
.col-md-pull-10 {
|
3681 |
+
right: 83.33333333%
|
3682 |
+
}
|
3683 |
+
|
3684 |
+
.col-md-pull-9 {
|
3685 |
+
right: 75%
|
3686 |
+
}
|
3687 |
+
|
3688 |
+
.col-md-pull-8 {
|
3689 |
+
right: 66.66666667%
|
3690 |
+
}
|
3691 |
+
|
3692 |
+
.col-md-pull-7 {
|
3693 |
+
right: 58.33333333%
|
3694 |
+
}
|
3695 |
+
|
3696 |
+
.col-md-pull-6 {
|
3697 |
+
right: 50%
|
3698 |
+
}
|
3699 |
+
|
3700 |
+
.col-md-pull-5 {
|
3701 |
+
right: 41.66666667%
|
3702 |
+
}
|
3703 |
+
|
3704 |
+
.col-md-pull-4 {
|
3705 |
+
right: 33.33333333%
|
3706 |
+
}
|
3707 |
+
|
3708 |
+
.col-md-pull-3 {
|
3709 |
+
right: 25%
|
3710 |
+
}
|
3711 |
+
|
3712 |
+
.col-md-pull-2 {
|
3713 |
+
right: 16.66666667%
|
3714 |
+
}
|
3715 |
+
|
3716 |
+
.col-md-pull-1 {
|
3717 |
+
right: 8.33333333%
|
3718 |
+
}
|
3719 |
+
|
3720 |
+
.col-md-pull-0 {
|
3721 |
+
right: auto
|
3722 |
+
}
|
3723 |
+
|
3724 |
+
.col-md-push-12 {
|
3725 |
+
left: 100%
|
3726 |
+
}
|
3727 |
+
|
3728 |
+
.col-md-push-11 {
|
3729 |
+
left: 91.66666667%
|
3730 |
+
}
|
3731 |
+
|
3732 |
+
.col-md-push-10 {
|
3733 |
+
left: 83.33333333%
|
3734 |
+
}
|
3735 |
+
|
3736 |
+
.col-md-push-9 {
|
3737 |
+
left: 75%
|
3738 |
+
}
|
3739 |
+
|
3740 |
+
.col-md-push-8 {
|
3741 |
+
left: 66.66666667%
|
3742 |
+
}
|
3743 |
+
|
3744 |
+
.col-md-push-7 {
|
3745 |
+
left: 58.33333333%
|
3746 |
+
}
|
3747 |
+
|
3748 |
+
.col-md-push-6 {
|
3749 |
+
left: 50%
|
3750 |
+
}
|
3751 |
+
|
3752 |
+
.col-md-push-5 {
|
3753 |
+
left: 41.66666667%
|
3754 |
+
}
|
3755 |
+
|
3756 |
+
.col-md-push-4 {
|
3757 |
+
left: 33.33333333%
|
3758 |
+
}
|
3759 |
+
|
3760 |
+
.col-md-push-3 {
|
3761 |
+
left: 25%
|
3762 |
+
}
|
3763 |
+
|
3764 |
+
.col-md-push-2 {
|
3765 |
+
left: 16.66666667%
|
3766 |
+
}
|
3767 |
+
|
3768 |
+
.col-md-push-1 {
|
3769 |
+
left: 8.33333333%
|
3770 |
+
}
|
3771 |
+
|
3772 |
+
.col-md-push-0 {
|
3773 |
+
left: auto
|
3774 |
+
}
|
3775 |
+
|
3776 |
+
.col-md-offset-12 {
|
3777 |
+
margin-left: 100%
|
3778 |
+
}
|
3779 |
+
|
3780 |
+
.col-md-offset-11 {
|
3781 |
+
margin-left: 91.66666667%
|
3782 |
+
}
|
3783 |
+
|
3784 |
+
.col-md-offset-10 {
|
3785 |
+
margin-left: 83.33333333%
|
3786 |
+
}
|
3787 |
+
|
3788 |
+
.col-md-offset-9 {
|
3789 |
+
margin-left: 75%
|
3790 |
+
}
|
3791 |
+
|
3792 |
+
.col-md-offset-8 {
|
3793 |
+
margin-left: 66.66666667%
|
3794 |
+
}
|
3795 |
+
|
3796 |
+
.col-md-offset-7 {
|
3797 |
+
margin-left: 58.33333333%
|
3798 |
+
}
|
3799 |
+
|
3800 |
+
.col-md-offset-6 {
|
3801 |
+
margin-left: 50%
|
3802 |
+
}
|
3803 |
+
|
3804 |
+
.col-md-offset-5 {
|
3805 |
+
margin-left: 41.66666667%
|
3806 |
+
}
|
3807 |
+
|
3808 |
+
.col-md-offset-4 {
|
3809 |
+
margin-left: 33.33333333%
|
3810 |
+
}
|
3811 |
+
|
3812 |
+
.col-md-offset-3 {
|
3813 |
+
margin-left: 25%
|
3814 |
+
}
|
3815 |
+
|
3816 |
+
.col-md-offset-2 {
|
3817 |
+
margin-left: 16.66666667%
|
3818 |
+
}
|
3819 |
+
|
3820 |
+
.col-md-offset-1 {
|
3821 |
+
margin-left: 8.33333333%
|
3822 |
+
}
|
3823 |
+
|
3824 |
+
.col-md-offset-0 {
|
3825 |
+
margin-left: 0
|
3826 |
+
}
|
3827 |
+
}
|
3828 |
+
|
3829 |
+
@media (min-width:768px) {
|
3830 |
+
|
3831 |
+
.col-sm-1,
|
3832 |
+
.col-sm-10,
|
3833 |
+
.col-sm-11,
|
3834 |
+
.col-sm-12,
|
3835 |
+
.col-sm-2,
|
3836 |
+
.col-sm-3,
|
3837 |
+
.col-sm-4,
|
3838 |
+
.col-sm-5,
|
3839 |
+
.col-sm-6,
|
3840 |
+
.col-sm-7,
|
3841 |
+
.col-sm-8,
|
3842 |
+
.col-sm-9 {
|
3843 |
+
float: left
|
3844 |
+
}
|
3845 |
+
|
3846 |
+
.col-sm-12 {
|
3847 |
+
width: 100%
|
3848 |
+
}
|
3849 |
+
|
3850 |
+
.col-sm-11 {
|
3851 |
+
width: 91.66666667%
|
3852 |
+
}
|
3853 |
+
|
3854 |
+
.col-sm-10 {
|
3855 |
+
width: 83.33333333%
|
3856 |
+
}
|
3857 |
+
|
3858 |
+
.col-sm-9 {
|
3859 |
+
width: 75%
|
3860 |
+
}
|
3861 |
+
|
3862 |
+
.col-sm-8 {
|
3863 |
+
width: 66.66666667%
|
3864 |
+
}
|
3865 |
+
|
3866 |
+
.col-sm-7 {
|
3867 |
+
width: 58.33333333%
|
3868 |
+
}
|
3869 |
+
|
3870 |
+
.col-sm-6 {
|
3871 |
+
width: 50%
|
3872 |
+
}
|
3873 |
+
|
3874 |
+
.col-sm-5 {
|
3875 |
+
width: 41.66666667%
|
3876 |
+
}
|
3877 |
+
|
3878 |
+
.col-sm-4 {
|
3879 |
+
width: 33.33333333%
|
3880 |
+
}
|
3881 |
+
|
3882 |
+
.col-sm-3 {
|
3883 |
+
width: 25%
|
3884 |
+
}
|
3885 |
+
|
3886 |
+
.col-sm-2 {
|
3887 |
+
width: 16.66666667%
|
3888 |
+
}
|
3889 |
+
|
3890 |
+
.col-sm-1 {
|
3891 |
+
width: 8.33333333%
|
3892 |
+
}
|
3893 |
+
|
3894 |
+
.col-sm-pull-12 {
|
3895 |
+
right: 100%
|
3896 |
+
}
|
3897 |
+
|
3898 |
+
.col-sm-pull-11 {
|
3899 |
+
right: 91.66666667%
|
3900 |
+
}
|
3901 |
+
|
3902 |
+
.col-sm-pull-10 {
|
3903 |
+
right: 83.33333333%
|
3904 |
+
}
|
3905 |
+
|
3906 |
+
.col-sm-pull-9 {
|
3907 |
+
right: 75%
|
3908 |
+
}
|
3909 |
+
|
3910 |
+
.col-sm-pull-8 {
|
3911 |
+
right: 66.66666667%
|
3912 |
+
}
|
3913 |
+
|
3914 |
+
.col-sm-pull-7 {
|
3915 |
+
right: 58.33333333%
|
3916 |
+
}
|
3917 |
+
|
3918 |
+
.col-sm-pull-6 {
|
3919 |
+
right: 50%
|
3920 |
+
}
|
3921 |
+
|
3922 |
+
.col-sm-pull-5 {
|
3923 |
+
right: 41.66666667%
|
3924 |
+
}
|
3925 |
+
|
3926 |
+
.col-sm-pull-4 {
|
3927 |
+
right: 33.33333333%
|
3928 |
+
}
|
3929 |
+
|
3930 |
+
.col-sm-pull-3 {
|
3931 |
+
right: 25%
|
3932 |
+
}
|
3933 |
+
|
3934 |
+
.col-sm-pull-2 {
|
3935 |
+
right: 16.66666667%
|
3936 |
+
}
|
3937 |
+
|
3938 |
+
.col-sm-pull-1 {
|
3939 |
+
right: 8.33333333%
|
3940 |
+
}
|
3941 |
+
|
3942 |
+
.col-sm-pull-0 {
|
3943 |
+
right: auto
|
3944 |
+
}
|
3945 |
+
|
3946 |
+
.col-sm-push-12 {
|
3947 |
+
left: 100%
|
3948 |
+
}
|
3949 |
+
|
3950 |
+
.col-sm-push-11 {
|
3951 |
+
left: 91.66666667%
|
3952 |
+
}
|
3953 |
+
|
3954 |
+
.col-sm-push-10 {
|
3955 |
+
left: 83.33333333%
|
3956 |
+
}
|
3957 |
+
|
3958 |
+
.col-sm-push-9 {
|
3959 |
+
left: 75%
|
3960 |
+
}
|
3961 |
+
|
3962 |
+
.col-sm-push-8 {
|
3963 |
+
left: 66.66666667%
|
3964 |
+
}
|
3965 |
+
|
3966 |
+
.col-sm-push-7 {
|
3967 |
+
left: 58.33333333%
|
3968 |
+
}
|
3969 |
+
|
3970 |
+
.col-sm-push-6 {
|
3971 |
+
left: 50%
|
3972 |
+
}
|
3973 |
+
|
3974 |
+
.col-sm-push-5 {
|
3975 |
+
left: 41.66666667%
|
3976 |
+
}
|
3977 |
+
|
3978 |
+
.col-sm-push-4 {
|
3979 |
+
left: 33.33333333%
|
3980 |
+
}
|
3981 |
+
|
3982 |
+
.col-sm-push-3 {
|
3983 |
+
left: 25%
|
3984 |
+
}
|
3985 |
+
|
3986 |
+
.col-sm-push-2 {
|
3987 |
+
left: 16.66666667%
|
3988 |
+
}
|
3989 |
+
|
3990 |
+
.col-sm-push-1 {
|
3991 |
+
left: 8.33333333%
|
3992 |
+
}
|
3993 |
+
|
3994 |
+
.col-sm-push-0 {
|
3995 |
+
left: auto
|
3996 |
+
}
|
3997 |
+
|
3998 |
+
.col-sm-offset-12 {
|
3999 |
+
margin-left: 100%
|
4000 |
+
}
|
4001 |
+
|
4002 |
+
.col-sm-offset-11 {
|
4003 |
+
margin-left: 91.66666667%
|
4004 |
+
}
|
4005 |
+
|
4006 |
+
.col-sm-offset-10 {
|
4007 |
+
margin-left: 83.33333333%
|
4008 |
+
}
|
4009 |
+
|
4010 |
+
.col-sm-offset-9 {
|
4011 |
+
margin-left: 75%
|
4012 |
+
}
|
4013 |
+
|
4014 |
+
.col-sm-offset-8 {
|
4015 |
+
margin-left: 66.66666667%
|
4016 |
+
}
|
4017 |
+
|
4018 |
+
.col-sm-offset-7 {
|
4019 |
+
margin-left: 58.33333333%
|
4020 |
+
}
|
4021 |
+
|
4022 |
+
.col-sm-offset-6 {
|
4023 |
+
margin-left: 50%
|
4024 |
+
}
|
4025 |
+
|
4026 |
+
.col-sm-offset-5 {
|
4027 |
+
margin-left: 41.66666667%
|
4028 |
+
}
|
4029 |
+
|
4030 |
+
.col-sm-offset-4 {
|
4031 |
+
margin-left: 33.33333333%
|
4032 |
+
}
|
4033 |
+
|
4034 |
+
.col-sm-offset-3 {
|
4035 |
+
margin-left: 25%
|
4036 |
+
}
|
4037 |
+
|
4038 |
+
.col-sm-offset-2 {
|
4039 |
+
margin-left: 16.66666667%
|
4040 |
+
}
|
4041 |
+
|
4042 |
+
.col-sm-offset-1 {
|
4043 |
+
margin-left: 8.33333333%
|
4044 |
+
}
|
4045 |
+
|
4046 |
+
.col-sm-offset-0 {
|
4047 |
+
margin-left: 0
|
4048 |
+
}
|
4049 |
+
}
|
4050 |
+
|
4051 |
+
@media (min-width:1200px) {
|
4052 |
+
|
4053 |
+
.col-lg-1,
|
4054 |
+
.col-lg-10,
|
4055 |
+
.col-lg-11,
|
4056 |
+
.col-lg-12,
|
4057 |
+
.col-lg-2,
|
4058 |
+
.col-lg-3,
|
4059 |
+
.col-lg-4,
|
4060 |
+
.col-lg-5,
|
4061 |
+
.col-lg-6,
|
4062 |
+
.col-lg-7,
|
4063 |
+
.col-lg-8,
|
4064 |
+
.col-lg-9 {
|
4065 |
+
float: left
|
4066 |
+
}
|
4067 |
+
|
4068 |
+
.col-lg-12 {
|
4069 |
+
width: 100%
|
4070 |
+
}
|
4071 |
+
|
4072 |
+
.col-lg-11 {
|
4073 |
+
width: 91.66666667%
|
4074 |
+
}
|
4075 |
+
|
4076 |
+
.col-lg-10 {
|
4077 |
+
width: 83.33333333%
|
4078 |
+
}
|
4079 |
+
|
4080 |
+
.col-lg-9 {
|
4081 |
+
width: 75%
|
4082 |
+
}
|
4083 |
+
|
4084 |
+
.col-lg-8 {
|
4085 |
+
width: 66.66666667%
|
4086 |
+
}
|
4087 |
+
|
4088 |
+
.col-lg-7 {
|
4089 |
+
width: 58.33333333%
|
4090 |
+
}
|
4091 |
+
|
4092 |
+
.col-lg-6 {
|
4093 |
+
width: 50%
|
4094 |
+
}
|
4095 |
+
|
4096 |
+
.col-lg-5 {
|
4097 |
+
width: 41.66666667%
|
4098 |
+
}
|
4099 |
+
|
4100 |
+
.col-lg-4 {
|
4101 |
+
width: 33.33333333%
|
4102 |
+
}
|
4103 |
+
|
4104 |
+
.col-lg-3 {
|
4105 |
+
width: 25%
|
4106 |
+
}
|
4107 |
+
|
4108 |
+
.col-lg-2 {
|
4109 |
+
width: 16.66666667%
|
4110 |
+
}
|
4111 |
+
|
4112 |
+
.col-lg-1 {
|
4113 |
+
width: 8.33333333%
|
4114 |
+
}
|
4115 |
+
|
4116 |
+
.col-lg-pull-12 {
|
4117 |
+
right: 100%
|
4118 |
+
}
|
4119 |
+
|
4120 |
+
.col-lg-pull-11 {
|
4121 |
+
right: 91.66666667%
|
4122 |
+
}
|
4123 |
+
|
4124 |
+
.col-lg-pull-10 {
|
4125 |
+
right: 83.33333333%
|
4126 |
+
}
|
4127 |
+
|
4128 |
+
.col-lg-pull-9 {
|
4129 |
+
right: 75%
|
4130 |
+
}
|
4131 |
+
|
4132 |
+
.col-lg-pull-8 {
|
4133 |
+
right: 66.66666667%
|
4134 |
+
}
|
4135 |
+
|
4136 |
+
.col-lg-pull-7 {
|
4137 |
+
right: 58.33333333%
|
4138 |
+
}
|
4139 |
+
|
4140 |
+
.col-lg-pull-6 {
|
4141 |
+
right: 50%
|
4142 |
+
}
|
4143 |
+
|
4144 |
+
.col-lg-pull-5 {
|
4145 |
+
right: 41.66666667%
|
4146 |
+
}
|
4147 |
+
|
4148 |
+
.col-lg-pull-4 {
|
4149 |
+
right: 33.33333333%
|
4150 |
+
}
|
4151 |
+
|
4152 |
+
.col-lg-pull-3 {
|
4153 |
+
right: 25%
|
4154 |
+
}
|
4155 |
+
|
4156 |
+
.col-lg-pull-2 {
|
4157 |
+
right: 16.66666667%
|
4158 |
+
}
|
4159 |
+
|
4160 |
+
.col-lg-pull-1 {
|
4161 |
+
right: 8.33333333%
|
4162 |
+
}
|
4163 |
+
|
4164 |
+
.col-lg-pull-0 {
|
4165 |
+
right: auto
|
4166 |
+
}
|
4167 |
+
|
4168 |
+
.col-lg-push-12 {
|
4169 |
+
left: 100%
|
4170 |
+
}
|
4171 |
+
|
4172 |
+
.col-lg-push-11 {
|
4173 |
+
left: 91.66666667%
|
4174 |
+
}
|
4175 |
+
|
4176 |
+
.col-lg-push-10 {
|
4177 |
+
left: 83.33333333%
|
4178 |
+
}
|
4179 |
+
|
4180 |
+
.col-lg-push-9 {
|
4181 |
+
left: 75%
|
4182 |
+
}
|
4183 |
+
|
4184 |
+
.col-lg-push-8 {
|
4185 |
+
left: 66.66666667%
|
4186 |
+
}
|
4187 |
+
|
4188 |
+
.col-lg-push-7 {
|
4189 |
+
left: 58.33333333%
|
4190 |
+
}
|
4191 |
+
|
4192 |
+
.col-lg-push-6 {
|
4193 |
+
left: 50%
|
4194 |
+
}
|
4195 |
+
|
4196 |
+
.col-lg-push-5 {
|
4197 |
+
left: 41.66666667%
|
4198 |
+
}
|
4199 |
+
|
4200 |
+
.col-lg-push-4 {
|
4201 |
+
left: 33.33333333%
|
4202 |
+
}
|
4203 |
+
|
4204 |
+
.col-lg-push-3 {
|
4205 |
+
left: 25%
|
4206 |
+
}
|
4207 |
+
|
4208 |
+
.col-lg-push-2 {
|
4209 |
+
left: 16.66666667%
|
4210 |
+
}
|
4211 |
+
|
4212 |
+
.col-lg-push-1 {
|
4213 |
+
left: 8.33333333%
|
4214 |
+
}
|
4215 |
+
|
4216 |
+
.col-lg-push-0 {
|
4217 |
+
left: auto
|
4218 |
+
}
|
4219 |
+
|
4220 |
+
.col-lg-offset-12 {
|
4221 |
+
margin-left: 100%
|
4222 |
+
}
|
4223 |
+
|
4224 |
+
.col-lg-offset-11 {
|
4225 |
+
margin-left: 91.66666667%
|
4226 |
+
}
|
4227 |
+
|
4228 |
+
.col-lg-offset-10 {
|
4229 |
+
margin-left: 83.33333333%
|
4230 |
+
}
|
4231 |
+
|
4232 |
+
.col-lg-offset-9 {
|
4233 |
+
margin-left: 75%
|
4234 |
+
}
|
4235 |
+
|
4236 |
+
.col-lg-offset-8 {
|
4237 |
+
margin-left: 66.66666667%
|
4238 |
+
}
|
4239 |
+
|
4240 |
+
.col-lg-offset-7 {
|
4241 |
+
margin-left: 58.33333333%
|
4242 |
+
}
|
4243 |
+
|
4244 |
+
.col-lg-offset-6 {
|
4245 |
+
margin-left: 50%
|
4246 |
+
}
|
4247 |
+
|
4248 |
+
.col-lg-offset-5 {
|
4249 |
+
margin-left: 41.66666667%
|
4250 |
+
}
|
4251 |
+
|
4252 |
+
.col-lg-offset-4 {
|
4253 |
+
margin-left: 33.33333333%
|
4254 |
+
}
|
4255 |
+
|
4256 |
+
.col-lg-offset-3 {
|
4257 |
+
margin-left: 25%
|
4258 |
+
}
|
4259 |
+
|
4260 |
+
.col-lg-offset-2 {
|
4261 |
+
margin-left: 16.66666667%
|
4262 |
+
}
|
4263 |
+
|
4264 |
+
.col-lg-offset-1 {
|
4265 |
+
margin-left: 8.33333333%
|
4266 |
+
}
|
4267 |
+
|
4268 |
+
.col-lg-offset-0 {
|
4269 |
+
margin-left: 0
|
4270 |
+
}
|
4271 |
+
}
|
4272 |
+
|
4273 |
+
#sfsi_plus_jivo_offline_chat {
|
4274 |
+
position: fixed;
|
4275 |
+
bottom: 0;
|
4276 |
+
right: 30px;
|
4277 |
+
height: 350px;
|
4278 |
+
min-width: 45%;
|
4279 |
+
background: #fff;
|
4280 |
+
border-top-left-radius: 30px;
|
4281 |
+
border-top-right-radius: 30px;
|
4282 |
+
padding: 10px;
|
4283 |
+
border: 3px solid #ddd;
|
4284 |
+
border-bottom: 0;
|
4285 |
+
}
|
4286 |
+
|
4287 |
+
#sfsi_plus_jivo_offline_chat .heading-text {
|
4288 |
+
font-size: 16px;
|
4289 |
+
font-weight: 500;
|
4290 |
+
color: #999;
|
4291 |
+
}
|
4292 |
+
|
4293 |
+
#sfsi_plus_jivo_offline_chat .heading-text a {
|
4294 |
+
font-size: 16px;
|
4295 |
+
font-weight: 900;
|
4296 |
+
color: #999;
|
4297 |
+
}
|
4298 |
+
|
4299 |
+
#sfsi_plus_jivo_offline_chat .tab-changer {
|
4300 |
+
/*width:100%;*/
|
4301 |
+
padding: 0 15px;
|
4302 |
+
|
4303 |
+
}
|
4304 |
+
|
4305 |
+
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link {
|
4306 |
+
float: left;
|
4307 |
+
width: 50%;
|
4308 |
+
text-align: center;
|
4309 |
+
background: #eee;
|
4310 |
+
border-bottom: 5px solid #24497B;
|
4311 |
+
}
|
4312 |
+
|
4313 |
+
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link:first-child {
|
4314 |
+
border-top-left-radius: 8px;
|
4315 |
+
}
|
4316 |
+
|
4317 |
+
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link:last-child {
|
4318 |
+
border-top-right-radius: 8px;
|
4319 |
+
}
|
4320 |
+
|
4321 |
+
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link p {
|
4322 |
+
background: #eee;
|
4323 |
+
padding: 5px 0;
|
4324 |
+
margin: 0;
|
4325 |
+
border-top-left-radius: 10px;
|
4326 |
+
border-top-right-radius: 10px;
|
4327 |
+
font-size: 25px;
|
4328 |
+
cursor: pointer;
|
4329 |
+
line-height: 1;
|
4330 |
+
}
|
4331 |
+
|
4332 |
+
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link p span {
|
4333 |
+
font-size: 15px;
|
4334 |
+
}
|
4335 |
+
|
4336 |
+
#sfsi_plus_jivo_offline_chat .tab-changer .tab-link.active p {
|
4337 |
+
background: #24497B;
|
4338 |
+
color: #fff;
|
4339 |
+
}
|
4340 |
+
|
4341 |
+
#sfsi_plus_jivo_offline_chat .tabs {
|
4342 |
+
/*background: #dbeef4;*/
|
4343 |
+
background: #ddd;
|
4344 |
+
margin: -6px 15px 0 15px;
|
4345 |
+
min-height: 250px;
|
4346 |
+
}
|
4347 |
+
|
4348 |
+
#sfsi_plus_jivo_offline_chat #sfsi_technical {
|
4349 |
+
padding: 50px;
|
4350 |
+
}
|
4351 |
+
|
4352 |
+
#sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div {
|
4353 |
+
margin: 10px 0;
|
4354 |
+
}
|
4355 |
+
|
4356 |
+
#sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div a {
|
4357 |
+
padding: 20px 26px 18px 25px;
|
4358 |
+
width: 245px;
|
4359 |
+
margin: 0;
|
4360 |
+
}
|
4361 |
+
|
4362 |
+
#sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div a img {
|
4363 |
+
margin-top: 11px;
|
4364 |
+
}
|
4365 |
+
|
4366 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_technical p {
|
4367 |
+
font-size: 20px;
|
4368 |
+
padding-top: 5px;
|
4369 |
+
margin: 0;
|
4370 |
+
}
|
4371 |
+
|
4372 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales {
|
4373 |
+
padding: 15px;
|
4374 |
+
}
|
4375 |
+
|
4376 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .right-message {
|
4377 |
+
width: 50%;
|
4378 |
+
float: right;
|
4379 |
+
text-align: right;
|
4380 |
+
margin: 0;
|
4381 |
+
}
|
4382 |
+
|
4383 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales form>div {
|
4384 |
+
margin-top: 5px;
|
4385 |
+
}
|
4386 |
+
|
4387 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales label {
|
4388 |
+
font-size: 20px;
|
4389 |
+
color: #000;
|
4390 |
+
font-weight: 900;
|
4391 |
+
padding-bottom: 5px;
|
4392 |
+
}
|
4393 |
+
|
4394 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input,
|
4395 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales textarea {
|
4396 |
+
margin-top: 5px;
|
4397 |
+
width: 100%;
|
4398 |
+
border: 0;
|
4399 |
+
box-shadow: 0 0 5px 0 #888;
|
4400 |
+
}
|
4401 |
+
|
4402 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input {
|
4403 |
+
height: 40px;
|
4404 |
+
}
|
4405 |
+
|
4406 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales textarea {
|
4407 |
+
height: 80px;
|
4408 |
+
resize: none;
|
4409 |
+
}
|
4410 |
+
|
4411 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
|
4412 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
|
4413 |
+
border: 0;
|
4414 |
+
background: #079345;
|
4415 |
+
color: #fff;
|
4416 |
+
margin-top: 23px;
|
4417 |
+
width: 100%;
|
4418 |
+
font-size: 16px;
|
4419 |
+
border-radius: 4px;
|
4420 |
+
cursor: pointer;
|
4421 |
+
box-shadow: none;
|
4422 |
+
}
|
4423 |
+
|
4424 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent {
|
4425 |
+
text-align: center;
|
4426 |
+
}
|
4427 |
+
|
4428 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
|
4429 |
+
font-size: 35px;
|
4430 |
+
}
|
4431 |
+
|
4432 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
|
4433 |
+
font-size: 25px;
|
4434 |
+
font-weight: 300;
|
4435 |
+
}
|
4436 |
+
|
4437 |
+
#sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
|
4438 |
+
width: auto;
|
4439 |
+
margin-top: 0;
|
4440 |
+
padding: 10px;
|
4441 |
+
}
|
4442 |
+
|
4443 |
+
#sfsi_plus_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
|
4444 |
+
font-size: 13px !important;
|
4445 |
+
font-weight: 900;
|
4446 |
+
float: right;
|
4447 |
+
text-align: right;
|
4448 |
+
margin-top: -40px !important;
|
4449 |
+
}
|
4450 |
+
|
4451 |
+
#sfsi_plus_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
|
4452 |
+
background-image: url('images/select-arrow.png');
|
4453 |
+
width: 15px;
|
4454 |
+
height: 9px;
|
4455 |
+
display: inline-block;
|
4456 |
+
-webkit-transform: rotate(90deg);
|
4457 |
+
-moz-transform: rotate(90deg);
|
4458 |
+
-ms-transform: rotate(90deg);
|
4459 |
+
-o-transform: rotate(90deg);
|
4460 |
+
transform: rotate(90deg);
|
4461 |
+
}
|
4462 |
+
|
4463 |
+
@media (max-width: 543px) {
|
4464 |
+
#sfsi_plus_jivo_offline_chat {
|
4465 |
+
width: 400px;
|
4466 |
+
}
|
4467 |
+
}
|
4468 |
+
|
4469 |
+
/* MZ CSS */
|
4470 |
+
|
4471 |
+
.sfsiLabel {
|
4472 |
+
float: left;
|
4473 |
+
margin-top: -29px;
|
4474 |
+
margin-left: 37px;
|
4475 |
+
color: #5a6570;
|
4476 |
+
text-align: left;
|
4477 |
+
font-family: 'helveticaneue-light';
|
4478 |
+
font-size: 17px;
|
4479 |
+
line-height: 26px;
|
4480 |
+
min-width: 200px;
|
4481 |
+
}
|
4482 |
+
|
4483 |
+
.sfsiLabel1 {
|
4484 |
+
float: left;
|
4485 |
+
margin-top: 32px;
|
4486 |
+
margin-left: 100px;
|
4487 |
+
color: #5a6570;
|
4488 |
+
text-align: left;
|
4489 |
+
font-family: 'helveticaneue-light';
|
4490 |
+
font-size: 17px;
|
4491 |
+
line-height: 26px;
|
4492 |
+
min-width: 200px;
|
4493 |
+
}
|
4494 |
+
|
4495 |
+
.infoLabel {
|
4496 |
+
margin-left: 89px;
|
4497 |
+
margin-bottom: 32px;
|
4498 |
+
float: left;
|
4499 |
+
margin-top: -13px;
|
4500 |
+
|
4501 |
+
color: #5a6570;
|
4502 |
+
text-align: left;
|
4503 |
+
font-family: 'helveticaneue-light';
|
4504 |
+
font-size: 17px;
|
4505 |
+
line-height: 26px;
|
4506 |
+
min-width: 200px;
|
4507 |
+
}
|
4508 |
+
|
4509 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_1_26 {
|
4510 |
+
background: url('../images/icons_theme/default/default_wechat.png');
|
4511 |
+
background-size: contain;
|
4512 |
+
}
|
4513 |
+
|
4514 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_2_26 {
|
4515 |
+
background: url('../images/icons_theme/flat/flat_wechat.png');
|
4516 |
+
background-size: contain;
|
4517 |
+
}
|
4518 |
+
|
4519 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_3_26 {
|
4520 |
+
background: url('../images/icons_theme/thin/thin_wechat.png');
|
4521 |
+
background-size: contain;
|
4522 |
+
}
|
4523 |
+
|
4524 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_4_26 {
|
4525 |
+
background: url('../images/icons_theme/cute/cute_wechat.png');
|
4526 |
+
background-size: contain;
|
4527 |
+
}
|
4528 |
+
|
4529 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_5_26 {
|
4530 |
+
background: url('../images/icons_theme/cubes/cubes_wechat.png');
|
4531 |
+
background-size: contain;
|
4532 |
+
}
|
4533 |
+
|
4534 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_6_26 {
|
4535 |
+
background: url('../images/icons_theme/chrome_blue/chrome_blue_wechat.png');
|
4536 |
+
background-size: contain;
|
4537 |
+
}
|
4538 |
+
|
4539 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_7_26 {
|
4540 |
+
background: url('../images/icons_theme/chrome_grey/chrome_grey_wechat.png');
|
4541 |
+
background-size: contain;
|
4542 |
+
}
|
4543 |
+
|
4544 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_8_26 {
|
4545 |
+
background: url('../images/icons_theme/splash/splash_wechat.png');
|
4546 |
+
background-size: contain;
|
4547 |
+
}
|
4548 |
+
|
4549 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_9_26 {
|
4550 |
+
background: url('../images/icons_theme/orange/orange_wechat.png');
|
4551 |
+
background-size: contain;
|
4552 |
+
}
|
4553 |
+
|
4554 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_10_26 {
|
4555 |
+
background: url('../images/icons_theme/crystal/crystal_wechat.png');
|
4556 |
+
background-size: contain;
|
4557 |
+
}
|
4558 |
+
|
4559 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_11_26 {
|
4560 |
+
background: url('../images/icons_theme/glossy/glossy_wechat.png');
|
4561 |
+
background-size: contain;
|
4562 |
+
}
|
4563 |
+
|
4564 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_12_26 {
|
4565 |
+
background: url('../images/icons_theme/black/black_wechat.png');
|
4566 |
+
background-size: contain;
|
4567 |
+
}
|
4568 |
+
|
4569 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_13_26 {
|
4570 |
+
background: url('../images/icons_theme/silver/silver_wechat.png');
|
4571 |
+
background-size: contain;
|
4572 |
+
}
|
4573 |
+
|
4574 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_14_26 {
|
4575 |
+
background: url('../images/icons_theme/shaded_dark/shaded_dark_wechat.png');
|
4576 |
+
background-size: contain;
|
4577 |
+
}
|
4578 |
+
|
4579 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_15_26 {
|
4580 |
+
background: url('../images/icons_theme/shaded_light/shaded_light_wechat.png');
|
4581 |
+
background-size: contain;
|
4582 |
+
}
|
4583 |
+
|
4584 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_16_26 {
|
4585 |
+
background: url('../images/icons_theme/transparent/transparent_wechat.png');
|
4586 |
+
background-size: contain;
|
4587 |
+
}
|
4588 |
+
|
4589 |
+
.tab3 .sfsiplus_wechat_section.sfsiplus_row_17_26 {
|
4590 |
+
background: url('../images/icons_theme/default/default_wechat.png');
|
4591 |
+
background-size: contain;
|
4592 |
+
background-position: 0 0;
|
4593 |
+
}
|
4594 |
+
|
4595 |
+
.sfsi_plus_font_inherit {
|
4596 |
+
font-family: inherit !important;
|
4597 |
+
border: 0 !important;
|
4598 |
+
font-weight: normal !important;
|
4599 |
+
}
|
4600 |
+
|
4601 |
+
.sfisi_plus_font_bold {
|
4602 |
+
font-family: helveticabold !important;
|
4603 |
+
}
|
4604 |
+
|
4605 |
+
.sfsi_plus_instagramInstruction ul>li {
|
4606 |
+
list-style-type: decimal !important;
|
4607 |
+
}
|
4608 |
+
|
4609 |
+
.sfsi_plus_instagramInstruction>p {
|
4610 |
+
list-style-type: decimal !important;
|
4611 |
+
}
|
4612 |
+
|
4613 |
+
.sfsiplus_houzz_section .sfsiLabel,
|
4614 |
+
.sfsiplus_ok_section .sfsiLabel,
|
4615 |
+
.sfsiplus_vk_section .sfsiLabel,
|
4616 |
+
.sfsiplus_weibo_section .sfsiLabel,
|
4617 |
+
.sfsiplus_telegram_section .sfsiLabel1 {
|
4618 |
+
margin-left: 0 !important;
|
4619 |
+
}
|
4620 |
+
|
4621 |
+
.pop-up {
|
4622 |
+
font-weight: bold;
|
4623 |
+
}
|
4624 |
+
|
4625 |
+
.sfsi_plus_quickpay-overlay a {
|
4626 |
+
display: inline !important;
|
4627 |
+
font-size: inherit !important;
|
4628 |
+
text-decoration: underline !important;
|
4629 |
+
font-weight: 900;
|
4630 |
+
color: #666;
|
4631 |
+
}
|
4632 |
+
|
4633 |
+
.sfsi_plus_col_6 {
|
4634 |
+
width: 49%;
|
4635 |
+
display: inline-block;
|
4636 |
+
}
|
4637 |
+
|
4638 |
+
.sfsi_plus_col_6>div {
|
4639 |
+
padding: 18px 30px !important;
|
4640 |
+
margin: 20px 0 0 0;
|
4641 |
+
border: 1px solid #999;
|
4642 |
+
display: inline-block;
|
4643 |
+
float: none;
|
4644 |
+
}
|
4645 |
+
|
4646 |
+
.sfsi_plus_col_6>div:hover {
|
4647 |
+
background-image: radial-gradient(circle, #fff, #eee);
|
4648 |
+
}
|
4649 |
+
|
4650 |
+
.vertical-align {
|
4651 |
+
display: flex;
|
4652 |
+
align-items: center;
|
4653 |
+
justify-content: space-between;
|
4654 |
+
}
|
4655 |
+
|
4656 |
+
.sfsi_vertical_center {
|
4657 |
+
display: flex;
|
4658 |
+
align-items: center;
|
4659 |
+
}
|
4660 |
+
|
4661 |
+
.sfsi_plus_border_left_0 {
|
4662 |
+
border-left: 0 !important;
|
4663 |
+
}
|
4664 |
+
|
4665 |
+
.tab8 .sfsi_plus_inputSec input {
|
4666 |
+
width: 140px !important;
|
4667 |
+
padding: 13px;
|
4668 |
+
}
|
4669 |
+
|
4670 |
+
.tab8 .sfsi_plus_inputSec span {
|
4671 |
+
width: auto;
|
4672 |
+
}
|
4673 |
+
|
4674 |
+
.tab8 .sfsi_plus_inputSec span {
|
4675 |
+
display: inline-block;
|
4676 |
+
font-size: 18px;
|
4677 |
+
vertical-align: middle;
|
4678 |
+
width: 200px;
|
4679 |
+
color: #5A6570;
|
4680 |
+
}
|
4681 |
+
|
4682 |
+
.sfsi_plus_responsive_icon_item_container {
|
4683 |
+
height: 40px;
|
4684 |
+
vertical-align: middle;
|
4685 |
+
margin-top: auto;
|
4686 |
+
margin-bottom: auto;
|
4687 |
+
}
|
4688 |
+
|
4689 |
+
.sfsi_plus_responsive_icon_item_container img {
|
4690 |
+
margin: 7px;
|
4691 |
+
vertical-align: middle !important;
|
4692 |
+
box-shadow: unset !important;
|
4693 |
+
-webkit-box-shadow: unset !important;
|
4694 |
+
max-width: 40px !important;
|
4695 |
+
max-height: 40px;
|
4696 |
+
}
|
4697 |
+
|
4698 |
+
.sfsi_plus_responsive_icon_item_container span {
|
4699 |
+
padding: 7px;
|
4700 |
+
vertical-align: middle !important;
|
4701 |
+
box-shadow: unset !important;
|
4702 |
+
-webkit-box-shadow: unset !important;
|
4703 |
+
line-height: 40px
|
4704 |
+
}
|
4705 |
+
|
4706 |
+
|
4707 |
+
.sfsi_plus_responsive_icon_facebook_container {
|
4708 |
+
background-color: #336699;
|
4709 |
+
}
|
4710 |
+
|
4711 |
+
.sfsi_plus_responsive_icon_follow_container {
|
4712 |
+
background-color: #00B04E;
|
4713 |
+
}
|
4714 |
+
|
4715 |
+
.sfsi_plus_responsive_icon_twitter_container {
|
4716 |
+
background-color: #55ACEE;
|
4717 |
+
}
|
4718 |
+
|
4719 |
+
|
4720 |
+
.sfsi_plus_icons_container_box_fully_container {
|
4721 |
+
flex-wrap: wrap;
|
4722 |
+
}
|
4723 |
+
|
4724 |
+
.sfsi_plus_icons_container_box_fully_container a {
|
4725 |
+
flex-basis: auto !important;
|
4726 |
+
flex-grow: 1;
|
4727 |
+
flex-shrink: 1;
|
4728 |
+
}
|
4729 |
+
|
4730 |
+
.sfsi_plus_responsive_icons .sfsi_plus_icons_container span {
|
4731 |
+
font-family: sans-serif;
|
4732 |
+
font-size: 15px;
|
4733 |
+
}
|
4734 |
+
|
4735 |
+
.sfsi_plus_widget_title {
|
4736 |
+
font-weight: 700;
|
4737 |
+
line-height: 1.2;
|
4738 |
+
font-size: 27px;
|
4739 |
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
4740 |
+
|
4741 |
+
}
|
4742 |
+
|
4743 |
+
.sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container,
|
4744 |
+
.sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container {
|
4745 |
+
padding: 0px 20px;
|
4746 |
+
width: 245px;
|
4747 |
+
text-align: center;
|
4748 |
+
margin-right: 8px;
|
4749 |
+
margin-top: -5px;
|
4750 |
+
}
|
4751 |
+
|
4752 |
+
.sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container img,
|
4753 |
+
.sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container img {
|
4754 |
+
max-height: 25px !important;
|
4755 |
+
max-width: 40px !important;
|
4756 |
+
float: left;
|
4757 |
+
height: 25px;
|
4758 |
+
}
|
4759 |
+
|
4760 |
+
.sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container span,
|
4761 |
+
.sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container span {
|
4762 |
+
color: #ffffff;
|
4763 |
+
font-size: 20px;
|
4764 |
+
padding: 0 10px;
|
4765 |
+
letter-spacing: 0.5px;
|
4766 |
+
font-weight: 500;
|
4767 |
+
}
|
4768 |
+
|
4769 |
+
.tab8 .sfsi_plus_responsive_default_icon_container,
|
4770 |
+
.tab8 .sfsi_plus_responsive_custom_icon_container {
|
4771 |
+
width: 100% !important;
|
4772 |
+
max-width: unset !important;
|
4773 |
+
/* padding-left: 60px!important; */
|
4774 |
+
}
|
4775 |
+
|
4776 |
+
.tab8 .sfsi_plus_responsive_default_icon_container input,
|
4777 |
+
.tab8 .sfsi_plus_responsive_custom_icon_container input {
|
4778 |
+
padding: 8px 11px;
|
4779 |
+
height: 39px;
|
4780 |
+
}
|
4781 |
+
|
4782 |
+
.tab8 .heading-label {
|
4783 |
+
font-size: 18px !important;
|
4784 |
+
font-weight: 400;
|
4785 |
+
}
|
4786 |
+
|
4787 |
+
.sfsi_plus_responsive_default_icon_container,
|
4788 |
+
.sfsi_plus_responsive_custom_icon_container {
|
4789 |
+
padding: 2px 0 !important;
|
4790 |
+
}
|
4791 |
+
|
4792 |
+
.sfsi_plus_responsive_default_icon_container .sfsi_plus_responsive_default_url_toggler,
|
4793 |
+
.sfsi_plus_responsive_custom_icon_container .sfsi_plus_responsive_default_url_toggler,
|
4794 |
+
.sfsi_plus_responsive_default_icon_container .sfsi_plus_responsive_default_url_hide {
|
4795 |
+
color: #337ab7 !important;
|
4796 |
+
font-size: 18px !important;
|
4797 |
+
letter-spacing: 1px;
|
4798 |
+
font-weight: 500;
|
4799 |
+
margin-left: 20px;
|
4800 |
+
text-decoration: none !important
|
4801 |
+
}
|
4802 |
+
|
4803 |
+
.sfsi_plus_responsive_fluid {
|
4804 |
+
text-decoration: none !important;
|
4805 |
+
}
|
4806 |
+
|
4807 |
+
.sfsi_plus_large_button_container {
|
4808 |
+
width: calc(100% - 81px) !important;
|
4809 |
+
}
|
4810 |
+
|
4811 |
+
.sfsi_plus_medium_button_container {
|
4812 |
+
width: calc(100% - 70px) !important;
|
4813 |
+
}
|
4814 |
+
|
4815 |
+
.sfsi_plus_small_button_container {
|
4816 |
+
width: calc(100% - 100px) !important;
|
4817 |
+
}
|
4818 |
+
|
4819 |
+
/* .sfsi_plus_responsive_custom_icon{line-height: 6px;} */
|
4820 |
+
/* .sfsi_plus_responsive_fixed_width .sfsi_plus_responsive_custom_icon{line-height: 6px;} */
|
4821 |
+
/*Override for front end - icon of right height*/
|
4822 |
+
/* .sfsi_plus_responsive_fluid .sfsi_plus_large_button{padding: 13px !important;} */
|
4823 |
+
/* .sfsi_plus_responsive_fluid .sfsi_plus_medium_button{padding: 10px !important;} */
|
4824 |
+
|
4825 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button {
|
4826 |
+
padding: 12px 13px 9px 13px !important;
|
4827 |
+
}
|
4828 |
+
|
4829 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button h3 {
|
4830 |
+
margin: 0px 0px 15px 0px !important;
|
4831 |
+
}
|
4832 |
+
|
4833 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_medium_button {
|
4834 |
+
padding: 9px 10px 7px 10px !important;
|
4835 |
+
}
|
4836 |
+
|
4837 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button {
|
4838 |
+
padding: 12px 13px 9px 13px !important;
|
4839 |
+
}
|
4840 |
+
|
4841 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button h3 {
|
4842 |
+
margin: 0px 0px 15px 0px !important;
|
4843 |
+
}
|
4844 |
+
|
4845 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_medium_button {
|
4846 |
+
padding: 9px 10px 7px 10px !important;
|
4847 |
+
}
|
4848 |
+
|
4849 |
+
.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a .sfsi_plus_responsive_icon_item_container {
|
4850 |
+
/* white-space: nowrap;
|
4851 |
+
overflow: hidden;
|
4852 |
+
text-overflow: ellipsis;*/
|
4853 |
+
display: inline-block;
|
4854 |
+
}
|
4855 |
+
|
4856 |
+
.sfsiplus_right_info ul .sfsi_plus_responsive_icon_option_li .options .field .sfsi_plus_responsive_icons_icon_width input,
|
4857 |
+
.sfsiplus_right_info ul .sfsi_plus_responsive_icon_option_li .options .field input {
|
4858 |
+
width: 75px !important;
|
4859 |
+
background: #ffffff;
|
4860 |
+
box-shadow: none;
|
4861 |
+
border: 1px solid rgb(221, 221, 221);
|
4862 |
+
border-radius: 0px;
|
4863 |
+
}
|
4864 |
+
|
4865 |
+
input[type="number"] {
|
4866 |
+
height: 45px !important;
|
4867 |
+
}
|
4868 |
+
.sfsi_plus_small_button {
|
4869 |
+
line-height: 0px;
|
4870 |
+
height: unset;
|
4871 |
+
padding: 6px !important;
|
4872 |
+
}
|
4873 |
+
.sfsi_plus_small_button span {
|
4874 |
+
margin-left: 10px;
|
4875 |
+
font-size: 16px;
|
4876 |
+
padding: 0px;
|
4877 |
+
line-height: 16px;
|
4878 |
+
vertical-align: -webkit-baseline-middle !important;
|
4879 |
+
margin-left: 10px;
|
4880 |
+
}
|
4881 |
+
.sfsi_plus_small_button img {
|
4882 |
+
max-height: 16px !important;
|
4883 |
+
padding: 0px;
|
4884 |
+
line-height: 0px;
|
4885 |
+
vertical-align: -webkit-baseline-middle !important;
|
4886 |
+
}
|
4887 |
+
.sfsi_plus_medium_button span {
|
4888 |
+
margin-left: 10px;
|
4889 |
+
font-size: 18px;
|
4890 |
+
padding: 0px;
|
4891 |
+
line-height: 16px;
|
4892 |
+
vertical-align: -webkit-baseline-middle !important;
|
4893 |
+
margin-left: 10px;
|
4894 |
+
}
|
4895 |
+
.sfsi_plus_medium_button img {
|
4896 |
+
max-height: 16px !important;
|
4897 |
+
padding: 0px;
|
4898 |
+
line-height: 0px;
|
4899 |
+
vertical-align: -webkit-baseline-middle !important;
|
4900 |
+
}
|
4901 |
+
.sfsi_plus_medium_button {
|
4902 |
+
line-height: 0px;
|
4903 |
+
height: unset;
|
4904 |
+
padding: 10px !important;
|
4905 |
+
}
|
4906 |
+
|
4907 |
+
.sfsi_plus_medium_button span {
|
4908 |
+
margin-left: 10px;
|
4909 |
+
font-size: 18px;
|
4910 |
+
padding: 0px;
|
4911 |
+
line-height: 16px;
|
4912 |
+
vertical-align: -webkit-baseline-middle !important;
|
4913 |
+
margin-left: 10px;
|
4914 |
+
}
|
4915 |
+
.sfsi_plus_medium_button img {
|
4916 |
+
max-height: 16px !important;
|
4917 |
+
padding: 0px;
|
4918 |
+
line-height: 0px;
|
4919 |
+
vertical-align: -webkit-baseline-middle !important;
|
4920 |
+
}
|
4921 |
+
.sfsi_plus_medium_button {
|
4922 |
+
line-height: 0px;
|
4923 |
+
height: unset;
|
4924 |
+
padding: 10px !important;
|
4925 |
+
}
|
4926 |
+
.sfsi_plus_large_button span {
|
4927 |
+
font-size: 20px;
|
4928 |
+
padding: 0px;
|
4929 |
+
line-height: 16px;
|
4930 |
+
vertical-align: -webkit-baseline-middle !important;
|
4931 |
+
display: inline;
|
4932 |
+
margin-left: 10px;
|
4933 |
+
}
|
4934 |
+
.sfsi_plus_large_button img {
|
4935 |
+
max-height: 16px !important;
|
4936 |
+
padding: 0px;
|
4937 |
+
line-height: 0px;
|
4938 |
+
vertical-align: -webkit-baseline-middle !important;
|
4939 |
+
display: inline;
|
4940 |
+
}
|
4941 |
+
.sfsi_plus_large_button {
|
4942 |
+
line-height: 0px;
|
4943 |
+
height: unset;
|
4944 |
+
padding: 13px !important;
|
4945 |
+
}
|
4946 |
+
.tab8 .sfsi_float_position_icon_label {
|
4947 |
+
border: 1px solid #ccc;
|
4948 |
+
border-radius: 18px;
|
4949 |
+
margin-top: 3px;
|
4950 |
+
position: relative;
|
4951 |
+
width: 189px;
|
4952 |
+
height: 148px;
|
4953 |
+
float: left;
|
4954 |
+
}
|
4955 |
+
.tab8 .sfsi_float_position_icon_label img {
|
4956 |
+
margin-left: auto;
|
4957 |
+
margin-right: auto;
|
4958 |
+
display: block;
|
4959 |
+
margin-top: 7px;
|
4960 |
+
}
|
4961 |
+
.tab8 .sfsi_float_position_icon_label img.sfsi_img_center_bottom {
|
4962 |
+
position: absolute;
|
4963 |
+
bottom: 0px;
|
4964 |
+
left: 18%;
|
4965 |
+
}
|
4966 |
+
.tab8 .flthmonpg .radio {
|
4967 |
+
margin-top: 55px;
|
4968 |
+
}
|
4969 |
+
.tab8 ul li .radio {
|
4970 |
+
float: left;
|
4971 |
+
}
|
4972 |
+
@media screen and (max-width: 1366px) and (min-width: 1366px){
|
4973 |
+
.tab8 .sfsi_flicnsoptn3 {
|
4974 |
+
font-size: 18px !important;
|
4975 |
+
min-width: 113px !important;
|
4976 |
+
margin: 60px 0px 0 10px !important;
|
4977 |
+
width: auto !important;
|
4978 |
+
}
|
4979 |
+
}
|
4980 |
+
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns li{
|
4981 |
+
width:33%;
|
4982 |
+
min-width:33%;
|
4983 |
+
}
|
4984 |
+
|
4985 |
+
.sfsi-top-banner-higligted-text{
|
4986 |
+
border: 1px solid green;
|
4987 |
+
border-radius:10px;
|
4988 |
+
padding:10px!important;
|
4989 |
+
background:white;
|
4990 |
+
margin:0!important;
|
4991 |
+
}
|
4992 |
+
.sfsi-top-banner-higligted-text a,.sfsi-top-banner-higligted-text span,.sfsi-top-banner-no-decoration{
|
4993 |
+
text-decoration:none!important;
|
4994 |
+
}
|
4995 |
+
.sfsi-top-header-subheading:before,.sfsi-premium-btn:before,.sfsi-premium-btn:after{
|
4996 |
+
content: "";
|
4997 |
+
border-color: transparent green;
|
4998 |
+
border-style: solid;
|
4999 |
+
border-width: 0.32em 0 0.35em 0.50em;
|
5000 |
+
display: inline-block;
|
5001 |
+
height: 0;
|
5002 |
+
width: 0;
|
5003 |
+
position: relative;
|
5004 |
+
color:green;
|
5005 |
+
padding-right: 5px;
|
5006 |
+
font-size: 22px;
|
5007 |
+
top: 4px;
|
5008 |
+
}
|
5009 |
+
.sfsi-premium-btn:after{
|
5010 |
+
border-width: 0.35em 0.45em 0.35em 0;
|
5011 |
+
right:0;
|
5012 |
+
}
|
5013 |
+
@media screen and (max-width: 786px){
|
5014 |
+
.save_button{
|
5015 |
+
width:auto!important;
|
5016 |
+
}
|
5017 |
+
}
|
5018 |
+
.tab8 .radio_section.tb_4_ck {
|
5019 |
+
margin: 0 15px 0 0 !important;
|
5020 |
+
}
|
5021 |
+
div#analyst-install-modal * {
|
5022 |
+
box-sizing: unset;
|
5023 |
}
|
css/sfsi-style.css
CHANGED
@@ -1,4854 +1,4946 @@
|
|
1 |
-
@charset "utf-8";
|
2 |
-
|
3 |
-
@font-face {
|
4 |
-
font-family: helveticabold;
|
5 |
-
src: url(fonts/helvetica_bold_0-webfont.eot);
|
6 |
-
src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
|
7 |
-
font-weight: 400;
|
8 |
-
font-style: normal;
|
9 |
-
}
|
10 |
-
|
11 |
-
@font-face {
|
12 |
-
font-family: helveticaregular;
|
13 |
-
src: url(fonts/helvetica_0-webfont.eot);
|
14 |
-
src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
|
15 |
-
font-weight: 400;
|
16 |
-
font-style: normal;
|
17 |
-
}
|
18 |
-
|
19 |
-
@font-face {
|
20 |
-
font-family: helveticaneue-light;
|
21 |
-
src: url(fonts/helveticaneue-light.eot);
|
22 |
-
src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
|
23 |
-
url(fonts/helveticaneue-light.woff) format('woff'),
|
24 |
-
url(fonts/helveticaneue-light.ttf) format('truetype'),
|
25 |
-
url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
|
26 |
-
font-weight: 400;
|
27 |
-
font-style: normal;
|
28 |
-
}
|
29 |
-
|
30 |
-
body {
|
31 |
-
margin: 0;
|
32 |
-
padding: 0;
|
33 |
-
}
|
34 |
-
|
35 |
-
.clear {
|
36 |
-
clear: both;
|
37 |
-
}
|
38 |
-
|
39 |
-
.space {
|
40 |
-
clear: both;
|
41 |
-
padding: 30px 0 0;
|
42 |
-
width: 100%;
|
43 |
-
float: left;
|
44 |
-
}
|
45 |
-
|
46 |
-
.sfsi_mainContainer {
|
47 |
-
font-family: helveticaregular;
|
48 |
-
}
|
49 |
-
|
50 |
-
.sfsi_mainContainer h1,
|
51 |
-
.sfsi_mainContainer h2,
|
52 |
-
.sfsi_mainContainer h3,
|
53 |
-
.sfsi_mainContainer h4,
|
54 |
-
.sfsi_mainContainer h5,
|
55 |
-
.sfsi_mainContainer h6,
|
56 |
-
.sfsi_mainContainer li,
|
57 |
-
.sfsi_mainContainer p,
|
58 |
-
.sfsi_mainContainer ul {
|
59 |
-
margin: 0;
|
60 |
-
padding: 0;
|
61 |
-
font-weight: 400;
|
62 |
-
}
|
63 |
-
|
64 |
-
.sfsi_mainContainer img {
|
65 |
-
border: 0;
|
66 |
-
}
|
67 |
-
|
68 |
-
.main_contant p,
|
69 |
-
.ui-accordion .ui-accordion-header {
|
70 |
-
font-family: 'helveticaneue-light';
|
71 |
-
}
|
72 |
-
|
73 |
-
.sfsi_mainContainer input,
|
74 |
-
.sfsi_mainContainer select {
|
75 |
-
outline: 0;
|
76 |
-
}
|
77 |
-
|
78 |
-
.wapper {
|
79 |
-
padding: 48px 106px 40px 20px;
|
80 |
-
display: block;
|
81 |
-
background: #f1f1f1;
|
82 |
-
}
|
83 |
-
|
84 |
-
.main_contant {
|
85 |
-
margin: 0;
|
86 |
-
padding: 0;
|
87 |
-
}
|
88 |
-
|
89 |
-
.main_contant h1 {
|
90 |
-
padding: 0;
|
91 |
-
color: #1a1d20;
|
92 |
-
font-family: helveticabold;
|
93 |
-
font-size: 28px;
|
94 |
-
}
|
95 |
-
|
96 |
-
.main_contant p {
|
97 |
-
padding: 0;
|
98 |
-
color: #414951;
|
99 |
-
font-size: 17px;
|
100 |
-
line-height: 26px;
|
101 |
-
}
|
102 |
-
|
103 |
-
.main_contant p span {
|
104 |
-
text-decoration: underline;
|
105 |
-
font-family: helveticabold;
|
106 |
-
}
|
107 |
-
|
108 |
-
.like_txt {
|
109 |
-
margin: 30px 0 0;
|
110 |
-
padding: 0;
|
111 |
-
color: #12a252;
|
112 |
-
font-family: helveticaregular;
|
113 |
-
font-size: 20px;
|
114 |
-
line-height: 20px;
|
115 |
-
text-align: center;
|
116 |
-
}
|
117 |
-
|
118 |
-
.like_txt a {
|
119 |
-
color: #12a252;
|
120 |
-
}
|
121 |
-
|
122 |
-
#accordion p,
|
123 |
-
#accordion1 p {
|
124 |
-
color: #5a6570;
|
125 |
-
text-align: left;
|
126 |
-
font-family: 'helveticaneue-light';
|
127 |
-
font-size: 17px;
|
128 |
-
line-height: 26px;
|
129 |
-
padding-top: 19px;
|
130 |
-
}
|
131 |
-
|
132 |
-
.sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .cstmdisplaysharingtxt {
|
133 |
-
float: left;
|
134 |
-
}
|
135 |
-
|
136 |
-
#accordion p:first-child,
|
137 |
-
#accordion1 p:first-child {
|
138 |
-
padding-top: 0;
|
139 |
-
}
|
140 |
-
|
141 |
-
#accordion h4,
|
142 |
-
#accordion1 h4 {
|
143 |
-
margin: 0;
|
144 |
-
padding: 30px 0 0;
|
145 |
-
color: #414951;
|
146 |
-
font-size: 20px;
|
147 |
-
line-height: 22px;
|
148 |
-
font-family: helveticaregular;
|
149 |
-
}
|
150 |
-
|
151 |
-
#accordion h4:first-child,
|
152 |
-
#accordion1 h4:first-child {
|
153 |
-
padding-top: 0;
|
154 |
-
}
|
155 |
-
|
156 |
-
#accordion .tab8 h4:first-child,
|
157 |
-
#accordion1 h4:first-child {
|
158 |
-
margin-left: 0 !important
|
159 |
-
}
|
160 |
-
|
161 |
-
.tab1,
|
162 |
-
.tab2,
|
163 |
-
.tab3,
|
164 |
-
.tab4,
|
165 |
-
.tab5,
|
166 |
-
.tab6,
|
167 |
-
.tab7 {
|
168 |
-
color: #5a6570;
|
169 |
-
text-align: left;
|
170 |
-
font-family: helveticaregular;
|
171 |
-
font-size: 18px;
|
172 |
-
line-height: 26px;
|
173 |
-
}
|
174 |
-
|
175 |
-
.tab4 ul.like_icon {
|
176 |
-
margin: 0;
|
177 |
-
padding: 20px 0 0;
|
178 |
-
list-style: none;
|
179 |
-
text-align: center;
|
180 |
-
}
|
181 |
-
|
182 |
-
.tab4 ul.like_icon li {
|
183 |
-
margin: 0;
|
184 |
-
padding: 0;
|
185 |
-
list-style: none;
|
186 |
-
display: inline-block;
|
187 |
-
}
|
188 |
-
|
189 |
-
.tab4 ul.like_icon li span {
|
190 |
-
margin: 0;
|
191 |
-
width: 58px;
|
192 |
-
display: block;
|
193 |
-
background: url(../images/count_bg.png) no-repeat;
|
194 |
-
height: 38px;
|
195 |
-
overflow: hidden;
|
196 |
-
padding: 10px 2px 2px;
|
197 |
-
font-size: 17px;
|
198 |
-
text-align: center;
|
199 |
-
line-height: 24px;
|
200 |
-
color: #5a6570;
|
201 |
-
}
|
202 |
-
|
203 |
-
.tab4 ul.like_icon li a {
|
204 |
-
color: #5a6570;
|
205 |
-
text-decoration: none;
|
206 |
-
}
|
207 |
-
|
208 |
-
.tab4 ul.enough_waffling {
|
209 |
-
margin: 0;
|
210 |
-
padding: 25px 0 27px;
|
211 |
-
list-style: none;
|
212 |
-
text-align: center;
|
213 |
-
}
|
214 |
-
|
215 |
-
.tab4 ul.enough_waffling li {
|
216 |
-
margin: 0 22px;
|
217 |
-
padding: 0;
|
218 |
-
list-style: none;
|
219 |
-
display: inline-block;
|
220 |
-
}
|
221 |
-
|
222 |
-
.tab4 ul.enough_waffling li span {
|
223 |
-
float: left;
|
224 |
-
}
|
225 |
-
|
226 |
-
.tab4 ul.enough_waffling li label {
|
227 |
-
margin: 0 0 0 20px;
|
228 |
-
float: left;
|
229 |
-
font-family: helveticaregular;
|
230 |
-
font-size: 18px;
|
231 |
-
font-weight: 400;
|
232 |
-
text-align: center;
|
233 |
-
line-height: 38px;
|
234 |
-
color: #5a6570;
|
235 |
-
}
|
236 |
-
|
237 |
-
.sfsi_mainContainer .checkbox {
|
238 |
-
width: 31px;
|
239 |
-
height: 31px;
|
240 |
-
background: url(../images/check_bg.jpg) no-repeat;
|
241 |
-
display: inherit;
|
242 |
-
}
|
243 |
-
|
244 |
-
.tab8 .social_icon_like1 li span.checkbox {
|
245 |
-
width: 31px;
|
246 |
-
height: 31px;
|
247 |
-
background: url(../images/check_bg.jpg) no-repeat;
|
248 |
-
display: inherit;
|
249 |
-
}
|
250 |
-
|
251 |
-
.tab8 .social_icon_like1 li a {
|
252 |
-
float: left;
|
253 |
-
}
|
254 |
-
|
255 |
-
.sfsi_mainContainer .radio {
|
256 |
-
width: 40px;
|
257 |
-
height: 40px;
|
258 |
-
background: url(../images/radio_bg.png) no-repeat;
|
259 |
-
display: inherit;
|
260 |
-
}
|
261 |
-
|
262 |
-
.sfsi_mainContainer .select {
|
263 |
-
width: 137px;
|
264 |
-
height: 47px;
|
265 |
-
font-size: 17px;
|
266 |
-
background: url(../images/select_bg.jpg) no-repeat;
|
267 |
-
display: block;
|
268 |
-
padding-left: 16px;
|
269 |
-
line-height: 49px;
|
270 |
-
}
|
271 |
-
|
272 |
-
.sfsi_mainContainer .line {
|
273 |
-
background: #eaebee;
|
274 |
-
height: 1px;
|
275 |
-
font-size: 0;
|
276 |
-
margin: 15px 0 0;
|
277 |
-
clear: both;
|
278 |
-
width: 100%;
|
279 |
-
float: left;
|
280 |
-
}
|
281 |
-
|
282 |
-
.sfsiplus_specify_counts {
|
283 |
-
display: block;
|
284 |
-
margin-top: 15px;
|
285 |
-
padding-top: 15px;
|
286 |
-
clear: both;
|
287 |
-
width: 100%;
|
288 |
-
float: left;
|
289 |
-
border-top: 1px solid #eaebee;
|
290 |
-
}
|
291 |
-
|
292 |
-
.sfsiplus_specify_counts .radio_section {
|
293 |
-
width: 30px;
|
294 |
-
float: left;
|
295 |
-
margin: 12px 10px 0 0;
|
296 |
-
}
|
297 |
-
|
298 |
-
.sfsiplus_specify_counts .social_icon_like {
|
299 |
-
width: 54px;
|
300 |
-
float: left;
|
301 |
-
margin: 0 15px 0 0;
|
302 |
-
}
|
303 |
-
|
304 |
-
.sfsiplus_specify_counts .social_icon_like ul {
|
305 |
-
margin: 0;
|
306 |
-
padding: 0 !important;
|
307 |
-
list-style: none;
|
308 |
-
text-align: center;
|
309 |
-
}
|
310 |
-
|
311 |
-
.sfsiplus_specify_counts .social_icon_like li {
|
312 |
-
margin: 0;
|
313 |
-
padding: 0;
|
314 |
-
list-style: none;
|
315 |
-
display: inline-block;
|
316 |
-
}
|
317 |
-
|
318 |
-
.sfsiplus_specify_counts .social_icon_like li span {
|
319 |
-
margin: 0;
|
320 |
-
width: 54px;
|
321 |
-
display: block;
|
322 |
-
background: url(../images/count_bg.jpg) no-repeat;
|
323 |
-
height: 24px;
|
324 |
-
overflow: hidden;
|
325 |
-
padding: 10px 2px 2px;
|
326 |
-
font-family: helveticaregular;
|
327 |
-
font-size: 16px;
|
328 |
-
text-align: center;
|
329 |
-
line-height: 24px;
|
330 |
-
color: #5a6570;
|
331 |
-
}
|
332 |
-
|
333 |
-
.sfsiplus_specify_counts .social_icon_like li a {
|
334 |
-
color: #5a6570;
|
335 |
-
text-decoration: none;
|
336 |
-
}
|
337 |
-
|
338 |
-
.sfsiplus_specify_counts .social_icon_like img {
|
339 |
-
width: 54px;
|
340 |
-
}
|
341 |
-
|
342 |
-
.sfsiplus_specify_counts .listing {
|
343 |
-
width: 88%;
|
344 |
-
margin-top: -5px;
|
345 |
-
display: inherit;
|
346 |
-
float: left;
|
347 |
-
}
|
348 |
-
|
349 |
-
.sfsiplus_specify_counts .listing ul {
|
350 |
-
margin: 0;
|
351 |
-
padding: 0;
|
352 |
-
list-style: none;
|
353 |
-
text-align: left;
|
354 |
-
}
|
355 |
-
|
356 |
-
.sfsiplus_specify_counts .listing li {
|
357 |
-
margin: 15px 0 0;
|
358 |
-
padding: 0;
|
359 |
-
list-style: none;
|
360 |
-
clear: both;
|
361 |
-
line-height: 39px;
|
362 |
-
font-size: 17px;
|
363 |
-
}
|
364 |
-
|
365 |
-
.sfsiplus_specify_counts .listing li span {
|
366 |
-
float: left;
|
367 |
-
margin-right: 20px;
|
368 |
-
}
|
369 |
-
|
370 |
-
.sfsiplus_specify_counts .listing li .input {
|
371 |
-
background: #e5e5e5;
|
372 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
373 |
-
border: 0;
|
374 |
-
padding: 10px;
|
375 |
-
margin-left: 25px;
|
376 |
-
}
|
377 |
-
|
378 |
-
.sfsiplus_specify_counts .listing li .input_facebook {
|
379 |
-
width: 288px;
|
380 |
-
background: #e5e5e5;
|
381 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
382 |
-
border: 0;
|
383 |
-
padding: 10px;
|
384 |
-
margin-left: 16px;
|
385 |
-
}
|
386 |
-
|
387 |
-
.save_button {
|
388 |
-
width: 450px;
|
389 |
-
padding-top: 30px !important;
|
390 |
-
clear: both;
|
391 |
-
margin: auto;
|
392 |
-
}
|
393 |
-
|
394 |
-
.save_button a {
|
395 |
-
background: #12a252;
|
396 |
-
text-align: center;
|
397 |
-
font-size: 23px;
|
398 |
-
color: #FFF !important;
|
399 |
-
display: block;
|
400 |
-
padding: 11px 0;
|
401 |
-
text-decoration: none;
|
402 |
-
}
|
403 |
-
|
404 |
-
.save_button a:hover {
|
405 |
-
background: #079345
|
406 |
-
}
|
407 |
-
|
408 |
-
.tab5 ul.plus_share_icon_order {
|
409 |
-
margin: 0;
|
410 |
-
padding: 0;
|
411 |
-
list-style: none;
|
412 |
-
text-align: left;
|
413 |
-
}
|
414 |
-
|
415 |
-
.tab5 ul.plus_share_icon_order li {
|
416 |
-
margin: 22px 6px 0 0;
|
417 |
-
padding: 0;
|
418 |
-
list-style: none;
|
419 |
-
float: left;
|
420 |
-
line-height: 37px;
|
421 |
-
}
|
422 |
-
|
423 |
-
.tab5 ul.plus_share_icon_order li:last-child {
|
424 |
-
margin: 22px 0 0 3px;
|
425 |
-
}
|
426 |
-
|
427 |
-
.tab5 .row {
|
428 |
-
border-top: 1px solid #eaebee;
|
429 |
-
margin-top: 25px;
|
430 |
-
padding-top: 15px;
|
431 |
-
clear: both;
|
432 |
-
display: block;
|
433 |
-
width: 100%;
|
434 |
-
float: left;
|
435 |
-
font-family: helveticaregular;
|
436 |
-
line-height: 42px;
|
437 |
-
}
|
438 |
-
|
439 |
-
.tab5 .icons_size {
|
440 |
-
position: relative;
|
441 |
-
}
|
442 |
-
|
443 |
-
.tab5 .icons_size span {
|
444 |
-
margin-right: 18px;
|
445 |
-
display: block;
|
446 |
-
float: left;
|
447 |
-
font-size: 18px;
|
448 |
-
font-weight: 400;
|
449 |
-
line-height: 46px;
|
450 |
-
}
|
451 |
-
|
452 |
-
.tab5 .icons_size span.last {
|
453 |
-
margin-left: 55px;
|
454 |
-
}
|
455 |
-
|
456 |
-
.tab5 .icons_size input {
|
457 |
-
width: 73px;
|
458 |
-
background: #e5e5e5;
|
459 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
460 |
-
border: 0;
|
461 |
-
padding: 13px 13px 12px;
|
462 |
-
margin-right: 18px;
|
463 |
-
float: left;
|
464 |
-
display: block;
|
465 |
-
}
|
466 |
-
|
467 |
-
.tab5 .icons_size select.styled {
|
468 |
-
position: absolute;
|
469 |
-
left: 0;
|
470 |
-
width: 135px;
|
471 |
-
height: 46px;
|
472 |
-
line-height: 46px;
|
473 |
-
}
|
474 |
-
|
475 |
-
.tab5 .icons_size .field {
|
476 |
-
position: relative;
|
477 |
-
float: left;
|
478 |
-
display: block;
|
479 |
-
margin-right: 20px;
|
480 |
-
}
|
481 |
-
|
482 |
-
.tab5 .icons_size ins {
|
483 |
-
margin-right: 25px;
|
484 |
-
float: left;
|
485 |
-
font-size: 17px;
|
486 |
-
font-weight: 400;
|
487 |
-
text-decoration: none;
|
488 |
-
}
|
489 |
-
|
490 |
-
.tab5 .icons_size ins.leave_empty {
|
491 |
-
line-height: 23px;
|
492 |
-
}
|
493 |
-
|
494 |
-
.tab5 .icons_size {
|
495 |
-
padding-top: 15px;
|
496 |
-
}
|
497 |
-
|
498 |
-
.tab5 ul.enough_waffling {
|
499 |
-
margin: -5px 0 0;
|
500 |
-
padding: 0;
|
501 |
-
list-style: none;
|
502 |
-
text-align: center;
|
503 |
-
}
|
504 |
-
|
505 |
-
.tab5 .new_wind .sfsiplus_row_onl ul.enough_waffling {
|
506 |
-
margin: 20px 0 0 0;
|
507 |
-
padding: 0;
|
508 |
-
list-style: none;
|
509 |
-
height: 38px;
|
510 |
-
text-align: left;
|
511 |
-
}
|
512 |
-
|
513 |
-
.tab5 ul.enough_waffling li {
|
514 |
-
margin: 0 22px;
|
515 |
-
padding: 0;
|
516 |
-
list-style: none;
|
517 |
-
display: inline-block;
|
518 |
-
}
|
519 |
-
|
520 |
-
.tab5 ul.enough_waffling li span {
|
521 |
-
float: left;
|
522 |
-
}
|
523 |
-
|
524 |
-
.tab5 ul.enough_waffling li label {
|
525 |
-
margin: 0 0 0 20px;
|
526 |
-
float: left;
|
527 |
-
font-family: helveticaregular;
|
528 |
-
font-size: 18px;
|
529 |
-
font-weight: 400;
|
530 |
-
text-align: center;
|
531 |
-
line-height: 38px;
|
532 |
-
color: #5a6570;
|
533 |
-
}
|
534 |
-
|
535 |
-
.sticking p {
|
536 |
-
float: left;
|
537 |
-
font-size: 18px !important;
|
538 |
-
}
|
539 |
-
|
540 |
-
.sticking p.list {
|
541 |
-
width: 168px;
|
542 |
-
}
|
543 |
-
|
544 |
-
.sticking p.link {
|
545 |
-
margin: 3px 0 0 12px;
|
546 |
-
padding: 0 !important;
|
547 |
-
float: left;
|
548 |
-
}
|
549 |
-
|
550 |
-
.sticking .float {
|
551 |
-
margin-left: 188px;
|
552 |
-
margin-top: 3px;
|
553 |
-
float: left;
|
554 |
-
font-size: 17px;
|
555 |
-
}
|
556 |
-
|
557 |
-
.sticking ul {
|
558 |
-
margin: 0;
|
559 |
-
padding: 30px 0 0;
|
560 |
-
list-style: none;
|
561 |
-
float: left;
|
562 |
-
}
|
563 |
-
|
564 |
-
.sticking a {
|
565 |
-
color: #a4a9ad;
|
566 |
-
text-decoration: none;
|
567 |
-
}
|
568 |
-
|
569 |
-
.sticking .field {
|
570 |
-
position: relative;
|
571 |
-
float: left;
|
572 |
-
display: block;
|
573 |
-
margin-left: 20px;
|
574 |
-
}
|
575 |
-
|
576 |
-
.sticking .field .select {
|
577 |
-
width: 206px;
|
578 |
-
height: 47px;
|
579 |
-
background: url(../images/select_bg1.jpg) no-repeat;
|
580 |
-
display: block;
|
581 |
-
padding-left: 10px;
|
582 |
-
}
|
583 |
-
|
584 |
-
.sticking .field select.styled {
|
585 |
-
position: absolute;
|
586 |
-
left: 0;
|
587 |
-
top: 0;
|
588 |
-
width: 211px;
|
589 |
-
line-height: 46px;
|
590 |
-
height: 46px;
|
591 |
-
}
|
592 |
-
|
593 |
-
.mouseover_field {
|
594 |
-
width: 455px;
|
595 |
-
float: left;
|
596 |
-
font-size: 18px;
|
597 |
-
margin-top: 10px;
|
598 |
-
}
|
599 |
-
|
600 |
-
.mouseover_field label {
|
601 |
-
width: 125px;
|
602 |
-
float: left;
|
603 |
-
}
|
604 |
-
|
605 |
-
.mouseover_field input {
|
606 |
-
width: 256px;
|
607 |
-
float: left;
|
608 |
-
background: #e5e5e5;
|
609 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
610 |
-
border: 0;
|
611 |
-
padding: 10px;
|
612 |
-
}
|
613 |
-
|
614 |
-
.tab6 .social_icon_like1 {
|
615 |
-
width: 100%;
|
616 |
-
float: left;
|
617 |
-
margin: 0;
|
618 |
-
padding: 35px 0 0;
|
619 |
-
text-align: center;
|
620 |
-
}
|
621 |
-
|
622 |
-
.tab6 .social_icon_like1 ul {
|
623 |
-
margin: 0;
|
624 |
-
padding: 0;
|
625 |
-
list-style: none;
|
626 |
-
text-align: center;
|
627 |
-
}
|
628 |
-
|
629 |
-
.tab6 .social_icon_like1 li {
|
630 |
-
margin: 0 20px;
|
631 |
-
padding: 0;
|
632 |
-
width: auto;
|
633 |
-
list-style: none;
|
634 |
-
display: inline-block;
|
635 |
-
}
|
636 |
-
|
637 |
-
.tab6 .social_icon_like1 li span,
|
638 |
-
.tab8 .social_icon_like1 li span {
|
639 |
-
margin: 0;
|
640 |
-
width: 44px;
|
641 |
-
display: block;
|
642 |
-
background: url(../images/count_bg1.png) no-repeat;
|
643 |
-
height: 22px;
|
644 |
-
overflow: hidden;
|
645 |
-
padding: 2px 2px 2px 10px;
|
646 |
-
font-family: helveticaregular;
|
647 |
-
font-size: 15px;
|
648 |
-
text-align: center;
|
649 |
-
line-height: 20px;
|
650 |
-
color: #5a6570;
|
651 |
-
float: left;
|
652 |
-
}
|
653 |
-
|
654 |
-
.tab6 .social_icon_like1 li img {
|
655 |
-
float: left;
|
656 |
-
margin-right: 5px;
|
657 |
-
display: block;
|
658 |
-
}
|
659 |
-
|
660 |
-
.tab6 .social_icon_like1 li a {
|
661 |
-
color: #5a6570;
|
662 |
-
text-decoration: none;
|
663 |
-
display: block;
|
664 |
-
}
|
665 |
-
|
666 |
-
.tab6 ul.usually {
|
667 |
-
margin: 28px 0 6px 60px;
|
668 |
-
padding: 0;
|
669 |
-
list-style: none;
|
670 |
-
}
|
671 |
-
|
672 |
-
.tab6 ul.usually li {
|
673 |
-
margin: 0;
|
674 |
-
padding: 0;
|
675 |
-
width: auto;
|
676 |
-
list-style: none;
|
677 |
-
text-align: left;
|
678 |
-
font-size: 17px;
|
679 |
-
}
|
680 |
-
|
681 |
-
.tab6 ul.enough_waffling {
|
682 |
-
margin: 25px 0 0;
|
683 |
-
padding: 0;
|
684 |
-
list-style: none;
|
685 |
-
text-align: center;
|
686 |
-
}
|
687 |
-
|
688 |
-
.tab6 ul.enough_waffling li {
|
689 |
-
margin: 0 22px;
|
690 |
-
padding: 0;
|
691 |
-
list-style: none;
|
692 |
-
display: inline-block;
|
693 |
-
}
|
694 |
-
|
695 |
-
.tab6 ul.enough_waffling li span {
|
696 |
-
float: left;
|
697 |
-
}
|
698 |
-
|
699 |
-
.tab6 ul.enough_waffling li label {
|
700 |
-
margin: 0 0 0 20px;
|
701 |
-
float: left;
|
702 |
-
font-family: helveticaregular;
|
703 |
-
font-size: 18px;
|
704 |
-
font-weight: 400;
|
705 |
-
text-align: center;
|
706 |
-
line-height: 38px;
|
707 |
-
color: #5a6570;
|
708 |
-
}
|
709 |
-
|
710 |
-
.tab6 .row {
|
711 |
-
border-top: 1px solid #eaebee;
|
712 |
-
margin-top: 25px;
|
713 |
-
padding-top: 15px;
|
714 |
-
clear: both;
|
715 |
-
display: block;
|
716 |
-
width: 100%;
|
717 |
-
float: left;
|
718 |
-
font-family: helveticaregular;
|
719 |
-
line-height: 42px;
|
720 |
-
}
|
721 |
-
|
722 |
-
.tab6 .options {
|
723 |
-
margin-top: 25px;
|
724 |
-
clear: both;
|
725 |
-
width: 100%;
|
726 |
-
float: left;
|
727 |
-
}
|
728 |
-
|
729 |
-
.tab6 .options label {
|
730 |
-
width: 345px;
|
731 |
-
float: left;
|
732 |
-
font-size: 18px;
|
733 |
-
font-family: helveticaregular;
|
734 |
-
color: #5a6570;
|
735 |
-
line-height: 46px;
|
736 |
-
}
|
737 |
-
|
738 |
-
.tab6 .options label.first {
|
739 |
-
font-family: helveticaregular;
|
740 |
-
font-size: 18px;
|
741 |
-
}
|
742 |
-
|
743 |
-
.tab6 .options input {
|
744 |
-
width: 308px;
|
745 |
-
float: left;
|
746 |
-
background: #e5e5e5;
|
747 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
748 |
-
border: 0;
|
749 |
-
padding: 10px;
|
750 |
-
}
|
751 |
-
|
752 |
-
.tab6 .options .field {
|
753 |
-
width: 223px;
|
754 |
-
float: left;
|
755 |
-
position: relative;
|
756 |
-
}
|
757 |
-
|
758 |
-
.tab6 .options .field .select {
|
759 |
-
width: 207px;
|
760 |
-
background: url(../images/select_bg1.jpg) no-repeat;
|
761 |
-
display: block;
|
762 |
-
padding-left: 17px;
|
763 |
-
font-family: helveticaregular;
|
764 |
-
}
|
765 |
-
|
766 |
-
.tab6 .options .field select.styled {
|
767 |
-
position: absolute;
|
768 |
-
left: 0;
|
769 |
-
top: 0;
|
770 |
-
width: 213px;
|
771 |
-
line-height: 46px;
|
772 |
-
height: 46px;
|
773 |
-
}
|
774 |
-
|
775 |
-
.tab7 h3 {
|
776 |
-
margin: 14px 0 6px;
|
777 |
-
padding: 0;
|
778 |
-
color: #a7a9ac;
|
779 |
-
font-family: helveticaregular;
|
780 |
-
font-size: 20px;
|
781 |
-
text-align: left;
|
782 |
-
}
|
783 |
-
|
784 |
-
.tab7 .close {
|
785 |
-
position: absolute;
|
786 |
-
right: 18px;
|
787 |
-
top: 18px;
|
788 |
-
}
|
789 |
-
|
790 |
-
.tab7 .text_options {
|
791 |
-
width: 400px;
|
792 |
-
float: left;
|
793 |
-
}
|
794 |
-
|
795 |
-
.tab7 .text_options.layout {
|
796 |
-
margin-left: 35px;
|
797 |
-
}
|
798 |
-
|
799 |
-
.tab7 .sfsiplus_row_tab {
|
800 |
-
margin-top: 10px;
|
801 |
-
width: 100%;
|
802 |
-
float: left;
|
803 |
-
}
|
804 |
-
|
805 |
-
.tab7 .text_options label {
|
806 |
-
width: 121px;
|
807 |
-
float: left;
|
808 |
-
line-height: 46px;
|
809 |
-
font-size: 18px;
|
810 |
-
}
|
811 |
-
|
812 |
-
.tab7 .text_options.layout label {
|
813 |
-
line-height: 20px;
|
814 |
-
font-size: 18px;
|
815 |
-
}
|
816 |
-
|
817 |
-
.tab7 .text_options.layout label.border {
|
818 |
-
line-height: 46px;
|
819 |
-
}
|
820 |
-
|
821 |
-
.tab7 .text_options input {
|
822 |
-
width: 274px;
|
823 |
-
float: left;
|
824 |
-
background: #e5e5e5;
|
825 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
826 |
-
border: 0;
|
827 |
-
padding: 13px 10px;
|
828 |
-
font-size: 17px;
|
829 |
-
color: #5a6570;
|
830 |
-
}
|
831 |
-
|
832 |
-
.tab7 .text_options input.small {
|
833 |
-
width: 138px;
|
834 |
-
}
|
835 |
-
|
836 |
-
.tab7 .text_options .field {
|
837 |
-
width: 223px;
|
838 |
-
float: left;
|
839 |
-
position: relative;
|
840 |
-
}
|
841 |
-
|
842 |
-
.tab7 .text_options .field .select {
|
843 |
-
width: 215px;
|
844 |
-
padding-right: 21px;
|
845 |
-
height: 47px;
|
846 |
-
background: url(../images/select_bg1.jpg) no-repeat;
|
847 |
-
display: block;
|
848 |
-
padding-left: 10px;
|
849 |
-
line-height: 46px;
|
850 |
-
font-size: 17px;
|
851 |
-
color: #414951;
|
852 |
-
}
|
853 |
-
|
854 |
-
.tab7 .text_options .field select.styled {
|
855 |
-
position: absolute;
|
856 |
-
left: 0;
|
857 |
-
top: 0;
|
858 |
-
width: 213px;
|
859 |
-
line-height: 46px;
|
860 |
-
height: 46px;
|
861 |
-
}
|
862 |
-
|
863 |
-
.tab7 .color_box {
|
864 |
-
width: 40px;
|
865 |
-
height: 34px;
|
866 |
-
border: 3px solid #fff;
|
867 |
-
box-shadow: 1px 2px 2px #ccc;
|
868 |
-
float: left;
|
869 |
-
position: relative;
|
870 |
-
margin-left: 13px;
|
871 |
-
}
|
872 |
-
|
873 |
-
.tab7 .color_box1 {
|
874 |
-
width: 100%;
|
875 |
-
height: 34px;
|
876 |
-
background: #5a6570;
|
877 |
-
box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
|
878 |
-
}
|
879 |
-
|
880 |
-
.tab7 .corner {
|
881 |
-
width: 10px;
|
882 |
-
height: 10px;
|
883 |
-
background: #fff;
|
884 |
-
position: absolute;
|
885 |
-
right: 0;
|
886 |
-
bottom: 0;
|
887 |
-
}
|
888 |
-
|
889 |
-
.tab7 ul.border_shadow {
|
890 |
-
margin: 0;
|
891 |
-
padding: 5px 0 0;
|
892 |
-
list-style: none;
|
893 |
-
float: left;
|
894 |
-
width: 257px;
|
895 |
-
}
|
896 |
-
|
897 |
-
.tab7 ul.border_shadow li {
|
898 |
-
margin: 0;
|
899 |
-
padding: 0 0 0 40px;
|
900 |
-
list-style: none;
|
901 |
-
float: left;
|
902 |
-
}
|
903 |
-
|
904 |
-
.tab7 ul.border_shadow li:first-child {
|
905 |
-
padding: 0;
|
906 |
-
}
|
907 |
-
|
908 |
-
.tab7 ul.border_shadow li span {
|
909 |
-
float: left;
|
910 |
-
}
|
911 |
-
|
912 |
-
.tab7 ul.border_shadow li label {
|
913 |
-
float: left;
|
914 |
-
width: auto;
|
915 |
-
font-family: helveticaregular;
|
916 |
-
font-size: 18px;
|
917 |
-
font-weight: 400;
|
918 |
-
text-align: center;
|
919 |
-
line-height: 40px !important;
|
920 |
-
color: #5a6570;
|
921 |
-
padding: 0 0 0 20px;
|
922 |
-
}
|
923 |
-
|
924 |
-
.tab7 .row {
|
925 |
-
border-top: 1px solid #eaebee;
|
926 |
-
margin-top: 25px;
|
927 |
-
padding-top: 15px;
|
928 |
-
clear: both;
|
929 |
-
display: block;
|
930 |
-
width: 100%;
|
931 |
-
float: left;
|
932 |
-
font-family: helveticaregular;
|
933 |
-
line-height: 42px;
|
934 |
-
}
|
935 |
-
|
936 |
-
.tab7 .pop_up_show {
|
937 |
-
width: 100%;
|
938 |
-
float: left;
|
939 |
-
margin-top: 20px;
|
940 |
-
}
|
941 |
-
|
942 |
-
.tab7 .pop_up_show span {
|
943 |
-
float: left;
|
944 |
-
}
|
945 |
-
|
946 |
-
.tab7 .pop_up_show label {
|
947 |
-
float: left;
|
948 |
-
width: auto;
|
949 |
-
font-size: 18px;
|
950 |
-
font-weight: 400;
|
951 |
-
text-align: center;
|
952 |
-
line-height: 38px !important;
|
953 |
-
color: #5a6570;
|
954 |
-
padding: 0 0 0 20px;
|
955 |
-
}
|
956 |
-
|
957 |
-
.tab7 .pop_up_show input.add {
|
958 |
-
width: 257px;
|
959 |
-
float: left;
|
960 |
-
background: #e5e5e5;
|
961 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
962 |
-
border: 0;
|
963 |
-
padding: 10px;
|
964 |
-
margin-left: 40px;
|
965 |
-
}
|
966 |
-
|
967 |
-
.tab7 .pop_up_show input.seconds {
|
968 |
-
width: 60px;
|
969 |
-
background: #e5e5e5;
|
970 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
971 |
-
border: 0;
|
972 |
-
padding: 10px;
|
973 |
-
margin: 0 7px;
|
974 |
-
}
|
975 |
-
|
976 |
-
.tab7 .pop_up_show a {
|
977 |
-
text-decoration: underline;
|
978 |
-
color: #a4a9ad;
|
979 |
-
font-size: 16px;
|
980 |
-
margin-left: 20px;
|
981 |
-
}
|
982 |
-
|
983 |
-
.tab7 .pop_up_show .field {
|
984 |
-
width: 135px;
|
985 |
-
float: left;
|
986 |
-
position: relative;
|
987 |
-
margin-left: 20px;
|
988 |
-
font-size: 17px;
|
989 |
-
font-family: helveticaregular;
|
990 |
-
}
|
991 |
-
|
992 |
-
.tab7 .pop_up_show .field .select {
|
993 |
-
width: 127px;
|
994 |
-
height: 48px;
|
995 |
-
background: url(../images/select_bg.jpg) no-repeat;
|
996 |
-
display: block;
|
997 |
-
padding-left: 10px;
|
998 |
-
line-height: 46px;
|
999 |
-
font-size: 16px;
|
1000 |
-
color: #5a6570;
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
.tab7 .pop_up_show .field select.styled {
|
1004 |
-
position: absolute;
|
1005 |
-
left: 0;
|
1006 |
-
top: 0;
|
1007 |
-
width: 135px;
|
1008 |
-
line-height: 46px;
|
1009 |
-
height: 46px;
|
1010 |
-
}
|
1011 |
-
|
1012 |
-
.pop_up_box {
|
1013 |
-
width: 474px;
|
1014 |
-
background: #FFF;
|
1015 |
-
box-shadow: 0 0 5px 3px #d8d8d8;
|
1016 |
-
margin: 200px auto;
|
1017 |
-
padding: 20px 25px 0;
|
1018 |
-
font-family: helveticaregular;
|
1019 |
-
color: #5a6570;
|
1020 |
-
min-height: 250px;
|
1021 |
-
position: relative;
|
1022 |
-
}
|
1023 |
-
|
1024 |
-
.pop_up_box h4,
|
1025 |
-
.pop_up_box_ex h4 {
|
1026 |
-
font-size: 20px;
|
1027 |
-
color: #5a6570;
|
1028 |
-
text-align: center;
|
1029 |
-
margin: 0;
|
1030 |
-
padding: 0;
|
1031 |
-
line-height: 22px;
|
1032 |
-
}
|
1033 |
-
|
1034 |
-
.pop_up_box p,
|
1035 |
-
.pop_up_box_ex p {
|
1036 |
-
font-size: 17px;
|
1037 |
-
line-height: 28px;
|
1038 |
-
color: #5a6570;
|
1039 |
-
text-align: left;
|
1040 |
-
margin: 0;
|
1041 |
-
padding: 25px 0 0;
|
1042 |
-
font-family: helveticaregular;
|
1043 |
-
}
|
1044 |
-
|
1045 |
-
.sfsi_popupcntnr {
|
1046 |
-
float: left;
|
1047 |
-
width: 100%
|
1048 |
-
}
|
1049 |
-
|
1050 |
-
.sfsi_popupcntnr>h3 {
|
1051 |
-
color: #000;
|
1052 |
-
float: left;
|
1053 |
-
font-weight: 700;
|
1054 |
-
margin-bottom: 5px;
|
1055 |
-
width: 100%
|
1056 |
-
}
|
1057 |
-
|
1058 |
-
ul.flwstep {
|
1059 |
-
float: left;
|
1060 |
-
width: 100%
|
1061 |
-
}
|
1062 |
-
|
1063 |
-
ul.flwstep>li {
|
1064 |
-
color: #000;
|
1065 |
-
font-size: 16px;
|
1066 |
-
margin: 5px;
|
1067 |
-
}
|
1068 |
-
|
1069 |
-
.upldbtn {
|
1070 |
-
float: left;
|
1071 |
-
text-align: center;
|
1072 |
-
width: 100%
|
1073 |
-
}
|
1074 |
-
|
1075 |
-
.upload_butt {
|
1076 |
-
background-color: #12a252;
|
1077 |
-
border: none;
|
1078 |
-
color: #fff;
|
1079 |
-
font-weight: 700;
|
1080 |
-
margin-top: 10px;
|
1081 |
-
padding: 5px 27px;
|
1082 |
-
width: auto;
|
1083 |
-
cursor: pointer;
|
1084 |
-
font-size: 15px !important;
|
1085 |
-
|
1086 |
-
}
|
1087 |
-
|
1088 |
-
@media (min-width: 295px) and (max-width: 558px) {
|
1089 |
-
.sfsi_premium_wechat_follow_overlay .upload_butt {
|
1090 |
-
padding: 5px;
|
1091 |
-
}
|
1092 |
-
}
|
1093 |
-
|
1094 |
-
@media (max-width: 295px) {
|
1095 |
-
.sfsi_premium_upload_butt_container {
|
1096 |
-
width: 100% !important;
|
1097 |
-
padding-bottom: 5px !important;
|
1098 |
-
}
|
1099 |
-
}
|
1100 |
-
|
1101 |
-
.pop_up_box .button {
|
1102 |
-
background: #12a252;
|
1103 |
-
font-size: 22px;
|
1104 |
-
line-height: 24px;
|
1105 |
-
color: #5a6570;
|
1106 |
-
text-align: center;
|
1107 |
-
min-height: 80px;
|
1108 |
-
margin-top: 32px;
|
1109 |
-
box-shadow: none;
|
1110 |
-
word-wrap: break-word;
|
1111 |
-
white-space: normal;
|
1112 |
-
}
|
1113 |
-
|
1114 |
-
.pop_up_box .button:hover {
|
1115 |
-
box-shadow: none !important;
|
1116 |
-
}
|
1117 |
-
|
1118 |
-
.pop_up_box .button a.activate {
|
1119 |
-
padding: 0px 0;
|
1120 |
-
}
|
1121 |
-
|
1122 |
-
.pop_up_box a,
|
1123 |
-
.pop_up_box_ex a {
|
1124 |
-
color: #a4a9ad;
|
1125 |
-
font-size: 20px;
|
1126 |
-
text-decoration: none;
|
1127 |
-
text-align: center;
|
1128 |
-
display: inline-block;
|
1129 |
-
margin-top: 20px;
|
1130 |
-
width: 100%;
|
1131 |
-
}
|
1132 |
-
|
1133 |
-
.pop_up_box .upload {
|
1134 |
-
width: 100%;
|
1135 |
-
float: left;
|
1136 |
-
text-align: left;
|
1137 |
-
margin-top: 15px;
|
1138 |
-
height: 46px;
|
1139 |
-
}
|
1140 |
-
|
1141 |
-
.pop_up_box .upload label {
|
1142 |
-
width: 135px;
|
1143 |
-
float: left;
|
1144 |
-
line-height: 45px;
|
1145 |
-
font-size: 18px;
|
1146 |
-
font-family: helveticaregular;
|
1147 |
-
text-align: left;
|
1148 |
-
}
|
1149 |
-
|
1150 |
-
.pop_up_box .upload input[type=text] {
|
1151 |
-
width: 248px;
|
1152 |
-
float: left;
|
1153 |
-
background: #e5e5e5;
|
1154 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
1155 |
-
border: 0;
|
1156 |
-
padding: 0 10px;
|
1157 |
-
font-size: 16px;
|
1158 |
-
height: 44px;
|
1159 |
-
text-align: left;
|
1160 |
-
color: #5a6570;
|
1161 |
-
font-family: helveticaregular;
|
1162 |
-
}
|
1163 |
-
|
1164 |
-
.pop_up_box .upload input.upload_butt {
|
1165 |
-
width: 100px;
|
1166 |
-
background: #12a252;
|
1167 |
-
box-shadow: 0 0 0;
|
1168 |
-
border: 0;
|
1169 |
-
text-align: center;
|
1170 |
-
font-size: 18px;
|
1171 |
-
color: #fff;
|
1172 |
-
font-family: helveticaregular;
|
1173 |
-
height: 45px;
|
1174 |
-
right: 32px;
|
1175 |
-
top: 71px;
|
1176 |
-
position: absolute;
|
1177 |
-
}
|
1178 |
-
|
1179 |
-
.pop_up_box .upload a {
|
1180 |
-
color: #12a252;
|
1181 |
-
font-size: 18px;
|
1182 |
-
text-decoration: underline;
|
1183 |
-
font-family: helveticaregular;
|
1184 |
-
margin: 0 0 16px 140px;
|
1185 |
-
}
|
1186 |
-
|
1187 |
-
.pop_up_box a:hover,
|
1188 |
-
.pop_up_box_ex a:hover {
|
1189 |
-
color: #a4a9ad;
|
1190 |
-
}
|
1191 |
-
|
1192 |
-
.tab1 ul.plus_icn_listing {
|
1193 |
-
list-style: none;
|
1194 |
-
overflow: hidden;
|
1195 |
-
border-top: #e7e8eb solid 1px;
|
1196 |
-
margin: 35px 0 0;
|
1197 |
-
}
|
1198 |
-
|
1199 |
-
.tab1 ul.plus_icn_listing li {
|
1200 |
-
border-bottom: #eaebed solid 1px;
|
1201 |
-
padding: 11px 0 11px 8px;
|
1202 |
-
float: left;
|
1203 |
-
width: 100%
|
1204 |
-
}
|
1205 |
-
|
1206 |
-
ul.plus_icn_listing li .tb_4_ck {
|
1207 |
-
float: left;
|
1208 |
-
margin: 10px 0 0;
|
1209 |
-
}
|
1210 |
-
|
1211 |
-
.upload_pop_up .upload_butt {
|
1212 |
-
line-height: 27px;
|
1213 |
-
margin-left: 6px
|
1214 |
-
}
|
1215 |
-
|
1216 |
-
ul.sfsiplus_icn_listing8 li .tb_4_ck {
|
1217 |
-
float: left;
|
1218 |
-
margin: 10px 0 0;
|
1219 |
-
}
|
1220 |
-
|
1221 |
-
.tab8 .cstmdsplyulwpr .radio_section.tb_4_ck {
|
1222 |
-
margin-right: 10px !important;
|
1223 |
-
}
|
1224 |
-
|
1225 |
-
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplsub {
|
1226 |
-
margin-top: 3px;
|
1227 |
-
}
|
1228 |
-
|
1229 |
-
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdspllke {
|
1230 |
-
margin-top: 3px;
|
1231 |
-
}
|
1232 |
-
|
1233 |
-
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplggpls {
|
1234 |
-
margin-top: 3px;
|
1235 |
-
}
|
1236 |
-
|
1237 |
-
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdspltwtr {
|
1238 |
-
margin-top: 4px;
|
1239 |
-
}
|
1240 |
-
|
1241 |
-
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplshr {
|
1242 |
-
margin-top: 3px;
|
1243 |
-
}
|
1244 |
-
|
1245 |
-
.tab2 {
|
1246 |
-
overflow: hidden;
|
1247 |
-
}
|
1248 |
-
|
1249 |
-
.tab2 .rss_url_row {
|
1250 |
-
width: 100%;
|
1251 |
-
float: left;
|
1252 |
-
margin: 0 0 10px;
|
1253 |
-
}
|
1254 |
-
|
1255 |
-
.tab2 .rss_url_row h4 {
|
1256 |
-
float: left;
|
1257 |
-
line-height: 43px !important;
|
1258 |
-
}
|
1259 |
-
|
1260 |
-
.tab2 .inr_cont input.add,
|
1261 |
-
.tab2 .inr_cont textarea.add_txt,
|
1262 |
-
.tab2 .rss_url_row input.add {
|
1263 |
-
width: 363px;
|
1264 |
-
float: left;
|
1265 |
-
background: #e5e5e5;
|
1266 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
1267 |
-
border: 0;
|
1268 |
-
padding: 12px 10px 11px;
|
1269 |
-
margin-left: 227px;
|
1270 |
-
margin-top: -38px;
|
1271 |
-
}
|
1272 |
-
|
1273 |
-
.tab2 .rss_url_row input.add {
|
1274 |
-
margin-left: 10px;
|
1275 |
-
margin-top: 0;
|
1276 |
-
}
|
1277 |
-
|
1278 |
-
.tab2 .inr_cont input.add1,
|
1279 |
-
.tab2 .rss_url_row input.add1 {
|
1280 |
-
width: 363px;
|
1281 |
-
float: left;
|
1282 |
-
background: #e5e5e5;
|
1283 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
1284 |
-
border: 0;
|
1285 |
-
padding: 12px 10px 11px;
|
1286 |
-
margin-left: 284px;
|
1287 |
-
margin-top: -34px;
|
1288 |
-
}
|
1289 |
-
|
1290 |
-
.tab2 .rss_url_row a.rit_link {
|
1291 |
-
float: left;
|
1292 |
-
margin: 10px 0 0 16px;
|
1293 |
-
font-size: 17px;
|
1294 |
-
}
|
1295 |
-
|
1296 |
-
.tab2 .row {
|
1297 |
-
float: left;
|
1298 |
-
border-top: 2px solid #f2f3f4;
|
1299 |
-
clear: both;
|
1300 |
-
padding: 0 0 15px;
|
1301 |
-
width: 100%
|
1302 |
-
}
|
1303 |
-
|
1304 |
-
.tab2 .row .tab_2_email_sec {
|
1305 |
-
list-style: none;
|
1306 |
-
margin: 17px 0 0;
|
1307 |
-
overflow: hidden;
|
1308 |
-
}
|
1309 |
-
|
1310 |
-
.row ul.tab_2_email_sec li {
|
1311 |
-
float: left;
|
1312 |
-
margin-right: 10px;
|
1313 |
-
width: 32%;
|
1314 |
-
}
|
1315 |
-
|
1316 |
-
.sfsiplusicnsdvwrp {
|
1317 |
-
width: 110px;
|
1318 |
-
float: left;
|
1319 |
-
}
|
1320 |
-
|
1321 |
-
.row ul.tab_2_email_sec:first-child {
|
1322 |
-
margin-right: 2%
|
1323 |
-
}
|
1324 |
-
|
1325 |
-
.inr_cont .fb_url {
|
1326 |
-
clear: both;
|
1327 |
-
}
|
1328 |
-
|
1329 |
-
.inr_cont .fb_url .checkbox,
|
1330 |
-
.inr_cont .fb_url input.add,
|
1331 |
-
.inr_cont .fb_url label,
|
1332 |
-
.inr_cont .fb_url lable {
|
1333 |
-
float: left;
|
1334 |
-
}
|
1335 |
-
|
1336 |
-
.inr_cont .fb_url input.add {
|
1337 |
-
margin-left: 19px;
|
1338 |
-
margin-top: 0;
|
1339 |
-
}
|
1340 |
-
|
1341 |
-
.inr_cont .fb_url .checkbox {
|
1342 |
-
margin: 6px 0 0;
|
1343 |
-
}
|
1344 |
-
|
1345 |
-
.inr_cont .fb_url label {
|
1346 |
-
line-height: 41px;
|
1347 |
-
margin: 0 0 0 15px;
|
1348 |
-
font-size: 18px;
|
1349 |
-
}
|
1350 |
-
|
1351 |
-
.inr_cont textarea.add_txt {
|
1352 |
-
resize: none;
|
1353 |
-
margin: 0 0 0 19px !important;
|
1354 |
-
height: 60px;
|
1355 |
-
}
|
1356 |
-
|
1357 |
-
.tab2 .inr_cont textarea.add_txt {
|
1358 |
-
width: 382px !important;
|
1359 |
-
height: 90px;
|
1360 |
-
overflow: hidden;
|
1361 |
-
}
|
1362 |
-
|
1363 |
-
.tab2 .inr_cont input.add {
|
1364 |
-
width: 417px;
|
1365 |
-
}
|
1366 |
-
|
1367 |
-
.red_txt,
|
1368 |
-
.tab2 .red_txt {
|
1369 |
-
color: #ef4745 !important;
|
1370 |
-
text-align: center !important;
|
1371 |
-
padding-top: 5px !important;
|
1372 |
-
}
|
1373 |
-
|
1374 |
-
.green_txt {
|
1375 |
-
color: #12A252 !important;
|
1376 |
-
text-align: center !important;
|
1377 |
-
padding-top: 5px !important;
|
1378 |
-
}
|
1379 |
-
|
1380 |
-
.red_txt {
|
1381 |
-
color: #f80000 !important;
|
1382 |
-
text-align: center !important;
|
1383 |
-
padding-top: 5px !important;
|
1384 |
-
}
|
1385 |
-
|
1386 |
-
.linked_tab_2 .fb_url label {
|
1387 |
-
width: 32%
|
1388 |
-
}
|
1389 |
-
|
1390 |
-
.twt_tab_2 label {
|
1391 |
-
width: 18%
|
1392 |
-
}
|
1393 |
-
|
1394 |
-
.bdr_top {
|
1395 |
-
border-top: none !important;
|
1396 |
-
}
|
1397 |
-
|
1398 |
-
.linked_tab_2 .fb_url input.link_dbl {
|
1399 |
-
margin-bottom: 6px;
|
1400 |
-
}
|
1401 |
-
|
1402 |
-
.tab3 {
|
1403 |
-
overflow: hidden;
|
1404 |
-
}
|
1405 |
-
|
1406 |
-
.tab3 .row {
|
1407 |
-
padding: 15px 0;
|
1408 |
-
clear: both;
|
1409 |
-
overflow: hidden;
|
1410 |
-
}
|
1411 |
-
|
1412 |
-
.tab3 .row.sfsiplusmousetxt {
|
1413 |
-
border: medium none;
|
1414 |
-
}
|
1415 |
-
|
1416 |
-
.tab3 ul.tab_3_list {
|
1417 |
-
overflow: hidden;
|
1418 |
-
margin: 4px 0 11px;
|
1419 |
-
}
|
1420 |
-
|
1421 |
-
.tab8 .sfsiplus_toglepstpgspn {
|
1422 |
-
font-weight: bold;
|
1423 |
-
}
|
1424 |
-
|
1425 |
-
ul.tab_3_list li {
|
1426 |
-
background: url(../images/tab_3_list_bg.jpg) 13px 7px no-repeat;
|
1427 |
-
padding: 0 0 0 30px;
|
1428 |
-
color: #778088;
|
1429 |
-
font-family: helveticaregular;
|
1430 |
-
font-size: 17px;
|
1431 |
-
margin-bottom: 4px;
|
1432 |
-
}
|
1433 |
-
|
1434 |
-
.tab5 ul.tab_3_list li {
|
1435 |
-
background: url(../images/tab_3_list_bg.jpg) 13px 18px no-repeat;
|
1436 |
-
}
|
1437 |
-
|
1438 |
-
.tab3 .row h3 {
|
1439 |
-
margin: 0 0 20px;
|
1440 |
-
color: #414951;
|
1441 |
-
font-family: helveticabold;
|
1442 |
-
font-size: 20px;
|
1443 |
-
}
|
1444 |
-
|
1445 |
-
ul.sfsiplus_tab_3_icns {
|
1446 |
-
list-style: none;
|
1447 |
-
margin: 34px 0 0;
|
1448 |
-
overflow: hidden;
|
1449 |
-
}
|
1450 |
-
|
1451 |
-
ul.sfsiplus_tab_3_icns li {
|
1452 |
-
width: 100%;
|
1453 |
-
margin: 0 0 21px;
|
1454 |
-
float: left;
|
1455 |
-
}
|
1456 |
-
|
1457 |
-
ul.sfsiplus_tab_3_icns label {
|
1458 |
-
float: left;
|
1459 |
-
line-height: 42px;
|
1460 |
-
color: #69737C;
|
1461 |
-
font-size: 18px;
|
1462 |
-
font-family: helveticaregular;
|
1463 |
-
min-width: 120px;
|
1464 |
-
}
|
1465 |
-
|
1466 |
-
ul.sfsiplus_tab_3_icns li .sfsiplus_icns_tab_3,
|
1467 |
-
ul.sfsiplus_tab_3_icns li .radio {
|
1468 |
-
float: left;
|
1469 |
-
}
|
1470 |
-
|
1471 |
-
.tab3 .sub_row {
|
1472 |
-
float: left;
|
1473 |
-
margin: 35px 0 0 4%;
|
1474 |
-
width: 90%
|
1475 |
-
}
|
1476 |
-
|
1477 |
-
.tab3 .sub_row h4 {
|
1478 |
-
color: #a4a9ad !important;
|
1479 |
-
}
|
1480 |
-
|
1481 |
-
.tab3 .sub_row p {
|
1482 |
-
padding-top: 18px !important;
|
1483 |
-
clear: both;
|
1484 |
-
overflow: hidden;
|
1485 |
-
}
|
1486 |
-
|
1487 |
-
.sub_row .sub_sub_box p {
|
1488 |
-
padding-top: 18px !important;
|
1489 |
-
}
|
1490 |
-
|
1491 |
-
.tab3 .sub_row .checkbox {
|
1492 |
-
float: left;
|
1493 |
-
margin-top: 4px;
|
1494 |
-
}
|
1495 |
-
|
1496 |
-
.tab3 .sub_row .sub_sub_box {
|
1497 |
-
width: 80%;
|
1498 |
-
margin: 7px 0 15px 10%;
|
1499 |
-
float: left;
|
1500 |
-
}
|
1501 |
-
|
1502 |
-
.tab3 .sub_row input.smal_inpt {
|
1503 |
-
width: 73px;
|
1504 |
-
background: #e5e5e5;
|
1505 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
1506 |
-
border: 0;
|
1507 |
-
padding: 10px;
|
1508 |
-
float: left;
|
1509 |
-
}
|
1510 |
-
|
1511 |
-
.tab3 .sub_row .drop_lst {
|
1512 |
-
border: 1px solid #d6d6d6;
|
1513 |
-
font-size: 16px;
|
1514 |
-
color: #5a6570;
|
1515 |
-
width: 120px;
|
1516 |
-
}
|
1517 |
-
|
1518 |
-
.tab3 .first_row,
|
1519 |
-
.tab3 .first_row p,
|
1520 |
-
.tab3 .first_row p .radio,
|
1521 |
-
.tab3 .first_row p label {
|
1522 |
-
float: left;
|
1523 |
-
}
|
1524 |
-
|
1525 |
-
.tab3 .first_row {
|
1526 |
-
width: 90%;
|
1527 |
-
float: left;
|
1528 |
-
}
|
1529 |
-
|
1530 |
-
.tab3 .first_row p {
|
1531 |
-
padding: 0 !important;
|
1532 |
-
}
|
1533 |
-
|
1534 |
-
.tab3 .first_row p label {
|
1535 |
-
line-height: 44px;
|
1536 |
-
margin: 0 10px;
|
1537 |
-
}
|
1538 |
-
|
1539 |
-
.tab3 .first_row p:last-child {
|
1540 |
-
margin-left: 27%
|
1541 |
-
}
|
1542 |
-
|
1543 |
-
.tab3 .tab_1_sav {
|
1544 |
-
padding-top: 20px !important;
|
1545 |
-
margin: 10px auto 20px;
|
1546 |
-
}
|
1547 |
-
|
1548 |
-
.suc_msg {
|
1549 |
-
background: #12A252;
|
1550 |
-
color: #FFF;
|
1551 |
-
display: none;
|
1552 |
-
font-size: 23px;
|
1553 |
-
padding: 10px;
|
1554 |
-
text-align: left;
|
1555 |
-
text-decoration: none;
|
1556 |
-
}
|
1557 |
-
|
1558 |
-
.error_msg {
|
1559 |
-
background: #D22B30;
|
1560 |
-
color: #FFF;
|
1561 |
-
display: none;
|
1562 |
-
font-size: 23px;
|
1563 |
-
padding: 10px;
|
1564 |
-
text-align: left;
|
1565 |
-
text-decoration: none;
|
1566 |
-
}
|
1567 |
-
|
1568 |
-
.fileUPInput {
|
1569 |
-
cursor: pointer;
|
1570 |
-
position: relative;
|
1571 |
-
top: -43px;
|
1572 |
-
right: 0;
|
1573 |
-
z-index: 99;
|
1574 |
-
height: 42px;
|
1575 |
-
font-size: 5px;
|
1576 |
-
opacity: 0;
|
1577 |
-
-moz-opacity: 0;
|
1578 |
-
filter: alpha(opacity=0);
|
1579 |
-
width: 100%
|
1580 |
-
}
|
1581 |
-
|
1582 |
-
.inputWrapper {
|
1583 |
-
height: 20px;
|
1584 |
-
width: 50px;
|
1585 |
-
overflow: hidden;
|
1586 |
-
position: relative;
|
1587 |
-
cursor: pointer;
|
1588 |
-
}
|
1589 |
-
|
1590 |
-
.sfsiplus_custom-txt {
|
1591 |
-
background: none !important;
|
1592 |
-
padding-left: 2px !important;
|
1593 |
-
}
|
1594 |
-
|
1595 |
-
.plus_custom-img {
|
1596 |
-
float: left;
|
1597 |
-
margin-left: 20px;
|
1598 |
-
}
|
1599 |
-
|
1600 |
-
.loader-img {
|
1601 |
-
float: left;
|
1602 |
-
margin-left: -70px;
|
1603 |
-
display: none;
|
1604 |
-
}
|
1605 |
-
|
1606 |
-
.pop-overlay {
|
1607 |
-
position: fixed;
|
1608 |
-
top: 0;
|
1609 |
-
left: 0;
|
1610 |
-
width: 100%;
|
1611 |
-
height: 100%;
|
1612 |
-
background-color: #d3d3d3;
|
1613 |
-
z-index: 10;
|
1614 |
-
padding: 20px;
|
1615 |
-
display: none;
|
1616 |
-
}
|
1617 |
-
|
1618 |
-
.fb-overlay {
|
1619 |
-
position: fixed;
|
1620 |
-
top: 0;
|
1621 |
-
left: 0;
|
1622 |
-
width: 100%;
|
1623 |
-
height: 100%;
|
1624 |
-
background-color: #d3d3d3;
|
1625 |
-
z-index: -1000;
|
1626 |
-
padding: 20px;
|
1627 |
-
opacity: 0;
|
1628 |
-
display: block;
|
1629 |
-
}
|
1630 |
-
|
1631 |
-
.inputError {
|
1632 |
-
border: 1px solid #f80000 !important;
|
1633 |
-
}
|
1634 |
-
|
1635 |
-
.sfsicloseBtn {
|
1636 |
-
position: absolute;
|
1637 |
-
top: 0;
|
1638 |
-
right: 0;
|
1639 |
-
cursor: pointer;
|
1640 |
-
}
|
1641 |
-
|
1642 |
-
.sfsi_plus_tool_tip_2 .tool_tip>img,
|
1643 |
-
.tool_tip>img {
|
1644 |
-
display: inline-block;
|
1645 |
-
margin-right: 4px;
|
1646 |
-
float: left;
|
1647 |
-
}
|
1648 |
-
.top_arow {
|
1649 |
-
background: url(../images/top_aro.png) no-repeat;
|
1650 |
-
position: absolute;
|
1651 |
-
top: -29px;
|
1652 |
-
left: 38%;
|
1653 |
-
width: 33px;
|
1654 |
-
height: 29px;
|
1655 |
-
background-color: #fff;
|
1656 |
-
}
|
1657 |
-
|
1658 |
-
.sfsi_plus_tool_tip_2 .top_arow .sfsi_plus_inside,
|
1659 |
-
.top_arow .sfsi_plus_inside {
|
1660 |
-
float: left;
|
1661 |
-
}
|
1662 |
-
|
1663 |
-
.sfsi_plus_tool_tip_2 .tool_tip>img,
|
1664 |
-
.tool_tip>img {
|
1665 |
-
display: inline-block;
|
1666 |
-
margin-right: 4px;
|
1667 |
-
float: left;
|
1668 |
-
}
|
1669 |
-
|
1670 |
-
.sfsiplus_norm_row {
|
1671 |
-
float: left;
|
1672 |
-
min-width: 25px;
|
1673 |
-
}
|
1674 |
-
|
1675 |
-
.sfsiplus_norm_row a {
|
1676 |
-
border: none;
|
1677 |
-
display: inline-block;
|
1678 |
-
position: relative;
|
1679 |
-
}
|
1680 |
-
|
1681 |
-
.sfsi_plus_widget {
|
1682 |
-
min-height: 55px;
|
1683 |
-
}
|
1684 |
-
|
1685 |
-
.sfsi_plus_tool_tip_2 a {
|
1686 |
-
min-height: 0 !important;
|
1687 |
-
}
|
1688 |
-
|
1689 |
-
.sfsi_plus_widget a img {
|
1690 |
-
box-shadow: none !important;
|
1691 |
-
outline: 0;
|
1692 |
-
}
|
1693 |
-
|
1694 |
-
.sfsi_plus_wicons {
|
1695 |
-
display: inline-block;
|
1696 |
-
color: #000;
|
1697 |
-
}
|
1698 |
-
|
1699 |
-
.sel-active {
|
1700 |
-
background-color: #f7941d;
|
1701 |
-
}
|
1702 |
-
|
1703 |
-
.sfsi_plus_outr_div .close {
|
1704 |
-
position: absolute;
|
1705 |
-
right: 18px;
|
1706 |
-
top: 18px;
|
1707 |
-
}
|
1708 |
-
|
1709 |
-
.sfsi_plus_outr_div h2 {
|
1710 |
-
color: #778088;
|
1711 |
-
font-family: helveticaregular;
|
1712 |
-
font-size: 26px;
|
1713 |
-
margin: 0 0 9px;
|
1714 |
-
padding: 0;
|
1715 |
-
text-align: center;
|
1716 |
-
font-weight: 400;
|
1717 |
-
}
|
1718 |
-
|
1719 |
-
.sfsi_plus_outr_div ul li a {
|
1720 |
-
color: #5A6570;
|
1721 |
-
text-decoration: none;
|
1722 |
-
}
|
1723 |
-
|
1724 |
-
.sfsi_plus_outr_div ul li {
|
1725 |
-
display: inline-block;
|
1726 |
-
list-style: none;
|
1727 |
-
margin: 0;
|
1728 |
-
padding: 0;
|
1729 |
-
float: none;
|
1730 |
-
}
|
1731 |
-
|
1732 |
-
.expanded-area {
|
1733 |
-
display: none;
|
1734 |
-
}
|
1735 |
-
|
1736 |
-
.sfsi_plus_wicons a {
|
1737 |
-
-webkit-transition: all .2s ease-in-out;
|
1738 |
-
-moz-transition: all .2s ease-in-out;
|
1739 |
-
-o-transition: all .2s ease-in-out;
|
1740 |
-
-ms-transition: all .2s ease-in-out;
|
1741 |
-
}
|
1742 |
-
|
1743 |
-
.scale,
|
1744 |
-
.scale-div {
|
1745 |
-
-webkit-transform: scale(1.1);
|
1746 |
-
-moz-transform: scale(1.1);
|
1747 |
-
-o-transform: scale(1.1);
|
1748 |
-
transform: scale(1.1);
|
1749 |
-
}
|
1750 |
-
|
1751 |
-
.sfsi_plus_Sicons {
|
1752 |
-
float: left;
|
1753 |
-
}
|
1754 |
-
|
1755 |
-
.sfsi_pop_up .button a:hover {
|
1756 |
-
color: #fff;
|
1757 |
-
}
|
1758 |
-
|
1759 |
-
.sfsi_pop_up .button:hover {
|
1760 |
-
background: #12a252;
|
1761 |
-
color: #fff;
|
1762 |
-
border: none;
|
1763 |
-
}
|
1764 |
-
|
1765 |
-
ul.plus_icn_listing li .sfsiplus_right_info a {
|
1766 |
-
outline: 0;
|
1767 |
-
font-family: helveticaregular;
|
1768 |
-
}
|
1769 |
-
|
1770 |
-
ul.sfsiplus_icn_listing8 li .sfsiplus_right_info a {
|
1771 |
-
outline: 0;
|
1772 |
-
font-family: helveticaregular;
|
1773 |
-
}
|
1774 |
-
|
1775 |
-
.upload_pop_up .upload_butt {
|
1776 |
-
line-height: 27px;
|
1777 |
-
margin-left: 6px;
|
1778 |
-
}
|
1779 |
-
|
1780 |
-
.drop_lsts {
|
1781 |
-
left: 220px;
|
1782 |
-
position: relative;
|
1783 |
-
top: -40px;
|
1784 |
-
}
|
1785 |
-
|
1786 |
-
.drop_lsts .styled {
|
1787 |
-
top: -42px;
|
1788 |
-
width: 127px;
|
1789 |
-
height: 33px;
|
1790 |
-
}
|
1791 |
-
|
1792 |
-
.drop_lsts span {
|
1793 |
-
line-height: 50px;
|
1794 |
-
}
|
1795 |
-
|
1796 |
-
.drag_drp {
|
1797 |
-
left: 11px;
|
1798 |
-
position: relative;
|
1799 |
-
top: 38px;
|
1800 |
-
font-size: 17px;
|
1801 |
-
}
|
1802 |
-
|
1803 |
-
.listing ul li label {
|
1804 |
-
width: 224px;
|
1805 |
-
float: left;
|
1806 |
-
}
|
1807 |
-
|
1808 |
-
.sfsiplus_row_onl {
|
1809 |
-
width: 100%;
|
1810 |
-
float: left;
|
1811 |
-
}
|
1812 |
-
|
1813 |
-
#sfsi_plus_Show_popupOn_PageIDs option.sel-active {
|
1814 |
-
background: #f7941d;
|
1815 |
-
}
|
1816 |
-
|
1817 |
-
.sfsi_plus_inside div iframe {
|
1818 |
-
float: left;
|
1819 |
-
margin: 0;
|
1820 |
-
}
|
1821 |
-
|
1822 |
-
.sfsi_plus_inside div #___plus_0,
|
1823 |
-
.sfsi_plus_inside div #___plusone_0 {
|
1824 |
-
height: 27px;
|
1825 |
-
}
|
1826 |
-
|
1827 |
-
.sfsi_plus_outr_div li {
|
1828 |
-
float: left;
|
1829 |
-
}
|
1830 |
-
|
1831 |
-
.sfsi_plus_tool_tip_2 .sfsi_plus_inside div {
|
1832 |
-
min-height: 0;
|
1833 |
-
}
|
1834 |
-
|
1835 |
-
#___plus_1>iframe {
|
1836 |
-
height: 30px;
|
1837 |
-
}
|
1838 |
-
|
1839 |
-
.main_contant h1 {
|
1840 |
-
margin: 0 0 19px;
|
1841 |
-
}
|
1842 |
-
|
1843 |
-
.main_contant p {
|
1844 |
-
margin: 0 0 11px;
|
1845 |
-
}
|
1846 |
-
|
1847 |
-
.main_contant p>a {
|
1848 |
-
color: #1a1d20;
|
1849 |
-
text-decoration: underline;
|
1850 |
-
}
|
1851 |
-
|
1852 |
-
.tab1 .gary_bg {
|
1853 |
-
background: #f1f1f1;
|
1854 |
-
}
|
1855 |
-
|
1856 |
-
#accordion {
|
1857 |
-
margin-top: 25px;
|
1858 |
-
}
|
1859 |
-
|
1860 |
-
.main_contant p>a,
|
1861 |
-
.tab1 p span {
|
1862 |
-
font-family: helveticabold;
|
1863 |
-
}
|
1864 |
-
|
1865 |
-
.wapper .ui-accordion-header-active {
|
1866 |
-
margin-top: 20px !important;
|
1867 |
-
}
|
1868 |
-
|
1869 |
-
.wapper .tab2 {
|
1870 |
-
padding: 20px 33px 12px 34px !important;
|
1871 |
-
}
|
1872 |
-
|
1873 |
-
.wapper .tab2 p {
|
1874 |
-
margin-bottom: 6px;
|
1875 |
-
}
|
1876 |
-
|
1877 |
-
.tab2 .twt_tab_2 label {
|
1878 |
-
width: 175px;
|
1879 |
-
}
|
1880 |
-
|
1881 |
-
.tab2 .twt_fld {
|
1882 |
-
margin: 16px 0 23px;
|
1883 |
-
float: left;
|
1884 |
-
}
|
1885 |
-
|
1886 |
-
.tab2 .twt_fld_2 {
|
1887 |
-
margin: 0 0 12px;
|
1888 |
-
float: left;
|
1889 |
-
}
|
1890 |
-
|
1891 |
-
.tab2 .utube_inn {
|
1892 |
-
padding-bottom: 2px;
|
1893 |
-
float: left;
|
1894 |
-
}
|
1895 |
-
|
1896 |
-
.tab2 .utube_inn label {
|
1897 |
-
max-width: 90%
|
1898 |
-
}
|
1899 |
-
|
1900 |
-
.tab2 .utube_inn label span {
|
1901 |
-
font-family: helveticabold;
|
1902 |
-
}
|
1903 |
-
|
1904 |
-
.tab2 .inr_cont p>a {
|
1905 |
-
font-family: helveticabold;
|
1906 |
-
color: #778088;
|
1907 |
-
text-decoration: none;
|
1908 |
-
}
|
1909 |
-
|
1910 |
-
.sfsiplus_pinterest_section .inr_cont .pint_url {
|
1911 |
-
float: left;
|
1912 |
-
padding-top: 6px;
|
1913 |
-
clear: both;
|
1914 |
-
}
|
1915 |
-
|
1916 |
-
.sfsiplus_pinterest_section .inr_cont .add {
|
1917 |
-
width: 417px !important;
|
1918 |
-
}
|
1919 |
-
|
1920 |
-
.sfsiplus_linkedin_section .link_1,
|
1921 |
-
.sfsiplus_linkedin_section .link_2,
|
1922 |
-
.sfsiplus_linkedin_section .link_3,
|
1923 |
-
.sfsiplus_linkedin_section .link_4 {
|
1924 |
-
float: left;
|
1925 |
-
width: 100%
|
1926 |
-
}
|
1927 |
-
|
1928 |
-
.sfsiplus_linkedin_section .link_1 input.add,
|
1929 |
-
.sfsiplus_linkedin_section .link_2 input.add,
|
1930 |
-
.sfsiplus_linkedin_section .link_3 input.add,
|
1931 |
-
.sfsiplus_linkedin_section .link_4 input.add {
|
1932 |
-
width: 417px;
|
1933 |
-
}
|
1934 |
-
|
1935 |
-
.sfsiplus_linkedin_section .link_1 {
|
1936 |
-
margin-bottom: 7px;
|
1937 |
-
}
|
1938 |
-
|
1939 |
-
.sfsiplus_linkedin_section .link_2 {
|
1940 |
-
margin-bottom: 12px;
|
1941 |
-
}
|
1942 |
-
|
1943 |
-
.sfsiplus_linkedin_section .link_3,
|
1944 |
-
.sfsiplus_linkedin_section .link_4 {
|
1945 |
-
margin-bottom: 13px;
|
1946 |
-
}
|
1947 |
-
|
1948 |
-
.tab2 .sfsiplus_linkedin_section .link_4 {
|
1949 |
-
margin-bottom: 0;
|
1950 |
-
}
|
1951 |
-
|
1952 |
-
.sfsiplus_telegram_section .link_1,
|
1953 |
-
.sfsiplus_linkedin_section .link_2 {
|
1954 |
-
margin-bottom: 12px;
|
1955 |
-
}
|
1956 |
-
|
1957 |
-
ul.tab_3_list li span {
|
1958 |
-
font-family: helveticabold;
|
1959 |
-
}
|
1960 |
-
|
1961 |
-
#accordion .tab4 h4,
|
1962 |
-
#accordion1 .tab4 h4 {
|
1963 |
-
|
1964 |
-
color: #414951;
|
1965 |
-
font-size: 20px;
|
1966 |
-
}
|
1967 |
-
|
1968 |
-
.sfsiplus_specify_counts .listing li .input {
|
1969 |
-
width: 73px;
|
1970 |
-
}
|
1971 |
-
|
1972 |
-
.sfsiplus_fbpgidwpr {
|
1973 |
-
width: 160px;
|
1974 |
-
float: left;
|
1975 |
-
font-weight: bold;
|
1976 |
-
font-size: 17px;
|
1977 |
-
color: #000000;
|
1978 |
-
}
|
1979 |
-
|
1980 |
-
.sfsiplus_fbpgiddesc {
|
1981 |
-
font-weight: normal;
|
1982 |
-
width: 100%;
|
1983 |
-
font-size: 14px;
|
1984 |
-
color: #888888;
|
1985 |
-
padding: 4px 0 0 60px;
|
1986 |
-
}
|
1987 |
-
|
1988 |
-
.sfsiplus_fbpgiddesc code {
|
1989 |
-
background: none repeat scroll 0 0 transparent;
|
1990 |
-
padding-right: 0px;
|
1991 |
-
padding-left: 0px;
|
1992 |
-
|
1993 |
-
}
|
1994 |
-
|
1995 |
-
.sfsiplus_specify_counts .listing li .input.mypginpt {
|
1996 |
-
width: 288px;
|
1997 |
-
}
|
1998 |
-
|
1999 |
-
.tab3 .Shuffle_auto .sub_sub_box .tab_3_option {
|
2000 |
-
padding-top: 0 !important;
|
2001 |
-
margin-bottom: 10px !important;
|
2002 |
-
}
|
2003 |
-
|
2004 |
-
.tab3 .sub_row {
|
2005 |
-
margin-top: 10px !important;
|
2006 |
-
}
|
2007 |
-
|
2008 |
-
.tab4 {
|
2009 |
-
padding-top: 35px !important;
|
2010 |
-
}
|
2011 |
-
|
2012 |
-
.tab4 .save_button {
|
2013 |
-
padding-top: 46px;
|
2014 |
-
}
|
2015 |
-
|
2016 |
-
.tab5 {
|
2017 |
-
padding-top: 31px !important;
|
2018 |
-
}
|
2019 |
-
|
2020 |
-
.tab6,
|
2021 |
-
.tab7 {
|
2022 |
-
padding-top: 28px !important;
|
2023 |
-
}
|
2024 |
-
|
2025 |
-
.tab5 .sfsiplus_row_onl {
|
2026 |
-
margin-top: 15px;
|
2027 |
-
}
|
2028 |
-
|
2029 |
-
.tab5 .sticking .link>a {
|
2030 |
-
color: #a4a9ad;
|
2031 |
-
text-decoration: underline;
|
2032 |
-
}
|
2033 |
-
|
2034 |
-
.tab5 .mouse_txt h4 {
|
2035 |
-
margin-bottom: 8px !important;
|
2036 |
-
}
|
2037 |
-
|
2038 |
-
.tab5 .save_button {
|
2039 |
-
padding-top: 54px;
|
2040 |
-
}
|
2041 |
-
|
2042 |
-
.tab7 .like_pop_box h2 {
|
2043 |
-
font-family: helveticabold;
|
2044 |
-
text-align: center;
|
2045 |
-
color: #414951;
|
2046 |
-
font-size: 26px;
|
2047 |
-
}
|
2048 |
-
|
2049 |
-
.tab1 ul.plus_icn_listing li .sfsiplus_right_info label:hover {
|
2050 |
-
text-decoration: none !important;
|
2051 |
-
}
|
2052 |
-
|
2053 |
-
.tab1 ul.plus_icn_listing li .sfsiplus_right_info label.expanded-area {
|
2054 |
-
clear: both;
|
2055 |
-
float: left;
|
2056 |
-
margin-top: 14px;
|
2057 |
-
}
|
2058 |
-
|
2059 |
-
.tab7 .space {
|
2060 |
-
margin-top: 14px;
|
2061 |
-
}
|
2062 |
-
|
2063 |
-
.tab7 .pop_up_show label {
|
2064 |
-
font-family: helveticaregular !important;
|
2065 |
-
}
|
2066 |
-
|
2067 |
-
.tab7 .save_button {
|
2068 |
-
padding-top: 78px;
|
2069 |
-
}
|
2070 |
-
|
2071 |
-
.like_txt a {
|
2072 |
-
text-decoration: none;
|
2073 |
-
font-family: helveticaregular;
|
2074 |
-
}
|
2075 |
-
|
2076 |
-
.bdr_btm_non {
|
2077 |
-
border-bottom: none !important;
|
2078 |
-
}
|
2079 |
-
|
2080 |
-
.tab1 .tab_1_sav {
|
2081 |
-
padding-top: 13px;
|
2082 |
-
}
|
2083 |
-
|
2084 |
-
#accordion .tab2 .sfsiplus_facebook_section .inr_cont p.extra_sp,
|
2085 |
-
#accordion1 .tab2 .sfsiplus_facebook_section .inr_cont p.extra_sp {
|
2086 |
-
padding-top: 7px;
|
2087 |
-
}
|
2088 |
-
|
2089 |
-
.tab2 .sfsiplus_custom_section {
|
2090 |
-
width: 100%
|
2091 |
-
}
|
2092 |
-
|
2093 |
-
.tab7 {
|
2094 |
-
padding-bottom: 40px !important;
|
2095 |
-
}
|
2096 |
-
|
2097 |
-
.tab8 .save_button {
|
2098 |
-
padding-top: 0px;
|
2099 |
-
}
|
2100 |
-
|
2101 |
-
.tab10 .save_button a {
|
2102 |
-
padding: 16px 0;
|
2103 |
-
}
|
2104 |
-
|
2105 |
-
.tab2 .sfsiplus_twitter_section .twt_fld input.add,
|
2106 |
-
.tab2 .sfsiplus_twitter_section .twt_fld_2 textarea.add_txt {
|
2107 |
-
width: 464px !important;
|
2108 |
-
}
|
2109 |
-
|
2110 |
-
.tab2 .utube_inn .fb_url label span {
|
2111 |
-
font-family: helveticaregular;
|
2112 |
-
}
|
2113 |
-
|
2114 |
-
.tab1 label,
|
2115 |
-
.tab2 label,
|
2116 |
-
.tab3 label,
|
2117 |
-
.tab4 label,
|
2118 |
-
.tab5 label,
|
2119 |
-
.tab6 label,
|
2120 |
-
.tab7 label,
|
2121 |
-
.tab8 label,
|
2122 |
-
.tab9 label {
|
2123 |
-
cursor: default !important;
|
2124 |
-
}
|
2125 |
-
|
2126 |
-
.tab5 .new_wind h4 {
|
2127 |
-
margin-bottom: 11px !important;
|
2128 |
-
}
|
2129 |
-
|
2130 |
-
.pop_up_box .fb_2 span {
|
2131 |
-
height: 28px !important;
|
2132 |
-
}
|
2133 |
-
|
2134 |
-
.pop_up_box .sfsi_plus_tool_tip_2 .fbb .fb_1 a {
|
2135 |
-
margin-top: 0;
|
2136 |
-
}
|
2137 |
-
|
2138 |
-
.tab6 .social_icon_like1 ul li span {
|
2139 |
-
margin-top: -1px;
|
2140 |
-
}
|
2141 |
-
|
2142 |
-
#sfpluspageLoad {
|
2143 |
-
background: url(../images/ajax-loader.gif) 50% 50% no-repeat #F9F9F9;
|
2144 |
-
height: 100%;
|
2145 |
-
left: 160px;
|
2146 |
-
opacity: 1;
|
2147 |
-
position: fixed;
|
2148 |
-
top: 0;
|
2149 |
-
width: 89%;
|
2150 |
-
z-index: 9999;
|
2151 |
-
}
|
2152 |
-
|
2153 |
-
.sfsi_plus_tool_tip_2,
|
2154 |
-
.tool_tip {
|
2155 |
-
background: #FFF;
|
2156 |
-
border: 1px solid #e7e7e7;
|
2157 |
-
box-shadow: #e7e7e7 0 0 2px 1px;
|
2158 |
-
display: block;
|
2159 |
-
float: left;
|
2160 |
-
margin: 0 0 0 -52px;
|
2161 |
-
/*padding: 5px 14px 5px 14px;*/
|
2162 |
-
position: absolute;
|
2163 |
-
z-index: 10000;
|
2164 |
-
border-bottom: #e5e5e5 solid 4px;
|
2165 |
-
width: 100px;
|
2166 |
-
}
|
2167 |
-
|
2168 |
-
.sfsi_plus_tool_tip_2 {
|
2169 |
-
display: inline-table;
|
2170 |
-
}
|
2171 |
-
|
2172 |
-
.sfsiplus_inerCnt,
|
2173 |
-
.sfsiplus_inerCnt:hover,
|
2174 |
-
.sfsiplus_inerCnt>a,
|
2175 |
-
.sfsiplus_inerCnt>a:hover,
|
2176 |
-
.widget-area .widget a {
|
2177 |
-
outline: 0;
|
2178 |
-
}
|
2179 |
-
|
2180 |
-
.sfsi_plus_tool_tip_2_inr {
|
2181 |
-
bottom: 90%;
|
2182 |
-
left: 20%;
|
2183 |
-
opacity: 0;
|
2184 |
-
}
|
2185 |
-
|
2186 |
-
.sfsi_plus_tool_tip_2 .bot_arow {
|
2187 |
-
background: url(../images/bot_tip_icn.png) no-repeat;
|
2188 |
-
position: absolute;
|
2189 |
-
bottom: -21px;
|
2190 |
-
left: 50%;
|
2191 |
-
width: 15px;
|
2192 |
-
height: 21px;
|
2193 |
-
margin-left: -10px;
|
2194 |
-
}
|
2195 |
-
|
2196 |
-
.sfsi_plus_tool_tip_2 .top_big_arow {
|
2197 |
-
position: absolute;
|
2198 |
-
-webkit-transform: rotate(180deg);
|
2199 |
-
-moz-transform: rotate(180deg);
|
2200 |
-
-ms-transform: rotate(180deg);
|
2201 |
-
-o-transform: rotate(180deg);
|
2202 |
-
transform: rotate(180deg);
|
2203 |
-
top: -21px;
|
2204 |
-
left: 46%;
|
2205 |
-
width: 15px;
|
2206 |
-
height: 21px;
|
2207 |
-
margin-right: -5px;
|
2208 |
-
}
|
2209 |
-
|
2210 |
-
.sfsi_plus_tool_tip_2_inr .gpls_visit>a,
|
2211 |
-
.sfsi_plus_tool_tip_2_inr .prints_visit_1 a,
|
2212 |
-
.sfsi_plus_tool_tip_2_inr .utub_visit>a {
|
2213 |
-
margin-top: 0;
|
2214 |
-
}
|
2215 |
-
|
2216 |
-
.sfsi_plus_tool_tip_2_inr .linkin_1 a,
|
2217 |
-
.sfsi_plus_tool_tip_2_inr .linkin_2 a,
|
2218 |
-
.sfsi_plus_tool_tip_2_inr .linkin_3 a,
|
2219 |
-
.sfsi_plus_tool_tip_2_inr .linkin_4 a,
|
2220 |
-
.sfsi_plus_tool_tip_2_inr .prints_visit a {
|
2221 |
-
margin: 0;
|
2222 |
-
}
|
2223 |
-
|
2224 |
-
.sfsiTlleftBig {
|
2225 |
-
bottom: 121%;
|
2226 |
-
left: 22%;
|
2227 |
-
margin-left: -54%
|
2228 |
-
}
|
2229 |
-
|
2230 |
-
.sfsi_plus_Tlleft {
|
2231 |
-
bottom: 100%;
|
2232 |
-
left: 50%;
|
2233 |
-
margin-left: -66px !important;
|
2234 |
-
margin-bottom: 2px;
|
2235 |
-
}
|
2236 |
-
|
2237 |
-
.sfsi_plc_btm {
|
2238 |
-
bottom: auto;
|
2239 |
-
top: 100%;
|
2240 |
-
left: 50%;
|
2241 |
-
margin-left: -63px;
|
2242 |
-
margin-top: 8px;
|
2243 |
-
margin-bottom: auto;
|
2244 |
-
}
|
2245 |
-
|
2246 |
-
.sfsiplus_inerCnt {
|
2247 |
-
position: relative;
|
2248 |
-
z-index: inherit !important;
|
2249 |
-
float: left;
|
2250 |
-
width: 100%;
|
2251 |
-
float: left;
|
2252 |
-
}
|
2253 |
-
|
2254 |
-
.sfsi_plus_wicons {
|
2255 |
-
margin-bottom: 30px;
|
2256 |
-
position: relative;
|
2257 |
-
padding-top: 5px;
|
2258 |
-
}
|
2259 |
-
|
2260 |
-
.sfsiplus_norm_row .bot_no {
|
2261 |
-
position: absolute;
|
2262 |
-
padding: 1px 0;
|
2263 |
-
font-size: 12px !important;
|
2264 |
-
text-align: center;
|
2265 |
-
line-height: 12px !important;
|
2266 |
-
background: #fff;
|
2267 |
-
border-radius: 5px;
|
2268 |
-
left: 50%;
|
2269 |
-
margin-left: -20px;
|
2270 |
-
z-index: 9;
|
2271 |
-
border: 1px solid #333;
|
2272 |
-
top: 100%;
|
2273 |
-
white-space: pre;
|
2274 |
-
-webkit-box-sizing: border-box;
|
2275 |
-
-moz-box-sizing: border-box;
|
2276 |
-
box-sizing: border-box;
|
2277 |
-
margin-top: 10px;
|
2278 |
-
width: 40px;
|
2279 |
-
}
|
2280 |
-
|
2281 |
-
.sfsiplus_norm_row .bot_no:before {
|
2282 |
-
content: url(images/count_top_arow.png);
|
2283 |
-
position: absolute;
|
2284 |
-
height: 9px;
|
2285 |
-
margin-left: -7.5px;
|
2286 |
-
top: -10px;
|
2287 |
-
left: 50%;
|
2288 |
-
width: 15px;
|
2289 |
-
}
|
2290 |
-
|
2291 |
-
.sf_subscrbe .bot_no,
|
2292 |
-
.sf_fb .bot_no,
|
2293 |
-
.sf_twiter .bot_no,
|
2294 |
-
.sf_pinit .bot_no,
|
2295 |
-
.sf_linkedin .bot_no
|
2296 |
-
{
|
2297 |
-
background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
|
2298 |
-
font-size: 12px !important;
|
2299 |
-
left: 67px;
|
2300 |
-
line-height: 17px !important;
|
2301 |
-
margin-left: 0;
|
2302 |
-
padding: 1px 0;
|
2303 |
-
text-align: center;
|
2304 |
-
white-space: pre;
|
2305 |
-
width: 33px;
|
2306 |
-
height: 19px;
|
2307 |
-
z-index: 9;
|
2308 |
-
display: inline-block;
|
2309 |
-
vertical-align:bottom;
|
2310 |
-
}
|
2311 |
-
/* .sf_subscrbe .bot_no {
|
2312 |
-
background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
|
2313 |
-
font-size: 12px !important;
|
2314 |
-
left: 67px;
|
2315 |
-
line-height: 17px !important;
|
2316 |
-
margin-left: 0px;
|
2317 |
-
/* margin-top: 9px;*/
|
2318 |
-
/* padding: 1px 0; */
|
2319 |
-
/*position: absolute;*/
|
2320 |
-
/* text-align: center; */
|
2321 |
-
/*top: -8px;*/
|
2322 |
-
/* white-space: pre; */
|
2323 |
-
/* width: 33px; */
|
2324 |
-
/* height: 19px; */
|
2325 |
-
/* z-index: 9; */
|
2326 |
-
/* display: inline-block; */
|
2327 |
-
/* } */ */
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
.bot_no.sfsiSmBtn {
|
2332 |
-
font-size: 10px;
|
2333 |
-
margin-top: 4px;
|
2334 |
-
}
|
2335 |
-
|
2336 |
-
.bot_no.sfsiSmBtn:before {
|
2337 |
-
margin-left: -8px;
|
2338 |
-
top: -9px;
|
2339 |
-
}
|
2340 |
-
|
2341 |
-
.sfsiplus_norm_row .cbtn_vsmall {
|
2342 |
-
font-size: 9px;
|
2343 |
-
left: -28%;
|
2344 |
-
top: 4px;
|
2345 |
-
}
|
2346 |
-
|
2347 |
-
.sfsiplus_norm_row .cbtn_vsmall:before {
|
2348 |
-
left: 31%;
|
2349 |
-
top: -9px;
|
2350 |
-
margin-left: -31%
|
2351 |
-
}
|
2352 |
-
|
2353 |
-
h2.optional {
|
2354 |
-
font-family: helveticaregular;
|
2355 |
-
font-size: 25px;
|
2356 |
-
margin: 25px 0 19px;
|
2357 |
-
color: #5a6570;
|
2358 |
-
float: left;
|
2359 |
-
}
|
2360 |
-
|
2361 |
-
.utube_tool_bdr .utub_visit {
|
2362 |
-
margin: 9px 0 0;
|
2363 |
-
height: 24px;
|
2364 |
-
display: inline-block;
|
2365 |
-
float: none;
|
2366 |
-
}
|
2367 |
-
|
2368 |
-
.utube_tool_bdr .utub_2 {
|
2369 |
-
margin: 9px 0 0;
|
2370 |
-
height: 24px;
|
2371 |
-
width: 86px;
|
2372 |
-
display: inline-block;
|
2373 |
-
float: none;
|
2374 |
-
}
|
2375 |
-
|
2376 |
-
.sfsi_plus_printst_tool_bdr {
|
2377 |
-
width: 79px;
|
2378 |
-
}
|
2379 |
-
|
2380 |
-
.sfsi_plus_printst_tool_bdr .prints_visit {
|
2381 |
-
margin: 0 0 10px -22px;
|
2382 |
-
}
|
2383 |
-
|
2384 |
-
.sfsi_plus_printst_tool_bdr .prints_visit_1 {
|
2385 |
-
margin: 0 0 0 -53px;
|
2386 |
-
}
|
2387 |
-
|
2388 |
-
.sfsi_plus_fb_tool_bdr {
|
2389 |
-
width: 68px;
|
2390 |
-
height: auto;
|
2391 |
-
}
|
2392 |
-
|
2393 |
-
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside {
|
2394 |
-
text-align: center;
|
2395 |
-
width: 100%;
|
2396 |
-
float: left;
|
2397 |
-
overflow: hidden;
|
2398 |
-
}
|
2399 |
-
|
2400 |
-
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1 {
|
2401 |
-
margin: 2px 0 -5px 0;
|
2402 |
-
height: 28px;
|
2403 |
-
/*display: inline-block;*/
|
2404 |
-
float: none;
|
2405 |
-
/* width: 62px;s*/
|
2406 |
-
}
|
2407 |
-
|
2408 |
-
#sfsi_plus_floater .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1 {
|
2409 |
-
margin: -16px 0 16px 0;
|
2410 |
-
}
|
2411 |
-
|
2412 |
-
.sfsi_plus_inside img {
|
2413 |
-
vertical-align: sub !important;
|
2414 |
-
}
|
2415 |
-
|
2416 |
-
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon2 {
|
2417 |
-
margin: 2px 0 2px 0;
|
2418 |
-
height: 20px;
|
2419 |
-
/* width: 49px;*/
|
2420 |
-
display: block;
|
2421 |
-
overflow: hidden;
|
2422 |
-
}
|
2423 |
-
|
2424 |
-
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon3 {
|
2425 |
-
margin: 2px 0 2px 0;
|
2426 |
-
height: 20px;
|
2427 |
-
/* width: 62px;*/
|
2428 |
-
display: inline-block;
|
2429 |
-
float: none;
|
2430 |
-
}
|
2431 |
-
|
2432 |
-
#sfsi_plus_floater .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon3 {
|
2433 |
-
margin: 3px 0 0 0;
|
2434 |
-
}
|
2435 |
-
|
2436 |
-
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_1,
|
2437 |
-
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_2,
|
2438 |
-
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_3 {
|
2439 |
-
margin: 9px 0 0;
|
2440 |
-
height: 25px;
|
2441 |
-
}
|
2442 |
-
|
2443 |
-
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside {
|
2444 |
-
text-align: center;
|
2445 |
-
float: left;
|
2446 |
-
width: 100%
|
2447 |
-
}
|
2448 |
-
|
2449 |
-
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1 {
|
2450 |
-
margin: 2px 0;
|
2451 |
-
height: 24px;
|
2452 |
-
display: inline-block;
|
2453 |
-
float: none;
|
2454 |
-
/*width: 73px;*/
|
2455 |
-
}
|
2456 |
-
|
2457 |
-
#sfsi_plus_floater .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1 {
|
2458 |
-
margin: 0px 0;
|
2459 |
-
}
|
2460 |
-
|
2461 |
-
#sfsi_plus_floater .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2 {
|
2462 |
-
margin: -5px 0 17px 0;
|
2463 |
-
display: inherit;
|
2464 |
-
}
|
2465 |
-
|
2466 |
-
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2 {
|
2467 |
-
margin: 2px 0;
|
2468 |
-
height: 20px;
|
2469 |
-
display: inline-block;
|
2470 |
-
float: none;
|
2471 |
-
/*max-width: 73px;*/
|
2472 |
-
width: 100%;
|
2473 |
-
}
|
2474 |
-
|
2475 |
-
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .prints_visit,
|
2476 |
-
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .prints_visit_1 {
|
2477 |
-
margin: 9px 0 0;
|
2478 |
-
height: 20px;
|
2479 |
-
float: none;
|
2480 |
-
display: inline-block;
|
2481 |
-
}
|
2482 |
-
|
2483 |
-
.sfsi_plus_printst_tool_bdr {
|
2484 |
-
/* margin-left: -59px;*/
|
2485 |
-
}
|
2486 |
-
|
2487 |
-
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1>a>img,
|
2488 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1>a>img,
|
2489 |
-
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1>a>img,
|
2490 |
-
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4>a>img,
|
2491 |
-
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1>a>img,
|
2492 |
-
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2>a>img,
|
2493 |
-
.utube_tool_bdr .sfsi_plus_inside .icon1>a>img {
|
2494 |
-
padding-top: 0;
|
2495 |
-
}
|
2496 |
-
|
2497 |
-
.sfsi_plus_gpls_tool_bdr {
|
2498 |
-
width: 76px;
|
2499 |
-
}
|
2500 |
-
|
2501 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1>a>img {
|
2502 |
-
padding-top: 0;
|
2503 |
-
}
|
2504 |
-
|
2505 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside {
|
2506 |
-
text-align: center;
|
2507 |
-
width: 100%;
|
2508 |
-
float: left;
|
2509 |
-
}
|
2510 |
-
|
2511 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1 {
|
2512 |
-
margin: 2px 0 -5px 0;
|
2513 |
-
display: inline-block;
|
2514 |
-
float: none;
|
2515 |
-
height: 29px;
|
2516 |
-
/*width: 76px;*/
|
2517 |
-
}
|
2518 |
-
|
2519 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon2 {
|
2520 |
-
margin: 2px 0 2px 0;
|
2521 |
-
display: inline-block;
|
2522 |
-
float: none;
|
2523 |
-
height: 24px;
|
2524 |
-
width: 100%;
|
2525 |
-
/* width: 38px;*/
|
2526 |
-
}
|
2527 |
-
|
2528 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon3 {
|
2529 |
-
margin: 2px 0 2px 0;
|
2530 |
-
display: block;
|
2531 |
-
float: none;
|
2532 |
-
height: 24px;
|
2533 |
-
/* width: 76px;
|
2534 |
-
*/
|
2535 |
-
}
|
2536 |
-
|
2537 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gpls_visit,
|
2538 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gtalk_2,
|
2539 |
-
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gtalk_3 {
|
2540 |
-
margin: 9px 0 0;
|
2541 |
-
height: 29px;
|
2542 |
-
}
|
2543 |
-
|
2544 |
-
.sfsi_plus_fb_tool_bdr,
|
2545 |
-
.sfsi_plus_gpls_tool_bdr,
|
2546 |
-
.sfsi_plus_linkedin_tool_bdr,
|
2547 |
-
.sfsi_plus_printst_tool_bdr,
|
2548 |
-
.sfsi_plus_twt_tool_bdr {
|
2549 |
-
bottom: auto;
|
2550 |
-
left: 50%;
|
2551 |
-
margin-bottom: 2px;
|
2552 |
-
}
|
2553 |
-
|
2554 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside {
|
2555 |
-
text-align: center;
|
2556 |
-
width: 100%;
|
2557 |
-
float: left;
|
2558 |
-
}
|
2559 |
-
|
2560 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 {
|
2561 |
-
margin: 2px 0 !important;
|
2562 |
-
display: inline-block;
|
2563 |
-
float: none;
|
2564 |
-
vertical-align: middle;
|
2565 |
-
overflow: hidden;
|
2566 |
-
/*width: 100%;*/
|
2567 |
-
}
|
2568 |
-
|
2569 |
-
#sfsi_plus_floater .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 {
|
2570 |
-
margin: -7px 0 -14px 0 !important;
|
2571 |
-
/* height: 41px; */
|
2572 |
-
vertical-align: bottom;
|
2573 |
-
}
|
2574 |
-
|
2575 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a {
|
2576 |
-
display: inline-block;
|
2577 |
-
vertical-align: middle;
|
2578 |
-
/*width: 100%;*/
|
2579 |
-
width: auto;
|
2580 |
-
}
|
2581 |
-
|
2582 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a img {
|
2583 |
-
float: left;
|
2584 |
-
}
|
2585 |
-
|
2586 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 {
|
2587 |
-
margin: 1px 24px 3px !important;
|
2588 |
-
display: inline-block;
|
2589 |
-
float: none;
|
2590 |
-
/*width: 61px;*/
|
2591 |
-
overflow: hidden;
|
2592 |
-
height: auto;
|
2593 |
-
}
|
2594 |
-
|
2595 |
-
#sfsi_plus_floater .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 {
|
2596 |
-
margin: 1px 24px -12px !important;
|
2597 |
-
}
|
2598 |
-
|
2599 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 iframe {
|
2600 |
-
/* width: 61px!important;*/
|
2601 |
-
}
|
2602 |
-
|
2603 |
-
.sfsi_plus_tool_tip_2,
|
2604 |
-
.sfsi_plus_fb_tool_bdr,
|
2605 |
-
.sfsi_plus_twt_tool_bdr,
|
2606 |
-
.sfsi_plus_linkedin_tool_bdr,
|
2607 |
-
.sfsi_plus_printst_tool_bdr,
|
2608 |
-
.sfsi_plus_gpls_tool_bdr,
|
2609 |
-
.sfsi_plus_Tlleft {
|
2610 |
-
width: 140px !important;
|
2611 |
-
padding: 6px 0;
|
2612 |
-
}
|
2613 |
-
|
2614 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon2 {
|
2615 |
-
margin: 0px 0 !important;
|
2616 |
-
display: inline-block;
|
2617 |
-
float: none;
|
2618 |
-
height: 20px;
|
2619 |
-
/* width: 58px;s*/
|
2620 |
-
}
|
2621 |
-
|
2622 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_1 {
|
2623 |
-
margin: 9px 0 0;
|
2624 |
-
display: inline-block;
|
2625 |
-
float: none;
|
2626 |
-
width: 58px;
|
2627 |
-
height: 20px;
|
2628 |
-
overflow: hidden;
|
2629 |
-
}
|
2630 |
-
|
2631 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_1 iframe {
|
2632 |
-
width: 100% !important;
|
2633 |
-
}
|
2634 |
-
|
2635 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_2 {
|
2636 |
-
margin: 9px 0 0;
|
2637 |
-
height: 20px;
|
2638 |
-
display: inline-block;
|
2639 |
-
float: none;
|
2640 |
-
width: 58px;
|
2641 |
-
}
|
2642 |
-
|
2643 |
-
.utube_tool_bdr .sfsi_plus_inside {
|
2644 |
-
text-align: center;
|
2645 |
-
width: 100%;
|
2646 |
-
float: left;
|
2647 |
-
}
|
2648 |
-
|
2649 |
-
.sfsi_plus_inside>div {}
|
2650 |
-
|
2651 |
-
.utube_tool_bdr .sfsi_plus_inside .icon1 {
|
2652 |
-
margin: 2px 0 2px;
|
2653 |
-
height: 24px;
|
2654 |
-
display: inline-block;
|
2655 |
-
float: none;
|
2656 |
-
width: 87px;
|
2657 |
-
}
|
2658 |
-
|
2659 |
-
#sfsi_plus_floater .utube_tool_bdr .sfsi_plus_inside .icon1 {
|
2660 |
-
margin: 0px 0px 19px 0;
|
2661 |
-
}
|
2662 |
-
|
2663 |
-
.utube_tool_bdr .sfsi_plus_inside .icon2 {
|
2664 |
-
margin: 2px 0 2px;
|
2665 |
-
height: 24px;
|
2666 |
-
display: inline-block;
|
2667 |
-
float: none;
|
2668 |
-
min-width: 100px;
|
2669 |
-
width: auto;
|
2670 |
-
}
|
2671 |
-
|
2672 |
-
.utube_tool_bdr {
|
2673 |
-
width: 93px;
|
2674 |
-
bottom: auto;
|
2675 |
-
left: 50%;
|
2676 |
-
margin-bottom: 2px;
|
2677 |
-
}
|
2678 |
-
|
2679 |
-
.sfsi_plus_linkedin_tool_bdr {
|
2680 |
-
width: 66px;
|
2681 |
-
}
|
2682 |
-
|
2683 |
-
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside {
|
2684 |
-
text-align: center;
|
2685 |
-
float: left;
|
2686 |
-
width: 100%
|
2687 |
-
}
|
2688 |
-
|
2689 |
-
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
|
2690 |
-
margin: -5px 0 8px 0;
|
2691 |
-
display: inline-block;
|
2692 |
-
float: none;
|
2693 |
-
height: 23px;
|
2694 |
-
width: 100%;
|
2695 |
-
}
|
2696 |
-
|
2697 |
-
#sfsi_plus_floater .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
|
2698 |
-
margin: -6px 0 16px 0;
|
2699 |
-
display: inherit;
|
2700 |
-
}
|
2701 |
-
|
2702 |
-
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon2 {
|
2703 |
-
margin: 1px 0;
|
2704 |
-
display: inline-block;
|
2705 |
-
float: none;
|
2706 |
-
height: 23px;
|
2707 |
-
width: 100%;
|
2708 |
-
}
|
2709 |
-
|
2710 |
-
#sfsi_plus_floater .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon2 {
|
2711 |
-
margin: -15px 0 3px 0;
|
2712 |
-
display: inherit;
|
2713 |
-
}
|
2714 |
-
|
2715 |
-
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon3 {
|
2716 |
-
margin: 2px 0;
|
2717 |
-
display: inline-block;
|
2718 |
-
float: none;
|
2719 |
-
height: 23px;
|
2720 |
-
width: 100%;
|
2721 |
-
}
|
2722 |
-
|
2723 |
-
|
2724 |
-
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4 {
|
2725 |
-
margin: 2px 0;
|
2726 |
-
display: inline-block;
|
2727 |
-
float: none;
|
2728 |
-
height: 28px;
|
2729 |
-
width: 66px;
|
2730 |
-
}
|
2731 |
-
|
2732 |
-
.sfsi_plus_FrntInner .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
|
2733 |
-
margin: 2px 0;
|
2734 |
-
}
|
2735 |
-
|
2736 |
-
.sfsi_plus_widget .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4,
|
2737 |
-
.sfsi_plus_widget .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1 {
|
2738 |
-
height: auto
|
2739 |
-
}
|
2740 |
-
|
2741 |
-
.sfsi_plus_linkedin_tool_bdr .linkin_1,
|
2742 |
-
.sfsi_plus_linkedin_tool_bdr .linkin_2,
|
2743 |
-
.sfsi_plus_linkedin_tool_bdr .linkin_3,
|
2744 |
-
.sfsi_plus_linkedin_tool_bdr .linkin_4 {
|
2745 |
-
margin: 9px 0 0 !important;
|
2746 |
-
height: 20px;
|
2747 |
-
display: inline-block;
|
2748 |
-
float: none;
|
2749 |
-
overflow: hidden;
|
2750 |
-
}
|
2751 |
-
|
2752 |
-
.sfsi_plus_twt_tool_bdr {
|
2753 |
-
width: 62px;
|
2754 |
-
height: auto;
|
2755 |
-
}
|
2756 |
-
|
2757 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1>iframe {
|
2758 |
-
margin: 0px auto !important;
|
2759 |
-
float: left !important;
|
2760 |
-
width: 100%
|
2761 |
-
}
|
2762 |
-
|
2763 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1>iframe #widget {
|
2764 |
-
text-align: center;
|
2765 |
-
}
|
2766 |
-
|
2767 |
-
.sfsi_pop_up .button {
|
2768 |
-
border: none;
|
2769 |
-
padding: 0;
|
2770 |
-
}
|
2771 |
-
|
2772 |
-
.pop_up_box .button a {
|
2773 |
-
color: #fff;
|
2774 |
-
line-height: normal;
|
2775 |
-
font-size: 22px;
|
2776 |
-
text-decoration: none;
|
2777 |
-
text-align: center;
|
2778 |
-
width: 482px;
|
2779 |
-
height: 80px;
|
2780 |
-
margin: 0;
|
2781 |
-
display: table-cell;
|
2782 |
-
vertical-align: middle;
|
2783 |
-
font-family: helveticabold;
|
2784 |
-
padding: 0 10px;
|
2785 |
-
}
|
2786 |
-
|
2787 |
-
.tab3 ul.sfsiplus_tab_3_icns li .radio {
|
2788 |
-
margin-top: 7px;
|
2789 |
-
}
|
2790 |
-
|
2791 |
-
.tab3 ul.sfsiplus_tab_3_icns li label {
|
2792 |
-
line-height: 50px !important;
|
2793 |
-
margin-left: 20px;
|
2794 |
-
}
|
2795 |
-
|
2796 |
-
.sfsi_mainContainer input[type=email],
|
2797 |
-
.sfsi_mainContainer input[type=number],
|
2798 |
-
.sfsi_mainContainer input[type=password],
|
2799 |
-
.sfsi_mainContainer input[type=search],
|
2800 |
-
.sfsi_mainContainer input[type=tel],
|
2801 |
-
.sfsi_mainContainer input[type=text],
|
2802 |
-
.sfsi_mainContainer input[type=url],
|
2803 |
-
.sfsi_mainContainer select,
|
2804 |
-
.sfsi_mainContainer textarea {
|
2805 |
-
color: #5a6570 !important;
|
2806 |
-
}
|
2807 |
-
|
2808 |
-
.adminTooltip {
|
2809 |
-
left: 142px;
|
2810 |
-
position: absolute;
|
2811 |
-
}
|
2812 |
-
|
2813 |
-
.adPopWidth {
|
2814 |
-
min-height: 100px !important;
|
2815 |
-
}
|
2816 |
-
|
2817 |
-
.main_contant p>a.lit_txt,
|
2818 |
-
.tab4 p>a {
|
2819 |
-
font-family: helveticaregular;
|
2820 |
-
color: #414951;
|
2821 |
-
}
|
2822 |
-
|
2823 |
-
.tab1 ul.plus_icn_listing li .sfsiplus_custom-txt {
|
2824 |
-
margin-left: 5px;
|
2825 |
-
}
|
2826 |
-
|
2827 |
-
.tab1 ul.plus_icn_listing li .custom-img {
|
2828 |
-
margin-left: 18px;
|
2829 |
-
}
|
2830 |
-
|
2831 |
-
.sfsiplus_linkedin_section .link_4>label.anthr_labl {
|
2832 |
-
height: 94px;
|
2833 |
-
}
|
2834 |
-
|
2835 |
-
.tab3 .tab_3_sav {
|
2836 |
-
padding-top: 0;
|
2837 |
-
margin: -69px auto 20px;
|
2838 |
-
position: relative;
|
2839 |
-
z-index: 9;
|
2840 |
-
}
|
2841 |
-
|
2842 |
-
.mediam_txt {
|
2843 |
-
font-family: helveticabold;
|
2844 |
-
}
|
2845 |
-
|
2846 |
-
.sfsiCtxt {
|
2847 |
-
line-height: 51px;
|
2848 |
-
font-family: helveticaregular;
|
2849 |
-
font-size: 22px;
|
2850 |
-
float: left;
|
2851 |
-
padding-left: 19px;
|
2852 |
-
color: #5a6570;
|
2853 |
-
}
|
2854 |
-
|
2855 |
-
.customstep2-img {
|
2856 |
-
width: 51px;
|
2857 |
-
float: left;
|
2858 |
-
}
|
2859 |
-
|
2860 |
-
.tab2 .row h2.custom {
|
2861 |
-
margin: 15px 0 7px 21px;
|
2862 |
-
height: 52px;
|
2863 |
-
line-height: 51px;
|
2864 |
-
font-family: helveticaregular;
|
2865 |
-
font-size: 22px;
|
2866 |
-
}
|
2867 |
-
|
2868 |
-
.plus_custom-links p.cus_link label {
|
2869 |
-
margin-left: 0;
|
2870 |
-
}
|
2871 |
-
|
2872 |
-
.pop_up_box .sfsi_plus_tool_tip_2 .fbb .fb_1 a>img:hover {
|
2873 |
-
opacity: .9;
|
2874 |
-
}
|
2875 |
-
|
2876 |
-
.tab2 .rss_url_row .sfrsTxt {
|
2877 |
-
font-size: 17px;
|
2878 |
-
line-height: 41px;
|
2879 |
-
margin: 0 0 0 4px;
|
2880 |
-
font-family: helveticaregular;
|
2881 |
-
}
|
2882 |
-
|
2883 |
-
.tab2 .rss_url_row .sfrsTxt>strong {
|
2884 |
-
font-family: helveticaregular;
|
2885 |
-
}
|
2886 |
-
|
2887 |
-
.tab2 .utube_inn p.extra_pp {
|
2888 |
-
float: left;
|
2889 |
-
width: 100%;
|
2890 |
-
margin: 0 0 0 48px;
|
2891 |
-
}
|
2892 |
-
|
2893 |
-
.tab2 .utube_inn p.extra_pp label {
|
2894 |
-
float: left;
|
2895 |
-
line-height: 41px;
|
2896 |
-
margin-right: 8px;
|
2897 |
-
}
|
2898 |
-
|
2899 |
-
.sfsi_inside .icon2 .fb_iframe_widget span {
|
2900 |
-
/* width: 500px!important; sunil*/
|
2901 |
-
}
|
2902 |
-
|
2903 |
-
@media (max-width:767px) {
|
2904 |
-
.icon2 .fb_iframe_widget span {
|
2905 |
-
width: auto;
|
2906 |
-
}
|
2907 |
-
|
2908 |
-
.sfsi_plus_outr_div {
|
2909 |
-
top: 10%
|
2910 |
-
}
|
2911 |
-
|
2912 |
-
.sfsi_plus_outr_div h2 {
|
2913 |
-
font-size: 22px !important;
|
2914 |
-
line-height: 28px;
|
2915 |
-
}
|
2916 |
-
|
2917 |
-
.sfsi_plus_wicons {
|
2918 |
-
padding-top: 0;
|
2919 |
-
}
|
2920 |
-
}
|
2921 |
-
|
2922 |
-
.sfsiplus_specify_counts .listing li .high_prb {
|
2923 |
-
height: 41px;
|
2924 |
-
}
|
2925 |
-
|
2926 |
-
.sfsi_plus_Sicons {
|
2927 |
-
position: relative;
|
2928 |
-
}
|
2929 |
-
|
2930 |
-
.sfsi_plus_Sicons .sf_subscrbe {
|
2931 |
-
margin: 2px 3px 0 0;
|
2932 |
-
line-height: 0px;
|
2933 |
-
}
|
2934 |
-
|
2935 |
-
.sfsi_plus_Sicons .sf_fb {
|
2936 |
-
margin: 0 4px 0 5px;
|
2937 |
-
line-height: 0px;
|
2938 |
-
}
|
2939 |
-
|
2940 |
-
.sfsi_plus_Sicons .sf_twiter {
|
2941 |
-
margin: 1px 7px 0 4px;
|
2942 |
-
line-height: 19px;
|
2943 |
-
}
|
2944 |
-
|
2945 |
-
.sfsi_plus_Sicons.left .sf_subscrbe {
|
2946 |
-
margin: 2px 8px 0 0;
|
2947 |
-
}
|
2948 |
-
|
2949 |
-
.sfsi_plus_Sicons.left .sf_fb {
|
2950 |
-
margin: 0 8px 0 0;
|
2951 |
-
}
|
2952 |
-
|
2953 |
-
.sfsi_plus_Sicons.left .sf_twiter {
|
2954 |
-
margin: 1px 8px 0 0;
|
2955 |
-
}
|
2956 |
-
|
2957 |
-
.sfsi_plus_Sicons.right .sf_subscrbe {
|
2958 |
-
margin: 2px 0 0;
|
2959 |
-
}
|
2960 |
-
|
2961 |
-
.sfsi_plus_Sicons.right .sf_fb {
|
2962 |
-
margin: 0 0 0 7px;
|
2963 |
-
}
|
2964 |
-
|
2965 |
-
.sfsi_plus_Sicons.right .sf_twiter {
|
2966 |
-
margin: 1px 0 0 8px;
|
2967 |
-
}
|
2968 |
-
|
2969 |
-
.sfsi_plus_Sicons .sf_subscrbe,
|
2970 |
-
.sfsi_plus_Sicons .sf_twiter {
|
2971 |
-
position: relative;
|
2972 |
-
width: 75px;
|
2973 |
-
}
|
2974 |
-
|
2975 |
-
.sfsi_plus_Sicons .sf_twiter iframe {
|
2976 |
-
margin: 0px;
|
2977 |
-
height: 20px !important;
|
2978 |
-
overflow: visible !important;
|
2979 |
-
}
|
2980 |
-
|
2981 |
-
.sfsi_plus_Sicons .sf_twiter iframe #widget {
|
2982 |
-
overflow: visible !important;
|
2983 |
-
|
2984 |
-
}
|
2985 |
-
|
2986 |
-
.sfsi_plus_Sicons .sf_subscrbe a {
|
2987 |
-
width: auto;
|
2988 |
-
float: left;
|
2989 |
-
border: medium none;
|
2990 |
-
padding-top: 0px;
|
2991 |
-
}
|
2992 |
-
|
2993 |
-
.sfsi_plus_Sicons .sf_subscrbe a:focus {
|
2994 |
-
outline: medium none;
|
2995 |
-
}
|
2996 |
-
|
2997 |
-
.sfsi_plus_Sicons .sf_subscrbe a img {
|
2998 |
-
float: left;
|
2999 |
-
height: 20px !important;
|
3000 |
-
}
|
3001 |
-
|
3002 |
-
.sfsi_plus_Sicons .sf_fb {
|
3003 |
-
position: relative;
|
3004 |
-
width: 75px;
|
3005 |
-
}
|
3006 |
-
|
3007 |
-
.sfsi_plus_Sicons .fb_iframe_widget {
|
3008 |
-
float: none;
|
3009 |
-
width: auto;
|
3010 |
-
vertical-align: middle;
|
3011 |
-
margin: 2px 0 0;
|
3012 |
-
}
|
3013 |
-
|
3014 |
-
/*absolute commented as for standard icon it was giving issue while icon was to be aligned centerd.*/
|
3015 |
-
.sfsi_plus_Sicons .sf_fb .fb_iframe_widget>span {
|
3016 |
-
position: relative;
|
3017 |
-
/*width: 450px!important;*/
|
3018 |
-
float: left;
|
3019 |
-
}
|
3020 |
-
|
3021 |
-
.tab2 .utube_inn label {
|
3022 |
-
font-size: 18px;
|
3023 |
-
}
|
3024 |
-
|
3025 |
-
.sfsi_plc_btm {
|
3026 |
-
padding: 5px 14px 9px;
|
3027 |
-
}
|
3028 |
-
|
3029 |
-
.tab7 .field {
|
3030 |
-
margin-top: 7px;
|
3031 |
-
}
|
3032 |
-
|
3033 |
-
.sfsi_plus_outr_div ul li .cmcls img {
|
3034 |
-
margin-top: 0 !important;
|
3035 |
-
}
|
3036 |
-
|
3037 |
-
.sfsi_plus_outr_div ul li .sfsiplus_inerCnt {
|
3038 |
-
float: left;
|
3039 |
-
}
|
3040 |
-
|
3041 |
-
.sfsi_plus_outr_div ul li .sfsiplus_inerCnt .bot_no {
|
3042 |
-
position: absolute;
|
3043 |
-
padding: 1px 0;
|
3044 |
-
font-size: 12px !important;
|
3045 |
-
line-height: 12px !important;
|
3046 |
-
text-align: center;
|
3047 |
-
background: #fff;
|
3048 |
-
border-radius: 5px;
|
3049 |
-
display: block;
|
3050 |
-
left: 50%;
|
3051 |
-
margin-left: -20px;
|
3052 |
-
border: 1px solid #333;
|
3053 |
-
white-space: pre;
|
3054 |
-
-webkit-box-sizing: border-box;
|
3055 |
-
-moz-box-sizing: border-box;
|
3056 |
-
box-sizing: border-box;
|
3057 |
-
margin-top: 6px;
|
3058 |
-
width: 40px;
|
3059 |
-
word-break: break-all;
|
3060 |
-
word-wrap: break-word;
|
3061 |
-
}
|
3062 |
-
|
3063 |
-
.sfsi_plus_outr_div ul li .sfsiplus_inerCnt .bot_no:before {
|
3064 |
-
content: url(images/count_top_arow.png);
|
3065 |
-
position: absolute;
|
3066 |
-
height: 9px;
|
3067 |
-
margin-left: -7.5px;
|
3068 |
-
top: -10px;
|
3069 |
-
left: 50%;
|
3070 |
-
width: 15px;
|
3071 |
-
}
|
3072 |
-
|
3073 |
-
.sfsi_plus_outr_div {
|
3074 |
-
position: fixed;
|
3075 |
-
width: 100%;
|
3076 |
-
float: none;
|
3077 |
-
left: 50%;
|
3078 |
-
top: 20%;
|
3079 |
-
margin-left: -50%;
|
3080 |
-
opacity: 0;
|
3081 |
-
z-index: -1;
|
3082 |
-
display: block;
|
3083 |
-
text-align: center;
|
3084 |
-
}
|
3085 |
-
|
3086 |
-
.sfsi_plus_outr_div .sfsi_plus_FrntInner {
|
3087 |
-
display: inline-block;
|
3088 |
-
padding: 15px 17px 27px 18px;
|
3089 |
-
background: #FFF;
|
3090 |
-
border: 1px solid #EDEDED;
|
3091 |
-
box-shadow: 0 0 5px #CCC;
|
3092 |
-
margin: 20px;
|
3093 |
-
position: relative;
|
3094 |
-
}
|
3095 |
-
|
3096 |
-
.sfsi_plus_FrntInner .sfsiclpupwpr {
|
3097 |
-
position: absolute;
|
3098 |
-
right: -10px;
|
3099 |
-
top: -10px;
|
3100 |
-
width: 25px;
|
3101 |
-
cursor: pointer;
|
3102 |
-
}
|
3103 |
-
|
3104 |
-
.sfsi_plus_FrntInner .sfsiclpupwpr img {
|
3105 |
-
width: auto;
|
3106 |
-
float: left;
|
3107 |
-
border: medium none;
|
3108 |
-
}
|
3109 |
-
|
3110 |
-
.tab7 .like_pop_box {
|
3111 |
-
width: 100%;
|
3112 |
-
margin: 35px auto auto;
|
3113 |
-
position: relative;
|
3114 |
-
text-align: center;
|
3115 |
-
}
|
3116 |
-
|
3117 |
-
.tab7 .like_pop_box .sfsi_plus_Popinner {
|
3118 |
-
display: inline-block;
|
3119 |
-
padding: 18px 20px;
|
3120 |
-
box-shadow: 0 0 5px #ccc;
|
3121 |
-
-webkit-box-shadow: 0 0 5px #ccc;
|
3122 |
-
border: 1px solid #ededed;
|
3123 |
-
background: #FFF;
|
3124 |
-
}
|
3125 |
-
|
3126 |
-
.tab7 .like_pop_box .sfsi_plus_Popinner h2 {
|
3127 |
-
margin: 0 0 23px;
|
3128 |
-
padding: 0;
|
3129 |
-
color: #414951;
|
3130 |
-
font-family: helveticabold;
|
3131 |
-
font-size: 26px;
|
3132 |
-
text-align: center;
|
3133 |
-
}
|
3134 |
-
|
3135 |
-
.tab7 .like_pop_box .sfsi_plus_Popinner ul {
|
3136 |
-
margin: 0;
|
3137 |
-
padding: 0;
|
3138 |
-
list-style: none;
|
3139 |
-
text-align: center;
|
3140 |
-
}
|
3141 |
-
|
3142 |
-
.tab7 .like_pop_box .sfsi_plus_Popinner ul li {
|
3143 |
-
margin: 0;
|
3144 |
-
padding: 0;
|
3145 |
-
list-style: none;
|
3146 |
-
display: inline-block;
|
3147 |
-
}
|
3148 |
-
|
3149 |
-
.tab7 .like_pop_box .sfsi_plus_Popinner ul li span {
|
3150 |
-
margin: 0;
|
3151 |
-
width: 54px;
|
3152 |
-
display: block;
|
3153 |
-
background: url(../images/count_bg.png) no-repeat;
|
3154 |
-
height: 24px;
|
3155 |
-
overflow: hidden;
|
3156 |
-
padding: 10px 2px 2px;
|
3157 |
-
font-family: helveticaregular;
|
3158 |
-
font-size: 16px;
|
3159 |
-
text-align: center;
|
3160 |
-
line-height: 24px;
|
3161 |
-
color: #5a6570;
|
3162 |
-
}
|
3163 |
-
|
3164 |
-
.tab7 .like_pop_box .sfsi_plus_Popinner ul li a {
|
3165 |
-
color: #5a6570;
|
3166 |
-
text-decoration: none;
|
3167 |
-
}
|
3168 |
-
|
3169 |
-
.sfsi_plus_outr_div .sfsi_plus_FrntInner .sfsi_plus_wicons {
|
3170 |
-
margin-bottom: 0;
|
3171 |
-
}
|
3172 |
-
|
3173 |
-
.sfsi_plus_outr_div ul {
|
3174 |
-
list-style: none;
|
3175 |
-
margin: 0 0 24px;
|
3176 |
-
padding: 0;
|
3177 |
-
text-align: center;
|
3178 |
-
}
|
3179 |
-
|
3180 |
-
a.sfsiColbtn {
|
3181 |
-
color: #5a6570 !important;
|
3182 |
-
float: right;
|
3183 |
-
font-size: 14px;
|
3184 |
-
margin: -35px -30px 0 0;
|
3185 |
-
position: relative;
|
3186 |
-
right: 0;
|
3187 |
-
font-family: helveticaregular;
|
3188 |
-
width: 100px;
|
3189 |
-
text-decoration: none;
|
3190 |
-
}
|
3191 |
-
|
3192 |
-
.tab3 a.sfsiColbtn {
|
3193 |
-
margin-top: -55px;
|
3194 |
-
}
|
3195 |
-
|
3196 |
-
.sfsi_plus_FrntInner ul li:first-of-type .sfsi_plus_wicons {
|
3197 |
-
margin-left: 0 !important;
|
3198 |
-
}
|
3199 |
-
|
3200 |
-
ul.sfsiplus_tab_3_icns li .trans_bg {
|
3201 |
-
background: #000;
|
3202 |
-
padding-left: 3px;
|
3203 |
-
}
|
3204 |
-
|
3205 |
-
.tab2 .sfsiplus_instagram_section {
|
3206 |
-
padding-bottom: 20px;
|
3207 |
-
}
|
3208 |
-
|
3209 |
-
h1.abt_titl {
|
3210 |
-
text-align: center;
|
3211 |
-
margin: 19% 0 0;
|
3212 |
-
}
|
3213 |
-
|
3214 |
-
.sfcm.sfsi_wicon {
|
3215 |
-
padding: 0;
|
3216 |
-
width: 100% !important;
|
3217 |
-
border: medium none !important;
|
3218 |
-
height: auto !important;
|
3219 |
-
}
|
3220 |
-
|
3221 |
-
.fb_iframe_widget span {
|
3222 |
-
vertical-align: top !important;
|
3223 |
-
}
|
3224 |
-
|
3225 |
-
.sfsi_plus_outr_div .sfsi_plus_FrntInner ul {
|
3226 |
-
margin: 0 0 0 3px;
|
3227 |
-
}
|
3228 |
-
|
3229 |
-
.sfsi_plus_outr_div .sfsi_plus_FrntInner ul li {
|
3230 |
-
margin: 0 3px 0 0;
|
3231 |
-
}
|
3232 |
-
|
3233 |
-
@-moz-document url-prefix() {
|
3234 |
-
.sfcm.sfsi_wicon {
|
3235 |
-
margin: -1px;
|
3236 |
-
padding: 0;
|
3237 |
-
}
|
3238 |
-
}
|
3239 |
-
|
3240 |
-
@media (min-width:320px) and (max-width:480px) {
|
3241 |
-
|
3242 |
-
.sfsi_plus_tool_tip_2,
|
3243 |
-
.tool_tip {
|
3244 |
-
padding: 5px 14px 0;
|
3245 |
-
}
|
3246 |
-
|
3247 |
-
.sfsi_plus_inside:last-child {
|
3248 |
-
margin-bottom: 18px;
|
3249 |
-
clear: both;
|
3250 |
-
}
|
3251 |
-
|
3252 |
-
.sfsi_plus_outr_div {
|
3253 |
-
top: 10%
|
3254 |
-
}
|
3255 |
-
|
3256 |
-
.sfsi_plus_FrntInner .sfsi_plus_wicons {
|
3257 |
-
width: 31px !important;
|
3258 |
-
height: 31px !important;
|
3259 |
-
}
|
3260 |
-
|
3261 |
-
.sfsi_plus_FrntInner .sfsi_plus_wicons img {
|
3262 |
-
width: 100%
|
3263 |
-
}
|
3264 |
-
}
|
3265 |
-
|
3266 |
-
@media (max-width:320px) {
|
3267 |
-
|
3268 |
-
.sfsi_plus_tool_tip_2,
|
3269 |
-
.tool_tip {
|
3270 |
-
padding: 5px 14px 0;
|
3271 |
-
}
|
3272 |
-
|
3273 |
-
.sfsi_plus_inside:last-child {
|
3274 |
-
margin-bottom: 18px;
|
3275 |
-
clear: both;
|
3276 |
-
}
|
3277 |
-
|
3278 |
-
.sfsi_plus_FrntInner .sfsi_plus_wicons {
|
3279 |
-
width: 31px !important;
|
3280 |
-
height: 31px !important;
|
3281 |
-
}
|
3282 |
-
|
3283 |
-
.sfsi_plus_FrntInner .sfsi_plus_wicons img {
|
3284 |
-
width: 100%
|
3285 |
-
}
|
3286 |
-
}
|
3287 |
-
|
3288 |
-
ul.SFSI_lsngfrm {
|
3289 |
-
float: left;
|
3290 |
-
width: 61%
|
3291 |
-
}
|
3292 |
-
|
3293 |
-
ul.SFSI_instructions {
|
3294 |
-
float: left;
|
3295 |
-
width: 39%
|
3296 |
-
}
|
3297 |
-
|
3298 |
-
ul.SFSI_instructions li {
|
3299 |
-
font-size: 12px !important;
|
3300 |
-
line-height: 25px !important;
|
3301 |
-
margin: 0 !important;
|
3302 |
-
padding: 0 0 0 15px !important;
|
3303 |
-
width: 100%
|
3304 |
-
}
|
3305 |
-
|
3306 |
-
/*{Monad}*/
|
3307 |
-
/*Upload Skins css*/
|
3308 |
-
.cstmskin_popup {
|
3309 |
-
width: 500px;
|
3310 |
-
background: #FFF;
|
3311 |
-
box-shadow: 0 0 5px 3px #d8d8d8;
|
3312 |
-
margin: 40px 0px auto;
|
3313 |
-
padding: 20px 25px 20px;
|
3314 |
-
font-family: helveticaregular;
|
3315 |
-
color: #5a6570;
|
3316 |
-
height: auto;
|
3317 |
-
float: left;
|
3318 |
-
position: relative;
|
3319 |
-
left: 35%;
|
3320 |
-
}
|
3321 |
-
|
3322 |
-
.cstomskins_wrpr {
|
3323 |
-
float: left;
|
3324 |
-
width: 100%;
|
3325 |
-
}
|
3326 |
-
|
3327 |
-
.custskinmsg {
|
3328 |
-
float: left;
|
3329 |
-
font-size: 15px;
|
3330 |
-
margin-top: 10px;
|
3331 |
-
width: 100%;
|
3332 |
-
}
|
3333 |
-
|
3334 |
-
.custskinmsg>ul {
|
3335 |
-
color: #000;
|
3336 |
-
float: left;
|
3337 |
-
margin-top: 8px;
|
3338 |
-
width: 100%;
|
3339 |
-
}
|
3340 |
-
|
3341 |
-
ul.cstmskin_iconlist {
|
3342 |
-
float: left;
|
3343 |
-
margin-top: 10px;
|
3344 |
-
width: 100%;
|
3345 |
-
height: 53vh;
|
3346 |
-
overflow-y: scroll;
|
3347 |
-
}
|
3348 |
-
|
3349 |
-
.cstmskin_iconlist>li {
|
3350 |
-
float: left;
|
3351 |
-
margin: 3px 0;
|
3352 |
-
width: 100%;
|
3353 |
-
}
|
3354 |
-
|
3355 |
-
.cstm_icnname {
|
3356 |
-
float: left;
|
3357 |
-
width: 30%;
|
3358 |
-
}
|
3359 |
-
|
3360 |
-
.cstmskins_btn>img {
|
3361 |
-
float: left;
|
3362 |
-
margin-right: 25px;
|
3363 |
-
}
|
3364 |
-
|
3365 |
-
.cstmskin_btn {
|
3366 |
-
width: auto;
|
3367 |
-
float: left;
|
3368 |
-
padding: 3px 20px;
|
3369 |
-
color: #fff;
|
3370 |
-
background-color: #12a252;
|
3371 |
-
text-decoration: none;
|
3372 |
-
margin: 0 10px;
|
3373 |
-
}
|
3374 |
-
|
3375 |
-
.cstmskins_sbmt {
|
3376 |
-
width: 100%;
|
3377 |
-
float: left;
|
3378 |
-
text-align: center;
|
3379 |
-
margin-top: 15px;
|
3380 |
-
}
|
3381 |
-
|
3382 |
-
.done_btn {
|
3383 |
-
width: auto;
|
3384 |
-
padding: 3px 80px;
|
3385 |
-
color: #fff;
|
3386 |
-
background-color: #12a252;
|
3387 |
-
text-decoration: none;
|
3388 |
-
font-size: 18px;
|
3389 |
-
}
|
3390 |
-
|
3391 |
-
.cstmskin_btn:hover,
|
3392 |
-
.done_btn:hover,
|
3393 |
-
.cstmskin_btn:focus,
|
3394 |
-
.done_btn:focus {
|
3395 |
-
color: #fff;
|
3396 |
-
}
|
3397 |
-
|
3398 |
-
.skswrpr,
|
3399 |
-
.dlt_btn {
|
3400 |
-
display: none;
|
3401 |
-
}
|
3402 |
-
|
3403 |
-
.cstmutbewpr {
|
3404 |
-
width: 100%;
|
3405 |
-
float: left;
|
3406 |
-
margin-top: 10px;
|
3407 |
-
}
|
3408 |
-
|
3409 |
-
.cstmutbewpr ul.enough_waffling li {
|
3410 |
-
width: auto;
|
3411 |
-
float: left;
|
3412 |
-
margin-right: 20px;
|
3413 |
-
}
|
3414 |
-
|
3415 |
-
.cstmutbewpr ul.enough_waffling li span {
|
3416 |
-
float: left;
|
3417 |
-
}
|
3418 |
-
|
3419 |
-
.cstmutbewpr ul.enough_waffling li label {
|
3420 |
-
width: auto;
|
3421 |
-
float: left;
|
3422 |
-
margin-top: 10px;
|
3423 |
-
margin-left: 10px;
|
3424 |
-
}
|
3425 |
-
|
3426 |
-
.cstmutbewpr .cstmutbtxtwpr {
|
3427 |
-
width: 100%;
|
3428 |
-
float: left;
|
3429 |
-
padding-top: 10px;
|
3430 |
-
}
|
3431 |
-
|
3432 |
-
.cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr {
|
3433 |
-
width: 100%;
|
3434 |
-
float: left;
|
3435 |
-
display: none;
|
3436 |
-
}
|
3437 |
-
|
3438 |
-
#accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p,
|
3439 |
-
#accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p {
|
3440 |
-
margin-left: 0px;
|
3441 |
-
}
|
3442 |
-
|
3443 |
-
.cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr {
|
3444 |
-
width: 100%;
|
3445 |
-
float: left;
|
3446 |
-
display: none;
|
3447 |
-
}
|
3448 |
-
|
3449 |
-
#accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p label,
|
3450 |
-
#accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p label {
|
3451 |
-
width: 120px;
|
3452 |
-
}
|
3453 |
-
|
3454 |
-
.sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a,
|
3455 |
-
.sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a.sficn {
|
3456 |
-
padding: 0px;
|
3457 |
-
margin: 0px;
|
3458 |
-
width: 100%;
|
3459 |
-
/*float: left;*/
|
3460 |
-
border: medium none;
|
3461 |
-
}
|
3462 |
-
|
3463 |
-
.sfsi_socialwpr {
|
3464 |
-
width: auto;
|
3465 |
-
float: left;
|
3466 |
-
}
|
3467 |
-
|
3468 |
-
.sfsi_socialwpr .sf_fb {
|
3469 |
-
float: left;
|
3470 |
-
margin: 5px 5px 5px 5px;
|
3471 |
-
min-height: 20px;
|
3472 |
-
}
|
3473 |
-
|
3474 |
-
.sfsipyplfrm {
|
3475 |
-
float: left;
|
3476 |
-
margin-top: 10px;
|
3477 |
-
width: 100%;
|
3478 |
-
}
|
3479 |
-
|
3480 |
-
.sfsipyplfrm input[type="submit"] {
|
3481 |
-
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
3482 |
-
border: medium none;
|
3483 |
-
color: #0074a2;
|
3484 |
-
cursor: pointer;
|
3485 |
-
font-weight: normal;
|
3486 |
-
margin: 0;
|
3487 |
-
padding: 5px 10px;
|
3488 |
-
text-decoration: underline;
|
3489 |
-
}
|
3490 |
-
|
3491 |
-
.sfsipyplfrm input[type="submit"]:hover {
|
3492 |
-
color: #2ea2cc
|
3493 |
-
}
|
3494 |
-
|
3495 |
-
.pop_up_box_ex {
|
3496 |
-
background: none repeat scroll 0 0 #fff;
|
3497 |
-
box-shadow: 0 0 5px 3px #d8d8d8;
|
3498 |
-
color: #5a6570;
|
3499 |
-
font-family: helveticaregular;
|
3500 |
-
margin: 200px auto;
|
3501 |
-
min-height: 150px;
|
3502 |
-
padding: 20px 25px 0px;
|
3503 |
-
position: relative;
|
3504 |
-
width: 290px;
|
3505 |
-
}
|
3506 |
-
|
3507 |
-
.pop_up_box_ex {
|
3508 |
-
color: #5a6570;
|
3509 |
-
font-family: helveticaregular;
|
3510 |
-
}
|
3511 |
-
|
3512 |
-
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_right_info {
|
3513 |
-
font-family: helveticaregular;
|
3514 |
-
width: 94.7%;
|
3515 |
-
float: left;
|
3516 |
-
}
|
3517 |
-
|
3518 |
-
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_right_info p label.ckckslctn {
|
3519 |
-
display: none;
|
3520 |
-
}
|
3521 |
-
|
3522 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li {
|
3523 |
-
width: 100% !important;
|
3524 |
-
max-width: 100% !important;
|
3525 |
-
border-left: 45px solid transparent;
|
3526 |
-
-webkit-box-sizing: border-box;
|
3527 |
-
-moz-box-sizing: border-box;
|
3528 |
-
;
|
3529 |
-
-ms-box-sizing: border-box;
|
3530 |
-
-o-box-sizing: border-box;
|
3531 |
-
box-sizing: border-box;
|
3532 |
-
}
|
3533 |
-
|
3534 |
-
.tab8 .icons_size>input {
|
3535 |
-
background: none repeat scroll 0 0 #e5e5e5;
|
3536 |
-
width: 80px;
|
3537 |
-
float: left;
|
3538 |
-
padding: 10px 0;
|
3539 |
-
text-align: center;
|
3540 |
-
}
|
3541 |
-
|
3542 |
-
.tab8 .icons_size>ins {
|
3543 |
-
margin-left: 19px;
|
3544 |
-
}
|
3545 |
-
|
3546 |
-
.tab8 .icons_size>span.last {
|
3547 |
-
width: auto !important;
|
3548 |
-
clear: left
|
3549 |
-
}
|
3550 |
-
|
3551 |
-
.tab8 .radio_section.tb_4_ck {
|
3552 |
-
margin: 0 15px 0 0 !important;
|
3553 |
-
}
|
3554 |
-
|
3555 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row,
|
3556 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr p,
|
3557 |
-
.tab8 .options {
|
3558 |
-
float: none;
|
3559 |
-
width: 100%;
|
3560 |
-
border-left: 60px solid transparent;
|
3561 |
-
-webkit-box-sizing: border-box;
|
3562 |
-
-moz-box-sizing: border-box;
|
3563 |
-
-o-box-sizing: border-box;
|
3564 |
-
-ms-box-sizing: border-box;
|
3565 |
-
box-sizing: border-box;
|
3566 |
-
}
|
3567 |
-
|
3568 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr label {
|
3569 |
-
width: auto;
|
3570 |
-
}
|
3571 |
-
|
3572 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .social_icon_like1 ul {
|
3573 |
-
margin-left: 15px
|
3574 |
-
}
|
3575 |
-
|
3576 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .social_icon_like1 li {
|
3577 |
-
width: auto;
|
3578 |
-
min-width: auto;
|
3579 |
-
margin: 0 50px 0 0
|
3580 |
-
}
|
3581 |
-
|
3582 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .usually>li {
|
3583 |
-
width: 85% !important;
|
3584 |
-
max-width: 100% !important;
|
3585 |
-
margin-left: 70px;
|
3586 |
-
font-family: 'helveticaneue-light';
|
3587 |
-
padding-bottom: 5px
|
3588 |
-
}
|
3589 |
-
|
3590 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .options>label {
|
3591 |
-
width: 356px !important;
|
3592 |
-
margin: 0;
|
3593 |
-
width: auto;
|
3594 |
-
margin-bottom: 0;
|
3595 |
-
margin-top: 0px;
|
3596 |
-
}
|
3597 |
-
|
3598 |
-
.tab8 .row.sfsiplus_PostsSettings_section .options .first.chcklbl {
|
3599 |
-
float: left !important;
|
3600 |
-
width: 335px !important;
|
3601 |
-
}
|
3602 |
-
|
3603 |
-
.tab8 .row.sfsiplus_PostsSettings_section .options .chckwpr {
|
3604 |
-
width: 400px;
|
3605 |
-
float: right;
|
3606 |
-
}
|
3607 |
-
|
3608 |
-
.tab8 .row.sfsiplus_PostsSettings_section .options {
|
3609 |
-
width: 90%;
|
3610 |
-
margin: 0;
|
3611 |
-
font-family: 'helveticaneue-light';
|
3612 |
-
float: left;
|
3613 |
-
margin-bottom: 10px;
|
3614 |
-
max-width: 895px;
|
3615 |
-
border-left: none;
|
3616 |
-
}
|
3617 |
-
|
3618 |
-
.sfsiplus_toggleonlystndrshrng {
|
3619 |
-
margin-bottom: 30px !important
|
3620 |
-
}
|
3621 |
-
|
3622 |
-
.tab8 .row.sfsiplus_PostsSettings_section .options.shareicontextfld {
|
3623 |
-
margin: 15px 0;
|
3624 |
-
}
|
3625 |
-
|
3626 |
-
.tab8 .sfsiplus_tab_3_icns.flthmonpg .radio {
|
3627 |
-
margin-top: 55px !important;
|
3628 |
-
}
|
3629 |
-
|
3630 |
-
.tab8 .radiodisplaysection {
|
3631 |
-
float: left;
|
3632 |
-
}
|
3633 |
-
|
3634 |
-
|
3635 |
-
|
3636 |
-
/*palak css end*/
|
3637 |
-
/*modify by palak*/
|
3638 |
-
.tab8 ul.sfsiplus_icn_listing8 li {
|
3639 |
-
float: left;
|
3640 |
-
padding: 11px 0 26px 0;
|
3641 |
-
width: 100%;
|
3642 |
-
/*max-width: 1000px;*/
|
3643 |
-
margin: 0
|
3644 |
-
}
|
3645 |
-
|
3646 |
-
.sfsiplusplacethemanulywpr {
|
3647 |
-
max-width: 98% !important
|
3648 |
-
}
|
3649 |
-
|
3650 |
-
/*modify by palak*/
|
3651 |
-
/*modify by palak*/
|
3652 |
-
.tab8 ul.sfsiplus_icn_listing8 {
|
3653 |
-
list-style: outside none none;
|
3654 |
-
margin: 5px 0 0;
|
3655 |
-
overflow: hidden;
|
3656 |
-
}
|
3657 |
-
|
3658 |
-
/*modify by palak*/
|
3659 |
-
.sfsiplus_right_info label.sfsiplus_sub-subtitle {
|
3660 |
-
font-size: 16px !important;
|
3661 |
-
font-weight: normal;
|
3662 |
-
}
|
3663 |
-
|
3664 |
-
ul.plus_icn_listing li .sfsiplus_right_info label.sfsiplus_sub-subtitle a {
|
3665 |
-
font-size: 13px;
|
3666 |
-
}
|
3667 |
-
|
3668 |
-
.tab8 ul.sfsiplus_tab_3_icns li .radio {
|
3669 |
-
margin-top: 7px;
|
3670 |
-
}
|
3671 |
-
|
3672 |
-
.tab8 ul.sfsiplus_tab_3_icns li label {
|
3673 |
-
line-height: 50px !important;
|
3674 |
-
}
|
3675 |
-
|
3676 |
-
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns li {
|
3677 |
-
width: 50%;
|
3678 |
-
max-width: 450px;
|
3679 |
-
min-width: 420px;
|
3680 |
-
padding-left: 0;
|
3681 |
-
padding-bottom: 15px
|
3682 |
-
}
|
3683 |
-
|
3684 |
-
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(1),
|
3685 |
-
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(2),
|
3686 |
-
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(3) {
|
3687 |
-
width: 33% !important
|
3688 |
-
}
|
3689 |
-
|
3690 |
-
.space.disblfltonmbl p.list {
|
3691 |
-
width: 100%;
|
3692 |
-
margin-bottom: 28px
|
3693 |
-
}
|
3694 |
-
|
3695 |
-
|
3696 |
-
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p {
|
3697 |
-
display: table
|
3698 |
-
}
|
3699 |
-
|
3700 |
-
/*modify by palak*/
|
3701 |
-
.tab8 .row {
|
3702 |
-
clear: both;
|
3703 |
-
display: block;
|
3704 |
-
float: left;
|
3705 |
-
font-family: helveticaregular;
|
3706 |
-
line-height: 42px;
|
3707 |
-
margin-top: 25px;
|
3708 |
-
padding-top: 15px;
|
3709 |
-
width: 100%;
|
3710 |
-
}
|
3711 |
-
|
3712 |
-
/*modify by palak*/
|
3713 |
-
.tab8 .icons_size {
|
3714 |
-
margin-top: -12px;
|
3715 |
-
}
|
3716 |
-
|
3717 |
-
.tab8 .icons_size {
|
3718 |
-
position: relative;
|
3719 |
-
font-family: 'helveticaneue-light';
|
3720 |
-
width: 538px;
|
3721 |
-
float: right
|
3722 |
-
}
|
3723 |
-
|
3724 |
-
.tab8 .icons_size span {
|
3725 |
-
display: block;
|
3726 |
-
float: left;
|
3727 |
-
font-size: 20px;
|
3728 |
-
font-weight: 400;
|
3729 |
-
line-height: 42px;
|
3730 |
-
margin-right: 18px;
|
3731 |
-
}
|
3732 |
-
|
3733 |
-
.tab8.icons_size span.last {
|
3734 |
-
margin-left: 55px;
|
3735 |
-
}
|
3736 |
-
|
3737 |
-
.tab8 .icons_size ins {
|
3738 |
-
float: left;
|
3739 |
-
font-size: 17px;
|
3740 |
-
font-weight: 400;
|
3741 |
-
margin-right: 25px;
|
3742 |
-
text-decoration: none;
|
3743 |
-
margin-bottom: 20px;
|
3744 |
-
}
|
3745 |
-
|
3746 |
-
.tab8 .social_icon_like1 {
|
3747 |
-
float: left;
|
3748 |
-
margin: 0;
|
3749 |
-
padding: 30px 0 0;
|
3750 |
-
text-align: center;
|
3751 |
-
width: 100%;
|
3752 |
-
}
|
3753 |
-
|
3754 |
-
.tab8 .social_icon_like1 ul {
|
3755 |
-
list-style: outside none none;
|
3756 |
-
margin: 0;
|
3757 |
-
padding: 0;
|
3758 |
-
text-align: center;
|
3759 |
-
}
|
3760 |
-
|
3761 |
-
.tab8 .social_icon_like1 li {
|
3762 |
-
display: inline-block;
|
3763 |
-
list-style: outside none none;
|
3764 |
-
margin: 0 0 0 45px !important;
|
3765 |
-
padding: 0;
|
3766 |
-
width: auto !important;
|
3767 |
-
min-width: 100px !important;
|
3768 |
-
}
|
3769 |
-
|
3770 |
-
.tab8 .social_icon_like1 li a {
|
3771 |
-
color: #5a6570;
|
3772 |
-
display: block;
|
3773 |
-
text-decoration: none;
|
3774 |
-
}
|
3775 |
-
|
3776 |
-
.tab8 .social_icon_like1 li img {
|
3777 |
-
display: block;
|
3778 |
-
float: left;
|
3779 |
-
margin-right: 5px;
|
3780 |
-
}
|
3781 |
-
|
3782 |
-
.tab8 ul.usually {
|
3783 |
-
list-style: outside none none;
|
3784 |
-
margin: 28px 0 15px 60px;
|
3785 |
-
padding: 0;
|
3786 |
-
float: left
|
3787 |
-
}
|
3788 |
-
|
3789 |
-
.tab8 ul.usually li {
|
3790 |
-
font-size: 17px;
|
3791 |
-
list-style: outside none none;
|
3792 |
-
margin: 0;
|
3793 |
-
padding: 0;
|
3794 |
-
text-align: left;
|
3795 |
-
width: auto;
|
3796 |
-
}
|
3797 |
-
|
3798 |
-
.tab8 ul.enough_waffling {
|
3799 |
-
list-style: outside none none;
|
3800 |
-
margin: 25px 0 0;
|
3801 |
-
padding: 0;
|
3802 |
-
text-align: center;
|
3803 |
-
}
|
3804 |
-
|
3805 |
-
.tab8 ul.enough_waffling li {
|
3806 |
-
display: inline-block;
|
3807 |
-
list-style: outside none none;
|
3808 |
-
margin: 0 22px;
|
3809 |
-
padding: 0;
|
3810 |
-
}
|
3811 |
-
|
3812 |
-
.tab8 ul.enough_waffling li span {
|
3813 |
-
float: left;
|
3814 |
-
}
|
3815 |
-
|
3816 |
-
.tab8 ul.enough_waffling li label {
|
3817 |
-
color: #5a6570;
|
3818 |
-
float: left;
|
3819 |
-
font-family: helveticaregular;
|
3820 |
-
font-size: 18px;
|
3821 |
-
font-weight: 400;
|
3822 |
-
line-height: 38px;
|
3823 |
-
margin: 0 0 0 20px;
|
3824 |
-
text-align: center;
|
3825 |
-
}
|
3826 |
-
|
3827 |
-
/*modify by palak*/
|
3828 |
-
.tab8 .row {
|
3829 |
-
clear: both;
|
3830 |
-
display: block;
|
3831 |
-
float: left;
|
3832 |
-
font-family: helveticaregular;
|
3833 |
-
line-height: 42px;
|
3834 |
-
margin-top: 0px;
|
3835 |
-
padding-top: 10px;
|
3836 |
-
width: 100%;
|
3837 |
-
}
|
3838 |
-
|
3839 |
-
/*modify by palak*/
|
3840 |
-
.tab8 .options {
|
3841 |
-
clear: both;
|
3842 |
-
float: left;
|
3843 |
-
margin-top: 25px;
|
3844 |
-
width: auto;
|
3845 |
-
float: none;
|
3846 |
-
}
|
3847 |
-
|
3848 |
-
.tab8 .options label.first {
|
3849 |
-
font-family: 'helveticaneue-light';
|
3850 |
-
font-size: 18px;
|
3851 |
-
}
|
3852 |
-
|
3853 |
-
.tab8 .options label {
|
3854 |
-
color: #5a6570;
|
3855 |
-
float: left;
|
3856 |
-
font-family: 'helveticaneue-light';
|
3857 |
-
font-size: 18px;
|
3858 |
-
line-height: 46px;
|
3859 |
-
width: 345px;
|
3860 |
-
}
|
3861 |
-
|
3862 |
-
.tab8 .options input {
|
3863 |
-
background: none repeat scroll 0 0 #e5e5e5;
|
3864 |
-
border: 0 none;
|
3865 |
-
box-shadow: 2px 2px 3px #dcdcdc inset;
|
3866 |
-
float: left;
|
3867 |
-
padding: 10px;
|
3868 |
-
width: 308px;
|
3869 |
-
}
|
3870 |
-
|
3871 |
-
.tab8 .options .field {
|
3872 |
-
float: left;
|
3873 |
-
position: relative;
|
3874 |
-
|
3875 |
-
}
|
3876 |
-
|
3877 |
-
.tab8 .options .field .select {
|
3878 |
-
background: url(../images/select_bg1.jpg) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
|
3879 |
-
display: block;
|
3880 |
-
font-family: helveticaregular;
|
3881 |
-
padding-left: 17px;
|
3882 |
-
width: 215px;
|
3883 |
-
}
|
3884 |
-
|
3885 |
-
.tab8 .options .field select.styled {
|
3886 |
-
height: 46px;
|
3887 |
-
left: 0;
|
3888 |
-
line-height: 46px;
|
3889 |
-
position: absolute;
|
3890 |
-
top: 0;
|
3891 |
-
width: 213px;
|
3892 |
-
}
|
3893 |
-
|
3894 |
-
.tab8 .options .field select.styled {
|
3895 |
-
line-height: 46px;
|
3896 |
-
}
|
3897 |
-
|
3898 |
-
.tab8 ul.sfsiplus_icn_listing8 li .snglchckcntr .sfsiplus_right_info {
|
3899 |
-
float: left;
|
3900 |
-
margin-right: 0;
|
3901 |
-
text-align: left;
|
3902 |
-
width: auto;
|
3903 |
-
font-family: 'helveticaneue-light';
|
3904 |
-
font-size: 18px;
|
3905 |
-
line-height: 30px;
|
3906 |
-
}
|
3907 |
-
|
3908 |
-
.chckwpr .snglchckcntr:first-child {
|
3909 |
-
float: left;
|
3910 |
-
}
|
3911 |
-
|
3912 |
-
.chckwpr .snglchckcntr:last-child {
|
3913 |
-
float: left;
|
3914 |
-
margin-left: 110px;
|
3915 |
-
}
|
3916 |
-
|
3917 |
-
.chckwpr {
|
3918 |
-
width: 100%;
|
3919 |
-
float: left;
|
3920 |
-
}
|
3921 |
-
|
3922 |
-
.cstmutbchnlidwpr .utbe_instruction,
|
3923 |
-
.cstmutbchnlnmewpr .utbe_instruction,
|
3924 |
-
.lnkdin_instruction {
|
3925 |
-
float: left;
|
3926 |
-
line-height: 22px;
|
3927 |
-
margin-top: 10px;
|
3928 |
-
width: 100%;
|
3929 |
-
}
|
3930 |
-
|
3931 |
-
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p {
|
3932 |
-
font-size: 20px;
|
3933 |
-
}
|
3934 |
-
|
3935 |
-
#accordion .tab8 ul.sfsiplus_tab_3_icns {
|
3936 |
-
margin-top: 25px;
|
3937 |
-
}
|
3938 |
-
|
3939 |
-
#accordion .tab8 ul.sfsiplus_tab_3_icns.flthmonpg {
|
3940 |
-
margin-left: 45px
|
3941 |
-
}
|
3942 |
-
|
3943 |
-
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisplaysharingtxt {
|
3944 |
-
padding-top: 5px;
|
3945 |
-
display: inline;
|
3946 |
-
}
|
3947 |
-
|
3948 |
-
#accordion .tab8 ul.sfsiplus_shwthmbfraftr .labelhdng4,
|
3949 |
-
#accordion .tab8 ul.sfsiplus_shwthmbfraftr .row h4.labelhdng4 {
|
3950 |
-
color: #555;
|
3951 |
-
font-size: 20px;
|
3952 |
-
margin-left: 20px;
|
3953 |
-
font-family: 'helveticaregular'
|
3954 |
-
}
|
3955 |
-
|
3956 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row.sfsiplus_PostsSettings_section {
|
3957 |
-
border-left: 105px solid transparent;
|
3958 |
-
float: left;
|
3959 |
-
padding-top: 0
|
3960 |
-
}
|
3961 |
-
|
3962 |
-
.sfsiplus_toggleonlystndrshrng {
|
3963 |
-
margin-bottom: 0 !important
|
3964 |
-
}
|
3965 |
-
|
3966 |
-
.radiodisplaysection {
|
3967 |
-
float: left
|
3968 |
-
}
|
3969 |
-
|
3970 |
-
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row.sfsiplus_PostsSettings_section>.labelhdng4 {
|
3971 |
-
margin-bottom: 20px !important
|
3972 |
-
}
|
3973 |
-
|
3974 |
-
.sfsiplus_shwthmbfraftr {
|
3975 |
-
margin-top: 5px !important
|
3976 |
-
}
|
3977 |
-
|
3978 |
-
label.sfsiplus_toglpstpgsbttl {
|
3979 |
-
float: left;
|
3980 |
-
margin-top: 5px !important
|
3981 |
-
}
|
3982 |
-
|
3983 |
-
#accordion .tab8 ul.sfsiplus_shwthmbfraftr .row h4 {
|
3984 |
-
font-family: 'helveticaneue-light';
|
3985 |
-
font-weight: normal;
|
3986 |
-
font-size: 18px;
|
3987 |
-
color: #69737c;
|
3988 |
-
float: left
|
3989 |
-
}
|
3990 |
-
|
3991 |
-
.tab8 .row.sfsiplus_PostsSettings_section .options .seconds.chcklbl {
|
3992 |
-
float: right;
|
3993 |
-
width: 400px !important;
|
3994 |
-
}
|
3995 |
-
|
3996 |
-
.sfsibeforpstwpr {
|
3997 |
-
width: 100%;
|
3998 |
-
float: left;
|
3999 |
-
line-height: 18px;
|
4000 |
-
margin: 5px 0;
|
4001 |
-
}
|
4002 |
-
|
4003 |
-
.sfsiaftrpstwpr {
|
4004 |
-
width: 100%;
|
4005 |
-
float: left;
|
4006 |
-
line-height: 18px;
|
4007 |
-
margin: 5px 0;
|
4008 |
-
}
|
4009 |
-
|
4010 |
-
.sfsibeforpstwpr .sfsi_plus_Sicons span {
|
4011 |
-
font-size: 20px;
|
4012 |
-
}
|
4013 |
-
|
4014 |
-
.sfsiaftrpstwpr .sfsi_plus_Sicons span {
|
4015 |
-
font-size: 20px;
|
4016 |
-
}
|
4017 |
-
|
4018 |
-
.sfsibeforpstwpr .sfsi_plus_Sicons {}
|
4019 |
-
|
4020 |
-
.sfsiaftrpstwpr .sfsi_plus_Sicons {}
|
4021 |
-
|
4022 |
-
.sfsibeforpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr {
|
4023 |
-
width: auto;
|
4024 |
-
float: left;
|
4025 |
-
}
|
4026 |
-
|
4027 |
-
.sfsiaftrpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr {
|
4028 |
-
width: auto;
|
4029 |
-
float: left;
|
4030 |
-
}
|
4031 |
-
|
4032 |
-
.sfsibeforpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr .sfsi_plus_wicons {
|
4033 |
-
float: left;
|
4034 |
-
}
|
4035 |
-
|
4036 |
-
.sfsiaftrpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr .sfsi_plus_wicons {
|
4037 |
-
float: left;
|
4038 |
-
}
|
4039 |
-
|
4040 |
-
.sfsi_flicnsoptn3 {
|
4041 |
-
color: #69737c;
|
4042 |
-
float: left;
|
4043 |
-
font-size: 20px;
|
4044 |
-
margin: 62px 5px 0 20px;
|
4045 |
-
font-family: 'helveticaneue-light';
|
4046 |
-
|
4047 |
-
width: 120px;
|
4048 |
-
}
|
4049 |
-
|
4050 |
-
.sfsi_ckckslctnlbl {
|
4051 |
-
font-weight: bold;
|
4052 |
-
}
|
4053 |
-
|
4054 |
-
.sfsibeforpstwpr iframe {
|
4055 |
-
max-width: none;
|
4056 |
-
vertical-align: middle;
|
4057 |
-
}
|
4058 |
-
|
4059 |
-
.sfsiaftrpstwpr iframe {
|
4060 |
-
max-width: none;
|
4061 |
-
vertical-align: middle;
|
4062 |
-
}
|
4063 |
-
|
4064 |
-
.sfwp_fivestar_ul li {
|
4065 |
-
display: block;
|
4066 |
-
padding-right: 20px;
|
4067 |
-
}
|
4068 |
-
|
4069 |
-
.sfwp_fivestar_ul li {
|
4070 |
-
display: block;
|
4071 |
-
padding-right: 20px;
|
4072 |
-
}
|
4073 |
-
|
4074 |
-
.fb_iframe_widget iframe {
|
4075 |
-
max-width: none;
|
4076 |
-
}
|
4077 |
-
|
4078 |
-
.sfsi_mainContainer p.bldtxtmsg {
|
4079 |
-
float: left;
|
4080 |
-
font-size: 15px;
|
4081 |
-
/*font-weight: bold;*/
|
4082 |
-
margin-top: 12px;
|
4083 |
-
width: 100%;
|
4084 |
-
}
|
4085 |
-
|
4086 |
-
.sfsi_mainContainer p.translatelilne {
|
4087 |
-
float: left;
|
4088 |
-
font-size: 15px;
|
4089 |
-
font-weight: bold;
|
4090 |
-
color: #414951;
|
4091 |
-
margin-top: 12px;
|
4092 |
-
width: 100%;
|
4093 |
-
}
|
4094 |
-
|
4095 |
-
.sfsiplus_icn_listing8 li>div {
|
4096 |
-
width: auto;
|
4097 |
-
float: left;
|
4098 |
-
}
|
4099 |
-
|
4100 |
-
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng {
|
4101 |
-
padding-bottom: 30px;
|
4102 |
-
float: left;
|
4103 |
-
}
|
4104 |
-
|
4105 |
-
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng {
|
4106 |
-
background: none;
|
4107 |
-
}
|
4108 |
-
|
4109 |
-
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng code {
|
4110 |
-
background: none repeat scroll 0 0 transparent;
|
4111 |
-
padding-left: 0px;
|
4112 |
-
padding-right: 0px;
|
4113 |
-
}
|
4114 |
-
|
4115 |
-
.options.sfsipluspstvwpr {
|
4116 |
-
margin-left: 17% !important;
|
4117 |
-
margin-left: 0% !important;
|
4118 |
-
}
|
4119 |
-
|
4120 |
-
.tab8 .row.sfsiplus_PostsSettings_section .options.sfsipluspstvwpr .first.chcklbl {
|
4121 |
-
width: 180px !important;
|
4122 |
-
}
|
4123 |
-
|
4124 |
-
.sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr {
|
4125 |
-
overflow: visible;
|
4126 |
-
}
|
4127 |
-
|
4128 |
-
/*.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1{margin: 2px 35px 2px !important;clear:both;}*/
|
4129 |
-
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a img {
|
4130 |
-
margin: 2px 12px 2px !important;
|
4131 |
-
clear: both;
|
4132 |
-
text-align: center;
|
4133 |
-
float: none;
|
4134 |
-
}
|
4135 |
-
|
4136 |
-
.cstmicon1 {
|
4137 |
-
text-align: center;
|
4138 |
-
}
|
4139 |
-
|
4140 |
-
.sfsi_plus_Sicons img,
|
4141 |
-
.sfsiplusid_facebook img,
|
4142 |
-
.sfsiplusid_twitter img {
|
4143 |
-
height: 20px;
|
4144 |
-
}
|
4145 |
-
|
4146 |
-
.sfsi_plus_wicons a.sficn,
|
4147 |
-
.sfsi_plus_wicons .sfsi_plus_inside a,
|
4148 |
-
.sfsi_plus_Sicons div a {
|
4149 |
-
box-shadow: none;
|
4150 |
-
border: none;
|
4151 |
-
}
|
4152 |
-
|
4153 |
-
.sfsi_plus_Sicons .sf_pinit {
|
4154 |
-
margin-right: 4px;
|
4155 |
-
}
|
4156 |
-
|
4157 |
-
.sfsi_plus_Sicons .sf_pinit>span {
|
4158 |
-
height: 22px !important;
|
4159 |
-
vertical-align: middle;
|
4160 |
-
}
|
4161 |
-
|
4162 |
-
.sfsi_plus_Sicons .sf_pinit>span {
|
4163 |
-
height: 20px !important;
|
4164 |
-
vertical-align: middle;
|
4165 |
-
}
|
4166 |
-
|
4167 |
-
/*.sfsi_plus_Sicons .sf_pinit > span > span
|
4168 |
-
{
|
4169 |
-
display: inline-block;
|
4170 |
-
width: 47px !important;
|
4171 |
-
position: relative !important;
|
4172 |
-
margin-left: 40px;
|
4173 |
-
vertical-align: top;
|
4174 |
-
right: 0 !important;
|
4175 |
-
}*/
|
4176 |
-
.sfsibeforpstwpr .sfsi_plus_Sicons .sf_pinit span {
|
4177 |
-
font-size: 11px !important;
|
4178 |
-
}
|
4179 |
-
|
4180 |
-
.sfsiaftrpstwpr .sfsi_plus_Sicons .sf_pinit span {
|
4181 |
-
font-size: 11px !important;
|
4182 |
-
}
|
4183 |
-
|
4184 |
-
.sfsibeforpstwpr .sfsi_plus_Sicons .sfsi_plus_inside .icon2 span {
|
4185 |
-
font-size: 11px !important;
|
4186 |
-
}
|
4187 |
-
|
4188 |
-
.sfsiaftrpstwpr .sfsi_plus_Sicons .sfsi_plus_inside .icon2 span {
|
4189 |
-
font-size: 11px !important;
|
4190 |
-
}
|
4191 |
-
|
4192 |
-
.sfsi_plus_wicons a {
|
4193 |
-
box-shadow: none !important;
|
4194 |
-
}
|
4195 |
-
|
4196 |
-
.sfsi_plus_inside .fb_iframe_widget {
|
4197 |
-
-webkit-appearance: none !important;
|
4198 |
-
}
|
4199 |
-
|
4200 |
-
.sfsi_plus_inside img {
|
4201 |
-
margin-bottom: 0;
|
4202 |
-
vertical-align: bottom !important;
|
4203 |
-
}
|
4204 |
-
|
4205 |
-
.sfsi_plus_Sicons .sf_pinit {
|
4206 |
-
margin: 0 0 0 10px;
|
4207 |
-
}
|
4208 |
-
|
4209 |
-
.wp-block-ultimate-social-media-plus-sfsi-plus-share-block .sfsi_plus_block_text_before_icon {
|
4210 |
-
display: inline-block;
|
4211 |
-
vertical-align: top;
|
4212 |
-
}
|
4213 |
-
|
4214 |
-
.wp-block-ultimate-social-media-plus-sfsi-plus-share-block .sfsi_plus_block {
|
4215 |
-
display: inline-block
|
4216 |
-
}
|
4217 |
-
|
4218 |
-
/* MZ CODE START */
|
4219 |
-
.sfsi_plus_vk_tool_bdr {
|
4220 |
-
width: 68px;
|
4221 |
-
height: auto
|
4222 |
-
}
|
4223 |
-
|
4224 |
-
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside {
|
4225 |
-
text-align: center;
|
4226 |
-
width: 100%;
|
4227 |
-
float: left;
|
4228 |
-
overflow: hidden
|
4229 |
-
}
|
4230 |
-
|
4231 |
-
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon1 {
|
4232 |
-
margin: 2px 0 2px 0;
|
4233 |
-
height: 28px;
|
4234 |
-
display: inline-block;
|
4235 |
-
float: none
|
4236 |
-
}
|
4237 |
-
|
4238 |
-
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon2 {
|
4239 |
-
margin: 5px auto;
|
4240 |
-
min-height: 25px !important;
|
4241 |
-
display: block;
|
4242 |
-
overflow: hidden;
|
4243 |
-
}
|
4244 |
-
|
4245 |
-
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon3 {
|
4246 |
-
margin: 2px 0 2px 0;
|
4247 |
-
height: 20px;
|
4248 |
-
display: inline-block;
|
4249 |
-
float: none
|
4250 |
-
}
|
4251 |
-
|
4252 |
-
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon4 {
|
4253 |
-
display: inline-block !important;
|
4254 |
-
float: none !important;
|
4255 |
-
vertical-align: middle !important;
|
4256 |
-
width: 100% !important
|
4257 |
-
}
|
4258 |
-
|
4259 |
-
.sfsiplusid_telegram .sfsi_plus_inside .icon2 img,
|
4260 |
-
.sfsiplusid_vk .sfsi_plus_inside .icon2 img,
|
4261 |
-
.sfsiplusid_weibo .sfsi_plus_inside .icon2 img,
|
4262 |
-
.sfsiplusid_xing .sfsi_plus_inside .icon2 img {
|
4263 |
-
width: 80px;
|
4264 |
-
height: 24px;
|
4265 |
-
}
|
4266 |
-
|
4267 |
-
.sfsiplusid_vk .sfsi_plus_inside .icon1 img,
|
4268 |
-
.sfsiplusid_weibo .sfsi_plus_inside .icon1 img,
|
4269 |
-
.sfsiplusid_xing .sfsi_plus_inside .icon1 img {
|
4270 |
-
width: 80px;
|
4271 |
-
}
|
4272 |
-
|
4273 |
-
/* MZ CODE END */
|
4274 |
-
.sfsiplusid_ok .sfsi_plus_inside,
|
4275 |
-
.sfsiplusid_telegram .sfsi_plus_inside {
|
4276 |
-
text-align: center;
|
4277 |
-
}
|
4278 |
-
|
4279 |
-
.sfsiplusid_ok .sfsi_plus_inside .icon3 img,
|
4280 |
-
.sfsiplusid_telegram .sfsi_plus_inside .icon1 img {
|
4281 |
-
width: 107px;
|
4282 |
-
height: 37px;
|
4283 |
-
}
|
4284 |
-
|
4285 |
-
.sfsiplusid_ok .sfsi_plus_inside .icon2 img {
|
4286 |
-
width: 65px;
|
4287 |
-
height: 30px;
|
4288 |
-
margin-top: 5px;
|
4289 |
-
}
|
4290 |
-
|
4291 |
-
.sfsiplusid_ok .sfsi_plus_inside .icon1 img {
|
4292 |
-
width: 103px;
|
4293 |
-
height: 25px;
|
4294 |
-
}
|
4295 |
-
|
4296 |
-
.sfsiplusid_vk .sfsi_plus_inside .icon1 img,
|
4297 |
-
.sfsiplusid_weibo .sfsi_plus_inside .icon1 img,
|
4298 |
-
.sfsiplusid_xing .sfsi_plus_inside .icon1 img {
|
4299 |
-
width: 80px;
|
4300 |
-
}
|
4301 |
-
|
4302 |
-
.sfsiplusid_wechat .sfsi_plus_inside .icon1 {
|
4303 |
-
margin: 10px;
|
4304 |
-
}
|
4305 |
-
|
4306 |
-
.sfsiplusid_round_icon_wechat {
|
4307 |
-
border-radius: 20px;
|
4308 |
-
}
|
4309 |
-
|
4310 |
-
.sfsi_plus_overlay {
|
4311 |
-
background: rgba(0, 0, 0, .8);
|
4312 |
-
width: 100%;
|
4313 |
-
height: 100%;
|
4314 |
-
top: 0;
|
4315 |
-
left: 0;
|
4316 |
-
z-index: 99999999;
|
4317 |
-
position: fixed;
|
4318 |
-
}
|
4319 |
-
|
4320 |
-
.sfsi_plus_wechat_scan .sfsi_plus_inner_display {
|
4321 |
-
text-align: center;
|
4322 |
-
vertical-align: middle;
|
4323 |
-
margin-top: 50px;
|
4324 |
-
}
|
4325 |
-
|
4326 |
-
.sfsi_plus_overlay a.close_btn {
|
4327 |
-
position: absolute;
|
4328 |
-
top: 20px;
|
4329 |
-
right: 20px;
|
4330 |
-
background: #fff;
|
4331 |
-
border-radius: 15px;
|
4332 |
-
width: 30px;
|
4333 |
-
height: 30px;
|
4334 |
-
line-height: 30px;
|
4335 |
-
text-align: center;
|
4336 |
-
}
|
4337 |
-
|
4338 |
-
.hide {
|
4339 |
-
display: none;
|
4340 |
-
}
|
4341 |
-
|
4342 |
-
.show {
|
4343 |
-
display: block;
|
4344 |
-
}
|
4345 |
-
|
4346 |
-
.sfsiplusid_facebook .icon3 span {
|
4347 |
-
/* width: 62px !important; */
|
4348 |
-
height: 20px !important;
|
4349 |
-
}
|
4350 |
-
|
4351 |
-
.sfsiplusid_facebook .icon3 iframe {
|
4352 |
-
width: unset !important;
|
4353 |
-
height: unset !important;
|
4354 |
-
}
|
4355 |
-
.sfsiplusid_twitter .icon2 iframe{
|
4356 |
-
/* width: 62px !important; */
|
4357 |
-
height:20px!important;
|
4358 |
-
}
|
4359 |
-
|
4360 |
-
a.pop-up .radio {
|
4361 |
-
opacity: 0.5;
|
4362 |
-
background-position: 0px 0px !important;
|
4363 |
-
}
|
4364 |
-
|
4365 |
-
.tab8 .sfsi_plus_responsive_icon_option_li .options .first.first.first {
|
4366 |
-
width: 25% !important;
|
4367 |
-
}
|
4368 |
-
|
4369 |
-
.sfsi_plus_responsive_icon_gradient {
|
4370 |
-
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.17) 0%, rgba(255, 255, 255, 0.17) 100%);
|
4371 |
-
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.17) 0%, rgba(255, 255, 255, 0.17) 100%);
|
4372 |
-
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .17) 0%, rgba(255, 255, 255, .17) 100%);
|
4373 |
-
}
|
4374 |
-
|
4375 |
-
.sfsi_plus_responsive_icons a {
|
4376 |
-
text-decoration: none !important;
|
4377 |
-
box-shadow: none !important;
|
4378 |
-
}
|
4379 |
-
|
4380 |
-
.sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_facebook_container {
|
4381 |
-
background-color: #336699;
|
4382 |
-
}
|
4383 |
-
|
4384 |
-
.sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_follow_container {
|
4385 |
-
background-color: #00B04E;
|
4386 |
-
}
|
4387 |
-
|
4388 |
-
.sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_follow_container {
|
4389 |
-
background-color: #00B04E;
|
4390 |
-
}
|
4391 |
-
|
4392 |
-
.sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_twitter_container {
|
4393 |
-
background-color: #55ACEE;
|
4394 |
-
}
|
4395 |
-
|
4396 |
-
.sfsi_plus_small_button {
|
4397 |
-
line-height: 0px;
|
4398 |
-
height: unset;
|
4399 |
-
padding: 6px !important;
|
4400 |
-
}
|
4401 |
-
|
4402 |
-
.sfsi_plus_small_button span {
|
4403 |
-
margin-left: 10px;
|
4404 |
-
font-size: 16px;
|
4405 |
-
padding: 0px;
|
4406 |
-
line-height: 16px;
|
4407 |
-
vertical-align: -webkit-baseline-middle !important;
|
4408 |
-
margin-left: 10px;
|
4409 |
-
}
|
4410 |
-
|
4411 |
-
.sfsi_plus_small_button img {
|
4412 |
-
max-height: 16px !important;
|
4413 |
-
padding: 0px;
|
4414 |
-
line-height: 0px;
|
4415 |
-
vertical-align: -webkit-baseline-middle !important;
|
4416 |
-
}
|
4417 |
-
|
4418 |
-
.sfsi_plus_medium_button span {
|
4419 |
-
margin-left: 10px;
|
4420 |
-
font-size: 18px;
|
4421 |
-
padding: 0px;
|
4422 |
-
line-height: 16px;
|
4423 |
-
vertical-align: -webkit-baseline-middle !important;
|
4424 |
-
margin-left: 10px;
|
4425 |
-
}
|
4426 |
-
|
4427 |
-
.sfsi_plus_medium_button img {
|
4428 |
-
max-height: 16px !important;
|
4429 |
-
padding: 0px;
|
4430 |
-
line-height: 0px;
|
4431 |
-
vertical-align: -webkit-baseline-middle !important;
|
4432 |
-
}
|
4433 |
-
|
4434 |
-
.sfsi_plus_medium_button {
|
4435 |
-
line-height: 0px;
|
4436 |
-
height: unset;
|
4437 |
-
padding: 10px !important;
|
4438 |
-
}
|
4439 |
-
|
4440 |
-
.sfsi_plus_medium_button span {
|
4441 |
-
margin-left: 10px;
|
4442 |
-
font-size: 18px;
|
4443 |
-
padding: 0px;
|
4444 |
-
line-height: 16px;
|
4445 |
-
vertical-align: -webkit-baseline-middle !important;
|
4446 |
-
margin-left: 10px;
|
4447 |
-
}
|
4448 |
-
|
4449 |
-
.sfsi_plus_medium_button img {
|
4450 |
-
max-height: 16px !important;
|
4451 |
-
padding: 0px;
|
4452 |
-
line-height: 0px;
|
4453 |
-
vertical-align: -webkit-baseline-middle !important;
|
4454 |
-
}
|
4455 |
-
|
4456 |
-
.sfsi_plus_medium_button {
|
4457 |
-
line-height: 0px;
|
4458 |
-
height: unset;
|
4459 |
-
padding: 10px !important;
|
4460 |
-
}
|
4461 |
-
|
4462 |
-
.sfsi_plus_large_button span {
|
4463 |
-
font-size: 20px;
|
4464 |
-
padding: 0px;
|
4465 |
-
line-height: 16px;
|
4466 |
-
vertical-align: -webkit-baseline-middle !important;
|
4467 |
-
display: inline;
|
4468 |
-
margin-left: 10px;
|
4469 |
-
}
|
4470 |
-
|
4471 |
-
.sfsi_plus_large_button img {
|
4472 |
-
max-height: 16px !important;
|
4473 |
-
padding: 0px;
|
4474 |
-
line-height: 0px;
|
4475 |
-
vertical-align: -webkit-baseline-middle !important;
|
4476 |
-
display: inline;
|
4477 |
-
}
|
4478 |
-
|
4479 |
-
.sfsi_plus_large_button {
|
4480 |
-
line-height: 0px;
|
4481 |
-
height: unset;
|
4482 |
-
padding: 13px !important;
|
4483 |
-
}
|
4484 |
-
|
4485 |
-
.sfsi_plus_responsive_icons .sfsi_plus_icons_container span {
|
4486 |
-
font-family: sans-serif;
|
4487 |
-
font-size: 15px;
|
4488 |
-
}
|
4489 |
-
|
4490 |
-
.sfsi_plus_icons_container_box_fully_container {
|
4491 |
-
flex-wrap: wrap;
|
4492 |
-
}
|
4493 |
-
|
4494 |
-
.sfsi_plus_icons_container_box_fully_container a {
|
4495 |
-
flex-basis: auto !important;
|
4496 |
-
flex-grow: 1;
|
4497 |
-
flex-shrink: 1;
|
4498 |
-
margin-bottom: 5px;
|
4499 |
-
}
|
4500 |
-
|
4501 |
-
.sfsi_plus_icons_container>a {
|
4502 |
-
float: left !important;
|
4503 |
-
text-decoration: none !important;
|
4504 |
-
-webkit-box-shadow: unset !important;
|
4505 |
-
box-shadow: unset !important;
|
4506 |
-
-webkit-transition: unset !important;
|
4507 |
-
transition: unset !important;
|
4508 |
-
margin-bottom: 5px !important;
|
4509 |
-
}
|
4510 |
-
|
4511 |
-
.sfsi_plus_small_button {
|
4512 |
-
line-height: 0px;
|
4513 |
-
height: unset;
|
4514 |
-
padding: 6px !important;
|
4515 |
-
}
|
4516 |
-
|
4517 |
-
.sfsi_plus_small_button span {
|
4518 |
-
margin-left: 10px;
|
4519 |
-
font-size: 16px;
|
4520 |
-
padding: 0px;
|
4521 |
-
line-height: 16px;
|
4522 |
-
vertical-align: -webkit-baseline-middle !important;
|
4523 |
-
margin-left: 10px;
|
4524 |
-
}
|
4525 |
-
|
4526 |
-
.sfsi_plus_small_button img {
|
4527 |
-
max-height: 16px !important;
|
4528 |
-
padding: 0px;
|
4529 |
-
line-height: 0px;
|
4530 |
-
vertical-align: -webkit-baseline-middle !important;
|
4531 |
-
}
|
4532 |
-
|
4533 |
-
.sfsi_plus_medium_button span {
|
4534 |
-
margin-left: 10px;
|
4535 |
-
font-size: 18px;
|
4536 |
-
padding: 0px;
|
4537 |
-
line-height: 16px;
|
4538 |
-
vertical-align: -webkit-baseline-middle !important;
|
4539 |
-
margin-left: 10px;
|
4540 |
-
}
|
4541 |
-
|
4542 |
-
.sfsi_plus_medium_button img {
|
4543 |
-
max-height: 16px !important;
|
4544 |
-
padding: 0px;
|
4545 |
-
line-height: 0px;
|
4546 |
-
vertical-align: -webkit-baseline-middle !important;
|
4547 |
-
}
|
4548 |
-
|
4549 |
-
.sfsi_plus_medium_button {
|
4550 |
-
line-height: 0px;
|
4551 |
-
height: unset;
|
4552 |
-
padding: 10px !important;
|
4553 |
-
}
|
4554 |
-
|
4555 |
-
.sfsi_plus_medium_button span {
|
4556 |
-
margin-left: 10px;
|
4557 |
-
font-size: 18px;
|
4558 |
-
padding: 0px;
|
4559 |
-
line-height: 16px;
|
4560 |
-
vertical-align: -webkit-baseline-middle !important;
|
4561 |
-
margin-left: 10px;
|
4562 |
-
}
|
4563 |
-
|
4564 |
-
.sfsi_plus_medium_button img {
|
4565 |
-
max-height: 16px !important;
|
4566 |
-
padding: 0px;
|
4567 |
-
line-height: 0px;
|
4568 |
-
vertical-align: -webkit-baseline-middle !important;
|
4569 |
-
}
|
4570 |
-
|
4571 |
-
.sfsi_plus_medium_button {
|
4572 |
-
line-height: 0px;
|
4573 |
-
height: unset;
|
4574 |
-
padding: 10px !important;
|
4575 |
-
}
|
4576 |
-
|
4577 |
-
.sfsi_plus_large_button span {
|
4578 |
-
font-size: 20px;
|
4579 |
-
padding: 0px;
|
4580 |
-
line-height: 16px;
|
4581 |
-
vertical-align: -webkit-baseline-middle !important;
|
4582 |
-
display: inline;
|
4583 |
-
margin-left: 10px;
|
4584 |
-
}
|
4585 |
-
|
4586 |
-
.sfsi_plus_large_button img {
|
4587 |
-
max-height: 16px !important;
|
4588 |
-
padding: 0px;
|
4589 |
-
line-height: 0px;
|
4590 |
-
vertical-align: -webkit-baseline-middle !important;
|
4591 |
-
display: inline;
|
4592 |
-
}
|
4593 |
-
|
4594 |
-
.sfsi_plus_large_button {
|
4595 |
-
line-height: 0px;
|
4596 |
-
height: unset;
|
4597 |
-
padding: 13px !important;
|
4598 |
-
}
|
4599 |
-
|
4600 |
-
.sfsi_plus_responsive_icons_count {
|
4601 |
-
padding: 5px 10px;
|
4602 |
-
float: left !important;
|
4603 |
-
display: inline-block;
|
4604 |
-
margin-right: 0px;
|
4605 |
-
margin-top: 2px;
|
4606 |
-
}
|
4607 |
-
|
4608 |
-
.sfsi_plus_responsive_icons_count h3 {
|
4609 |
-
font-family: 'sans-serif' !important;
|
4610 |
-
font-weight: 900;
|
4611 |
-
font-size: 32px !important;
|
4612 |
-
line-height: 0px !important;
|
4613 |
-
padding: 0px;
|
4614 |
-
margin: 0px;
|
4615 |
-
}
|
4616 |
-
|
4617 |
-
.sfsi_plus_responsive_icons_count h6 {
|
4618 |
-
font-family: 'sans-serif' !important;
|
4619 |
-
font-weight: 900;
|
4620 |
-
padding: 0px;
|
4621 |
-
margin: 0px;
|
4622 |
-
}
|
4623 |
-
|
4624 |
-
.sfsi_plus_responsive_icons a,
|
4625 |
-
.sfsi_plus_responsive_icons h3,
|
4626 |
-
.sfsi_plus_responsive_icons h6 {
|
4627 |
-
text-decoration: none !important;
|
4628 |
-
border: 0 !important;
|
4629 |
-
}
|
4630 |
-
|
4631 |
-
.sfsi_plus_responsive_with_counter_icons {
|
4632 |
-
width: calc(100% - 100px) !important;
|
4633 |
-
}
|
4634 |
-
|
4635 |
-
.sfsiresponsive_icon_preview {
|
4636 |
-
padding: 0px 0 20px 0;
|
4637 |
-
min-width: 100%;
|
4638 |
-
}
|
4639 |
-
|
4640 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button {
|
4641 |
-
padding: 12px 13px 9px 13px !important;
|
4642 |
-
}
|
4643 |
-
|
4644 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_medium_button {
|
4645 |
-
padding: 9px 10px 7px 10px !important;
|
4646 |
-
}
|
4647 |
-
|
4648 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
|
4649 |
-
padding: 7px 6px !important;
|
4650 |
-
}
|
4651 |
-
|
4652 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
|
4653 |
-
padding: 7px 6px !important;
|
4654 |
-
margin-top: 2px;
|
4655 |
-
}
|
4656 |
-
|
4657 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h6 {
|
4658 |
-
display: inline-block;
|
4659 |
-
font-size: 12px !important;
|
4660 |
-
vertical-align: middle;
|
4661 |
-
}
|
4662 |
-
|
4663 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_medium_button {
|
4664 |
-
padding: 9px 10px 7px 10px !important;
|
4665 |
-
}
|
4666 |
-
|
4667 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_medium_button h3 {
|
4668 |
-
font-size: 21px !important;
|
4669 |
-
vertical-align: top;
|
4670 |
-
line-height: 8px !important;
|
4671 |
-
margin: 0px 0px 12px 0px !important;
|
4672 |
-
font-weight: 900;
|
4673 |
-
padding: 0px;
|
4674 |
-
}
|
4675 |
-
|
4676 |
-
.sfsi_plus_esponsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button h3 {
|
4677 |
-
margin: 0px 0px 15px 0px !important;
|
4678 |
-
}
|
4679 |
-
|
4680 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_large_button h3 {
|
4681 |
-
font-size: 26px !important;
|
4682 |
-
vertical-align: top;
|
4683 |
-
line-height: 6px !important;
|
4684 |
-
}
|
4685 |
-
|
4686 |
-
.sfsi_plus_responsive_icons_count h3 {
|
4687 |
-
font-family: 'sans-serif' !important;
|
4688 |
-
font-weight: 900;
|
4689 |
-
padding: 0px;
|
4690 |
-
}
|
4691 |
-
|
4692 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
|
4693 |
-
font-size: 20px !important;
|
4694 |
-
display: inline-block;
|
4695 |
-
vertical-align: middle;
|
4696 |
-
}
|
4697 |
-
|
4698 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
|
4699 |
-
margin: 0px !important;
|
4700 |
-
}
|
4701 |
-
|
4702 |
-
.sfsi_plus_responsive_icons_count h3 {
|
4703 |
-
font-family: 'sans-serif' !important;
|
4704 |
-
font-weight: 900;
|
4705 |
-
line-height: 0px !important;
|
4706 |
-
padding: 0px;
|
4707 |
-
margin: 0px;
|
4708 |
-
}
|
4709 |
-
|
4710 |
-
.sfsi_plus_responsive_icons a,
|
4711 |
-
.sfsi_plus_responsive_icons h3,
|
4712 |
-
.sfsi_plus_responsive_icons h6 {
|
4713 |
-
text-decoration: none !important;
|
4714 |
-
border: 0 !important;
|
4715 |
-
}
|
4716 |
-
|
4717 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
|
4718 |
-
padding: 7px 6px !important;
|
4719 |
-
margin-top: 2px;
|
4720 |
-
}
|
4721 |
-
|
4722 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_large_button h3 {
|
4723 |
-
margin-top: 0 !important;
|
4724 |
-
margin-bottom: 8px !important;
|
4725 |
-
}
|
4726 |
-
|
4727 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_large_button h6 {
|
4728 |
-
font-size: 13px !important;
|
4729 |
-
}
|
4730 |
-
|
4731 |
-
.sfsi_plus_responsive_icons_count {
|
4732 |
-
vertical-align: top;
|
4733 |
-
}
|
4734 |
-
|
4735 |
-
.sfsi_plus_responsive_icons_count {
|
4736 |
-
float: left;
|
4737 |
-
}
|
4738 |
-
|
4739 |
-
.sfsi_plus_small_button {
|
4740 |
-
line-height: 0px;
|
4741 |
-
height: unset;
|
4742 |
-
}
|
4743 |
-
|
4744 |
-
.sfsi_plus_responsive_icons a,
|
4745 |
-
.sfsi_plus_responsive_icons h3,
|
4746 |
-
.sfsi_plus_responsive_icons h6 {
|
4747 |
-
text-decoration: none !important;
|
4748 |
-
border: 0 !important;
|
4749 |
-
}
|
4750 |
-
|
4751 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
|
4752 |
-
font-size: 20px !important;
|
4753 |
-
display: inline-block;
|
4754 |
-
vertical-align: middle;
|
4755 |
-
margin: 0px !important;
|
4756 |
-
}
|
4757 |
-
|
4758 |
-
.sfsi_plus_responsive_icons a,
|
4759 |
-
.sfsi_plus_responsive_icons h3,
|
4760 |
-
.sfsi_plus_responsive_icons h6 {
|
4761 |
-
text-decoration: none !important;
|
4762 |
-
font-family: helveticaregular !important;
|
4763 |
-
border: 0 !important;
|
4764 |
-
}
|
4765 |
-
|
4766 |
-
.sfsi_plus_responsive_icons_count h3 {
|
4767 |
-
line-height: 0px !important;
|
4768 |
-
padding: 0px;
|
4769 |
-
}
|
4770 |
-
|
4771 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h6 {
|
4772 |
-
display: inline-block;
|
4773 |
-
font-size: 12px !important;
|
4774 |
-
/*vertical-align: middle;*/
|
4775 |
-
margin: 0px !important;
|
4776 |
-
line-height: initial !important;
|
4777 |
-
padding: 0;
|
4778 |
-
margin: 0;
|
4779 |
-
}
|
4780 |
-
|
4781 |
-
.sfsi_plus_responsive_icons_count h6 {
|
4782 |
-
margin: 0 !important;
|
4783 |
-
}
|
4784 |
-
|
4785 |
-
.sfsi_plus_responsive_icons_count h6 {
|
4786 |
-
padding: 0px;
|
4787 |
-
}
|
4788 |
-
|
4789 |
-
.sfsi_plus_responsive_icons a,
|
4790 |
-
.sfsi_plus_responsive_icons h3,
|
4791 |
-
.sfsi_plus_responsive_icons h6 {
|
4792 |
-
text-decoration: none !important;
|
4793 |
-
font-family: helveticaregular !important;
|
4794 |
-
border: 0 !important;
|
4795 |
-
}
|
4796 |
-
|
4797 |
-
.sfsi_plus_responsive_icons_count.sfsi_plus_medium_button h6 {
|
4798 |
-
font-size: 11px !important;
|
4799 |
-
line-height: 0px !important;
|
4800 |
-
margin: 0px 0px 0px 0px !important;
|
4801 |
-
}
|
4802 |
-
|
4803 |
-
.sfsi_plus.sfsi_plus_widget_main_container .sfsi_plus_widget_sub_container {
|
4804 |
-
float: none;
|
4805 |
-
}
|
4806 |
-
|
4807 |
-
.export_selections {
|
4808 |
-
clear: both;
|
4809 |
-
color: #afafaf;
|
4810 |
-
font-size: 23px;
|
4811 |
-
display: flex;
|
4812 |
-
height: 0px;
|
4813 |
-
position: absolute;
|
4814 |
-
top: 41px;
|
4815 |
-
right: 0;
|
4816 |
-
}
|
4817 |
-
|
4818 |
-
.save_export {
|
4819 |
-
clear: both;
|
4820 |
-
position: relative;
|
4821 |
-
}
|
4822 |
-
|
4823 |
-
.export {
|
4824 |
-
padding-right: 11px;
|
4825 |
-
text-decoration: underline;
|
4826 |
-
cursor: pointer;
|
4827 |
-
font-size: 20px;
|
4828 |
-
}
|
4829 |
-
.sfsi_plus.sfsi_plus_widget_main_container .sfsi_plus_widget_sub_container{
|
4830 |
-
float: none;
|
4831 |
-
}
|
4832 |
-
|
4833 |
-
.export_selections {
|
4834 |
-
clear: both;
|
4835 |
-
color: #afafaf;
|
4836 |
-
font-size: 23px;
|
4837 |
-
display: flex;
|
4838 |
-
height: 0px;
|
4839 |
-
position: absolute;
|
4840 |
-
top: 41px;
|
4841 |
-
right: 0;
|
4842 |
-
}
|
4843 |
-
|
4844 |
-
.save_export {
|
4845 |
-
clear: both;
|
4846 |
-
position: relative;
|
4847 |
-
}
|
4848 |
-
|
4849 |
-
.export {
|
4850 |
-
padding-right: 11px;
|
4851 |
-
text-decoration: underline;
|
4852 |
-
cursor: pointer;
|
4853 |
-
font-size: 20px;
|
4854 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@charset "utf-8";
|
2 |
+
|
3 |
+
@font-face {
|
4 |
+
font-family: helveticabold;
|
5 |
+
src: url(fonts/helvetica_bold_0-webfont.eot);
|
6 |
+
src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
|
7 |
+
font-weight: 400;
|
8 |
+
font-style: normal;
|
9 |
+
}
|
10 |
+
|
11 |
+
@font-face {
|
12 |
+
font-family: helveticaregular;
|
13 |
+
src: url(fonts/helvetica_0-webfont.eot);
|
14 |
+
src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
|
15 |
+
font-weight: 400;
|
16 |
+
font-style: normal;
|
17 |
+
}
|
18 |
+
|
19 |
+
@font-face {
|
20 |
+
font-family: helveticaneue-light;
|
21 |
+
src: url(fonts/helveticaneue-light.eot);
|
22 |
+
src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
|
23 |
+
url(fonts/helveticaneue-light.woff) format('woff'),
|
24 |
+
url(fonts/helveticaneue-light.ttf) format('truetype'),
|
25 |
+
url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
|
26 |
+
font-weight: 400;
|
27 |
+
font-style: normal;
|
28 |
+
}
|
29 |
+
|
30 |
+
body {
|
31 |
+
margin: 0;
|
32 |
+
padding: 0;
|
33 |
+
}
|
34 |
+
|
35 |
+
.clear {
|
36 |
+
clear: both;
|
37 |
+
}
|
38 |
+
|
39 |
+
.space {
|
40 |
+
clear: both;
|
41 |
+
padding: 30px 0 0;
|
42 |
+
width: 100%;
|
43 |
+
float: left;
|
44 |
+
}
|
45 |
+
|
46 |
+
.sfsi_mainContainer {
|
47 |
+
font-family: helveticaregular;
|
48 |
+
}
|
49 |
+
|
50 |
+
.sfsi_mainContainer h1,
|
51 |
+
.sfsi_mainContainer h2,
|
52 |
+
.sfsi_mainContainer h3,
|
53 |
+
.sfsi_mainContainer h4,
|
54 |
+
.sfsi_mainContainer h5,
|
55 |
+
.sfsi_mainContainer h6,
|
56 |
+
.sfsi_mainContainer li,
|
57 |
+
.sfsi_mainContainer p,
|
58 |
+
.sfsi_mainContainer ul {
|
59 |
+
margin: 0;
|
60 |
+
padding: 0;
|
61 |
+
font-weight: 400;
|
62 |
+
}
|
63 |
+
|
64 |
+
.sfsi_mainContainer img {
|
65 |
+
border: 0;
|
66 |
+
}
|
67 |
+
|
68 |
+
.main_contant p,
|
69 |
+
.ui-accordion .ui-accordion-header {
|
70 |
+
font-family: 'helveticaneue-light';
|
71 |
+
}
|
72 |
+
|
73 |
+
.sfsi_mainContainer input,
|
74 |
+
.sfsi_mainContainer select {
|
75 |
+
outline: 0;
|
76 |
+
}
|
77 |
+
|
78 |
+
.wapper {
|
79 |
+
padding: 48px 106px 40px 20px;
|
80 |
+
display: block;
|
81 |
+
background: #f1f1f1;
|
82 |
+
}
|
83 |
+
|
84 |
+
.main_contant {
|
85 |
+
margin: 0;
|
86 |
+
padding: 0;
|
87 |
+
}
|
88 |
+
|
89 |
+
.main_contant h1 {
|
90 |
+
padding: 0;
|
91 |
+
color: #1a1d20;
|
92 |
+
font-family: helveticabold;
|
93 |
+
font-size: 28px;
|
94 |
+
}
|
95 |
+
|
96 |
+
.main_contant p {
|
97 |
+
padding: 0;
|
98 |
+
color: #414951;
|
99 |
+
font-size: 17px;
|
100 |
+
line-height: 26px;
|
101 |
+
}
|
102 |
+
|
103 |
+
.main_contant p span {
|
104 |
+
text-decoration: underline;
|
105 |
+
font-family: helveticabold;
|
106 |
+
}
|
107 |
+
|
108 |
+
.like_txt {
|
109 |
+
margin: 30px 0 0;
|
110 |
+
padding: 0;
|
111 |
+
color: #12a252;
|
112 |
+
font-family: helveticaregular;
|
113 |
+
font-size: 20px;
|
114 |
+
line-height: 20px;
|
115 |
+
text-align: center;
|
116 |
+
}
|
117 |
+
|
118 |
+
.like_txt a {
|
119 |
+
color: #12a252;
|
120 |
+
}
|
121 |
+
|
122 |
+
#accordion p,
|
123 |
+
#accordion1 p {
|
124 |
+
color: #5a6570;
|
125 |
+
text-align: left;
|
126 |
+
font-family: 'helveticaneue-light';
|
127 |
+
font-size: 17px;
|
128 |
+
line-height: 26px;
|
129 |
+
padding-top: 19px;
|
130 |
+
}
|
131 |
+
|
132 |
+
.sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .cstmdisplaysharingtxt {
|
133 |
+
float: left;
|
134 |
+
}
|
135 |
+
|
136 |
+
#accordion p:first-child,
|
137 |
+
#accordion1 p:first-child {
|
138 |
+
padding-top: 0;
|
139 |
+
}
|
140 |
+
|
141 |
+
#accordion h4,
|
142 |
+
#accordion1 h4 {
|
143 |
+
margin: 0;
|
144 |
+
padding: 30px 0 0;
|
145 |
+
color: #414951;
|
146 |
+
font-size: 20px;
|
147 |
+
line-height: 22px;
|
148 |
+
font-family: helveticaregular;
|
149 |
+
}
|
150 |
+
|
151 |
+
#accordion h4:first-child,
|
152 |
+
#accordion1 h4:first-child {
|
153 |
+
padding-top: 0;
|
154 |
+
}
|
155 |
+
|
156 |
+
#accordion .tab8 h4:first-child,
|
157 |
+
#accordion1 h4:first-child {
|
158 |
+
margin-left: 0 !important
|
159 |
+
}
|
160 |
+
|
161 |
+
.tab1,
|
162 |
+
.tab2,
|
163 |
+
.tab3,
|
164 |
+
.tab4,
|
165 |
+
.tab5,
|
166 |
+
.tab6,
|
167 |
+
.tab7 {
|
168 |
+
color: #5a6570;
|
169 |
+
text-align: left;
|
170 |
+
font-family: helveticaregular;
|
171 |
+
font-size: 18px;
|
172 |
+
line-height: 26px;
|
173 |
+
}
|
174 |
+
|
175 |
+
.tab4 ul.like_icon {
|
176 |
+
margin: 0;
|
177 |
+
padding: 20px 0 0;
|
178 |
+
list-style: none;
|
179 |
+
text-align: center;
|
180 |
+
}
|
181 |
+
|
182 |
+
.tab4 ul.like_icon li {
|
183 |
+
margin: 0;
|
184 |
+
padding: 0;
|
185 |
+
list-style: none;
|
186 |
+
display: inline-block;
|
187 |
+
}
|
188 |
+
|
189 |
+
.tab4 ul.like_icon li span {
|
190 |
+
margin: 0;
|
191 |
+
width: 58px;
|
192 |
+
display: block;
|
193 |
+
background: url(../images/count_bg.png) no-repeat;
|
194 |
+
height: 38px;
|
195 |
+
overflow: hidden;
|
196 |
+
padding: 10px 2px 2px;
|
197 |
+
font-size: 17px;
|
198 |
+
text-align: center;
|
199 |
+
line-height: 24px;
|
200 |
+
color: #5a6570;
|
201 |
+
}
|
202 |
+
|
203 |
+
.tab4 ul.like_icon li a {
|
204 |
+
color: #5a6570;
|
205 |
+
text-decoration: none;
|
206 |
+
}
|
207 |
+
|
208 |
+
.tab4 ul.enough_waffling {
|
209 |
+
margin: 0;
|
210 |
+
padding: 25px 0 27px;
|
211 |
+
list-style: none;
|
212 |
+
text-align: center;
|
213 |
+
}
|
214 |
+
|
215 |
+
.tab4 ul.enough_waffling li {
|
216 |
+
margin: 0 22px;
|
217 |
+
padding: 0;
|
218 |
+
list-style: none;
|
219 |
+
display: inline-block;
|
220 |
+
}
|
221 |
+
|
222 |
+
.tab4 ul.enough_waffling li span {
|
223 |
+
float: left;
|
224 |
+
}
|
225 |
+
|
226 |
+
.tab4 ul.enough_waffling li label {
|
227 |
+
margin: 0 0 0 20px;
|
228 |
+
float: left;
|
229 |
+
font-family: helveticaregular;
|
230 |
+
font-size: 18px;
|
231 |
+
font-weight: 400;
|
232 |
+
text-align: center;
|
233 |
+
line-height: 38px;
|
234 |
+
color: #5a6570;
|
235 |
+
}
|
236 |
+
|
237 |
+
.sfsi_mainContainer .checkbox {
|
238 |
+
width: 31px;
|
239 |
+
height: 31px;
|
240 |
+
background: url(../images/check_bg.jpg) no-repeat;
|
241 |
+
display: inherit;
|
242 |
+
}
|
243 |
+
|
244 |
+
.tab8 .social_icon_like1 li span.checkbox {
|
245 |
+
width: 31px;
|
246 |
+
height: 31px;
|
247 |
+
background: url(../images/check_bg.jpg) no-repeat;
|
248 |
+
display: inherit;
|
249 |
+
}
|
250 |
+
|
251 |
+
.tab8 .social_icon_like1 li a {
|
252 |
+
float: left;
|
253 |
+
}
|
254 |
+
|
255 |
+
.sfsi_mainContainer .radio {
|
256 |
+
width: 40px;
|
257 |
+
height: 40px;
|
258 |
+
background: url(../images/radio_bg.png) no-repeat;
|
259 |
+
display: inherit;
|
260 |
+
}
|
261 |
+
|
262 |
+
.sfsi_mainContainer .select {
|
263 |
+
width: 137px;
|
264 |
+
height: 47px;
|
265 |
+
font-size: 17px;
|
266 |
+
background: url(../images/select_bg.jpg) no-repeat;
|
267 |
+
display: block;
|
268 |
+
padding-left: 16px;
|
269 |
+
line-height: 49px;
|
270 |
+
}
|
271 |
+
|
272 |
+
.sfsi_mainContainer .line {
|
273 |
+
background: #eaebee;
|
274 |
+
height: 1px;
|
275 |
+
font-size: 0;
|
276 |
+
margin: 15px 0 0;
|
277 |
+
clear: both;
|
278 |
+
width: 100%;
|
279 |
+
float: left;
|
280 |
+
}
|
281 |
+
|
282 |
+
.sfsiplus_specify_counts {
|
283 |
+
display: block;
|
284 |
+
margin-top: 15px;
|
285 |
+
padding-top: 15px;
|
286 |
+
clear: both;
|
287 |
+
width: 100%;
|
288 |
+
float: left;
|
289 |
+
border-top: 1px solid #eaebee;
|
290 |
+
}
|
291 |
+
|
292 |
+
.sfsiplus_specify_counts .radio_section {
|
293 |
+
width: 30px;
|
294 |
+
float: left;
|
295 |
+
margin: 12px 10px 0 0;
|
296 |
+
}
|
297 |
+
|
298 |
+
.sfsiplus_specify_counts .social_icon_like {
|
299 |
+
width: 54px;
|
300 |
+
float: left;
|
301 |
+
margin: 0 15px 0 0;
|
302 |
+
}
|
303 |
+
|
304 |
+
.sfsiplus_specify_counts .social_icon_like ul {
|
305 |
+
margin: 0;
|
306 |
+
padding: 0 !important;
|
307 |
+
list-style: none;
|
308 |
+
text-align: center;
|
309 |
+
}
|
310 |
+
|
311 |
+
.sfsiplus_specify_counts .social_icon_like li {
|
312 |
+
margin: 0;
|
313 |
+
padding: 0;
|
314 |
+
list-style: none;
|
315 |
+
display: inline-block;
|
316 |
+
}
|
317 |
+
|
318 |
+
.sfsiplus_specify_counts .social_icon_like li span {
|
319 |
+
margin: 0;
|
320 |
+
width: 54px;
|
321 |
+
display: block;
|
322 |
+
background: url(../images/count_bg.jpg) no-repeat;
|
323 |
+
height: 24px;
|
324 |
+
overflow: hidden;
|
325 |
+
padding: 10px 2px 2px;
|
326 |
+
font-family: helveticaregular;
|
327 |
+
font-size: 16px;
|
328 |
+
text-align: center;
|
329 |
+
line-height: 24px;
|
330 |
+
color: #5a6570;
|
331 |
+
}
|
332 |
+
|
333 |
+
.sfsiplus_specify_counts .social_icon_like li a {
|
334 |
+
color: #5a6570;
|
335 |
+
text-decoration: none;
|
336 |
+
}
|
337 |
+
|
338 |
+
.sfsiplus_specify_counts .social_icon_like img {
|
339 |
+
width: 54px;
|
340 |
+
}
|
341 |
+
|
342 |
+
.sfsiplus_specify_counts .listing {
|
343 |
+
width: 88%;
|
344 |
+
margin-top: -5px;
|
345 |
+
display: inherit;
|
346 |
+
float: left;
|
347 |
+
}
|
348 |
+
|
349 |
+
.sfsiplus_specify_counts .listing ul {
|
350 |
+
margin: 0;
|
351 |
+
padding: 0;
|
352 |
+
list-style: none;
|
353 |
+
text-align: left;
|
354 |
+
}
|
355 |
+
|
356 |
+
.sfsiplus_specify_counts .listing li {
|
357 |
+
margin: 15px 0 0;
|
358 |
+
padding: 0;
|
359 |
+
list-style: none;
|
360 |
+
clear: both;
|
361 |
+
line-height: 39px;
|
362 |
+
font-size: 17px;
|
363 |
+
}
|
364 |
+
|
365 |
+
.sfsiplus_specify_counts .listing li span {
|
366 |
+
float: left;
|
367 |
+
margin-right: 20px;
|
368 |
+
}
|
369 |
+
|
370 |
+
.sfsiplus_specify_counts .listing li .input {
|
371 |
+
background: #e5e5e5;
|
372 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
373 |
+
border: 0;
|
374 |
+
padding: 10px;
|
375 |
+
margin-left: 25px;
|
376 |
+
}
|
377 |
+
|
378 |
+
.sfsiplus_specify_counts .listing li .input_facebook {
|
379 |
+
width: 288px;
|
380 |
+
background: #e5e5e5;
|
381 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
382 |
+
border: 0;
|
383 |
+
padding: 10px;
|
384 |
+
margin-left: 16px;
|
385 |
+
}
|
386 |
+
|
387 |
+
.save_button {
|
388 |
+
width: 450px;
|
389 |
+
padding-top: 30px !important;
|
390 |
+
clear: both;
|
391 |
+
margin: auto;
|
392 |
+
}
|
393 |
+
|
394 |
+
.save_button a {
|
395 |
+
background: #12a252;
|
396 |
+
text-align: center;
|
397 |
+
font-size: 23px;
|
398 |
+
color: #FFF !important;
|
399 |
+
display: block;
|
400 |
+
padding: 11px 0;
|
401 |
+
text-decoration: none;
|
402 |
+
}
|
403 |
+
|
404 |
+
.save_button a:hover {
|
405 |
+
background: #079345
|
406 |
+
}
|
407 |
+
|
408 |
+
.tab5 ul.plus_share_icon_order {
|
409 |
+
margin: 0;
|
410 |
+
padding: 0;
|
411 |
+
list-style: none;
|
412 |
+
text-align: left;
|
413 |
+
}
|
414 |
+
|
415 |
+
.tab5 ul.plus_share_icon_order li {
|
416 |
+
margin: 22px 6px 0 0;
|
417 |
+
padding: 0;
|
418 |
+
list-style: none;
|
419 |
+
float: left;
|
420 |
+
line-height: 37px;
|
421 |
+
}
|
422 |
+
|
423 |
+
.tab5 ul.plus_share_icon_order li:last-child {
|
424 |
+
margin: 22px 0 0 3px;
|
425 |
+
}
|
426 |
+
|
427 |
+
.tab5 .row {
|
428 |
+
border-top: 1px solid #eaebee;
|
429 |
+
margin-top: 25px;
|
430 |
+
padding-top: 15px;
|
431 |
+
clear: both;
|
432 |
+
display: block;
|
433 |
+
width: 100%;
|
434 |
+
float: left;
|
435 |
+
font-family: helveticaregular;
|
436 |
+
line-height: 42px;
|
437 |
+
}
|
438 |
+
|
439 |
+
.tab5 .icons_size {
|
440 |
+
position: relative;
|
441 |
+
}
|
442 |
+
|
443 |
+
.tab5 .icons_size span {
|
444 |
+
margin-right: 18px;
|
445 |
+
display: block;
|
446 |
+
float: left;
|
447 |
+
font-size: 18px;
|
448 |
+
font-weight: 400;
|
449 |
+
line-height: 46px;
|
450 |
+
}
|
451 |
+
|
452 |
+
.tab5 .icons_size span.last {
|
453 |
+
margin-left: 55px;
|
454 |
+
}
|
455 |
+
|
456 |
+
.tab5 .icons_size input {
|
457 |
+
width: 73px;
|
458 |
+
background: #e5e5e5;
|
459 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
460 |
+
border: 0;
|
461 |
+
padding: 13px 13px 12px;
|
462 |
+
margin-right: 18px;
|
463 |
+
float: left;
|
464 |
+
display: block;
|
465 |
+
}
|
466 |
+
|
467 |
+
.tab5 .icons_size select.styled {
|
468 |
+
position: absolute;
|
469 |
+
left: 0;
|
470 |
+
width: 135px;
|
471 |
+
height: 46px;
|
472 |
+
line-height: 46px;
|
473 |
+
}
|
474 |
+
|
475 |
+
.tab5 .icons_size .field {
|
476 |
+
position: relative;
|
477 |
+
float: left;
|
478 |
+
display: block;
|
479 |
+
margin-right: 20px;
|
480 |
+
}
|
481 |
+
|
482 |
+
.tab5 .icons_size ins {
|
483 |
+
margin-right: 25px;
|
484 |
+
float: left;
|
485 |
+
font-size: 17px;
|
486 |
+
font-weight: 400;
|
487 |
+
text-decoration: none;
|
488 |
+
}
|
489 |
+
|
490 |
+
.tab5 .icons_size ins.leave_empty {
|
491 |
+
line-height: 23px;
|
492 |
+
}
|
493 |
+
|
494 |
+
.tab5 .icons_size {
|
495 |
+
padding-top: 15px;
|
496 |
+
}
|
497 |
+
|
498 |
+
.tab5 ul.enough_waffling {
|
499 |
+
margin: -5px 0 0;
|
500 |
+
padding: 0;
|
501 |
+
list-style: none;
|
502 |
+
text-align: center;
|
503 |
+
}
|
504 |
+
|
505 |
+
.tab5 .new_wind .sfsiplus_row_onl ul.enough_waffling {
|
506 |
+
margin: 20px 0 0 0;
|
507 |
+
padding: 0;
|
508 |
+
list-style: none;
|
509 |
+
height: 38px;
|
510 |
+
text-align: left;
|
511 |
+
}
|
512 |
+
|
513 |
+
.tab5 ul.enough_waffling li {
|
514 |
+
margin: 0 22px;
|
515 |
+
padding: 0;
|
516 |
+
list-style: none;
|
517 |
+
display: inline-block;
|
518 |
+
}
|
519 |
+
|
520 |
+
.tab5 ul.enough_waffling li span {
|
521 |
+
float: left;
|
522 |
+
}
|
523 |
+
|
524 |
+
.tab5 ul.enough_waffling li label {
|
525 |
+
margin: 0 0 0 20px;
|
526 |
+
float: left;
|
527 |
+
font-family: helveticaregular;
|
528 |
+
font-size: 18px;
|
529 |
+
font-weight: 400;
|
530 |
+
text-align: center;
|
531 |
+
line-height: 38px;
|
532 |
+
color: #5a6570;
|
533 |
+
}
|
534 |
+
|
535 |
+
.sticking p {
|
536 |
+
float: left;
|
537 |
+
font-size: 18px !important;
|
538 |
+
}
|
539 |
+
|
540 |
+
.sticking p.list {
|
541 |
+
width: 168px;
|
542 |
+
}
|
543 |
+
|
544 |
+
.sticking p.link {
|
545 |
+
margin: 3px 0 0 12px;
|
546 |
+
padding: 0 !important;
|
547 |
+
float: left;
|
548 |
+
}
|
549 |
+
|
550 |
+
.sticking .float {
|
551 |
+
margin-left: 188px;
|
552 |
+
margin-top: 3px;
|
553 |
+
float: left;
|
554 |
+
font-size: 17px;
|
555 |
+
}
|
556 |
+
|
557 |
+
.sticking ul {
|
558 |
+
margin: 0;
|
559 |
+
padding: 30px 0 0;
|
560 |
+
list-style: none;
|
561 |
+
float: left;
|
562 |
+
}
|
563 |
+
|
564 |
+
.sticking a {
|
565 |
+
color: #a4a9ad;
|
566 |
+
text-decoration: none;
|
567 |
+
}
|
568 |
+
|
569 |
+
.sticking .field {
|
570 |
+
position: relative;
|
571 |
+
float: left;
|
572 |
+
display: block;
|
573 |
+
margin-left: 20px;
|
574 |
+
}
|
575 |
+
|
576 |
+
.sticking .field .select {
|
577 |
+
width: 206px;
|
578 |
+
height: 47px;
|
579 |
+
background: url(../images/select_bg1.jpg) no-repeat;
|
580 |
+
display: block;
|
581 |
+
padding-left: 10px;
|
582 |
+
}
|
583 |
+
|
584 |
+
.sticking .field select.styled {
|
585 |
+
position: absolute;
|
586 |
+
left: 0;
|
587 |
+
top: 0;
|
588 |
+
width: 211px;
|
589 |
+
line-height: 46px;
|
590 |
+
height: 46px;
|
591 |
+
}
|
592 |
+
|
593 |
+
.mouseover_field {
|
594 |
+
width: 455px;
|
595 |
+
float: left;
|
596 |
+
font-size: 18px;
|
597 |
+
margin-top: 10px;
|
598 |
+
}
|
599 |
+
|
600 |
+
.mouseover_field label {
|
601 |
+
width: 125px;
|
602 |
+
float: left;
|
603 |
+
}
|
604 |
+
|
605 |
+
.mouseover_field input {
|
606 |
+
width: 256px;
|
607 |
+
float: left;
|
608 |
+
background: #e5e5e5;
|
609 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
610 |
+
border: 0;
|
611 |
+
padding: 10px;
|
612 |
+
}
|
613 |
+
|
614 |
+
.tab6 .social_icon_like1 {
|
615 |
+
width: 100%;
|
616 |
+
float: left;
|
617 |
+
margin: 0;
|
618 |
+
padding: 35px 0 0;
|
619 |
+
text-align: center;
|
620 |
+
}
|
621 |
+
|
622 |
+
.tab6 .social_icon_like1 ul {
|
623 |
+
margin: 0;
|
624 |
+
padding: 0;
|
625 |
+
list-style: none;
|
626 |
+
text-align: center;
|
627 |
+
}
|
628 |
+
|
629 |
+
.tab6 .social_icon_like1 li {
|
630 |
+
margin: 0 20px;
|
631 |
+
padding: 0;
|
632 |
+
width: auto;
|
633 |
+
list-style: none;
|
634 |
+
display: inline-block;
|
635 |
+
}
|
636 |
+
|
637 |
+
.tab6 .social_icon_like1 li span,
|
638 |
+
.tab8 .social_icon_like1 li span {
|
639 |
+
margin: 0;
|
640 |
+
width: 44px;
|
641 |
+
display: block;
|
642 |
+
background: url(../images/count_bg1.png) no-repeat;
|
643 |
+
height: 22px;
|
644 |
+
overflow: hidden;
|
645 |
+
padding: 2px 2px 2px 10px;
|
646 |
+
font-family: helveticaregular;
|
647 |
+
font-size: 15px;
|
648 |
+
text-align: center;
|
649 |
+
line-height: 20px;
|
650 |
+
color: #5a6570;
|
651 |
+
float: left;
|
652 |
+
}
|
653 |
+
|
654 |
+
.tab6 .social_icon_like1 li img {
|
655 |
+
float: left;
|
656 |
+
margin-right: 5px;
|
657 |
+
display: block;
|
658 |
+
}
|
659 |
+
|
660 |
+
.tab6 .social_icon_like1 li a {
|
661 |
+
color: #5a6570;
|
662 |
+
text-decoration: none;
|
663 |
+
display: block;
|
664 |
+
}
|
665 |
+
|
666 |
+
.tab6 ul.usually {
|
667 |
+
margin: 28px 0 6px 60px;
|
668 |
+
padding: 0;
|
669 |
+
list-style: none;
|
670 |
+
}
|
671 |
+
|
672 |
+
.tab6 ul.usually li {
|
673 |
+
margin: 0;
|
674 |
+
padding: 0;
|
675 |
+
width: auto;
|
676 |
+
list-style: none;
|
677 |
+
text-align: left;
|
678 |
+
font-size: 17px;
|
679 |
+
}
|
680 |
+
|
681 |
+
.tab6 ul.enough_waffling {
|
682 |
+
margin: 25px 0 0;
|
683 |
+
padding: 0;
|
684 |
+
list-style: none;
|
685 |
+
text-align: center;
|
686 |
+
}
|
687 |
+
|
688 |
+
.tab6 ul.enough_waffling li {
|
689 |
+
margin: 0 22px;
|
690 |
+
padding: 0;
|
691 |
+
list-style: none;
|
692 |
+
display: inline-block;
|
693 |
+
}
|
694 |
+
|
695 |
+
.tab6 ul.enough_waffling li span {
|
696 |
+
float: left;
|
697 |
+
}
|
698 |
+
|
699 |
+
.tab6 ul.enough_waffling li label {
|
700 |
+
margin: 0 0 0 20px;
|
701 |
+
float: left;
|
702 |
+
font-family: helveticaregular;
|
703 |
+
font-size: 18px;
|
704 |
+
font-weight: 400;
|
705 |
+
text-align: center;
|
706 |
+
line-height: 38px;
|
707 |
+
color: #5a6570;
|
708 |
+
}
|
709 |
+
|
710 |
+
.tab6 .row {
|
711 |
+
border-top: 1px solid #eaebee;
|
712 |
+
margin-top: 25px;
|
713 |
+
padding-top: 15px;
|
714 |
+
clear: both;
|
715 |
+
display: block;
|
716 |
+
width: 100%;
|
717 |
+
float: left;
|
718 |
+
font-family: helveticaregular;
|
719 |
+
line-height: 42px;
|
720 |
+
}
|
721 |
+
|
722 |
+
.tab6 .options {
|
723 |
+
margin-top: 25px;
|
724 |
+
clear: both;
|
725 |
+
width: 100%;
|
726 |
+
float: left;
|
727 |
+
}
|
728 |
+
|
729 |
+
.tab6 .options label {
|
730 |
+
width: 345px;
|
731 |
+
float: left;
|
732 |
+
font-size: 18px;
|
733 |
+
font-family: helveticaregular;
|
734 |
+
color: #5a6570;
|
735 |
+
line-height: 46px;
|
736 |
+
}
|
737 |
+
|
738 |
+
.tab6 .options label.first {
|
739 |
+
font-family: helveticaregular;
|
740 |
+
font-size: 18px;
|
741 |
+
}
|
742 |
+
|
743 |
+
.tab6 .options input {
|
744 |
+
width: 308px;
|
745 |
+
float: left;
|
746 |
+
background: #e5e5e5;
|
747 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
748 |
+
border: 0;
|
749 |
+
padding: 10px;
|
750 |
+
}
|
751 |
+
|
752 |
+
.tab6 .options .field {
|
753 |
+
width: 223px;
|
754 |
+
float: left;
|
755 |
+
position: relative;
|
756 |
+
}
|
757 |
+
|
758 |
+
.tab6 .options .field .select {
|
759 |
+
width: 207px;
|
760 |
+
background: url(../images/select_bg1.jpg) no-repeat;
|
761 |
+
display: block;
|
762 |
+
padding-left: 17px;
|
763 |
+
font-family: helveticaregular;
|
764 |
+
}
|
765 |
+
|
766 |
+
.tab6 .options .field select.styled {
|
767 |
+
position: absolute;
|
768 |
+
left: 0;
|
769 |
+
top: 0;
|
770 |
+
width: 213px;
|
771 |
+
line-height: 46px;
|
772 |
+
height: 46px;
|
773 |
+
}
|
774 |
+
|
775 |
+
.tab7 h3 {
|
776 |
+
margin: 14px 0 6px;
|
777 |
+
padding: 0;
|
778 |
+
color: #a7a9ac;
|
779 |
+
font-family: helveticaregular;
|
780 |
+
font-size: 20px;
|
781 |
+
text-align: left;
|
782 |
+
}
|
783 |
+
|
784 |
+
.tab7 .close {
|
785 |
+
position: absolute;
|
786 |
+
right: 18px;
|
787 |
+
top: 18px;
|
788 |
+
}
|
789 |
+
|
790 |
+
.tab7 .text_options {
|
791 |
+
width: 400px;
|
792 |
+
float: left;
|
793 |
+
}
|
794 |
+
|
795 |
+
.tab7 .text_options.layout {
|
796 |
+
margin-left: 35px;
|
797 |
+
}
|
798 |
+
|
799 |
+
.tab7 .sfsiplus_row_tab {
|
800 |
+
margin-top: 10px;
|
801 |
+
width: 100%;
|
802 |
+
float: left;
|
803 |
+
}
|
804 |
+
|
805 |
+
.tab7 .text_options label {
|
806 |
+
width: 121px;
|
807 |
+
float: left;
|
808 |
+
line-height: 46px;
|
809 |
+
font-size: 18px;
|
810 |
+
}
|
811 |
+
|
812 |
+
.tab7 .text_options.layout label {
|
813 |
+
line-height: 20px;
|
814 |
+
font-size: 18px;
|
815 |
+
}
|
816 |
+
|
817 |
+
.tab7 .text_options.layout label.border {
|
818 |
+
line-height: 46px;
|
819 |
+
}
|
820 |
+
|
821 |
+
.tab7 .text_options input {
|
822 |
+
width: 274px;
|
823 |
+
float: left;
|
824 |
+
background: #e5e5e5;
|
825 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
826 |
+
border: 0;
|
827 |
+
padding: 13px 10px;
|
828 |
+
font-size: 17px;
|
829 |
+
color: #5a6570;
|
830 |
+
}
|
831 |
+
|
832 |
+
.tab7 .text_options input.small {
|
833 |
+
width: 138px;
|
834 |
+
}
|
835 |
+
|
836 |
+
.tab7 .text_options .field {
|
837 |
+
width: 223px;
|
838 |
+
float: left;
|
839 |
+
position: relative;
|
840 |
+
}
|
841 |
+
|
842 |
+
.tab7 .text_options .field .select {
|
843 |
+
width: 215px;
|
844 |
+
padding-right: 21px;
|
845 |
+
height: 47px;
|
846 |
+
background: url(../images/select_bg1.jpg) no-repeat;
|
847 |
+
display: block;
|
848 |
+
padding-left: 10px;
|
849 |
+
line-height: 46px;
|
850 |
+
font-size: 17px;
|
851 |
+
color: #414951;
|
852 |
+
}
|
853 |
+
|
854 |
+
.tab7 .text_options .field select.styled {
|
855 |
+
position: absolute;
|
856 |
+
left: 0;
|
857 |
+
top: 0;
|
858 |
+
width: 213px;
|
859 |
+
line-height: 46px;
|
860 |
+
height: 46px;
|
861 |
+
}
|
862 |
+
|
863 |
+
.tab7 .color_box {
|
864 |
+
width: 40px;
|
865 |
+
height: 34px;
|
866 |
+
border: 3px solid #fff;
|
867 |
+
box-shadow: 1px 2px 2px #ccc;
|
868 |
+
float: left;
|
869 |
+
position: relative;
|
870 |
+
margin-left: 13px;
|
871 |
+
}
|
872 |
+
|
873 |
+
.tab7 .color_box1 {
|
874 |
+
width: 100%;
|
875 |
+
height: 34px;
|
876 |
+
background: #5a6570;
|
877 |
+
box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
|
878 |
+
}
|
879 |
+
|
880 |
+
.tab7 .corner {
|
881 |
+
width: 10px;
|
882 |
+
height: 10px;
|
883 |
+
background: #fff;
|
884 |
+
position: absolute;
|
885 |
+
right: 0;
|
886 |
+
bottom: 0;
|
887 |
+
}
|
888 |
+
|
889 |
+
.tab7 ul.border_shadow {
|
890 |
+
margin: 0;
|
891 |
+
padding: 5px 0 0;
|
892 |
+
list-style: none;
|
893 |
+
float: left;
|
894 |
+
width: 257px;
|
895 |
+
}
|
896 |
+
|
897 |
+
.tab7 ul.border_shadow li {
|
898 |
+
margin: 0;
|
899 |
+
padding: 0 0 0 40px;
|
900 |
+
list-style: none;
|
901 |
+
float: left;
|
902 |
+
}
|
903 |
+
|
904 |
+
.tab7 ul.border_shadow li:first-child {
|
905 |
+
padding: 0;
|
906 |
+
}
|
907 |
+
|
908 |
+
.tab7 ul.border_shadow li span {
|
909 |
+
float: left;
|
910 |
+
}
|
911 |
+
|
912 |
+
.tab7 ul.border_shadow li label {
|
913 |
+
float: left;
|
914 |
+
width: auto;
|
915 |
+
font-family: helveticaregular;
|
916 |
+
font-size: 18px;
|
917 |
+
font-weight: 400;
|
918 |
+
text-align: center;
|
919 |
+
line-height: 40px !important;
|
920 |
+
color: #5a6570;
|
921 |
+
padding: 0 0 0 20px;
|
922 |
+
}
|
923 |
+
|
924 |
+
.tab7 .row {
|
925 |
+
border-top: 1px solid #eaebee;
|
926 |
+
margin-top: 25px;
|
927 |
+
padding-top: 15px;
|
928 |
+
clear: both;
|
929 |
+
display: block;
|
930 |
+
width: 100%;
|
931 |
+
float: left;
|
932 |
+
font-family: helveticaregular;
|
933 |
+
line-height: 42px;
|
934 |
+
}
|
935 |
+
|
936 |
+
.tab7 .pop_up_show {
|
937 |
+
width: 100%;
|
938 |
+
float: left;
|
939 |
+
margin-top: 20px;
|
940 |
+
}
|
941 |
+
|
942 |
+
.tab7 .pop_up_show span {
|
943 |
+
float: left;
|
944 |
+
}
|
945 |
+
|
946 |
+
.tab7 .pop_up_show label {
|
947 |
+
float: left;
|
948 |
+
width: auto;
|
949 |
+
font-size: 18px;
|
950 |
+
font-weight: 400;
|
951 |
+
text-align: center;
|
952 |
+
line-height: 38px !important;
|
953 |
+
color: #5a6570;
|
954 |
+
padding: 0 0 0 20px;
|
955 |
+
}
|
956 |
+
|
957 |
+
.tab7 .pop_up_show input.add {
|
958 |
+
width: 257px;
|
959 |
+
float: left;
|
960 |
+
background: #e5e5e5;
|
961 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
962 |
+
border: 0;
|
963 |
+
padding: 10px;
|
964 |
+
margin-left: 40px;
|
965 |
+
}
|
966 |
+
|
967 |
+
.tab7 .pop_up_show input.seconds {
|
968 |
+
width: 60px;
|
969 |
+
background: #e5e5e5;
|
970 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
971 |
+
border: 0;
|
972 |
+
padding: 10px;
|
973 |
+
margin: 0 7px;
|
974 |
+
}
|
975 |
+
|
976 |
+
.tab7 .pop_up_show a {
|
977 |
+
text-decoration: underline;
|
978 |
+
color: #a4a9ad;
|
979 |
+
font-size: 16px;
|
980 |
+
margin-left: 20px;
|
981 |
+
}
|
982 |
+
|
983 |
+
.tab7 .pop_up_show .field {
|
984 |
+
width: 135px;
|
985 |
+
float: left;
|
986 |
+
position: relative;
|
987 |
+
margin-left: 20px;
|
988 |
+
font-size: 17px;
|
989 |
+
font-family: helveticaregular;
|
990 |
+
}
|
991 |
+
|
992 |
+
.tab7 .pop_up_show .field .select {
|
993 |
+
width: 127px;
|
994 |
+
height: 48px;
|
995 |
+
background: url(../images/select_bg.jpg) no-repeat;
|
996 |
+
display: block;
|
997 |
+
padding-left: 10px;
|
998 |
+
line-height: 46px;
|
999 |
+
font-size: 16px;
|
1000 |
+
color: #5a6570;
|
1001 |
+
}
|
1002 |
+
|
1003 |
+
.tab7 .pop_up_show .field select.styled {
|
1004 |
+
position: absolute;
|
1005 |
+
left: 0;
|
1006 |
+
top: 0;
|
1007 |
+
width: 135px;
|
1008 |
+
line-height: 46px;
|
1009 |
+
height: 46px;
|
1010 |
+
}
|
1011 |
+
|
1012 |
+
.pop_up_box {
|
1013 |
+
width: 474px;
|
1014 |
+
background: #FFF;
|
1015 |
+
box-shadow: 0 0 5px 3px #d8d8d8;
|
1016 |
+
margin: 200px auto;
|
1017 |
+
padding: 20px 25px 0;
|
1018 |
+
font-family: helveticaregular;
|
1019 |
+
color: #5a6570;
|
1020 |
+
min-height: 250px;
|
1021 |
+
position: relative;
|
1022 |
+
}
|
1023 |
+
|
1024 |
+
.pop_up_box h4,
|
1025 |
+
.pop_up_box_ex h4 {
|
1026 |
+
font-size: 20px;
|
1027 |
+
color: #5a6570;
|
1028 |
+
text-align: center;
|
1029 |
+
margin: 0;
|
1030 |
+
padding: 0;
|
1031 |
+
line-height: 22px;
|
1032 |
+
}
|
1033 |
+
|
1034 |
+
.pop_up_box p,
|
1035 |
+
.pop_up_box_ex p {
|
1036 |
+
font-size: 17px;
|
1037 |
+
line-height: 28px;
|
1038 |
+
color: #5a6570;
|
1039 |
+
text-align: left;
|
1040 |
+
margin: 0;
|
1041 |
+
padding: 25px 0 0;
|
1042 |
+
font-family: helveticaregular;
|
1043 |
+
}
|
1044 |
+
|
1045 |
+
.sfsi_popupcntnr {
|
1046 |
+
float: left;
|
1047 |
+
width: 100%
|
1048 |
+
}
|
1049 |
+
|
1050 |
+
.sfsi_popupcntnr>h3 {
|
1051 |
+
color: #000;
|
1052 |
+
float: left;
|
1053 |
+
font-weight: 700;
|
1054 |
+
margin-bottom: 5px;
|
1055 |
+
width: 100%
|
1056 |
+
}
|
1057 |
+
|
1058 |
+
ul.flwstep {
|
1059 |
+
float: left;
|
1060 |
+
width: 100%
|
1061 |
+
}
|
1062 |
+
|
1063 |
+
ul.flwstep>li {
|
1064 |
+
color: #000;
|
1065 |
+
font-size: 16px;
|
1066 |
+
margin: 5px;
|
1067 |
+
}
|
1068 |
+
|
1069 |
+
.upldbtn {
|
1070 |
+
float: left;
|
1071 |
+
text-align: center;
|
1072 |
+
width: 100%
|
1073 |
+
}
|
1074 |
+
|
1075 |
+
.upload_butt {
|
1076 |
+
background-color: #12a252;
|
1077 |
+
border: none;
|
1078 |
+
color: #fff;
|
1079 |
+
font-weight: 700;
|
1080 |
+
margin-top: 10px;
|
1081 |
+
padding: 5px 27px;
|
1082 |
+
width: auto;
|
1083 |
+
cursor: pointer;
|
1084 |
+
font-size: 15px !important;
|
1085 |
+
|
1086 |
+
}
|
1087 |
+
|
1088 |
+
@media (min-width: 295px) and (max-width: 558px) {
|
1089 |
+
.sfsi_premium_wechat_follow_overlay .upload_butt {
|
1090 |
+
padding: 5px;
|
1091 |
+
}
|
1092 |
+
}
|
1093 |
+
|
1094 |
+
@media (max-width: 295px) {
|
1095 |
+
.sfsi_premium_upload_butt_container {
|
1096 |
+
width: 100% !important;
|
1097 |
+
padding-bottom: 5px !important;
|
1098 |
+
}
|
1099 |
+
}
|
1100 |
+
|
1101 |
+
.pop_up_box .button {
|
1102 |
+
background: #12a252;
|
1103 |
+
font-size: 22px;
|
1104 |
+
line-height: 24px;
|
1105 |
+
color: #5a6570;
|
1106 |
+
text-align: center;
|
1107 |
+
min-height: 80px;
|
1108 |
+
margin-top: 32px;
|
1109 |
+
box-shadow: none;
|
1110 |
+
word-wrap: break-word;
|
1111 |
+
white-space: normal;
|
1112 |
+
}
|
1113 |
+
|
1114 |
+
.pop_up_box .button:hover {
|
1115 |
+
box-shadow: none !important;
|
1116 |
+
}
|
1117 |
+
|
1118 |
+
.pop_up_box .button a.activate {
|
1119 |
+
padding: 0px 0;
|
1120 |
+
}
|
1121 |
+
|
1122 |
+
.pop_up_box a,
|
1123 |
+
.pop_up_box_ex a {
|
1124 |
+
color: #a4a9ad;
|
1125 |
+
font-size: 20px;
|
1126 |
+
text-decoration: none;
|
1127 |
+
text-align: center;
|
1128 |
+
display: inline-block;
|
1129 |
+
margin-top: 20px;
|
1130 |
+
width: 100%;
|
1131 |
+
}
|
1132 |
+
|
1133 |
+
.pop_up_box .upload {
|
1134 |
+
width: 100%;
|
1135 |
+
float: left;
|
1136 |
+
text-align: left;
|
1137 |
+
margin-top: 15px;
|
1138 |
+
height: 46px;
|
1139 |
+
}
|
1140 |
+
|
1141 |
+
.pop_up_box .upload label {
|
1142 |
+
width: 135px;
|
1143 |
+
float: left;
|
1144 |
+
line-height: 45px;
|
1145 |
+
font-size: 18px;
|
1146 |
+
font-family: helveticaregular;
|
1147 |
+
text-align: left;
|
1148 |
+
}
|
1149 |
+
|
1150 |
+
.pop_up_box .upload input[type=text] {
|
1151 |
+
width: 248px;
|
1152 |
+
float: left;
|
1153 |
+
background: #e5e5e5;
|
1154 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
1155 |
+
border: 0;
|
1156 |
+
padding: 0 10px;
|
1157 |
+
font-size: 16px;
|
1158 |
+
height: 44px;
|
1159 |
+
text-align: left;
|
1160 |
+
color: #5a6570;
|
1161 |
+
font-family: helveticaregular;
|
1162 |
+
}
|
1163 |
+
|
1164 |
+
.pop_up_box .upload input.upload_butt {
|
1165 |
+
width: 100px;
|
1166 |
+
background: #12a252;
|
1167 |
+
box-shadow: 0 0 0;
|
1168 |
+
border: 0;
|
1169 |
+
text-align: center;
|
1170 |
+
font-size: 18px;
|
1171 |
+
color: #fff;
|
1172 |
+
font-family: helveticaregular;
|
1173 |
+
height: 45px;
|
1174 |
+
right: 32px;
|
1175 |
+
top: 71px;
|
1176 |
+
position: absolute;
|
1177 |
+
}
|
1178 |
+
|
1179 |
+
.pop_up_box .upload a {
|
1180 |
+
color: #12a252;
|
1181 |
+
font-size: 18px;
|
1182 |
+
text-decoration: underline;
|
1183 |
+
font-family: helveticaregular;
|
1184 |
+
margin: 0 0 16px 140px;
|
1185 |
+
}
|
1186 |
+
|
1187 |
+
.pop_up_box a:hover,
|
1188 |
+
.pop_up_box_ex a:hover {
|
1189 |
+
color: #a4a9ad;
|
1190 |
+
}
|
1191 |
+
|
1192 |
+
.tab1 ul.plus_icn_listing {
|
1193 |
+
list-style: none;
|
1194 |
+
overflow: hidden;
|
1195 |
+
border-top: #e7e8eb solid 1px;
|
1196 |
+
margin: 35px 0 0;
|
1197 |
+
}
|
1198 |
+
|
1199 |
+
.tab1 ul.plus_icn_listing li {
|
1200 |
+
border-bottom: #eaebed solid 1px;
|
1201 |
+
padding: 11px 0 11px 8px;
|
1202 |
+
float: left;
|
1203 |
+
width: 100%
|
1204 |
+
}
|
1205 |
+
|
1206 |
+
ul.plus_icn_listing li .tb_4_ck {
|
1207 |
+
float: left;
|
1208 |
+
margin: 10px 0 0;
|
1209 |
+
}
|
1210 |
+
|
1211 |
+
.upload_pop_up .upload_butt {
|
1212 |
+
line-height: 27px;
|
1213 |
+
margin-left: 6px
|
1214 |
+
}
|
1215 |
+
|
1216 |
+
ul.sfsiplus_icn_listing8 li .tb_4_ck {
|
1217 |
+
float: left;
|
1218 |
+
margin: 10px 0 0;
|
1219 |
+
}
|
1220 |
+
|
1221 |
+
.tab8 .cstmdsplyulwpr .radio_section.tb_4_ck {
|
1222 |
+
margin-right: 10px !important;
|
1223 |
+
}
|
1224 |
+
|
1225 |
+
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplsub {
|
1226 |
+
margin-top: 3px;
|
1227 |
+
}
|
1228 |
+
|
1229 |
+
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdspllke {
|
1230 |
+
margin-top: 3px;
|
1231 |
+
}
|
1232 |
+
|
1233 |
+
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplggpls {
|
1234 |
+
margin-top: 3px;
|
1235 |
+
}
|
1236 |
+
|
1237 |
+
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdspltwtr {
|
1238 |
+
margin-top: 4px;
|
1239 |
+
}
|
1240 |
+
|
1241 |
+
.tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplshr {
|
1242 |
+
margin-top: 3px;
|
1243 |
+
}
|
1244 |
+
|
1245 |
+
.tab2 {
|
1246 |
+
overflow: hidden;
|
1247 |
+
}
|
1248 |
+
|
1249 |
+
.tab2 .rss_url_row {
|
1250 |
+
width: 100%;
|
1251 |
+
float: left;
|
1252 |
+
margin: 0 0 10px;
|
1253 |
+
}
|
1254 |
+
|
1255 |
+
.tab2 .rss_url_row h4 {
|
1256 |
+
float: left;
|
1257 |
+
line-height: 43px !important;
|
1258 |
+
}
|
1259 |
+
|
1260 |
+
.tab2 .inr_cont input.add,
|
1261 |
+
.tab2 .inr_cont textarea.add_txt,
|
1262 |
+
.tab2 .rss_url_row input.add {
|
1263 |
+
width: 363px;
|
1264 |
+
float: left;
|
1265 |
+
background: #e5e5e5;
|
1266 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
1267 |
+
border: 0;
|
1268 |
+
padding: 12px 10px 11px;
|
1269 |
+
margin-left: 227px;
|
1270 |
+
margin-top: -38px;
|
1271 |
+
}
|
1272 |
+
|
1273 |
+
.tab2 .rss_url_row input.add {
|
1274 |
+
margin-left: 10px;
|
1275 |
+
margin-top: 0;
|
1276 |
+
}
|
1277 |
+
|
1278 |
+
.tab2 .inr_cont input.add1,
|
1279 |
+
.tab2 .rss_url_row input.add1 {
|
1280 |
+
width: 363px;
|
1281 |
+
float: left;
|
1282 |
+
background: #e5e5e5;
|
1283 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
1284 |
+
border: 0;
|
1285 |
+
padding: 12px 10px 11px;
|
1286 |
+
margin-left: 284px;
|
1287 |
+
margin-top: -34px;
|
1288 |
+
}
|
1289 |
+
|
1290 |
+
.tab2 .rss_url_row a.rit_link {
|
1291 |
+
float: left;
|
1292 |
+
margin: 10px 0 0 16px;
|
1293 |
+
font-size: 17px;
|
1294 |
+
}
|
1295 |
+
|
1296 |
+
.tab2 .row {
|
1297 |
+
float: left;
|
1298 |
+
border-top: 2px solid #f2f3f4;
|
1299 |
+
clear: both;
|
1300 |
+
padding: 0 0 15px;
|
1301 |
+
width: 100%
|
1302 |
+
}
|
1303 |
+
|
1304 |
+
.tab2 .row .tab_2_email_sec {
|
1305 |
+
list-style: none;
|
1306 |
+
margin: 17px 0 0;
|
1307 |
+
overflow: hidden;
|
1308 |
+
}
|
1309 |
+
|
1310 |
+
.row ul.tab_2_email_sec li {
|
1311 |
+
float: left;
|
1312 |
+
margin-right: 10px;
|
1313 |
+
width: 32%;
|
1314 |
+
}
|
1315 |
+
|
1316 |
+
.sfsiplusicnsdvwrp {
|
1317 |
+
width: 110px;
|
1318 |
+
float: left;
|
1319 |
+
}
|
1320 |
+
|
1321 |
+
.row ul.tab_2_email_sec:first-child {
|
1322 |
+
margin-right: 2%
|
1323 |
+
}
|
1324 |
+
|
1325 |
+
.inr_cont .fb_url {
|
1326 |
+
clear: both;
|
1327 |
+
}
|
1328 |
+
|
1329 |
+
.inr_cont .fb_url .checkbox,
|
1330 |
+
.inr_cont .fb_url input.add,
|
1331 |
+
.inr_cont .fb_url label,
|
1332 |
+
.inr_cont .fb_url lable {
|
1333 |
+
float: left;
|
1334 |
+
}
|
1335 |
+
|
1336 |
+
.inr_cont .fb_url input.add {
|
1337 |
+
margin-left: 19px;
|
1338 |
+
margin-top: 0;
|
1339 |
+
}
|
1340 |
+
|
1341 |
+
.inr_cont .fb_url .checkbox {
|
1342 |
+
margin: 6px 0 0;
|
1343 |
+
}
|
1344 |
+
|
1345 |
+
.inr_cont .fb_url label {
|
1346 |
+
line-height: 41px;
|
1347 |
+
margin: 0 0 0 15px;
|
1348 |
+
font-size: 18px;
|
1349 |
+
}
|
1350 |
+
|
1351 |
+
.inr_cont textarea.add_txt {
|
1352 |
+
resize: none;
|
1353 |
+
margin: 0 0 0 19px !important;
|
1354 |
+
height: 60px;
|
1355 |
+
}
|
1356 |
+
|
1357 |
+
.tab2 .inr_cont textarea.add_txt {
|
1358 |
+
width: 382px !important;
|
1359 |
+
height: 90px;
|
1360 |
+
overflow: hidden;
|
1361 |
+
}
|
1362 |
+
|
1363 |
+
.tab2 .inr_cont input.add {
|
1364 |
+
width: 417px;
|
1365 |
+
}
|
1366 |
+
|
1367 |
+
.red_txt,
|
1368 |
+
.tab2 .red_txt {
|
1369 |
+
color: #ef4745 !important;
|
1370 |
+
text-align: center !important;
|
1371 |
+
padding-top: 5px !important;
|
1372 |
+
}
|
1373 |
+
|
1374 |
+
.green_txt {
|
1375 |
+
color: #12A252 !important;
|
1376 |
+
text-align: center !important;
|
1377 |
+
padding-top: 5px !important;
|
1378 |
+
}
|
1379 |
+
|
1380 |
+
.red_txt {
|
1381 |
+
color: #f80000 !important;
|
1382 |
+
text-align: center !important;
|
1383 |
+
padding-top: 5px !important;
|
1384 |
+
}
|
1385 |
+
|
1386 |
+
.linked_tab_2 .fb_url label {
|
1387 |
+
width: 32%
|
1388 |
+
}
|
1389 |
+
|
1390 |
+
.twt_tab_2 label {
|
1391 |
+
width: 18%
|
1392 |
+
}
|
1393 |
+
|
1394 |
+
.bdr_top {
|
1395 |
+
border-top: none !important;
|
1396 |
+
}
|
1397 |
+
|
1398 |
+
.linked_tab_2 .fb_url input.link_dbl {
|
1399 |
+
margin-bottom: 6px;
|
1400 |
+
}
|
1401 |
+
|
1402 |
+
.tab3 {
|
1403 |
+
overflow: hidden;
|
1404 |
+
}
|
1405 |
+
|
1406 |
+
.tab3 .row {
|
1407 |
+
padding: 15px 0;
|
1408 |
+
clear: both;
|
1409 |
+
overflow: hidden;
|
1410 |
+
}
|
1411 |
+
|
1412 |
+
.tab3 .row.sfsiplusmousetxt {
|
1413 |
+
border: medium none;
|
1414 |
+
}
|
1415 |
+
|
1416 |
+
.tab3 ul.tab_3_list {
|
1417 |
+
overflow: hidden;
|
1418 |
+
margin: 4px 0 11px;
|
1419 |
+
}
|
1420 |
+
|
1421 |
+
.tab8 .sfsiplus_toglepstpgspn {
|
1422 |
+
font-weight: bold;
|
1423 |
+
}
|
1424 |
+
|
1425 |
+
ul.tab_3_list li {
|
1426 |
+
background: url(../images/tab_3_list_bg.jpg) 13px 7px no-repeat;
|
1427 |
+
padding: 0 0 0 30px;
|
1428 |
+
color: #778088;
|
1429 |
+
font-family: helveticaregular;
|
1430 |
+
font-size: 17px;
|
1431 |
+
margin-bottom: 4px;
|
1432 |
+
}
|
1433 |
+
|
1434 |
+
.tab5 ul.tab_3_list li {
|
1435 |
+
background: url(../images/tab_3_list_bg.jpg) 13px 18px no-repeat;
|
1436 |
+
}
|
1437 |
+
|
1438 |
+
.tab3 .row h3 {
|
1439 |
+
margin: 0 0 20px;
|
1440 |
+
color: #414951;
|
1441 |
+
font-family: helveticabold;
|
1442 |
+
font-size: 20px;
|
1443 |
+
}
|
1444 |
+
|
1445 |
+
ul.sfsiplus_tab_3_icns {
|
1446 |
+
list-style: none;
|
1447 |
+
margin: 34px 0 0;
|
1448 |
+
overflow: hidden;
|
1449 |
+
}
|
1450 |
+
|
1451 |
+
ul.sfsiplus_tab_3_icns li {
|
1452 |
+
width: 100%;
|
1453 |
+
margin: 0 0 21px;
|
1454 |
+
float: left;
|
1455 |
+
}
|
1456 |
+
|
1457 |
+
ul.sfsiplus_tab_3_icns label {
|
1458 |
+
float: left;
|
1459 |
+
line-height: 42px;
|
1460 |
+
color: #69737C;
|
1461 |
+
font-size: 18px;
|
1462 |
+
font-family: helveticaregular;
|
1463 |
+
min-width: 120px;
|
1464 |
+
}
|
1465 |
+
|
1466 |
+
ul.sfsiplus_tab_3_icns li .sfsiplus_icns_tab_3,
|
1467 |
+
ul.sfsiplus_tab_3_icns li .radio {
|
1468 |
+
float: left;
|
1469 |
+
}
|
1470 |
+
|
1471 |
+
.tab3 .sub_row {
|
1472 |
+
float: left;
|
1473 |
+
margin: 35px 0 0 4%;
|
1474 |
+
width: 90%
|
1475 |
+
}
|
1476 |
+
|
1477 |
+
.tab3 .sub_row h4 {
|
1478 |
+
color: #a4a9ad !important;
|
1479 |
+
}
|
1480 |
+
|
1481 |
+
.tab3 .sub_row p {
|
1482 |
+
padding-top: 18px !important;
|
1483 |
+
clear: both;
|
1484 |
+
overflow: hidden;
|
1485 |
+
}
|
1486 |
+
|
1487 |
+
.sub_row .sub_sub_box p {
|
1488 |
+
padding-top: 18px !important;
|
1489 |
+
}
|
1490 |
+
|
1491 |
+
.tab3 .sub_row .checkbox {
|
1492 |
+
float: left;
|
1493 |
+
margin-top: 4px;
|
1494 |
+
}
|
1495 |
+
|
1496 |
+
.tab3 .sub_row .sub_sub_box {
|
1497 |
+
width: 80%;
|
1498 |
+
margin: 7px 0 15px 10%;
|
1499 |
+
float: left;
|
1500 |
+
}
|
1501 |
+
|
1502 |
+
.tab3 .sub_row input.smal_inpt {
|
1503 |
+
width: 73px;
|
1504 |
+
background: #e5e5e5;
|
1505 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
1506 |
+
border: 0;
|
1507 |
+
padding: 10px;
|
1508 |
+
float: left;
|
1509 |
+
}
|
1510 |
+
|
1511 |
+
.tab3 .sub_row .drop_lst {
|
1512 |
+
border: 1px solid #d6d6d6;
|
1513 |
+
font-size: 16px;
|
1514 |
+
color: #5a6570;
|
1515 |
+
width: 120px;
|
1516 |
+
}
|
1517 |
+
|
1518 |
+
.tab3 .first_row,
|
1519 |
+
.tab3 .first_row p,
|
1520 |
+
.tab3 .first_row p .radio,
|
1521 |
+
.tab3 .first_row p label {
|
1522 |
+
float: left;
|
1523 |
+
}
|
1524 |
+
|
1525 |
+
.tab3 .first_row {
|
1526 |
+
width: 90%;
|
1527 |
+
float: left;
|
1528 |
+
}
|
1529 |
+
|
1530 |
+
.tab3 .first_row p {
|
1531 |
+
padding: 0 !important;
|
1532 |
+
}
|
1533 |
+
|
1534 |
+
.tab3 .first_row p label {
|
1535 |
+
line-height: 44px;
|
1536 |
+
margin: 0 10px;
|
1537 |
+
}
|
1538 |
+
|
1539 |
+
.tab3 .first_row p:last-child {
|
1540 |
+
margin-left: 27%
|
1541 |
+
}
|
1542 |
+
|
1543 |
+
.tab3 .tab_1_sav {
|
1544 |
+
padding-top: 20px !important;
|
1545 |
+
margin: 10px auto 20px;
|
1546 |
+
}
|
1547 |
+
|
1548 |
+
.suc_msg {
|
1549 |
+
background: #12A252;
|
1550 |
+
color: #FFF;
|
1551 |
+
display: none;
|
1552 |
+
font-size: 23px;
|
1553 |
+
padding: 10px;
|
1554 |
+
text-align: left;
|
1555 |
+
text-decoration: none;
|
1556 |
+
}
|
1557 |
+
|
1558 |
+
.error_msg {
|
1559 |
+
background: #D22B30;
|
1560 |
+
color: #FFF;
|
1561 |
+
display: none;
|
1562 |
+
font-size: 23px;
|
1563 |
+
padding: 10px;
|
1564 |
+
text-align: left;
|
1565 |
+
text-decoration: none;
|
1566 |
+
}
|
1567 |
+
|
1568 |
+
.fileUPInput {
|
1569 |
+
cursor: pointer;
|
1570 |
+
position: relative;
|
1571 |
+
top: -43px;
|
1572 |
+
right: 0;
|
1573 |
+
z-index: 99;
|
1574 |
+
height: 42px;
|
1575 |
+
font-size: 5px;
|
1576 |
+
opacity: 0;
|
1577 |
+
-moz-opacity: 0;
|
1578 |
+
filter: alpha(opacity=0);
|
1579 |
+
width: 100%
|
1580 |
+
}
|
1581 |
+
|
1582 |
+
.inputWrapper {
|
1583 |
+
height: 20px;
|
1584 |
+
width: 50px;
|
1585 |
+
overflow: hidden;
|
1586 |
+
position: relative;
|
1587 |
+
cursor: pointer;
|
1588 |
+
}
|
1589 |
+
|
1590 |
+
.sfsiplus_custom-txt {
|
1591 |
+
background: none !important;
|
1592 |
+
padding-left: 2px !important;
|
1593 |
+
}
|
1594 |
+
|
1595 |
+
.plus_custom-img {
|
1596 |
+
float: left;
|
1597 |
+
margin-left: 20px;
|
1598 |
+
}
|
1599 |
+
|
1600 |
+
.loader-img {
|
1601 |
+
float: left;
|
1602 |
+
margin-left: -70px;
|
1603 |
+
display: none;
|
1604 |
+
}
|
1605 |
+
|
1606 |
+
.pop-overlay {
|
1607 |
+
position: fixed;
|
1608 |
+
top: 0;
|
1609 |
+
left: 0;
|
1610 |
+
width: 100%;
|
1611 |
+
height: 100%;
|
1612 |
+
background-color: #d3d3d3;
|
1613 |
+
z-index: 10;
|
1614 |
+
padding: 20px;
|
1615 |
+
display: none;
|
1616 |
+
}
|
1617 |
+
|
1618 |
+
.fb-overlay {
|
1619 |
+
position: fixed;
|
1620 |
+
top: 0;
|
1621 |
+
left: 0;
|
1622 |
+
width: 100%;
|
1623 |
+
height: 100%;
|
1624 |
+
background-color: #d3d3d3;
|
1625 |
+
z-index: -1000;
|
1626 |
+
padding: 20px;
|
1627 |
+
opacity: 0;
|
1628 |
+
display: block;
|
1629 |
+
}
|
1630 |
+
|
1631 |
+
.inputError {
|
1632 |
+
border: 1px solid #f80000 !important;
|
1633 |
+
}
|
1634 |
+
|
1635 |
+
.sfsicloseBtn {
|
1636 |
+
position: absolute;
|
1637 |
+
top: 0;
|
1638 |
+
right: 0;
|
1639 |
+
cursor: pointer;
|
1640 |
+
}
|
1641 |
+
|
1642 |
+
.sfsi_plus_tool_tip_2 .tool_tip>img,
|
1643 |
+
.tool_tip>img {
|
1644 |
+
display: inline-block;
|
1645 |
+
margin-right: 4px;
|
1646 |
+
float: left;
|
1647 |
+
}
|
1648 |
+
.top_arow {
|
1649 |
+
background: url(../images/top_aro.png) no-repeat;
|
1650 |
+
position: absolute;
|
1651 |
+
top: -29px;
|
1652 |
+
left: 38%;
|
1653 |
+
width: 33px;
|
1654 |
+
height: 29px;
|
1655 |
+
background-color: #fff;
|
1656 |
+
}
|
1657 |
+
|
1658 |
+
.sfsi_plus_tool_tip_2 .top_arow .sfsi_plus_inside,
|
1659 |
+
.top_arow .sfsi_plus_inside {
|
1660 |
+
float: left;
|
1661 |
+
}
|
1662 |
+
|
1663 |
+
.sfsi_plus_tool_tip_2 .tool_tip>img,
|
1664 |
+
.tool_tip>img {
|
1665 |
+
display: inline-block;
|
1666 |
+
margin-right: 4px;
|
1667 |
+
float: left;
|
1668 |
+
}
|
1669 |
+
|
1670 |
+
.sfsiplus_norm_row {
|
1671 |
+
float: left;
|
1672 |
+
min-width: 25px;
|
1673 |
+
}
|
1674 |
+
|
1675 |
+
.sfsiplus_norm_row a {
|
1676 |
+
border: none;
|
1677 |
+
display: inline-block;
|
1678 |
+
position: relative;
|
1679 |
+
}
|
1680 |
+
|
1681 |
+
.sfsi_plus_widget {
|
1682 |
+
min-height: 55px;
|
1683 |
+
}
|
1684 |
+
|
1685 |
+
.sfsi_plus_tool_tip_2 a {
|
1686 |
+
min-height: 0 !important;
|
1687 |
+
}
|
1688 |
+
|
1689 |
+
.sfsi_plus_widget a img {
|
1690 |
+
box-shadow: none !important;
|
1691 |
+
outline: 0;
|
1692 |
+
}
|
1693 |
+
|
1694 |
+
.sfsi_plus_wicons {
|
1695 |
+
display: inline-block;
|
1696 |
+
color: #000;
|
1697 |
+
}
|
1698 |
+
|
1699 |
+
.sel-active {
|
1700 |
+
background-color: #f7941d;
|
1701 |
+
}
|
1702 |
+
|
1703 |
+
.sfsi_plus_outr_div .close {
|
1704 |
+
position: absolute;
|
1705 |
+
right: 18px;
|
1706 |
+
top: 18px;
|
1707 |
+
}
|
1708 |
+
|
1709 |
+
.sfsi_plus_outr_div h2 {
|
1710 |
+
color: #778088;
|
1711 |
+
font-family: helveticaregular;
|
1712 |
+
font-size: 26px;
|
1713 |
+
margin: 0 0 9px;
|
1714 |
+
padding: 0;
|
1715 |
+
text-align: center;
|
1716 |
+
font-weight: 400;
|
1717 |
+
}
|
1718 |
+
|
1719 |
+
.sfsi_plus_outr_div ul li a {
|
1720 |
+
color: #5A6570;
|
1721 |
+
text-decoration: none;
|
1722 |
+
}
|
1723 |
+
|
1724 |
+
.sfsi_plus_outr_div ul li {
|
1725 |
+
display: inline-block;
|
1726 |
+
list-style: none;
|
1727 |
+
margin: 0;
|
1728 |
+
padding: 0;
|
1729 |
+
float: none;
|
1730 |
+
}
|
1731 |
+
|
1732 |
+
.expanded-area {
|
1733 |
+
display: none;
|
1734 |
+
}
|
1735 |
+
|
1736 |
+
.sfsi_plus_wicons a {
|
1737 |
+
-webkit-transition: all .2s ease-in-out;
|
1738 |
+
-moz-transition: all .2s ease-in-out;
|
1739 |
+
-o-transition: all .2s ease-in-out;
|
1740 |
+
-ms-transition: all .2s ease-in-out;
|
1741 |
+
}
|
1742 |
+
|
1743 |
+
.scale,
|
1744 |
+
.scale-div {
|
1745 |
+
-webkit-transform: scale(1.1);
|
1746 |
+
-moz-transform: scale(1.1);
|
1747 |
+
-o-transform: scale(1.1);
|
1748 |
+
transform: scale(1.1);
|
1749 |
+
}
|
1750 |
+
|
1751 |
+
.sfsi_plus_Sicons {
|
1752 |
+
float: left;
|
1753 |
+
}
|
1754 |
+
|
1755 |
+
.sfsi_pop_up .button a:hover {
|
1756 |
+
color: #fff;
|
1757 |
+
}
|
1758 |
+
|
1759 |
+
.sfsi_pop_up .button:hover {
|
1760 |
+
background: #12a252;
|
1761 |
+
color: #fff;
|
1762 |
+
border: none;
|
1763 |
+
}
|
1764 |
+
|
1765 |
+
ul.plus_icn_listing li .sfsiplus_right_info a {
|
1766 |
+
outline: 0;
|
1767 |
+
font-family: helveticaregular;
|
1768 |
+
}
|
1769 |
+
|
1770 |
+
ul.sfsiplus_icn_listing8 li .sfsiplus_right_info a {
|
1771 |
+
outline: 0;
|
1772 |
+
font-family: helveticaregular;
|
1773 |
+
}
|
1774 |
+
|
1775 |
+
.upload_pop_up .upload_butt {
|
1776 |
+
line-height: 27px;
|
1777 |
+
margin-left: 6px;
|
1778 |
+
}
|
1779 |
+
|
1780 |
+
.drop_lsts {
|
1781 |
+
left: 220px;
|
1782 |
+
position: relative;
|
1783 |
+
top: -40px;
|
1784 |
+
}
|
1785 |
+
|
1786 |
+
.drop_lsts .styled {
|
1787 |
+
top: -42px;
|
1788 |
+
width: 127px;
|
1789 |
+
height: 33px;
|
1790 |
+
}
|
1791 |
+
|
1792 |
+
.drop_lsts span {
|
1793 |
+
line-height: 50px;
|
1794 |
+
}
|
1795 |
+
|
1796 |
+
.drag_drp {
|
1797 |
+
left: 11px;
|
1798 |
+
position: relative;
|
1799 |
+
top: 38px;
|
1800 |
+
font-size: 17px;
|
1801 |
+
}
|
1802 |
+
|
1803 |
+
.listing ul li label {
|
1804 |
+
width: 224px;
|
1805 |
+
float: left;
|
1806 |
+
}
|
1807 |
+
|
1808 |
+
.sfsiplus_row_onl {
|
1809 |
+
width: 100%;
|
1810 |
+
float: left;
|
1811 |
+
}
|
1812 |
+
|
1813 |
+
#sfsi_plus_Show_popupOn_PageIDs option.sel-active {
|
1814 |
+
background: #f7941d;
|
1815 |
+
}
|
1816 |
+
|
1817 |
+
.sfsi_plus_inside div iframe {
|
1818 |
+
float: left;
|
1819 |
+
margin: 0;
|
1820 |
+
}
|
1821 |
+
|
1822 |
+
.sfsi_plus_inside div #___plus_0,
|
1823 |
+
.sfsi_plus_inside div #___plusone_0 {
|
1824 |
+
height: 27px;
|
1825 |
+
}
|
1826 |
+
|
1827 |
+
.sfsi_plus_outr_div li {
|
1828 |
+
float: left;
|
1829 |
+
}
|
1830 |
+
|
1831 |
+
.sfsi_plus_tool_tip_2 .sfsi_plus_inside div {
|
1832 |
+
min-height: 0;
|
1833 |
+
}
|
1834 |
+
|
1835 |
+
#___plus_1>iframe {
|
1836 |
+
height: 30px;
|
1837 |
+
}
|
1838 |
+
|
1839 |
+
.main_contant h1 {
|
1840 |
+
margin: 0 0 19px;
|
1841 |
+
}
|
1842 |
+
|
1843 |
+
.main_contant p {
|
1844 |
+
margin: 0 0 11px;
|
1845 |
+
}
|
1846 |
+
|
1847 |
+
.main_contant p>a {
|
1848 |
+
color: #1a1d20;
|
1849 |
+
text-decoration: underline;
|
1850 |
+
}
|
1851 |
+
|
1852 |
+
.tab1 .gary_bg {
|
1853 |
+
background: #f1f1f1;
|
1854 |
+
}
|
1855 |
+
|
1856 |
+
#accordion {
|
1857 |
+
margin-top: 25px;
|
1858 |
+
}
|
1859 |
+
|
1860 |
+
.main_contant p>a,
|
1861 |
+
.tab1 p span {
|
1862 |
+
font-family: helveticabold;
|
1863 |
+
}
|
1864 |
+
|
1865 |
+
.wapper .ui-accordion-header-active {
|
1866 |
+
margin-top: 20px !important;
|
1867 |
+
}
|
1868 |
+
|
1869 |
+
.wapper .tab2 {
|
1870 |
+
padding: 20px 33px 12px 34px !important;
|
1871 |
+
}
|
1872 |
+
|
1873 |
+
.wapper .tab2 p {
|
1874 |
+
margin-bottom: 6px;
|
1875 |
+
}
|
1876 |
+
|
1877 |
+
.tab2 .twt_tab_2 label {
|
1878 |
+
width: 175px;
|
1879 |
+
}
|
1880 |
+
|
1881 |
+
.tab2 .twt_fld {
|
1882 |
+
margin: 16px 0 23px;
|
1883 |
+
float: left;
|
1884 |
+
}
|
1885 |
+
|
1886 |
+
.tab2 .twt_fld_2 {
|
1887 |
+
margin: 0 0 12px;
|
1888 |
+
float: left;
|
1889 |
+
}
|
1890 |
+
|
1891 |
+
.tab2 .utube_inn {
|
1892 |
+
padding-bottom: 2px;
|
1893 |
+
float: left;
|
1894 |
+
}
|
1895 |
+
|
1896 |
+
.tab2 .utube_inn label {
|
1897 |
+
max-width: 90%
|
1898 |
+
}
|
1899 |
+
|
1900 |
+
.tab2 .utube_inn label span {
|
1901 |
+
font-family: helveticabold;
|
1902 |
+
}
|
1903 |
+
|
1904 |
+
.tab2 .inr_cont p>a {
|
1905 |
+
font-family: helveticabold;
|
1906 |
+
color: #778088;
|
1907 |
+
text-decoration: none;
|
1908 |
+
}
|
1909 |
+
|
1910 |
+
.sfsiplus_pinterest_section .inr_cont .pint_url {
|
1911 |
+
float: left;
|
1912 |
+
padding-top: 6px;
|
1913 |
+
clear: both;
|
1914 |
+
}
|
1915 |
+
|
1916 |
+
.sfsiplus_pinterest_section .inr_cont .add {
|
1917 |
+
width: 417px !important;
|
1918 |
+
}
|
1919 |
+
|
1920 |
+
.sfsiplus_linkedin_section .link_1,
|
1921 |
+
.sfsiplus_linkedin_section .link_2,
|
1922 |
+
.sfsiplus_linkedin_section .link_3,
|
1923 |
+
.sfsiplus_linkedin_section .link_4 {
|
1924 |
+
float: left;
|
1925 |
+
width: 100%
|
1926 |
+
}
|
1927 |
+
|
1928 |
+
.sfsiplus_linkedin_section .link_1 input.add,
|
1929 |
+
.sfsiplus_linkedin_section .link_2 input.add,
|
1930 |
+
.sfsiplus_linkedin_section .link_3 input.add,
|
1931 |
+
.sfsiplus_linkedin_section .link_4 input.add {
|
1932 |
+
width: 417px;
|
1933 |
+
}
|
1934 |
+
|
1935 |
+
.sfsiplus_linkedin_section .link_1 {
|
1936 |
+
margin-bottom: 7px;
|
1937 |
+
}
|
1938 |
+
|
1939 |
+
.sfsiplus_linkedin_section .link_2 {
|
1940 |
+
margin-bottom: 12px;
|
1941 |
+
}
|
1942 |
+
|
1943 |
+
.sfsiplus_linkedin_section .link_3,
|
1944 |
+
.sfsiplus_linkedin_section .link_4 {
|
1945 |
+
margin-bottom: 13px;
|
1946 |
+
}
|
1947 |
+
|
1948 |
+
.tab2 .sfsiplus_linkedin_section .link_4 {
|
1949 |
+
margin-bottom: 0;
|
1950 |
+
}
|
1951 |
+
|
1952 |
+
.sfsiplus_telegram_section .link_1,
|
1953 |
+
.sfsiplus_linkedin_section .link_2 {
|
1954 |
+
margin-bottom: 12px;
|
1955 |
+
}
|
1956 |
+
|
1957 |
+
ul.tab_3_list li span {
|
1958 |
+
font-family: helveticabold;
|
1959 |
+
}
|
1960 |
+
|
1961 |
+
#accordion .tab4 h4,
|
1962 |
+
#accordion1 .tab4 h4 {
|
1963 |
+
|
1964 |
+
color: #414951;
|
1965 |
+
font-size: 20px;
|
1966 |
+
}
|
1967 |
+
|
1968 |
+
.sfsiplus_specify_counts .listing li .input {
|
1969 |
+
width: 73px;
|
1970 |
+
}
|
1971 |
+
|
1972 |
+
.sfsiplus_fbpgidwpr {
|
1973 |
+
width: 160px;
|
1974 |
+
float: left;
|
1975 |
+
font-weight: bold;
|
1976 |
+
font-size: 17px;
|
1977 |
+
color: #000000;
|
1978 |
+
}
|
1979 |
+
|
1980 |
+
.sfsiplus_fbpgiddesc {
|
1981 |
+
font-weight: normal;
|
1982 |
+
width: 100%;
|
1983 |
+
font-size: 14px;
|
1984 |
+
color: #888888;
|
1985 |
+
padding: 4px 0 0 60px;
|
1986 |
+
}
|
1987 |
+
|
1988 |
+
.sfsiplus_fbpgiddesc code {
|
1989 |
+
background: none repeat scroll 0 0 transparent;
|
1990 |
+
padding-right: 0px;
|
1991 |
+
padding-left: 0px;
|
1992 |
+
|
1993 |
+
}
|
1994 |
+
|
1995 |
+
.sfsiplus_specify_counts .listing li .input.mypginpt {
|
1996 |
+
width: 288px;
|
1997 |
+
}
|
1998 |
+
|
1999 |
+
.tab3 .Shuffle_auto .sub_sub_box .tab_3_option {
|
2000 |
+
padding-top: 0 !important;
|
2001 |
+
margin-bottom: 10px !important;
|
2002 |
+
}
|
2003 |
+
|
2004 |
+
.tab3 .sub_row {
|
2005 |
+
margin-top: 10px !important;
|
2006 |
+
}
|
2007 |
+
|
2008 |
+
.tab4 {
|
2009 |
+
padding-top: 35px !important;
|
2010 |
+
}
|
2011 |
+
|
2012 |
+
.tab4 .save_button {
|
2013 |
+
padding-top: 46px;
|
2014 |
+
}
|
2015 |
+
|
2016 |
+
.tab5 {
|
2017 |
+
padding-top: 31px !important;
|
2018 |
+
}
|
2019 |
+
|
2020 |
+
.tab6,
|
2021 |
+
.tab7 {
|
2022 |
+
padding-top: 28px !important;
|
2023 |
+
}
|
2024 |
+
|
2025 |
+
.tab5 .sfsiplus_row_onl {
|
2026 |
+
margin-top: 15px;
|
2027 |
+
}
|
2028 |
+
|
2029 |
+
.tab5 .sticking .link>a {
|
2030 |
+
color: #a4a9ad;
|
2031 |
+
text-decoration: underline;
|
2032 |
+
}
|
2033 |
+
|
2034 |
+
.tab5 .mouse_txt h4 {
|
2035 |
+
margin-bottom: 8px !important;
|
2036 |
+
}
|
2037 |
+
|
2038 |
+
.tab5 .save_button {
|
2039 |
+
padding-top: 54px;
|
2040 |
+
}
|
2041 |
+
|
2042 |
+
.tab7 .like_pop_box h2 {
|
2043 |
+
font-family: helveticabold;
|
2044 |
+
text-align: center;
|
2045 |
+
color: #414951;
|
2046 |
+
font-size: 26px;
|
2047 |
+
}
|
2048 |
+
|
2049 |
+
.tab1 ul.plus_icn_listing li .sfsiplus_right_info label:hover {
|
2050 |
+
text-decoration: none !important;
|
2051 |
+
}
|
2052 |
+
|
2053 |
+
.tab1 ul.plus_icn_listing li .sfsiplus_right_info label.expanded-area {
|
2054 |
+
clear: both;
|
2055 |
+
float: left;
|
2056 |
+
margin-top: 14px;
|
2057 |
+
}
|
2058 |
+
|
2059 |
+
.tab7 .space {
|
2060 |
+
margin-top: 14px;
|
2061 |
+
}
|
2062 |
+
|
2063 |
+
.tab7 .pop_up_show label {
|
2064 |
+
font-family: helveticaregular !important;
|
2065 |
+
}
|
2066 |
+
|
2067 |
+
.tab7 .save_button {
|
2068 |
+
padding-top: 78px;
|
2069 |
+
}
|
2070 |
+
|
2071 |
+
.like_txt a {
|
2072 |
+
text-decoration: none;
|
2073 |
+
font-family: helveticaregular;
|
2074 |
+
}
|
2075 |
+
|
2076 |
+
.bdr_btm_non {
|
2077 |
+
border-bottom: none !important;
|
2078 |
+
}
|
2079 |
+
|
2080 |
+
.tab1 .tab_1_sav {
|
2081 |
+
padding-top: 13px;
|
2082 |
+
}
|
2083 |
+
|
2084 |
+
#accordion .tab2 .sfsiplus_facebook_section .inr_cont p.extra_sp,
|
2085 |
+
#accordion1 .tab2 .sfsiplus_facebook_section .inr_cont p.extra_sp {
|
2086 |
+
padding-top: 7px;
|
2087 |
+
}
|
2088 |
+
|
2089 |
+
.tab2 .sfsiplus_custom_section {
|
2090 |
+
width: 100%
|
2091 |
+
}
|
2092 |
+
|
2093 |
+
.tab7 {
|
2094 |
+
padding-bottom: 40px !important;
|
2095 |
+
}
|
2096 |
+
|
2097 |
+
.tab8 .save_button {
|
2098 |
+
padding-top: 0px;
|
2099 |
+
}
|
2100 |
+
|
2101 |
+
.tab10 .save_button a {
|
2102 |
+
padding: 16px 0;
|
2103 |
+
}
|
2104 |
+
|
2105 |
+
.tab2 .sfsiplus_twitter_section .twt_fld input.add,
|
2106 |
+
.tab2 .sfsiplus_twitter_section .twt_fld_2 textarea.add_txt {
|
2107 |
+
width: 464px !important;
|
2108 |
+
}
|
2109 |
+
|
2110 |
+
.tab2 .utube_inn .fb_url label span {
|
2111 |
+
font-family: helveticaregular;
|
2112 |
+
}
|
2113 |
+
|
2114 |
+
.tab1 label,
|
2115 |
+
.tab2 label,
|
2116 |
+
.tab3 label,
|
2117 |
+
.tab4 label,
|
2118 |
+
.tab5 label,
|
2119 |
+
.tab6 label,
|
2120 |
+
.tab7 label,
|
2121 |
+
.tab8 label,
|
2122 |
+
.tab9 label {
|
2123 |
+
cursor: default !important;
|
2124 |
+
}
|
2125 |
+
|
2126 |
+
.tab5 .new_wind h4 {
|
2127 |
+
margin-bottom: 11px !important;
|
2128 |
+
}
|
2129 |
+
|
2130 |
+
.pop_up_box .fb_2 span {
|
2131 |
+
height: 28px !important;
|
2132 |
+
}
|
2133 |
+
|
2134 |
+
.pop_up_box .sfsi_plus_tool_tip_2 .fbb .fb_1 a {
|
2135 |
+
margin-top: 0;
|
2136 |
+
}
|
2137 |
+
|
2138 |
+
.tab6 .social_icon_like1 ul li span {
|
2139 |
+
margin-top: -1px;
|
2140 |
+
}
|
2141 |
+
|
2142 |
+
#sfpluspageLoad {
|
2143 |
+
background: url(../images/ajax-loader.gif) 50% 50% no-repeat #F9F9F9;
|
2144 |
+
height: 100%;
|
2145 |
+
left: 160px;
|
2146 |
+
opacity: 1;
|
2147 |
+
position: fixed;
|
2148 |
+
top: 0;
|
2149 |
+
width: 89%;
|
2150 |
+
z-index: 9999;
|
2151 |
+
}
|
2152 |
+
|
2153 |
+
.sfsi_plus_tool_tip_2,
|
2154 |
+
.tool_tip {
|
2155 |
+
background: #FFF;
|
2156 |
+
border: 1px solid #e7e7e7;
|
2157 |
+
box-shadow: #e7e7e7 0 0 2px 1px;
|
2158 |
+
display: block;
|
2159 |
+
float: left;
|
2160 |
+
margin: 0 0 0 -52px;
|
2161 |
+
/*padding: 5px 14px 5px 14px;*/
|
2162 |
+
position: absolute;
|
2163 |
+
z-index: 10000;
|
2164 |
+
border-bottom: #e5e5e5 solid 4px;
|
2165 |
+
width: 100px;
|
2166 |
+
}
|
2167 |
+
|
2168 |
+
.sfsi_plus_tool_tip_2 {
|
2169 |
+
display: inline-table;
|
2170 |
+
}
|
2171 |
+
|
2172 |
+
.sfsiplus_inerCnt,
|
2173 |
+
.sfsiplus_inerCnt:hover,
|
2174 |
+
.sfsiplus_inerCnt>a,
|
2175 |
+
.sfsiplus_inerCnt>a:hover,
|
2176 |
+
.widget-area .widget a {
|
2177 |
+
outline: 0;
|
2178 |
+
}
|
2179 |
+
|
2180 |
+
.sfsi_plus_tool_tip_2_inr {
|
2181 |
+
bottom: 90%;
|
2182 |
+
left: 20%;
|
2183 |
+
opacity: 0;
|
2184 |
+
}
|
2185 |
+
|
2186 |
+
.sfsi_plus_tool_tip_2 .bot_arow {
|
2187 |
+
background: url(../images/bot_tip_icn.png) no-repeat;
|
2188 |
+
position: absolute;
|
2189 |
+
bottom: -21px;
|
2190 |
+
left: 50%;
|
2191 |
+
width: 15px;
|
2192 |
+
height: 21px;
|
2193 |
+
margin-left: -10px;
|
2194 |
+
}
|
2195 |
+
|
2196 |
+
.sfsi_plus_tool_tip_2 .top_big_arow {
|
2197 |
+
position: absolute;
|
2198 |
+
-webkit-transform: rotate(180deg);
|
2199 |
+
-moz-transform: rotate(180deg);
|
2200 |
+
-ms-transform: rotate(180deg);
|
2201 |
+
-o-transform: rotate(180deg);
|
2202 |
+
transform: rotate(180deg);
|
2203 |
+
top: -21px;
|
2204 |
+
left: 46%;
|
2205 |
+
width: 15px;
|
2206 |
+
height: 21px;
|
2207 |
+
margin-right: -5px;
|
2208 |
+
}
|
2209 |
+
|
2210 |
+
.sfsi_plus_tool_tip_2_inr .gpls_visit>a,
|
2211 |
+
.sfsi_plus_tool_tip_2_inr .prints_visit_1 a,
|
2212 |
+
.sfsi_plus_tool_tip_2_inr .utub_visit>a {
|
2213 |
+
margin-top: 0;
|
2214 |
+
}
|
2215 |
+
|
2216 |
+
.sfsi_plus_tool_tip_2_inr .linkin_1 a,
|
2217 |
+
.sfsi_plus_tool_tip_2_inr .linkin_2 a,
|
2218 |
+
.sfsi_plus_tool_tip_2_inr .linkin_3 a,
|
2219 |
+
.sfsi_plus_tool_tip_2_inr .linkin_4 a,
|
2220 |
+
.sfsi_plus_tool_tip_2_inr .prints_visit a {
|
2221 |
+
margin: 0;
|
2222 |
+
}
|
2223 |
+
|
2224 |
+
.sfsiTlleftBig {
|
2225 |
+
bottom: 121%;
|
2226 |
+
left: 22%;
|
2227 |
+
margin-left: -54%
|
2228 |
+
}
|
2229 |
+
|
2230 |
+
.sfsi_plus_Tlleft {
|
2231 |
+
bottom: 100%;
|
2232 |
+
left: 50%;
|
2233 |
+
margin-left: -66px !important;
|
2234 |
+
margin-bottom: 2px;
|
2235 |
+
}
|
2236 |
+
|
2237 |
+
.sfsi_plc_btm {
|
2238 |
+
bottom: auto;
|
2239 |
+
top: 100%;
|
2240 |
+
left: 50%;
|
2241 |
+
margin-left: -63px;
|
2242 |
+
margin-top: 8px;
|
2243 |
+
margin-bottom: auto;
|
2244 |
+
}
|
2245 |
+
|
2246 |
+
.sfsiplus_inerCnt {
|
2247 |
+
position: relative;
|
2248 |
+
z-index: inherit !important;
|
2249 |
+
float: left;
|
2250 |
+
width: 100%;
|
2251 |
+
float: left;
|
2252 |
+
}
|
2253 |
+
|
2254 |
+
.sfsi_plus_wicons {
|
2255 |
+
margin-bottom: 30px;
|
2256 |
+
position: relative;
|
2257 |
+
padding-top: 5px;
|
2258 |
+
}
|
2259 |
+
|
2260 |
+
.sfsiplus_norm_row .bot_no {
|
2261 |
+
position: absolute;
|
2262 |
+
padding: 1px 0;
|
2263 |
+
font-size: 12px !important;
|
2264 |
+
text-align: center;
|
2265 |
+
line-height: 12px !important;
|
2266 |
+
background: #fff;
|
2267 |
+
border-radius: 5px;
|
2268 |
+
left: 50%;
|
2269 |
+
margin-left: -20px;
|
2270 |
+
z-index: 9;
|
2271 |
+
border: 1px solid #333;
|
2272 |
+
top: 100%;
|
2273 |
+
white-space: pre;
|
2274 |
+
-webkit-box-sizing: border-box;
|
2275 |
+
-moz-box-sizing: border-box;
|
2276 |
+
box-sizing: border-box;
|
2277 |
+
margin-top: 10px;
|
2278 |
+
width: 40px;
|
2279 |
+
}
|
2280 |
+
|
2281 |
+
.sfsiplus_norm_row .bot_no:before {
|
2282 |
+
content: url(images/count_top_arow.png);
|
2283 |
+
position: absolute;
|
2284 |
+
height: 9px;
|
2285 |
+
margin-left: -7.5px;
|
2286 |
+
top: -10px;
|
2287 |
+
left: 50%;
|
2288 |
+
width: 15px;
|
2289 |
+
}
|
2290 |
+
|
2291 |
+
.sf_subscrbe .bot_no,
|
2292 |
+
.sf_fb .bot_no,
|
2293 |
+
.sf_twiter .bot_no,
|
2294 |
+
.sf_pinit .bot_no,
|
2295 |
+
.sf_linkedin .bot_no
|
2296 |
+
{
|
2297 |
+
background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
|
2298 |
+
font-size: 12px !important;
|
2299 |
+
left: 67px;
|
2300 |
+
line-height: 17px !important;
|
2301 |
+
margin-left: 0;
|
2302 |
+
padding: 1px 0;
|
2303 |
+
text-align: center;
|
2304 |
+
white-space: pre;
|
2305 |
+
width: 33px;
|
2306 |
+
height: 19px;
|
2307 |
+
z-index: 9;
|
2308 |
+
display: inline-block;
|
2309 |
+
vertical-align:bottom;
|
2310 |
+
}
|
2311 |
+
/* .sf_subscrbe .bot_no {
|
2312 |
+
background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
|
2313 |
+
font-size: 12px !important;
|
2314 |
+
left: 67px;
|
2315 |
+
line-height: 17px !important;
|
2316 |
+
margin-left: 0px;
|
2317 |
+
/* margin-top: 9px;*/
|
2318 |
+
/* padding: 1px 0; */
|
2319 |
+
/*position: absolute;*/
|
2320 |
+
/* text-align: center; */
|
2321 |
+
/*top: -8px;*/
|
2322 |
+
/* white-space: pre; */
|
2323 |
+
/* width: 33px; */
|
2324 |
+
/* height: 19px; */
|
2325 |
+
/* z-index: 9; */
|
2326 |
+
/* display: inline-block; */
|
2327 |
+
/* } */ */
|
2328 |
+
|
2329 |
+
|
2330 |
+
|
2331 |
+
.bot_no.sfsiSmBtn {
|
2332 |
+
font-size: 10px;
|
2333 |
+
margin-top: 4px;
|
2334 |
+
}
|
2335 |
+
|
2336 |
+
.bot_no.sfsiSmBtn:before {
|
2337 |
+
margin-left: -8px;
|
2338 |
+
top: -9px;
|
2339 |
+
}
|
2340 |
+
|
2341 |
+
.sfsiplus_norm_row .cbtn_vsmall {
|
2342 |
+
font-size: 9px;
|
2343 |
+
left: -28%;
|
2344 |
+
top: 4px;
|
2345 |
+
}
|
2346 |
+
|
2347 |
+
.sfsiplus_norm_row .cbtn_vsmall:before {
|
2348 |
+
left: 31%;
|
2349 |
+
top: -9px;
|
2350 |
+
margin-left: -31%
|
2351 |
+
}
|
2352 |
+
|
2353 |
+
h2.optional {
|
2354 |
+
font-family: helveticaregular;
|
2355 |
+
font-size: 25px;
|
2356 |
+
margin: 25px 0 19px;
|
2357 |
+
color: #5a6570;
|
2358 |
+
float: left;
|
2359 |
+
}
|
2360 |
+
|
2361 |
+
.utube_tool_bdr .utub_visit {
|
2362 |
+
margin: 9px 0 0;
|
2363 |
+
height: 24px;
|
2364 |
+
display: inline-block;
|
2365 |
+
float: none;
|
2366 |
+
}
|
2367 |
+
|
2368 |
+
.utube_tool_bdr .utub_2 {
|
2369 |
+
margin: 9px 0 0;
|
2370 |
+
height: 24px;
|
2371 |
+
width: 86px;
|
2372 |
+
display: inline-block;
|
2373 |
+
float: none;
|
2374 |
+
}
|
2375 |
+
|
2376 |
+
.sfsi_plus_printst_tool_bdr {
|
2377 |
+
width: 79px;
|
2378 |
+
}
|
2379 |
+
|
2380 |
+
.sfsi_plus_printst_tool_bdr .prints_visit {
|
2381 |
+
margin: 0 0 10px -22px;
|
2382 |
+
}
|
2383 |
+
|
2384 |
+
.sfsi_plus_printst_tool_bdr .prints_visit_1 {
|
2385 |
+
margin: 0 0 0 -53px;
|
2386 |
+
}
|
2387 |
+
|
2388 |
+
.sfsi_plus_fb_tool_bdr {
|
2389 |
+
width: 68px;
|
2390 |
+
height: auto;
|
2391 |
+
}
|
2392 |
+
|
2393 |
+
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside {
|
2394 |
+
text-align: center;
|
2395 |
+
width: 100%;
|
2396 |
+
float: left;
|
2397 |
+
overflow: hidden;
|
2398 |
+
}
|
2399 |
+
|
2400 |
+
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1 {
|
2401 |
+
margin: 2px 0 -5px 0;
|
2402 |
+
height: 28px;
|
2403 |
+
/*display: inline-block;*/
|
2404 |
+
float: none;
|
2405 |
+
/* width: 62px;s*/
|
2406 |
+
}
|
2407 |
+
|
2408 |
+
#sfsi_plus_floater .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1 {
|
2409 |
+
margin: -16px 0 16px 0;
|
2410 |
+
}
|
2411 |
+
|
2412 |
+
.sfsi_plus_inside img {
|
2413 |
+
vertical-align: sub !important;
|
2414 |
+
}
|
2415 |
+
|
2416 |
+
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon2 {
|
2417 |
+
margin: 2px 0 2px 0;
|
2418 |
+
height: 20px;
|
2419 |
+
/* width: 49px;*/
|
2420 |
+
display: block;
|
2421 |
+
overflow: hidden;
|
2422 |
+
}
|
2423 |
+
|
2424 |
+
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon3 {
|
2425 |
+
margin: 2px 0 2px 0;
|
2426 |
+
height: 20px;
|
2427 |
+
/* width: 62px;*/
|
2428 |
+
display: inline-block;
|
2429 |
+
float: none;
|
2430 |
+
}
|
2431 |
+
|
2432 |
+
#sfsi_plus_floater .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon3 {
|
2433 |
+
margin: 3px 0 0 0;
|
2434 |
+
}
|
2435 |
+
|
2436 |
+
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_1,
|
2437 |
+
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_2,
|
2438 |
+
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_3 {
|
2439 |
+
margin: 9px 0 0;
|
2440 |
+
height: 25px;
|
2441 |
+
}
|
2442 |
+
|
2443 |
+
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside {
|
2444 |
+
text-align: center;
|
2445 |
+
float: left;
|
2446 |
+
width: 100%
|
2447 |
+
}
|
2448 |
+
|
2449 |
+
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1 {
|
2450 |
+
margin: 2px 0;
|
2451 |
+
height: 24px;
|
2452 |
+
display: inline-block;
|
2453 |
+
float: none;
|
2454 |
+
/*width: 73px;*/
|
2455 |
+
}
|
2456 |
+
|
2457 |
+
#sfsi_plus_floater .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1 {
|
2458 |
+
margin: 0px 0;
|
2459 |
+
}
|
2460 |
+
|
2461 |
+
#sfsi_plus_floater .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2 {
|
2462 |
+
margin: -5px 0 17px 0;
|
2463 |
+
display: inherit;
|
2464 |
+
}
|
2465 |
+
|
2466 |
+
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2 {
|
2467 |
+
margin: 2px 0;
|
2468 |
+
height: 20px;
|
2469 |
+
display: inline-block;
|
2470 |
+
float: none;
|
2471 |
+
/*max-width: 73px;*/
|
2472 |
+
width: 100%;
|
2473 |
+
}
|
2474 |
+
|
2475 |
+
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .prints_visit,
|
2476 |
+
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .prints_visit_1 {
|
2477 |
+
margin: 9px 0 0;
|
2478 |
+
height: 20px;
|
2479 |
+
float: none;
|
2480 |
+
display: inline-block;
|
2481 |
+
}
|
2482 |
+
|
2483 |
+
.sfsi_plus_printst_tool_bdr {
|
2484 |
+
/* margin-left: -59px;*/
|
2485 |
+
}
|
2486 |
+
|
2487 |
+
.sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1>a>img,
|
2488 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1>a>img,
|
2489 |
+
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1>a>img,
|
2490 |
+
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4>a>img,
|
2491 |
+
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1>a>img,
|
2492 |
+
.sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2>a>img,
|
2493 |
+
.utube_tool_bdr .sfsi_plus_inside .icon1>a>img {
|
2494 |
+
padding-top: 0;
|
2495 |
+
}
|
2496 |
+
|
2497 |
+
.sfsi_plus_gpls_tool_bdr {
|
2498 |
+
width: 76px;
|
2499 |
+
}
|
2500 |
+
|
2501 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1>a>img {
|
2502 |
+
padding-top: 0;
|
2503 |
+
}
|
2504 |
+
|
2505 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside {
|
2506 |
+
text-align: center;
|
2507 |
+
width: 100%;
|
2508 |
+
float: left;
|
2509 |
+
}
|
2510 |
+
|
2511 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1 {
|
2512 |
+
margin: 2px 0 -5px 0;
|
2513 |
+
display: inline-block;
|
2514 |
+
float: none;
|
2515 |
+
height: 29px;
|
2516 |
+
/*width: 76px;*/
|
2517 |
+
}
|
2518 |
+
|
2519 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon2 {
|
2520 |
+
margin: 2px 0 2px 0;
|
2521 |
+
display: inline-block;
|
2522 |
+
float: none;
|
2523 |
+
height: 24px;
|
2524 |
+
width: 100%;
|
2525 |
+
/* width: 38px;*/
|
2526 |
+
}
|
2527 |
+
|
2528 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon3 {
|
2529 |
+
margin: 2px 0 2px 0;
|
2530 |
+
display: block;
|
2531 |
+
float: none;
|
2532 |
+
height: 24px;
|
2533 |
+
/* width: 76px;
|
2534 |
+
*/
|
2535 |
+
}
|
2536 |
+
|
2537 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gpls_visit,
|
2538 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gtalk_2,
|
2539 |
+
.sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gtalk_3 {
|
2540 |
+
margin: 9px 0 0;
|
2541 |
+
height: 29px;
|
2542 |
+
}
|
2543 |
+
|
2544 |
+
.sfsi_plus_fb_tool_bdr,
|
2545 |
+
.sfsi_plus_gpls_tool_bdr,
|
2546 |
+
.sfsi_plus_linkedin_tool_bdr,
|
2547 |
+
.sfsi_plus_printst_tool_bdr,
|
2548 |
+
.sfsi_plus_twt_tool_bdr {
|
2549 |
+
bottom: auto;
|
2550 |
+
left: 50%;
|
2551 |
+
margin-bottom: 2px;
|
2552 |
+
}
|
2553 |
+
|
2554 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside {
|
2555 |
+
text-align: center;
|
2556 |
+
width: 100%;
|
2557 |
+
float: left;
|
2558 |
+
}
|
2559 |
+
|
2560 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 {
|
2561 |
+
margin: 2px 0 !important;
|
2562 |
+
display: inline-block;
|
2563 |
+
float: none;
|
2564 |
+
vertical-align: middle;
|
2565 |
+
overflow: hidden;
|
2566 |
+
/*width: 100%;*/
|
2567 |
+
}
|
2568 |
+
|
2569 |
+
#sfsi_plus_floater .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 {
|
2570 |
+
margin: -7px 0 -14px 0 !important;
|
2571 |
+
/* height: 41px; */
|
2572 |
+
vertical-align: bottom;
|
2573 |
+
}
|
2574 |
+
|
2575 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a {
|
2576 |
+
display: inline-block;
|
2577 |
+
vertical-align: middle;
|
2578 |
+
/*width: 100%;*/
|
2579 |
+
width: auto;
|
2580 |
+
}
|
2581 |
+
|
2582 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a img {
|
2583 |
+
float: left;
|
2584 |
+
}
|
2585 |
+
|
2586 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 {
|
2587 |
+
margin: 1px 24px 3px !important;
|
2588 |
+
display: inline-block;
|
2589 |
+
float: none;
|
2590 |
+
/*width: 61px;*/
|
2591 |
+
overflow: hidden;
|
2592 |
+
height: auto;
|
2593 |
+
}
|
2594 |
+
|
2595 |
+
#sfsi_plus_floater .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 {
|
2596 |
+
margin: 1px 24px -12px !important;
|
2597 |
+
}
|
2598 |
+
|
2599 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 iframe {
|
2600 |
+
/* width: 61px!important;*/
|
2601 |
+
}
|
2602 |
+
|
2603 |
+
.sfsi_plus_tool_tip_2,
|
2604 |
+
.sfsi_plus_fb_tool_bdr,
|
2605 |
+
.sfsi_plus_twt_tool_bdr,
|
2606 |
+
.sfsi_plus_linkedin_tool_bdr,
|
2607 |
+
.sfsi_plus_printst_tool_bdr,
|
2608 |
+
.sfsi_plus_gpls_tool_bdr,
|
2609 |
+
.sfsi_plus_Tlleft {
|
2610 |
+
width: 140px !important;
|
2611 |
+
padding: 6px 0;
|
2612 |
+
}
|
2613 |
+
|
2614 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon2 {
|
2615 |
+
margin: 0px 0 !important;
|
2616 |
+
display: inline-block;
|
2617 |
+
float: none;
|
2618 |
+
height: 20px;
|
2619 |
+
/* width: 58px;s*/
|
2620 |
+
}
|
2621 |
+
|
2622 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_1 {
|
2623 |
+
margin: 9px 0 0;
|
2624 |
+
display: inline-block;
|
2625 |
+
float: none;
|
2626 |
+
width: 58px;
|
2627 |
+
height: 20px;
|
2628 |
+
overflow: hidden;
|
2629 |
+
}
|
2630 |
+
|
2631 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_1 iframe {
|
2632 |
+
width: 100% !important;
|
2633 |
+
}
|
2634 |
+
|
2635 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_2 {
|
2636 |
+
margin: 9px 0 0;
|
2637 |
+
height: 20px;
|
2638 |
+
display: inline-block;
|
2639 |
+
float: none;
|
2640 |
+
width: 58px;
|
2641 |
+
}
|
2642 |
+
|
2643 |
+
.utube_tool_bdr .sfsi_plus_inside {
|
2644 |
+
text-align: center;
|
2645 |
+
width: 100%;
|
2646 |
+
float: left;
|
2647 |
+
}
|
2648 |
+
|
2649 |
+
.sfsi_plus_inside>div {}
|
2650 |
+
|
2651 |
+
.utube_tool_bdr .sfsi_plus_inside .icon1 {
|
2652 |
+
margin: 2px 0 2px;
|
2653 |
+
height: 24px;
|
2654 |
+
display: inline-block;
|
2655 |
+
float: none;
|
2656 |
+
width: 87px;
|
2657 |
+
}
|
2658 |
+
|
2659 |
+
#sfsi_plus_floater .utube_tool_bdr .sfsi_plus_inside .icon1 {
|
2660 |
+
margin: 0px 0px 19px 0;
|
2661 |
+
}
|
2662 |
+
|
2663 |
+
.utube_tool_bdr .sfsi_plus_inside .icon2 {
|
2664 |
+
margin: 2px 0 2px;
|
2665 |
+
height: 24px;
|
2666 |
+
display: inline-block;
|
2667 |
+
float: none;
|
2668 |
+
min-width: 100px;
|
2669 |
+
width: auto;
|
2670 |
+
}
|
2671 |
+
|
2672 |
+
.utube_tool_bdr {
|
2673 |
+
width: 93px;
|
2674 |
+
bottom: auto;
|
2675 |
+
left: 50%;
|
2676 |
+
margin-bottom: 2px;
|
2677 |
+
}
|
2678 |
+
|
2679 |
+
.sfsi_plus_linkedin_tool_bdr {
|
2680 |
+
width: 66px;
|
2681 |
+
}
|
2682 |
+
|
2683 |
+
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside {
|
2684 |
+
text-align: center;
|
2685 |
+
float: left;
|
2686 |
+
width: 100%
|
2687 |
+
}
|
2688 |
+
|
2689 |
+
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
|
2690 |
+
margin: -5px 0 8px 0;
|
2691 |
+
display: inline-block;
|
2692 |
+
float: none;
|
2693 |
+
height: 23px;
|
2694 |
+
width: 100%;
|
2695 |
+
}
|
2696 |
+
|
2697 |
+
#sfsi_plus_floater .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
|
2698 |
+
margin: -6px 0 16px 0;
|
2699 |
+
display: inherit;
|
2700 |
+
}
|
2701 |
+
|
2702 |
+
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon2 {
|
2703 |
+
margin: 1px 0;
|
2704 |
+
display: inline-block;
|
2705 |
+
float: none;
|
2706 |
+
height: 23px;
|
2707 |
+
width: 100%;
|
2708 |
+
}
|
2709 |
+
|
2710 |
+
#sfsi_plus_floater .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon2 {
|
2711 |
+
margin: -15px 0 3px 0;
|
2712 |
+
display: inherit;
|
2713 |
+
}
|
2714 |
+
|
2715 |
+
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon3 {
|
2716 |
+
margin: 2px 0;
|
2717 |
+
display: inline-block;
|
2718 |
+
float: none;
|
2719 |
+
height: 23px;
|
2720 |
+
width: 100%;
|
2721 |
+
}
|
2722 |
+
|
2723 |
+
|
2724 |
+
.sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4 {
|
2725 |
+
margin: 2px 0;
|
2726 |
+
display: inline-block;
|
2727 |
+
float: none;
|
2728 |
+
height: 28px;
|
2729 |
+
width: 66px;
|
2730 |
+
}
|
2731 |
+
|
2732 |
+
.sfsi_plus_FrntInner .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
|
2733 |
+
margin: 2px 0;
|
2734 |
+
}
|
2735 |
+
|
2736 |
+
.sfsi_plus_widget .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4,
|
2737 |
+
.sfsi_plus_widget .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1 {
|
2738 |
+
height: auto
|
2739 |
+
}
|
2740 |
+
|
2741 |
+
.sfsi_plus_linkedin_tool_bdr .linkin_1,
|
2742 |
+
.sfsi_plus_linkedin_tool_bdr .linkin_2,
|
2743 |
+
.sfsi_plus_linkedin_tool_bdr .linkin_3,
|
2744 |
+
.sfsi_plus_linkedin_tool_bdr .linkin_4 {
|
2745 |
+
margin: 9px 0 0 !important;
|
2746 |
+
height: 20px;
|
2747 |
+
display: inline-block;
|
2748 |
+
float: none;
|
2749 |
+
overflow: hidden;
|
2750 |
+
}
|
2751 |
+
|
2752 |
+
.sfsi_plus_twt_tool_bdr {
|
2753 |
+
width: 62px;
|
2754 |
+
height: auto;
|
2755 |
+
}
|
2756 |
+
|
2757 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1>iframe {
|
2758 |
+
margin: 0px auto !important;
|
2759 |
+
float: left !important;
|
2760 |
+
width: 100%
|
2761 |
+
}
|
2762 |
+
|
2763 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1>iframe #widget {
|
2764 |
+
text-align: center;
|
2765 |
+
}
|
2766 |
+
|
2767 |
+
.sfsi_pop_up .button {
|
2768 |
+
border: none;
|
2769 |
+
padding: 0;
|
2770 |
+
}
|
2771 |
+
|
2772 |
+
.pop_up_box .button a {
|
2773 |
+
color: #fff;
|
2774 |
+
line-height: normal;
|
2775 |
+
font-size: 22px;
|
2776 |
+
text-decoration: none;
|
2777 |
+
text-align: center;
|
2778 |
+
width: 482px;
|
2779 |
+
height: 80px;
|
2780 |
+
margin: 0;
|
2781 |
+
display: table-cell;
|
2782 |
+
vertical-align: middle;
|
2783 |
+
font-family: helveticabold;
|
2784 |
+
padding: 0 10px;
|
2785 |
+
}
|
2786 |
+
|
2787 |
+
.tab3 ul.sfsiplus_tab_3_icns li .radio {
|
2788 |
+
margin-top: 7px;
|
2789 |
+
}
|
2790 |
+
|
2791 |
+
.tab3 ul.sfsiplus_tab_3_icns li label {
|
2792 |
+
line-height: 50px !important;
|
2793 |
+
margin-left: 20px;
|
2794 |
+
}
|
2795 |
+
|
2796 |
+
.sfsi_mainContainer input[type=email],
|
2797 |
+
.sfsi_mainContainer input[type=number],
|
2798 |
+
.sfsi_mainContainer input[type=password],
|
2799 |
+
.sfsi_mainContainer input[type=search],
|
2800 |
+
.sfsi_mainContainer input[type=tel],
|
2801 |
+
.sfsi_mainContainer input[type=text],
|
2802 |
+
.sfsi_mainContainer input[type=url],
|
2803 |
+
.sfsi_mainContainer select,
|
2804 |
+
.sfsi_mainContainer textarea {
|
2805 |
+
color: #5a6570 !important;
|
2806 |
+
}
|
2807 |
+
|
2808 |
+
.adminTooltip {
|
2809 |
+
left: 142px;
|
2810 |
+
position: absolute;
|
2811 |
+
}
|
2812 |
+
|
2813 |
+
.adPopWidth {
|
2814 |
+
min-height: 100px !important;
|
2815 |
+
}
|
2816 |
+
|
2817 |
+
.main_contant p>a.lit_txt,
|
2818 |
+
.tab4 p>a {
|
2819 |
+
font-family: helveticaregular;
|
2820 |
+
color: #414951;
|
2821 |
+
}
|
2822 |
+
|
2823 |
+
.tab1 ul.plus_icn_listing li .sfsiplus_custom-txt {
|
2824 |
+
margin-left: 5px;
|
2825 |
+
}
|
2826 |
+
|
2827 |
+
.tab1 ul.plus_icn_listing li .custom-img {
|
2828 |
+
margin-left: 18px;
|
2829 |
+
}
|
2830 |
+
|
2831 |
+
.sfsiplus_linkedin_section .link_4>label.anthr_labl {
|
2832 |
+
height: 94px;
|
2833 |
+
}
|
2834 |
+
|
2835 |
+
.tab3 .tab_3_sav {
|
2836 |
+
padding-top: 0;
|
2837 |
+
margin: -69px auto 20px;
|
2838 |
+
position: relative;
|
2839 |
+
z-index: 9;
|
2840 |
+
}
|
2841 |
+
|
2842 |
+
.mediam_txt {
|
2843 |
+
font-family: helveticabold;
|
2844 |
+
}
|
2845 |
+
|
2846 |
+
.sfsiCtxt {
|
2847 |
+
line-height: 51px;
|
2848 |
+
font-family: helveticaregular;
|
2849 |
+
font-size: 22px;
|
2850 |
+
float: left;
|
2851 |
+
padding-left: 19px;
|
2852 |
+
color: #5a6570;
|
2853 |
+
}
|
2854 |
+
|
2855 |
+
.customstep2-img {
|
2856 |
+
width: 51px;
|
2857 |
+
float: left;
|
2858 |
+
}
|
2859 |
+
|
2860 |
+
.tab2 .row h2.custom {
|
2861 |
+
margin: 15px 0 7px 21px;
|
2862 |
+
height: 52px;
|
2863 |
+
line-height: 51px;
|
2864 |
+
font-family: helveticaregular;
|
2865 |
+
font-size: 22px;
|
2866 |
+
}
|
2867 |
+
|
2868 |
+
.plus_custom-links p.cus_link label {
|
2869 |
+
margin-left: 0;
|
2870 |
+
}
|
2871 |
+
|
2872 |
+
.pop_up_box .sfsi_plus_tool_tip_2 .fbb .fb_1 a>img:hover {
|
2873 |
+
opacity: .9;
|
2874 |
+
}
|
2875 |
+
|
2876 |
+
.tab2 .rss_url_row .sfrsTxt {
|
2877 |
+
font-size: 17px;
|
2878 |
+
line-height: 41px;
|
2879 |
+
margin: 0 0 0 4px;
|
2880 |
+
font-family: helveticaregular;
|
2881 |
+
}
|
2882 |
+
|
2883 |
+
.tab2 .rss_url_row .sfrsTxt>strong {
|
2884 |
+
font-family: helveticaregular;
|
2885 |
+
}
|
2886 |
+
|
2887 |
+
.tab2 .utube_inn p.extra_pp {
|
2888 |
+
float: left;
|
2889 |
+
width: 100%;
|
2890 |
+
margin: 0 0 0 48px;
|
2891 |
+
}
|
2892 |
+
|
2893 |
+
.tab2 .utube_inn p.extra_pp label {
|
2894 |
+
float: left;
|
2895 |
+
line-height: 41px;
|
2896 |
+
margin-right: 8px;
|
2897 |
+
}
|
2898 |
+
|
2899 |
+
.sfsi_inside .icon2 .fb_iframe_widget span {
|
2900 |
+
/* width: 500px!important; sunil*/
|
2901 |
+
}
|
2902 |
+
|
2903 |
+
@media (max-width:767px) {
|
2904 |
+
.icon2 .fb_iframe_widget span {
|
2905 |
+
width: auto;
|
2906 |
+
}
|
2907 |
+
|
2908 |
+
.sfsi_plus_outr_div {
|
2909 |
+
top: 10%
|
2910 |
+
}
|
2911 |
+
|
2912 |
+
.sfsi_plus_outr_div h2 {
|
2913 |
+
font-size: 22px !important;
|
2914 |
+
line-height: 28px;
|
2915 |
+
}
|
2916 |
+
|
2917 |
+
.sfsi_plus_wicons {
|
2918 |
+
padding-top: 0;
|
2919 |
+
}
|
2920 |
+
}
|
2921 |
+
|
2922 |
+
.sfsiplus_specify_counts .listing li .high_prb {
|
2923 |
+
height: 41px;
|
2924 |
+
}
|
2925 |
+
|
2926 |
+
.sfsi_plus_Sicons {
|
2927 |
+
position: relative;
|
2928 |
+
}
|
2929 |
+
|
2930 |
+
.sfsi_plus_Sicons .sf_subscrbe {
|
2931 |
+
margin: 2px 3px 0 0;
|
2932 |
+
line-height: 0px;
|
2933 |
+
}
|
2934 |
+
|
2935 |
+
.sfsi_plus_Sicons .sf_fb {
|
2936 |
+
margin: 0 4px 0 5px;
|
2937 |
+
line-height: 0px;
|
2938 |
+
}
|
2939 |
+
|
2940 |
+
.sfsi_plus_Sicons .sf_twiter {
|
2941 |
+
margin: 1px 7px 0 4px;
|
2942 |
+
line-height: 19px;
|
2943 |
+
}
|
2944 |
+
|
2945 |
+
.sfsi_plus_Sicons.left .sf_subscrbe {
|
2946 |
+
margin: 2px 8px 0 0;
|
2947 |
+
}
|
2948 |
+
|
2949 |
+
.sfsi_plus_Sicons.left .sf_fb {
|
2950 |
+
margin: 0 8px 0 0;
|
2951 |
+
}
|
2952 |
+
|
2953 |
+
.sfsi_plus_Sicons.left .sf_twiter {
|
2954 |
+
margin: 1px 8px 0 0;
|
2955 |
+
}
|
2956 |
+
|
2957 |
+
.sfsi_plus_Sicons.right .sf_subscrbe {
|
2958 |
+
margin: 2px 0 0;
|
2959 |
+
}
|
2960 |
+
|
2961 |
+
.sfsi_plus_Sicons.right .sf_fb {
|
2962 |
+
margin: 0 0 0 7px;
|
2963 |
+
}
|
2964 |
+
|
2965 |
+
.sfsi_plus_Sicons.right .sf_twiter {
|
2966 |
+
margin: 1px 0 0 8px;
|
2967 |
+
}
|
2968 |
+
|
2969 |
+
.sfsi_plus_Sicons .sf_subscrbe,
|
2970 |
+
.sfsi_plus_Sicons .sf_twiter {
|
2971 |
+
position: relative;
|
2972 |
+
width: 75px;
|
2973 |
+
}
|
2974 |
+
|
2975 |
+
.sfsi_plus_Sicons .sf_twiter iframe {
|
2976 |
+
margin: 0px;
|
2977 |
+
height: 20px !important;
|
2978 |
+
overflow: visible !important;
|
2979 |
+
}
|
2980 |
+
|
2981 |
+
.sfsi_plus_Sicons .sf_twiter iframe #widget {
|
2982 |
+
overflow: visible !important;
|
2983 |
+
|
2984 |
+
}
|
2985 |
+
|
2986 |
+
.sfsi_plus_Sicons .sf_subscrbe a {
|
2987 |
+
width: auto;
|
2988 |
+
float: left;
|
2989 |
+
border: medium none;
|
2990 |
+
padding-top: 0px;
|
2991 |
+
}
|
2992 |
+
|
2993 |
+
.sfsi_plus_Sicons .sf_subscrbe a:focus {
|
2994 |
+
outline: medium none;
|
2995 |
+
}
|
2996 |
+
|
2997 |
+
.sfsi_plus_Sicons .sf_subscrbe a img {
|
2998 |
+
float: left;
|
2999 |
+
height: 20px !important;
|
3000 |
+
}
|
3001 |
+
|
3002 |
+
.sfsi_plus_Sicons .sf_fb {
|
3003 |
+
position: relative;
|
3004 |
+
width: 75px;
|
3005 |
+
}
|
3006 |
+
|
3007 |
+
.sfsi_plus_Sicons .fb_iframe_widget {
|
3008 |
+
float: none;
|
3009 |
+
width: auto;
|
3010 |
+
vertical-align: middle;
|
3011 |
+
margin: 2px 0 0;
|
3012 |
+
}
|
3013 |
+
|
3014 |
+
/*absolute commented as for standard icon it was giving issue while icon was to be aligned centerd.*/
|
3015 |
+
.sfsi_plus_Sicons .sf_fb .fb_iframe_widget>span {
|
3016 |
+
position: relative;
|
3017 |
+
/*width: 450px!important;*/
|
3018 |
+
float: left;
|
3019 |
+
}
|
3020 |
+
|
3021 |
+
.tab2 .utube_inn label {
|
3022 |
+
font-size: 18px;
|
3023 |
+
}
|
3024 |
+
|
3025 |
+
.sfsi_plc_btm {
|
3026 |
+
padding: 5px 14px 9px;
|
3027 |
+
}
|
3028 |
+
|
3029 |
+
.tab7 .field {
|
3030 |
+
margin-top: 7px;
|
3031 |
+
}
|
3032 |
+
|
3033 |
+
.sfsi_plus_outr_div ul li .cmcls img {
|
3034 |
+
margin-top: 0 !important;
|
3035 |
+
}
|
3036 |
+
|
3037 |
+
.sfsi_plus_outr_div ul li .sfsiplus_inerCnt {
|
3038 |
+
float: left;
|
3039 |
+
}
|
3040 |
+
|
3041 |
+
.sfsi_plus_outr_div ul li .sfsiplus_inerCnt .bot_no {
|
3042 |
+
position: absolute;
|
3043 |
+
padding: 1px 0;
|
3044 |
+
font-size: 12px !important;
|
3045 |
+
line-height: 12px !important;
|
3046 |
+
text-align: center;
|
3047 |
+
background: #fff;
|
3048 |
+
border-radius: 5px;
|
3049 |
+
display: block;
|
3050 |
+
left: 50%;
|
3051 |
+
margin-left: -20px;
|
3052 |
+
border: 1px solid #333;
|
3053 |
+
white-space: pre;
|
3054 |
+
-webkit-box-sizing: border-box;
|
3055 |
+
-moz-box-sizing: border-box;
|
3056 |
+
box-sizing: border-box;
|
3057 |
+
margin-top: 6px;
|
3058 |
+
width: 40px;
|
3059 |
+
word-break: break-all;
|
3060 |
+
word-wrap: break-word;
|
3061 |
+
}
|
3062 |
+
|
3063 |
+
.sfsi_plus_outr_div ul li .sfsiplus_inerCnt .bot_no:before {
|
3064 |
+
content: url(images/count_top_arow.png);
|
3065 |
+
position: absolute;
|
3066 |
+
height: 9px;
|
3067 |
+
margin-left: -7.5px;
|
3068 |
+
top: -10px;
|
3069 |
+
left: 50%;
|
3070 |
+
width: 15px;
|
3071 |
+
}
|
3072 |
+
|
3073 |
+
.sfsi_plus_outr_div {
|
3074 |
+
position: fixed;
|
3075 |
+
width: 100%;
|
3076 |
+
float: none;
|
3077 |
+
left: 50%;
|
3078 |
+
top: 20%;
|
3079 |
+
margin-left: -50%;
|
3080 |
+
opacity: 0;
|
3081 |
+
z-index: -1;
|
3082 |
+
display: block;
|
3083 |
+
text-align: center;
|
3084 |
+
}
|
3085 |
+
|
3086 |
+
.sfsi_plus_outr_div .sfsi_plus_FrntInner {
|
3087 |
+
display: inline-block;
|
3088 |
+
padding: 15px 17px 27px 18px;
|
3089 |
+
background: #FFF;
|
3090 |
+
border: 1px solid #EDEDED;
|
3091 |
+
box-shadow: 0 0 5px #CCC;
|
3092 |
+
margin: 20px;
|
3093 |
+
position: relative;
|
3094 |
+
}
|
3095 |
+
|
3096 |
+
.sfsi_plus_FrntInner .sfsiclpupwpr {
|
3097 |
+
position: absolute;
|
3098 |
+
right: -10px;
|
3099 |
+
top: -10px;
|
3100 |
+
width: 25px;
|
3101 |
+
cursor: pointer;
|
3102 |
+
}
|
3103 |
+
|
3104 |
+
.sfsi_plus_FrntInner .sfsiclpupwpr img {
|
3105 |
+
width: auto;
|
3106 |
+
float: left;
|
3107 |
+
border: medium none;
|
3108 |
+
}
|
3109 |
+
|
3110 |
+
.tab7 .like_pop_box {
|
3111 |
+
width: 100%;
|
3112 |
+
margin: 35px auto auto;
|
3113 |
+
position: relative;
|
3114 |
+
text-align: center;
|
3115 |
+
}
|
3116 |
+
|
3117 |
+
.tab7 .like_pop_box .sfsi_plus_Popinner {
|
3118 |
+
display: inline-block;
|
3119 |
+
padding: 18px 20px;
|
3120 |
+
box-shadow: 0 0 5px #ccc;
|
3121 |
+
-webkit-box-shadow: 0 0 5px #ccc;
|
3122 |
+
border: 1px solid #ededed;
|
3123 |
+
background: #FFF;
|
3124 |
+
}
|
3125 |
+
|
3126 |
+
.tab7 .like_pop_box .sfsi_plus_Popinner h2 {
|
3127 |
+
margin: 0 0 23px;
|
3128 |
+
padding: 0;
|
3129 |
+
color: #414951;
|
3130 |
+
font-family: helveticabold;
|
3131 |
+
font-size: 26px;
|
3132 |
+
text-align: center;
|
3133 |
+
}
|
3134 |
+
|
3135 |
+
.tab7 .like_pop_box .sfsi_plus_Popinner ul {
|
3136 |
+
margin: 0;
|
3137 |
+
padding: 0;
|
3138 |
+
list-style: none;
|
3139 |
+
text-align: center;
|
3140 |
+
}
|
3141 |
+
|
3142 |
+
.tab7 .like_pop_box .sfsi_plus_Popinner ul li {
|
3143 |
+
margin: 0;
|
3144 |
+
padding: 0;
|
3145 |
+
list-style: none;
|
3146 |
+
display: inline-block;
|
3147 |
+
}
|
3148 |
+
|
3149 |
+
.tab7 .like_pop_box .sfsi_plus_Popinner ul li span {
|
3150 |
+
margin: 0;
|
3151 |
+
width: 54px;
|
3152 |
+
display: block;
|
3153 |
+
background: url(../images/count_bg.png) no-repeat;
|
3154 |
+
height: 24px;
|
3155 |
+
overflow: hidden;
|
3156 |
+
padding: 10px 2px 2px;
|
3157 |
+
font-family: helveticaregular;
|
3158 |
+
font-size: 16px;
|
3159 |
+
text-align: center;
|
3160 |
+
line-height: 24px;
|
3161 |
+
color: #5a6570;
|
3162 |
+
}
|
3163 |
+
|
3164 |
+
.tab7 .like_pop_box .sfsi_plus_Popinner ul li a {
|
3165 |
+
color: #5a6570;
|
3166 |
+
text-decoration: none;
|
3167 |
+
}
|
3168 |
+
|
3169 |
+
.sfsi_plus_outr_div .sfsi_plus_FrntInner .sfsi_plus_wicons {
|
3170 |
+
margin-bottom: 0;
|
3171 |
+
}
|
3172 |
+
|
3173 |
+
.sfsi_plus_outr_div ul {
|
3174 |
+
list-style: none;
|
3175 |
+
margin: 0 0 24px;
|
3176 |
+
padding: 0;
|
3177 |
+
text-align: center;
|
3178 |
+
}
|
3179 |
+
|
3180 |
+
a.sfsiColbtn {
|
3181 |
+
color: #5a6570 !important;
|
3182 |
+
float: right;
|
3183 |
+
font-size: 14px;
|
3184 |
+
margin: -35px -30px 0 0;
|
3185 |
+
position: relative;
|
3186 |
+
right: 0;
|
3187 |
+
font-family: helveticaregular;
|
3188 |
+
width: 100px;
|
3189 |
+
text-decoration: none;
|
3190 |
+
}
|
3191 |
+
|
3192 |
+
.tab3 a.sfsiColbtn {
|
3193 |
+
margin-top: -55px;
|
3194 |
+
}
|
3195 |
+
|
3196 |
+
.sfsi_plus_FrntInner ul li:first-of-type .sfsi_plus_wicons {
|
3197 |
+
margin-left: 0 !important;
|
3198 |
+
}
|
3199 |
+
|
3200 |
+
ul.sfsiplus_tab_3_icns li .trans_bg {
|
3201 |
+
background: #000;
|
3202 |
+
padding-left: 3px;
|
3203 |
+
}
|
3204 |
+
|
3205 |
+
.tab2 .sfsiplus_instagram_section {
|
3206 |
+
padding-bottom: 20px;
|
3207 |
+
}
|
3208 |
+
|
3209 |
+
h1.abt_titl {
|
3210 |
+
text-align: center;
|
3211 |
+
margin: 19% 0 0;
|
3212 |
+
}
|
3213 |
+
|
3214 |
+
.sfcm.sfsi_wicon {
|
3215 |
+
padding: 0;
|
3216 |
+
width: 100% !important;
|
3217 |
+
border: medium none !important;
|
3218 |
+
height: auto !important;
|
3219 |
+
}
|
3220 |
+
|
3221 |
+
.fb_iframe_widget span {
|
3222 |
+
vertical-align: top !important;
|
3223 |
+
}
|
3224 |
+
|
3225 |
+
.sfsi_plus_outr_div .sfsi_plus_FrntInner ul {
|
3226 |
+
margin: 0 0 0 3px;
|
3227 |
+
}
|
3228 |
+
|
3229 |
+
.sfsi_plus_outr_div .sfsi_plus_FrntInner ul li {
|
3230 |
+
margin: 0 3px 0 0;
|
3231 |
+
}
|
3232 |
+
|
3233 |
+
@-moz-document url-prefix() {
|
3234 |
+
.sfcm.sfsi_wicon {
|
3235 |
+
margin: -1px;
|
3236 |
+
padding: 0;
|
3237 |
+
}
|
3238 |
+
}
|
3239 |
+
|
3240 |
+
@media (min-width:320px) and (max-width:480px) {
|
3241 |
+
|
3242 |
+
.sfsi_plus_tool_tip_2,
|
3243 |
+
.tool_tip {
|
3244 |
+
padding: 5px 14px 0;
|
3245 |
+
}
|
3246 |
+
|
3247 |
+
.sfsi_plus_inside:last-child {
|
3248 |
+
margin-bottom: 18px;
|
3249 |
+
clear: both;
|
3250 |
+
}
|
3251 |
+
|
3252 |
+
.sfsi_plus_outr_div {
|
3253 |
+
top: 10%
|
3254 |
+
}
|
3255 |
+
|
3256 |
+
.sfsi_plus_FrntInner .sfsi_plus_wicons {
|
3257 |
+
width: 31px !important;
|
3258 |
+
height: 31px !important;
|
3259 |
+
}
|
3260 |
+
|
3261 |
+
.sfsi_plus_FrntInner .sfsi_plus_wicons img {
|
3262 |
+
width: 100%
|
3263 |
+
}
|
3264 |
+
}
|
3265 |
+
|
3266 |
+
@media (max-width:320px) {
|
3267 |
+
|
3268 |
+
.sfsi_plus_tool_tip_2,
|
3269 |
+
.tool_tip {
|
3270 |
+
padding: 5px 14px 0;
|
3271 |
+
}
|
3272 |
+
|
3273 |
+
.sfsi_plus_inside:last-child {
|
3274 |
+
margin-bottom: 18px;
|
3275 |
+
clear: both;
|
3276 |
+
}
|
3277 |
+
|
3278 |
+
.sfsi_plus_FrntInner .sfsi_plus_wicons {
|
3279 |
+
width: 31px !important;
|
3280 |
+
height: 31px !important;
|
3281 |
+
}
|
3282 |
+
|
3283 |
+
.sfsi_plus_FrntInner .sfsi_plus_wicons img {
|
3284 |
+
width: 100%
|
3285 |
+
}
|
3286 |
+
}
|
3287 |
+
|
3288 |
+
ul.SFSI_lsngfrm {
|
3289 |
+
float: left;
|
3290 |
+
width: 61%
|
3291 |
+
}
|
3292 |
+
|
3293 |
+
ul.SFSI_instructions {
|
3294 |
+
float: left;
|
3295 |
+
width: 39%
|
3296 |
+
}
|
3297 |
+
|
3298 |
+
ul.SFSI_instructions li {
|
3299 |
+
font-size: 12px !important;
|
3300 |
+
line-height: 25px !important;
|
3301 |
+
margin: 0 !important;
|
3302 |
+
padding: 0 0 0 15px !important;
|
3303 |
+
width: 100%
|
3304 |
+
}
|
3305 |
+
|
3306 |
+
/*{Monad}*/
|
3307 |
+
/*Upload Skins css*/
|
3308 |
+
.cstmskin_popup {
|
3309 |
+
width: 500px;
|
3310 |
+
background: #FFF;
|
3311 |
+
box-shadow: 0 0 5px 3px #d8d8d8;
|
3312 |
+
margin: 40px 0px auto;
|
3313 |
+
padding: 20px 25px 20px;
|
3314 |
+
font-family: helveticaregular;
|
3315 |
+
color: #5a6570;
|
3316 |
+
height: auto;
|
3317 |
+
float: left;
|
3318 |
+
position: relative;
|
3319 |
+
left: 35%;
|
3320 |
+
}
|
3321 |
+
|
3322 |
+
.cstomskins_wrpr {
|
3323 |
+
float: left;
|
3324 |
+
width: 100%;
|
3325 |
+
}
|
3326 |
+
|
3327 |
+
.custskinmsg {
|
3328 |
+
float: left;
|
3329 |
+
font-size: 15px;
|
3330 |
+
margin-top: 10px;
|
3331 |
+
width: 100%;
|
3332 |
+
}
|
3333 |
+
|
3334 |
+
.custskinmsg>ul {
|
3335 |
+
color: #000;
|
3336 |
+
float: left;
|
3337 |
+
margin-top: 8px;
|
3338 |
+
width: 100%;
|
3339 |
+
}
|
3340 |
+
|
3341 |
+
ul.cstmskin_iconlist {
|
3342 |
+
float: left;
|
3343 |
+
margin-top: 10px;
|
3344 |
+
width: 100%;
|
3345 |
+
height: 53vh;
|
3346 |
+
overflow-y: scroll;
|
3347 |
+
}
|
3348 |
+
|
3349 |
+
.cstmskin_iconlist>li {
|
3350 |
+
float: left;
|
3351 |
+
margin: 3px 0;
|
3352 |
+
width: 100%;
|
3353 |
+
}
|
3354 |
+
|
3355 |
+
.cstm_icnname {
|
3356 |
+
float: left;
|
3357 |
+
width: 30%;
|
3358 |
+
}
|
3359 |
+
|
3360 |
+
.cstmskins_btn>img {
|
3361 |
+
float: left;
|
3362 |
+
margin-right: 25px;
|
3363 |
+
}
|
3364 |
+
|
3365 |
+
.cstmskin_btn {
|
3366 |
+
width: auto;
|
3367 |
+
float: left;
|
3368 |
+
padding: 3px 20px;
|
3369 |
+
color: #fff;
|
3370 |
+
background-color: #12a252;
|
3371 |
+
text-decoration: none;
|
3372 |
+
margin: 0 10px;
|
3373 |
+
}
|
3374 |
+
|
3375 |
+
.cstmskins_sbmt {
|
3376 |
+
width: 100%;
|
3377 |
+
float: left;
|
3378 |
+
text-align: center;
|
3379 |
+
margin-top: 15px;
|
3380 |
+
}
|
3381 |
+
|
3382 |
+
.done_btn {
|
3383 |
+
width: auto;
|
3384 |
+
padding: 3px 80px;
|
3385 |
+
color: #fff;
|
3386 |
+
background-color: #12a252;
|
3387 |
+
text-decoration: none;
|
3388 |
+
font-size: 18px;
|
3389 |
+
}
|
3390 |
+
|
3391 |
+
.cstmskin_btn:hover,
|
3392 |
+
.done_btn:hover,
|
3393 |
+
.cstmskin_btn:focus,
|
3394 |
+
.done_btn:focus {
|
3395 |
+
color: #fff;
|
3396 |
+
}
|
3397 |
+
|
3398 |
+
.skswrpr,
|
3399 |
+
.dlt_btn {
|
3400 |
+
display: none;
|
3401 |
+
}
|
3402 |
+
|
3403 |
+
.cstmutbewpr {
|
3404 |
+
width: 100%;
|
3405 |
+
float: left;
|
3406 |
+
margin-top: 10px;
|
3407 |
+
}
|
3408 |
+
|
3409 |
+
.cstmutbewpr ul.enough_waffling li {
|
3410 |
+
width: auto;
|
3411 |
+
float: left;
|
3412 |
+
margin-right: 20px;
|
3413 |
+
}
|
3414 |
+
|
3415 |
+
.cstmutbewpr ul.enough_waffling li span {
|
3416 |
+
float: left;
|
3417 |
+
}
|
3418 |
+
|
3419 |
+
.cstmutbewpr ul.enough_waffling li label {
|
3420 |
+
width: auto;
|
3421 |
+
float: left;
|
3422 |
+
margin-top: 10px;
|
3423 |
+
margin-left: 10px;
|
3424 |
+
}
|
3425 |
+
|
3426 |
+
.cstmutbewpr .cstmutbtxtwpr {
|
3427 |
+
width: 100%;
|
3428 |
+
float: left;
|
3429 |
+
padding-top: 10px;
|
3430 |
+
}
|
3431 |
+
|
3432 |
+
.cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr {
|
3433 |
+
width: 100%;
|
3434 |
+
float: left;
|
3435 |
+
display: none;
|
3436 |
+
}
|
3437 |
+
|
3438 |
+
#accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p,
|
3439 |
+
#accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p {
|
3440 |
+
margin-left: 0px;
|
3441 |
+
}
|
3442 |
+
|
3443 |
+
.cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr {
|
3444 |
+
width: 100%;
|
3445 |
+
float: left;
|
3446 |
+
display: none;
|
3447 |
+
}
|
3448 |
+
|
3449 |
+
#accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p label,
|
3450 |
+
#accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p label {
|
3451 |
+
width: 120px;
|
3452 |
+
}
|
3453 |
+
|
3454 |
+
.sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a,
|
3455 |
+
.sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a.sficn {
|
3456 |
+
padding: 0px;
|
3457 |
+
margin: 0px;
|
3458 |
+
width: 100%;
|
3459 |
+
/*float: left;*/
|
3460 |
+
border: medium none;
|
3461 |
+
}
|
3462 |
+
|
3463 |
+
.sfsi_socialwpr {
|
3464 |
+
width: auto;
|
3465 |
+
float: left;
|
3466 |
+
}
|
3467 |
+
|
3468 |
+
.sfsi_socialwpr .sf_fb {
|
3469 |
+
float: left;
|
3470 |
+
margin: 5px 5px 5px 5px;
|
3471 |
+
min-height: 20px;
|
3472 |
+
}
|
3473 |
+
|
3474 |
+
.sfsipyplfrm {
|
3475 |
+
float: left;
|
3476 |
+
margin-top: 10px;
|
3477 |
+
width: 100%;
|
3478 |
+
}
|
3479 |
+
|
3480 |
+
.sfsipyplfrm input[type="submit"] {
|
3481 |
+
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
|
3482 |
+
border: medium none;
|
3483 |
+
color: #0074a2;
|
3484 |
+
cursor: pointer;
|
3485 |
+
font-weight: normal;
|
3486 |
+
margin: 0;
|
3487 |
+
padding: 5px 10px;
|
3488 |
+
text-decoration: underline;
|
3489 |
+
}
|
3490 |
+
|
3491 |
+
.sfsipyplfrm input[type="submit"]:hover {
|
3492 |
+
color: #2ea2cc
|
3493 |
+
}
|
3494 |
+
|
3495 |
+
.pop_up_box_ex {
|
3496 |
+
background: none repeat scroll 0 0 #fff;
|
3497 |
+
box-shadow: 0 0 5px 3px #d8d8d8;
|
3498 |
+
color: #5a6570;
|
3499 |
+
font-family: helveticaregular;
|
3500 |
+
margin: 200px auto;
|
3501 |
+
min-height: 150px;
|
3502 |
+
padding: 20px 25px 0px;
|
3503 |
+
position: relative;
|
3504 |
+
width: 290px;
|
3505 |
+
}
|
3506 |
+
|
3507 |
+
.pop_up_box_ex {
|
3508 |
+
color: #5a6570;
|
3509 |
+
font-family: helveticaregular;
|
3510 |
+
}
|
3511 |
+
|
3512 |
+
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_right_info {
|
3513 |
+
font-family: helveticaregular;
|
3514 |
+
width: 94.7%;
|
3515 |
+
float: left;
|
3516 |
+
}
|
3517 |
+
|
3518 |
+
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_right_info p label.ckckslctn {
|
3519 |
+
display: none;
|
3520 |
+
}
|
3521 |
+
|
3522 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li {
|
3523 |
+
width: 100% !important;
|
3524 |
+
max-width: 100% !important;
|
3525 |
+
border-left: 45px solid transparent;
|
3526 |
+
-webkit-box-sizing: border-box;
|
3527 |
+
-moz-box-sizing: border-box;
|
3528 |
+
;
|
3529 |
+
-ms-box-sizing: border-box;
|
3530 |
+
-o-box-sizing: border-box;
|
3531 |
+
box-sizing: border-box;
|
3532 |
+
}
|
3533 |
+
|
3534 |
+
.tab8 .icons_size>input {
|
3535 |
+
background: none repeat scroll 0 0 #e5e5e5;
|
3536 |
+
width: 80px;
|
3537 |
+
float: left;
|
3538 |
+
padding: 10px 0;
|
3539 |
+
text-align: center;
|
3540 |
+
}
|
3541 |
+
|
3542 |
+
.tab8 .icons_size>ins {
|
3543 |
+
margin-left: 19px;
|
3544 |
+
}
|
3545 |
+
|
3546 |
+
.tab8 .icons_size>span.last {
|
3547 |
+
width: auto !important;
|
3548 |
+
clear: left
|
3549 |
+
}
|
3550 |
+
|
3551 |
+
.tab8 .radio_section.tb_4_ck {
|
3552 |
+
margin: 0 15px 0 0 !important;
|
3553 |
+
}
|
3554 |
+
|
3555 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row,
|
3556 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr p,
|
3557 |
+
.tab8 .options {
|
3558 |
+
float: none;
|
3559 |
+
width: 100%;
|
3560 |
+
border-left: 60px solid transparent;
|
3561 |
+
-webkit-box-sizing: border-box;
|
3562 |
+
-moz-box-sizing: border-box;
|
3563 |
+
-o-box-sizing: border-box;
|
3564 |
+
-ms-box-sizing: border-box;
|
3565 |
+
box-sizing: border-box;
|
3566 |
+
}
|
3567 |
+
|
3568 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr label {
|
3569 |
+
width: auto;
|
3570 |
+
}
|
3571 |
+
|
3572 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .social_icon_like1 ul {
|
3573 |
+
margin-left: 15px
|
3574 |
+
}
|
3575 |
+
|
3576 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .social_icon_like1 li {
|
3577 |
+
width: auto;
|
3578 |
+
min-width: auto;
|
3579 |
+
margin: 0 50px 0 0
|
3580 |
+
}
|
3581 |
+
|
3582 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .usually>li {
|
3583 |
+
width: 85% !important;
|
3584 |
+
max-width: 100% !important;
|
3585 |
+
margin-left: 70px;
|
3586 |
+
font-family: 'helveticaneue-light';
|
3587 |
+
padding-bottom: 5px
|
3588 |
+
}
|
3589 |
+
|
3590 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .options>label {
|
3591 |
+
width: 356px !important;
|
3592 |
+
margin: 0;
|
3593 |
+
width: auto;
|
3594 |
+
margin-bottom: 0;
|
3595 |
+
margin-top: 0px;
|
3596 |
+
}
|
3597 |
+
|
3598 |
+
.tab8 .row.sfsiplus_PostsSettings_section .options .first.chcklbl {
|
3599 |
+
float: left !important;
|
3600 |
+
width: 335px !important;
|
3601 |
+
}
|
3602 |
+
|
3603 |
+
.tab8 .row.sfsiplus_PostsSettings_section .options .chckwpr {
|
3604 |
+
width: 400px;
|
3605 |
+
float: right;
|
3606 |
+
}
|
3607 |
+
|
3608 |
+
.tab8 .row.sfsiplus_PostsSettings_section .options {
|
3609 |
+
width: 90%;
|
3610 |
+
margin: 0;
|
3611 |
+
font-family: 'helveticaneue-light';
|
3612 |
+
float: left;
|
3613 |
+
margin-bottom: 10px;
|
3614 |
+
max-width: 895px;
|
3615 |
+
border-left: none;
|
3616 |
+
}
|
3617 |
+
|
3618 |
+
.sfsiplus_toggleonlystndrshrng {
|
3619 |
+
margin-bottom: 30px !important
|
3620 |
+
}
|
3621 |
+
|
3622 |
+
.tab8 .row.sfsiplus_PostsSettings_section .options.shareicontextfld {
|
3623 |
+
margin: 15px 0;
|
3624 |
+
}
|
3625 |
+
|
3626 |
+
.tab8 .sfsiplus_tab_3_icns.flthmonpg .radio {
|
3627 |
+
margin-top: 55px !important;
|
3628 |
+
}
|
3629 |
+
|
3630 |
+
.tab8 .radiodisplaysection {
|
3631 |
+
float: left;
|
3632 |
+
}
|
3633 |
+
|
3634 |
+
|
3635 |
+
|
3636 |
+
/*palak css end*/
|
3637 |
+
/*modify by palak*/
|
3638 |
+
.tab8 ul.sfsiplus_icn_listing8 li {
|
3639 |
+
float: left;
|
3640 |
+
padding: 11px 0 26px 0;
|
3641 |
+
width: 100%;
|
3642 |
+
/*max-width: 1000px;*/
|
3643 |
+
margin: 0
|
3644 |
+
}
|
3645 |
+
|
3646 |
+
.sfsiplusplacethemanulywpr {
|
3647 |
+
max-width: 98% !important
|
3648 |
+
}
|
3649 |
+
|
3650 |
+
/*modify by palak*/
|
3651 |
+
/*modify by palak*/
|
3652 |
+
.tab8 ul.sfsiplus_icn_listing8 {
|
3653 |
+
list-style: outside none none;
|
3654 |
+
margin: 5px 0 0;
|
3655 |
+
overflow: hidden;
|
3656 |
+
}
|
3657 |
+
|
3658 |
+
/*modify by palak*/
|
3659 |
+
.sfsiplus_right_info label.sfsiplus_sub-subtitle {
|
3660 |
+
font-size: 16px !important;
|
3661 |
+
font-weight: normal;
|
3662 |
+
}
|
3663 |
+
|
3664 |
+
ul.plus_icn_listing li .sfsiplus_right_info label.sfsiplus_sub-subtitle a {
|
3665 |
+
font-size: 13px;
|
3666 |
+
}
|
3667 |
+
|
3668 |
+
.tab8 ul.sfsiplus_tab_3_icns li .radio {
|
3669 |
+
margin-top: 7px;
|
3670 |
+
}
|
3671 |
+
|
3672 |
+
.tab8 ul.sfsiplus_tab_3_icns li label {
|
3673 |
+
line-height: 50px !important;
|
3674 |
+
}
|
3675 |
+
|
3676 |
+
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns li {
|
3677 |
+
width: 50%;
|
3678 |
+
max-width: 450px;
|
3679 |
+
min-width: 420px;
|
3680 |
+
padding-left: 0;
|
3681 |
+
padding-bottom: 15px
|
3682 |
+
}
|
3683 |
+
|
3684 |
+
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(1),
|
3685 |
+
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(2),
|
3686 |
+
.tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(3) {
|
3687 |
+
width: 33% !important
|
3688 |
+
}
|
3689 |
+
|
3690 |
+
.space.disblfltonmbl p.list {
|
3691 |
+
width: 100%;
|
3692 |
+
margin-bottom: 28px
|
3693 |
+
}
|
3694 |
+
|
3695 |
+
|
3696 |
+
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p {
|
3697 |
+
display: table
|
3698 |
+
}
|
3699 |
+
|
3700 |
+
/*modify by palak*/
|
3701 |
+
.tab8 .row {
|
3702 |
+
clear: both;
|
3703 |
+
display: block;
|
3704 |
+
float: left;
|
3705 |
+
font-family: helveticaregular;
|
3706 |
+
line-height: 42px;
|
3707 |
+
margin-top: 25px;
|
3708 |
+
padding-top: 15px;
|
3709 |
+
width: 100%;
|
3710 |
+
}
|
3711 |
+
|
3712 |
+
/*modify by palak*/
|
3713 |
+
.tab8 .icons_size {
|
3714 |
+
margin-top: -12px;
|
3715 |
+
}
|
3716 |
+
|
3717 |
+
.tab8 .icons_size {
|
3718 |
+
position: relative;
|
3719 |
+
font-family: 'helveticaneue-light';
|
3720 |
+
width: 538px;
|
3721 |
+
float: right
|
3722 |
+
}
|
3723 |
+
|
3724 |
+
.tab8 .icons_size span {
|
3725 |
+
display: block;
|
3726 |
+
float: left;
|
3727 |
+
font-size: 20px;
|
3728 |
+
font-weight: 400;
|
3729 |
+
line-height: 42px;
|
3730 |
+
margin-right: 18px;
|
3731 |
+
}
|
3732 |
+
|
3733 |
+
.tab8.icons_size span.last {
|
3734 |
+
margin-left: 55px;
|
3735 |
+
}
|
3736 |
+
|
3737 |
+
.tab8 .icons_size ins {
|
3738 |
+
float: left;
|
3739 |
+
font-size: 17px;
|
3740 |
+
font-weight: 400;
|
3741 |
+
margin-right: 25px;
|
3742 |
+
text-decoration: none;
|
3743 |
+
margin-bottom: 20px;
|
3744 |
+
}
|
3745 |
+
|
3746 |
+
.tab8 .social_icon_like1 {
|
3747 |
+
float: left;
|
3748 |
+
margin: 0;
|
3749 |
+
padding: 30px 0 0;
|
3750 |
+
text-align: center;
|
3751 |
+
width: 100%;
|
3752 |
+
}
|
3753 |
+
|
3754 |
+
.tab8 .social_icon_like1 ul {
|
3755 |
+
list-style: outside none none;
|
3756 |
+
margin: 0;
|
3757 |
+
padding: 0;
|
3758 |
+
text-align: center;
|
3759 |
+
}
|
3760 |
+
|
3761 |
+
.tab8 .social_icon_like1 li {
|
3762 |
+
display: inline-block;
|
3763 |
+
list-style: outside none none;
|
3764 |
+
margin: 0 0 0 45px !important;
|
3765 |
+
padding: 0;
|
3766 |
+
width: auto !important;
|
3767 |
+
min-width: 100px !important;
|
3768 |
+
}
|
3769 |
+
|
3770 |
+
.tab8 .social_icon_like1 li a {
|
3771 |
+
color: #5a6570;
|
3772 |
+
display: block;
|
3773 |
+
text-decoration: none;
|
3774 |
+
}
|
3775 |
+
|
3776 |
+
.tab8 .social_icon_like1 li img {
|
3777 |
+
display: block;
|
3778 |
+
float: left;
|
3779 |
+
margin-right: 5px;
|
3780 |
+
}
|
3781 |
+
|
3782 |
+
.tab8 ul.usually {
|
3783 |
+
list-style: outside none none;
|
3784 |
+
margin: 28px 0 15px 60px;
|
3785 |
+
padding: 0;
|
3786 |
+
float: left
|
3787 |
+
}
|
3788 |
+
|
3789 |
+
.tab8 ul.usually li {
|
3790 |
+
font-size: 17px;
|
3791 |
+
list-style: outside none none;
|
3792 |
+
margin: 0;
|
3793 |
+
padding: 0;
|
3794 |
+
text-align: left;
|
3795 |
+
width: auto;
|
3796 |
+
}
|
3797 |
+
|
3798 |
+
.tab8 ul.enough_waffling {
|
3799 |
+
list-style: outside none none;
|
3800 |
+
margin: 25px 0 0;
|
3801 |
+
padding: 0;
|
3802 |
+
text-align: center;
|
3803 |
+
}
|
3804 |
+
|
3805 |
+
.tab8 ul.enough_waffling li {
|
3806 |
+
display: inline-block;
|
3807 |
+
list-style: outside none none;
|
3808 |
+
margin: 0 22px;
|
3809 |
+
padding: 0;
|
3810 |
+
}
|
3811 |
+
|
3812 |
+
.tab8 ul.enough_waffling li span {
|
3813 |
+
float: left;
|
3814 |
+
}
|
3815 |
+
|
3816 |
+
.tab8 ul.enough_waffling li label {
|
3817 |
+
color: #5a6570;
|
3818 |
+
float: left;
|
3819 |
+
font-family: helveticaregular;
|
3820 |
+
font-size: 18px;
|
3821 |
+
font-weight: 400;
|
3822 |
+
line-height: 38px;
|
3823 |
+
margin: 0 0 0 20px;
|
3824 |
+
text-align: center;
|
3825 |
+
}
|
3826 |
+
|
3827 |
+
/*modify by palak*/
|
3828 |
+
.tab8 .row {
|
3829 |
+
clear: both;
|
3830 |
+
display: block;
|
3831 |
+
float: left;
|
3832 |
+
font-family: helveticaregular;
|
3833 |
+
line-height: 42px;
|
3834 |
+
margin-top: 0px;
|
3835 |
+
padding-top: 10px;
|
3836 |
+
width: 100%;
|
3837 |
+
}
|
3838 |
+
|
3839 |
+
/*modify by palak*/
|
3840 |
+
.tab8 .options {
|
3841 |
+
clear: both;
|
3842 |
+
float: left;
|
3843 |
+
margin-top: 25px;
|
3844 |
+
width: auto;
|
3845 |
+
float: none;
|
3846 |
+
}
|
3847 |
+
|
3848 |
+
.tab8 .options label.first {
|
3849 |
+
font-family: 'helveticaneue-light';
|
3850 |
+
font-size: 18px;
|
3851 |
+
}
|
3852 |
+
|
3853 |
+
.tab8 .options label {
|
3854 |
+
color: #5a6570;
|
3855 |
+
float: left;
|
3856 |
+
font-family: 'helveticaneue-light';
|
3857 |
+
font-size: 18px;
|
3858 |
+
line-height: 46px;
|
3859 |
+
width: 345px;
|
3860 |
+
}
|
3861 |
+
|
3862 |
+
.tab8 .options input {
|
3863 |
+
background: none repeat scroll 0 0 #e5e5e5;
|
3864 |
+
border: 0 none;
|
3865 |
+
box-shadow: 2px 2px 3px #dcdcdc inset;
|
3866 |
+
float: left;
|
3867 |
+
padding: 10px;
|
3868 |
+
width: 308px;
|
3869 |
+
}
|
3870 |
+
|
3871 |
+
.tab8 .options .field {
|
3872 |
+
float: left;
|
3873 |
+
position: relative;
|
3874 |
+
|
3875 |
+
}
|
3876 |
+
|
3877 |
+
.tab8 .options .field .select {
|
3878 |
+
background: url(../images/select_bg1.jpg) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
|
3879 |
+
display: block;
|
3880 |
+
font-family: helveticaregular;
|
3881 |
+
padding-left: 17px;
|
3882 |
+
width: 215px;
|
3883 |
+
}
|
3884 |
+
|
3885 |
+
.tab8 .options .field select.styled {
|
3886 |
+
height: 46px;
|
3887 |
+
left: 0;
|
3888 |
+
line-height: 46px;
|
3889 |
+
position: absolute;
|
3890 |
+
top: 0;
|
3891 |
+
width: 213px;
|
3892 |
+
}
|
3893 |
+
|
3894 |
+
.tab8 .options .field select.styled {
|
3895 |
+
line-height: 46px;
|
3896 |
+
}
|
3897 |
+
|
3898 |
+
.tab8 ul.sfsiplus_icn_listing8 li .snglchckcntr .sfsiplus_right_info {
|
3899 |
+
float: left;
|
3900 |
+
margin-right: 0;
|
3901 |
+
text-align: left;
|
3902 |
+
width: auto;
|
3903 |
+
font-family: 'helveticaneue-light';
|
3904 |
+
font-size: 18px;
|
3905 |
+
line-height: 30px;
|
3906 |
+
}
|
3907 |
+
|
3908 |
+
.chckwpr .snglchckcntr:first-child {
|
3909 |
+
float: left;
|
3910 |
+
}
|
3911 |
+
|
3912 |
+
.chckwpr .snglchckcntr:last-child {
|
3913 |
+
float: left;
|
3914 |
+
margin-left: 110px;
|
3915 |
+
}
|
3916 |
+
|
3917 |
+
.chckwpr {
|
3918 |
+
width: 100%;
|
3919 |
+
float: left;
|
3920 |
+
}
|
3921 |
+
|
3922 |
+
.cstmutbchnlidwpr .utbe_instruction,
|
3923 |
+
.cstmutbchnlnmewpr .utbe_instruction,
|
3924 |
+
.lnkdin_instruction {
|
3925 |
+
float: left;
|
3926 |
+
line-height: 22px;
|
3927 |
+
margin-top: 10px;
|
3928 |
+
width: 100%;
|
3929 |
+
}
|
3930 |
+
|
3931 |
+
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p {
|
3932 |
+
font-size: 20px;
|
3933 |
+
}
|
3934 |
+
|
3935 |
+
#accordion .tab8 ul.sfsiplus_tab_3_icns {
|
3936 |
+
margin-top: 25px;
|
3937 |
+
}
|
3938 |
+
|
3939 |
+
#accordion .tab8 ul.sfsiplus_tab_3_icns.flthmonpg {
|
3940 |
+
margin-left: 45px
|
3941 |
+
}
|
3942 |
+
|
3943 |
+
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisplaysharingtxt {
|
3944 |
+
padding-top: 5px;
|
3945 |
+
display: inline;
|
3946 |
+
}
|
3947 |
+
|
3948 |
+
#accordion .tab8 ul.sfsiplus_shwthmbfraftr .labelhdng4,
|
3949 |
+
#accordion .tab8 ul.sfsiplus_shwthmbfraftr .row h4.labelhdng4 {
|
3950 |
+
color: #555;
|
3951 |
+
font-size: 20px;
|
3952 |
+
margin-left: 20px;
|
3953 |
+
font-family: 'helveticaregular'
|
3954 |
+
}
|
3955 |
+
|
3956 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row.sfsiplus_PostsSettings_section {
|
3957 |
+
border-left: 105px solid transparent;
|
3958 |
+
float: left;
|
3959 |
+
padding-top: 0
|
3960 |
+
}
|
3961 |
+
|
3962 |
+
.sfsiplus_toggleonlystndrshrng {
|
3963 |
+
margin-bottom: 0 !important
|
3964 |
+
}
|
3965 |
+
|
3966 |
+
.radiodisplaysection {
|
3967 |
+
float: left
|
3968 |
+
}
|
3969 |
+
|
3970 |
+
.tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row.sfsiplus_PostsSettings_section>.labelhdng4 {
|
3971 |
+
margin-bottom: 20px !important
|
3972 |
+
}
|
3973 |
+
|
3974 |
+
.sfsiplus_shwthmbfraftr {
|
3975 |
+
margin-top: 5px !important
|
3976 |
+
}
|
3977 |
+
|
3978 |
+
label.sfsiplus_toglpstpgsbttl {
|
3979 |
+
float: left;
|
3980 |
+
margin-top: 5px !important
|
3981 |
+
}
|
3982 |
+
|
3983 |
+
#accordion .tab8 ul.sfsiplus_shwthmbfraftr .row h4 {
|
3984 |
+
font-family: 'helveticaneue-light';
|
3985 |
+
font-weight: normal;
|
3986 |
+
font-size: 18px;
|
3987 |
+
color: #69737c;
|
3988 |
+
float: left
|
3989 |
+
}
|
3990 |
+
|
3991 |
+
.tab8 .row.sfsiplus_PostsSettings_section .options .seconds.chcklbl {
|
3992 |
+
float: right;
|
3993 |
+
width: 400px !important;
|
3994 |
+
}
|
3995 |
+
|
3996 |
+
.sfsibeforpstwpr {
|
3997 |
+
width: 100%;
|
3998 |
+
float: left;
|
3999 |
+
line-height: 18px;
|
4000 |
+
margin: 5px 0;
|
4001 |
+
}
|
4002 |
+
|
4003 |
+
.sfsiaftrpstwpr {
|
4004 |
+
width: 100%;
|
4005 |
+
float: left;
|
4006 |
+
line-height: 18px;
|
4007 |
+
margin: 5px 0;
|
4008 |
+
}
|
4009 |
+
|
4010 |
+
.sfsibeforpstwpr .sfsi_plus_Sicons span {
|
4011 |
+
font-size: 20px;
|
4012 |
+
}
|
4013 |
+
|
4014 |
+
.sfsiaftrpstwpr .sfsi_plus_Sicons span {
|
4015 |
+
font-size: 20px;
|
4016 |
+
}
|
4017 |
+
|
4018 |
+
.sfsibeforpstwpr .sfsi_plus_Sicons {}
|
4019 |
+
|
4020 |
+
.sfsiaftrpstwpr .sfsi_plus_Sicons {}
|
4021 |
+
|
4022 |
+
.sfsibeforpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr {
|
4023 |
+
width: auto;
|
4024 |
+
float: left;
|
4025 |
+
}
|
4026 |
+
|
4027 |
+
.sfsiaftrpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr {
|
4028 |
+
width: auto;
|
4029 |
+
float: left;
|
4030 |
+
}
|
4031 |
+
|
4032 |
+
.sfsibeforpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr .sfsi_plus_wicons {
|
4033 |
+
float: left;
|
4034 |
+
}
|
4035 |
+
|
4036 |
+
.sfsiaftrpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr .sfsi_plus_wicons {
|
4037 |
+
float: left;
|
4038 |
+
}
|
4039 |
+
|
4040 |
+
.sfsi_flicnsoptn3 {
|
4041 |
+
color: #69737c;
|
4042 |
+
float: left;
|
4043 |
+
font-size: 20px;
|
4044 |
+
margin: 62px 5px 0 20px;
|
4045 |
+
font-family: 'helveticaneue-light';
|
4046 |
+
|
4047 |
+
width: 120px;
|
4048 |
+
}
|
4049 |
+
|
4050 |
+
.sfsi_ckckslctnlbl {
|
4051 |
+
font-weight: bold;
|
4052 |
+
}
|
4053 |
+
|
4054 |
+
.sfsibeforpstwpr iframe {
|
4055 |
+
max-width: none;
|
4056 |
+
vertical-align: middle;
|
4057 |
+
}
|
4058 |
+
|
4059 |
+
.sfsiaftrpstwpr iframe {
|
4060 |
+
max-width: none;
|
4061 |
+
vertical-align: middle;
|
4062 |
+
}
|
4063 |
+
|
4064 |
+
.sfwp_fivestar_ul li {
|
4065 |
+
display: block;
|
4066 |
+
padding-right: 20px;
|
4067 |
+
}
|
4068 |
+
|
4069 |
+
.sfwp_fivestar_ul li {
|
4070 |
+
display: block;
|
4071 |
+
padding-right: 20px;
|
4072 |
+
}
|
4073 |
+
|
4074 |
+
.fb_iframe_widget iframe {
|
4075 |
+
max-width: none;
|
4076 |
+
}
|
4077 |
+
|
4078 |
+
.sfsi_mainContainer p.bldtxtmsg {
|
4079 |
+
float: left;
|
4080 |
+
font-size: 15px;
|
4081 |
+
/*font-weight: bold;*/
|
4082 |
+
margin-top: 12px;
|
4083 |
+
width: 100%;
|
4084 |
+
}
|
4085 |
+
|
4086 |
+
.sfsi_mainContainer p.translatelilne {
|
4087 |
+
float: left;
|
4088 |
+
font-size: 15px;
|
4089 |
+
font-weight: bold;
|
4090 |
+
color: #414951;
|
4091 |
+
margin-top: 12px;
|
4092 |
+
width: 100%;
|
4093 |
+
}
|
4094 |
+
|
4095 |
+
.sfsiplus_icn_listing8 li>div {
|
4096 |
+
width: auto;
|
4097 |
+
float: left;
|
4098 |
+
}
|
4099 |
+
|
4100 |
+
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng {
|
4101 |
+
padding-bottom: 30px;
|
4102 |
+
float: left;
|
4103 |
+
}
|
4104 |
+
|
4105 |
+
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng {
|
4106 |
+
background: none;
|
4107 |
+
}
|
4108 |
+
|
4109 |
+
#accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng code {
|
4110 |
+
background: none repeat scroll 0 0 transparent;
|
4111 |
+
padding-left: 0px;
|
4112 |
+
padding-right: 0px;
|
4113 |
+
}
|
4114 |
+
|
4115 |
+
.options.sfsipluspstvwpr {
|
4116 |
+
margin-left: 17% !important;
|
4117 |
+
margin-left: 0% !important;
|
4118 |
+
}
|
4119 |
+
|
4120 |
+
.tab8 .row.sfsiplus_PostsSettings_section .options.sfsipluspstvwpr .first.chcklbl {
|
4121 |
+
width: 180px !important;
|
4122 |
+
}
|
4123 |
+
|
4124 |
+
.sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr {
|
4125 |
+
overflow: visible;
|
4126 |
+
}
|
4127 |
+
|
4128 |
+
/*.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1{margin: 2px 35px 2px !important;clear:both;}*/
|
4129 |
+
.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a img {
|
4130 |
+
margin: 2px 12px 2px !important;
|
4131 |
+
clear: both;
|
4132 |
+
text-align: center;
|
4133 |
+
float: none;
|
4134 |
+
}
|
4135 |
+
|
4136 |
+
.cstmicon1 {
|
4137 |
+
text-align: center;
|
4138 |
+
}
|
4139 |
+
|
4140 |
+
.sfsi_plus_Sicons img,
|
4141 |
+
.sfsiplusid_facebook img,
|
4142 |
+
.sfsiplusid_twitter img {
|
4143 |
+
height: 20px;
|
4144 |
+
}
|
4145 |
+
|
4146 |
+
.sfsi_plus_wicons a.sficn,
|
4147 |
+
.sfsi_plus_wicons .sfsi_plus_inside a,
|
4148 |
+
.sfsi_plus_Sicons div a {
|
4149 |
+
box-shadow: none;
|
4150 |
+
border: none;
|
4151 |
+
}
|
4152 |
+
|
4153 |
+
.sfsi_plus_Sicons .sf_pinit {
|
4154 |
+
margin-right: 4px;
|
4155 |
+
}
|
4156 |
+
|
4157 |
+
.sfsi_plus_Sicons .sf_pinit>span {
|
4158 |
+
height: 22px !important;
|
4159 |
+
vertical-align: middle;
|
4160 |
+
}
|
4161 |
+
|
4162 |
+
.sfsi_plus_Sicons .sf_pinit>span {
|
4163 |
+
height: 20px !important;
|
4164 |
+
vertical-align: middle;
|
4165 |
+
}
|
4166 |
+
|
4167 |
+
/*.sfsi_plus_Sicons .sf_pinit > span > span
|
4168 |
+
{
|
4169 |
+
display: inline-block;
|
4170 |
+
width: 47px !important;
|
4171 |
+
position: relative !important;
|
4172 |
+
margin-left: 40px;
|
4173 |
+
vertical-align: top;
|
4174 |
+
right: 0 !important;
|
4175 |
+
}*/
|
4176 |
+
.sfsibeforpstwpr .sfsi_plus_Sicons .sf_pinit span {
|
4177 |
+
font-size: 11px !important;
|
4178 |
+
}
|
4179 |
+
|
4180 |
+
.sfsiaftrpstwpr .sfsi_plus_Sicons .sf_pinit span {
|
4181 |
+
font-size: 11px !important;
|
4182 |
+
}
|
4183 |
+
|
4184 |
+
.sfsibeforpstwpr .sfsi_plus_Sicons .sfsi_plus_inside .icon2 span {
|
4185 |
+
font-size: 11px !important;
|
4186 |
+
}
|
4187 |
+
|
4188 |
+
.sfsiaftrpstwpr .sfsi_plus_Sicons .sfsi_plus_inside .icon2 span {
|
4189 |
+
font-size: 11px !important;
|
4190 |
+
}
|
4191 |
+
|
4192 |
+
.sfsi_plus_wicons a {
|
4193 |
+
box-shadow: none !important;
|
4194 |
+
}
|
4195 |
+
|
4196 |
+
.sfsi_plus_inside .fb_iframe_widget {
|
4197 |
+
-webkit-appearance: none !important;
|
4198 |
+
}
|
4199 |
+
|
4200 |
+
.sfsi_plus_inside img {
|
4201 |
+
margin-bottom: 0;
|
4202 |
+
vertical-align: bottom !important;
|
4203 |
+
}
|
4204 |
+
|
4205 |
+
.sfsi_plus_Sicons .sf_pinit {
|
4206 |
+
margin: 0 0 0 10px;
|
4207 |
+
}
|
4208 |
+
|
4209 |
+
.wp-block-ultimate-social-media-plus-sfsi-plus-share-block .sfsi_plus_block_text_before_icon {
|
4210 |
+
display: inline-block;
|
4211 |
+
vertical-align: top;
|
4212 |
+
}
|
4213 |
+
|
4214 |
+
.wp-block-ultimate-social-media-plus-sfsi-plus-share-block .sfsi_plus_block {
|
4215 |
+
display: inline-block
|
4216 |
+
}
|
4217 |
+
|
4218 |
+
/* MZ CODE START */
|
4219 |
+
.sfsi_plus_vk_tool_bdr {
|
4220 |
+
width: 68px;
|
4221 |
+
height: auto
|
4222 |
+
}
|
4223 |
+
|
4224 |
+
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside {
|
4225 |
+
text-align: center;
|
4226 |
+
width: 100%;
|
4227 |
+
float: left;
|
4228 |
+
overflow: hidden
|
4229 |
+
}
|
4230 |
+
|
4231 |
+
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon1 {
|
4232 |
+
margin: 2px 0 2px 0;
|
4233 |
+
height: 28px;
|
4234 |
+
display: inline-block;
|
4235 |
+
float: none
|
4236 |
+
}
|
4237 |
+
|
4238 |
+
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon2 {
|
4239 |
+
margin: 5px auto;
|
4240 |
+
min-height: 25px !important;
|
4241 |
+
display: block;
|
4242 |
+
overflow: hidden;
|
4243 |
+
}
|
4244 |
+
|
4245 |
+
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon3 {
|
4246 |
+
margin: 2px 0 2px 0;
|
4247 |
+
height: 20px;
|
4248 |
+
display: inline-block;
|
4249 |
+
float: none
|
4250 |
+
}
|
4251 |
+
|
4252 |
+
.sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon4 {
|
4253 |
+
display: inline-block !important;
|
4254 |
+
float: none !important;
|
4255 |
+
vertical-align: middle !important;
|
4256 |
+
width: 100% !important
|
4257 |
+
}
|
4258 |
+
|
4259 |
+
.sfsiplusid_telegram .sfsi_plus_inside .icon2 img,
|
4260 |
+
.sfsiplusid_vk .sfsi_plus_inside .icon2 img,
|
4261 |
+
.sfsiplusid_weibo .sfsi_plus_inside .icon2 img,
|
4262 |
+
.sfsiplusid_xing .sfsi_plus_inside .icon2 img {
|
4263 |
+
width: 80px;
|
4264 |
+
height: 24px;
|
4265 |
+
}
|
4266 |
+
|
4267 |
+
.sfsiplusid_vk .sfsi_plus_inside .icon1 img,
|
4268 |
+
.sfsiplusid_weibo .sfsi_plus_inside .icon1 img,
|
4269 |
+
.sfsiplusid_xing .sfsi_plus_inside .icon1 img {
|
4270 |
+
width: 80px;
|
4271 |
+
}
|
4272 |
+
|
4273 |
+
/* MZ CODE END */
|
4274 |
+
.sfsiplusid_ok .sfsi_plus_inside,
|
4275 |
+
.sfsiplusid_telegram .sfsi_plus_inside {
|
4276 |
+
text-align: center;
|
4277 |
+
}
|
4278 |
+
|
4279 |
+
.sfsiplusid_ok .sfsi_plus_inside .icon3 img,
|
4280 |
+
.sfsiplusid_telegram .sfsi_plus_inside .icon1 img {
|
4281 |
+
width: 107px;
|
4282 |
+
height: 37px;
|
4283 |
+
}
|
4284 |
+
|
4285 |
+
.sfsiplusid_ok .sfsi_plus_inside .icon2 img {
|
4286 |
+
width: 65px;
|
4287 |
+
height: 30px;
|
4288 |
+
margin-top: 5px;
|
4289 |
+
}
|
4290 |
+
|
4291 |
+
.sfsiplusid_ok .sfsi_plus_inside .icon1 img {
|
4292 |
+
width: 103px;
|
4293 |
+
height: 25px;
|
4294 |
+
}
|
4295 |
+
|
4296 |
+
.sfsiplusid_vk .sfsi_plus_inside .icon1 img,
|
4297 |
+
.sfsiplusid_weibo .sfsi_plus_inside .icon1 img,
|
4298 |
+
.sfsiplusid_xing .sfsi_plus_inside .icon1 img {
|
4299 |
+
width: 80px;
|
4300 |
+
}
|
4301 |
+
|
4302 |
+
.sfsiplusid_wechat .sfsi_plus_inside .icon1 {
|
4303 |
+
margin: 10px;
|
4304 |
+
}
|
4305 |
+
|
4306 |
+
.sfsiplusid_round_icon_wechat {
|
4307 |
+
border-radius: 20px;
|
4308 |
+
}
|
4309 |
+
|
4310 |
+
.sfsi_plus_overlay {
|
4311 |
+
background: rgba(0, 0, 0, .8);
|
4312 |
+
width: 100%;
|
4313 |
+
height: 100%;
|
4314 |
+
top: 0;
|
4315 |
+
left: 0;
|
4316 |
+
z-index: 99999999;
|
4317 |
+
position: fixed;
|
4318 |
+
}
|
4319 |
+
|
4320 |
+
.sfsi_plus_wechat_scan .sfsi_plus_inner_display {
|
4321 |
+
text-align: center;
|
4322 |
+
vertical-align: middle;
|
4323 |
+
margin-top: 50px;
|
4324 |
+
}
|
4325 |
+
|
4326 |
+
.sfsi_plus_overlay a.close_btn {
|
4327 |
+
position: absolute;
|
4328 |
+
top: 20px;
|
4329 |
+
right: 20px;
|
4330 |
+
background: #fff;
|
4331 |
+
border-radius: 15px;
|
4332 |
+
width: 30px;
|
4333 |
+
height: 30px;
|
4334 |
+
line-height: 30px;
|
4335 |
+
text-align: center;
|
4336 |
+
}
|
4337 |
+
|
4338 |
+
.hide {
|
4339 |
+
display: none;
|
4340 |
+
}
|
4341 |
+
|
4342 |
+
.show {
|
4343 |
+
display: block;
|
4344 |
+
}
|
4345 |
+
|
4346 |
+
.sfsiplusid_facebook .icon3 span {
|
4347 |
+
/* width: 62px !important; */
|
4348 |
+
height: 20px !important;
|
4349 |
+
}
|
4350 |
+
|
4351 |
+
.sfsiplusid_facebook .icon3 iframe {
|
4352 |
+
width: unset !important;
|
4353 |
+
height: unset !important;
|
4354 |
+
}
|
4355 |
+
.sfsiplusid_twitter .icon2 iframe{
|
4356 |
+
/* width: 62px !important; */
|
4357 |
+
height:20px!important;
|
4358 |
+
}
|
4359 |
+
|
4360 |
+
a.pop-up .radio {
|
4361 |
+
opacity: 0.5;
|
4362 |
+
background-position: 0px 0px !important;
|
4363 |
+
}
|
4364 |
+
|
4365 |
+
.tab8 .sfsi_plus_responsive_icon_option_li .options .first.first.first {
|
4366 |
+
width: 25% !important;
|
4367 |
+
}
|
4368 |
+
|
4369 |
+
.sfsi_plus_responsive_icon_gradient {
|
4370 |
+
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.17) 0%, rgba(255, 255, 255, 0.17) 100%);
|
4371 |
+
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.17) 0%, rgba(255, 255, 255, 0.17) 100%);
|
4372 |
+
background-image: linear-gradient(to bottom, rgba(0, 0, 0, .17) 0%, rgba(255, 255, 255, .17) 100%);
|
4373 |
+
}
|
4374 |
+
|
4375 |
+
.sfsi_plus_responsive_icons a {
|
4376 |
+
text-decoration: none !important;
|
4377 |
+
box-shadow: none !important;
|
4378 |
+
}
|
4379 |
+
|
4380 |
+
.sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_facebook_container {
|
4381 |
+
background-color: #336699;
|
4382 |
+
}
|
4383 |
+
|
4384 |
+
.sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_follow_container {
|
4385 |
+
background-color: #00B04E;
|
4386 |
+
}
|
4387 |
+
|
4388 |
+
.sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_follow_container {
|
4389 |
+
background-color: #00B04E;
|
4390 |
+
}
|
4391 |
+
|
4392 |
+
.sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_twitter_container {
|
4393 |
+
background-color: #55ACEE;
|
4394 |
+
}
|
4395 |
+
|
4396 |
+
.sfsi_plus_small_button {
|
4397 |
+
line-height: 0px;
|
4398 |
+
height: unset;
|
4399 |
+
padding: 6px !important;
|
4400 |
+
}
|
4401 |
+
|
4402 |
+
.sfsi_plus_small_button span {
|
4403 |
+
margin-left: 10px;
|
4404 |
+
font-size: 16px;
|
4405 |
+
padding: 0px;
|
4406 |
+
line-height: 16px;
|
4407 |
+
vertical-align: -webkit-baseline-middle !important;
|
4408 |
+
margin-left: 10px;
|
4409 |
+
}
|
4410 |
+
|
4411 |
+
.sfsi_plus_small_button img {
|
4412 |
+
max-height: 16px !important;
|
4413 |
+
padding: 0px;
|
4414 |
+
line-height: 0px;
|
4415 |
+
vertical-align: -webkit-baseline-middle !important;
|
4416 |
+
}
|
4417 |
+
|
4418 |
+
.sfsi_plus_medium_button span {
|
4419 |
+
margin-left: 10px;
|
4420 |
+
font-size: 18px;
|
4421 |
+
padding: 0px;
|
4422 |
+
line-height: 16px;
|
4423 |
+
vertical-align: -webkit-baseline-middle !important;
|
4424 |
+
margin-left: 10px;
|
4425 |
+
}
|
4426 |
+
|
4427 |
+
.sfsi_plus_medium_button img {
|
4428 |
+
max-height: 16px !important;
|
4429 |
+
padding: 0px;
|
4430 |
+
line-height: 0px;
|
4431 |
+
vertical-align: -webkit-baseline-middle !important;
|
4432 |
+
}
|
4433 |
+
|
4434 |
+
.sfsi_plus_medium_button {
|
4435 |
+
line-height: 0px;
|
4436 |
+
height: unset;
|
4437 |
+
padding: 10px !important;
|
4438 |
+
}
|
4439 |
+
|
4440 |
+
.sfsi_plus_medium_button span {
|
4441 |
+
margin-left: 10px;
|
4442 |
+
font-size: 18px;
|
4443 |
+
padding: 0px;
|
4444 |
+
line-height: 16px;
|
4445 |
+
vertical-align: -webkit-baseline-middle !important;
|
4446 |
+
margin-left: 10px;
|
4447 |
+
}
|
4448 |
+
|
4449 |
+
.sfsi_plus_medium_button img {
|
4450 |
+
max-height: 16px !important;
|
4451 |
+
padding: 0px;
|
4452 |
+
line-height: 0px;
|
4453 |
+
vertical-align: -webkit-baseline-middle !important;
|
4454 |
+
}
|
4455 |
+
|
4456 |
+
.sfsi_plus_medium_button {
|
4457 |
+
line-height: 0px;
|
4458 |
+
height: unset;
|
4459 |
+
padding: 10px !important;
|
4460 |
+
}
|
4461 |
+
|
4462 |
+
.sfsi_plus_large_button span {
|
4463 |
+
font-size: 20px;
|
4464 |
+
padding: 0px;
|
4465 |
+
line-height: 16px;
|
4466 |
+
vertical-align: -webkit-baseline-middle !important;
|
4467 |
+
display: inline;
|
4468 |
+
margin-left: 10px;
|
4469 |
+
}
|
4470 |
+
|
4471 |
+
.sfsi_plus_large_button img {
|
4472 |
+
max-height: 16px !important;
|
4473 |
+
padding: 0px;
|
4474 |
+
line-height: 0px;
|
4475 |
+
vertical-align: -webkit-baseline-middle !important;
|
4476 |
+
display: inline;
|
4477 |
+
}
|
4478 |
+
|
4479 |
+
.sfsi_plus_large_button {
|
4480 |
+
line-height: 0px;
|
4481 |
+
height: unset;
|
4482 |
+
padding: 13px !important;
|
4483 |
+
}
|
4484 |
+
|
4485 |
+
.sfsi_plus_responsive_icons .sfsi_plus_icons_container span {
|
4486 |
+
font-family: sans-serif;
|
4487 |
+
font-size: 15px;
|
4488 |
+
}
|
4489 |
+
|
4490 |
+
.sfsi_plus_icons_container_box_fully_container {
|
4491 |
+
flex-wrap: wrap;
|
4492 |
+
}
|
4493 |
+
|
4494 |
+
.sfsi_plus_icons_container_box_fully_container a {
|
4495 |
+
flex-basis: auto !important;
|
4496 |
+
flex-grow: 1;
|
4497 |
+
flex-shrink: 1;
|
4498 |
+
margin-bottom: 5px;
|
4499 |
+
}
|
4500 |
+
|
4501 |
+
.sfsi_plus_icons_container>a {
|
4502 |
+
float: left !important;
|
4503 |
+
text-decoration: none !important;
|
4504 |
+
-webkit-box-shadow: unset !important;
|
4505 |
+
box-shadow: unset !important;
|
4506 |
+
-webkit-transition: unset !important;
|
4507 |
+
transition: unset !important;
|
4508 |
+
margin-bottom: 5px !important;
|
4509 |
+
}
|
4510 |
+
|
4511 |
+
.sfsi_plus_small_button {
|
4512 |
+
line-height: 0px;
|
4513 |
+
height: unset;
|
4514 |
+
padding: 6px !important;
|
4515 |
+
}
|
4516 |
+
|
4517 |
+
.sfsi_plus_small_button span {
|
4518 |
+
margin-left: 10px;
|
4519 |
+
font-size: 16px;
|
4520 |
+
padding: 0px;
|
4521 |
+
line-height: 16px;
|
4522 |
+
vertical-align: -webkit-baseline-middle !important;
|
4523 |
+
margin-left: 10px;
|
4524 |
+
}
|
4525 |
+
|
4526 |
+
.sfsi_plus_small_button img {
|
4527 |
+
max-height: 16px !important;
|
4528 |
+
padding: 0px;
|
4529 |
+
line-height: 0px;
|
4530 |
+
vertical-align: -webkit-baseline-middle !important;
|
4531 |
+
}
|
4532 |
+
|
4533 |
+
.sfsi_plus_medium_button span {
|
4534 |
+
margin-left: 10px;
|
4535 |
+
font-size: 18px;
|
4536 |
+
padding: 0px;
|
4537 |
+
line-height: 16px;
|
4538 |
+
vertical-align: -webkit-baseline-middle !important;
|
4539 |
+
margin-left: 10px;
|
4540 |
+
}
|
4541 |
+
|
4542 |
+
.sfsi_plus_medium_button img {
|
4543 |
+
max-height: 16px !important;
|
4544 |
+
padding: 0px;
|
4545 |
+
line-height: 0px;
|
4546 |
+
vertical-align: -webkit-baseline-middle !important;
|
4547 |
+
}
|
4548 |
+
|
4549 |
+
.sfsi_plus_medium_button {
|
4550 |
+
line-height: 0px;
|
4551 |
+
height: unset;
|
4552 |
+
padding: 10px !important;
|
4553 |
+
}
|
4554 |
+
|
4555 |
+
.sfsi_plus_medium_button span {
|
4556 |
+
margin-left: 10px;
|
4557 |
+
font-size: 18px;
|
4558 |
+
padding: 0px;
|
4559 |
+
line-height: 16px;
|
4560 |
+
vertical-align: -webkit-baseline-middle !important;
|
4561 |
+
margin-left: 10px;
|
4562 |
+
}
|
4563 |
+
|
4564 |
+
.sfsi_plus_medium_button img {
|
4565 |
+
max-height: 16px !important;
|
4566 |
+
padding: 0px;
|
4567 |
+
line-height: 0px;
|
4568 |
+
vertical-align: -webkit-baseline-middle !important;
|
4569 |
+
}
|
4570 |
+
|
4571 |
+
.sfsi_plus_medium_button {
|
4572 |
+
line-height: 0px;
|
4573 |
+
height: unset;
|
4574 |
+
padding: 10px !important;
|
4575 |
+
}
|
4576 |
+
|
4577 |
+
.sfsi_plus_large_button span {
|
4578 |
+
font-size: 20px;
|
4579 |
+
padding: 0px;
|
4580 |
+
line-height: 16px;
|
4581 |
+
vertical-align: -webkit-baseline-middle !important;
|
4582 |
+
display: inline;
|
4583 |
+
margin-left: 10px;
|
4584 |
+
}
|
4585 |
+
|
4586 |
+
.sfsi_plus_large_button img {
|
4587 |
+
max-height: 16px !important;
|
4588 |
+
padding: 0px;
|
4589 |
+
line-height: 0px;
|
4590 |
+
vertical-align: -webkit-baseline-middle !important;
|
4591 |
+
display: inline;
|
4592 |
+
}
|
4593 |
+
|
4594 |
+
.sfsi_plus_large_button {
|
4595 |
+
line-height: 0px;
|
4596 |
+
height: unset;
|
4597 |
+
padding: 13px !important;
|
4598 |
+
}
|
4599 |
+
|
4600 |
+
.sfsi_plus_responsive_icons_count {
|
4601 |
+
padding: 5px 10px;
|
4602 |
+
float: left !important;
|
4603 |
+
display: inline-block;
|
4604 |
+
margin-right: 0px;
|
4605 |
+
margin-top: 2px;
|
4606 |
+
}
|
4607 |
+
|
4608 |
+
.sfsi_plus_responsive_icons_count h3 {
|
4609 |
+
font-family: 'sans-serif' !important;
|
4610 |
+
font-weight: 900;
|
4611 |
+
font-size: 32px !important;
|
4612 |
+
line-height: 0px !important;
|
4613 |
+
padding: 0px;
|
4614 |
+
margin: 0px;
|
4615 |
+
}
|
4616 |
+
|
4617 |
+
.sfsi_plus_responsive_icons_count h6 {
|
4618 |
+
font-family: 'sans-serif' !important;
|
4619 |
+
font-weight: 900;
|
4620 |
+
padding: 0px;
|
4621 |
+
margin: 0px;
|
4622 |
+
}
|
4623 |
+
|
4624 |
+
.sfsi_plus_responsive_icons a,
|
4625 |
+
.sfsi_plus_responsive_icons h3,
|
4626 |
+
.sfsi_plus_responsive_icons h6 {
|
4627 |
+
text-decoration: none !important;
|
4628 |
+
border: 0 !important;
|
4629 |
+
}
|
4630 |
+
|
4631 |
+
.sfsi_plus_responsive_with_counter_icons {
|
4632 |
+
width: calc(100% - 100px) !important;
|
4633 |
+
}
|
4634 |
+
|
4635 |
+
.sfsiresponsive_icon_preview {
|
4636 |
+
padding: 0px 0 20px 0;
|
4637 |
+
min-width: 100%;
|
4638 |
+
}
|
4639 |
+
|
4640 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button {
|
4641 |
+
padding: 12px 13px 9px 13px !important;
|
4642 |
+
}
|
4643 |
+
|
4644 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_medium_button {
|
4645 |
+
padding: 9px 10px 7px 10px !important;
|
4646 |
+
}
|
4647 |
+
|
4648 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
|
4649 |
+
padding: 7px 6px !important;
|
4650 |
+
}
|
4651 |
+
|
4652 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
|
4653 |
+
padding: 7px 6px !important;
|
4654 |
+
margin-top: 2px;
|
4655 |
+
}
|
4656 |
+
|
4657 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h6 {
|
4658 |
+
display: inline-block;
|
4659 |
+
font-size: 12px !important;
|
4660 |
+
vertical-align: middle;
|
4661 |
+
}
|
4662 |
+
|
4663 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_medium_button {
|
4664 |
+
padding: 9px 10px 7px 10px !important;
|
4665 |
+
}
|
4666 |
+
|
4667 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_medium_button h3 {
|
4668 |
+
font-size: 21px !important;
|
4669 |
+
vertical-align: top;
|
4670 |
+
line-height: 8px !important;
|
4671 |
+
margin: 0px 0px 12px 0px !important;
|
4672 |
+
font-weight: 900;
|
4673 |
+
padding: 0px;
|
4674 |
+
}
|
4675 |
+
|
4676 |
+
.sfsi_plus_esponsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button h3 {
|
4677 |
+
margin: 0px 0px 15px 0px !important;
|
4678 |
+
}
|
4679 |
+
|
4680 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_large_button h3 {
|
4681 |
+
font-size: 26px !important;
|
4682 |
+
vertical-align: top;
|
4683 |
+
line-height: 6px !important;
|
4684 |
+
}
|
4685 |
+
|
4686 |
+
.sfsi_plus_responsive_icons_count h3 {
|
4687 |
+
font-family: 'sans-serif' !important;
|
4688 |
+
font-weight: 900;
|
4689 |
+
padding: 0px;
|
4690 |
+
}
|
4691 |
+
|
4692 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
|
4693 |
+
font-size: 20px !important;
|
4694 |
+
display: inline-block;
|
4695 |
+
vertical-align: middle;
|
4696 |
+
}
|
4697 |
+
|
4698 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
|
4699 |
+
margin: 0px !important;
|
4700 |
+
}
|
4701 |
+
|
4702 |
+
.sfsi_plus_responsive_icons_count h3 {
|
4703 |
+
font-family: 'sans-serif' !important;
|
4704 |
+
font-weight: 900;
|
4705 |
+
line-height: 0px !important;
|
4706 |
+
padding: 0px;
|
4707 |
+
margin: 0px;
|
4708 |
+
}
|
4709 |
+
|
4710 |
+
.sfsi_plus_responsive_icons a,
|
4711 |
+
.sfsi_plus_responsive_icons h3,
|
4712 |
+
.sfsi_plus_responsive_icons h6 {
|
4713 |
+
text-decoration: none !important;
|
4714 |
+
border: 0 !important;
|
4715 |
+
}
|
4716 |
+
|
4717 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
|
4718 |
+
padding: 7px 6px !important;
|
4719 |
+
margin-top: 2px;
|
4720 |
+
}
|
4721 |
+
|
4722 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_large_button h3 {
|
4723 |
+
margin-top: 0 !important;
|
4724 |
+
margin-bottom: 8px !important;
|
4725 |
+
}
|
4726 |
+
|
4727 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_large_button h6 {
|
4728 |
+
font-size: 13px !important;
|
4729 |
+
}
|
4730 |
+
|
4731 |
+
.sfsi_plus_responsive_icons_count {
|
4732 |
+
vertical-align: top;
|
4733 |
+
}
|
4734 |
+
|
4735 |
+
.sfsi_plus_responsive_icons_count {
|
4736 |
+
float: left;
|
4737 |
+
}
|
4738 |
+
|
4739 |
+
.sfsi_plus_small_button {
|
4740 |
+
line-height: 0px;
|
4741 |
+
height: unset;
|
4742 |
+
}
|
4743 |
+
|
4744 |
+
.sfsi_plus_responsive_icons a,
|
4745 |
+
.sfsi_plus_responsive_icons h3,
|
4746 |
+
.sfsi_plus_responsive_icons h6 {
|
4747 |
+
text-decoration: none !important;
|
4748 |
+
border: 0 !important;
|
4749 |
+
}
|
4750 |
+
|
4751 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
|
4752 |
+
font-size: 20px !important;
|
4753 |
+
display: inline-block;
|
4754 |
+
vertical-align: middle;
|
4755 |
+
margin: 0px !important;
|
4756 |
+
}
|
4757 |
+
|
4758 |
+
.sfsi_plus_responsive_icons a,
|
4759 |
+
.sfsi_plus_responsive_icons h3,
|
4760 |
+
.sfsi_plus_responsive_icons h6 {
|
4761 |
+
text-decoration: none !important;
|
4762 |
+
font-family: helveticaregular !important;
|
4763 |
+
border: 0 !important;
|
4764 |
+
}
|
4765 |
+
|
4766 |
+
.sfsi_plus_responsive_icons_count h3 {
|
4767 |
+
line-height: 0px !important;
|
4768 |
+
padding: 0px;
|
4769 |
+
}
|
4770 |
+
|
4771 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_small_button h6 {
|
4772 |
+
display: inline-block;
|
4773 |
+
font-size: 12px !important;
|
4774 |
+
/*vertical-align: middle;*/
|
4775 |
+
margin: 0px !important;
|
4776 |
+
line-height: initial !important;
|
4777 |
+
padding: 0;
|
4778 |
+
margin: 0;
|
4779 |
+
}
|
4780 |
+
|
4781 |
+
.sfsi_plus_responsive_icons_count h6 {
|
4782 |
+
margin: 0 !important;
|
4783 |
+
}
|
4784 |
+
|
4785 |
+
.sfsi_plus_responsive_icons_count h6 {
|
4786 |
+
padding: 0px;
|
4787 |
+
}
|
4788 |
+
|
4789 |
+
.sfsi_plus_responsive_icons a,
|
4790 |
+
.sfsi_plus_responsive_icons h3,
|
4791 |
+
.sfsi_plus_responsive_icons h6 {
|
4792 |
+
text-decoration: none !important;
|
4793 |
+
font-family: helveticaregular !important;
|
4794 |
+
border: 0 !important;
|
4795 |
+
}
|
4796 |
+
|
4797 |
+
.sfsi_plus_responsive_icons_count.sfsi_plus_medium_button h6 {
|
4798 |
+
font-size: 11px !important;
|
4799 |
+
line-height: 0px !important;
|
4800 |
+
margin: 0px 0px 0px 0px !important;
|
4801 |
+
}
|
4802 |
+
|
4803 |
+
.sfsi_plus.sfsi_plus_widget_main_container .sfsi_plus_widget_sub_container {
|
4804 |
+
float: none;
|
4805 |
+
}
|
4806 |
+
|
4807 |
+
.export_selections {
|
4808 |
+
clear: both;
|
4809 |
+
color: #afafaf;
|
4810 |
+
font-size: 23px;
|
4811 |
+
display: flex;
|
4812 |
+
height: 0px;
|
4813 |
+
position: absolute;
|
4814 |
+
top: 41px;
|
4815 |
+
right: 0;
|
4816 |
+
}
|
4817 |
+
|
4818 |
+
.save_export {
|
4819 |
+
clear: both;
|
4820 |
+
position: relative;
|
4821 |
+
}
|
4822 |
+
|
4823 |
+
.export {
|
4824 |
+
padding-right: 11px;
|
4825 |
+
text-decoration: underline;
|
4826 |
+
cursor: pointer;
|
4827 |
+
font-size: 20px;
|
4828 |
+
}
|
4829 |
+
.sfsi_plus.sfsi_plus_widget_main_container .sfsi_plus_widget_sub_container{
|
4830 |
+
float: none;
|
4831 |
+
}
|
4832 |
+
|
4833 |
+
.export_selections {
|
4834 |
+
clear: both;
|
4835 |
+
color: #afafaf;
|
4836 |
+
font-size: 23px;
|
4837 |
+
display: flex;
|
4838 |
+
height: 0px;
|
4839 |
+
position: absolute;
|
4840 |
+
top: 41px;
|
4841 |
+
right: 0;
|
4842 |
+
}
|
4843 |
+
|
4844 |
+
.save_export {
|
4845 |
+
clear: both;
|
4846 |
+
position: relative;
|
4847 |
+
}
|
4848 |
+
|
4849 |
+
.export {
|
4850 |
+
padding-right: 11px;
|
4851 |
+
text-decoration: underline;
|
4852 |
+
cursor: pointer;
|
4853 |
+
font-size: 20px;
|
4854 |
+
}
|
4855 |
+
|
4856 |
+
.sfsi_plus_wechat_follow_overlay {
|
4857 |
+
position: fixed;
|
4858 |
+
top: 0;
|
4859 |
+
width: 100%;
|
4860 |
+
z-index: 99999;
|
4861 |
+
background: rgba(0, 0, 0, 0.7);
|
4862 |
+
height:100vh;
|
4863 |
+
}
|
4864 |
+
|
4865 |
+
.sfsi_plus_wechat_follow_overlay .close_btn {
|
4866 |
+
position: absolute;
|
4867 |
+
right: 60px;
|
4868 |
+
top: 60px;
|
4869 |
+
font-size: 40px;
|
4870 |
+
line-height: 40px;
|
4871 |
+
text-decoration: none;
|
4872 |
+
border: 1px solid #fff;
|
4873 |
+
padding: 0 10px;
|
4874 |
+
border-radius: 60px;
|
4875 |
+
color: #333;
|
4876 |
+
background-color: #ffff;
|
4877 |
+
text-decoration: none;
|
4878 |
+
}
|
4879 |
+
|
4880 |
+
@media (max-width:786px) {
|
4881 |
+
.sfsi_plus_upload_butt_container {
|
4882 |
+
display: inline-block;
|
4883 |
+
}
|
4884 |
+
|
4885 |
+
.upload_butt {
|
4886 |
+
height: 38px;
|
4887 |
+
}
|
4888 |
+
|
4889 |
+
.sfsi_plus_wechat_follow_overlay .sfsi_plus_inner_display>div div.sfsi_plus_upload_butt_container:first-child {
|
4890 |
+
margin-left: 0;
|
4891 |
+
margin-right: 20px;
|
4892 |
+
}
|
4893 |
+
}
|
4894 |
+
|
4895 |
+
|
4896 |
+
.sfsi_plus_flex_container {
|
4897 |
+
display: flex;
|
4898 |
+
flex-wrap: wrap;
|
4899 |
+
overflow-y: scroll;
|
4900 |
+
height: 36vh;
|
4901 |
+
}
|
4902 |
+
|
4903 |
+
.sfsi_plus_flex_container>div {
|
4904 |
+
height: 90px;
|
4905 |
+
width: 139px;
|
4906 |
+
margin: 10px;
|
4907 |
+
margin-bottom: 0;
|
4908 |
+
text-align: center;
|
4909 |
+
font-size: 30px;
|
4910 |
+
position: relative;
|
4911 |
+
border: 1px solid #ddd;
|
4912 |
+
}
|
4913 |
+
|
4914 |
+
.sfsi_plus_flex_container>div>a>img {
|
4915 |
+
width: 100%;
|
4916 |
+
height: 88px;
|
4917 |
+
object-fit: scale-down;
|
4918 |
+
}
|
4919 |
+
|
4920 |
+
.sfsi_plus_flex_container>div a {
|
4921 |
+
position: relative;
|
4922 |
+
margin: 0;
|
4923 |
+
padding: 0;
|
4924 |
+
z-index: 100;
|
4925 |
+
height: 90px;
|
4926 |
+
}
|
4927 |
+
|
4928 |
+
.sfsi_plus_pinterest_overlay {
|
4929 |
+
position: absolute;
|
4930 |
+
top: -61px;
|
4931 |
+
left: 0;
|
4932 |
+
width: 100%;
|
4933 |
+
height: 90px;
|
4934 |
+
z-index: 1000;
|
4935 |
+
display: inline-block;
|
4936 |
+
background: rgba(189, 8, 28, .3);
|
4937 |
+
text-align: center;
|
4938 |
+
padding-top: 22px;
|
4939 |
+
color: #fff;
|
4940 |
+
transition: all .3s;
|
4941 |
+
display: none;
|
4942 |
+
}
|
4943 |
+
|
4944 |
+
.sfsi_plus_flex_container>div:hover a .sfsi_plus_pinterest_overlay {
|
4945 |
+
display: block;
|
4946 |
+
}
|
dist/blocks.build.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){function t(i){if(s[i])return s[i].exports;var o=s[i]={i:i,l:!1,exports:{}};return e[i].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var s={};t.m=e,t.c=s,t.d=function(e,s,i){t.o(e,s)||Object.defineProperty(e,s,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var s=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(s,"a",s),s},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});s(1)},function(e,t,s){"use strict";function i(e,t,s){return t in e?Object.defineProperty(e,t,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[t]=s,e}function o(e){var t=e.jscode;return f("div",{className:"sfsi_plus_block_container"},"\n\t",f("div",{className:"sfsi_plus_block"},""),"\n\t",f("script",{},t),"\n")}function n(e){var t=e.jscode;"rectangle"===e.iconType&&(t=t.replace(/window.location.href/gi,'window.location.href+"&ractangle_icon=1"'));var s="yes",i="Please Share:";return e.showTextBeforeShare||""!==e.showTextBeforeShare?s=e.showTextBeforeShare:onAttrChange("showTextBeforeShare","yes"),e.textBeforeShare||""!==e.textBeforeShare?i=e.textBeforeShare:onAttrChange("textBeforeShare","Please Share:"),f("div",{className:"sfsi_plus_block_wrapper"},"\n\t","yes"==s&&f("span",{className:"sfsi_plus_block_text_before_icon"},i),"\n",f("div",{className:"sfsi_plus_block","data-count":e.maxPerRow,"data-align":e.iconAlignemt,"data-icon-type":e.iconType},""),"\n\t")}function l(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=parseInt(jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsi_plus_wDiv div").css("width"))||40,s=parseInt(jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsi_plus_wDiv div").css("margin-left"))||0,i=(t+s)*e;console.log(t,s,e);var o=jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsi_plus_wDiv img").first().height(),n=jQuery(".wp-block.is-selected .sfsi_plus_block_text_before_icon").height();jQuery(".wp-block.is-selected .sfsi_plus_block_text_before_icon").css({"margin-top":(n-o)/2-2+"px"});var l=jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsiplus_norm_row");jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsiplus_norm_row").length<1?setTimeout(function(){l.css({width:i+"px"})},1e3):l.css({width:i+"px"}),a()}function a(){var e=jQuery(".wp-block.is-selected .sfsi_plus_block_container"),t=e.find(".sfsi_plus_block").attr("data-align");jQuery(e).find(".sfsi_plus_block_text_before_icon").css({display:"inherit"}),jQuery(e).css({"text-align":t})}function r(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;null!==e&&void 0!==e||(e="round"),null==s&&(s=$(document));var i="";return i=window.sfsi_plus_links&&window.sfsi_plus_links.rest_url?window.sfsi_plus_links.rest_url:window.sfsi_plus_links&&window.sfsi_plus_links.pretty_perma&&"no"===window.sfsi_plus_links.pretty_perma?"/index.php?rest_route=/":"/wp-json/",window.sfsi_plus_links&&window.sfsi_plus_links.pretty_perma&&"no"===window.sfsi_plus_links.pretty_perma?(i=i.replace(/\/$/,""),i+=encodeURI("/ultimate-social-media-plus/v1/icons/"),i+="&"):i+="ultimate-social-media-plus/v1/icons/?",i+="admin_refereal=true&ractangle_icon="+("round"==e?0:1),jQuery.ajax({url:i,method:"GET"}).done(function(i){jQuery(s).find(".sfsi_plus_block").length>0?(jQuery(s).find(".sfsi_plus_block").html(i),jQuery(s).find(".sfsi_plus_block_text_before_icon").css({display:"inherit"}),console.log(t.maxPerRow),l(t.maxPerRow),"round"!==e&&u()):(setTimeout(function(){jQuery(".sfsi_plus_block").html(i),console.log(t.maxPerRow),l(t.maxPerRow),jQuery(s).find(".sfsi_plus_block_text_before_icon").css({display:"inherit"}),console.log("now updated")},5e3),console.log("timeset"))}).fail(function(e){jQuery(s).find(".sfsi_plus_block").html(e.responseText.replace("/\\/g",""))})}function u(){window.gapi&&(window.gapi.plusone.go(),window.gapi.plus.go(),window.gapi.ytsubscribe.go()),window.twttr&&window.twttr.widgets.load(),window.IN&&window.IN.parse&&window.IN.parse(),window.addthis&&(window.addthis.toolbox?window.addthis.toolbox(".addthis_button.sficn"):(window.addthis.init(),window.addthis.toolbox(".addthis_button.sficn"))),window.PinUtils&&window.PinUtils.build(),window.FB&&window.FB.XFBML&&window.FB.XFBML.parse()}var c=s(2),d=(s.n(c),s(3)),p=(s.n(d),wp.i18n.__),_=wp.blocks,w=_.registerBlockType,f=(_.RichText,_.TextControl,_.AlignmentToolbar,_.BlockControls,_.InspectorControls,wp.element.createElement),h=f("svg",{width:20,height:20},f("g",{transform:"translate(0.000000,20.000000) scale(0.0062,-0.0070)",fill:"#000000",stroke:"none"},f("path",{d:"M2055 2721 c-284 -83 -461 -332 -442 -624 l6 -89 -72 6 c-406 39 -818 246 -1090 548 l-66 73 -26 -60 c-101 -227 -55 -484 120 -661 l72 -74 -32 0 c-39 0 -127 26 -179 52 l-39 20 6 -74 c18 -224 178 -428 395 -504 58 -20 61 -22 35 -29 -15 -4 -72 -6 -126 -6 -98 1 -98 1 -92 -21 19 -62 77 -150 141 -214 88 -89 200 -148 317 -166 43 -7 77 -15 77 -18 0 -7 -152 -102 -205 -128 -72 -36 -216 -82 -302 -97 -46 -8 -146 -15 -221 -16 -159 -1 -160 2 10 -85 257 -131 542 -193 838 -181 209 8 392 45 572 115 l68 26 0 393 0 393 -100 0 c-93 0 -100 1 -100 20 0 11 -1 90 -1 175 0 85 1 160 1 165 0 6 40 10 100 10 l100 0 1 138 c1 144 3 170 20 241 34 147 165 265 319 288 49 8 174 9 358 5 l62 -2 0 -175 0 -175 -127 0 c-83 0 -137 -5 -153 -13 -35 -18 -46 -61 -49 -193 l-2 -114 165 0 166 0 0 -37 c0 -21 -7 -96 -15 -168 -8 -71 -15 -138 -15 -147 0 -16 -14 -18 -150 -18 l-150 0 0 -332 c1 -686 3 -637 -22 -642 -13 -3 -90 -8 -172 -12 -82 -3 -143 -10 -136 -14 6 -4 93 -8 191 -9 l179 -2 0 272 0 271 63 72 c119 134 198 250 273 397 113 225 184 512 184 745 l0 101 79 66 c64 54 226 235 217 244 -1 1 -26 -6 -55 -17 -59 -23 -176 -55 -235 -65 l-40 -7 50 39 c86 69 147 149 184 242 l19 49 -88 -43 c-69 -34 -199 -81 -276 -99 -5 -2 -37 19 -70 46 -150 122 -366 170 -540 119z"})));if(w("ultimate-social-media-plus/sfsi-plus-share-block",{title:p("Social Icons"),icon:h,category:"common",keywords:[p("Social Icons"),p("Social share"),p("Gutenberg Share")],attributes:{jscode:{default:"\n\t\tjQuery(document).ready(function($) {\n\t\t\tjQuery.ajax({\n\t\t\t\t'url': '/wp-json/ultimate-social-media-plus/v1/icons/?share_url='+window.location.href,\n\t\t\t\t'method': 'GET'\n\t\t\t}).done( function(response){\n\t\t\t\t$('.sfsi_plus_block_wrapper .sfsi_plus_block').html(response);sfsi_plus_update_iconcount();if(window.gapi){window.gapi.plusone.go();window.gapi.plus.go();window.gapi.ytsubscribe.go();};if(window.twttr){window.twttr.widgets.load();};if(window.IN){window.IN.parse();};if(window.addthis){if(window.addthis.toolbox){window.addthis.toolbox('.addthis_button.sficn');}else{window.addthis.init();window.addthis.toolbox('.addthis_button.sficn');}};if(window.PinUtils){window.PinUtils.build();};if(jQuery('.sfsi_plus_wDiv').length > 0) {setTimeout(function() { var s = parseInt(jQuery('.sfsi_plus_wDiv').height()) + 15 + 'px';jQuery('.sfsi_plus_holders').each(function() {jQuery(this).css('height', s);});jQuery('.sfsi_plus_widget').css('min-height', 'auto');}, 200);};if(window.FB){if(window.FB.XFBML){window.FB.XFBML.parse();}};\n\t\t\t});\n\t\t});\n\t",type:"string"},showTextBeforeShare:{type:"string",default:"yes"},textBeforeShare:{type:"string",default:"Please Share:"},iconType:{type:"string",default:"round"},iconAlignemt:{type:"string",default:"left"},maxPerRow:{type:"string",default:"5"}},edit:function(e){function t(t,s){e.setAttributes(i({},t,s))}var s=e.setAttributes,o=e.attributes,n="yes",a="Please Share:";o.showTextBeforeShare||""!==o.showTextBeforeShare?n=o.showTextBeforeShare:t("showTextBeforeShare","yes"),o.textBeforeShare||""!==o.textBeforeShare?a=o.textBeforeShare:t("textBeforeShare","Please Share:");var u=jQuery('div[data-block="'+e.clientId+'"]').find(".sfsi_plus_block_container");if(u.length>0){0===u.find(".sfsi_plus_block>div").length&&r(o.iconType,o,u)}else setTimeout(function(){var t=jQuery('div[data-block="'+e.clientId+'"]').find(".sfsi_plus_block_container");0===t.find(".sfsi_plus_block>div").length&&r(o.iconType,o,t)},3e3);return[f(wp.editor.InspectorControls,{key:"sfsi-plus-block-inspector"},f("div",{className:"sfsi_plus_block_inspector"},f("h3",{className:"sfsi_plus_block_icontype_header"},p("Type")),f("select",{className:"form-control sfsi_plus_block_icontype_selector",value:o.iconType,onChange:function(e){var t=jQuery(".wp-block.is-selected").find(".sfsi_plus_block_container");s({iconType:e.target.value}),r(e.target.value,o,t)}},f("option",{value:"round"},"Round / \xabmain\xbb icons"),f("option",{value:"rectangle"},"Rectangle icons")),("round"===e.attributes.iconType||void 0===e.attributes.iconType)&&f("p",{className:"sfsi_plus_block_icontype_desc"},p(" Those are the icons you selected under question 1 on the plugin\u2018s "),f("a",{target:"_blank",href:window.sfsi_plus_links.admin_url+"admin.php?page=sfsi-plus-options#ui-id-1"},p(" settings page."))),"rectangle"===e.attributes.iconType&&f("p",{className:"sfsi_plus_block_icontype_desc"},p("Those are the icons you selected "),f("a",{target:"_blank",href:window.sfsi_plus_links.admin_url+"admin.php?page=sfsi-plus-options#ui-id-5"},p("here."))),f("h3",{className:"sfsi_plus_block_icontype_header"},p("Alignment")),f("select",{className:"form-control sfsi_plus_block_iconalignment_selector",value:o.iconAlignemt,onChange:function(e){s({iconAlignemt:e.target.value});var t=jQuery(".wp-block.is-selected .sfsi_plus_block_container");"center"===e.target.value&&jQuery(t).find(".sfsi_plus_block_text_before_icon").css({display:"inherit"}),jQuery(t).css({"text-align":e.target.value})}},f("option",{value:"left"},"Left"),f("option",{value:"right"},"Right"),f("option",{value:"center"},"Center")),("round"===e.attributes.iconType||void 0===e.attributes.iconType)&&f("div",{className:"sfsi_plus_block_iconperrow_body"},f("span",{className:"label"},p("Max. icons per row")),f("input",{type:"text",value:o.maxPerRow,onChange:function(e){s({maxPerRow:(parseInt(e.target.value)||0)+""}),l(e.target.value)}})),f("label",{htmlFor:"sfsi-plus-text-before-icons",className:"sfsi_plus_block_textbeforeicons"},f("input",{className:"form-control",checked:"yes"==o.showTextBeforeShare,type:"checkbox",onChange:function(e){s({showTextBeforeShare:e.target.checked?"yes":"no"})}}),"Text before icons?"),"yes"==o.showTextBeforeShare&&f("input",{className:"form-input sfsi_plus_block_textbeforeicons_header",value:o.textBeforeShare,style:{"padding-top":"3px"},onChange:function(e){s({textBeforeShare:e.target.value})}}),"yes"===o.showTextBeforeShare&&f("div",{className:"form-input sfsi_plus_block_textbeforeicons_body"},p("Define the font size & type in our "),f("a",{href:"https://www.ultimatelysocial.com/usm-premium/",target:"_blank"},p("Premium plugin"))),f("h3",{className:"sfsi_plus_block_notes_heading"},p("Notes")),f("hr"),f("ul",{className:"sfsi_plus_block_notes_list"},f("li",{className:"sfsi_plus_block_notes_item"},p("For all other selections ( What the icons should do etc.) please go to "),f("a",{href:(window.sfsi_plus_links?window.sfsi_plus_links.admin_url:"/wp-admin/admin.php")+"?page=sfsi-plus-options",target:"_blank"},p("settings page"))),f("li",{className:"sfsi_plus_block_notes_item"},p("To see the icons in \u201afull action\u2018 (with all features) please open the page in live or preview mode.")),f("li",{className:"sfsi_plus_block_notes_item"},p("If questions remain, please ask them in the "),f("a",{href:"https://goo.gl/ktAeDv",target:"_blank"},p("support forum")),p(" \u2013 we\u2018ll try to respond quickly."),f("img",{src:(window.sfsi_plus_links?window.sfsi_plus_links.plugin_dir_url:"/wp-content/plugins/ultimate-social-media-plus")+"/images/Ic_insert_emoticon_48px.svg",style:{width:"18px","vertical-align":"text-bottom"}}))),f("h3",{className:"sfsi_plus_block_ad_heading"},"Want (much) more?"),f("div",{className:"sfsi_plus_block_ad_body"},f("div",{},p("Check out our "),f("a",{href:"https://www.ultimatelysocial.com/usm-premium/?utm_source=plus_gutenberg_page&utm_campaign=side_widget&utm_medium=link",target:"_blank"},p("premium plugin\u2018s features")),p(". Watch a teaser: "))),f("div",{style:{"text-align":"center"}},f("iframe",{src:"https://player.vimeo.com/video/269140798",width:"640",frameborder:0,webkitallowfullscreen:"",mozallowfullscreen:"",allowfullscreen:""}),f("a",{href:"https://www.ultimatelysocial.com/usm-premium/?utm_source=plus_gutenberg_page&utm_campaign=side_widget&utm_medium=link",target:"_blank",style:{display:"inline-block",padding:"4px 10px","text-decoration":"none",background:"#00A15A",color:"#fff","font-size":"11px","font-weight":"900"}},p("Check out the Premium Plugin >>"))),f("br"),f("span",{className:"sfsi_plus_block_ad_footer"},p("..from 24.98 USD (includes support and updates for 1 year, and after that it will not be deactivated, so you can just keep using it!)")))),f("div",{key:"sfsi-plus-block-content",className:"sfsi_plus_block_container sfsi_plus_block_wrapper"},"\t","yes"==n&&f("span",{className:"sfsi_plus_block_text_before_icon","data-align":o.iconAlignemt},a),f("div",{className:"sfsi_plus_block","data-count":o.maxPerRow,"data-align":o.iconAlignemt,"data-icon-type":o.iconType},"loading...."))]},deprecated:[{attributes:{jscode:{default:"\n\t\tjQuery(document).ready(function($) {\n\t\t\tjQuery.ajax({\n\t\t\t\t'url': '/wp-json/ultimate-social-media-plus/v1/icons/?share_url='+window.location.href,\n\t\t\t\t'method': 'GET'\n\t\t\t}).done( function(response){\n\t\t\t\t$('.sfsi_plus_block_container .sfsi_plus_block').html(response);if(window.gapi){window.gapi.plusone.go();window.gapi.plus.go();window.gapi.ytsubscribe.go();};if(window.twttr){window.twttr.widgets.load();};if(window.IN){window.IN.parse();};if(window.addthis){if(window.addthis.toolbox){window.addthis.toolbox('.addthis_button.sficn');}else{window.addthis.init();window.addthis.toolbox('.addthis_button.sficn');}};if(window.PinUtils){window.PinUtils.build();};if(jQuery('.sfsi_plus_wDiv').length > 0) {setTimeout(function() { var s = parseInt(jQuery('.sfsi_plus_wDiv').height()) + 15 + 'px';jQuery('.sfsi_plus_holders').each(function() {jQuery(this).css('height', s);});jQuery('.sfsi_plus_widget').css('min-height', 'auto');}, 200);};if(window.FB){if(window.FB.XFBML){window.FB.XFBML.parse();}};\n\t\t\t});\n\t\t});\n\t",type:"string"}},isEligible:function(e){return console.log(e),!0},migrate:function(e){return console.log("migrate",e),[{jscode:"\n\t\tjQuery(document).ready(function($) {\n\t\t\tjQuery.ajax({\n\t\t\t\t'url': '/wp-json/ultimate-social-media-plus/v1/icons/?share_url='+window.location.href,\n\t\t\t\t'method': 'GET'\n\t\t\t}).done( function(response){\n\t\t\t\t$('.sfsi_plus_block_wrapper .sfsi_plus_block').html(response);sfsi_plus_update_iconcount();if(window.gapi){window.gapi.plusone.go();window.gapi.plus.go();window.gapi.ytsubscribe.go();};if(window.twttr){window.twttr.widgets.load();};if(window.IN){window.IN.parse();};if(window.addthis){if(window.addthis.toolbox){window.addthis.toolbox('.addthis_button.sficn');}else{window.addthis.init();window.addthis.toolbox('.addthis_button.sficn');}};if(window.PinUtils){window.PinUtils.build();};if(jQuery('.sfsi_plus_wDiv').length > 0) {setTimeout(function() { var s = parseInt(jQuery('.sfsi_plus_wDiv').height()) + 15 + 'px';jQuery('.sfsi_plus_holders').each(function() {jQuery(this).css('height', s);});jQuery('.sfsi_plus_widget').css('min-height', 'auto');}, 200);};if(window.FB){if(window.FB.XFBML){window.FB.XFBML.parse();}};\n\t\t\t});\n\t\t});\n\t",showTextBeforeShare:"yes",textBeforeShare:"Please Share:",iconType:"round",iconAlignemt:"left",maxPerRow:"5"}]},save:function(e){return console.log(e),o(e.attributes)}}],save:function(e){var t=e.attributes;return setTimeout(function(){l(t.maxPerRow)},300),n(t)}}),void 0===window.sfsi_plus_float_widget);},function(e,t){},function(e,t){}]);
|
1 |
+
../../social-media-block/dist/blocks.build.js
|
dist/blocks.editor.build.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
|
1 |
+
../../social-media-block/dist/blocks.editor.build.css
|
images/share_icons/Linkedin_Share/Chinese (traditional) - share.svg
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
-
<svg width="58" height="23" viewBox="0 0 58 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="58" height="23">
|
3 |
-
<path d="M54.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H54.1C56.2 23 57.9 21.3 57.9 19.2V3.8C57.8 1.7 56.1 0 54.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="58" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M32.2 6.7C32.1 6.8 32.1 6.8 31.9 6.8C31 8.8 29.6 10.6 28 11.8C27.8 11.6 27.5 11.3 27.3 11.2C28.9 10.1 30.3 8.29999 31.1 6.39999L32.2 6.7ZM36.6 10.9H36.8L37.3 11C37.3 11.1 37.3 11.2 37.3 11.3C37.1 15.3 36.9 16.8 36.5 17.3C36.1 17.7 35.8 17.7 35 17.7C34.6 17.7 34 17.7 33.5 17.7C33.5 17.4 33.4 17.1 33.2 16.9C34.1 17 34.9 17 35.2 17C35.5 17 35.6 17 35.7 16.8C36 16.5 36.2 15.2 36.4 11.8H33C32.7 14.2 32 16.6 28.6 17.8C28.5 17.6 28.3 17.3 28.1 17.1C31.1 16.1 31.8 14 32.1 11.8H29.4V11H36.6V10.9ZM35.5 6.3C36.3 8 38 9.99999 39.4 10.9C39.2 11.1 38.9 11.4 38.7 11.7C37.3 10.6 35.7 8.5 34.7 6.7L35.5 6.3Z" fill="white"/>
|
8 |
-
<path d="M51.6 14.5V15.2H46.3V16.8C46.3 17.3 46.2 17.5 45.7 17.6C45.2 17.7 44.6 17.7 43.4 17.7C43.4 17.5 43.2 17.2 43.1 17C43.6 17 44.1 17 44.5 17C45.3 17 45.4 17 45.4 16.7V15.2H40.2V14.5H45.4V13.6H46C46.8 13.4 47.6 13.1 48.3 12.8H41.4V12.1H49.6L49.8 12L50.5 12.5C50.5 12.6 50.4 12.6 50.3 12.6C49.3 13.2 47.8 13.7 46.4 14.1V14.4H51.6V14.5ZM51.5 7.2V7.89999H40.3V7.2H45.4V6L46.5 6.09999C46.5 6.19999 46.4 6.3 46.2 6.3V7.2H51.5ZM49.8 11.3H42V8.8H49.8V11.3ZM42.9 9.39999V10.6H49V9.39999H42.9Z" fill="white"/>
|
9 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
10 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
11 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
12 |
-
</g>
|
13 |
-
</svg>
|
1 |
+
<svg width="58" height="23" viewBox="0 0 58 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="58" height="23">
|
3 |
+
<path d="M54.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H54.1C56.2 23 57.9 21.3 57.9 19.2V3.8C57.8 1.7 56.1 0 54.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="58" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M32.2 6.7C32.1 6.8 32.1 6.8 31.9 6.8C31 8.8 29.6 10.6 28 11.8C27.8 11.6 27.5 11.3 27.3 11.2C28.9 10.1 30.3 8.29999 31.1 6.39999L32.2 6.7ZM36.6 10.9H36.8L37.3 11C37.3 11.1 37.3 11.2 37.3 11.3C37.1 15.3 36.9 16.8 36.5 17.3C36.1 17.7 35.8 17.7 35 17.7C34.6 17.7 34 17.7 33.5 17.7C33.5 17.4 33.4 17.1 33.2 16.9C34.1 17 34.9 17 35.2 17C35.5 17 35.6 17 35.7 16.8C36 16.5 36.2 15.2 36.4 11.8H33C32.7 14.2 32 16.6 28.6 17.8C28.5 17.6 28.3 17.3 28.1 17.1C31.1 16.1 31.8 14 32.1 11.8H29.4V11H36.6V10.9ZM35.5 6.3C36.3 8 38 9.99999 39.4 10.9C39.2 11.1 38.9 11.4 38.7 11.7C37.3 10.6 35.7 8.5 34.7 6.7L35.5 6.3Z" fill="white"/>
|
8 |
+
<path d="M51.6 14.5V15.2H46.3V16.8C46.3 17.3 46.2 17.5 45.7 17.6C45.2 17.7 44.6 17.7 43.4 17.7C43.4 17.5 43.2 17.2 43.1 17C43.6 17 44.1 17 44.5 17C45.3 17 45.4 17 45.4 16.7V15.2H40.2V14.5H45.4V13.6H46C46.8 13.4 47.6 13.1 48.3 12.8H41.4V12.1H49.6L49.8 12L50.5 12.5C50.5 12.6 50.4 12.6 50.3 12.6C49.3 13.2 47.8 13.7 46.4 14.1V14.4H51.6V14.5ZM51.5 7.2V7.89999H40.3V7.2H45.4V6L46.5 6.09999C46.5 6.19999 46.4 6.3 46.2 6.3V7.2H51.5ZM49.8 11.3H42V8.8H49.8V11.3ZM42.9 9.39999V10.6H49V9.39999H42.9Z" fill="white"/>
|
9 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
10 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
11 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
12 |
+
</g>
|
13 |
+
</svg>
|
images/share_icons/Linkedin_Share/ar_AR_share.svg
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
<svg width="65" height="23" viewBox="0 0 65 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="65" height="23">
|
3 |
-
<path d="M61.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H61.1C63.2 23 64.9 21.3 64.9 19.2V3.8C64.8 1.7 63.1 0 61.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="65" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M32.3 15H31.5C31.4 15 31.2 15 31.1 14.9C30.9 14.8 30.7 14.6 30.5 14.3C30.3 13.9 30.1 13.3 30.1 12.5C29.8 12.8 29.6 13.1 29.5 13.2C29.3 13.4 29.1 13.5 28.9 13.5C28.8 13.5 28.7 13.5 28.6 13.5L27.9 13.4C27.6 13.3 27.4 13.3 27.3 13.3C27.2 13.3 27.2 13.2 27.2 13.1C27.2 13 27.3 12.6 27.6 12.1C27.9 11.5 28.1 11.2 28.2 11C28.3 10.9 28.5 10.7 28.7 10.6C28.9 10.5 29.1 10.4 29.4 10.2L29.7 10C29.7 9.90001 29.7 9.9 29.7 9.8C29.7 9.7 29.7 9.7 29.7 9.6C29.7 9.4 29.7 9.30001 29.8 9.00001C29.9 8.70001 30 8.5 30.2 8.1L30.8 11.9C30.9 12.5 31 12.9 31.2 13.1C31.3 13.2 31.4 13.3 31.6 13.3H32.4V15H32.3ZM30.9 6.5L30.2 7.6L29.3 7.1L28.8 8.1L27.7 7.50001L28.3 6.4L29.2 6.9L29.7 6L30.9 6.5ZM29.9 11.6L29.8 10.9C29.7 11 29.6 11 29.5 11C29.3 11.1 29.1 11.2 29 11.3C28.9 11.4 28.8 11.5 28.8 11.5C28.7 11.6 28.7 11.7 28.7 11.7C28.7 11.8 28.8 11.8 28.9 11.8C29 11.8 29.2 11.8 29.3 11.8C29.4 11.8 29.5 11.8 29.6 11.7C29.6 11.8 29.7 11.7 29.9 11.6Z" fill="white"/>
|
8 |
-
<path d="M36.8 15H31.9V13.4H35.9C35.7 13.2 35.6 13 35.4 12.9C35.3 12.8 35.1 12.6 34.9 12.5C34.7 12.3 34.4 12.1 34.2 12L34 12.2C33.6 11.8 33.4 11.6 33.4 11.5C33.2 11.3 33.1 11 33.1 10.7C33.1 10.3 33.1 9.99999 33.2 9.79999C33.3 9.59999 33.5 9.4 33.7 9.2C33.9 9 34.2 8.89999 34.5 8.79999C34.7 8.69999 35 8.59999 35.3 8.39999C35.5 8.29999 35.8 8.2 36.3 8V9.5C36.3 9.5 36.1 9.6 35.8 9.7C35.4 9.8 35.1 9.9 34.8 10C34.5 10.1 34.3 10.2 34.3 10.3C34.3 10.3 34.4 10.5 34.7 10.8C35.1 11.2 35.4 11.5 35.7 11.9C36.1 12.4 36.5 12.9 36.8 13.5V15Z" fill="white"/>
|
9 |
-
<path d="M42.2 15.2C42.2 15.4 42.1 15.8 41.8 16.2C41.5 16.6 41.2 17 40.8 17.3C40.4 17.6 40 17.8 39.7 17.8C39.3 17.8 39 17.7 38.5 17.5C38.1 17.3 37.6 17 36.8 16.4L37.1 16C37.5 16.2 37.8 16.4 38 16.5C38.2 16.6 38.5 16.6 38.7 16.6C39 16.6 39.3 16.5 39.5 16.4C39.8 16.2 40.2 15.9 40.6 15.5C41.3 14.9 41.6 14.4 41.6 14.1C41.6 13.9 41.5 13.7 41.4 13.5C41.3 13.2 41.1 12.9 40.9 12.7L41.2 11C41.5 11.3 41.7 11.6 41.8 12C42 12.4 42 12.8 42 13.3V15.2H42.2Z" fill="white"/>
|
10 |
-
<path d="M45.2 15H44.3C43.8 15 43.5 14.8 43.3 14.4C43.1 14 42.9 13.2 42.9 12.2V10.5C42.9 10.1 42.8 9.80001 42.7 9.60001C42.6 9.50001 42.5 9.30001 42.3 9.10001L43 7.60001C43.2 7.90001 43.4 8.20001 43.5 8.60001C43.6 9.00001 43.7 9.40002 43.7 10V11.2C43.7 12.1 43.8 12.6 43.9 13C44 13.3 44.1 13.4 44.3 13.4H45.2V15Z" fill="white"/>
|
11 |
-
<path d="M52.8 15C52.3 15 52 15 51.7 14.9C51.4 14.8 51.1 14.7 50.8 14.6C50.6 14.8 50.4 14.9 50.2 14.9C50 15 49.7 15 49.4 15H48.4C48.1 15 47.9 14.9 47.8 14.8C47.6 14.7 47.5 14.4 47.4 14.1C47.2 14.4 46.9 14.7 46.6 14.8C46.4 14.9 46.1 15 45.8 15H44.7V13.4H45.6C46 13.4 46.4 13.3 46.7 13C47.1 12.7 47.3 12.2 47.3 11.6L47.7 11.7C47.7 11.8 47.7 12 47.7 12.1C47.7 12.3 47.7 12.5 47.7 12.7C47.7 12.9 47.8 13.1 47.9 13.2C48 13.3 48.2 13.4 48.4 13.4H49.2C49.7 13.4 50.1 13.3 50.3 13.2C50.6 13 50.7 12.7 50.7 12.3C50.7 12.2 50.7 12.1 50.8 12C50.8 12 50.9 11.9 51 11.8L51.2 11.6C51.2 11.7 51.2 11.8 51.2 11.9C51.2 12 51.2 12.1 51.2 12.2C51.2 12.4 51.2 12.7 51.1 13.1C51.3 13.2 51.4 13.2 51.6 13.3C51.8 13.4 52 13.4 52.2 13.4C52.2 13.3 52.1 13.1 52 12.9C51.9 12.7 51.8 12.5 51.8 12.5C51.8 12.4 51.8 12.3 51.8 12.3C51.8 12.3 51.9 12.2 51.9 12.1L52.4 11.4C52.5 11.7 52.6 11.9 52.6 12.1C52.6 12.3 52.7 12.6 52.7 12.9V15H52.8ZM52.1 9.20001L51.4 10.4L50.5 9.90001L50 10.9L48.9 10.3L49.5 9.10001L50.4 9.60001L50.9 8.60001L52.1 9.20001ZM50.9 7.70001L50.3 9.00002L49.2 8.40001L49.8 7.20001L50.9 7.70001Z" fill="white"/>
|
12 |
-
<path d="M58 15C57.6 15 57.1 14.9 56.5 14.7C56 14.6 55.5 14.4 55.2 14.2C55 14.6 54.7 14.8 54.3 14.9C54.1 15 53.9 15 53.6 15H52.4V13.4H53.6C54 13.4 54.3 13.4 54.5 13.3C54.8 13.2 55 13 55.1 12.7C55.3 12.2 55.6 11.8 56 11.4C56.3 11.1 56.6 11 56.8 11C57 11 57.3 11.3 57.6 11.9C57.9 12.6 58.1 13.2 58.1 13.7V15H58ZM56.8 13.2C56.8 13.1 56.7 13 56.5 12.7C56.3 12.5 56.1 12.3 56 12.3C55.8 12.3 55.7 12.5 55.6 12.9C55.8 13 56 13 56.1 13.1C56.4 13.2 56.6 13.3 56.7 13.3C56.8 13.3 56.8 13.2 56.8 13.2Z" fill="white"/>
|
13 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
14 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
15 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
16 |
-
</g>
|
17 |
-
</svg>
|
1 |
+
<svg width="65" height="23" viewBox="0 0 65 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="65" height="23">
|
3 |
+
<path d="M61.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H61.1C63.2 23 64.9 21.3 64.9 19.2V3.8C64.8 1.7 63.1 0 61.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="65" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M32.3 15H31.5C31.4 15 31.2 15 31.1 14.9C30.9 14.8 30.7 14.6 30.5 14.3C30.3 13.9 30.1 13.3 30.1 12.5C29.8 12.8 29.6 13.1 29.5 13.2C29.3 13.4 29.1 13.5 28.9 13.5C28.8 13.5 28.7 13.5 28.6 13.5L27.9 13.4C27.6 13.3 27.4 13.3 27.3 13.3C27.2 13.3 27.2 13.2 27.2 13.1C27.2 13 27.3 12.6 27.6 12.1C27.9 11.5 28.1 11.2 28.2 11C28.3 10.9 28.5 10.7 28.7 10.6C28.9 10.5 29.1 10.4 29.4 10.2L29.7 10C29.7 9.90001 29.7 9.9 29.7 9.8C29.7 9.7 29.7 9.7 29.7 9.6C29.7 9.4 29.7 9.30001 29.8 9.00001C29.9 8.70001 30 8.5 30.2 8.1L30.8 11.9C30.9 12.5 31 12.9 31.2 13.1C31.3 13.2 31.4 13.3 31.6 13.3H32.4V15H32.3ZM30.9 6.5L30.2 7.6L29.3 7.1L28.8 8.1L27.7 7.50001L28.3 6.4L29.2 6.9L29.7 6L30.9 6.5ZM29.9 11.6L29.8 10.9C29.7 11 29.6 11 29.5 11C29.3 11.1 29.1 11.2 29 11.3C28.9 11.4 28.8 11.5 28.8 11.5C28.7 11.6 28.7 11.7 28.7 11.7C28.7 11.8 28.8 11.8 28.9 11.8C29 11.8 29.2 11.8 29.3 11.8C29.4 11.8 29.5 11.8 29.6 11.7C29.6 11.8 29.7 11.7 29.9 11.6Z" fill="white"/>
|
8 |
+
<path d="M36.8 15H31.9V13.4H35.9C35.7 13.2 35.6 13 35.4 12.9C35.3 12.8 35.1 12.6 34.9 12.5C34.7 12.3 34.4 12.1 34.2 12L34 12.2C33.6 11.8 33.4 11.6 33.4 11.5C33.2 11.3 33.1 11 33.1 10.7C33.1 10.3 33.1 9.99999 33.2 9.79999C33.3 9.59999 33.5 9.4 33.7 9.2C33.9 9 34.2 8.89999 34.5 8.79999C34.7 8.69999 35 8.59999 35.3 8.39999C35.5 8.29999 35.8 8.2 36.3 8V9.5C36.3 9.5 36.1 9.6 35.8 9.7C35.4 9.8 35.1 9.9 34.8 10C34.5 10.1 34.3 10.2 34.3 10.3C34.3 10.3 34.4 10.5 34.7 10.8C35.1 11.2 35.4 11.5 35.7 11.9C36.1 12.4 36.5 12.9 36.8 13.5V15Z" fill="white"/>
|
9 |
+
<path d="M42.2 15.2C42.2 15.4 42.1 15.8 41.8 16.2C41.5 16.6 41.2 17 40.8 17.3C40.4 17.6 40 17.8 39.7 17.8C39.3 17.8 39 17.7 38.5 17.5C38.1 17.3 37.6 17 36.8 16.4L37.1 16C37.5 16.2 37.8 16.4 38 16.5C38.2 16.6 38.5 16.6 38.7 16.6C39 16.6 39.3 16.5 39.5 16.4C39.8 16.2 40.2 15.9 40.6 15.5C41.3 14.9 41.6 14.4 41.6 14.1C41.6 13.9 41.5 13.7 41.4 13.5C41.3 13.2 41.1 12.9 40.9 12.7L41.2 11C41.5 11.3 41.7 11.6 41.8 12C42 12.4 42 12.8 42 13.3V15.2H42.2Z" fill="white"/>
|
10 |
+
<path d="M45.2 15H44.3C43.8 15 43.5 14.8 43.3 14.4C43.1 14 42.9 13.2 42.9 12.2V10.5C42.9 10.1 42.8 9.80001 42.7 9.60001C42.6 9.50001 42.5 9.30001 42.3 9.10001L43 7.60001C43.2 7.90001 43.4 8.20001 43.5 8.60001C43.6 9.00001 43.7 9.40002 43.7 10V11.2C43.7 12.1 43.8 12.6 43.9 13C44 13.3 44.1 13.4 44.3 13.4H45.2V15Z" fill="white"/>
|
11 |
+
<path d="M52.8 15C52.3 15 52 15 51.7 14.9C51.4 14.8 51.1 14.7 50.8 14.6C50.6 14.8 50.4 14.9 50.2 14.9C50 15 49.7 15 49.4 15H48.4C48.1 15 47.9 14.9 47.8 14.8C47.6 14.7 47.5 14.4 47.4 14.1C47.2 14.4 46.9 14.7 46.6 14.8C46.4 14.9 46.1 15 45.8 15H44.7V13.4H45.6C46 13.4 46.4 13.3 46.7 13C47.1 12.7 47.3 12.2 47.3 11.6L47.7 11.7C47.7 11.8 47.7 12 47.7 12.1C47.7 12.3 47.7 12.5 47.7 12.7C47.7 12.9 47.8 13.1 47.9 13.2C48 13.3 48.2 13.4 48.4 13.4H49.2C49.7 13.4 50.1 13.3 50.3 13.2C50.6 13 50.7 12.7 50.7 12.3C50.7 12.2 50.7 12.1 50.8 12C50.8 12 50.9 11.9 51 11.8L51.2 11.6C51.2 11.7 51.2 11.8 51.2 11.9C51.2 12 51.2 12.1 51.2 12.2C51.2 12.4 51.2 12.7 51.1 13.1C51.3 13.2 51.4 13.2 51.6 13.3C51.8 13.4 52 13.4 52.2 13.4C52.2 13.3 52.1 13.1 52 12.9C51.9 12.7 51.8 12.5 51.8 12.5C51.8 12.4 51.8 12.3 51.8 12.3C51.8 12.3 51.9 12.2 51.9 12.1L52.4 11.4C52.5 11.7 52.6 11.9 52.6 12.1C52.6 12.3 52.7 12.6 52.7 12.9V15H52.8ZM52.1 9.20001L51.4 10.4L50.5 9.90001L50 10.9L48.9 10.3L49.5 9.10001L50.4 9.60001L50.9 8.60001L52.1 9.20001ZM50.9 7.70001L50.3 9.00002L49.2 8.40001L49.8 7.20001L50.9 7.70001Z" fill="white"/>
|
12 |
+
<path d="M58 15C57.6 15 57.1 14.9 56.5 14.7C56 14.6 55.5 14.4 55.2 14.2C55 14.6 54.7 14.8 54.3 14.9C54.1 15 53.9 15 53.6 15H52.4V13.4H53.6C54 13.4 54.3 13.4 54.5 13.3C54.8 13.2 55 13 55.1 12.7C55.3 12.2 55.6 11.8 56 11.4C56.3 11.1 56.6 11 56.8 11C57 11 57.3 11.3 57.6 11.9C57.9 12.6 58.1 13.2 58.1 13.7V15H58ZM56.8 13.2C56.8 13.1 56.7 13 56.5 12.7C56.3 12.5 56.1 12.3 56 12.3C55.8 12.3 55.7 12.5 55.6 12.9C55.8 13 56 13 56.1 13.1C56.4 13.2 56.6 13.3 56.7 13.3C56.8 13.3 56.8 13.2 56.8 13.2Z" fill="white"/>
|
13 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
14 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
15 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
16 |
+
</g>
|
17 |
+
</svg>
|
images/share_icons/Linkedin_Share/de_DE_share.svg
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
<svg width="68" height="23" viewBox="0 0 68 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="68" height="23">
|
3 |
-
<path d="M64.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H64.1C66.2 23 67.9 21.3 67.9 19.2V3.80002C67.8 1.70002 66.1 0 64.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="68" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M30 16V8.60001H27.3V7.10001H34.4V8.60001H31.7V16H30Z" fill="white"/>
|
8 |
-
<path d="M38.5 14L40.2 14.3C40 14.9 39.6 15.4 39.2 15.7C38.8 16 38.1 16.2 37.4 16.2C36.3 16.2 35.4 15.8 34.9 15.1C34.5 14.5 34.3 13.8 34.3 12.9C34.3 11.8 34.6 11 35.1 10.4C35.7 9.79999 36.4 9.5 37.2 9.5C38.2 9.5 38.9 9.8 39.5 10.5C40.1 11.1 40.3 12.1 40.3 13.4H36C36 13.9 36.2 14.3 36.4 14.6C36.7 14.9 37 15 37.4 15C37.7 15 37.9 14.9 38.1 14.8C38.2 14.5 38.4 14.3 38.5 14ZM38.6 12.2C38.6 11.7 38.5 11.3 38.2 11.1C37.9 10.9 37.7 10.7 37.3 10.7C36.9 10.7 36.6 10.8 36.4 11.1C36.2 11.4 36 11.7 36 12.2H38.6Z" fill="white"/>
|
9 |
-
<path d="M41.7 8.70001V7.10001H43.4V8.70001H41.7ZM41.7 16V9.5H43.4V16H41.7Z" fill="white"/>
|
10 |
-
<path d="M45.2 16V7H46.9V16H45.2Z" fill="white"/>
|
11 |
-
<path d="M52.4 14L54.1 14.3C53.9 14.9 53.5 15.4 53.1 15.7C52.7 16 52 16.2 51.3 16.2C50.2 16.2 49.3 15.8 48.8 15.1C48.4 14.5 48.2 13.8 48.2 12.9C48.2 11.8 48.5 11 49 10.4C49.6 9.79999 50.3 9.5 51.1 9.5C52.1 9.5 52.8 9.8 53.4 10.5C54 11.1 54.2 12.1 54.2 13.4H49.9C49.9 13.9 50.1 14.3 50.3 14.6C50.6 14.9 50.9 15 51.3 15C51.6 15 51.8 14.9 52 14.8C52.2 14.5 52.3 14.3 52.4 14ZM52.5 12.2C52.5 11.7 52.4 11.3 52.1 11.1C51.8 10.9 51.6 10.7 51.2 10.7C50.8 10.7 50.5 10.8 50.3 11.1C50.1 11.4 49.9 11.7 49.9 12.2H52.5Z" fill="white"/>
|
12 |
-
<path d="M61.5 16H59.8V12.7C59.8 12 59.8 11.5 59.7 11.3C59.6 11.1 59.5 10.9 59.3 10.8C59.1 10.7 58.9 10.6 58.7 10.6C58.4 10.6 58.1 10.7 57.9 10.8C57.7 10.9 57.5 11.2 57.4 11.4C57.3 11.7 57.3 12.2 57.3 12.9V15.8H55.6V9.30002H57.2V10.3C57.8 9.60002 58.5 9.20001 59.3 9.20001C59.7 9.20001 60 9.29999 60.3 9.39999C60.6 9.49999 60.9 9.69999 61 9.89999C61.1 10.1 61.3 10.4 61.3 10.6C61.4 10.9 61.4 11.3 61.4 11.8V16H61.5Z" fill="white"/>
|
13 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
14 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
15 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
16 |
-
</g>
|
17 |
-
</svg>
|
1 |
+
<svg width="68" height="23" viewBox="0 0 68 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="68" height="23">
|
3 |
+
<path d="M64.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H64.1C66.2 23 67.9 21.3 67.9 19.2V3.80002C67.8 1.70002 66.1 0 64.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="68" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M30 16V8.60001H27.3V7.10001H34.4V8.60001H31.7V16H30Z" fill="white"/>
|
8 |
+
<path d="M38.5 14L40.2 14.3C40 14.9 39.6 15.4 39.2 15.7C38.8 16 38.1 16.2 37.4 16.2C36.3 16.2 35.4 15.8 34.9 15.1C34.5 14.5 34.3 13.8 34.3 12.9C34.3 11.8 34.6 11 35.1 10.4C35.7 9.79999 36.4 9.5 37.2 9.5C38.2 9.5 38.9 9.8 39.5 10.5C40.1 11.1 40.3 12.1 40.3 13.4H36C36 13.9 36.2 14.3 36.4 14.6C36.7 14.9 37 15 37.4 15C37.7 15 37.9 14.9 38.1 14.8C38.2 14.5 38.4 14.3 38.5 14ZM38.6 12.2C38.6 11.7 38.5 11.3 38.2 11.1C37.9 10.9 37.7 10.7 37.3 10.7C36.9 10.7 36.6 10.8 36.4 11.1C36.2 11.4 36 11.7 36 12.2H38.6Z" fill="white"/>
|
9 |
+
<path d="M41.7 8.70001V7.10001H43.4V8.70001H41.7ZM41.7 16V9.5H43.4V16H41.7Z" fill="white"/>
|
10 |
+
<path d="M45.2 16V7H46.9V16H45.2Z" fill="white"/>
|
11 |
+
<path d="M52.4 14L54.1 14.3C53.9 14.9 53.5 15.4 53.1 15.7C52.7 16 52 16.2 51.3 16.2C50.2 16.2 49.3 15.8 48.8 15.1C48.4 14.5 48.2 13.8 48.2 12.9C48.2 11.8 48.5 11 49 10.4C49.6 9.79999 50.3 9.5 51.1 9.5C52.1 9.5 52.8 9.8 53.4 10.5C54 11.1 54.2 12.1 54.2 13.4H49.9C49.9 13.9 50.1 14.3 50.3 14.6C50.6 14.9 50.9 15 51.3 15C51.6 15 51.8 14.9 52 14.8C52.2 14.5 52.3 14.3 52.4 14ZM52.5 12.2C52.5 11.7 52.4 11.3 52.1 11.1C51.8 10.9 51.6 10.7 51.2 10.7C50.8 10.7 50.5 10.8 50.3 11.1C50.1 11.4 49.9 11.7 49.9 12.2H52.5Z" fill="white"/>
|
12 |
+
<path d="M61.5 16H59.8V12.7C59.8 12 59.8 11.5 59.7 11.3C59.6 11.1 59.5 10.9 59.3 10.8C59.1 10.7 58.9 10.6 58.7 10.6C58.4 10.6 58.1 10.7 57.9 10.8C57.7 10.9 57.5 11.2 57.4 11.4C57.3 11.7 57.3 12.2 57.3 12.9V15.8H55.6V9.30002H57.2V10.3C57.8 9.60002 58.5 9.20001 59.3 9.20001C59.7 9.20001 60 9.29999 60.3 9.39999C60.6 9.49999 60.9 9.69999 61 9.89999C61.1 10.1 61.3 10.4 61.3 10.6C61.4 10.9 61.4 11.3 61.4 11.8V16H61.5Z" fill="white"/>
|
13 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
14 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
15 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
16 |
+
</g>
|
17 |
+
</svg>
|
images/share_icons/Linkedin_Share/el_GR_share.svg
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
-
<svg width="111" height="23" viewBox="0 0 111 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="111" height="23">
|
3 |
-
<path d="M107.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H107.1C109.2 23 110.9 21.3 110.9 19.2V3.80002C110.8 1.70002 109.1 0 107.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="111" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M28 15.1V6.10001H29.8V10.1L33.5 6.10001H35.9L32.5 9.60001L36.1 15.1H33.8L31.3 10.9L29.8 12.4V15.1H28Z" fill="white"/>
|
8 |
-
<path d="M36.3 11.8C36.3 11.2 36.4 10.7 36.7 10.1C37 9.60001 37.4 9.20002 37.9 8.90002C38.4 8.60002 39 8.5 39.6 8.5C40.6 8.5 41.4 8.8 42 9.5C42.6 10.1 42.9 10.9 42.9 11.9C42.9 12.9 42.6 13.7 41.9 14.3C41.3 14.9 40.5 15.3 39.5 15.3C38.9 15.3 38.3 15.2 37.8 14.9C37.3 14.6 36.8 14.2 36.6 13.7C36.5 13.2 36.3 12.5 36.3 11.8ZM38.1 11.9C38.1 12.5 38.3 13 38.6 13.4C38.9 13.8 39.3 13.9 39.7 13.9C40.1 13.9 40.5 13.7 40.8 13.4C41.1 13.1 41.3 12.6 41.3 11.9C41.3 11.3 41.1 10.8 40.8 10.4C40.5 10.1 40.1 9.90002 39.7 9.90002C39.3 9.90002 38.9 10.1 38.6 10.4C38.3 10.7 38.1 11.2 38.1 11.9Z" fill="white"/>
|
9 |
-
<path d="M44.4 15.1V8.60001H46.1V15.1H44.4Z" fill="white"/>
|
10 |
-
<path d="M49.7 15.1L47.1 8.60001H48.9L50.1 11.9L50.5 13C50.6 12.7 50.7 12.5 50.7 12.4C50.8 12.2 50.8 12 50.9 11.9L52.1 8.60001H53.9L51.3 15.1H49.7Z" fill="white"/>
|
11 |
-
<path d="M54.4 11.8C54.4 11.2 54.5 10.7 54.8 10.1C55.1 9.60001 55.5 9.20002 56 8.90002C56.5 8.60002 57.1 8.5 57.7 8.5C58.7 8.5 59.5 8.8 60.1 9.5C60.7 10.1 61 10.9 61 11.9C61 12.9 60.7 13.7 60 14.3C59.4 14.9 58.6 15.3 57.6 15.3C57 15.3 56.4 15.2 55.9 14.9C55.4 14.6 54.9 14.2 54.7 13.7C54.6 13.2 54.4 12.5 54.4 11.8ZM56.2 11.9C56.2 12.5 56.4 13 56.7 13.4C57 13.8 57.4 13.9 57.8 13.9C58.2 13.9 58.6 13.7 58.9 13.4C59.2 13.1 59.4 12.6 59.4 11.9C59.4 11.3 59.2 10.8 58.9 10.4C58.6 10.1 58.2 9.90002 57.8 9.90002C57.4 9.90002 57 10.1 56.7 10.4C56.4 10.7 56.2 11.2 56.2 11.9Z" fill="white"/>
|
12 |
-
<path d="M61.5 8.60001H70.5V10H68.8V15.1H67.1V10H65V15.1H63.3V10H61.6V8.60001H61.5Z" fill="white"/>
|
13 |
-
<path d="M71 11.8C71 11.2 71.1 10.7 71.4 10.1C71.7 9.60001 72.1 9.20002 72.6 8.90002C73.1 8.60002 73.7 8.5 74.3 8.5C75.3 8.5 76.1 8.8 76.7 9.5C77.3 10.1 77.6 10.9 77.6 11.9C77.6 12.9 77.3 13.7 76.6 14.3C76 14.9 75.2 15.3 74.2 15.3C73.6 15.3 73 15.2 72.5 14.9C72 14.6 71.5 14.2 71.3 13.7C71.1 13.2 71 12.5 71 11.8ZM72.7 11.9C72.7 12.5 72.9 13 73.2 13.4C73.5 13.8 73.9 13.9 74.3 13.9C74.7 13.9 75.1 13.7 75.4 13.4C75.7 13.1 75.9 12.6 75.9 11.9C75.9 11.3 75.7 10.8 75.4 10.4C75.1 10.1 74.7 9.90002 74.3 9.90002C73.9 9.90002 73.5 10.1 73.2 10.4C72.9 10.7 72.7 11.2 72.7 11.9Z" fill="white"/>
|
14 |
-
<path d="M78.9 7.80002L79.7 6H81.6L79.9 7.80002H78.9ZM79 15.1V8.60001H80.7V15.1H79Z" fill="white"/>
|
15 |
-
<path d="M88.4 17.6H86.7V11.8C86.7 11.2 86.7 10.8 86.6 10.6C86.6 10.4 86.4 10.2 86.3 10C86.1 9.9 85.9 9.80002 85.6 9.80002C85.3 9.80002 85 9.90001 84.8 10.1C84.6 10.3 84.4 10.5 84.3 10.8C84.2 11.1 84.2 11.6 84.2 12.2V15.1H82.5V8.60001H84.1V9.60001C84.7 8.90001 85.4 8.5 86.2 8.5C86.7 8.5 87.1 8.60002 87.5 8.80002C87.8 9.00002 88.1 9.30001 88.2 9.60001C88.3 9.90001 88.4 10.4 88.4 11.1V17.6Z" fill="white"/>
|
16 |
-
<path d="M97.5 8.60001V10H95.9C96.2 10.5 96.4 11.1 96.4 11.8C96.4 12.7 96.1 13.6 95.5 14.2C94.9 14.9 94.1 15.2 93.1 15.2C92.1 15.2 91.3 14.9 90.7 14.3C90.1 13.7 89.8 12.9 89.8 11.9C89.8 10.9 90.1 10.1 90.7 9.40002C91.3 8.80002 92.1 8.40002 93.2 8.40002C93.5 8.40002 93.9 8.4 94.3 8.5H97.5V8.60001ZM91.5 11.9C91.5 12.5 91.6 13 91.9 13.4C92.2 13.8 92.6 13.9 93 13.9C93.4 13.9 93.8 13.7 94.1 13.4C94.4 13.1 94.6 12.6 94.6 11.9C94.6 11.3 94.5 10.8 94.2 10.5C93.9 10.1 93.5 10 93.1 10C92.6 10 92.2 10.2 92 10.5C91.6 10.8 91.5 11.3 91.5 11.9Z" fill="white"/>
|
17 |
-
<path d="M104.6 17.6H102.9V11.8C102.9 11.2 102.9 10.8 102.8 10.6C102.8 10.4 102.6 10.2 102.5 10C102.3 9.9 102.1 9.80002 101.8 9.80002C101.5 9.80002 101.2 9.90001 101 10.1C100.8 10.3 100.6 10.5 100.5 10.8C100.4 11.1 100.4 11.6 100.4 12.2V15.1H98.7V8.60001H100.3V9.60001C100.9 8.90001 101.6 8.5 102.4 8.5C102.9 8.5 103.3 8.60002 103.7 8.80002C104 9.00002 104.3 9.30001 104.4 9.60001C104.5 9.90001 104.6 10.4 104.6 11.1V17.6Z" fill="white"/>
|
18 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
19 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
20 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
21 |
-
</g>
|
22 |
-
</svg>
|
1 |
+
<svg width="111" height="23" viewBox="0 0 111 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="111" height="23">
|
3 |
+
<path d="M107.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H107.1C109.2 23 110.9 21.3 110.9 19.2V3.80002C110.8 1.70002 109.1 0 107.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="111" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M28 15.1V6.10001H29.8V10.1L33.5 6.10001H35.9L32.5 9.60001L36.1 15.1H33.8L31.3 10.9L29.8 12.4V15.1H28Z" fill="white"/>
|
8 |
+
<path d="M36.3 11.8C36.3 11.2 36.4 10.7 36.7 10.1C37 9.60001 37.4 9.20002 37.9 8.90002C38.4 8.60002 39 8.5 39.6 8.5C40.6 8.5 41.4 8.8 42 9.5C42.6 10.1 42.9 10.9 42.9 11.9C42.9 12.9 42.6 13.7 41.9 14.3C41.3 14.9 40.5 15.3 39.5 15.3C38.9 15.3 38.3 15.2 37.8 14.9C37.3 14.6 36.8 14.2 36.6 13.7C36.5 13.2 36.3 12.5 36.3 11.8ZM38.1 11.9C38.1 12.5 38.3 13 38.6 13.4C38.9 13.8 39.3 13.9 39.7 13.9C40.1 13.9 40.5 13.7 40.8 13.4C41.1 13.1 41.3 12.6 41.3 11.9C41.3 11.3 41.1 10.8 40.8 10.4C40.5 10.1 40.1 9.90002 39.7 9.90002C39.3 9.90002 38.9 10.1 38.6 10.4C38.3 10.7 38.1 11.2 38.1 11.9Z" fill="white"/>
|
9 |
+
<path d="M44.4 15.1V8.60001H46.1V15.1H44.4Z" fill="white"/>
|
10 |
+
<path d="M49.7 15.1L47.1 8.60001H48.9L50.1 11.9L50.5 13C50.6 12.7 50.7 12.5 50.7 12.4C50.8 12.2 50.8 12 50.9 11.9L52.1 8.60001H53.9L51.3 15.1H49.7Z" fill="white"/>
|
11 |
+
<path d="M54.4 11.8C54.4 11.2 54.5 10.7 54.8 10.1C55.1 9.60001 55.5 9.20002 56 8.90002C56.5 8.60002 57.1 8.5 57.7 8.5C58.7 8.5 59.5 8.8 60.1 9.5C60.7 10.1 61 10.9 61 11.9C61 12.9 60.7 13.7 60 14.3C59.4 14.9 58.6 15.3 57.6 15.3C57 15.3 56.4 15.2 55.9 14.9C55.4 14.6 54.9 14.2 54.7 13.7C54.6 13.2 54.4 12.5 54.4 11.8ZM56.2 11.9C56.2 12.5 56.4 13 56.7 13.4C57 13.8 57.4 13.9 57.8 13.9C58.2 13.9 58.6 13.7 58.9 13.4C59.2 13.1 59.4 12.6 59.4 11.9C59.4 11.3 59.2 10.8 58.9 10.4C58.6 10.1 58.2 9.90002 57.8 9.90002C57.4 9.90002 57 10.1 56.7 10.4C56.4 10.7 56.2 11.2 56.2 11.9Z" fill="white"/>
|
12 |
+
<path d="M61.5 8.60001H70.5V10H68.8V15.1H67.1V10H65V15.1H63.3V10H61.6V8.60001H61.5Z" fill="white"/>
|
13 |
+
<path d="M71 11.8C71 11.2 71.1 10.7 71.4 10.1C71.7 9.60001 72.1 9.20002 72.6 8.90002C73.1 8.60002 73.7 8.5 74.3 8.5C75.3 8.5 76.1 8.8 76.7 9.5C77.3 10.1 77.6 10.9 77.6 11.9C77.6 12.9 77.3 13.7 76.6 14.3C76 14.9 75.2 15.3 74.2 15.3C73.6 15.3 73 15.2 72.5 14.9C72 14.6 71.5 14.2 71.3 13.7C71.1 13.2 71 12.5 71 11.8ZM72.7 11.9C72.7 12.5 72.9 13 73.2 13.4C73.5 13.8 73.9 13.9 74.3 13.9C74.7 13.9 75.1 13.7 75.4 13.4C75.7 13.1 75.9 12.6 75.9 11.9C75.9 11.3 75.7 10.8 75.4 10.4C75.1 10.1 74.7 9.90002 74.3 9.90002C73.9 9.90002 73.5 10.1 73.2 10.4C72.9 10.7 72.7 11.2 72.7 11.9Z" fill="white"/>
|
14 |
+
<path d="M78.9 7.80002L79.7 6H81.6L79.9 7.80002H78.9ZM79 15.1V8.60001H80.7V15.1H79Z" fill="white"/>
|
15 |
+
<path d="M88.4 17.6H86.7V11.8C86.7 11.2 86.7 10.8 86.6 10.6C86.6 10.4 86.4 10.2 86.3 10C86.1 9.9 85.9 9.80002 85.6 9.80002C85.3 9.80002 85 9.90001 84.8 10.1C84.6 10.3 84.4 10.5 84.3 10.8C84.2 11.1 84.2 11.6 84.2 12.2V15.1H82.5V8.60001H84.1V9.60001C84.7 8.90001 85.4 8.5 86.2 8.5C86.7 8.5 87.1 8.60002 87.5 8.80002C87.8 9.00002 88.1 9.30001 88.2 9.60001C88.3 9.90001 88.4 10.4 88.4 11.1V17.6Z" fill="white"/>
|
16 |
+
<path d="M97.5 8.60001V10H95.9C96.2 10.5 96.4 11.1 96.4 11.8C96.4 12.7 96.1 13.6 95.5 14.2C94.9 14.9 94.1 15.2 93.1 15.2C92.1 15.2 91.3 14.9 90.7 14.3C90.1 13.7 89.8 12.9 89.8 11.9C89.8 10.9 90.1 10.1 90.7 9.40002C91.3 8.80002 92.1 8.40002 93.2 8.40002C93.5 8.40002 93.9 8.4 94.3 8.5H97.5V8.60001ZM91.5 11.9C91.5 12.5 91.6 13 91.9 13.4C92.2 13.8 92.6 13.9 93 13.9C93.4 13.9 93.8 13.7 94.1 13.4C94.4 13.1 94.6 12.6 94.6 11.9C94.6 11.3 94.5 10.8 94.2 10.5C93.9 10.1 93.5 10 93.1 10C92.6 10 92.2 10.2 92 10.5C91.6 10.8 91.5 11.3 91.5 11.9Z" fill="white"/>
|
17 |
+
<path d="M104.6 17.6H102.9V11.8C102.9 11.2 102.9 10.8 102.8 10.6C102.8 10.4 102.6 10.2 102.5 10C102.3 9.9 102.1 9.80002 101.8 9.80002C101.5 9.80002 101.2 9.90001 101 10.1C100.8 10.3 100.6 10.5 100.5 10.8C100.4 11.1 100.4 11.6 100.4 12.2V15.1H98.7V8.60001H100.3V9.60001C100.9 8.90001 101.6 8.5 102.4 8.5C102.9 8.5 103.3 8.60002 103.7 8.80002C104 9.00002 104.3 9.30001 104.4 9.60001C104.5 9.90001 104.6 10.4 104.6 11.1V17.6Z" fill="white"/>
|
18 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
19 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
20 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
21 |
+
</g>
|
22 |
+
</svg>
|
images/share_icons/Linkedin_Share/en_US_share.svg
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
<svg width="68" height="23" viewBox="0 0 68 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="68" height="23">
|
3 |
-
<path d="M64.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H64.1C66.2 23 67.9 21.3 67.9 19.2V3.8C67.8 1.7 66.1 0 64.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="68" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M27.5 13.3L29.3 13.1C29.4 13.7 29.6 14.1 29.9 14.4C30.2 14.7 30.7 14.8 31.2 14.8C31.8 14.8 32.2 14.7 32.5 14.4C32.8 14.2 32.9 13.9 32.9 13.5C32.9 13.3 32.8 13.1 32.7 13C32.6 12.9 32.4 12.7 32 12.6C31.8 12.5 31.3 12.4 30.6 12.2C29.6 12 28.9 11.7 28.6 11.3C28 10.8 27.8 10.2 27.8 9.5C27.8 9 27.9 8.6 28.2 8.2C28.5 7.8 28.8 7.5 29.3 7.3C29.8 7.1 30.4 7 31.1 7C32.2 7 33.1 7.2 33.6 7.7C34.2 8.2 34.5 8.9 34.5 9.7L32.7 9.8C32.6 9.3 32.5 9 32.2 8.8C31.9 8.6 31.6 8.5 31.1 8.5C30.6 8.5 30.2 8.6 29.9 8.8C29.7 8.9 29.6 9.1 29.6 9.4C29.6 9.6 29.7 9.8 29.9 9.9C30.1 10.1 30.7 10.3 31.6 10.5C32.5 10.7 33.1 10.9 33.6 11.1C34.1 11.3 34.4 11.6 34.6 12C34.8 12.4 35 12.9 35 13.4C35 13.9 34.9 14.4 34.6 14.8C34.3 15.2 33.9 15.6 33.4 15.8C32.9 16 32.2 16.1 31.4 16.1C30.3 16.1 29.4 15.8 28.8 15.3C28 15.1 27.7 14.3 27.5 13.3Z" fill="white"/>
|
8 |
-
<path d="M38.1 7.30001V10.6C38.7 10 39.3 9.60001 40.1 9.60001C40.5 9.60001 40.9 9.70001 41.2 9.80001C41.5 9.90001 41.8 10.1 41.9 10.4C42.1 10.6 42.2 10.9 42.2 11.2C42.3 11.5 42.3 11.9 42.3 12.5V16.3H40.6V12.8C40.6 12.1 40.6 11.7 40.5 11.5C40.4 11.3 40.3 11.2 40.2 11.1C40.1 11 39.8 10.9 39.6 10.9C39.3 10.9 39.1 11 38.8 11.1C38.5 11.2 38.4 11.4 38.3 11.7C38.2 12 38.1 12.4 38.1 12.9V16.2H36.4V7.20001H38.1V7.30001Z" fill="white"/>
|
9 |
-
<path d="M45.3 11.7L43.7 11.4C43.9 10.8 44.2 10.3 44.6 10C45 9.7 45.7 9.5 46.5 9.5C47.3 9.5 47.8 9.6 48.2 9.8C48.6 10 48.8 10.2 49 10.5C49.2 10.8 49.2 11.3 49.2 12V14C49.2 14.6 49.2 15 49.3 15.3C49.4 15.6 49.5 15.9 49.6 16.2H47.9C47.9 16.1 47.8 15.9 47.7 15.7C47.7 15.6 47.7 15.5 47.6 15.5C47.3 15.8 47 16 46.7 16.1C46.4 16.2 46 16.3 45.6 16.3C44.9 16.3 44.4 16.1 44 15.8C43.6 15.5 43.4 15 43.4 14.4C43.4 14 43.5 13.7 43.7 13.4C43.9 13.1 44.1 12.9 44.4 12.7C44.7 12.5 45.2 12.4 45.8 12.3C46.6 12.1 47.2 12 47.5 11.9V11.8C47.5 11.5 47.4 11.2 47.3 11.1C47.2 11 46.8 10.9 46.4 10.9C46.1 10.9 45.9 11 45.7 11.1C45.5 11.2 45.4 11.4 45.3 11.7ZM47.6 13.1C47.4 13.2 47 13.3 46.6 13.4C46.1 13.5 45.8 13.6 45.7 13.7C45.5 13.9 45.4 14.1 45.4 14.3C45.4 14.5 45.5 14.7 45.7 14.9C45.9 15.1 46.1 15.2 46.4 15.2C46.7 15.2 47 15.1 47.3 14.9C47.5 14.7 47.6 14.6 47.7 14.3C47.7 14.2 47.8 13.9 47.8 13.5V13.1H47.6Z" fill="white"/>
|
10 |
-
<path d="M52.6 16.2H50.9V9.7H52.5V10.6C52.8 10.2 53 9.9 53.2 9.7C53.4 9.6 53.7 9.5 53.9 9.5C54.3 9.5 54.7 9.6 55 9.8L54.5 11.3C54.2 11.1 53.9 11 53.7 11C53.5 11 53.3 11.1 53.1 11.2C52.9 11.3 52.8 11.6 52.7 11.9C52.6 12.2 52.6 13 52.6 14.1V16.2Z" fill="white"/>
|
11 |
-
<path d="M59.6 14.2L61.3 14.5C61.1 15.1 60.7 15.6 60.3 15.9C59.9 16.2 59.2 16.4 58.5 16.4C57.4 16.4 56.5 16 56 15.3C55.6 14.7 55.4 14 55.4 13.1C55.4 12 55.7 11.2 56.2 10.6C56.8 10 57.5 9.70001 58.3 9.70001C59.3 9.70001 60 10 60.6 10.7C61.2 11.3 61.4 12.3 61.4 13.6H57.1C57.1 14.1 57.3 14.5 57.5 14.8C57.8 15.1 58.1 15.2 58.5 15.2C58.8 15.2 59 15.1 59.2 15C59.4 14.7 59.5 14.5 59.6 14.2ZM59.7 12.4C59.7 11.9 59.6 11.5 59.3 11.3C59 11.1 58.8 10.9 58.4 10.9C58 10.9 57.7 11 57.5 11.3C57.3 11.6 57.1 11.9 57.1 12.4H59.7Z" fill="white"/>
|
12 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
13 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
14 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
15 |
-
</g>
|
16 |
-
</svg>
|
1 |
+
<svg width="68" height="23" viewBox="0 0 68 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="68" height="23">
|
3 |
+
<path d="M64.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H64.1C66.2 23 67.9 21.3 67.9 19.2V3.8C67.8 1.7 66.1 0 64.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="68" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M27.5 13.3L29.3 13.1C29.4 13.7 29.6 14.1 29.9 14.4C30.2 14.7 30.7 14.8 31.2 14.8C31.8 14.8 32.2 14.7 32.5 14.4C32.8 14.2 32.9 13.9 32.9 13.5C32.9 13.3 32.8 13.1 32.7 13C32.6 12.9 32.4 12.7 32 12.6C31.8 12.5 31.3 12.4 30.6 12.2C29.6 12 28.9 11.7 28.6 11.3C28 10.8 27.8 10.2 27.8 9.5C27.8 9 27.9 8.6 28.2 8.2C28.5 7.8 28.8 7.5 29.3 7.3C29.8 7.1 30.4 7 31.1 7C32.2 7 33.1 7.2 33.6 7.7C34.2 8.2 34.5 8.9 34.5 9.7L32.7 9.8C32.6 9.3 32.5 9 32.2 8.8C31.9 8.6 31.6 8.5 31.1 8.5C30.6 8.5 30.2 8.6 29.9 8.8C29.7 8.9 29.6 9.1 29.6 9.4C29.6 9.6 29.7 9.8 29.9 9.9C30.1 10.1 30.7 10.3 31.6 10.5C32.5 10.7 33.1 10.9 33.6 11.1C34.1 11.3 34.4 11.6 34.6 12C34.8 12.4 35 12.9 35 13.4C35 13.9 34.9 14.4 34.6 14.8C34.3 15.2 33.9 15.6 33.4 15.8C32.9 16 32.2 16.1 31.4 16.1C30.3 16.1 29.4 15.8 28.8 15.3C28 15.1 27.7 14.3 27.5 13.3Z" fill="white"/>
|
8 |
+
<path d="M38.1 7.30001V10.6C38.7 10 39.3 9.60001 40.1 9.60001C40.5 9.60001 40.9 9.70001 41.2 9.80001C41.5 9.90001 41.8 10.1 41.9 10.4C42.1 10.6 42.2 10.9 42.2 11.2C42.3 11.5 42.3 11.9 42.3 12.5V16.3H40.6V12.8C40.6 12.1 40.6 11.7 40.5 11.5C40.4 11.3 40.3 11.2 40.2 11.1C40.1 11 39.8 10.9 39.6 10.9C39.3 10.9 39.1 11 38.8 11.1C38.5 11.2 38.4 11.4 38.3 11.7C38.2 12 38.1 12.4 38.1 12.9V16.2H36.4V7.20001H38.1V7.30001Z" fill="white"/>
|
9 |
+
<path d="M45.3 11.7L43.7 11.4C43.9 10.8 44.2 10.3 44.6 10C45 9.7 45.7 9.5 46.5 9.5C47.3 9.5 47.8 9.6 48.2 9.8C48.6 10 48.8 10.2 49 10.5C49.2 10.8 49.2 11.3 49.2 12V14C49.2 14.6 49.2 15 49.3 15.3C49.4 15.6 49.5 15.9 49.6 16.2H47.9C47.9 16.1 47.8 15.9 47.7 15.7C47.7 15.6 47.7 15.5 47.6 15.5C47.3 15.8 47 16 46.7 16.1C46.4 16.2 46 16.3 45.6 16.3C44.9 16.3 44.4 16.1 44 15.8C43.6 15.5 43.4 15 43.4 14.4C43.4 14 43.5 13.7 43.7 13.4C43.9 13.1 44.1 12.9 44.4 12.7C44.7 12.5 45.2 12.4 45.8 12.3C46.6 12.1 47.2 12 47.5 11.9V11.8C47.5 11.5 47.4 11.2 47.3 11.1C47.2 11 46.8 10.9 46.4 10.9C46.1 10.9 45.9 11 45.7 11.1C45.5 11.2 45.4 11.4 45.3 11.7ZM47.6 13.1C47.4 13.2 47 13.3 46.6 13.4C46.1 13.5 45.8 13.6 45.7 13.7C45.5 13.9 45.4 14.1 45.4 14.3C45.4 14.5 45.5 14.7 45.7 14.9C45.9 15.1 46.1 15.2 46.4 15.2C46.7 15.2 47 15.1 47.3 14.9C47.5 14.7 47.6 14.6 47.7 14.3C47.7 14.2 47.8 13.9 47.8 13.5V13.1H47.6Z" fill="white"/>
|
10 |
+
<path d="M52.6 16.2H50.9V9.7H52.5V10.6C52.8 10.2 53 9.9 53.2 9.7C53.4 9.6 53.7 9.5 53.9 9.5C54.3 9.5 54.7 9.6 55 9.8L54.5 11.3C54.2 11.1 53.9 11 53.7 11C53.5 11 53.3 11.1 53.1 11.2C52.9 11.3 52.8 11.6 52.7 11.9C52.6 12.2 52.6 13 52.6 14.1V16.2Z" fill="white"/>
|
11 |
+
<path d="M59.6 14.2L61.3 14.5C61.1 15.1 60.7 15.6 60.3 15.9C59.9 16.2 59.2 16.4 58.5 16.4C57.4 16.4 56.5 16 56 15.3C55.6 14.7 55.4 14 55.4 13.1C55.4 12 55.7 11.2 56.2 10.6C56.8 10 57.5 9.70001 58.3 9.70001C59.3 9.70001 60 10 60.6 10.7C61.2 11.3 61.4 12.3 61.4 13.6H57.1C57.1 14.1 57.3 14.5 57.5 14.8C57.8 15.1 58.1 15.2 58.5 15.2C58.8 15.2 59 15.1 59.2 15C59.4 14.7 59.5 14.5 59.6 14.2ZM59.7 12.4C59.7 11.9 59.6 11.5 59.3 11.3C59 11.1 58.8 10.9 58.4 10.9C58 10.9 57.7 11 57.5 11.3C57.3 11.6 57.1 11.9 57.1 12.4H59.7Z" fill="white"/>
|
12 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
13 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
14 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
15 |
+
</g>
|
16 |
+
</svg>
|
images/share_icons/Linkedin_Share/es_ES_share.svg
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
<svg width="96" height="23" viewBox="0 0 96 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="96" height="23">
|
3 |
-
<path d="M92.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H92.1C94.2 23 95.9 21.3 95.9 19.2V3.79999C95.8 1.69999 94.1 0 92.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="96" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M36.7 11.7L38.5 12.3C38.2 13.3 37.8 14 37.2 14.5C36.6 15 35.8 15.2 34.8 15.2C33.6 15.2 32.6 14.8 31.9 14C31.1 13.2 30.8 12.1 30.8 10.7C30.8 9.19995 31.2 7.99995 32 7.19995C32.8 6.39995 33.8 6 35 6C36.1 6 37 6.3 37.7 7C38.1 7.4 38.4 7.89995 38.6 8.69995L36.8 9.09998C36.7 8.59998 36.5 8.3 36.1 8C35.8 7.7 35.4 7.59998 34.9 7.59998C34.2 7.59998 33.7 7.79999 33.3 8.29999C32.9 8.79999 32.7 9.49998 32.7 10.6C32.7 11.7 32.9 12.5 33.3 13C33.7 13.5 34.2 13.7 34.9 13.7C35.4 13.7 35.8 13.5 36.1 13.2C36.3 12.9 36.6 12.4 36.7 11.7Z" fill="white"/>
|
8 |
-
<path d="M39.6 11.7C39.6 11.1 39.7 10.6 40 10C40.3 9.5 40.7 9.09999 41.2 8.79999C41.7 8.49999 42.3 8.39996 42.9 8.39996C43.9 8.39996 44.7 8.69996 45.3 9.39996C45.9 9.99996 46.2 10.8 46.2 11.8C46.2 12.8 45.9 13.6 45.2 14.2C44.6 14.8 43.8 15.2 42.8 15.2C42.2 15.2 41.6 15.1 41.1 14.8C40.6 14.5 40.1 14.1 39.9 13.6C39.8 13.1 39.6 12.4 39.6 11.7ZM41.4 11.8C41.4 12.4 41.6 12.9 41.9 13.3C42.2 13.6 42.6 13.8 43 13.8C43.4 13.8 43.8 13.6 44.1 13.3C44.4 13 44.6 12.5 44.6 11.8C44.6 11.2 44.4 10.7 44.1 10.3C43.8 9.99999 43.4 9.79999 43 9.79999C42.6 9.79999 42.2 9.99999 41.9 10.3C41.6 10.6 41.4 11.1 41.4 11.8Z" fill="white"/>
|
9 |
-
<path d="M47.6 8.5H49.2V9.39996C49.8 8.69996 50.4 8.39996 51.2 8.39996C51.6 8.39996 52 8.49995 52.3 8.69995C52.6 8.89995 52.9 9.1 53.1 9.5C53.4 9.2 53.7 8.89995 54 8.69995C54.3 8.49995 54.7 8.39996 55.1 8.39996C55.6 8.39996 56 8.49995 56.3 8.69995C56.6 8.89995 56.9 9.19998 57 9.59998C57.1 9.89998 57.2 10.3 57.2 10.9V15.1H55.5V11.4C55.5 10.8 55.4 10.3 55.3 10.2C55.1 9.99995 54.9 9.79999 54.6 9.79999C54.4 9.79999 54.1 9.9 53.9 10C53.7 10.1 53.5 10.4 53.4 10.6C53.3 10.8 53.3 11.3 53.3 11.9V15H51.6V11.4C51.6 10.8 51.6 10.4 51.5 10.2C51.4 9.99995 51.3 9.89999 51.2 9.79999C51.1 9.69999 50.9 9.69995 50.7 9.69995C50.4 9.69995 50.2 9.79996 50 9.89996C49.8 9.99996 49.6 10.2 49.5 10.5C49.4 10.8 49.4 11.2 49.4 11.8V15H47.7V8.5H47.6Z" fill="white"/>
|
10 |
-
<path d="M58.8 8.5H60.4V9.5C60.6 9.2 60.9 8.89995 61.2 8.69995C61.6 8.49995 61.9 8.39996 62.4 8.39996C63.2 8.39996 63.8 8.69999 64.3 9.29999C64.8 9.89999 65.1 10.7 65.1 11.8C65.1 12.9 64.8 13.7 64.3 14.3C63.8 14.9 63.1 15.2 62.4 15.2C62 15.2 61.7 15.1 61.4 15C61.1 14.9 60.8 14.6 60.5 14.3V17.6H58.8V8.5ZM60.5 11.7C60.5 12.4 60.6 13 60.9 13.3C61.2 13.6 61.5 13.8 62 13.8C62.4 13.8 62.7 13.6 63 13.3C63.3 13 63.4 12.5 63.4 11.7C63.4 11 63.3 10.5 63 10.2C62.7 9.89995 62.4 9.69995 62 9.69995C61.6 9.69995 61.2 9.89995 61 10.2C60.8 10.5 60.5 11 60.5 11.7Z" fill="white"/>
|
11 |
-
<path d="M67.7 10.5L66.1 10.2C66.3 9.59995 66.6 9.09999 67 8.79999C67.4 8.49999 68.1 8.29999 68.9 8.29999C69.7 8.29999 70.2 8.39998 70.6 8.59998C71 8.79998 71.2 8.99999 71.4 9.29999C71.6 9.59999 71.6 10.1 71.6 10.8V12.8C71.6 13.4 71.6 13.8 71.7 14.1C71.8 14.4 71.9 14.7 72 15H70.3C70.3 14.9 70.2 14.7 70.1 14.5C70.1 14.4 70.1 14.3 70 14.3C69.7 14.6 69.4 14.8 69.1 14.9C68.8 15 68.4 15.1 68 15.1C67.3 15.1 66.8 14.9 66.4 14.6C66 14.2 65.8 13.8 65.8 13.2C65.8 12.8 65.9 12.5 66.1 12.2C66.3 11.9 66.5 11.7 66.8 11.5C67.1 11.3 67.6 11.2 68.2 11.1C69 10.9 69.6 10.8 69.9 10.7V10.6C69.9 10.3 69.8 9.99996 69.7 9.89996C69.5 9.79996 69.2 9.69995 68.8 9.69995C68.5 9.69995 68.3 9.79996 68.1 9.89996C67.9 9.99996 67.8 10.2 67.7 10.5ZM70 11.9C69.8 12 69.4 12.1 69 12.2C68.5 12.3 68.2 12.4 68.1 12.5C67.9 12.7 67.8 12.9 67.8 13.1C67.8 13.3 67.9 13.5 68.1 13.7C68.3 13.9 68.5 14 68.8 14C69.1 14 69.4 13.9 69.7 13.7C69.9 13.5 70 13.4 70.1 13.1C70.1 13 70.2 12.7 70.2 12.3V11.9H70Z" fill="white"/>
|
12 |
-
<path d="M75.1 15H73.4V8.5H75V9.39996C75.3 8.99996 75.5 8.7 75.7 8.5C75.9 8.4 76.2 8.29999 76.4 8.29999C76.8 8.29999 77.2 8.39998 77.5 8.59998L77 10.1C76.7 9.89998 76.4 9.79999 76.2 9.79999C76 9.79999 75.8 9.9 75.6 10C75.4 10.1 75.3 10.4 75.2 10.7C75.1 11 75.1 11.8 75.1 12.9V15Z" fill="white"/>
|
13 |
-
<path d="M81.3 8.5V9.89996H80.1V12.5C80.1 13 80.1 13.3 80.1 13.4C80.1 13.5 80.2 13.6 80.3 13.6C80.4 13.7 80.5 13.7 80.6 13.7C80.8 13.7 81 13.6 81.3 13.5L81.4 14.8C81 15 80.5 15.1 80 15.1C79.7 15.1 79.4 15 79.2 14.9C79 14.8 78.8 14.7 78.7 14.5C78.6 14.3 78.5 14.1 78.5 13.8C78.5 13.6 78.4 13.2 78.4 12.6V9.79999H77.6V8.39996H78.4V7.09998L80.1 6.09998V8.39996H81.3V8.5Z" fill="white"/>
|
14 |
-
<path d="M82.5 7.69995V6.09998H84.2V7.69995H82.5ZM82.5 15V8.5H84.2V15H82.5Z" fill="white"/>
|
15 |
-
<path d="M87.6 15H85.9V8.5H87.5V9.39996C87.8 8.99996 88 8.7 88.2 8.5C88.4 8.4 88.7 8.29999 88.9 8.29999C89.3 8.29999 89.7 8.39998 90 8.59998L89.5 10.1C89.2 9.89998 88.9 9.79999 88.7 9.79999C88.5 9.79999 88.3 9.9 88.1 10C87.9 10.1 87.8 10.4 87.7 10.7C87.6 11 87.6 11.8 87.6 12.9V15Z" fill="white"/>
|
16 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
17 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
18 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
19 |
-
</g>
|
20 |
-
</svg>
|
1 |
+
<svg width="96" height="23" viewBox="0 0 96 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="96" height="23">
|
3 |
+
<path d="M92.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H92.1C94.2 23 95.9 21.3 95.9 19.2V3.79999C95.8 1.69999 94.1 0 92.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="96" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M36.7 11.7L38.5 12.3C38.2 13.3 37.8 14 37.2 14.5C36.6 15 35.8 15.2 34.8 15.2C33.6 15.2 32.6 14.8 31.9 14C31.1 13.2 30.8 12.1 30.8 10.7C30.8 9.19995 31.2 7.99995 32 7.19995C32.8 6.39995 33.8 6 35 6C36.1 6 37 6.3 37.7 7C38.1 7.4 38.4 7.89995 38.6 8.69995L36.8 9.09998C36.7 8.59998 36.5 8.3 36.1 8C35.8 7.7 35.4 7.59998 34.9 7.59998C34.2 7.59998 33.7 7.79999 33.3 8.29999C32.9 8.79999 32.7 9.49998 32.7 10.6C32.7 11.7 32.9 12.5 33.3 13C33.7 13.5 34.2 13.7 34.9 13.7C35.4 13.7 35.8 13.5 36.1 13.2C36.3 12.9 36.6 12.4 36.7 11.7Z" fill="white"/>
|
8 |
+
<path d="M39.6 11.7C39.6 11.1 39.7 10.6 40 10C40.3 9.5 40.7 9.09999 41.2 8.79999C41.7 8.49999 42.3 8.39996 42.9 8.39996C43.9 8.39996 44.7 8.69996 45.3 9.39996C45.9 9.99996 46.2 10.8 46.2 11.8C46.2 12.8 45.9 13.6 45.2 14.2C44.6 14.8 43.8 15.2 42.8 15.2C42.2 15.2 41.6 15.1 41.1 14.8C40.6 14.5 40.1 14.1 39.9 13.6C39.8 13.1 39.6 12.4 39.6 11.7ZM41.4 11.8C41.4 12.4 41.6 12.9 41.9 13.3C42.2 13.6 42.6 13.8 43 13.8C43.4 13.8 43.8 13.6 44.1 13.3C44.4 13 44.6 12.5 44.6 11.8C44.6 11.2 44.4 10.7 44.1 10.3C43.8 9.99999 43.4 9.79999 43 9.79999C42.6 9.79999 42.2 9.99999 41.9 10.3C41.6 10.6 41.4 11.1 41.4 11.8Z" fill="white"/>
|
9 |
+
<path d="M47.6 8.5H49.2V9.39996C49.8 8.69996 50.4 8.39996 51.2 8.39996C51.6 8.39996 52 8.49995 52.3 8.69995C52.6 8.89995 52.9 9.1 53.1 9.5C53.4 9.2 53.7 8.89995 54 8.69995C54.3 8.49995 54.7 8.39996 55.1 8.39996C55.6 8.39996 56 8.49995 56.3 8.69995C56.6 8.89995 56.9 9.19998 57 9.59998C57.1 9.89998 57.2 10.3 57.2 10.9V15.1H55.5V11.4C55.5 10.8 55.4 10.3 55.3 10.2C55.1 9.99995 54.9 9.79999 54.6 9.79999C54.4 9.79999 54.1 9.9 53.9 10C53.7 10.1 53.5 10.4 53.4 10.6C53.3 10.8 53.3 11.3 53.3 11.9V15H51.6V11.4C51.6 10.8 51.6 10.4 51.5 10.2C51.4 9.99995 51.3 9.89999 51.2 9.79999C51.1 9.69999 50.9 9.69995 50.7 9.69995C50.4 9.69995 50.2 9.79996 50 9.89996C49.8 9.99996 49.6 10.2 49.5 10.5C49.4 10.8 49.4 11.2 49.4 11.8V15H47.7V8.5H47.6Z" fill="white"/>
|
10 |
+
<path d="M58.8 8.5H60.4V9.5C60.6 9.2 60.9 8.89995 61.2 8.69995C61.6 8.49995 61.9 8.39996 62.4 8.39996C63.2 8.39996 63.8 8.69999 64.3 9.29999C64.8 9.89999 65.1 10.7 65.1 11.8C65.1 12.9 64.8 13.7 64.3 14.3C63.8 14.9 63.1 15.2 62.4 15.2C62 15.2 61.7 15.1 61.4 15C61.1 14.9 60.8 14.6 60.5 14.3V17.6H58.8V8.5ZM60.5 11.7C60.5 12.4 60.6 13 60.9 13.3C61.2 13.6 61.5 13.8 62 13.8C62.4 13.8 62.7 13.6 63 13.3C63.3 13 63.4 12.5 63.4 11.7C63.4 11 63.3 10.5 63 10.2C62.7 9.89995 62.4 9.69995 62 9.69995C61.6 9.69995 61.2 9.89995 61 10.2C60.8 10.5 60.5 11 60.5 11.7Z" fill="white"/>
|
11 |
+
<path d="M67.7 10.5L66.1 10.2C66.3 9.59995 66.6 9.09999 67 8.79999C67.4 8.49999 68.1 8.29999 68.9 8.29999C69.7 8.29999 70.2 8.39998 70.6 8.59998C71 8.79998 71.2 8.99999 71.4 9.29999C71.6 9.59999 71.6 10.1 71.6 10.8V12.8C71.6 13.4 71.6 13.8 71.7 14.1C71.8 14.4 71.9 14.7 72 15H70.3C70.3 14.9 70.2 14.7 70.1 14.5C70.1 14.4 70.1 14.3 70 14.3C69.7 14.6 69.4 14.8 69.1 14.9C68.8 15 68.4 15.1 68 15.1C67.3 15.1 66.8 14.9 66.4 14.6C66 14.2 65.8 13.8 65.8 13.2C65.8 12.8 65.9 12.5 66.1 12.2C66.3 11.9 66.5 11.7 66.8 11.5C67.1 11.3 67.6 11.2 68.2 11.1C69 10.9 69.6 10.8 69.9 10.7V10.6C69.9 10.3 69.8 9.99996 69.7 9.89996C69.5 9.79996 69.2 9.69995 68.8 9.69995C68.5 9.69995 68.3 9.79996 68.1 9.89996C67.9 9.99996 67.8 10.2 67.7 10.5ZM70 11.9C69.8 12 69.4 12.1 69 12.2C68.5 12.3 68.2 12.4 68.1 12.5C67.9 12.7 67.8 12.9 67.8 13.1C67.8 13.3 67.9 13.5 68.1 13.7C68.3 13.9 68.5 14 68.8 14C69.1 14 69.4 13.9 69.7 13.7C69.9 13.5 70 13.4 70.1 13.1C70.1 13 70.2 12.7 70.2 12.3V11.9H70Z" fill="white"/>
|
12 |
+
<path d="M75.1 15H73.4V8.5H75V9.39996C75.3 8.99996 75.5 8.7 75.7 8.5C75.9 8.4 76.2 8.29999 76.4 8.29999C76.8 8.29999 77.2 8.39998 77.5 8.59998L77 10.1C76.7 9.89998 76.4 9.79999 76.2 9.79999C76 9.79999 75.8 9.9 75.6 10C75.4 10.1 75.3 10.4 75.2 10.7C75.1 11 75.1 11.8 75.1 12.9V15Z" fill="white"/>
|
13 |
+
<path d="M81.3 8.5V9.89996H80.1V12.5C80.1 13 80.1 13.3 80.1 13.4C80.1 13.5 80.2 13.6 80.3 13.6C80.4 13.7 80.5 13.7 80.6 13.7C80.8 13.7 81 13.6 81.3 13.5L81.4 14.8C81 15 80.5 15.1 80 15.1C79.7 15.1 79.4 15 79.2 14.9C79 14.8 78.8 14.7 78.7 14.5C78.6 14.3 78.5 14.1 78.5 13.8C78.5 13.6 78.4 13.2 78.4 12.6V9.79999H77.6V8.39996H78.4V7.09998L80.1 6.09998V8.39996H81.3V8.5Z" fill="white"/>
|
14 |
+
<path d="M82.5 7.69995V6.09998H84.2V7.69995H82.5ZM82.5 15V8.5H84.2V15H82.5Z" fill="white"/>
|
15 |
+
<path d="M87.6 15H85.9V8.5H87.5V9.39996C87.8 8.99996 88 8.7 88.2 8.5C88.4 8.4 88.7 8.29999 88.9 8.29999C89.3 8.29999 89.7 8.39998 90 8.59998L89.5 10.1C89.2 9.89998 88.9 9.79999 88.7 9.79999C88.5 9.79999 88.3 9.9 88.1 10C87.9 10.1 87.8 10.4 87.7 10.7C87.6 11 87.6 11.8 87.6 12.9V15Z" fill="white"/>
|
16 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
17 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
18 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
19 |
+
</g>
|
20 |
+
</svg>
|
images/share_icons/Linkedin_Share/fa_IR_share.svg
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
-
<svg width="93" height="23" viewBox="0 0 93 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="93" height="23">
|
3 |
-
<path d="M89.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H89.1C91.2 23 92.9 21.3 92.9 19.2V3.79999C92.8 1.69999 91.1 0 89.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="93" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M37.3 12.1C37.3 12.3 37.3 12.5 37.2 12.7C37.1 12.9 37.1 13 36.9 13.3C36.8 13 36.7 12.8 36.6 12.7C36.5 12.6 36.4 12.6 36.3 12.6C36.1 12.6 35.8 12.7 35.4 13C35 13.3 34.8 13.5 34.8 13.6C34.8 13.7 34.9 13.8 35 13.8C35.1 13.8 35.3 13.8 35.5 13.8C35.6 13.8 35.6 13.8 35.7 13.8C35.8 13.8 35.8 13.8 35.9 13.8C36.3 13.8 36.6 13.8 36.8 13.9C36.9 14 37 14.1 37 14.4C37 14.8 36.9 15.3 36.8 15.7C36.6 16.2 36.3 16.6 35.9 16.8C35.4 17.1 34.9 17.3 34.4 17.5C33.9 17.7 33.4 17.8 32.9 17.8C31.6 17.8 31 17.2 31 16.1C31 15.5 31.1 15 31.2 14.6C31.4 14.1 31.7 13.5 32.2 12.7L32.5 12.9C32.2 13.4 32 13.9 31.8 14.3C31.6 14.7 31.6 15 31.6 15.3C31.6 16.1 32 16.5 32.9 16.5C33.2 16.5 33.5 16.5 33.8 16.4C34.1 16.3 34.4 16.3 34.7 16.2C34.9 16.1 35.1 16 35.4 15.9C35.8 15.7 36 15.6 36 15.6C36.2 15.5 36.3 15.4 36.3 15.3C36.3 15.3 36.2 15.2 36 15.2C35.8 15.2 35.7 15.2 35.6 15.2C35 15.2 34.6 15.1 34.3 14.9C34.1 14.8 34 14.5 34 14.1C34 13.9 34.1 13.7 34.2 13.4C34.3 13.1 34.5 12.8 34.7 12.6C35 12.2 35.3 11.8 35.6 11.6C35.9 11.4 36.2 11.3 36.5 11.3C36.7 11.3 36.9 11.4 37.1 11.6C37.2 11.5 37.3 11.8 37.3 12.1Z" fill="white"/>
|
8 |
-
<path d="M43.6 15.2C43.6 15.4 43.5 15.8 43.2 16.2C42.9 16.6 42.6 17 42.2 17.3C41.8 17.6 41.4 17.8 41.1 17.8C40.7 17.8 40.4 17.7 39.9 17.5C39.5 17.3 39 17 38.2 16.4L38.5 16C38.9 16.2 39.2 16.4 39.4 16.5C39.6 16.6 39.9 16.6 40.1 16.6C40.4 16.6 40.7 16.5 40.9 16.4C41.1 16.3 41.6 15.9 42 15.5C42.7 14.9 43 14.4 43 14.1C43 13.9 42.9 13.7 42.8 13.5C42.7 13.2 42.5 12.9 42.3 12.7L42.6 11C42.9 11.3 43.1 11.6 43.2 12C43.4 12.4 43.4 12.8 43.4 13.3V15.2H43.6Z" fill="white"/>
|
9 |
-
<path d="M45.8 13.3C45.8 13.7 45.8 14 45.7 14.3C45.6 14.6 45.4 15 45.2 15.5L44.8 15.4C44.9 14.9 44.9 14.5 44.9 14.1C44.9 13.9 44.9 13.5 44.8 13C44.8 12.5 44.7 12 44.6 11.6C44.5 11.1 44.4 10.6 44.3 9.90002C44.3 9.70002 44.2 9.50002 44.2 9.40002C44.2 9.30002 44.3 9.10005 44.4 8.80005C44.5 8.50005 44.7 8.10001 44.9 7.70001L45.3 9.90002C45.4 10.7 45.5 11.4 45.6 12C45.8 12.4 45.8 12.8 45.8 13.3Z" fill="white"/>
|
10 |
-
<path d="M50.6 15H47.8C47.5 15 47.3 14.9 47.2 14.8C47 14.7 46.9 14.4 46.9 14.1C46.9 13.9 46.9 13.7 46.9 13.5C46.9 13.3 46.9 13.1 47 12.9H47.2C47.2 13 47.3 13.1 47.4 13.2C47.5 13.3 47.6 13.3 47.8 13.3H49.9C49.8 12.7 49.6 12.2 49.4 11.9C49.2 11.6 48.9 11.3 48.6 11.1L49 9.20001C49.5 9.60001 49.9 10.1 50.1 10.7C50.3 11.3 50.4 12 50.4 13V15H50.6ZM49.5 7L48.8 8.40002L47.4 7.70001L48.1 6.30005L49.5 7Z" fill="white"/>
|
11 |
-
<path d="M55.1 15H50.2V13.4H54.2C54 13.2 53.9 13 53.7 12.9C53.6 12.8 53.4 12.6 53.2 12.5C53 12.3 52.7 12.1 52.5 12L52.3 12.2C51.9 11.8 51.7 11.6 51.7 11.5C51.5 11.3 51.4 11 51.4 10.7C51.4 10.3 51.4 10 51.5 9.80005C51.6 9.60005 51.8 9.40001 52 9.20001C52.2 9.00001 52.5 8.90005 52.8 8.80005C53 8.70005 53.3 8.60002 53.6 8.40002C53.8 8.30002 54.1 8.2 54.6 8V9.5C54.6 9.5 54.4 9.60001 54.1 9.70001C53.7 9.80001 53.4 9.9 53.1 10C52.8 10.1 52.6 10.2 52.6 10.3C52.6 10.3 52.7 10.5 53 10.8C53.4 11.2 53.7 11.5 54 11.9C54.4 12.4 54.8 12.9 55.1 13.5V15ZM54.6 6V7.40002C53.7 7.70002 53 8.00005 52.3 8.30005C51.7 8.60005 51.2 8.80004 50.9 9.10004V8.20001C51 8.10001 51.3 7.90004 51.6 7.60004C52 7.30004 52.4 7.10005 52.9 6.80005C53.5 6.50005 54 6.2 54.6 6Z" fill="white"/>
|
12 |
-
<path d="M57.8 15C56.9 15 56.3 14.8 55.9 14.5C55.6 14.2 55.4 13.8 55.4 13.2C55.4 12.8 55.5 12.4 55.6 12.1C55.7 11.7 55.9 11.3 56.2 10.8L56.6 11.1C56.4 11.4 56.3 11.6 56.3 11.8C56.3 12 56.2 12.1 56.2 12.3C56.2 12.7 56.3 13 56.6 13.1C56.9 13.2 57.4 13.3 58.3 13.3H63.7C63.5 13.1 63.4 12.9 63.2 12.8C63.1 12.7 62.9 12.5 62.7 12.4C62.5 12.2 62.2 12 62 11.9L61.8 12.1C61.4 11.7 61.2 11.5 61.2 11.4C61 11.2 60.9 10.9 60.9 10.6C60.9 10.2 60.9 9.90001 61 9.70001C61.1 9.50001 61.3 9.30004 61.5 9.10004C61.7 8.90004 62 8.80001 62.3 8.70001C62.5 8.60001 62.8 8.50005 63.1 8.30005C63.3 8.20005 63.6 8.10002 64.1 7.90002V9.40002C64.1 9.40002 63.9 9.50004 63.6 9.60004C63.2 9.70004 62.9 9.80002 62.6 9.90002C62.3 10 62.1 10.1 62.1 10.2C62.1 10.2 62.2 10.4 62.5 10.7C62.9 11.1 63.2 11.4 63.5 11.8C63.9 12.3 64.3 12.8 64.6 13.4V15.1H57.8V15Z" fill="white"/>
|
13 |
-
<path d="M66.8 13.3C66.8 13.7 66.8 14 66.7 14.3C66.6 14.6 66.4 15 66.2 15.5L65.8 15.4C65.9 14.9 65.9 14.5 65.9 14.1C65.9 13.9 65.9 13.5 65.8 13C65.8 12.5 65.7 12 65.6 11.6C65.5 11.1 65.4 10.6 65.3 9.90002C65.3 9.70002 65.2 9.50002 65.2 9.40002C65.2 9.30002 65.3 9.10005 65.4 8.80005C65.5 8.50005 65.7 8.10001 65.9 7.70001L66.3 9.90002C66.4 10.7 66.5 11.4 66.6 12C66.8 12.4 66.8 12.8 66.8 13.3Z" fill="white"/>
|
14 |
-
<path d="M72.7 15.2C72.7 15.4 72.6 15.8 72.3 16.2C72 16.6 71.7 17 71.3 17.3C70.9 17.6 70.5 17.8 70.2 17.8C69.8 17.8 69.5 17.7 69 17.5C68.6 17.3 68.1 17 67.3 16.4L67.6 16C68 16.2 68.3 16.4 68.5 16.5C68.7 16.6 69 16.6 69.2 16.6C69.5 16.6 69.8 16.5 70 16.4C70.2 16.3 70.7 15.9 71.1 15.5C71.8 14.9 72.1 14.4 72.1 14.1C72.1 13.9 72 13.7 71.9 13.5C71.8 13.2 71.6 12.9 71.4 12.7L71.7 11C72 11.3 72.2 11.6 72.3 12C72.5 12.4 72.5 12.8 72.5 13.3V15.2H72.7Z" fill="white"/>
|
15 |
-
<path d="M76.1 15H72.3V13.4H75.5C75.5 13.1 75.4 12.9 75.3 12.7C75.2 12.6 75.1 12.4 74.9 12.2L75.4 10.7C75.7 11 75.9 11.4 76 11.8C76.1 12.2 76.2 12.7 76.2 13.5V15H76.1ZM76 8.5L75.4 9.70001L74.5 9.20001L74 10.2L72.9 9.60004L73.6 8.40002L74.5 8.90002L75 7.90002L76 8.5Z" fill="white"/>
|
16 |
-
<path d="M83.7 15C83.2 15 82.9 15 82.6 14.9C82.3 14.8 82 14.7 81.7 14.6C81.5 14.8 81.3 14.9 81.1 14.9C80.9 15 80.6 15 80.3 15H79.3C79 15 78.8 14.9 78.7 14.8C78.5 14.7 78.4 14.4 78.3 14.1C78.1 14.4 77.8 14.7 77.5 14.8C77.3 14.9 77 15 76.7 15H75.7V13.4H76.6C77 13.4 77.4 13.3 77.7 13C78.1 12.7 78.3 12.2 78.3 11.6L78.7 11.7C78.7 11.8 78.7 12 78.7 12.1C78.7 12.3 78.7 12.5 78.7 12.7C78.7 12.9 78.8 13.1 78.9 13.2C79 13.3 79.2 13.4 79.4 13.4H80.2C80.7 13.4 81.1 13.3 81.3 13.2C81.6 13 81.7 12.7 81.7 12.3C81.7 12.2 81.7 12.1 81.8 12C81.8 12 81.9 11.9 82 11.8L82.2 11.6C82.2 11.7 82.2 11.8 82.2 11.9C82.2 12 82.2 12.1 82.2 12.2C82.2 12.4 82.2 12.7 82.1 13.1C82.3 13.2 82.4 13.2 82.6 13.3C82.8 13.4 83 13.4 83.2 13.4C83.2 13.3 83.1 13.1 83 12.9C82.9 12.7 82.8 12.5 82.8 12.5C82.8 12.4 82.8 12.3 82.8 12.3C82.8 12.3 82.9 12.2 82.9 12.1L83.4 11.4C83.5 11.7 83.6 11.9 83.6 12.1C83.6 12.3 83.7 12.6 83.7 12.9V15ZM83 9.20001L82.3 10.4L81.4 9.90002L80.9 10.9L79.8 10.3L80.4 9.10004L81.3 9.60004L81.8 8.60004L83 9.20001ZM81.8 7.70001L81.2 9L80.1 8.40002L80.7 7.20001L81.8 7.70001Z" fill="white"/>
|
17 |
-
<path d="M86 13.3C86 13.7 86 14 85.9 14.3C85.8 14.6 85.6 15 85.4 15.5L85 15.4C85.1 14.9 85.1 14.5 85.1 14.1C85.1 13.9 85.1 13.5 85 13C85 12.5 84.9 12 84.8 11.6C84.7 11.1 84.6 10.6 84.5 9.90002C84.5 9.70002 84.4 9.50002 84.4 9.40002C84.4 9.30002 84.5 9.10005 84.6 8.80005C84.7 8.50005 84.9 8.10001 85.1 7.70001L85.5 9.90002C85.6 10.7 85.7 11.4 85.8 12C86 12.4 86 12.8 86 13.3Z" fill="white"/>
|
18 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
19 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
20 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
21 |
-
</g>
|
22 |
-
</svg>
|
1 |
+
<svg width="93" height="23" viewBox="0 0 93 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="93" height="23">
|
3 |
+
<path d="M89.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H89.1C91.2 23 92.9 21.3 92.9 19.2V3.79999C92.8 1.69999 91.1 0 89.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="93" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M37.3 12.1C37.3 12.3 37.3 12.5 37.2 12.7C37.1 12.9 37.1 13 36.9 13.3C36.8 13 36.7 12.8 36.6 12.7C36.5 12.6 36.4 12.6 36.3 12.6C36.1 12.6 35.8 12.7 35.4 13C35 13.3 34.8 13.5 34.8 13.6C34.8 13.7 34.9 13.8 35 13.8C35.1 13.8 35.3 13.8 35.5 13.8C35.6 13.8 35.6 13.8 35.7 13.8C35.8 13.8 35.8 13.8 35.9 13.8C36.3 13.8 36.6 13.8 36.8 13.9C36.9 14 37 14.1 37 14.4C37 14.8 36.9 15.3 36.8 15.7C36.6 16.2 36.3 16.6 35.9 16.8C35.4 17.1 34.9 17.3 34.4 17.5C33.9 17.7 33.4 17.8 32.9 17.8C31.6 17.8 31 17.2 31 16.1C31 15.5 31.1 15 31.2 14.6C31.4 14.1 31.7 13.5 32.2 12.7L32.5 12.9C32.2 13.4 32 13.9 31.8 14.3C31.6 14.7 31.6 15 31.6 15.3C31.6 16.1 32 16.5 32.9 16.5C33.2 16.5 33.5 16.5 33.8 16.4C34.1 16.3 34.4 16.3 34.7 16.2C34.9 16.1 35.1 16 35.4 15.9C35.8 15.7 36 15.6 36 15.6C36.2 15.5 36.3 15.4 36.3 15.3C36.3 15.3 36.2 15.2 36 15.2C35.8 15.2 35.7 15.2 35.6 15.2C35 15.2 34.6 15.1 34.3 14.9C34.1 14.8 34 14.5 34 14.1C34 13.9 34.1 13.7 34.2 13.4C34.3 13.1 34.5 12.8 34.7 12.6C35 12.2 35.3 11.8 35.6 11.6C35.9 11.4 36.2 11.3 36.5 11.3C36.7 11.3 36.9 11.4 37.1 11.6C37.2 11.5 37.3 11.8 37.3 12.1Z" fill="white"/>
|
8 |
+
<path d="M43.6 15.2C43.6 15.4 43.5 15.8 43.2 16.2C42.9 16.6 42.6 17 42.2 17.3C41.8 17.6 41.4 17.8 41.1 17.8C40.7 17.8 40.4 17.7 39.9 17.5C39.5 17.3 39 17 38.2 16.4L38.5 16C38.9 16.2 39.2 16.4 39.4 16.5C39.6 16.6 39.9 16.6 40.1 16.6C40.4 16.6 40.7 16.5 40.9 16.4C41.1 16.3 41.6 15.9 42 15.5C42.7 14.9 43 14.4 43 14.1C43 13.9 42.9 13.7 42.8 13.5C42.7 13.2 42.5 12.9 42.3 12.7L42.6 11C42.9 11.3 43.1 11.6 43.2 12C43.4 12.4 43.4 12.8 43.4 13.3V15.2H43.6Z" fill="white"/>
|
9 |
+
<path d="M45.8 13.3C45.8 13.7 45.8 14 45.7 14.3C45.6 14.6 45.4 15 45.2 15.5L44.8 15.4C44.9 14.9 44.9 14.5 44.9 14.1C44.9 13.9 44.9 13.5 44.8 13C44.8 12.5 44.7 12 44.6 11.6C44.5 11.1 44.4 10.6 44.3 9.90002C44.3 9.70002 44.2 9.50002 44.2 9.40002C44.2 9.30002 44.3 9.10005 44.4 8.80005C44.5 8.50005 44.7 8.10001 44.9 7.70001L45.3 9.90002C45.4 10.7 45.5 11.4 45.6 12C45.8 12.4 45.8 12.8 45.8 13.3Z" fill="white"/>
|
10 |
+
<path d="M50.6 15H47.8C47.5 15 47.3 14.9 47.2 14.8C47 14.7 46.9 14.4 46.9 14.1C46.9 13.9 46.9 13.7 46.9 13.5C46.9 13.3 46.9 13.1 47 12.9H47.2C47.2 13 47.3 13.1 47.4 13.2C47.5 13.3 47.6 13.3 47.8 13.3H49.9C49.8 12.7 49.6 12.2 49.4 11.9C49.2 11.6 48.9 11.3 48.6 11.1L49 9.20001C49.5 9.60001 49.9 10.1 50.1 10.7C50.3 11.3 50.4 12 50.4 13V15H50.6ZM49.5 7L48.8 8.40002L47.4 7.70001L48.1 6.30005L49.5 7Z" fill="white"/>
|
11 |
+
<path d="M55.1 15H50.2V13.4H54.2C54 13.2 53.9 13 53.7 12.9C53.6 12.8 53.4 12.6 53.2 12.5C53 12.3 52.7 12.1 52.5 12L52.3 12.2C51.9 11.8 51.7 11.6 51.7 11.5C51.5 11.3 51.4 11 51.4 10.7C51.4 10.3 51.4 10 51.5 9.80005C51.6 9.60005 51.8 9.40001 52 9.20001C52.2 9.00001 52.5 8.90005 52.8 8.80005C53 8.70005 53.3 8.60002 53.6 8.40002C53.8 8.30002 54.1 8.2 54.6 8V9.5C54.6 9.5 54.4 9.60001 54.1 9.70001C53.7 9.80001 53.4 9.9 53.1 10C52.8 10.1 52.6 10.2 52.6 10.3C52.6 10.3 52.7 10.5 53 10.8C53.4 11.2 53.7 11.5 54 11.9C54.4 12.4 54.8 12.9 55.1 13.5V15ZM54.6 6V7.40002C53.7 7.70002 53 8.00005 52.3 8.30005C51.7 8.60005 51.2 8.80004 50.9 9.10004V8.20001C51 8.10001 51.3 7.90004 51.6 7.60004C52 7.30004 52.4 7.10005 52.9 6.80005C53.5 6.50005 54 6.2 54.6 6Z" fill="white"/>
|
12 |
+
<path d="M57.8 15C56.9 15 56.3 14.8 55.9 14.5C55.6 14.2 55.4 13.8 55.4 13.2C55.4 12.8 55.5 12.4 55.6 12.1C55.7 11.7 55.9 11.3 56.2 10.8L56.6 11.1C56.4 11.4 56.3 11.6 56.3 11.8C56.3 12 56.2 12.1 56.2 12.3C56.2 12.7 56.3 13 56.6 13.1C56.9 13.2 57.4 13.3 58.3 13.3H63.7C63.5 13.1 63.4 12.9 63.2 12.8C63.1 12.7 62.9 12.5 62.7 12.4C62.5 12.2 62.2 12 62 11.9L61.8 12.1C61.4 11.7 61.2 11.5 61.2 11.4C61 11.2 60.9 10.9 60.9 10.6C60.9 10.2 60.9 9.90001 61 9.70001C61.1 9.50001 61.3 9.30004 61.5 9.10004C61.7 8.90004 62 8.80001 62.3 8.70001C62.5 8.60001 62.8 8.50005 63.1 8.30005C63.3 8.20005 63.6 8.10002 64.1 7.90002V9.40002C64.1 9.40002 63.9 9.50004 63.6 9.60004C63.2 9.70004 62.9 9.80002 62.6 9.90002C62.3 10 62.1 10.1 62.1 10.2C62.1 10.2 62.2 10.4 62.5 10.7C62.9 11.1 63.2 11.4 63.5 11.8C63.9 12.3 64.3 12.8 64.6 13.4V15.1H57.8V15Z" fill="white"/>
|
13 |
+
<path d="M66.8 13.3C66.8 13.7 66.8 14 66.7 14.3C66.6 14.6 66.4 15 66.2 15.5L65.8 15.4C65.9 14.9 65.9 14.5 65.9 14.1C65.9 13.9 65.9 13.5 65.8 13C65.8 12.5 65.7 12 65.6 11.6C65.5 11.1 65.4 10.6 65.3 9.90002C65.3 9.70002 65.2 9.50002 65.2 9.40002C65.2 9.30002 65.3 9.10005 65.4 8.80005C65.5 8.50005 65.7 8.10001 65.9 7.70001L66.3 9.90002C66.4 10.7 66.5 11.4 66.6 12C66.8 12.4 66.8 12.8 66.8 13.3Z" fill="white"/>
|
14 |
+
<path d="M72.7 15.2C72.7 15.4 72.6 15.8 72.3 16.2C72 16.6 71.7 17 71.3 17.3C70.9 17.6 70.5 17.8 70.2 17.8C69.8 17.8 69.5 17.7 69 17.5C68.6 17.3 68.1 17 67.3 16.4L67.6 16C68 16.2 68.3 16.4 68.5 16.5C68.7 16.6 69 16.6 69.2 16.6C69.5 16.6 69.8 16.5 70 16.4C70.2 16.3 70.7 15.9 71.1 15.5C71.8 14.9 72.1 14.4 72.1 14.1C72.1 13.9 72 13.7 71.9 13.5C71.8 13.2 71.6 12.9 71.4 12.7L71.7 11C72 11.3 72.2 11.6 72.3 12C72.5 12.4 72.5 12.8 72.5 13.3V15.2H72.7Z" fill="white"/>
|
15 |
+
<path d="M76.1 15H72.3V13.4H75.5C75.5 13.1 75.4 12.9 75.3 12.7C75.2 12.6 75.1 12.4 74.9 12.2L75.4 10.7C75.7 11 75.9 11.4 76 11.8C76.1 12.2 76.2 12.7 76.2 13.5V15H76.1ZM76 8.5L75.4 9.70001L74.5 9.20001L74 10.2L72.9 9.60004L73.6 8.40002L74.5 8.90002L75 7.90002L76 8.5Z" fill="white"/>
|
16 |
+
<path d="M83.7 15C83.2 15 82.9 15 82.6 14.9C82.3 14.8 82 14.7 81.7 14.6C81.5 14.8 81.3 14.9 81.1 14.9C80.9 15 80.6 15 80.3 15H79.3C79 15 78.8 14.9 78.7 14.8C78.5 14.7 78.4 14.4 78.3 14.1C78.1 14.4 77.8 14.7 77.5 14.8C77.3 14.9 77 15 76.7 15H75.7V13.4H76.6C77 13.4 77.4 13.3 77.7 13C78.1 12.7 78.3 12.2 78.3 11.6L78.7 11.7C78.7 11.8 78.7 12 78.7 12.1C78.7 12.3 78.7 12.5 78.7 12.7C78.7 12.9 78.8 13.1 78.9 13.2C79 13.3 79.2 13.4 79.4 13.4H80.2C80.7 13.4 81.1 13.3 81.3 13.2C81.6 13 81.7 12.7 81.7 12.3C81.7 12.2 81.7 12.1 81.8 12C81.8 12 81.9 11.9 82 11.8L82.2 11.6C82.2 11.7 82.2 11.8 82.2 11.9C82.2 12 82.2 12.1 82.2 12.2C82.2 12.4 82.2 12.7 82.1 13.1C82.3 13.2 82.4 13.2 82.6 13.3C82.8 13.4 83 13.4 83.2 13.4C83.2 13.3 83.1 13.1 83 12.9C82.9 12.7 82.8 12.5 82.8 12.5C82.8 12.4 82.8 12.3 82.8 12.3C82.8 12.3 82.9 12.2 82.9 12.1L83.4 11.4C83.5 11.7 83.6 11.9 83.6 12.1C83.6 12.3 83.7 12.6 83.7 12.9V15ZM83 9.20001L82.3 10.4L81.4 9.90002L80.9 10.9L79.8 10.3L80.4 9.10004L81.3 9.60004L81.8 8.60004L83 9.20001ZM81.8 7.70001L81.2 9L80.1 8.40002L80.7 7.20001L81.8 7.70001Z" fill="white"/>
|
17 |
+
<path d="M86 13.3C86 13.7 86 14 85.9 14.3C85.8 14.6 85.6 15 85.4 15.5L85 15.4C85.1 14.9 85.1 14.5 85.1 14.1C85.1 13.9 85.1 13.5 85 13C85 12.5 84.9 12 84.8 11.6C84.7 11.1 84.6 10.6 84.5 9.90002C84.5 9.70002 84.4 9.50002 84.4 9.40002C84.4 9.30002 84.5 9.10005 84.6 8.80005C84.7 8.50005 84.9 8.10001 85.1 7.70001L85.5 9.90002C85.6 10.7 85.7 11.4 85.8 12C86 12.4 86 12.8 86 13.3Z" fill="white"/>
|
18 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
19 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
20 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
21 |
+
</g>
|
22 |
+
</svg>
|
images/share_icons/Linkedin_Share/fr_FR_share.svg
CHANGED
@@ -1,19 +1,19 @@
|
|
1 |
-
<svg width="85" height="23" viewBox="0 0 85 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="85" height="23">
|
3 |
-
<path d="M81.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H81.1C83.2 23 84.9 21.3 84.9 19.2V3.80002C84.8 1.70002 83.1 0 81.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="85" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M28 15V6H30.9C32 6 32.7 6.00001 33.1 6.10001C33.6 6.20001 34 6.5 34.4 7C34.7 7.5 34.9 8.00001 34.9 8.70001C34.9 9.30001 34.8 9.70001 34.6 10.1C34.4 10.5 34.1 10.8 33.8 11C33.5 11.2 33.2 11.4 32.9 11.4C32.5 11.5 31.8 11.5 31 11.5H29.8V14.9H28V15ZM29.8 7.60001V10.1H30.8C31.5 10.1 32 10.1 32.2 10C32.4 9.9 32.6 9.80001 32.8 9.60001C32.9 9.40001 33 9.19999 33 8.89999C33 8.59999 32.9 8.30001 32.7 8.10001C32.5 7.90001 32.3 7.80001 32 7.70001C31.8 7.70001 31.3 7.60001 30.7 7.60001H29.8Z" fill="white"/>
|
8 |
-
<path d="M37.6 10.5L36 10.2C36.2 9.60001 36.5 9.10002 36.9 8.80002C37.3 8.50002 38 8.30002 38.8 8.30002C39.6 8.30002 40.1 8.40001 40.5 8.60001C40.9 8.80001 41.1 9.00002 41.3 9.30002C41.5 9.60002 41.5 10.1 41.5 10.8V12.8C41.5 13.4 41.5 13.8 41.6 14.1C41.7 14.4 41.8 14.7 41.9 15H40.2C40.2 14.9 40.1 14.7 40 14.5C40 14.4 40 14.3 39.9 14.3C39.6 14.6 39.3 14.8 39 14.9C38.7 15 38.3 15.1 37.9 15.1C37.2 15.1 36.7 14.9 36.3 14.6C35.9 14.3 35.7 13.8 35.7 13.2C35.7 12.8 35.8 12.5 36 12.2C36.2 11.9 36.4 11.7 36.7 11.5C37 11.3 37.5 11.2 38.1 11.1C38.9 10.9 39.5 10.8 39.8 10.7V10.6C39.8 10.3 39.7 9.99999 39.6 9.89999C39.5 9.79999 39.1 9.70001 38.7 9.70001C38.4 9.70001 38.2 9.79999 38 9.89999C37.9 9.99999 37.7 10.2 37.6 10.5ZM39.9 11.9C39.7 12 39.3 12.1 38.9 12.2C38.4 12.3 38.1 12.4 38 12.5C37.8 12.7 37.7 12.9 37.7 13.1C37.7 13.3 37.8 13.5 38 13.7C38.2 13.9 38.4 14 38.7 14C39 14 39.3 13.9 39.6 13.7C39.8 13.5 39.9 13.4 40 13.1C40 13 40.1 12.7 40.1 12.3V11.9H39.9Z" fill="white"/>
|
9 |
-
<path d="M44.9 15H43.2V8.5H44.8V9.39999C45.1 8.99999 45.3 8.7 45.5 8.5C45.7 8.4 46 8.30002 46.2 8.30002C46.6 8.30002 47 8.40001 47.3 8.60001L46.8 10.1C46.5 9.90001 46.2 9.80002 46 9.80002C45.8 9.80002 45.6 9.9 45.4 10C45.2 10.1 45.1 10.4 45 10.7C44.9 11 44.9 11.8 44.9 12.9V15Z" fill="white"/>
|
10 |
-
<path d="M51.2 8.5V9.89999H50V12.5C50 13 50 13.3 50 13.4C50 13.5 50.1 13.6 50.2 13.6C50.3 13.7 50.4 13.7 50.5 13.7C50.7 13.7 50.9 13.6 51.2 13.5L51.3 14.8C50.9 15 50.4 15.1 49.9 15.1C49.6 15.1 49.3 15 49.1 14.9C48.9 14.8 48.7 14.7 48.6 14.5C48.5 14.3 48.4 14.1 48.4 13.8C48.4 13.6 48.3 13.2 48.3 12.6V9.80002H47.5V8.39999H48.3V7.10001L50 6.10001V8.39999H51.2V8.5Z" fill="white"/>
|
11 |
-
<path d="M53.6 10.5L52 10.2C52.2 9.60001 52.5 9.10002 52.9 8.80002C53.3 8.50002 54 8.30002 54.8 8.30002C55.6 8.30002 56.1 8.40001 56.5 8.60001C56.9 8.80001 57.1 9.00002 57.3 9.30002C57.5 9.60002 57.5 10.1 57.5 10.8V12.8C57.5 13.4 57.5 13.8 57.6 14.1C57.7 14.4 57.8 14.7 57.9 15H56.2C56.2 14.9 56.1 14.7 56 14.5C56 14.4 56 14.3 55.9 14.3C55.6 14.6 55.3 14.8 55 14.9C54.7 15 54.3 15.1 53.9 15.1C53.2 15.1 52.7 14.9 52.3 14.6C51.9 14.3 51.7 13.8 51.7 13.2C51.7 12.8 51.8 12.5 52 12.2C52.2 11.9 52.4 11.7 52.7 11.5C53 11.3 53.5 11.2 54.1 11.1C54.9 10.9 55.5 10.8 55.8 10.7V10.6C55.8 10.3 55.7 9.99999 55.6 9.89999C55.5 9.79999 55.1 9.70001 54.7 9.70001C54.4 9.70001 54.2 9.79999 54 9.89999C53.9 9.99999 53.7 10.2 53.6 10.5ZM55.9 11.9C55.7 12 55.3 12.1 54.9 12.2C54.4 12.3 54.1 12.4 54 12.5C53.8 12.7 53.7 12.9 53.7 13.1C53.7 13.3 53.8 13.5 54 13.7C54.2 13.9 54.4 14 54.7 14C55 14 55.3 13.9 55.6 13.7C55.8 13.5 55.9 13.4 56 13.1C56 13 56.1 12.7 56.1 12.3V11.9H55.9Z" fill="white"/>
|
12 |
-
<path d="M59.1 15.5L61.1 15.7C61.1 15.9 61.2 16.1 61.3 16.2C61.5 16.3 61.7 16.4 62.1 16.4C62.5 16.4 62.9 16.3 63.1 16.2C63.3 16.1 63.4 16 63.4 15.8C63.5 15.7 63.5 15.4 63.5 15V14.1C63 14.8 62.3 15.2 61.6 15.2C60.7 15.2 60 14.8 59.5 14.1C59.1 13.5 58.9 12.8 58.9 11.9C58.9 10.8 59.2 9.99999 59.7 9.39999C60.2 8.79999 60.9 8.5 61.7 8.5C62.5 8.5 63.2 8.90001 63.7 9.60001V8.70001H65.3V14.5C65.3 15.3 65.2 15.8 65.1 16.2C65 16.6 64.8 16.9 64.6 17.1C64.4 17.3 64.1 17.5 63.7 17.6C63.3 17.7 62.8 17.8 62.3 17.8C61.2 17.8 60.4 17.6 60 17.2C59.6 16.8 59.3 16.3 59.3 15.8C59.1 15.6 59.1 15.5 59.1 15.5ZM60.7 11.6C60.7 12.3 60.8 12.8 61.1 13.1C61.4 13.4 61.7 13.6 62.1 13.6C62.5 13.6 62.9 13.4 63.2 13.1C63.5 12.8 63.6 12.3 63.6 11.6C63.6 10.9 63.5 10.4 63.2 10.1C62.9 9.80001 62.6 9.60001 62.1 9.60001C61.7 9.60001 61.3 9.80001 61.1 10.1C60.8 10.5 60.7 11 60.7 11.6Z" fill="white"/>
|
13 |
-
<path d="M70.7 13L72.4 13.3C72.2 13.9 71.8 14.4 71.4 14.7C71 15 70.3 15.2 69.6 15.2C68.5 15.2 67.6 14.8 67.1 14.1C66.7 13.5 66.5 12.8 66.5 11.9C66.5 10.8 66.8 9.99999 67.3 9.39999C67.9 8.79999 68.6 8.5 69.4 8.5C70.4 8.5 71.1 8.8 71.7 9.5C72.3 10.1 72.5 11.1 72.5 12.4H68.2C68.2 12.9 68.4 13.3 68.6 13.6C68.9 13.9 69.2 14 69.6 14C69.9 14 70.1 13.9 70.3 13.8C70.5 13.5 70.6 13.3 70.7 13ZM70.8 11.2C70.8 10.7 70.7 10.3 70.4 10.1C70.1 9.90001 69.9 9.70001 69.5 9.70001C69.1 9.70001 68.8 9.80001 68.6 10.1C68.4 10.4 68.2 10.7 68.2 11.2H70.8Z" fill="white"/>
|
14 |
-
<path d="M75.6 15H73.9V8.5H75.5V9.39999C75.8 8.99999 76 8.7 76.2 8.5C76.4 8.4 76.7 8.30002 76.9 8.30002C77.3 8.30002 77.7 8.40001 78 8.60001L77.5 10.1C77.2 9.90001 76.9 9.80002 76.7 9.80002C76.5 9.80002 76.3 9.9 76.1 10C75.9 10.1 75.8 10.4 75.7 10.7C75.6 11 75.6 11.8 75.6 12.9V15Z" fill="white"/>
|
15 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
16 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
17 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
18 |
-
</g>
|
19 |
-
</svg>
|
1 |
+
<svg width="85" height="23" viewBox="0 0 85 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="85" height="23">
|
3 |
+
<path d="M81.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H81.1C83.2 23 84.9 21.3 84.9 19.2V3.80002C84.8 1.70002 83.1 0 81.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="85" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M28 15V6H30.9C32 6 32.7 6.00001 33.1 6.10001C33.6 6.20001 34 6.5 34.4 7C34.7 7.5 34.9 8.00001 34.9 8.70001C34.9 9.30001 34.8 9.70001 34.6 10.1C34.4 10.5 34.1 10.8 33.8 11C33.5 11.2 33.2 11.4 32.9 11.4C32.5 11.5 31.8 11.5 31 11.5H29.8V14.9H28V15ZM29.8 7.60001V10.1H30.8C31.5 10.1 32 10.1 32.2 10C32.4 9.9 32.6 9.80001 32.8 9.60001C32.9 9.40001 33 9.19999 33 8.89999C33 8.59999 32.9 8.30001 32.7 8.10001C32.5 7.90001 32.3 7.80001 32 7.70001C31.8 7.70001 31.3 7.60001 30.7 7.60001H29.8Z" fill="white"/>
|
8 |
+
<path d="M37.6 10.5L36 10.2C36.2 9.60001 36.5 9.10002 36.9 8.80002C37.3 8.50002 38 8.30002 38.8 8.30002C39.6 8.30002 40.1 8.40001 40.5 8.60001C40.9 8.80001 41.1 9.00002 41.3 9.30002C41.5 9.60002 41.5 10.1 41.5 10.8V12.8C41.5 13.4 41.5 13.8 41.6 14.1C41.7 14.4 41.8 14.7 41.9 15H40.2C40.2 14.9 40.1 14.7 40 14.5C40 14.4 40 14.3 39.9 14.3C39.6 14.6 39.3 14.8 39 14.9C38.7 15 38.3 15.1 37.9 15.1C37.2 15.1 36.7 14.9 36.3 14.6C35.9 14.3 35.7 13.8 35.7 13.2C35.7 12.8 35.8 12.5 36 12.2C36.2 11.9 36.4 11.7 36.7 11.5C37 11.3 37.5 11.2 38.1 11.1C38.9 10.9 39.5 10.8 39.8 10.7V10.6C39.8 10.3 39.7 9.99999 39.6 9.89999C39.5 9.79999 39.1 9.70001 38.7 9.70001C38.4 9.70001 38.2 9.79999 38 9.89999C37.9 9.99999 37.7 10.2 37.6 10.5ZM39.9 11.9C39.7 12 39.3 12.1 38.9 12.2C38.4 12.3 38.1 12.4 38 12.5C37.8 12.7 37.7 12.9 37.7 13.1C37.7 13.3 37.8 13.5 38 13.7C38.2 13.9 38.4 14 38.7 14C39 14 39.3 13.9 39.6 13.7C39.8 13.5 39.9 13.4 40 13.1C40 13 40.1 12.7 40.1 12.3V11.9H39.9Z" fill="white"/>
|
9 |
+
<path d="M44.9 15H43.2V8.5H44.8V9.39999C45.1 8.99999 45.3 8.7 45.5 8.5C45.7 8.4 46 8.30002 46.2 8.30002C46.6 8.30002 47 8.40001 47.3 8.60001L46.8 10.1C46.5 9.90001 46.2 9.80002 46 9.80002C45.8 9.80002 45.6 9.9 45.4 10C45.2 10.1 45.1 10.4 45 10.7C44.9 11 44.9 11.8 44.9 12.9V15Z" fill="white"/>
|
10 |
+
<path d="M51.2 8.5V9.89999H50V12.5C50 13 50 13.3 50 13.4C50 13.5 50.1 13.6 50.2 13.6C50.3 13.7 50.4 13.7 50.5 13.7C50.7 13.7 50.9 13.6 51.2 13.5L51.3 14.8C50.9 15 50.4 15.1 49.9 15.1C49.6 15.1 49.3 15 49.1 14.9C48.9 14.8 48.7 14.7 48.6 14.5C48.5 14.3 48.4 14.1 48.4 13.8C48.4 13.6 48.3 13.2 48.3 12.6V9.80002H47.5V8.39999H48.3V7.10001L50 6.10001V8.39999H51.2V8.5Z" fill="white"/>
|
11 |
+
<path d="M53.6 10.5L52 10.2C52.2 9.60001 52.5 9.10002 52.9 8.80002C53.3 8.50002 54 8.30002 54.8 8.30002C55.6 8.30002 56.1 8.40001 56.5 8.60001C56.9 8.80001 57.1 9.00002 57.3 9.30002C57.5 9.60002 57.5 10.1 57.5 10.8V12.8C57.5 13.4 57.5 13.8 57.6 14.1C57.7 14.4 57.8 14.7 57.9 15H56.2C56.2 14.9 56.1 14.7 56 14.5C56 14.4 56 14.3 55.9 14.3C55.6 14.6 55.3 14.8 55 14.9C54.7 15 54.3 15.1 53.9 15.1C53.2 15.1 52.7 14.9 52.3 14.6C51.9 14.3 51.7 13.8 51.7 13.2C51.7 12.8 51.8 12.5 52 12.2C52.2 11.9 52.4 11.7 52.7 11.5C53 11.3 53.5 11.2 54.1 11.1C54.9 10.9 55.5 10.8 55.8 10.7V10.6C55.8 10.3 55.7 9.99999 55.6 9.89999C55.5 9.79999 55.1 9.70001 54.7 9.70001C54.4 9.70001 54.2 9.79999 54 9.89999C53.9 9.99999 53.7 10.2 53.6 10.5ZM55.9 11.9C55.7 12 55.3 12.1 54.9 12.2C54.4 12.3 54.1 12.4 54 12.5C53.8 12.7 53.7 12.9 53.7 13.1C53.7 13.3 53.8 13.5 54 13.7C54.2 13.9 54.4 14 54.7 14C55 14 55.3 13.9 55.6 13.7C55.8 13.5 55.9 13.4 56 13.1C56 13 56.1 12.7 56.1 12.3V11.9H55.9Z" fill="white"/>
|
12 |
+
<path d="M59.1 15.5L61.1 15.7C61.1 15.9 61.2 16.1 61.3 16.2C61.5 16.3 61.7 16.4 62.1 16.4C62.5 16.4 62.9 16.3 63.1 16.2C63.3 16.1 63.4 16 63.4 15.8C63.5 15.7 63.5 15.4 63.5 15V14.1C63 14.8 62.3 15.2 61.6 15.2C60.7 15.2 60 14.8 59.5 14.1C59.1 13.5 58.9 12.8 58.9 11.9C58.9 10.8 59.2 9.99999 59.7 9.39999C60.2 8.79999 60.9 8.5 61.7 8.5C62.5 8.5 63.2 8.90001 63.7 9.60001V8.70001H65.3V14.5C65.3 15.3 65.2 15.8 65.1 16.2C65 16.6 64.8 16.9 64.6 17.1C64.4 17.3 64.1 17.5 63.7 17.6C63.3 17.7 62.8 17.8 62.3 17.8C61.2 17.8 60.4 17.6 60 17.2C59.6 16.8 59.3 16.3 59.3 15.8C59.1 15.6 59.1 15.5 59.1 15.5ZM60.7 11.6C60.7 12.3 60.8 12.8 61.1 13.1C61.4 13.4 61.7 13.6 62.1 13.6C62.5 13.6 62.9 13.4 63.2 13.1C63.5 12.8 63.6 12.3 63.6 11.6C63.6 10.9 63.5 10.4 63.2 10.1C62.9 9.80001 62.6 9.60001 62.1 9.60001C61.7 9.60001 61.3 9.80001 61.1 10.1C60.8 10.5 60.7 11 60.7 11.6Z" fill="white"/>
|
13 |
+
<path d="M70.7 13L72.4 13.3C72.2 13.9 71.8 14.4 71.4 14.7C71 15 70.3 15.2 69.6 15.2C68.5 15.2 67.6 14.8 67.1 14.1C66.7 13.5 66.5 12.8 66.5 11.9C66.5 10.8 66.8 9.99999 67.3 9.39999C67.9 8.79999 68.6 8.5 69.4 8.5C70.4 8.5 71.1 8.8 71.7 9.5C72.3 10.1 72.5 11.1 72.5 12.4H68.2C68.2 12.9 68.4 13.3 68.6 13.6C68.9 13.9 69.2 14 69.6 14C69.9 14 70.1 13.9 70.3 13.8C70.5 13.5 70.6 13.3 70.7 13ZM70.8 11.2C70.8 10.7 70.7 10.3 70.4 10.1C70.1 9.90001 69.9 9.70001 69.5 9.70001C69.1 9.70001 68.8 9.80001 68.6 10.1C68.4 10.4 68.2 10.7 68.2 11.2H70.8Z" fill="white"/>
|
14 |
+
<path d="M75.6 15H73.9V8.5H75.5V9.39999C75.8 8.99999 76 8.7 76.2 8.5C76.4 8.4 76.7 8.30002 76.9 8.30002C77.3 8.30002 77.7 8.40001 78 8.60001L77.5 10.1C77.2 9.90001 76.9 9.80002 76.7 9.80002C76.5 9.80002 76.3 9.9 76.1 10C75.9 10.1 75.8 10.4 75.7 10.7C75.6 11 75.6 11.8 75.6 12.9V15Z" fill="white"/>
|
15 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
16 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
17 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
18 |
+
</g>
|
19 |
+
</svg>
|
images/share_icons/Linkedin_Share/he_IL_share.svg
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
<svg width="58" height="23" viewBox="0 0 58 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="58" height="23">
|
3 |
-
<path d="M54.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H54.1C56.2 23 57.9 21.3 57.9 19.2V3.80002C57.8 1.70002 56.1 0 54.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="58" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M29.3 8.5V9.70001C29.3 10.3 29.5 10.6 30 10.6C30.1 10.6 30.1 10.6 30.2 10.6L30.5 11.7C30.2 11.8 29.9 11.9 29.6 11.9C29.2 11.9 28.8 11.8 28.5 11.7C28.2 11.5 28 11.3 27.9 11C27.8 10.7 27.7 10.3 27.7 9.70001V7.5C28.5 7.3 29.3 7.30002 30 7.30002C31.1 7.30002 31.9 7.40001 32.3 7.70001C32.8 8.00001 33.1 8.30001 33.4 8.70001C33.6 9.10001 33.7 9.80001 33.7 10.7V16.3H32V10.6C32 9.80001 31.8 9.20002 31.5 8.90002C31.2 8.60002 30.7 8.5 30 8.5C29.8 8.4 29.6 8.4 29.3 8.5Z" fill="white"/>
|
8 |
-
<path d="M35.1 12.3C35.3 12.4 35.6 12.4 35.8 12.4C36 12.4 36.2 12.3 36.3 12.2C36.4 12.1 36.4 11.9 36.4 11.5V8.40002C36.1 8.40002 35.7 8.4 35.1 8.5L35 7.20001C36.1 7.10001 37.1 7 38.3 7C39.3 7 40 7.10002 40.6 7.30002C41.2 7.50002 41.6 7.80001 41.9 8.20001C42.2 8.60001 42.3 9.30001 42.3 10.1V13.6H40.6V10.4C40.6 9.60002 40.5 9.00002 40.2 8.80002C39.9 8.60002 39.3 8.40002 38.2 8.40002V11.6C38.2 12.2 38.2 12.5 38.1 12.8C38 13 37.8 13.2 37.6 13.4C37.4 13.6 37 13.6 36.5 13.6C36 13.6 35.5 13.5 35 13.4L35.1 12.3Z" fill="white"/>
|
9 |
-
<path d="M45.5 11.3C45.6 11.6 45.8 11.9 46.1 12.1C46.4 12.3 46.8 12.4 47.2 12.4C47.9 12.4 48.4 12.2 48.8 11.8C49.2 11.4 49.4 10.6 49.5 9.40002L49.7 7H51.4L51.2 9.5C51.1 10.6 50.9 11.3 50.7 11.8C50.5 12.3 50.1 12.7 49.5 13.1C48.9 13.5 48.2 13.7 47.3 13.7C46.2 13.7 45.2 13.3 44.6 12.6C43.9 11.9 43.6 10.7 43.6 9.20001L43.5 7H45.2V8.70001C45.2 8.90001 45.2 9.30001 45.2 9.70001C45.2 9.90001 45.2 10 45.2 10.1C45.5 10.1 45.7 10 45.9 9.90002C46.1 9.80002 46.3 9.60002 46.3 9.40002C46.4 9.20002 46.4 8.80001 46.4 8.20001L46.5 7H48.2L48.1 8.60001C48.1 9.00001 48 9.30001 48 9.60001C47.9 9.80001 47.8 10.1 47.7 10.3C47.6 10.5 47.3 10.7 46.9 10.9C46.6 11.2 46.1 11.3 45.5 11.3Z" fill="white"/>
|
10 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.696 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36219 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26453 14.0534 10.1435Z" fill="white"/>
|
11 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.19689 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83544C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
12 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
13 |
-
</g>
|
14 |
-
</svg>
|
1 |
+
<svg width="58" height="23" viewBox="0 0 58 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="58" height="23">
|
3 |
+
<path d="M54.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H54.1C56.2 23 57.9 21.3 57.9 19.2V3.80002C57.8 1.70002 56.1 0 54.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="58" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M29.3 8.5V9.70001C29.3 10.3 29.5 10.6 30 10.6C30.1 10.6 30.1 10.6 30.2 10.6L30.5 11.7C30.2 11.8 29.9 11.9 29.6 11.9C29.2 11.9 28.8 11.8 28.5 11.7C28.2 11.5 28 11.3 27.9 11C27.8 10.7 27.7 10.3 27.7 9.70001V7.5C28.5 7.3 29.3 7.30002 30 7.30002C31.1 7.30002 31.9 7.40001 32.3 7.70001C32.8 8.00001 33.1 8.30001 33.4 8.70001C33.6 9.10001 33.7 9.80001 33.7 10.7V16.3H32V10.6C32 9.80001 31.8 9.20002 31.5 8.90002C31.2 8.60002 30.7 8.5 30 8.5C29.8 8.4 29.6 8.4 29.3 8.5Z" fill="white"/>
|
8 |
+
<path d="M35.1 12.3C35.3 12.4 35.6 12.4 35.8 12.4C36 12.4 36.2 12.3 36.3 12.2C36.4 12.1 36.4 11.9 36.4 11.5V8.40002C36.1 8.40002 35.7 8.4 35.1 8.5L35 7.20001C36.1 7.10001 37.1 7 38.3 7C39.3 7 40 7.10002 40.6 7.30002C41.2 7.50002 41.6 7.80001 41.9 8.20001C42.2 8.60001 42.3 9.30001 42.3 10.1V13.6H40.6V10.4C40.6 9.60002 40.5 9.00002 40.2 8.80002C39.9 8.60002 39.3 8.40002 38.2 8.40002V11.6C38.2 12.2 38.2 12.5 38.1 12.8C38 13 37.8 13.2 37.6 13.4C37.4 13.6 37 13.6 36.5 13.6C36 13.6 35.5 13.5 35 13.4L35.1 12.3Z" fill="white"/>
|
9 |
+
<path d="M45.5 11.3C45.6 11.6 45.8 11.9 46.1 12.1C46.4 12.3 46.8 12.4 47.2 12.4C47.9 12.4 48.4 12.2 48.8 11.8C49.2 11.4 49.4 10.6 49.5 9.40002L49.7 7H51.4L51.2 9.5C51.1 10.6 50.9 11.3 50.7 11.8C50.5 12.3 50.1 12.7 49.5 13.1C48.9 13.5 48.2 13.7 47.3 13.7C46.2 13.7 45.2 13.3 44.6 12.6C43.9 11.9 43.6 10.7 43.6 9.20001L43.5 7H45.2V8.70001C45.2 8.90001 45.2 9.30001 45.2 9.70001C45.2 9.90001 45.2 10 45.2 10.1C45.5 10.1 45.7 10 45.9 9.90002C46.1 9.80002 46.3 9.60002 46.3 9.40002C46.4 9.20002 46.4 8.80001 46.4 8.20001L46.5 7H48.2L48.1 8.60001C48.1 9.00001 48 9.30001 48 9.60001C47.9 9.80001 47.8 10.1 47.7 10.3C47.6 10.5 47.3 10.7 46.9 10.9C46.6 11.2 46.1 11.3 45.5 11.3Z" fill="white"/>
|
10 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.696 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36219 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26453 14.0534 10.1435Z" fill="white"/>
|
11 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.19689 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83544C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
12 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
13 |
+
</g>
|
14 |
+
</svg>
|
images/share_icons/Linkedin_Share/hi_IN_share.svg
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
<svg width="51" height="23" viewBox="0 0 51 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="51" height="23">
|
3 |
-
<path d="M47.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H47.1C49.2 23 50.9 21.3 50.9 19.2V3.80002C50.8 1.70002 49.1 0 47.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="51" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M26.8 9.90002L33.9 9.80002L34.2 10.4V10.5H33.1V16.1L33 16.2L32.3 16V10.5H30.7C31.1 10.9 31.3 11.4 31.3 11.8C31.3 12.6 30.6 13.3 29.6 13.9C30.2 14.6 30.8 15.1 31.5 15.5L31.2 16.3H31.1C30.2 15.7 29.6 15 29.1 14.1C28.8 14.2 28.5 14.3 28.3 14.3C28.1 14.3 27.9 14.2 27.7 13.8C27.6 13.6 27.5 13.5 27.5 13.4C27.5 13.2 27.7 13 28.1 13C28.5 13 28.8 13.1 29.2 13.3C29.4 13.2 29.6 13.1 29.8 13C28.8 12.4 28.1 11.8 28.1 11.1C28.1 11 28.1 10.8 28.2 10.6H27.1L26.8 9.90002ZM28.8 11.3C28.8 11.9 29.3 12.2 30.1 12.5C30.4 12.2 30.6 11.9 30.6 11.4C30.6 10.9 30.2 10.5 29.7 10.5C29.2 10.5 28.8 10.8 28.8 11.3Z" fill="white"/>
|
8 |
-
<path d="M32.5 10C32.3 9.6 32.1 9.20002 31.9 8.80002C31.6 8.10002 31.3 7.80002 30.6 7.80002C30.2 7.80002 29.9 7.9 29.5 8L29.2 7.20001C29.5 7.10001 29.9 7 30.4 7C31.6 7 31.8 7.8 33 10V10.1H32.5V10Z" fill="white"/>
|
9 |
-
<path d="M33.6 9.90002L39.5 9.80002L39.8 10.4V10.5H38.7V16.1L38.6 16.2L37.9 16V14.2C37.5 14.5 37.1 14.6 36.6 14.6C35.4 14.6 34.6 13.6 34.2 12.4L34.3 12.3C35.1 12 35.8 11.8 35.8 11.3C35.8 11 35.7 10.8 35.4 10.5H33.8L33.6 9.90002ZM36.1 10.5C36.4 11 36.5 11.3 36.5 11.6C36.5 12.2 36.2 12.5 35.4 12.8C35.3 12.8 35.2 12.9 35.2 13C35.2 13.2 35.6 13.9 36.5 13.9C36.9 13.9 37.2 13.8 37.6 13.6C37.9 13.4 38 13.1 38 12.7V10.5H36.1Z" fill="white"/>
|
10 |
-
<path d="M39.3 9.90002L43.7 9.80002L44 10.4V10.5H42.5C42.6 10.8 42.6 11.2 42.6 11.5C42.6 12.6 42.1 13.2 41.3 13.6C41.8 14.2 42.7 14.8 43.7 15.3L43.3 16.1H43.2C42.1 15.3 41.3 14.5 40.7 13.6C40.4 13.2 40.2 12.8 40.2 12.6C40.2 12.5 40.2 12.4 40.3 12.3C40.4 12.2 40.6 12.1 40.9 12.1C41.2 12.1 41.4 12.1 41.7 12.1C41.8 11.9 41.9 11.5 41.9 11.2C41.9 11 41.9 10.7 41.8 10.5H39.6L39.3 9.90002Z" fill="white"/>
|
11 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.696 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36219 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26453 14.0534 10.1435Z" fill="white"/>
|
12 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.19689 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83544C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
13 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
14 |
-
</g>
|
15 |
-
</svg>
|
1 |
+
<svg width="51" height="23" viewBox="0 0 51 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="51" height="23">
|
3 |
+
<path d="M47.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H47.1C49.2 23 50.9 21.3 50.9 19.2V3.80002C50.8 1.70002 49.1 0 47.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="51" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M26.8 9.90002L33.9 9.80002L34.2 10.4V10.5H33.1V16.1L33 16.2L32.3 16V10.5H30.7C31.1 10.9 31.3 11.4 31.3 11.8C31.3 12.6 30.6 13.3 29.6 13.9C30.2 14.6 30.8 15.1 31.5 15.5L31.2 16.3H31.1C30.2 15.7 29.6 15 29.1 14.1C28.8 14.2 28.5 14.3 28.3 14.3C28.1 14.3 27.9 14.2 27.7 13.8C27.6 13.6 27.5 13.5 27.5 13.4C27.5 13.2 27.7 13 28.1 13C28.5 13 28.8 13.1 29.2 13.3C29.4 13.2 29.6 13.1 29.8 13C28.8 12.4 28.1 11.8 28.1 11.1C28.1 11 28.1 10.8 28.2 10.6H27.1L26.8 9.90002ZM28.8 11.3C28.8 11.9 29.3 12.2 30.1 12.5C30.4 12.2 30.6 11.9 30.6 11.4C30.6 10.9 30.2 10.5 29.7 10.5C29.2 10.5 28.8 10.8 28.8 11.3Z" fill="white"/>
|
8 |
+
<path d="M32.5 10C32.3 9.6 32.1 9.20002 31.9 8.80002C31.6 8.10002 31.3 7.80002 30.6 7.80002C30.2 7.80002 29.9 7.9 29.5 8L29.2 7.20001C29.5 7.10001 29.9 7 30.4 7C31.6 7 31.8 7.8 33 10V10.1H32.5V10Z" fill="white"/>
|
9 |
+
<path d="M33.6 9.90002L39.5 9.80002L39.8 10.4V10.5H38.7V16.1L38.6 16.2L37.9 16V14.2C37.5 14.5 37.1 14.6 36.6 14.6C35.4 14.6 34.6 13.6 34.2 12.4L34.3 12.3C35.1 12 35.8 11.8 35.8 11.3C35.8 11 35.7 10.8 35.4 10.5H33.8L33.6 9.90002ZM36.1 10.5C36.4 11 36.5 11.3 36.5 11.6C36.5 12.2 36.2 12.5 35.4 12.8C35.3 12.8 35.2 12.9 35.2 13C35.2 13.2 35.6 13.9 36.5 13.9C36.9 13.9 37.2 13.8 37.6 13.6C37.9 13.4 38 13.1 38 12.7V10.5H36.1Z" fill="white"/>
|
10 |
+
<path d="M39.3 9.90002L43.7 9.80002L44 10.4V10.5H42.5C42.6 10.8 42.6 11.2 42.6 11.5C42.6 12.6 42.1 13.2 41.3 13.6C41.8 14.2 42.7 14.8 43.7 15.3L43.3 16.1H43.2C42.1 15.3 41.3 14.5 40.7 13.6C40.4 13.2 40.2 12.8 40.2 12.6C40.2 12.5 40.2 12.4 40.3 12.3C40.4 12.2 40.6 12.1 40.9 12.1C41.2 12.1 41.4 12.1 41.7 12.1C41.8 11.9 41.9 11.5 41.9 11.2C41.9 11 41.9 10.7 41.8 10.5H39.6L39.3 9.90002Z" fill="white"/>
|
11 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.696 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36219 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26453 14.0534 10.1435Z" fill="white"/>
|
12 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.19689 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83544C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
13 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
14 |
+
</g>
|
15 |
+
</svg>
|
images/share_icons/Linkedin_Share/id_ID_share.svg
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
<svg width="75" height="23" viewBox="0 0 75 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="75" height="23">
|
3 |
-
<path d="M71.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H71.1C73.2 23 74.9 21.3 74.9 19.2V3.80002C74.8 1.70002 73.1 0 71.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="75" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M28 15V6H29.8V10L33.5 6H35.9L32.5 9.5L36.1 15H33.8L31.3 10.8L29.8 12.3V15H28Z" fill="white"/>
|
8 |
-
<path d="M36.6 11.7C36.6 11.1 36.7 10.6 37 10C37.3 9.5 37.7 9.10002 38.2 8.80002C38.7 8.50002 39.3 8.39999 39.9 8.39999C40.9 8.39999 41.7 8.69999 42.3 9.39999C42.9 9.99999 43.2 10.8 43.2 11.8C43.2 12.8 42.9 13.6 42.2 14.2C41.6 14.8 40.8 15.2 39.8 15.2C39.2 15.2 38.6 15.1 38.1 14.8C37.6 14.5 37.1 14.1 36.9 13.6C36.8 13.1 36.6 12.4 36.6 11.7ZM38.4 11.8C38.4 12.4 38.6 12.9 38.9 13.3C39.2 13.7 39.6 13.8 40 13.8C40.4 13.8 40.8 13.6 41.1 13.3C41.4 13 41.6 12.5 41.6 11.8C41.6 11.2 41.4 10.7 41.1 10.3C40.8 10 40.4 9.80002 40 9.80002C39.6 9.80002 39.2 10 38.9 10.3C38.6 10.6 38.4 11.1 38.4 11.8Z" fill="white"/>
|
9 |
-
<path d="M50.6 15H48.9V11.7C48.9 11 48.9 10.5 48.8 10.3C48.7 10.1 48.6 9.90002 48.4 9.80002C48.2 9.70002 48 9.60001 47.8 9.60001C47.5 9.60001 47.2 9.70002 47 9.80002C46.8 9.90002 46.6 10.2 46.5 10.4C46.4 10.7 46.4 11.2 46.4 11.9V14.8H44.7V8.30002H46.3V9.30002C46.9 8.60002 47.6 8.20001 48.4 8.20001C48.8 8.20001 49.1 8.29999 49.4 8.39999C49.7 8.49999 50 8.69999 50.1 8.89999C50.3 9.09999 50.4 9.40001 50.4 9.60001C50.5 9.90001 50.5 10.3 50.5 10.8V15H50.6Z" fill="white"/>
|
10 |
-
<path d="M52.2 15.5L54.2 15.7C54.2 15.9 54.3 16.1 54.4 16.2C54.6 16.3 54.8 16.4 55.2 16.4C55.6 16.4 56 16.3 56.2 16.2C56.4 16.1 56.5 16 56.5 15.8C56.6 15.7 56.6 15.4 56.6 15V14.1C56.1 14.8 55.4 15.2 54.7 15.2C53.8 15.2 53.1 14.8 52.6 14.1C52.2 13.5 52 12.8 52 11.9C52 10.8 52.3 9.99999 52.8 9.39999C53.3 8.79999 54 8.5 54.8 8.5C55.6 8.5 56.3 8.90001 56.8 9.60001V8.70001H58.4V14.5C58.4 15.3 58.3 15.8 58.2 16.2C58.1 16.6 57.9 16.9 57.7 17.1C57.5 17.3 57.2 17.5 56.8 17.6C56.4 17.7 55.9 17.8 55.4 17.8C54.3 17.8 53.5 17.6 53.1 17.2C52.7 16.8 52.4 16.3 52.4 15.8C52.2 15.6 52.2 15.5 52.2 15.5ZM53.7 11.6C53.7 12.3 53.8 12.8 54.1 13.1C54.4 13.4 54.7 13.6 55.1 13.6C55.5 13.6 55.9 13.4 56.2 13.1C56.5 12.8 56.6 12.3 56.6 11.6C56.6 10.9 56.5 10.4 56.2 10.1C55.9 9.80001 55.6 9.60001 55.1 9.60001C54.7 9.60001 54.3 9.80001 54.1 10.1C53.8 10.5 53.7 11 53.7 11.6Z" fill="white"/>
|
11 |
-
<path d="M59.4 13.2L61.1 12.9C61.2 13.2 61.3 13.5 61.5 13.7C61.7 13.9 62 14 62.4 14C62.8 14 63.2 13.9 63.4 13.8C63.6 13.7 63.6 13.5 63.6 13.3C63.6 13.2 63.6 13.1 63.5 13C63.4 12.9 63.2 12.8 62.9 12.8C61.5 12.5 60.6 12.2 60.3 12C59.8 11.7 59.5 11.2 59.5 10.5C59.5 9.9 59.7 9.50001 60.2 9.10001C60.7 8.70001 61.3 8.5 62.3 8.5C63.2 8.5 63.8 8.59999 64.3 8.89999C64.8 9.19999 65 9.60001 65.2 10.2L63.6 10.5C63.5 10.2 63.4 10.1 63.2 9.89999C63 9.79999 62.7 9.70001 62.4 9.70001C61.9 9.70001 61.6 9.79999 61.4 9.89999C61.3 9.99999 61.2 10.1 61.2 10.2C61.2 10.3 61.3 10.4 61.4 10.5C61.6 10.6 62.1 10.8 63 11C63.9 11.2 64.6 11.5 64.9 11.8C65.3 12.1 65.4 12.5 65.4 13.1C65.4 13.7 65.2 14.2 64.7 14.6C64.2 15 63.5 15.2 62.5 15.2C61.6 15.2 60.9 15 60.4 14.7C59.9 14.3 59.5 13.8 59.4 13.2Z" fill="white"/>
|
12 |
-
<path d="M66.9 7.70001V6.10001H68.6V7.70001H66.9ZM66.9 15V8.5H68.6V15H66.9Z" fill="white"/>
|
13 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
14 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
15 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
16 |
-
</g>
|
17 |
-
</svg>
|
1 |
+
<svg width="75" height="23" viewBox="0 0 75 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="75" height="23">
|
3 |
+
<path d="M71.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H71.1C73.2 23 74.9 21.3 74.9 19.2V3.80002C74.8 1.70002 73.1 0 71.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="75" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M28 15V6H29.8V10L33.5 6H35.9L32.5 9.5L36.1 15H33.8L31.3 10.8L29.8 12.3V15H28Z" fill="white"/>
|
8 |
+
<path d="M36.6 11.7C36.6 11.1 36.7 10.6 37 10C37.3 9.5 37.7 9.10002 38.2 8.80002C38.7 8.50002 39.3 8.39999 39.9 8.39999C40.9 8.39999 41.7 8.69999 42.3 9.39999C42.9 9.99999 43.2 10.8 43.2 11.8C43.2 12.8 42.9 13.6 42.2 14.2C41.6 14.8 40.8 15.2 39.8 15.2C39.2 15.2 38.6 15.1 38.1 14.8C37.6 14.5 37.1 14.1 36.9 13.6C36.8 13.1 36.6 12.4 36.6 11.7ZM38.4 11.8C38.4 12.4 38.6 12.9 38.9 13.3C39.2 13.7 39.6 13.8 40 13.8C40.4 13.8 40.8 13.6 41.1 13.3C41.4 13 41.6 12.5 41.6 11.8C41.6 11.2 41.4 10.7 41.1 10.3C40.8 10 40.4 9.80002 40 9.80002C39.6 9.80002 39.2 10 38.9 10.3C38.6 10.6 38.4 11.1 38.4 11.8Z" fill="white"/>
|
9 |
+
<path d="M50.6 15H48.9V11.7C48.9 11 48.9 10.5 48.8 10.3C48.7 10.1 48.6 9.90002 48.4 9.80002C48.2 9.70002 48 9.60001 47.8 9.60001C47.5 9.60001 47.2 9.70002 47 9.80002C46.8 9.90002 46.6 10.2 46.5 10.4C46.4 10.7 46.4 11.2 46.4 11.9V14.8H44.7V8.30002H46.3V9.30002C46.9 8.60002 47.6 8.20001 48.4 8.20001C48.8 8.20001 49.1 8.29999 49.4 8.39999C49.7 8.49999 50 8.69999 50.1 8.89999C50.3 9.09999 50.4 9.40001 50.4 9.60001C50.5 9.90001 50.5 10.3 50.5 10.8V15H50.6Z" fill="white"/>
|
10 |
+
<path d="M52.2 15.5L54.2 15.7C54.2 15.9 54.3 16.1 54.4 16.2C54.6 16.3 54.8 16.4 55.2 16.4C55.6 16.4 56 16.3 56.2 16.2C56.4 16.1 56.5 16 56.5 15.8C56.6 15.7 56.6 15.4 56.6 15V14.1C56.1 14.8 55.4 15.2 54.7 15.2C53.8 15.2 53.1 14.8 52.6 14.1C52.2 13.5 52 12.8 52 11.9C52 10.8 52.3 9.99999 52.8 9.39999C53.3 8.79999 54 8.5 54.8 8.5C55.6 8.5 56.3 8.90001 56.8 9.60001V8.70001H58.4V14.5C58.4 15.3 58.3 15.8 58.2 16.2C58.1 16.6 57.9 16.9 57.7 17.1C57.5 17.3 57.2 17.5 56.8 17.6C56.4 17.7 55.9 17.8 55.4 17.8C54.3 17.8 53.5 17.6 53.1 17.2C52.7 16.8 52.4 16.3 52.4 15.8C52.2 15.6 52.2 15.5 52.2 15.5ZM53.7 11.6C53.7 12.3 53.8 12.8 54.1 13.1C54.4 13.4 54.7 13.6 55.1 13.6C55.5 13.6 55.9 13.4 56.2 13.1C56.5 12.8 56.6 12.3 56.6 11.6C56.6 10.9 56.5 10.4 56.2 10.1C55.9 9.80001 55.6 9.60001 55.1 9.60001C54.7 9.60001 54.3 9.80001 54.1 10.1C53.8 10.5 53.7 11 53.7 11.6Z" fill="white"/>
|
11 |
+
<path d="M59.4 13.2L61.1 12.9C61.2 13.2 61.3 13.5 61.5 13.7C61.7 13.9 62 14 62.4 14C62.8 14 63.2 13.9 63.4 13.8C63.6 13.7 63.6 13.5 63.6 13.3C63.6 13.2 63.6 13.1 63.5 13C63.4 12.9 63.2 12.8 62.9 12.8C61.5 12.5 60.6 12.2 60.3 12C59.8 11.7 59.5 11.2 59.5 10.5C59.5 9.9 59.7 9.50001 60.2 9.10001C60.7 8.70001 61.3 8.5 62.3 8.5C63.2 8.5 63.8 8.59999 64.3 8.89999C64.8 9.19999 65 9.60001 65.2 10.2L63.6 10.5C63.5 10.2 63.4 10.1 63.2 9.89999C63 9.79999 62.7 9.70001 62.4 9.70001C61.9 9.70001 61.6 9.79999 61.4 9.89999C61.3 9.99999 61.2 10.1 61.2 10.2C61.2 10.3 61.3 10.4 61.4 10.5C61.6 10.6 62.1 10.8 63 11C63.9 11.2 64.6 11.5 64.9 11.8C65.3 12.1 65.4 12.5 65.4 13.1C65.4 13.7 65.2 14.2 64.7 14.6C64.2 15 63.5 15.2 62.5 15.2C61.6 15.2 60.9 15 60.4 14.7C59.9 14.3 59.5 13.8 59.4 13.2Z" fill="white"/>
|
12 |
+
<path d="M66.9 7.70001V6.10001H68.6V7.70001H66.9ZM66.9 15V8.5H68.6V15H66.9Z" fill="white"/>
|
13 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
14 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
15 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
16 |
+
</g>
|
17 |
+
</svg>
|
images/share_icons/Linkedin_Share/it_IT_share.svg
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
<svg width="90" height="23" viewBox="0 0 90 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="90" height="23">
|
3 |
-
<path d="M86.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H86.1C88.2 23 89.9 21.3 89.9 19.2V3.79999C89.8 1.69999 88.1 0 86.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="90" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M33.7 12.7L35.5 13.3C35.2 14.3 34.8 15 34.2 15.5C33.6 16 32.8 16.2 31.8 16.2C30.6 16.2 29.6 15.8 28.9 15C28.1 14.2 27.8 13.1 27.8 11.7C27.8 10.2 28.2 8.99995 29 8.19995C29.8 7.39995 30.8 7 32 7C33.1 7 34 7.3 34.7 8C35.1 8.4 35.4 8.89995 35.6 9.69995L33.8 10.1C33.7 9.59998 33.5 9.3 33.1 9C32.8 8.7 32.4 8.59998 31.9 8.59998C31.2 8.59998 30.7 8.79999 30.3 9.29999C29.9 9.79999 29.7 10.5 29.7 11.6C29.7 12.7 29.9 13.5 30.3 14C30.7 14.5 31.2 14.7 31.9 14.7C32.4 14.7 32.8 14.5 33.1 14.2C33.3 13.9 33.6 13.4 33.7 12.7Z" fill="white"/>
|
8 |
-
<path d="M36.6 12.7C36.6 12.1 36.7 11.6 37 11C37.3 10.5 37.7 10.1 38.2 9.79999C38.7 9.49999 39.3 9.39996 39.9 9.39996C40.9 9.39996 41.7 9.69996 42.3 10.4C42.9 11 43.2 11.8 43.2 12.8C43.2 13.8 42.9 14.6 42.2 15.2C41.6 15.8 40.8 16.2 39.8 16.2C39.2 16.2 38.6 16.1 38.1 15.8C37.6 15.5 37.1 15.1 36.9 14.6C36.8 14.1 36.6 13.4 36.6 12.7ZM38.4 12.8C38.4 13.4 38.6 13.9 38.9 14.3C39.2 14.6 39.6 14.8 40 14.8C40.4 14.8 40.8 14.6 41.1 14.3C41.4 14 41.6 13.5 41.6 12.8C41.6 12.2 41.4 11.7 41.1 11.3C40.8 11 40.4 10.8 40 10.8C39.6 10.8 39.2 11 38.9 11.3C38.6 11.6 38.4 12.1 38.4 12.8Z" fill="white"/>
|
9 |
-
<path d="M50.6 16H48.9V12.7C48.9 12 48.9 11.5 48.8 11.3C48.7 11.1 48.6 10.9 48.4 10.8C48.2 10.7 48 10.6 47.8 10.6C47.5 10.6 47.2 10.7 47 10.8C46.8 10.9 46.6 11.2 46.5 11.4C46.4 11.7 46.4 12.2 46.4 12.9V15.8H44.7V9.29999H46.3V10.3C46.9 9.59999 47.6 9.19995 48.4 9.19995C48.8 9.19995 49.1 9.29996 49.4 9.39996C49.7 9.49996 50 9.69996 50.1 9.89996C50.2 10.1 50.4 10.4 50.4 10.6C50.5 10.9 50.5 11.3 50.5 11.8V16H50.6Z" fill="white"/>
|
10 |
-
<path d="M58.3 16H56.7V15C56.4 15.4 56.1 15.6 55.8 15.8C55.4 16 55.1 16.1 54.7 16.1C54 16.1 53.3 15.8 52.8 15.2C52.3 14.6 52 13.8 52 12.7C52 11.6 52.3 10.8 52.8 10.2C53.3 9.59995 54 9.29999 54.8 9.29999C55.5 9.29999 56.2 9.59995 56.7 10.2V7H58.4V16H58.3ZM53.7 12.6C53.7 13.3 53.8 13.8 54 14.1C54.3 14.5 54.7 14.8 55.2 14.8C55.6 14.8 55.9 14.6 56.2 14.3C56.5 14 56.6 13.5 56.6 12.8C56.6 12.1 56.5 11.5 56.2 11.2C55.9 10.9 55.6 10.7 55.2 10.7C54.8 10.7 54.5 10.9 54.2 11.2C53.9 11.5 53.7 12 53.7 12.6Z" fill="white"/>
|
11 |
-
<path d="M60 8.69995V7.09998H61.7V8.69995H60ZM60 16V9.5H61.7V16H60Z" fill="white"/>
|
12 |
-
<path d="M65.2 16L62.6 9.5H64.4L65.6 12.8L66 13.9C66.1 13.6 66.2 13.4 66.2 13.3C66.3 13.1 66.3 12.9 66.4 12.8L67.6 9.5H69.4L66.8 16H65.2Z" fill="white"/>
|
13 |
-
<path d="M70.4 8.69995V7.09998H72.1V8.69995H70.4ZM70.4 16V9.5H72.1V16H70.4Z" fill="white"/>
|
14 |
-
<path d="M79.8 16H78.2V15C77.9 15.4 77.6 15.6 77.3 15.8C76.9 16 76.6 16.1 76.2 16.1C75.5 16.1 74.8 15.8 74.3 15.2C73.8 14.6 73.5 13.8 73.5 12.7C73.5 11.6 73.8 10.8 74.3 10.2C74.8 9.59995 75.5 9.29999 76.3 9.29999C77 9.29999 77.7 9.59995 78.2 10.2V7H79.9V16H79.8ZM75.3 12.6C75.3 13.3 75.4 13.8 75.6 14.1C75.9 14.5 76.3 14.8 76.8 14.8C77.2 14.8 77.5 14.6 77.8 14.3C78.1 14 78.2 13.5 78.2 12.8C78.2 12.1 78.1 11.5 77.8 11.2C77.5 10.9 77.2 10.7 76.8 10.7C76.4 10.7 76.1 10.9 75.8 11.2C75.5 11.5 75.3 12 75.3 12.6Z" fill="white"/>
|
15 |
-
<path d="M81.5 8.69995V7.09998H83.2V8.69995H81.5ZM81.5 16V9.5H83.2V16H81.5Z" fill="white"/>
|
16 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
17 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
18 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
19 |
-
</g>
|
20 |
-
</svg>
|
1 |
+
<svg width="90" height="23" viewBox="0 0 90 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="90" height="23">
|
3 |
+
<path d="M86.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H86.1C88.2 23 89.9 21.3 89.9 19.2V3.79999C89.8 1.69999 88.1 0 86.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="90" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M33.7 12.7L35.5 13.3C35.2 14.3 34.8 15 34.2 15.5C33.6 16 32.8 16.2 31.8 16.2C30.6 16.2 29.6 15.8 28.9 15C28.1 14.2 27.8 13.1 27.8 11.7C27.8 10.2 28.2 8.99995 29 8.19995C29.8 7.39995 30.8 7 32 7C33.1 7 34 7.3 34.7 8C35.1 8.4 35.4 8.89995 35.6 9.69995L33.8 10.1C33.7 9.59998 33.5 9.3 33.1 9C32.8 8.7 32.4 8.59998 31.9 8.59998C31.2 8.59998 30.7 8.79999 30.3 9.29999C29.9 9.79999 29.7 10.5 29.7 11.6C29.7 12.7 29.9 13.5 30.3 14C30.7 14.5 31.2 14.7 31.9 14.7C32.4 14.7 32.8 14.5 33.1 14.2C33.3 13.9 33.6 13.4 33.7 12.7Z" fill="white"/>
|
8 |
+
<path d="M36.6 12.7C36.6 12.1 36.7 11.6 37 11C37.3 10.5 37.7 10.1 38.2 9.79999C38.7 9.49999 39.3 9.39996 39.9 9.39996C40.9 9.39996 41.7 9.69996 42.3 10.4C42.9 11 43.2 11.8 43.2 12.8C43.2 13.8 42.9 14.6 42.2 15.2C41.6 15.8 40.8 16.2 39.8 16.2C39.2 16.2 38.6 16.1 38.1 15.8C37.6 15.5 37.1 15.1 36.9 14.6C36.8 14.1 36.6 13.4 36.6 12.7ZM38.4 12.8C38.4 13.4 38.6 13.9 38.9 14.3C39.2 14.6 39.6 14.8 40 14.8C40.4 14.8 40.8 14.6 41.1 14.3C41.4 14 41.6 13.5 41.6 12.8C41.6 12.2 41.4 11.7 41.1 11.3C40.8 11 40.4 10.8 40 10.8C39.6 10.8 39.2 11 38.9 11.3C38.6 11.6 38.4 12.1 38.4 12.8Z" fill="white"/>
|
9 |
+
<path d="M50.6 16H48.9V12.7C48.9 12 48.9 11.5 48.8 11.3C48.7 11.1 48.6 10.9 48.4 10.8C48.2 10.7 48 10.6 47.8 10.6C47.5 10.6 47.2 10.7 47 10.8C46.8 10.9 46.6 11.2 46.5 11.4C46.4 11.7 46.4 12.2 46.4 12.9V15.8H44.7V9.29999H46.3V10.3C46.9 9.59999 47.6 9.19995 48.4 9.19995C48.8 9.19995 49.1 9.29996 49.4 9.39996C49.7 9.49996 50 9.69996 50.1 9.89996C50.2 10.1 50.4 10.4 50.4 10.6C50.5 10.9 50.5 11.3 50.5 11.8V16H50.6Z" fill="white"/>
|
10 |
+
<path d="M58.3 16H56.7V15C56.4 15.4 56.1 15.6 55.8 15.8C55.4 16 55.1 16.1 54.7 16.1C54 16.1 53.3 15.8 52.8 15.2C52.3 14.6 52 13.8 52 12.7C52 11.6 52.3 10.8 52.8 10.2C53.3 9.59995 54 9.29999 54.8 9.29999C55.5 9.29999 56.2 9.59995 56.7 10.2V7H58.4V16H58.3ZM53.7 12.6C53.7 13.3 53.8 13.8 54 14.1C54.3 14.5 54.7 14.8 55.2 14.8C55.6 14.8 55.9 14.6 56.2 14.3C56.5 14 56.6 13.5 56.6 12.8C56.6 12.1 56.5 11.5 56.2 11.2C55.9 10.9 55.6 10.7 55.2 10.7C54.8 10.7 54.5 10.9 54.2 11.2C53.9 11.5 53.7 12 53.7 12.6Z" fill="white"/>
|
11 |
+
<path d="M60 8.69995V7.09998H61.7V8.69995H60ZM60 16V9.5H61.7V16H60Z" fill="white"/>
|
12 |
+
<path d="M65.2 16L62.6 9.5H64.4L65.6 12.8L66 13.9C66.1 13.6 66.2 13.4 66.2 13.3C66.3 13.1 66.3 12.9 66.4 12.8L67.6 9.5H69.4L66.8 16H65.2Z" fill="white"/>
|
13 |
+
<path d="M70.4 8.69995V7.09998H72.1V8.69995H70.4ZM70.4 16V9.5H72.1V16H70.4Z" fill="white"/>
|
14 |
+
<path d="M79.8 16H78.2V15C77.9 15.4 77.6 15.6 77.3 15.8C76.9 16 76.6 16.1 76.2 16.1C75.5 16.1 74.8 15.8 74.3 15.2C73.8 14.6 73.5 13.8 73.5 12.7C73.5 11.6 73.8 10.8 74.3 10.2C74.8 9.59995 75.5 9.29999 76.3 9.29999C77 9.29999 77.7 9.59995 78.2 10.2V7H79.9V16H79.8ZM75.3 12.6C75.3 13.3 75.4 13.8 75.6 14.1C75.9 14.5 76.3 14.8 76.8 14.8C77.2 14.8 77.5 14.6 77.8 14.3C78.1 14 78.2 13.5 78.2 12.8C78.2 12.1 78.1 11.5 77.8 11.2C77.5 10.9 77.2 10.7 76.8 10.7C76.4 10.7 76.1 10.9 75.8 11.2C75.5 11.5 75.3 12 75.3 12.6Z" fill="white"/>
|
15 |
+
<path d="M81.5 8.69995V7.09998H83.2V8.69995H81.5ZM81.5 16V9.5H83.2V16H81.5Z" fill="white"/>
|
16 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
17 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
18 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
19 |
+
</g>
|
20 |
+
</svg>
|
images/share_icons/Linkedin_Share/ja_JP_share.svg
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
<svg width="67" height="23" viewBox="0 0 67 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="67" height="23">
|
3 |
-
<path d="M63.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H63.1C65.2 23 66.9 21.3 66.9 19.2V3.79999C66.8 1.69999 65.1 0 63.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="67" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M28.6 9.09998C29.7 9.39998 31.1 9.80001 32 10.2L31.6 11C30.8 10.6 29.3 10.1 28.2 9.79999L28.6 9.09998ZM29.3 15.2C33.4 13.8 36.2 11.7 37.8 7.89996C38 8.09996 38.4 8.3 38.6 8.5C36.9 12.2 34 14.5 30.2 15.9C30.2 16 30.2 16.2 30 16.2L29.3 15.2ZM29.9 6C31 6.3 32.4 6.80001 33.3 7.20001L32.9 8C32 7.5 30.7 7.00001 29.6 6.70001L29.9 6Z" fill="white"/>
|
8 |
-
<path d="M47.2 9V9.70001H44.1V14.6H47.9V15.3H39.5V14.6H43.3V9.70001H40.2V9H47.2Z" fill="white"/>
|
9 |
-
<path d="M60.1 6.59998C60.1 6.59998 60 6.70001 59.9 6.70001C59.2 8.30001 58.1 9.70001 56.9 10.7C56.7 10.5 56.4 10.3 56.1 10.2C57.3 9.40001 58.2 8.09998 58.6 7.09998H49.6V6.29999H59L59.1 6.20001L60.1 6.59998ZM55.2 8.89996C55.2 8.99996 55.1 9.09998 54.9 9.09998C54.5 12.1 53.5 14.9 50.9 16.4C50.7 16.2 50.4 16 50.2 15.8C52.8 14.4 53.7 11.8 54 8.79999L55.2 8.89996Z" fill="white"/>
|
10 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
11 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
12 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
13 |
-
</g>
|
14 |
-
</svg>
|
1 |
+
<svg width="67" height="23" viewBox="0 0 67 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="67" height="23">
|
3 |
+
<path d="M63.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H63.1C65.2 23 66.9 21.3 66.9 19.2V3.79999C66.8 1.69999 65.1 0 63.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="67" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M28.6 9.09998C29.7 9.39998 31.1 9.80001 32 10.2L31.6 11C30.8 10.6 29.3 10.1 28.2 9.79999L28.6 9.09998ZM29.3 15.2C33.4 13.8 36.2 11.7 37.8 7.89996C38 8.09996 38.4 8.3 38.6 8.5C36.9 12.2 34 14.5 30.2 15.9C30.2 16 30.2 16.2 30 16.2L29.3 15.2ZM29.9 6C31 6.3 32.4 6.80001 33.3 7.20001L32.9 8C32 7.5 30.7 7.00001 29.6 6.70001L29.9 6Z" fill="white"/>
|
8 |
+
<path d="M47.2 9V9.70001H44.1V14.6H47.9V15.3H39.5V14.6H43.3V9.70001H40.2V9H47.2Z" fill="white"/>
|
9 |
+
<path d="M60.1 6.59998C60.1 6.59998 60 6.70001 59.9 6.70001C59.2 8.30001 58.1 9.70001 56.9 10.7C56.7 10.5 56.4 10.3 56.1 10.2C57.3 9.40001 58.2 8.09998 58.6 7.09998H49.6V6.29999H59L59.1 6.20001L60.1 6.59998ZM55.2 8.89996C55.2 8.99996 55.1 9.09998 54.9 9.09998C54.5 12.1 53.5 14.9 50.9 16.4C50.7 16.2 50.4 16 50.2 15.8C52.8 14.4 53.7 11.8 54 8.79999L55.2 8.89996Z" fill="white"/>
|
10 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
11 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
12 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
13 |
+
</g>
|
14 |
+
</svg>
|
images/share_icons/Linkedin_Share/ko_KR_share.svg
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
<svg width="82" height="23" viewBox="0 0 82 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="82" height="23">
|
3 |
-
<path d="M78.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H78.1C80.2 23 81.9 21.3 81.9 19.2V3.79999C81.8 1.69999 80.1 0 78.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="82" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M32.7 9.89996C32.7 9.69996 32.3 9.49996 31.9 9.39996C31.7 9.29996 31.6 9.30001 31.6 9.20001C31.6 9.10001 31.7 9.1 32 9C33.3 9.1 33.5 9.19996 33.5 9.39996C33.5 9.49996 33.5 9.60001 33.4 9.70001V11.6C34.2 11.6 34.8 11.6 36.2 11.5C37.2 11.4 37.1 11.2 37.6 11.2C38.2 11.2 38.7 11.4 38.7 11.6C38.7 11.8 38.5 11.9 38.2 11.9H38.1C37.5 11.9 36.9 11.9 36.2 11.9C34.2 11.9 31.9 12 30.4 12.2C30 12.3 29.9 12.4 29.7 12.4C29.3 12.4 28.1 11.9 28.1 11.7C28.1 11.7 28.1 11.6 28.2 11.6C28.3 11.6 28.3 11.6 28.4 11.6C29.1 11.7 29.9 11.8 30.6 11.8C31.3 11.8 32 11.8 32.6 11.7V9.89996H32.7ZM35.9 6.89996C36.2 6.89996 36.2 6.79999 36.6 6.79999C36.9 6.79999 37.4 6.8 37.4 7C37.4 7.1 37.2 7.29996 37.2 7.39996C36.9 8.49996 36.7 9.59999 36.2 10.3C36.1 10.5 36 10.5 35.9 10.5C35.9 10.5 35.8 10.5 35.8 10.4C35.8 10.3 35.8 10.2 35.8 10.1C36 9.29998 36.2 8.40001 36.3 7.20001C35.3 7.20001 32.9 7.3 31.5 7.5C31.2 7.5 31 7.70001 30.8 7.70001C30.4 7.70001 29.5 7.2 29.5 7C29.5 7 29.5 6.89996 29.6 6.89996C29.7 6.89996 29.8 6.89996 30 6.89996C30.5 6.99996 31.1 7 31.7 7C33 7.1 35.3 6.89996 35.9 6.89996ZM32.9 13.3C33.1 13.3 33.2 13.2 33.2 13.1C33.2 13.1 33.2 13 33.1 12.9C33 12.8 33 12.8 33 12.7C33 12.7 33 12.6 33.1 12.6C33.3 12.6 33.8 12.8 33.8 13C33.8 13.1 33.7 13.2 33.7 13.3C35.2 13.6 35.9 14.5 35.9 15.4C35.9 16.4 35 17.4 33.4 17.4C31.7 17.4 30.8 16.3 30.8 15.3C30.8 14.4 31.4 13.6 32.8 13.3H32.9ZM31.5 15.3C31.5 16.1 32.1 16.9 33.3 16.9C34.5 16.9 35.1 16.1 35.1 15.3C35.1 14.5 34.5 13.7 33.3 13.7C32.1 13.7 31.5 14.5 31.5 15.3Z" fill="white"/>
|
8 |
-
<path d="M43.6 12.5C43.4 12.5 43 12.6 42.6 12.6C42.2 12.7 42.1 12.8 41.9 12.8C41.6 12.8 40.3 12.2 40.3 12C40.3 12 40.4 11.9 40.5 11.9C40.6 11.9 40.7 11.9 40.8 11.9C41.2 12 42.1 12 43.2 12C45.3 12 48.1 11.9 49.1 11.8C49.8 11.8 49.7 11.6 50.3 11.6C50.8 11.6 51.6 11.6 51.6 12C51.6 12.2 51.4 12.3 51.1 12.3C50.5 12.3 49.6 12.2 48.5 12.2H48.2C48.2 14 48.2 16.4 48 17.1C47.9 17.4 47.8 17.6 47.7 17.6C47.6 17.6 47.5 17.4 47.5 16.9V12.2C47.1 12.2 45.5 12.2 44.6 12.3C44.6 15 44.6 15.8 44.3 16.6C44.2 16.9 44 17.1 43.9 17.1C43.8 17.1 43.7 16.9 43.7 16.4L43.6 12.5ZM45.4 6.79999C45.6 6.79999 45.7 6.69998 45.7 6.59998C45.7 6.49998 45.7 6.39996 45.6 6.39996C45.5 6.29996 45.4 6.20001 45.4 6.20001C45.4 6.20001 45.5 6.09998 45.6 6.09998C45.9 6.09998 46.4 6.3 46.4 6.5C46.4 6.6 46.3 6.79996 46.3 6.89996C47.8 7.19996 48.5 8.1 48.5 9C48.5 10 47.6 11.1 46 11.1C44.3 11.1 43.4 9.99996 43.4 8.89996C43.2 7.99996 43.9 7.09999 45.4 6.79999ZM44 8.89996C44 9.69996 44.6 10.5 45.9 10.5C47.1 10.5 47.7 9.69996 47.7 8.89996C47.7 8.09996 47.1 7.29999 45.9 7.29999C44.6 7.29999 44 8.09996 44 8.89996Z" fill="white"/>
|
9 |
-
<path d="M57.5 9.5C58.5 9.4 58 9.19998 59.3 9.09998C59.9 9.09998 60.1 9.3 60.1 9.5C60.1 9.5 60.1 9.79999 59.6 9.79999C58.8 9.89999 56.5 9.9 55 10C54.6 10.1 54.5 10.2 54.3 10.2C54 10.2 53 9.7 53 9.5C53 9.5 53.1 9.39996 53.2 9.39996C53.3 9.39996 53.3 9.39996 53.4 9.39996C54 9.49996 54.7 9.5 55.3 9.5C55.6 9.6 57.2 9.5 57.5 9.5ZM56.2 11.1C56.4 11.1 56.6 11 56.6 10.8C56.6 10.7 56.6 10.7 56.5 10.6C56.5 10.5 56.4 10.5 56.4 10.4C56.4 10.4 56.4 10.3 56.5 10.3C56.8 10.3 57.2 10.5 57.2 10.7C57.2 10.8 57.1 10.9 57 11C58.5 11.2 59.2 12.1 59.2 13C59.2 14 58.3 15 56.7 15C55 15 54.2 13.9 54.2 13C54.1 12.2 54.8 11.3 56.2 11.1ZM56.1 8.29999C55.7 8.29999 54.8 7.6 54.8 7.5C54.8 7.5 54.8 7.39996 54.9 7.39996C55 7.39996 55 7.39996 55.2 7.39996C56.1 7.59996 56.8 7.59998 57.8 7.59998C58.1 7.59998 58.3 7.79996 58.3 7.89996C58.3 8.09996 58.1 8.19999 57.5 8.29999H56.1ZM54.9 13C54.9 13.8 55.5 14.5 56.7 14.5C57.9 14.5 58.5 13.7 58.5 13C58.5 12.2 57.9 11.5 56.7 11.5C55.5 11.5 54.9 12.2 54.9 13ZM61 7.20001C61 7.00001 60.3 6.69996 59.8 6.39996C59.7 6.29996 59.6 6.30001 59.6 6.20001C59.6 6.10001 59.8 6.1 60.1 6C60.6 6.1 61.1 6.19999 61.5 6.29999C61.8 6.39999 61.8 6.49998 61.8 6.59998C61.8 6.69998 61.8 6.8 61.8 7V11.6H62.4C63 11.5 62.8 11.3 63.6 11.3C63.8 11.3 64.4 11.3 64.4 11.7C64.4 11.9 64.3 12 64 12H61.8V15.6C61.8 16.4 61.7 16.9 61.5 17.5C61.4 17.7 61.3 17.7 61.2 17.7C61.1 17.7 61 17.5 61 17.1V7.20001Z" fill="white"/>
|
10 |
-
<path d="M68.1 8.59998C67.6 8.69998 67.5 8.79999 67.3 8.79999C67 8.79999 66 8.29998 66 8.09998C66 8.09998 66.1 8 66.2 8C66.3 8 66.4 8 66.5 8C67.1 8.1 67.9 8.09998 68.8 8.09998C69.3 8.09998 69.8 8.09998 70.4 8.09998C70.8 8.09998 70.7 8 71.1 8C71.2 8 71.2 8 71.3 8C71.7 8 71.8 8.10001 71.8 8.20001C71.8 8.30001 71.6 8.49998 71.5 8.59998C70.4 11.5 68.8 13.3 66 15.2C65.8 15.3 65.6 15.4 65.5 15.4C65.5 15.3 65.6 15.2 65.8 15.1C68 13.4 70 10.9 70.7 8.5L68.1 8.59998ZM74 7.29999C74 7.09999 73.6 6.79996 72.9 6.39996C72.7 6.29996 72.6 6.30001 72.6 6.20001C72.6 6.10001 72.7 6.1 73 6C73.8 6.1 74.2 6.29996 74.5 6.39996C74.7 6.49996 74.7 6.60001 74.7 6.70001C74.7 6.80001 74.7 6.9 74.7 7V14.4C74.7 16.7 74.6 17 74.4 17.5C74.3 17.7 74.2 17.7 74.1 17.7C74 17.7 73.9 17.5 73.9 17.2V7.29999H74Z" fill="white"/>
|
11 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
12 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
13 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
14 |
-
</g>
|
15 |
-
</svg>
|
1 |
+
<svg width="82" height="23" viewBox="0 0 82 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="82" height="23">
|
3 |
+
<path d="M78.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H78.1C80.2 23 81.9 21.3 81.9 19.2V3.79999C81.8 1.69999 80.1 0 78.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="82" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M32.7 9.89996C32.7 9.69996 32.3 9.49996 31.9 9.39996C31.7 9.29996 31.6 9.30001 31.6 9.20001C31.6 9.10001 31.7 9.1 32 9C33.3 9.1 33.5 9.19996 33.5 9.39996C33.5 9.49996 33.5 9.60001 33.4 9.70001V11.6C34.2 11.6 34.8 11.6 36.2 11.5C37.2 11.4 37.1 11.2 37.6 11.2C38.2 11.2 38.7 11.4 38.7 11.6C38.7 11.8 38.5 11.9 38.2 11.9H38.1C37.5 11.9 36.9 11.9 36.2 11.9C34.2 11.9 31.9 12 30.4 12.2C30 12.3 29.9 12.4 29.7 12.4C29.3 12.4 28.1 11.9 28.1 11.7C28.1 11.7 28.1 11.6 28.2 11.6C28.3 11.6 28.3 11.6 28.4 11.6C29.1 11.7 29.9 11.8 30.6 11.8C31.3 11.8 32 11.8 32.6 11.7V9.89996H32.7ZM35.9 6.89996C36.2 6.89996 36.2 6.79999 36.6 6.79999C36.9 6.79999 37.4 6.8 37.4 7C37.4 7.1 37.2 7.29996 37.2 7.39996C36.9 8.49996 36.7 9.59999 36.2 10.3C36.1 10.5 36 10.5 35.9 10.5C35.9 10.5 35.8 10.5 35.8 10.4C35.8 10.3 35.8 10.2 35.8 10.1C36 9.29998 36.2 8.40001 36.3 7.20001C35.3 7.20001 32.9 7.3 31.5 7.5C31.2 7.5 31 7.70001 30.8 7.70001C30.4 7.70001 29.5 7.2 29.5 7C29.5 7 29.5 6.89996 29.6 6.89996C29.7 6.89996 29.8 6.89996 30 6.89996C30.5 6.99996 31.1 7 31.7 7C33 7.1 35.3 6.89996 35.9 6.89996ZM32.9 13.3C33.1 13.3 33.2 13.2 33.2 13.1C33.2 13.1 33.2 13 33.1 12.9C33 12.8 33 12.8 33 12.7C33 12.7 33 12.6 33.1 12.6C33.3 12.6 33.8 12.8 33.8 13C33.8 13.1 33.7 13.2 33.7 13.3C35.2 13.6 35.9 14.5 35.9 15.4C35.9 16.4 35 17.4 33.4 17.4C31.7 17.4 30.8 16.3 30.8 15.3C30.8 14.4 31.4 13.6 32.8 13.3H32.9ZM31.5 15.3C31.5 16.1 32.1 16.9 33.3 16.9C34.5 16.9 35.1 16.1 35.1 15.3C35.1 14.5 34.5 13.7 33.3 13.7C32.1 13.7 31.5 14.5 31.5 15.3Z" fill="white"/>
|
8 |
+
<path d="M43.6 12.5C43.4 12.5 43 12.6 42.6 12.6C42.2 12.7 42.1 12.8 41.9 12.8C41.6 12.8 40.3 12.2 40.3 12C40.3 12 40.4 11.9 40.5 11.9C40.6 11.9 40.7 11.9 40.8 11.9C41.2 12 42.1 12 43.2 12C45.3 12 48.1 11.9 49.1 11.8C49.8 11.8 49.7 11.6 50.3 11.6C50.8 11.6 51.6 11.6 51.6 12C51.6 12.2 51.4 12.3 51.1 12.3C50.5 12.3 49.6 12.2 48.5 12.2H48.2C48.2 14 48.2 16.4 48 17.1C47.9 17.4 47.8 17.6 47.7 17.6C47.6 17.6 47.5 17.4 47.5 16.9V12.2C47.1 12.2 45.5 12.2 44.6 12.3C44.6 15 44.6 15.8 44.3 16.6C44.2 16.9 44 17.1 43.9 17.1C43.8 17.1 43.7 16.9 43.7 16.4L43.6 12.5ZM45.4 6.79999C45.6 6.79999 45.7 6.69998 45.7 6.59998C45.7 6.49998 45.7 6.39996 45.6 6.39996C45.5 6.29996 45.4 6.20001 45.4 6.20001C45.4 6.20001 45.5 6.09998 45.6 6.09998C45.9 6.09998 46.4 6.3 46.4 6.5C46.4 6.6 46.3 6.79996 46.3 6.89996C47.8 7.19996 48.5 8.1 48.5 9C48.5 10 47.6 11.1 46 11.1C44.3 11.1 43.4 9.99996 43.4 8.89996C43.2 7.99996 43.9 7.09999 45.4 6.79999ZM44 8.89996C44 9.69996 44.6 10.5 45.9 10.5C47.1 10.5 47.7 9.69996 47.7 8.89996C47.7 8.09996 47.1 7.29999 45.9 7.29999C44.6 7.29999 44 8.09996 44 8.89996Z" fill="white"/>
|
9 |
+
<path d="M57.5 9.5C58.5 9.4 58 9.19998 59.3 9.09998C59.9 9.09998 60.1 9.3 60.1 9.5C60.1 9.5 60.1 9.79999 59.6 9.79999C58.8 9.89999 56.5 9.9 55 10C54.6 10.1 54.5 10.2 54.3 10.2C54 10.2 53 9.7 53 9.5C53 9.5 53.1 9.39996 53.2 9.39996C53.3 9.39996 53.3 9.39996 53.4 9.39996C54 9.49996 54.7 9.5 55.3 9.5C55.6 9.6 57.2 9.5 57.5 9.5ZM56.2 11.1C56.4 11.1 56.6 11 56.6 10.8C56.6 10.7 56.6 10.7 56.5 10.6C56.5 10.5 56.4 10.5 56.4 10.4C56.4 10.4 56.4 10.3 56.5 10.3C56.8 10.3 57.2 10.5 57.2 10.7C57.2 10.8 57.1 10.9 57 11C58.5 11.2 59.2 12.1 59.2 13C59.2 14 58.3 15 56.7 15C55 15 54.2 13.9 54.2 13C54.1 12.2 54.8 11.3 56.2 11.1ZM56.1 8.29999C55.7 8.29999 54.8 7.6 54.8 7.5C54.8 7.5 54.8 7.39996 54.9 7.39996C55 7.39996 55 7.39996 55.2 7.39996C56.1 7.59996 56.8 7.59998 57.8 7.59998C58.1 7.59998 58.3 7.79996 58.3 7.89996C58.3 8.09996 58.1 8.19999 57.5 8.29999H56.1ZM54.9 13C54.9 13.8 55.5 14.5 56.7 14.5C57.9 14.5 58.5 13.7 58.5 13C58.5 12.2 57.9 11.5 56.7 11.5C55.5 11.5 54.9 12.2 54.9 13ZM61 7.20001C61 7.00001 60.3 6.69996 59.8 6.39996C59.7 6.29996 59.6 6.30001 59.6 6.20001C59.6 6.10001 59.8 6.1 60.1 6C60.6 6.1 61.1 6.19999 61.5 6.29999C61.8 6.39999 61.8 6.49998 61.8 6.59998C61.8 6.69998 61.8 6.8 61.8 7V11.6H62.4C63 11.5 62.8 11.3 63.6 11.3C63.8 11.3 64.4 11.3 64.4 11.7C64.4 11.9 64.3 12 64 12H61.8V15.6C61.8 16.4 61.7 16.9 61.5 17.5C61.4 17.7 61.3 17.7 61.2 17.7C61.1 17.7 61 17.5 61 17.1V7.20001Z" fill="white"/>
|
10 |
+
<path d="M68.1 8.59998C67.6 8.69998 67.5 8.79999 67.3 8.79999C67 8.79999 66 8.29998 66 8.09998C66 8.09998 66.1 8 66.2 8C66.3 8 66.4 8 66.5 8C67.1 8.1 67.9 8.09998 68.8 8.09998C69.3 8.09998 69.8 8.09998 70.4 8.09998C70.8 8.09998 70.7 8 71.1 8C71.2 8 71.2 8 71.3 8C71.7 8 71.8 8.10001 71.8 8.20001C71.8 8.30001 71.6 8.49998 71.5 8.59998C70.4 11.5 68.8 13.3 66 15.2C65.8 15.3 65.6 15.4 65.5 15.4C65.5 15.3 65.6 15.2 65.8 15.1C68 13.4 70 10.9 70.7 8.5L68.1 8.59998ZM74 7.29999C74 7.09999 73.6 6.79996 72.9 6.39996C72.7 6.29996 72.6 6.30001 72.6 6.20001C72.6 6.10001 72.7 6.1 73 6C73.8 6.1 74.2 6.29996 74.5 6.39996C74.7 6.49996 74.7 6.60001 74.7 6.70001C74.7 6.80001 74.7 6.9 74.7 7V14.4C74.7 16.7 74.6 17 74.4 17.5C74.3 17.7 74.2 17.7 74.1 17.7C74 17.7 73.9 17.5 73.9 17.2V7.29999H74Z" fill="white"/>
|
11 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
12 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
13 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
14 |
+
</g>
|
15 |
+
</svg>
|
images/share_icons/Linkedin_Share/nl_NL_share.svg
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
-
<svg width="67" height="23" viewBox="0 0 67 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="67" height="23">
|
3 |
-
<path d="M63.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H63.1C65.2 23 66.9 21.3 66.9 19.2V3.8C66.8 1.7 65.1 0 63.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="67" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M28 7.10001H31.3C32 7.10001 32.6 7.2 33 7.3C33.5 7.5 34 7.70001 34.4 8.10001C34.8 8.50001 35.1 9.00001 35.3 9.60001C35.5 10.2 35.6 10.9 35.6 11.7C35.6 12.4 35.5 13.1 35.3 13.6C35.1 14.3 34.8 14.8 34.3 15.2C34 15.5 33.6 15.7 33 15.9C32.6 16 32.1 16.1 31.4 16.1H28V7.10001ZM29.8 8.60001V14.5H31.2C31.7 14.5 32.1 14.5 32.3 14.4C32.6 14.3 32.8 14.2 33 14C33.2 13.8 33.4 13.5 33.5 13.1C33.6 12.7 33.7 12.2 33.7 11.5C33.7 10.8 33.6 10.3 33.5 9.90001C33.4 9.50001 33.2 9.2 33 9C32.8 8.8 32.5 8.70001 32.2 8.60001C31.9 8.50001 31.5 8.5 30.7 8.5H29.8V8.60001Z" fill="white"/>
|
8 |
-
<path d="M40.8 14L42.5 14.3C42.3 14.9 41.9 15.4 41.5 15.7C41.1 16 40.4 16.2 39.7 16.2C38.6 16.2 37.7 15.8 37.2 15.1C36.8 14.5 36.6 13.8 36.6 12.9C36.6 11.8 36.9 11 37.4 10.4C38 9.80001 38.7 9.5 39.5 9.5C40.5 9.5 41.2 9.8 41.8 10.5C42.4 11.1 42.6 12.1 42.6 13.4H38.3C38.3 13.9 38.5 14.3 38.7 14.6C39 14.9 39.3 15 39.7 15C40 15 40.2 14.9 40.4 14.8C40.6 14.5 40.7 14.3 40.8 14ZM40.9 12.2C40.9 11.7 40.8 11.3 40.5 11.1C40.2 10.9 40 10.7 39.6 10.7C39.2 10.7 38.9 10.8 38.7 11.1C38.5 11.4 38.3 11.7 38.3 12.2H40.9Z" fill="white"/>
|
9 |
-
<path d="M44 16V7H45.7V16H44Z" fill="white"/>
|
10 |
-
<path d="M51.2 14L52.9 14.3C52.7 14.9 52.3 15.4 51.9 15.7C51.5 16 50.8 16.2 50.1 16.2C49 16.2 48.1 15.8 47.6 15.1C47.2 14.5 47 13.8 47 12.9C47 11.8 47.3 11 47.8 10.4C48.4 9.80001 49.1 9.5 49.9 9.5C50.9 9.5 51.6 9.8 52.2 10.5C52.8 11.1 53 12.1 53 13.4H48.7C48.7 13.9 48.9 14.3 49.1 14.6C49.4 14.9 49.7 15 50.1 15C50.4 15 50.6 14.9 50.8 14.8C51 14.5 51.1 14.3 51.2 14ZM51.3 12.2C51.3 11.7 51.2 11.3 50.9 11.1C50.6 10.9 50.4 10.7 50 10.7C49.6 10.7 49.3 10.8 49.1 11.1C48.9 11.4 48.7 11.7 48.7 12.2H51.3Z" fill="white"/>
|
11 |
-
<path d="M60.3 16H58.6V12.7C58.6 12 58.6 11.5 58.5 11.3C58.4 11.1 58.3 10.9 58.1 10.8C57.9 10.7 57.7 10.6 57.5 10.6C57.2 10.6 56.9 10.7 56.7 10.8C56.5 10.9 56.3 11.2 56.2 11.4C56.1 11.7 56.1 12.2 56.1 12.9V15.8H54.4V9.3H56V10.3C56.6 9.6 57.3 9.20001 58.1 9.20001C58.5 9.20001 58.8 9.30001 59.1 9.40001C59.4 9.50001 59.7 9.70001 59.8 9.90001C59.9 10.1 60.1 10.4 60.1 10.6C60.2 10.9 60.2 11.3 60.2 11.8V16H60.3Z" fill="white"/>
|
12 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
13 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
14 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
15 |
-
</g>
|
16 |
-
</svg>
|
1 |
+
<svg width="67" height="23" viewBox="0 0 67 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="67" height="23">
|
3 |
+
<path d="M63.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H63.1C65.2 23 66.9 21.3 66.9 19.2V3.8C66.8 1.7 65.1 0 63.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="67" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M28 7.10001H31.3C32 7.10001 32.6 7.2 33 7.3C33.5 7.5 34 7.70001 34.4 8.10001C34.8 8.50001 35.1 9.00001 35.3 9.60001C35.5 10.2 35.6 10.9 35.6 11.7C35.6 12.4 35.5 13.1 35.3 13.6C35.1 14.3 34.8 14.8 34.3 15.2C34 15.5 33.6 15.7 33 15.9C32.6 16 32.1 16.1 31.4 16.1H28V7.10001ZM29.8 8.60001V14.5H31.2C31.7 14.5 32.1 14.5 32.3 14.4C32.6 14.3 32.8 14.2 33 14C33.2 13.8 33.4 13.5 33.5 13.1C33.6 12.7 33.7 12.2 33.7 11.5C33.7 10.8 33.6 10.3 33.5 9.90001C33.4 9.50001 33.2 9.2 33 9C32.8 8.8 32.5 8.70001 32.2 8.60001C31.9 8.50001 31.5 8.5 30.7 8.5H29.8V8.60001Z" fill="white"/>
|
8 |
+
<path d="M40.8 14L42.5 14.3C42.3 14.9 41.9 15.4 41.5 15.7C41.1 16 40.4 16.2 39.7 16.2C38.6 16.2 37.7 15.8 37.2 15.1C36.8 14.5 36.6 13.8 36.6 12.9C36.6 11.8 36.9 11 37.4 10.4C38 9.80001 38.7 9.5 39.5 9.5C40.5 9.5 41.2 9.8 41.8 10.5C42.4 11.1 42.6 12.1 42.6 13.4H38.3C38.3 13.9 38.5 14.3 38.7 14.6C39 14.9 39.3 15 39.7 15C40 15 40.2 14.9 40.4 14.8C40.6 14.5 40.7 14.3 40.8 14ZM40.9 12.2C40.9 11.7 40.8 11.3 40.5 11.1C40.2 10.9 40 10.7 39.6 10.7C39.2 10.7 38.9 10.8 38.7 11.1C38.5 11.4 38.3 11.7 38.3 12.2H40.9Z" fill="white"/>
|
9 |
+
<path d="M44 16V7H45.7V16H44Z" fill="white"/>
|
10 |
+
<path d="M51.2 14L52.9 14.3C52.7 14.9 52.3 15.4 51.9 15.7C51.5 16 50.8 16.2 50.1 16.2C49 16.2 48.1 15.8 47.6 15.1C47.2 14.5 47 13.8 47 12.9C47 11.8 47.3 11 47.8 10.4C48.4 9.80001 49.1 9.5 49.9 9.5C50.9 9.5 51.6 9.8 52.2 10.5C52.8 11.1 53 12.1 53 13.4H48.7C48.7 13.9 48.9 14.3 49.1 14.6C49.4 14.9 49.7 15 50.1 15C50.4 15 50.6 14.9 50.8 14.8C51 14.5 51.1 14.3 51.2 14ZM51.3 12.2C51.3 11.7 51.2 11.3 50.9 11.1C50.6 10.9 50.4 10.7 50 10.7C49.6 10.7 49.3 10.8 49.1 11.1C48.9 11.4 48.7 11.7 48.7 12.2H51.3Z" fill="white"/>
|
11 |
+
<path d="M60.3 16H58.6V12.7C58.6 12 58.6 11.5 58.5 11.3C58.4 11.1 58.3 10.9 58.1 10.8C57.9 10.7 57.7 10.6 57.5 10.6C57.2 10.6 56.9 10.7 56.7 10.8C56.5 10.9 56.3 11.2 56.2 11.4C56.1 11.7 56.1 12.2 56.1 12.9V15.8H54.4V9.3H56V10.3C56.6 9.6 57.3 9.20001 58.1 9.20001C58.5 9.20001 58.8 9.30001 59.1 9.40001C59.4 9.50001 59.7 9.70001 59.8 9.90001C59.9 10.1 60.1 10.4 60.1 10.6C60.2 10.9 60.2 11.3 60.2 11.8V16H60.3Z" fill="white"/>
|
12 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
13 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
14 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
15 |
+
</g>
|
16 |
+
</svg>
|
images/share_icons/Linkedin_Share/pl_PL_share.svg
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
<svg width="100" height="23" viewBox="0 0 100 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="100" height="23">
|
3 |
-
<path d="M96.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H96.1C98.2 23 99.9 21.3 99.9 19.2V3.79999C99.8 1.69999 98.1 0 96.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="100" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M31 6.09998H32.8V11C32.8 11.8 32.8 12.3 32.9 12.5C33 12.9 33.2 13.2 33.5 13.4C33.8 13.6 34.2 13.7 34.7 13.7C35.2 13.7 35.6 13.6 35.9 13.4C36.2 13.2 36.3 12.9 36.4 12.6C36.5 12.3 36.5 11.8 36.5 11.1V6.09998H38.3V10.8C38.3 11.9 38.3 12.6 38.2 13.1C38.1 13.6 37.9 13.9 37.7 14.2C37.4 14.5 37.1 14.7 36.6 14.9C36.2 15.1 35.6 15.2 34.9 15.2C34 15.2 33.4 15.1 33 14.9C32.6 14.7 32.2 14.4 32 14.1C31.7 13.8 31.6 13.5 31.5 13.1C31.4 12.6 31.3 11.8 31.3 10.8V6.09998H31Z" fill="white"/>
|
8 |
-
<path d="M46 15H44.4V14C44.1 14.4 43.8 14.6 43.5 14.8C43.1 15 42.8 15.1 42.4 15.1C41.7 15.1 41 14.8 40.5 14.2C40 13.6 39.7 12.8 39.7 11.7C39.7 10.6 40 9.79995 40.5 9.19995C41 8.59995 41.7 8.29999 42.5 8.29999C43.2 8.29999 43.9 8.59995 44.4 9.19995V6H46.1V15H46ZM41.4 11.6C41.4 12.3 41.5 12.8 41.7 13.1C42 13.5 42.4 13.8 42.9 13.8C43.3 13.8 43.6 13.6 43.9 13.3C44.2 13 44.3 12.5 44.3 11.8C44.3 11.1 44.2 10.5 43.9 10.2C43.6 9.89995 43.3 9.69995 42.9 9.69995C42.5 9.69995 42.2 9.89995 41.9 10.2C41.6 10.5 41.4 11 41.4 11.6Z" fill="white"/>
|
9 |
-
<path d="M47.3 11.7C47.3 11.1 47.4 10.6 47.7 10C48 9.5 48.4 9.09999 48.9 8.79999C49.4 8.49999 50 8.39996 50.6 8.39996C51.6 8.39996 52.4 8.69996 53 9.39996C53.6 9.99996 53.9 10.8 53.9 11.8C53.9 12.8 53.6 13.6 52.9 14.2C52.3 14.8 51.5 15.2 50.5 15.2C49.9 15.2 49.3 15.1 48.8 14.8C48.3 14.5 47.8 14.1 47.6 13.6C47.4 13.1 47.3 12.4 47.3 11.7ZM49 11.8C49 12.4 49.2 12.9 49.5 13.3C49.8 13.6 50.2 13.8 50.6 13.8C51 13.8 51.4 13.6 51.7 13.3C52 13 52.2 12.5 52.2 11.8C52.2 11.2 52 10.7 51.7 10.3C51.4 9.99999 51 9.79999 50.6 9.79999C50.2 9.79999 49.8 9.99999 49.5 10.3C49.2 10.6 49 11.1 49 11.8Z" fill="white"/>
|
10 |
-
<path d="M59 8.59998C59 8.49998 59 8.39999 58.9 8.29999C58.9 8.19999 58.9 7.99996 58.9 7.89996C58.9 7.59996 59 7.29998 59.1 7.09998C59.2 6.89998 59.4 6.7 59.6 6.5C59.8 6.3 60.1 6.19998 60.3 6.09998C60.6 5.99998 60.9 6 61.3 6C61.6 6 62 5.99998 62.3 6.09998C62.6 6.09998 62.8 6.19999 63.1 6.29999C63.4 6.39999 63.6 6.4 63.8 6.5V8.69995H65V10.1H63.7V12.7C63.7 13 63.7 13.2 63.7 13.3C63.7 13.5 63.7 13.6 63.7 13.6C63.7 13.7 63.8 13.8 63.9 13.8C64 13.9 64.1 13.9 64.2 13.9C64.4 13.9 64.6 13.8 64.9 13.7L65 15C64.6 15.2 64.1 15.3 63.6 15.3C63.3 15.3 63 15.2 62.8 15.1C62.6 15 62.4 14.9 62.3 14.7C62.2 14.5 62.1 14.3 62.1 14C62.1 13.8 62 13.4 62 12.8V10H61.2V8.59998H62V7.09998C61.9 7.09998 61.8 7.09998 61.8 7.09998C61.7 7.09998 61.7 7.09998 61.6 7.09998C61.5 7.09998 61.4 7.09998 61.4 7.09998C61.2 7.09998 61.1 7.09998 60.9 7.09998C60.7 7.09998 60.6 7.19999 60.5 7.29999C60.4 7.39999 60.3 7.49998 60.3 7.59998C60.3 7.69998 60.2 7.89998 60.2 8.09998C60.2 8.29998 60.2 8.49995 60.2 8.69995C60.2 8.89995 60.3 9.09999 60.3 9.29999C60.3 9.49999 60.4 9.69999 60.4 9.79999C60.4 9.89999 60.5 10.1 60.5 10.2L58.9 10.5C58.8 10.2 58.7 9.99996 58.5 9.89996C58.3 9.79996 58 9.69995 57.7 9.69995C57.2 9.69995 56.9 9.79996 56.7 9.89996C56.6 9.99996 56.5 10.1 56.5 10.2C56.5 10.3 56.6 10.4 56.7 10.5C56.8 10.6 57.4 10.8 58.3 11C59.2 11.2 59.9 11.5 60.2 11.8C60.6 12.1 60.7 12.5 60.7 13.1C60.7 13.7 60.5 14.2 60 14.6C59.5 15 58.8 15.2 57.8 15.2C57.4 15.2 57 15.2 56.6 15.1C56.2 15 55.9 14.9 55.7 14.7C55.4 14.5 55.2 14.3 55.1 14.1C54.9 13.9 54.8 13.6 54.7 13.3L56.4 13C56.5 13.3 56.6 13.6 56.8 13.8C57 14 57.3 14.1 57.7 14.1C58.1 14.1 58.5 14 58.7 13.9C58.9 13.8 58.9 13.6 58.9 13.4C58.9 13.3 58.9 13.2 58.8 13.1C58.7 13 58.5 12.9 58.2 12.9C56.8 12.6 55.9 12.3 55.6 12.1C55.1 11.8 54.8 11.3 54.8 10.6C54.8 9.99998 55 9.59995 55.5 9.19995C56 8.79995 56.6 8.59998 57.6 8.59998C57.9 8.59998 58.1 8.59998 58.3 8.59998C58.6 8.49998 58.9 8.49998 59 8.59998Z" fill="white"/>
|
11 |
-
<path d="M69.9 13L71.6 13.3C71.4 13.9 71 14.4 70.6 14.7C70.2 15 69.5 15.2 68.8 15.2C67.7 15.2 66.8 14.8 66.3 14.1C65.9 13.5 65.7 12.8 65.7 11.9C65.7 10.8 66 9.99996 66.5 9.39996C67.1 8.79996 67.8 8.5 68.6 8.5C69.6 8.5 70.3 8.8 70.9 9.5C71.5 10.1 71.7 11.1 71.7 12.4H67.4C67.4 12.9 67.6 13.3 67.8 13.6C68.1 13.9 68.4 14 68.8 14C69.1 14 69.3 13.9 69.5 13.8C69.6 13.5 69.8 13.3 69.9 13ZM70 11.2C70 10.7 69.9 10.3 69.6 10.1C69.3 9.89998 69.1 9.69995 68.7 9.69995C68.3 9.69995 68 9.79998 67.8 10.1C67.6 10.4 67.4 10.7 67.4 11.2H70ZM69.8 15C69.7 15.1 69.7 15.1 69.6 15.2C69.5 15.3 69.5 15.4 69.4 15.4C69.4 15.5 69.3 15.6 69.3 15.7C69.3 15.8 69.3 15.9 69.3 16C69.3 16.1 69.3 16.2 69.4 16.3C69.5 16.4 69.6 16.4 69.8 16.4C69.9 16.4 70 16.4 70 16.4C70.1 16.4 70.2 16.3 70.3 16.3V17.3C70 17.5 69.6 17.5 69.4 17.5C69.2 17.5 69 17.5 68.8 17.4C68.6 17.3 68.5 17.3 68.4 17.1C68.3 17 68.2 16.9 68.1 16.7C68 16.6 68 16.4 68 16.3C68 16.1 68.1 15.8 68.2 15.6C68.3 15.4 68.5 15.1 68.8 14.9H69.8V15Z" fill="white"/>
|
12 |
-
<path d="M73 8.5H74.6V9.5C74.8 9.2 75.1 8.89995 75.4 8.69995C75.8 8.49995 76.1 8.39996 76.6 8.39996C77.4 8.39996 78 8.69999 78.5 9.29999C79 9.89999 79.3 10.7 79.3 11.8C79.3 12.9 79 13.7 78.5 14.3C78 14.9 77.3 15.2 76.6 15.2C76.2 15.2 75.9 15.1 75.6 15C75.3 14.9 75 14.6 74.7 14.3V17.6H73V8.5ZM74.7 11.7C74.7 12.4 74.8 13 75.1 13.3C75.4 13.6 75.7 13.8 76.2 13.8C76.6 13.8 76.9 13.6 77.2 13.3C77.5 13 77.6 12.5 77.6 11.7C77.6 11 77.5 10.5 77.2 10.2C76.9 9.89995 76.6 9.69995 76.2 9.69995C75.8 9.69995 75.4 9.89995 75.2 10.2C75 10.5 74.7 11 74.7 11.7Z" fill="white"/>
|
13 |
-
<path d="M86.6 15H84.9V11.7C84.9 11 84.9 10.5 84.8 10.3C84.7 10.1 84.6 9.89999 84.4 9.79999C84.2 9.69999 84 9.59998 83.8 9.59998C83.5 9.59998 83.2 9.69999 83 9.79999C82.8 9.89999 82.6 10.2 82.5 10.4C82.4 10.7 82.4 11.2 82.4 11.9V14.8H80.7V8.29999H82.3V9.29999C82.9 8.59999 83.6 8.19995 84.4 8.19995C84.8 8.19995 85.1 8.29996 85.4 8.39996C85.7 8.49996 86 8.69996 86.1 8.89996C86.2 9.09996 86.4 9.39998 86.4 9.59998C86.5 9.89998 86.5 10.3 86.5 10.8V15H86.6Z" fill="white"/>
|
14 |
-
<path d="M88.4 7.69995V6.09998H90.1V7.69995H88.4ZM88.4 15V8.5H90.1V15H88.4Z" fill="white"/>
|
15 |
-
<path d="M93.5 8.5V14.8C93.5 15.6 93.4 16.2 93.3 16.6C93.2 16.9 93 17.2 92.7 17.4C92.4 17.6 92 17.7 91.5 17.7C91.3 17.7 91.1 17.7 90.9 17.7C90.7 17.7 90.5 17.6 90.3 17.6L90.6 16.1C90.7 16.1 90.8 16.1 90.8 16.1C90.9 16.1 90.9 16.1 91 16.1C91.2 16.1 91.3 16.1 91.4 16C91.5 15.9 91.6 15.8 91.6 15.7C91.6 15.6 91.7 15.3 91.7 14.7V8.5H93.5ZM91.8 7.69995V6.09998H93.5V7.69995H91.8Z" fill="white"/>
|
16 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
17 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
18 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
19 |
-
</g>
|
20 |
-
</svg>
|
1 |
+
<svg width="100" height="23" viewBox="0 0 100 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="100" height="23">
|
3 |
+
<path d="M96.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H96.1C98.2 23 99.9 21.3 99.9 19.2V3.79999C99.8 1.69999 98.1 0 96.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="100" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M31 6.09998H32.8V11C32.8 11.8 32.8 12.3 32.9 12.5C33 12.9 33.2 13.2 33.5 13.4C33.8 13.6 34.2 13.7 34.7 13.7C35.2 13.7 35.6 13.6 35.9 13.4C36.2 13.2 36.3 12.9 36.4 12.6C36.5 12.3 36.5 11.8 36.5 11.1V6.09998H38.3V10.8C38.3 11.9 38.3 12.6 38.2 13.1C38.1 13.6 37.9 13.9 37.7 14.2C37.4 14.5 37.1 14.7 36.6 14.9C36.2 15.1 35.6 15.2 34.9 15.2C34 15.2 33.4 15.1 33 14.9C32.6 14.7 32.2 14.4 32 14.1C31.7 13.8 31.6 13.5 31.5 13.1C31.4 12.6 31.3 11.8 31.3 10.8V6.09998H31Z" fill="white"/>
|
8 |
+
<path d="M46 15H44.4V14C44.1 14.4 43.8 14.6 43.5 14.8C43.1 15 42.8 15.1 42.4 15.1C41.7 15.1 41 14.8 40.5 14.2C40 13.6 39.7 12.8 39.7 11.7C39.7 10.6 40 9.79995 40.5 9.19995C41 8.59995 41.7 8.29999 42.5 8.29999C43.2 8.29999 43.9 8.59995 44.4 9.19995V6H46.1V15H46ZM41.4 11.6C41.4 12.3 41.5 12.8 41.7 13.1C42 13.5 42.4 13.8 42.9 13.8C43.3 13.8 43.6 13.6 43.9 13.3C44.2 13 44.3 12.5 44.3 11.8C44.3 11.1 44.2 10.5 43.9 10.2C43.6 9.89995 43.3 9.69995 42.9 9.69995C42.5 9.69995 42.2 9.89995 41.9 10.2C41.6 10.5 41.4 11 41.4 11.6Z" fill="white"/>
|
9 |
+
<path d="M47.3 11.7C47.3 11.1 47.4 10.6 47.7 10C48 9.5 48.4 9.09999 48.9 8.79999C49.4 8.49999 50 8.39996 50.6 8.39996C51.6 8.39996 52.4 8.69996 53 9.39996C53.6 9.99996 53.9 10.8 53.9 11.8C53.9 12.8 53.6 13.6 52.9 14.2C52.3 14.8 51.5 15.2 50.5 15.2C49.9 15.2 49.3 15.1 48.8 14.8C48.3 14.5 47.8 14.1 47.6 13.6C47.4 13.1 47.3 12.4 47.3 11.7ZM49 11.8C49 12.4 49.2 12.9 49.5 13.3C49.8 13.6 50.2 13.8 50.6 13.8C51 13.8 51.4 13.6 51.7 13.3C52 13 52.2 12.5 52.2 11.8C52.2 11.2 52 10.7 51.7 10.3C51.4 9.99999 51 9.79999 50.6 9.79999C50.2 9.79999 49.8 9.99999 49.5 10.3C49.2 10.6 49 11.1 49 11.8Z" fill="white"/>
|
10 |
+
<path d="M59 8.59998C59 8.49998 59 8.39999 58.9 8.29999C58.9 8.19999 58.9 7.99996 58.9 7.89996C58.9 7.59996 59 7.29998 59.1 7.09998C59.2 6.89998 59.4 6.7 59.6 6.5C59.8 6.3 60.1 6.19998 60.3 6.09998C60.6 5.99998 60.9 6 61.3 6C61.6 6 62 5.99998 62.3 6.09998C62.6 6.09998 62.8 6.19999 63.1 6.29999C63.4 6.39999 63.6 6.4 63.8 6.5V8.69995H65V10.1H63.7V12.7C63.7 13 63.7 13.2 63.7 13.3C63.7 13.5 63.7 13.6 63.7 13.6C63.7 13.7 63.8 13.8 63.9 13.8C64 13.9 64.1 13.9 64.2 13.9C64.4 13.9 64.6 13.8 64.9 13.7L65 15C64.6 15.2 64.1 15.3 63.6 15.3C63.3 15.3 63 15.2 62.8 15.1C62.6 15 62.4 14.9 62.3 14.7C62.2 14.5 62.1 14.3 62.1 14C62.1 13.8 62 13.4 62 12.8V10H61.2V8.59998H62V7.09998C61.9 7.09998 61.8 7.09998 61.8 7.09998C61.7 7.09998 61.7 7.09998 61.6 7.09998C61.5 7.09998 61.4 7.09998 61.4 7.09998C61.2 7.09998 61.1 7.09998 60.9 7.09998C60.7 7.09998 60.6 7.19999 60.5 7.29999C60.4 7.39999 60.3 7.49998 60.3 7.59998C60.3 7.69998 60.2 7.89998 60.2 8.09998C60.2 8.29998 60.2 8.49995 60.2 8.69995C60.2 8.89995 60.3 9.09999 60.3 9.29999C60.3 9.49999 60.4 9.69999 60.4 9.79999C60.4 9.89999 60.5 10.1 60.5 10.2L58.9 10.5C58.8 10.2 58.7 9.99996 58.5 9.89996C58.3 9.79996 58 9.69995 57.7 9.69995C57.2 9.69995 56.9 9.79996 56.7 9.89996C56.6 9.99996 56.5 10.1 56.5 10.2C56.5 10.3 56.6 10.4 56.7 10.5C56.8 10.6 57.4 10.8 58.3 11C59.2 11.2 59.9 11.5 60.2 11.8C60.6 12.1 60.7 12.5 60.7 13.1C60.7 13.7 60.5 14.2 60 14.6C59.5 15 58.8 15.2 57.8 15.2C57.4 15.2 57 15.2 56.6 15.1C56.2 15 55.9 14.9 55.7 14.7C55.4 14.5 55.2 14.3 55.1 14.1C54.9 13.9 54.8 13.6 54.7 13.3L56.4 13C56.5 13.3 56.6 13.6 56.8 13.8C57 14 57.3 14.1 57.7 14.1C58.1 14.1 58.5 14 58.7 13.9C58.9 13.8 58.9 13.6 58.9 13.4C58.9 13.3 58.9 13.2 58.8 13.1C58.7 13 58.5 12.9 58.2 12.9C56.8 12.6 55.9 12.3 55.6 12.1C55.1 11.8 54.8 11.3 54.8 10.6C54.8 9.99998 55 9.59995 55.5 9.19995C56 8.79995 56.6 8.59998 57.6 8.59998C57.9 8.59998 58.1 8.59998 58.3 8.59998C58.6 8.49998 58.9 8.49998 59 8.59998Z" fill="white"/>
|
11 |
+
<path d="M69.9 13L71.6 13.3C71.4 13.9 71 14.4 70.6 14.7C70.2 15 69.5 15.2 68.8 15.2C67.7 15.2 66.8 14.8 66.3 14.1C65.9 13.5 65.7 12.8 65.7 11.9C65.7 10.8 66 9.99996 66.5 9.39996C67.1 8.79996 67.8 8.5 68.6 8.5C69.6 8.5 70.3 8.8 70.9 9.5C71.5 10.1 71.7 11.1 71.7 12.4H67.4C67.4 12.9 67.6 13.3 67.8 13.6C68.1 13.9 68.4 14 68.8 14C69.1 14 69.3 13.9 69.5 13.8C69.6 13.5 69.8 13.3 69.9 13ZM70 11.2C70 10.7 69.9 10.3 69.6 10.1C69.3 9.89998 69.1 9.69995 68.7 9.69995C68.3 9.69995 68 9.79998 67.8 10.1C67.6 10.4 67.4 10.7 67.4 11.2H70ZM69.8 15C69.7 15.1 69.7 15.1 69.6 15.2C69.5 15.3 69.5 15.4 69.4 15.4C69.4 15.5 69.3 15.6 69.3 15.7C69.3 15.8 69.3 15.9 69.3 16C69.3 16.1 69.3 16.2 69.4 16.3C69.5 16.4 69.6 16.4 69.8 16.4C69.9 16.4 70 16.4 70 16.4C70.1 16.4 70.2 16.3 70.3 16.3V17.3C70 17.5 69.6 17.5 69.4 17.5C69.2 17.5 69 17.5 68.8 17.4C68.6 17.3 68.5 17.3 68.4 17.1C68.3 17 68.2 16.9 68.1 16.7C68 16.6 68 16.4 68 16.3C68 16.1 68.1 15.8 68.2 15.6C68.3 15.4 68.5 15.1 68.8 14.9H69.8V15Z" fill="white"/>
|
12 |
+
<path d="M73 8.5H74.6V9.5C74.8 9.2 75.1 8.89995 75.4 8.69995C75.8 8.49995 76.1 8.39996 76.6 8.39996C77.4 8.39996 78 8.69999 78.5 9.29999C79 9.89999 79.3 10.7 79.3 11.8C79.3 12.9 79 13.7 78.5 14.3C78 14.9 77.3 15.2 76.6 15.2C76.2 15.2 75.9 15.1 75.6 15C75.3 14.9 75 14.6 74.7 14.3V17.6H73V8.5ZM74.7 11.7C74.7 12.4 74.8 13 75.1 13.3C75.4 13.6 75.7 13.8 76.2 13.8C76.6 13.8 76.9 13.6 77.2 13.3C77.5 13 77.6 12.5 77.6 11.7C77.6 11 77.5 10.5 77.2 10.2C76.9 9.89995 76.6 9.69995 76.2 9.69995C75.8 9.69995 75.4 9.89995 75.2 10.2C75 10.5 74.7 11 74.7 11.7Z" fill="white"/>
|
13 |
+
<path d="M86.6 15H84.9V11.7C84.9 11 84.9 10.5 84.8 10.3C84.7 10.1 84.6 9.89999 84.4 9.79999C84.2 9.69999 84 9.59998 83.8 9.59998C83.5 9.59998 83.2 9.69999 83 9.79999C82.8 9.89999 82.6 10.2 82.5 10.4C82.4 10.7 82.4 11.2 82.4 11.9V14.8H80.7V8.29999H82.3V9.29999C82.9 8.59999 83.6 8.19995 84.4 8.19995C84.8 8.19995 85.1 8.29996 85.4 8.39996C85.7 8.49996 86 8.69996 86.1 8.89996C86.2 9.09996 86.4 9.39998 86.4 9.59998C86.5 9.89998 86.5 10.3 86.5 10.8V15H86.6Z" fill="white"/>
|
14 |
+
<path d="M88.4 7.69995V6.09998H90.1V7.69995H88.4ZM88.4 15V8.5H90.1V15H88.4Z" fill="white"/>
|
15 |
+
<path d="M93.5 8.5V14.8C93.5 15.6 93.4 16.2 93.3 16.6C93.2 16.9 93 17.2 92.7 17.4C92.4 17.6 92 17.7 91.5 17.7C91.3 17.7 91.1 17.7 90.9 17.7C90.7 17.7 90.5 17.6 90.3 17.6L90.6 16.1C90.7 16.1 90.8 16.1 90.8 16.1C90.9 16.1 90.9 16.1 91 16.1C91.2 16.1 91.3 16.1 91.4 16C91.5 15.9 91.6 15.8 91.6 15.7C91.6 15.6 91.7 15.3 91.7 14.7V8.5H93.5ZM91.8 7.69995V6.09998H93.5V7.69995H91.8Z" fill="white"/>
|
16 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
17 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
18 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
19 |
+
</g>
|
20 |
+
</svg>
|
images/share_icons/Linkedin_Share/pt_BR_share.svg
CHANGED
@@ -1,23 +1,23 @@
|
|
1 |
-
<svg width="115" height="23" viewBox="0 0 115 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="115" height="23">
|
3 |
-
<path d="M111.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H111.1C113.2 23 114.9 21.3 114.9 19.2V3.79999C114.8 1.69999 113.1 0 111.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="115" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M36.7 11.7L38.5 12.3C38.2 13.3 37.8 14 37.2 14.5C36.6 15 35.8 15.2 34.8 15.2C33.6 15.2 32.6 14.8 31.9 14C31.1 13.2 30.8 12.1 30.8 10.7C30.8 9.19995 31.2 7.99995 32 7.19995C32.8 6.39995 33.8 6 35 6C36.1 6 37 6.3 37.7 7C38.1 7.4 38.4 7.89995 38.6 8.69995L36.8 9.09998C36.7 8.59998 36.5 8.3 36.1 8C35.8 7.7 35.4 7.59998 34.9 7.59998C34.2 7.59998 33.7 7.79999 33.3 8.29999C32.9 8.79999 32.7 9.49998 32.7 10.6C32.7 11.7 32.9 12.5 33.3 13C33.7 13.5 34.2 13.7 34.9 13.7C35.4 13.7 35.8 13.5 36.1 13.2C36.3 12.9 36.6 12.4 36.7 11.7Z" fill="white"/>
|
8 |
-
<path d="M39.6 11.7C39.6 11.1 39.7 10.6 40 10C40.3 9.5 40.7 9.09999 41.2 8.79999C41.7 8.49999 42.3 8.39996 42.9 8.39996C43.9 8.39996 44.7 8.69996 45.3 9.39996C45.9 9.99996 46.2 10.8 46.2 11.8C46.2 12.8 45.9 13.6 45.2 14.2C44.6 14.8 43.8 15.2 42.8 15.2C42.2 15.2 41.6 15.1 41.1 14.8C40.6 14.5 40.1 14.1 39.9 13.6C39.8 13.1 39.6 12.4 39.6 11.7ZM41.4 11.8C41.4 12.4 41.6 12.9 41.9 13.3C42.2 13.6 42.6 13.8 43 13.8C43.4 13.8 43.8 13.6 44.1 13.3C44.4 13 44.6 12.5 44.6 11.8C44.6 11.2 44.4 10.7 44.1 10.3C43.8 9.99999 43.4 9.79999 43 9.79999C42.6 9.79999 42.2 9.99999 41.9 10.3C41.6 10.6 41.4 11.1 41.4 11.8Z" fill="white"/>
|
9 |
-
<path d="M47.6 8.5H49.2V9.39996C49.8 8.69996 50.4 8.39996 51.2 8.39996C51.6 8.39996 52 8.49995 52.3 8.69995C52.6 8.89995 52.9 9.1 53.1 9.5C53.4 9.2 53.7 8.89995 54 8.69995C54.3 8.49995 54.7 8.39996 55.1 8.39996C55.6 8.39996 56 8.49995 56.3 8.69995C56.6 8.89995 56.9 9.19998 57 9.59998C57.1 9.89998 57.2 10.3 57.2 10.9V15.1H55.5V11.4C55.5 10.8 55.4 10.3 55.3 10.2C55.1 9.99995 54.9 9.79999 54.6 9.79999C54.4 9.79999 54.1 9.9 53.9 10C53.7 10.1 53.5 10.4 53.4 10.6C53.3 10.8 53.3 11.3 53.3 11.9V15H51.6V11.4C51.6 10.8 51.6 10.4 51.5 10.2C51.4 9.99995 51.3 9.89999 51.2 9.79999C51.1 9.69999 50.9 9.69995 50.7 9.69995C50.4 9.69995 50.2 9.79996 50 9.89996C49.8 9.99996 49.6 10.2 49.5 10.5C49.4 10.8 49.4 11.2 49.4 11.8V15H47.7V8.5H47.6Z" fill="white"/>
|
10 |
-
<path d="M58.8 8.5H60.4V9.5C60.6 9.2 60.9 8.89995 61.2 8.69995C61.6 8.49995 61.9 8.39996 62.4 8.39996C63.2 8.39996 63.8 8.69999 64.3 9.29999C64.8 9.89999 65.1 10.7 65.1 11.8C65.1 12.9 64.8 13.7 64.3 14.3C63.8 14.9 63.1 15.2 62.4 15.2C62 15.2 61.7 15.1 61.4 15C61.1 14.9 60.8 14.6 60.5 14.3V17.6H58.8V8.5ZM60.5 11.7C60.5 12.4 60.6 13 60.9 13.3C61.2 13.6 61.5 13.8 62 13.8C62.4 13.8 62.7 13.6 63 13.3C63.3 13 63.4 12.5 63.4 11.7C63.4 11 63.3 10.5 63 10.2C62.7 9.89995 62.4 9.69995 62 9.69995C61.6 9.69995 61.2 9.89995 61 10.2C60.8 10.5 60.5 11 60.5 11.7Z" fill="white"/>
|
11 |
-
<path d="M67.7 10.5L66.1 10.2C66.3 9.59995 66.6 9.09999 67 8.79999C67.4 8.49999 68.1 8.29999 68.9 8.29999C69.7 8.29999 70.2 8.39998 70.6 8.59998C71 8.79998 71.2 8.99999 71.4 9.29999C71.6 9.59999 71.6 10.1 71.6 10.8V12.8C71.6 13.4 71.6 13.8 71.7 14.1C71.8 14.4 71.9 14.7 72 15H70.3C70.3 14.9 70.2 14.7 70.1 14.5C70.1 14.4 70.1 14.3 70 14.3C69.7 14.6 69.4 14.8 69.1 14.9C68.8 15 68.4 15.1 68 15.1C67.3 15.1 66.8 14.9 66.4 14.6C66 14.2 65.8 13.8 65.8 13.2C65.8 12.8 65.9 12.5 66.1 12.2C66.3 11.9 66.5 11.7 66.8 11.5C67.1 11.3 67.6 11.2 68.2 11.1C69 10.9 69.6 10.8 69.9 10.7V10.6C69.9 10.3 69.8 9.99996 69.7 9.89996C69.5 9.79996 69.2 9.69995 68.8 9.69995C68.5 9.69995 68.3 9.79996 68.1 9.89996C67.9 9.99996 67.8 10.2 67.7 10.5ZM70 11.9C69.8 12 69.4 12.1 69 12.2C68.5 12.3 68.2 12.4 68.1 12.5C67.9 12.7 67.8 12.9 67.8 13.1C67.8 13.3 67.9 13.5 68.1 13.7C68.3 13.9 68.5 14 68.8 14C69.1 14 69.4 13.9 69.7 13.7C69.9 13.5 70 13.4 70.1 13.1C70.1 13 70.2 12.7 70.2 12.3V11.9H70Z" fill="white"/>
|
12 |
-
<path d="M75.1 15H73.4V8.5H75V9.39996C75.3 8.99996 75.5 8.7 75.7 8.5C75.9 8.4 76.2 8.29999 76.4 8.29999C76.8 8.29999 77.2 8.39998 77.5 8.59998L77 10.1C76.7 9.89998 76.4 9.79999 76.2 9.79999C76 9.79999 75.8 9.9 75.6 10C75.4 10.1 75.3 10.4 75.2 10.7C75.1 11 75.1 11.8 75.1 12.9V15Z" fill="white"/>
|
13 |
-
<path d="M81.3 8.5V9.89996H80.1V12.5C80.1 13 80.1 13.3 80.1 13.4C80.1 13.5 80.2 13.6 80.3 13.6C80.4 13.7 80.5 13.7 80.6 13.7C80.8 13.7 81 13.6 81.3 13.5L81.4 14.8C81 15 80.5 15.1 80 15.1C79.7 15.1 79.4 15 79.2 14.9C79 14.8 78.8 14.7 78.7 14.5C78.6 14.3 78.5 14.1 78.5 13.8C78.5 13.6 78.4 13.2 78.4 12.6V9.79999H77.6V8.39996H78.4V7.09998L80.1 6.09998V8.39996H81.3V8.5Z" fill="white"/>
|
14 |
-
<path d="M82.5 7.69995V6.09998H84.2V7.69995H82.5ZM82.5 15V8.5H84.2V15H82.5Z" fill="white"/>
|
15 |
-
<path d="M85.9 15V6H87.6V15H85.9Z" fill="white"/>
|
16 |
-
<path d="M91.1 6.09998V9.39996C91.7 8.79996 92.3 8.39996 93.1 8.39996C93.5 8.39996 93.9 8.49998 94.2 8.59998C94.5 8.69998 94.8 8.89995 94.9 9.19995C95 9.49995 95.2 9.7 95.2 10C95.2 10.3 95.3 10.7 95.3 11.3V15.1H93.6V11.6C93.6 10.9 93.6 10.5 93.5 10.3C93.4 10.1 93.3 9.99996 93.2 9.89996C93 9.79996 92.8 9.69995 92.6 9.69995C92.3 9.69995 92.1 9.79996 91.8 9.89996C91.6 9.99996 91.4 10.2 91.3 10.5C91.2 10.8 91.1 11.2 91.1 11.7V15H89.4V6H91.1V6.09998Z" fill="white"/>
|
17 |
-
<path d="M98.4 10.5L96.8 10.2C97 9.59995 97.3 9.09999 97.7 8.79999C98.1 8.49999 98.8 8.29999 99.6 8.29999C100.4 8.29999 100.9 8.39998 101.3 8.59998C101.7 8.79998 101.9 8.99999 102.1 9.29999C102.3 9.59999 102.3 10.1 102.3 10.8V12.8C102.3 13.4 102.3 13.8 102.4 14.1C102.5 14.4 102.6 14.7 102.7 15H101C101 14.9 100.9 14.7 100.8 14.5C100.8 14.4 100.8 14.3 100.7 14.3C100.4 14.6 100.1 14.8 99.8 14.9C99.5 15 99.1 15.1 98.7 15.1C98 15.1 97.5 14.9 97.1 14.6C96.7 14.2 96.5 13.8 96.5 13.2C96.5 12.8 96.6 12.5 96.8 12.2C97 11.9 97.2 11.7 97.5 11.5C97.8 11.3 98.3 11.2 98.9 11.1C99.7 10.9 100.3 10.8 100.6 10.7V10.6C100.6 10.3 100.5 9.99996 100.4 9.89996C100.2 9.79996 99.9 9.69995 99.5 9.69995C99.2 9.69995 99 9.79996 98.8 9.89996C98.6 9.99996 98.5 10.2 98.4 10.5ZM100.7 11.9C100.5 12 100.1 12.1 99.7 12.2C99.2 12.3 98.9 12.4 98.8 12.5C98.6 12.7 98.5 12.9 98.5 13.1C98.5 13.3 98.6 13.5 98.8 13.7C99 13.9 99.2 14 99.5 14C99.8 14 100.1 13.9 100.4 13.7C100.6 13.5 100.7 13.4 100.8 13.1C100.8 13 100.9 12.7 100.9 12.3V11.9H100.7Z" fill="white"/>
|
18 |
-
<path d="M105.7 15H104V8.5H105.6V9.39996C105.9 8.99996 106.1 8.7 106.3 8.5C106.5 8.4 106.8 8.29999 107 8.29999C107.4 8.29999 107.8 8.39998 108.1 8.59998L107.6 10.1C107.3 9.89998 107 9.79999 106.8 9.79999C106.6 9.79999 106.4 9.9 106.2 10C106 10.1 105.9 10.4 105.8 10.7C105.7 11 105.7 11.8 105.7 12.9V15Z" fill="white"/>
|
19 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
20 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
21 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
22 |
-
</g>
|
23 |
-
</svg>
|
1 |
+
<svg width="115" height="23" viewBox="0 0 115 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="115" height="23">
|
3 |
+
<path d="M111.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H111.1C113.2 23 114.9 21.3 114.9 19.2V3.79999C114.8 1.69999 113.1 0 111.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="115" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M36.7 11.7L38.5 12.3C38.2 13.3 37.8 14 37.2 14.5C36.6 15 35.8 15.2 34.8 15.2C33.6 15.2 32.6 14.8 31.9 14C31.1 13.2 30.8 12.1 30.8 10.7C30.8 9.19995 31.2 7.99995 32 7.19995C32.8 6.39995 33.8 6 35 6C36.1 6 37 6.3 37.7 7C38.1 7.4 38.4 7.89995 38.6 8.69995L36.8 9.09998C36.7 8.59998 36.5 8.3 36.1 8C35.8 7.7 35.4 7.59998 34.9 7.59998C34.2 7.59998 33.7 7.79999 33.3 8.29999C32.9 8.79999 32.7 9.49998 32.7 10.6C32.7 11.7 32.9 12.5 33.3 13C33.7 13.5 34.2 13.7 34.9 13.7C35.4 13.7 35.8 13.5 36.1 13.2C36.3 12.9 36.6 12.4 36.7 11.7Z" fill="white"/>
|
8 |
+
<path d="M39.6 11.7C39.6 11.1 39.7 10.6 40 10C40.3 9.5 40.7 9.09999 41.2 8.79999C41.7 8.49999 42.3 8.39996 42.9 8.39996C43.9 8.39996 44.7 8.69996 45.3 9.39996C45.9 9.99996 46.2 10.8 46.2 11.8C46.2 12.8 45.9 13.6 45.2 14.2C44.6 14.8 43.8 15.2 42.8 15.2C42.2 15.2 41.6 15.1 41.1 14.8C40.6 14.5 40.1 14.1 39.9 13.6C39.8 13.1 39.6 12.4 39.6 11.7ZM41.4 11.8C41.4 12.4 41.6 12.9 41.9 13.3C42.2 13.6 42.6 13.8 43 13.8C43.4 13.8 43.8 13.6 44.1 13.3C44.4 13 44.6 12.5 44.6 11.8C44.6 11.2 44.4 10.7 44.1 10.3C43.8 9.99999 43.4 9.79999 43 9.79999C42.6 9.79999 42.2 9.99999 41.9 10.3C41.6 10.6 41.4 11.1 41.4 11.8Z" fill="white"/>
|
9 |
+
<path d="M47.6 8.5H49.2V9.39996C49.8 8.69996 50.4 8.39996 51.2 8.39996C51.6 8.39996 52 8.49995 52.3 8.69995C52.6 8.89995 52.9 9.1 53.1 9.5C53.4 9.2 53.7 8.89995 54 8.69995C54.3 8.49995 54.7 8.39996 55.1 8.39996C55.6 8.39996 56 8.49995 56.3 8.69995C56.6 8.89995 56.9 9.19998 57 9.59998C57.1 9.89998 57.2 10.3 57.2 10.9V15.1H55.5V11.4C55.5 10.8 55.4 10.3 55.3 10.2C55.1 9.99995 54.9 9.79999 54.6 9.79999C54.4 9.79999 54.1 9.9 53.9 10C53.7 10.1 53.5 10.4 53.4 10.6C53.3 10.8 53.3 11.3 53.3 11.9V15H51.6V11.4C51.6 10.8 51.6 10.4 51.5 10.2C51.4 9.99995 51.3 9.89999 51.2 9.79999C51.1 9.69999 50.9 9.69995 50.7 9.69995C50.4 9.69995 50.2 9.79996 50 9.89996C49.8 9.99996 49.6 10.2 49.5 10.5C49.4 10.8 49.4 11.2 49.4 11.8V15H47.7V8.5H47.6Z" fill="white"/>
|
10 |
+
<path d="M58.8 8.5H60.4V9.5C60.6 9.2 60.9 8.89995 61.2 8.69995C61.6 8.49995 61.9 8.39996 62.4 8.39996C63.2 8.39996 63.8 8.69999 64.3 9.29999C64.8 9.89999 65.1 10.7 65.1 11.8C65.1 12.9 64.8 13.7 64.3 14.3C63.8 14.9 63.1 15.2 62.4 15.2C62 15.2 61.7 15.1 61.4 15C61.1 14.9 60.8 14.6 60.5 14.3V17.6H58.8V8.5ZM60.5 11.7C60.5 12.4 60.6 13 60.9 13.3C61.2 13.6 61.5 13.8 62 13.8C62.4 13.8 62.7 13.6 63 13.3C63.3 13 63.4 12.5 63.4 11.7C63.4 11 63.3 10.5 63 10.2C62.7 9.89995 62.4 9.69995 62 9.69995C61.6 9.69995 61.2 9.89995 61 10.2C60.8 10.5 60.5 11 60.5 11.7Z" fill="white"/>
|
11 |
+
<path d="M67.7 10.5L66.1 10.2C66.3 9.59995 66.6 9.09999 67 8.79999C67.4 8.49999 68.1 8.29999 68.9 8.29999C69.7 8.29999 70.2 8.39998 70.6 8.59998C71 8.79998 71.2 8.99999 71.4 9.29999C71.6 9.59999 71.6 10.1 71.6 10.8V12.8C71.6 13.4 71.6 13.8 71.7 14.1C71.8 14.4 71.9 14.7 72 15H70.3C70.3 14.9 70.2 14.7 70.1 14.5C70.1 14.4 70.1 14.3 70 14.3C69.7 14.6 69.4 14.8 69.1 14.9C68.8 15 68.4 15.1 68 15.1C67.3 15.1 66.8 14.9 66.4 14.6C66 14.2 65.8 13.8 65.8 13.2C65.8 12.8 65.9 12.5 66.1 12.2C66.3 11.9 66.5 11.7 66.8 11.5C67.1 11.3 67.6 11.2 68.2 11.1C69 10.9 69.6 10.8 69.9 10.7V10.6C69.9 10.3 69.8 9.99996 69.7 9.89996C69.5 9.79996 69.2 9.69995 68.8 9.69995C68.5 9.69995 68.3 9.79996 68.1 9.89996C67.9 9.99996 67.8 10.2 67.7 10.5ZM70 11.9C69.8 12 69.4 12.1 69 12.2C68.5 12.3 68.2 12.4 68.1 12.5C67.9 12.7 67.8 12.9 67.8 13.1C67.8 13.3 67.9 13.5 68.1 13.7C68.3 13.9 68.5 14 68.8 14C69.1 14 69.4 13.9 69.7 13.7C69.9 13.5 70 13.4 70.1 13.1C70.1 13 70.2 12.7 70.2 12.3V11.9H70Z" fill="white"/>
|
12 |
+
<path d="M75.1 15H73.4V8.5H75V9.39996C75.3 8.99996 75.5 8.7 75.7 8.5C75.9 8.4 76.2 8.29999 76.4 8.29999C76.8 8.29999 77.2 8.39998 77.5 8.59998L77 10.1C76.7 9.89998 76.4 9.79999 76.2 9.79999C76 9.79999 75.8 9.9 75.6 10C75.4 10.1 75.3 10.4 75.2 10.7C75.1 11 75.1 11.8 75.1 12.9V15Z" fill="white"/>
|
13 |
+
<path d="M81.3 8.5V9.89996H80.1V12.5C80.1 13 80.1 13.3 80.1 13.4C80.1 13.5 80.2 13.6 80.3 13.6C80.4 13.7 80.5 13.7 80.6 13.7C80.8 13.7 81 13.6 81.3 13.5L81.4 14.8C81 15 80.5 15.1 80 15.1C79.7 15.1 79.4 15 79.2 14.9C79 14.8 78.8 14.7 78.7 14.5C78.6 14.3 78.5 14.1 78.5 13.8C78.5 13.6 78.4 13.2 78.4 12.6V9.79999H77.6V8.39996H78.4V7.09998L80.1 6.09998V8.39996H81.3V8.5Z" fill="white"/>
|
14 |
+
<path d="M82.5 7.69995V6.09998H84.2V7.69995H82.5ZM82.5 15V8.5H84.2V15H82.5Z" fill="white"/>
|
15 |
+
<path d="M85.9 15V6H87.6V15H85.9Z" fill="white"/>
|
16 |
+
<path d="M91.1 6.09998V9.39996C91.7 8.79996 92.3 8.39996 93.1 8.39996C93.5 8.39996 93.9 8.49998 94.2 8.59998C94.5 8.69998 94.8 8.89995 94.9 9.19995C95 9.49995 95.2 9.7 95.2 10C95.2 10.3 95.3 10.7 95.3 11.3V15.1H93.6V11.6C93.6 10.9 93.6 10.5 93.5 10.3C93.4 10.1 93.3 9.99996 93.2 9.89996C93 9.79996 92.8 9.69995 92.6 9.69995C92.3 9.69995 92.1 9.79996 91.8 9.89996C91.6 9.99996 91.4 10.2 91.3 10.5C91.2 10.8 91.1 11.2 91.1 11.7V15H89.4V6H91.1V6.09998Z" fill="white"/>
|
17 |
+
<path d="M98.4 10.5L96.8 10.2C97 9.59995 97.3 9.09999 97.7 8.79999C98.1 8.49999 98.8 8.29999 99.6 8.29999C100.4 8.29999 100.9 8.39998 101.3 8.59998C101.7 8.79998 101.9 8.99999 102.1 9.29999C102.3 9.59999 102.3 10.1 102.3 10.8V12.8C102.3 13.4 102.3 13.8 102.4 14.1C102.5 14.4 102.6 14.7 102.7 15H101C101 14.9 100.9 14.7 100.8 14.5C100.8 14.4 100.8 14.3 100.7 14.3C100.4 14.6 100.1 14.8 99.8 14.9C99.5 15 99.1 15.1 98.7 15.1C98 15.1 97.5 14.9 97.1 14.6C96.7 14.2 96.5 13.8 96.5 13.2C96.5 12.8 96.6 12.5 96.8 12.2C97 11.9 97.2 11.7 97.5 11.5C97.8 11.3 98.3 11.2 98.9 11.1C99.7 10.9 100.3 10.8 100.6 10.7V10.6C100.6 10.3 100.5 9.99996 100.4 9.89996C100.2 9.79996 99.9 9.69995 99.5 9.69995C99.2 9.69995 99 9.79996 98.8 9.89996C98.6 9.99996 98.5 10.2 98.4 10.5ZM100.7 11.9C100.5 12 100.1 12.1 99.7 12.2C99.2 12.3 98.9 12.4 98.8 12.5C98.6 12.7 98.5 12.9 98.5 13.1C98.5 13.3 98.6 13.5 98.8 13.7C99 13.9 99.2 14 99.5 14C99.8 14 100.1 13.9 100.4 13.7C100.6 13.5 100.7 13.4 100.8 13.1C100.8 13 100.9 12.7 100.9 12.3V11.9H100.7Z" fill="white"/>
|
18 |
+
<path d="M105.7 15H104V8.5H105.6V9.39996C105.9 8.99996 106.1 8.7 106.3 8.5C106.5 8.4 106.8 8.29999 107 8.29999C107.4 8.29999 107.8 8.39998 108.1 8.59998L107.6 10.1C107.3 9.89998 107 9.79999 106.8 9.79999C106.6 9.79999 106.4 9.9 106.2 10C106 10.1 105.9 10.4 105.8 10.7C105.7 11 105.7 11.8 105.7 12.9V15Z" fill="white"/>
|
19 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
20 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
21 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
22 |
+
</g>
|
23 |
+
</svg>
|
images/share_icons/Linkedin_Share/pt_PT_share.svg
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
<svg width="88" height="23" viewBox="0 0 88 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="88" height="23">
|
3 |
-
<path d="M84.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H84.1C86.2 23 87.9 21.3 87.9 19.2V3.79999C87.8 1.69999 86.1 0 84.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="88" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M31 16V7H33.9C35 7 35.7 6.99998 36.1 7.09998C36.6 7.19998 37 7.5 37.4 8C37.7 8.5 37.9 8.99995 37.9 9.69995C37.9 10.3 37.8 10.7 37.6 11.1C37.4 11.5 37.1 11.8 36.8 12C36.5 12.2 36.2 12.4 35.9 12.4C35.5 12.5 34.8 12.5 34 12.5H32.8V15.9H31V16ZM32.8 8.59998V11.1H33.8C34.5 11.1 35 11.1 35.2 11C35.4 10.9 35.6 10.8 35.8 10.6C35.9 10.4 36 10.2 36 9.89996C36 9.59996 35.9 9.29998 35.7 9.09998C35.5 8.89998 35.3 8.79995 35 8.69995C34.8 8.69995 34.3 8.59998 33.7 8.59998H32.8Z" fill="white"/>
|
8 |
-
<path d="M40.6 11.5L39 11.2C39.2 10.6 39.5 10.1 39.9 9.79999C40.3 9.49999 41 9.29999 41.8 9.29999C42.6 9.29999 43.1 9.39998 43.5 9.59998C43.9 9.79998 44.1 9.99999 44.3 10.3C44.5 10.6 44.5 11.1 44.5 11.8V13.8C44.5 14.4 44.5 14.8 44.6 15.1C44.7 15.4 44.8 15.7 44.9 16H43.2C43.2 15.9 43.1 15.7 43 15.5C43 15.4 43 15.3 42.9 15.3C42.6 15.6 42.3 15.8 42 15.9C41.7 16 41.3 16.1 40.9 16.1C40.2 16.1 39.7 15.9 39.3 15.6C38.9 15.2 38.7 14.8 38.7 14.2C38.7 13.8 38.8 13.5 39 13.2C39.2 12.9 39.4 12.7 39.7 12.5C40 12.3 40.5 12.2 41.1 12.1C41.9 11.9 42.5 11.8 42.8 11.7V11.6C42.8 11.3 42.7 11 42.6 10.9C42.4 10.8 42.1 10.7 41.7 10.7C41.4 10.7 41.2 10.8 41 10.9C40.8 11 40.7 11.2 40.6 11.5ZM42.9 12.9C42.7 13 42.3 13.1 41.9 13.2C41.4 13.3 41.1 13.4 41 13.5C40.8 13.7 40.7 13.9 40.7 14.1C40.7 14.3 40.8 14.5 41 14.7C41.2 14.9 41.4 15 41.7 15C42 15 42.3 14.9 42.6 14.7C42.8 14.5 42.9 14.4 43 14.1C43 14 43.1 13.7 43.1 13.3V12.9H42.9Z" fill="white"/>
|
9 |
-
<path d="M47.9 16H46.2V9.5H47.8V10.4C48.1 9.99996 48.3 9.7 48.5 9.5C48.7 9.4 49 9.29999 49.2 9.29999C49.6 9.29999 50 9.39998 50.3 9.59998L49.8 11.1C49.5 10.9 49.2 10.8 49 10.8C48.8 10.8 48.6 10.9 48.4 11C48.2 11.1 48.1 11.4 48 11.7C47.9 12 47.9 12.8 47.9 13.9V16Z" fill="white"/>
|
10 |
-
<path d="M54.2 9.5V10.9H53V13.5C53 14 53 14.3 53 14.4C53 14.5 53.1 14.6 53.2 14.6C53.3 14.7 53.4 14.7 53.5 14.7C53.7 14.7 53.9 14.6 54.2 14.5L54.3 15.8C53.9 16 53.4 16.1 52.9 16.1C52.6 16.1 52.3 16 52.1 15.9C51.9 15.8 51.7 15.7 51.6 15.5C51.5 15.3 51.4 15.1 51.4 14.8C51.4 14.6 51.3 14.2 51.3 13.6V10.8H50.5V9.39996H51.3V8.09998L53 7.09998V9.39996H54.2V9.5Z" fill="white"/>
|
11 |
-
<path d="M55.3 8.69995V7.09998H57V8.69995H55.3ZM55.3 16V9.5H57V16H55.3Z" fill="white"/>
|
12 |
-
<path d="M58.8 16V7H60.5V16H58.8Z" fill="white"/>
|
13 |
-
<path d="M64 7.09998V10.4C64.6 9.79996 65.2 9.39996 66 9.39996C66.4 9.39996 66.8 9.49998 67.1 9.59998C67.4 9.69998 67.7 9.89995 67.8 10.2C67.9 10.5 68.1 10.7 68.1 11C68.1 11.3 68.2 11.7 68.2 12.3V16.1H66.5V12.6C66.5 11.9 66.5 11.5 66.4 11.3C66.3 11.1 66.2 11 66.1 10.9C65.9 10.8 65.7 10.7 65.5 10.7C65.2 10.7 65 10.8 64.7 10.9C64.5 11 64.3 11.2 64.2 11.5C64.1 11.8 64 12.2 64 12.7V16H62.3V7H64V7.09998Z" fill="white"/>
|
14 |
-
<path d="M71.2 11.5L69.6 11.2C69.8 10.6 70.1 10.1 70.5 9.79999C70.9 9.49999 71.6 9.29999 72.4 9.29999C73.2 9.29999 73.7 9.39998 74.1 9.59998C74.5 9.79998 74.7 9.99999 74.9 10.3C75.1 10.6 75.1 11.1 75.1 11.8V13.8C75.1 14.4 75.1 14.8 75.2 15.1C75.3 15.4 75.4 15.7 75.5 16H73.8C73.8 15.9 73.7 15.7 73.6 15.5C73.6 15.4 73.6 15.3 73.5 15.3C73.2 15.6 72.9 15.8 72.6 15.9C72.3 16 71.9 16.1 71.5 16.1C70.8 16.1 70.3 15.9 69.9 15.6C69.5 15.2 69.3 14.8 69.3 14.2C69.3 13.8 69.4 13.5 69.6 13.2C69.8 12.9 70 12.7 70.3 12.5C70.6 12.3 71.1 12.2 71.7 12.1C72.5 11.9 73.1 11.8 73.4 11.7V11.6C73.4 11.3 73.3 11 73.2 10.9C73 10.8 72.7 10.7 72.3 10.7C72 10.7 71.8 10.8 71.6 10.9C71.4 11 71.3 11.2 71.2 11.5ZM73.5 12.9C73.3 13 72.9 13.1 72.5 13.2C72 13.3 71.7 13.4 71.6 13.5C71.4 13.7 71.3 13.9 71.3 14.1C71.3 14.3 71.4 14.5 71.6 14.7C71.8 14.9 72 15 72.3 15C72.6 15 72.9 14.9 73.2 14.7C73.4 14.5 73.5 14.4 73.6 14.1C73.6 14 73.7 13.7 73.7 13.3V12.9H73.5Z" fill="white"/>
|
15 |
-
<path d="M78.6 16H76.9V9.5H78.5V10.4C78.8 9.99996 79 9.7 79.2 9.5C79.4 9.4 79.7 9.29999 79.9 9.29999C80.3 9.29999 80.7 9.39998 81 9.59998L80.5 11.1C80.2 10.9 79.9 10.8 79.7 10.8C79.5 10.8 79.3 10.9 79.1 11C78.9 11.1 78.8 11.4 78.7 11.7C78.6 12 78.6 12.8 78.6 13.9V16Z" fill="white"/>
|
16 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
17 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
18 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
19 |
-
</g>
|
20 |
-
</svg>
|
1 |
+
<svg width="88" height="23" viewBox="0 0 88 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="88" height="23">
|
3 |
+
<path d="M84.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H84.1C86.2 23 87.9 21.3 87.9 19.2V3.79999C87.8 1.69999 86.1 0 84.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="88" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M31 16V7H33.9C35 7 35.7 6.99998 36.1 7.09998C36.6 7.19998 37 7.5 37.4 8C37.7 8.5 37.9 8.99995 37.9 9.69995C37.9 10.3 37.8 10.7 37.6 11.1C37.4 11.5 37.1 11.8 36.8 12C36.5 12.2 36.2 12.4 35.9 12.4C35.5 12.5 34.8 12.5 34 12.5H32.8V15.9H31V16ZM32.8 8.59998V11.1H33.8C34.5 11.1 35 11.1 35.2 11C35.4 10.9 35.6 10.8 35.8 10.6C35.9 10.4 36 10.2 36 9.89996C36 9.59996 35.9 9.29998 35.7 9.09998C35.5 8.89998 35.3 8.79995 35 8.69995C34.8 8.69995 34.3 8.59998 33.7 8.59998H32.8Z" fill="white"/>
|
8 |
+
<path d="M40.6 11.5L39 11.2C39.2 10.6 39.5 10.1 39.9 9.79999C40.3 9.49999 41 9.29999 41.8 9.29999C42.6 9.29999 43.1 9.39998 43.5 9.59998C43.9 9.79998 44.1 9.99999 44.3 10.3C44.5 10.6 44.5 11.1 44.5 11.8V13.8C44.5 14.4 44.5 14.8 44.6 15.1C44.7 15.4 44.8 15.7 44.9 16H43.2C43.2 15.9 43.1 15.7 43 15.5C43 15.4 43 15.3 42.9 15.3C42.6 15.6 42.3 15.8 42 15.9C41.7 16 41.3 16.1 40.9 16.1C40.2 16.1 39.7 15.9 39.3 15.6C38.9 15.2 38.7 14.8 38.7 14.2C38.7 13.8 38.8 13.5 39 13.2C39.2 12.9 39.4 12.7 39.7 12.5C40 12.3 40.5 12.2 41.1 12.1C41.9 11.9 42.5 11.8 42.8 11.7V11.6C42.8 11.3 42.7 11 42.6 10.9C42.4 10.8 42.1 10.7 41.7 10.7C41.4 10.7 41.2 10.8 41 10.9C40.8 11 40.7 11.2 40.6 11.5ZM42.9 12.9C42.7 13 42.3 13.1 41.9 13.2C41.4 13.3 41.1 13.4 41 13.5C40.8 13.7 40.7 13.9 40.7 14.1C40.7 14.3 40.8 14.5 41 14.7C41.2 14.9 41.4 15 41.7 15C42 15 42.3 14.9 42.6 14.7C42.8 14.5 42.9 14.4 43 14.1C43 14 43.1 13.7 43.1 13.3V12.9H42.9Z" fill="white"/>
|
9 |
+
<path d="M47.9 16H46.2V9.5H47.8V10.4C48.1 9.99996 48.3 9.7 48.5 9.5C48.7 9.4 49 9.29999 49.2 9.29999C49.6 9.29999 50 9.39998 50.3 9.59998L49.8 11.1C49.5 10.9 49.2 10.8 49 10.8C48.8 10.8 48.6 10.9 48.4 11C48.2 11.1 48.1 11.4 48 11.7C47.9 12 47.9 12.8 47.9 13.9V16Z" fill="white"/>
|
10 |
+
<path d="M54.2 9.5V10.9H53V13.5C53 14 53 14.3 53 14.4C53 14.5 53.1 14.6 53.2 14.6C53.3 14.7 53.4 14.7 53.5 14.7C53.7 14.7 53.9 14.6 54.2 14.5L54.3 15.8C53.9 16 53.4 16.1 52.9 16.1C52.6 16.1 52.3 16 52.1 15.9C51.9 15.8 51.7 15.7 51.6 15.5C51.5 15.3 51.4 15.1 51.4 14.8C51.4 14.6 51.3 14.2 51.3 13.6V10.8H50.5V9.39996H51.3V8.09998L53 7.09998V9.39996H54.2V9.5Z" fill="white"/>
|
11 |
+
<path d="M55.3 8.69995V7.09998H57V8.69995H55.3ZM55.3 16V9.5H57V16H55.3Z" fill="white"/>
|
12 |
+
<path d="M58.8 16V7H60.5V16H58.8Z" fill="white"/>
|
13 |
+
<path d="M64 7.09998V10.4C64.6 9.79996 65.2 9.39996 66 9.39996C66.4 9.39996 66.8 9.49998 67.1 9.59998C67.4 9.69998 67.7 9.89995 67.8 10.2C67.9 10.5 68.1 10.7 68.1 11C68.1 11.3 68.2 11.7 68.2 12.3V16.1H66.5V12.6C66.5 11.9 66.5 11.5 66.4 11.3C66.3 11.1 66.2 11 66.1 10.9C65.9 10.8 65.7 10.7 65.5 10.7C65.2 10.7 65 10.8 64.7 10.9C64.5 11 64.3 11.2 64.2 11.5C64.1 11.8 64 12.2 64 12.7V16H62.3V7H64V7.09998Z" fill="white"/>
|
14 |
+
<path d="M71.2 11.5L69.6 11.2C69.8 10.6 70.1 10.1 70.5 9.79999C70.9 9.49999 71.6 9.29999 72.4 9.29999C73.2 9.29999 73.7 9.39998 74.1 9.59998C74.5 9.79998 74.7 9.99999 74.9 10.3C75.1 10.6 75.1 11.1 75.1 11.8V13.8C75.1 14.4 75.1 14.8 75.2 15.1C75.3 15.4 75.4 15.7 75.5 16H73.8C73.8 15.9 73.7 15.7 73.6 15.5C73.6 15.4 73.6 15.3 73.5 15.3C73.2 15.6 72.9 15.8 72.6 15.9C72.3 16 71.9 16.1 71.5 16.1C70.8 16.1 70.3 15.9 69.9 15.6C69.5 15.2 69.3 14.8 69.3 14.2C69.3 13.8 69.4 13.5 69.6 13.2C69.8 12.9 70 12.7 70.3 12.5C70.6 12.3 71.1 12.2 71.7 12.1C72.5 11.9 73.1 11.8 73.4 11.7V11.6C73.4 11.3 73.3 11 73.2 10.9C73 10.8 72.7 10.7 72.3 10.7C72 10.7 71.8 10.8 71.6 10.9C71.4 11 71.3 11.2 71.2 11.5ZM73.5 12.9C73.3 13 72.9 13.1 72.5 13.2C72 13.3 71.7 13.4 71.6 13.5C71.4 13.7 71.3 13.9 71.3 14.1C71.3 14.3 71.4 14.5 71.6 14.7C71.8 14.9 72 15 72.3 15C72.6 15 72.9 14.9 73.2 14.7C73.4 14.5 73.5 14.4 73.6 14.1C73.6 14 73.7 13.7 73.7 13.3V12.9H73.5Z" fill="white"/>
|
15 |
+
<path d="M78.6 16H76.9V9.5H78.5V10.4C78.8 9.99996 79 9.7 79.2 9.5C79.4 9.4 79.7 9.29999 79.9 9.29999C80.3 9.29999 80.7 9.39998 81 9.59998L80.5 11.1C80.2 10.9 79.9 10.8 79.7 10.8C79.5 10.8 79.3 10.9 79.1 11C78.9 11.1 78.8 11.4 78.7 11.7C78.6 12 78.6 12.8 78.6 13.9V16Z" fill="white"/>
|
16 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
17 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
18 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
19 |
+
</g>
|
20 |
+
</svg>
|
images/share_icons/Linkedin_Share/ru_RU_share.svg
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
-
<svg width="111" height="23" viewBox="0 0 111 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="111" height="23">
|
3 |
-
<path d="M107.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H107.1C109.2 23 110.9 21.3 110.9 19.2V3.79999C110.8 1.69999 109.1 0 107.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="111" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M31 6H38.1V15H36.3V7.5H32.8V15H31V6Z" fill="white"/>
|
8 |
-
<path d="M39.6 11.6C39.6 11 39.7 10.5 40 9.90002C40.3 9.40002 40.7 9.00001 41.2 8.70001C41.7 8.40001 42.3 8.29999 42.9 8.29999C43.9 8.29999 44.7 8.59999 45.3 9.29999C45.9 9.89999 46.2 10.7 46.2 11.7C46.2 12.7 45.9 13.5 45.2 14.1C44.6 14.7 43.8 15.1 42.8 15.1C42.2 15.1 41.6 15 41.1 14.7C40.6 14.4 40.1 14 39.9 13.5C39.7 13 39.6 12.3 39.6 11.6ZM41.4 11.7C41.4 12.3 41.6 12.8 41.9 13.2C42.2 13.5 42.6 13.7 43 13.7C43.4 13.7 43.8 13.5 44.1 13.2C44.4 12.9 44.6 12.4 44.6 11.7C44.6 11.1 44.4 10.6 44.1 10.2C43.8 9.90001 43.4 9.70001 43 9.70001C42.6 9.70001 42.2 9.90001 41.9 10.2C41.6 10.5 41.4 11 41.4 11.7Z" fill="white"/>
|
9 |
-
<path d="M52.8 14.9H47.9V16.6H46.5V13.5H47.2C47.5 13.2 47.7 12.7 47.9 12C48.1 11.3 48.2 10.1 48.2 8.40002H53.4V13.5H54.1V16.6H52.7V14.9H52.8ZM51.8 13.5V9.79999H49.7C49.6 11.6 49.3 12.8 48.8 13.5H51.8Z" fill="white"/>
|
10 |
-
<path d="M59.2 12.9L60.9 13.2C60.7 13.8 60.3 14.3 59.9 14.6C59.5 14.9 58.8 15.1 58.1 15.1C57 15.1 56.1 14.7 55.6 14C55.2 13.4 55 12.7 55 11.8C55 10.7 55.3 9.89999 55.8 9.29999C56.4 8.69999 57.1 8.40002 57.9 8.40002C58.9 8.40002 59.6 8.70002 60.2 9.40002C60.8 10 61 11 61 12.3H56.7C56.7 12.8 56.9 13.2 57.1 13.5C57.4 13.8 57.7 13.9 58.1 13.9C58.4 13.9 58.6 13.8 58.8 13.7C58.9 13.4 59.1 13.2 59.2 12.9ZM59.3 11.1C59.3 10.6 59.2 10.2 58.9 10C58.6 9.8 58.4 9.59998 58 9.59998C57.6 9.59998 57.3 9.7 57.1 10C56.9 10.3 56.7 10.6 56.7 11.1H59.3Z" fill="white"/>
|
11 |
-
<path d="M62.8 8.40002H68.6V14.9H66.9V9.79999H64.6V12.7C64.6 13.4 64.5 14 64.3 14.3C64.1 14.6 63.9 14.8 63.7 14.9C63.5 15 63.2 15 62.7 15C62.4 15 62.1 15 61.6 14.9V13.6C61.6 13.6 61.7 13.6 61.9 13.6C62.1 13.6 62.2 13.6 62.3 13.6C62.5 13.6 62.7 13.5 62.7 13.4C62.8 13.2 62.8 12.8 62.8 12.1V8.40002Z" fill="white"/>
|
12 |
-
<path d="M70.3 8.40002H72V12.5L74.6 8.40002H76.3V14.9H74.6V10.7L71.9 14.9H70.2V8.40002H70.3Z" fill="white"/>
|
13 |
-
<path d="M77.3 8.40002H83.2V9.79999H81.1V14.9H79.4V9.79999H77.3V8.40002Z" fill="white"/>
|
14 |
-
<path d="M84.2 8.40002H85.9V11.1H87.6C88.3 11.1 88.8 11.1 89.2 11.2C89.6 11.3 89.9 11.5 90.1 11.8C90.3 12.1 90.5 12.5 90.5 12.9C90.5 13.5 90.3 14 89.9 14.3C89.5 14.6 88.8 14.8 88 14.8H84.3V8.40002H84.2ZM85.9 13.8H87.5C88 13.8 88.3 13.7 88.5 13.6C88.7 13.5 88.7 13.2 88.7 13C88.7 12.7 88.6 12.5 88.3 12.4C88.1 12.3 87.6 12.2 87 12.2H85.9V13.8Z" fill="white"/>
|
15 |
-
<path d="M97.5 10.4L95.8 10.7C95.7 10.4 95.6 10.1 95.4 9.90002C95.2 9.70002 94.9 9.59998 94.6 9.59998C94.2 9.59998 93.8 9.7 93.6 10C93.4 10.3 93.2 10.8 93.2 11.5C93.2 12.3 93.3 12.8 93.6 13.1C93.9 13.4 94.2 13.6 94.6 13.6C94.9 13.6 95.2 13.5 95.4 13.3C95.6 13.1 95.8 12.8 95.8 12.3L97.5 12.6C97.3 13.4 97 14 96.5 14.4C96 14.8 95.3 15 94.5 15C93.6 15 92.8 14.7 92.2 14.1C91.6 13.5 91.4 12.7 91.4 11.6C91.4 10.5 91.7 9.69998 92.2 9.09998C92.8 8.49998 93.5 8.20001 94.5 8.20001C95.3 8.20001 95.9 8.40001 96.4 8.70001C97 9.10001 97.3 9.70002 97.5 10.4Z" fill="white"/>
|
16 |
-
<path d="M104.4 8.40002V14.9H102.7V12.2H102.5C102.1 12.2 101.9 12.2 101.7 12.3C101.5 12.4 101.3 12.6 101.1 12.9L101 13L99.9 14.8H97.9L99.1 12.9C99.5 12.4 99.8 12.1 100.1 12C99.6 12 99.2 11.8 98.9 11.5C98.6 11.2 98.5 10.7 98.5 10.2C98.5 9.80001 98.6 9.39998 98.8 9.09998C99 8.79998 99.3 8.6 99.6 8.5C99.9 8.4 100.4 8.29999 101.1 8.29999H104.4V8.40002ZM102.7 9.5H101.5C101 9.5 100.7 9.60001 100.5 9.70001C100.3 9.80001 100.2 9.99999 100.2 10.3C100.2 10.6 100.3 10.8 100.5 10.9C100.7 11 101 11.1 101.5 11.1H102.6V9.5H102.7Z" fill="white"/>
|
17 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
18 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
19 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
20 |
-
</g>
|
21 |
-
</svg>
|
1 |
+
<svg width="111" height="23" viewBox="0 0 111 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="111" height="23">
|
3 |
+
<path d="M107.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H107.1C109.2 23 110.9 21.3 110.9 19.2V3.79999C110.8 1.69999 109.1 0 107.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="111" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M31 6H38.1V15H36.3V7.5H32.8V15H31V6Z" fill="white"/>
|
8 |
+
<path d="M39.6 11.6C39.6 11 39.7 10.5 40 9.90002C40.3 9.40002 40.7 9.00001 41.2 8.70001C41.7 8.40001 42.3 8.29999 42.9 8.29999C43.9 8.29999 44.7 8.59999 45.3 9.29999C45.9 9.89999 46.2 10.7 46.2 11.7C46.2 12.7 45.9 13.5 45.2 14.1C44.6 14.7 43.8 15.1 42.8 15.1C42.2 15.1 41.6 15 41.1 14.7C40.6 14.4 40.1 14 39.9 13.5C39.7 13 39.6 12.3 39.6 11.6ZM41.4 11.7C41.4 12.3 41.6 12.8 41.9 13.2C42.2 13.5 42.6 13.7 43 13.7C43.4 13.7 43.8 13.5 44.1 13.2C44.4 12.9 44.6 12.4 44.6 11.7C44.6 11.1 44.4 10.6 44.1 10.2C43.8 9.90001 43.4 9.70001 43 9.70001C42.6 9.70001 42.2 9.90001 41.9 10.2C41.6 10.5 41.4 11 41.4 11.7Z" fill="white"/>
|
9 |
+
<path d="M52.8 14.9H47.9V16.6H46.5V13.5H47.2C47.5 13.2 47.7 12.7 47.9 12C48.1 11.3 48.2 10.1 48.2 8.40002H53.4V13.5H54.1V16.6H52.7V14.9H52.8ZM51.8 13.5V9.79999H49.7C49.6 11.6 49.3 12.8 48.8 13.5H51.8Z" fill="white"/>
|
10 |
+
<path d="M59.2 12.9L60.9 13.2C60.7 13.8 60.3 14.3 59.9 14.6C59.5 14.9 58.8 15.1 58.1 15.1C57 15.1 56.1 14.7 55.6 14C55.2 13.4 55 12.7 55 11.8C55 10.7 55.3 9.89999 55.8 9.29999C56.4 8.69999 57.1 8.40002 57.9 8.40002C58.9 8.40002 59.6 8.70002 60.2 9.40002C60.8 10 61 11 61 12.3H56.7C56.7 12.8 56.9 13.2 57.1 13.5C57.4 13.8 57.7 13.9 58.1 13.9C58.4 13.9 58.6 13.8 58.8 13.7C58.9 13.4 59.1 13.2 59.2 12.9ZM59.3 11.1C59.3 10.6 59.2 10.2 58.9 10C58.6 9.8 58.4 9.59998 58 9.59998C57.6 9.59998 57.3 9.7 57.1 10C56.9 10.3 56.7 10.6 56.7 11.1H59.3Z" fill="white"/>
|
11 |
+
<path d="M62.8 8.40002H68.6V14.9H66.9V9.79999H64.6V12.7C64.6 13.4 64.5 14 64.3 14.3C64.1 14.6 63.9 14.8 63.7 14.9C63.5 15 63.2 15 62.7 15C62.4 15 62.1 15 61.6 14.9V13.6C61.6 13.6 61.7 13.6 61.9 13.6C62.1 13.6 62.2 13.6 62.3 13.6C62.5 13.6 62.7 13.5 62.7 13.4C62.8 13.2 62.8 12.8 62.8 12.1V8.40002Z" fill="white"/>
|
12 |
+
<path d="M70.3 8.40002H72V12.5L74.6 8.40002H76.3V14.9H74.6V10.7L71.9 14.9H70.2V8.40002H70.3Z" fill="white"/>
|
13 |
+
<path d="M77.3 8.40002H83.2V9.79999H81.1V14.9H79.4V9.79999H77.3V8.40002Z" fill="white"/>
|
14 |
+
<path d="M84.2 8.40002H85.9V11.1H87.6C88.3 11.1 88.8 11.1 89.2 11.2C89.6 11.3 89.9 11.5 90.1 11.8C90.3 12.1 90.5 12.5 90.5 12.9C90.5 13.5 90.3 14 89.9 14.3C89.5 14.6 88.8 14.8 88 14.8H84.3V8.40002H84.2ZM85.9 13.8H87.5C88 13.8 88.3 13.7 88.5 13.6C88.7 13.5 88.7 13.2 88.7 13C88.7 12.7 88.6 12.5 88.3 12.4C88.1 12.3 87.6 12.2 87 12.2H85.9V13.8Z" fill="white"/>
|
15 |
+
<path d="M97.5 10.4L95.8 10.7C95.7 10.4 95.6 10.1 95.4 9.90002C95.2 9.70002 94.9 9.59998 94.6 9.59998C94.2 9.59998 93.8 9.7 93.6 10C93.4 10.3 93.2 10.8 93.2 11.5C93.2 12.3 93.3 12.8 93.6 13.1C93.9 13.4 94.2 13.6 94.6 13.6C94.9 13.6 95.2 13.5 95.4 13.3C95.6 13.1 95.8 12.8 95.8 12.3L97.5 12.6C97.3 13.4 97 14 96.5 14.4C96 14.8 95.3 15 94.5 15C93.6 15 92.8 14.7 92.2 14.1C91.6 13.5 91.4 12.7 91.4 11.6C91.4 10.5 91.7 9.69998 92.2 9.09998C92.8 8.49998 93.5 8.20001 94.5 8.20001C95.3 8.20001 95.9 8.40001 96.4 8.70001C97 9.10001 97.3 9.70002 97.5 10.4Z" fill="white"/>
|
16 |
+
<path d="M104.4 8.40002V14.9H102.7V12.2H102.5C102.1 12.2 101.9 12.2 101.7 12.3C101.5 12.4 101.3 12.6 101.1 12.9L101 13L99.9 14.8H97.9L99.1 12.9C99.5 12.4 99.8 12.1 100.1 12C99.6 12 99.2 11.8 98.9 11.5C98.6 11.2 98.5 10.7 98.5 10.2C98.5 9.80001 98.6 9.39998 98.8 9.09998C99 8.79998 99.3 8.6 99.6 8.5C99.9 8.4 100.4 8.29999 101.1 8.29999H104.4V8.40002ZM102.7 9.5H101.5C101 9.5 100.7 9.60001 100.5 9.70001C100.3 9.80001 100.2 9.99999 100.2 10.3C100.2 10.6 100.3 10.8 100.5 10.9C100.7 11 101 11.1 101.5 11.1H102.6V9.5H102.7Z" fill="white"/>
|
17 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
18 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
19 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
20 |
+
</g>
|
21 |
+
</svg>
|
images/share_icons/Linkedin_Share/sv_SE_share.svg
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
<svg width="63" height="23" viewBox="0 0 63 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="63" height="23">
|
3 |
-
<path d="M59.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H59.1C61.2 23 62.9 21.3 62.9 19.2V3.79999C62.8 1.69999 61.1 0 59.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="63" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M31 7.09998H34.3C35 7.09998 35.6 7.19999 36 7.29999C36.5 7.49999 37 7.69998 37.4 8.09998C37.8 8.49998 38.1 8.99998 38.3 9.59998C38.5 10.2 38.6 10.9 38.6 11.7C38.6 12.4 38.5 13.1 38.3 13.6C38.1 14.3 37.8 14.8 37.3 15.2C37 15.5 36.6 15.7 36 15.9C35.6 16 35.1 16.1 34.4 16.1H31V7.09998ZM32.8 8.59998V14.5H34.2C34.7 14.5 35.1 14.5 35.3 14.4C35.6 14.3 35.8 14.2 36 14C36.2 13.8 36.4 13.5 36.5 13.1C36.6 12.7 36.7 12.2 36.7 11.5C36.7 10.8 36.6 10.3 36.5 9.89996C36.4 9.49996 36.2 9.2 36 9C35.8 8.8 35.5 8.69998 35.2 8.59998C34.9 8.49998 34.5 8.5 33.7 8.5H32.8V8.59998Z" fill="white"/>
|
8 |
-
<path d="M43.8 14L45.5 14.3C45.3 14.9 44.9 15.4 44.5 15.7C44.1 16 43.4 16.2 42.7 16.2C41.6 16.2 40.7 15.8 40.2 15.1C39.8 14.5 39.6 13.8 39.6 12.9C39.6 11.8 39.9 11 40.4 10.4C41 9.79996 41.7 9.5 42.5 9.5C43.5 9.5 44.2 9.8 44.8 10.5C45.4 11.1 45.6 12.1 45.6 13.4H41.3C41.3 13.9 41.5 14.3 41.7 14.6C42 14.9 42.3 15 42.7 15C43 15 43.2 14.9 43.4 14.8C43.6 14.5 43.7 14.3 43.8 14ZM43.9 12.2C43.9 11.7 43.8 11.3 43.5 11.1C43.2 10.9 43 10.7 42.6 10.7C42.2 10.7 41.9 10.8 41.7 11.1C41.5 11.4 41.3 11.7 41.3 12.2H43.9Z" fill="white"/>
|
9 |
-
<path d="M47 16V7H48.7V16H47Z" fill="white"/>
|
10 |
-
<path d="M51.8 11.5L50.2 11.2C50.4 10.6 50.7 10.1 51.1 9.79999C51.5 9.49999 52.2 9.29999 53 9.29999C53.8 9.29999 54.3 9.39998 54.7 9.59998C55.1 9.79998 55.3 9.99999 55.5 10.3C55.7 10.6 55.7 11.1 55.7 11.8V13.8C55.7 14.4 55.7 14.8 55.8 15.1C55.9 15.4 56 15.7 56.1 16H54.4C54.4 15.9 54.3 15.7 54.2 15.5C54.2 15.4 54.2 15.3 54.1 15.3C53.8 15.6 53.5 15.8 53.2 15.9C52.9 16 52.5 16.1 52.1 16.1C51.4 16.1 50.9 15.9 50.5 15.6C50.1 15.2 49.9 14.8 49.9 14.2C49.9 13.8 50 13.5 50.2 13.2C50.4 12.9 50.6 12.7 50.9 12.5C51.2 12.3 51.7 12.2 52.3 12.1C53.1 11.9 53.7 11.8 54 11.7V11.6C54 11.3 53.9 11 53.8 10.9C53.6 10.8 53.3 10.7 52.9 10.7C52.6 10.7 52.4 10.8 52.2 10.9C52 11 51.9 11.2 51.8 11.5ZM54.1 12.9C53.9 13 53.5 13.1 53.1 13.2C52.6 13.3 52.3 13.4 52.2 13.5C52 13.7 51.9 13.9 51.9 14.1C51.9 14.3 52 14.5 52.2 14.7C52.4 14.9 52.6 15 52.9 15C53.2 15 53.5 14.9 53.8 14.7C54 14.5 54.1 14.4 54.2 14.1C54.2 14 54.3 13.7 54.3 13.3V12.9H54.1Z" fill="white"/>
|
11 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
12 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
13 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
14 |
-
</g>
|
15 |
-
</svg>
|
1 |
+
<svg width="63" height="23" viewBox="0 0 63 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="63" height="23">
|
3 |
+
<path d="M59.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H59.1C61.2 23 62.9 21.3 62.9 19.2V3.79999C62.8 1.69999 61.1 0 59.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="63" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M31 7.09998H34.3C35 7.09998 35.6 7.19999 36 7.29999C36.5 7.49999 37 7.69998 37.4 8.09998C37.8 8.49998 38.1 8.99998 38.3 9.59998C38.5 10.2 38.6 10.9 38.6 11.7C38.6 12.4 38.5 13.1 38.3 13.6C38.1 14.3 37.8 14.8 37.3 15.2C37 15.5 36.6 15.7 36 15.9C35.6 16 35.1 16.1 34.4 16.1H31V7.09998ZM32.8 8.59998V14.5H34.2C34.7 14.5 35.1 14.5 35.3 14.4C35.6 14.3 35.8 14.2 36 14C36.2 13.8 36.4 13.5 36.5 13.1C36.6 12.7 36.7 12.2 36.7 11.5C36.7 10.8 36.6 10.3 36.5 9.89996C36.4 9.49996 36.2 9.2 36 9C35.8 8.8 35.5 8.69998 35.2 8.59998C34.9 8.49998 34.5 8.5 33.7 8.5H32.8V8.59998Z" fill="white"/>
|
8 |
+
<path d="M43.8 14L45.5 14.3C45.3 14.9 44.9 15.4 44.5 15.7C44.1 16 43.4 16.2 42.7 16.2C41.6 16.2 40.7 15.8 40.2 15.1C39.8 14.5 39.6 13.8 39.6 12.9C39.6 11.8 39.9 11 40.4 10.4C41 9.79996 41.7 9.5 42.5 9.5C43.5 9.5 44.2 9.8 44.8 10.5C45.4 11.1 45.6 12.1 45.6 13.4H41.3C41.3 13.9 41.5 14.3 41.7 14.6C42 14.9 42.3 15 42.7 15C43 15 43.2 14.9 43.4 14.8C43.6 14.5 43.7 14.3 43.8 14ZM43.9 12.2C43.9 11.7 43.8 11.3 43.5 11.1C43.2 10.9 43 10.7 42.6 10.7C42.2 10.7 41.9 10.8 41.7 11.1C41.5 11.4 41.3 11.7 41.3 12.2H43.9Z" fill="white"/>
|
9 |
+
<path d="M47 16V7H48.7V16H47Z" fill="white"/>
|
10 |
+
<path d="M51.8 11.5L50.2 11.2C50.4 10.6 50.7 10.1 51.1 9.79999C51.5 9.49999 52.2 9.29999 53 9.29999C53.8 9.29999 54.3 9.39998 54.7 9.59998C55.1 9.79998 55.3 9.99999 55.5 10.3C55.7 10.6 55.7 11.1 55.7 11.8V13.8C55.7 14.4 55.7 14.8 55.8 15.1C55.9 15.4 56 15.7 56.1 16H54.4C54.4 15.9 54.3 15.7 54.2 15.5C54.2 15.4 54.2 15.3 54.1 15.3C53.8 15.6 53.5 15.8 53.2 15.9C52.9 16 52.5 16.1 52.1 16.1C51.4 16.1 50.9 15.9 50.5 15.6C50.1 15.2 49.9 14.8 49.9 14.2C49.9 13.8 50 13.5 50.2 13.2C50.4 12.9 50.6 12.7 50.9 12.5C51.2 12.3 51.7 12.2 52.3 12.1C53.1 11.9 53.7 11.8 54 11.7V11.6C54 11.3 53.9 11 53.8 10.9C53.6 10.8 53.3 10.7 52.9 10.7C52.6 10.7 52.4 10.8 52.2 10.9C52 11 51.9 11.2 51.8 11.5ZM54.1 12.9C53.9 13 53.5 13.1 53.1 13.2C52.6 13.3 52.3 13.4 52.2 13.5C52 13.7 51.9 13.9 51.9 14.1C51.9 14.3 52 14.5 52.2 14.7C52.4 14.9 52.6 15 52.9 15C53.2 15 53.5 14.9 53.8 14.7C54 14.5 54.1 14.4 54.2 14.1C54.2 14 54.3 13.7 54.3 13.3V12.9H54.1Z" fill="white"/>
|
11 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
12 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
13 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
14 |
+
</g>
|
15 |
+
</svg>
|
images/share_icons/Linkedin_Share/tr_TR_share.svg
CHANGED
@@ -1,19 +1,19 @@
|
|
1 |
-
<svg width="86" height="23" viewBox="0 0 86 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="86" height="23">
|
3 |
-
<path d="M82.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H82.1C84.2 23 85.9 21.3 85.9 19.2V3.79999C85.8 1.69999 84.1 0 82.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="86" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M31 15V6H33.9C35 6 35.7 5.99998 36.1 6.09998C36.6 6.19998 37 6.5 37.4 7C37.7 7.5 37.9 7.99995 37.9 8.69995C37.9 9.29995 37.8 9.69998 37.6 10.1C37.4 10.5 37.1 10.8 36.8 11C36.5 11.2 36.2 11.4 35.9 11.4C35.5 11.5 34.8 11.5 34 11.5H32.8V14.9H31V15ZM32.8 7.59998V10.1H33.8C34.5 10.1 35 10.1 35.2 10C35.4 9.9 35.6 9.79998 35.8 9.59998C35.9 9.39998 36 9.19996 36 8.89996C36 8.59996 35.9 8.29998 35.7 8.09998C35.5 7.89998 35.3 7.79995 35 7.69995C34.8 7.69995 34.3 7.59998 33.7 7.59998H32.8Z" fill="white"/>
|
8 |
-
<path d="M40.6 10.5L39 10.2C39.2 9.59995 39.5 9.09999 39.9 8.79999C40.3 8.49999 41 8.29999 41.8 8.29999C42.6 8.29999 43.1 8.39998 43.5 8.59998C43.9 8.79998 44.1 8.99999 44.3 9.29999C44.5 9.59999 44.5 10.1 44.5 10.8V12.8C44.5 13.4 44.5 13.8 44.6 14.1C44.7 14.4 44.8 14.7 44.9 15H43.2C43.2 14.9 43.1 14.7 43 14.5C43 14.4 43 14.3 42.9 14.3C42.6 14.6 42.3 14.8 42 14.9C41.7 15 41.3 15.1 40.9 15.1C40.2 15.1 39.7 14.9 39.3 14.6C38.9 14.2 38.7 13.8 38.7 13.2C38.7 12.8 38.8 12.5 39 12.2C39.2 11.9 39.4 11.7 39.7 11.5C40 11.3 40.5 11.2 41.1 11.1C41.9 10.9 42.5 10.8 42.8 10.7V10.6C42.8 10.3 42.7 9.99996 42.6 9.89996C42.4 9.79996 42.1 9.69995 41.7 9.69995C41.4 9.69995 41.2 9.79996 41 9.89996C40.8 9.99996 40.7 10.2 40.6 10.5ZM42.9 11.9C42.7 12 42.3 12.1 41.9 12.2C41.4 12.3 41.1 12.4 41 12.5C40.8 12.7 40.7 12.9 40.7 13.1C40.7 13.3 40.8 13.5 41 13.7C41.2 13.9 41.4 14 41.7 14C42 14 42.3 13.9 42.6 13.7C42.8 13.5 42.9 13.4 43 13.1C43 13 43.1 12.7 43.1 12.3V11.9H42.9Z" fill="white"/>
|
9 |
-
<path d="M45.5 8.5H47.3L48.9 13.1L50.4 8.5H52.2L49.9 14.7L49.5 15.8C49.3 16.2 49.2 16.5 49.1 16.7C49 16.9 48.8 17.1 48.6 17.2C48.4 17.3 48.2 17.4 47.9 17.5C47.6 17.6 47.3 17.6 47 17.6C46.7 17.6 46.3 17.6 46 17.5L45.8 16.2C46.1 16.3 46.3 16.3 46.5 16.3C46.9 16.3 47.2 16.2 47.4 15.9C47.6 15.7 47.7 15.4 47.8 15L45.5 8.5Z" fill="white"/>
|
10 |
-
<path d="M53.3 15V6H55V15H53.3Z" fill="white"/>
|
11 |
-
<path d="M58 10.5L56.4 10.2C56.6 9.59995 56.9 9.09999 57.3 8.79999C57.7 8.49999 58.4 8.29999 59.2 8.29999C60 8.29999 60.5 8.39998 60.9 8.59998C61.3 8.79998 61.5 8.99999 61.7 9.29999C61.9 9.59999 61.9 10.1 61.9 10.8V12.8C61.9 13.4 61.9 13.8 62 14.1C62.1 14.4 62.2 14.7 62.3 15H60.7C60.7 14.9 60.6 14.7 60.5 14.5C60.5 14.4 60.5 14.3 60.4 14.3C60.1 14.6 59.8 14.8 59.5 14.9C59.2 15 58.8 15.1 58.4 15.1C57.7 15.1 57.2 14.9 56.8 14.6C56.4 14.2 56.2 13.8 56.2 13.2C56.2 12.8 56.3 12.5 56.5 12.2C56.7 11.9 56.9 11.7 57.2 11.5C57.5 11.3 58 11.2 58.6 11.1C59.4 10.9 60 10.8 60.3 10.7V10.6C60.3 10.3 60.2 9.99996 60.1 9.89996C59.9 9.79996 59.6 9.69995 59.2 9.69995C58.9 9.69995 58.7 9.79996 58.5 9.89996C58.3 9.99996 58.1 10.2 58 10.5ZM60.3 11.9C60.1 12 59.7 12.1 59.3 12.2C58.8 12.3 58.5 12.4 58.4 12.5C58.2 12.7 58.1 12.9 58.1 13.1C58.1 13.3 58.2 13.5 58.4 13.7C58.6 13.9 58.8 14 59.1 14C59.4 14 59.7 13.9 60 13.7C60.2 13.5 60.3 13.4 60.4 13.1C60.4 13 60.5 12.7 60.5 12.3V11.9H60.3Z" fill="white"/>
|
12 |
-
<path d="M63.1 13.2L64.8 12.9C64.9 13.2 65 13.5 65.2 13.7C65.4 13.9 65.7 14 66.1 14C66.5 14 66.9 13.9 67.1 13.8C67.3 13.7 67.3 13.5 67.3 13.3C67.3 13.2 67.3 13.1 67.2 13C67.1 12.9 66.9 12.8 66.6 12.8C65.2 12.5 64.3 12.2 64 12C63.5 11.6 63.2 11.2 63.2 10.5C63.2 9.9 63.4 9.49998 63.9 9.09998C64.4 8.69998 65 8.5 66 8.5C66.9 8.5 67.5 8.59996 68 8.89996C68.5 9.19996 68.7 9.59995 68.9 10.2L67.3 10.5C67.2 10.2 67.1 10.1 66.9 9.89996C66.7 9.79996 66.4 9.69995 66.1 9.69995C65.6 9.69995 65.3 9.79996 65.1 9.89996C65 9.99996 64.9 10.1 64.9 10.2C64.9 10.3 65 10.4 65.1 10.5C65.3 10.6 65.8 10.8 66.7 11C67.6 11.2 68.3 11.5 68.6 11.8C69 12.1 69.1 12.5 69.1 13.1C69.1 13.7 68.9 14.2 68.4 14.6C67.9 15 67.2 15.2 66.2 15.2C65.3 15.2 64.6 15 64.1 14.7C63.6 14.3 63.3 13.8 63.1 13.2ZM64.7 17.5V16.8C65.1 16.8 65.5 16.9 65.9 16.9C66.3 16.9 66.5 16.8 66.7 16.7C66.8 16.6 66.9 16.5 66.9 16.3C66.9 16.2 66.8 16 66.7 15.9C66.6 15.8 66.4 15.7 66.1 15.7C65.8 15.7 65.6 15.7 65.3 15.8L65.5 15.2C65.8 15.1 66.2 15 66.5 15C67 15 67.4 15.1 67.7 15.3C68 15.5 68.1 15.8 68.1 16.1C68.1 16.5 68 16.8 67.7 17C67.3 17.3 66.7 17.5 66 17.5C65.4 17.6 65 17.6 64.7 17.5Z" fill="white"/>
|
13 |
-
<path d="M70.7 15V8.5H72.4V15H70.7Z" fill="white"/>
|
14 |
-
<path d="M80.1 15H78.4V11.7C78.4 11 78.4 10.5 78.3 10.3C78.2 10.1 78.1 9.89999 77.9 9.79999C77.7 9.69999 77.5 9.59998 77.3 9.59998C77 9.59998 76.7 9.69999 76.5 9.79999C76.3 9.89999 76.1 10.2 76 10.4C75.9 10.7 75.9 11.2 75.9 11.9V14.8H74.2V8.29999H75.8V9.29999C76.4 8.59999 77.1 8.19995 77.9 8.19995C78.3 8.19995 78.6 8.29996 78.9 8.39996C79.2 8.49996 79.5 8.69996 79.6 8.89996C79.7 9.09996 79.9 9.39998 79.9 9.59998C80 9.89998 80 10.3 80 10.8V15H80.1Z" fill="white"/>
|
15 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
16 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
17 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
18 |
-
</g>
|
19 |
-
</svg>
|
1 |
+
<svg width="86" height="23" viewBox="0 0 86 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="86" height="23">
|
3 |
+
<path d="M82.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H82.1C84.2 23 85.9 21.3 85.9 19.2V3.79999C85.8 1.69999 84.1 0 82.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="86" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M31 15V6H33.9C35 6 35.7 5.99998 36.1 6.09998C36.6 6.19998 37 6.5 37.4 7C37.7 7.5 37.9 7.99995 37.9 8.69995C37.9 9.29995 37.8 9.69998 37.6 10.1C37.4 10.5 37.1 10.8 36.8 11C36.5 11.2 36.2 11.4 35.9 11.4C35.5 11.5 34.8 11.5 34 11.5H32.8V14.9H31V15ZM32.8 7.59998V10.1H33.8C34.5 10.1 35 10.1 35.2 10C35.4 9.9 35.6 9.79998 35.8 9.59998C35.9 9.39998 36 9.19996 36 8.89996C36 8.59996 35.9 8.29998 35.7 8.09998C35.5 7.89998 35.3 7.79995 35 7.69995C34.8 7.69995 34.3 7.59998 33.7 7.59998H32.8Z" fill="white"/>
|
8 |
+
<path d="M40.6 10.5L39 10.2C39.2 9.59995 39.5 9.09999 39.9 8.79999C40.3 8.49999 41 8.29999 41.8 8.29999C42.6 8.29999 43.1 8.39998 43.5 8.59998C43.9 8.79998 44.1 8.99999 44.3 9.29999C44.5 9.59999 44.5 10.1 44.5 10.8V12.8C44.5 13.4 44.5 13.8 44.6 14.1C44.7 14.4 44.8 14.7 44.9 15H43.2C43.2 14.9 43.1 14.7 43 14.5C43 14.4 43 14.3 42.9 14.3C42.6 14.6 42.3 14.8 42 14.9C41.7 15 41.3 15.1 40.9 15.1C40.2 15.1 39.7 14.9 39.3 14.6C38.9 14.2 38.7 13.8 38.7 13.2C38.7 12.8 38.8 12.5 39 12.2C39.2 11.9 39.4 11.7 39.7 11.5C40 11.3 40.5 11.2 41.1 11.1C41.9 10.9 42.5 10.8 42.8 10.7V10.6C42.8 10.3 42.7 9.99996 42.6 9.89996C42.4 9.79996 42.1 9.69995 41.7 9.69995C41.4 9.69995 41.2 9.79996 41 9.89996C40.8 9.99996 40.7 10.2 40.6 10.5ZM42.9 11.9C42.7 12 42.3 12.1 41.9 12.2C41.4 12.3 41.1 12.4 41 12.5C40.8 12.7 40.7 12.9 40.7 13.1C40.7 13.3 40.8 13.5 41 13.7C41.2 13.9 41.4 14 41.7 14C42 14 42.3 13.9 42.6 13.7C42.8 13.5 42.9 13.4 43 13.1C43 13 43.1 12.7 43.1 12.3V11.9H42.9Z" fill="white"/>
|
9 |
+
<path d="M45.5 8.5H47.3L48.9 13.1L50.4 8.5H52.2L49.9 14.7L49.5 15.8C49.3 16.2 49.2 16.5 49.1 16.7C49 16.9 48.8 17.1 48.6 17.2C48.4 17.3 48.2 17.4 47.9 17.5C47.6 17.6 47.3 17.6 47 17.6C46.7 17.6 46.3 17.6 46 17.5L45.8 16.2C46.1 16.3 46.3 16.3 46.5 16.3C46.9 16.3 47.2 16.2 47.4 15.9C47.6 15.7 47.7 15.4 47.8 15L45.5 8.5Z" fill="white"/>
|
10 |
+
<path d="M53.3 15V6H55V15H53.3Z" fill="white"/>
|
11 |
+
<path d="M58 10.5L56.4 10.2C56.6 9.59995 56.9 9.09999 57.3 8.79999C57.7 8.49999 58.4 8.29999 59.2 8.29999C60 8.29999 60.5 8.39998 60.9 8.59998C61.3 8.79998 61.5 8.99999 61.7 9.29999C61.9 9.59999 61.9 10.1 61.9 10.8V12.8C61.9 13.4 61.9 13.8 62 14.1C62.1 14.4 62.2 14.7 62.3 15H60.7C60.7 14.9 60.6 14.7 60.5 14.5C60.5 14.4 60.5 14.3 60.4 14.3C60.1 14.6 59.8 14.8 59.5 14.9C59.2 15 58.8 15.1 58.4 15.1C57.7 15.1 57.2 14.9 56.8 14.6C56.4 14.2 56.2 13.8 56.2 13.2C56.2 12.8 56.3 12.5 56.5 12.2C56.7 11.9 56.9 11.7 57.2 11.5C57.5 11.3 58 11.2 58.6 11.1C59.4 10.9 60 10.8 60.3 10.7V10.6C60.3 10.3 60.2 9.99996 60.1 9.89996C59.9 9.79996 59.6 9.69995 59.2 9.69995C58.9 9.69995 58.7 9.79996 58.5 9.89996C58.3 9.99996 58.1 10.2 58 10.5ZM60.3 11.9C60.1 12 59.7 12.1 59.3 12.2C58.8 12.3 58.5 12.4 58.4 12.5C58.2 12.7 58.1 12.9 58.1 13.1C58.1 13.3 58.2 13.5 58.4 13.7C58.6 13.9 58.8 14 59.1 14C59.4 14 59.7 13.9 60 13.7C60.2 13.5 60.3 13.4 60.4 13.1C60.4 13 60.5 12.7 60.5 12.3V11.9H60.3Z" fill="white"/>
|
12 |
+
<path d="M63.1 13.2L64.8 12.9C64.9 13.2 65 13.5 65.2 13.7C65.4 13.9 65.7 14 66.1 14C66.5 14 66.9 13.9 67.1 13.8C67.3 13.7 67.3 13.5 67.3 13.3C67.3 13.2 67.3 13.1 67.2 13C67.1 12.9 66.9 12.8 66.6 12.8C65.2 12.5 64.3 12.2 64 12C63.5 11.6 63.2 11.2 63.2 10.5C63.2 9.9 63.4 9.49998 63.9 9.09998C64.4 8.69998 65 8.5 66 8.5C66.9 8.5 67.5 8.59996 68 8.89996C68.5 9.19996 68.7 9.59995 68.9 10.2L67.3 10.5C67.2 10.2 67.1 10.1 66.9 9.89996C66.7 9.79996 66.4 9.69995 66.1 9.69995C65.6 9.69995 65.3 9.79996 65.1 9.89996C65 9.99996 64.9 10.1 64.9 10.2C64.9 10.3 65 10.4 65.1 10.5C65.3 10.6 65.8 10.8 66.7 11C67.6 11.2 68.3 11.5 68.6 11.8C69 12.1 69.1 12.5 69.1 13.1C69.1 13.7 68.9 14.2 68.4 14.6C67.9 15 67.2 15.2 66.2 15.2C65.3 15.2 64.6 15 64.1 14.7C63.6 14.3 63.3 13.8 63.1 13.2ZM64.7 17.5V16.8C65.1 16.8 65.5 16.9 65.9 16.9C66.3 16.9 66.5 16.8 66.7 16.7C66.8 16.6 66.9 16.5 66.9 16.3C66.9 16.2 66.8 16 66.7 15.9C66.6 15.8 66.4 15.7 66.1 15.7C65.8 15.7 65.6 15.7 65.3 15.8L65.5 15.2C65.8 15.1 66.2 15 66.5 15C67 15 67.4 15.1 67.7 15.3C68 15.5 68.1 15.8 68.1 16.1C68.1 16.5 68 16.8 67.7 17C67.3 17.3 66.7 17.5 66 17.5C65.4 17.6 65 17.6 64.7 17.5Z" fill="white"/>
|
13 |
+
<path d="M70.7 15V8.5H72.4V15H70.7Z" fill="white"/>
|
14 |
+
<path d="M80.1 15H78.4V11.7C78.4 11 78.4 10.5 78.3 10.3C78.2 10.1 78.1 9.89999 77.9 9.79999C77.7 9.69999 77.5 9.59998 77.3 9.59998C77 9.59998 76.7 9.69999 76.5 9.79999C76.3 9.89999 76.1 10.2 76 10.4C75.9 10.7 75.9 11.2 75.9 11.9V14.8H74.2V8.29999H75.8V9.29999C76.4 8.59999 77.1 8.19995 77.9 8.19995C78.3 8.19995 78.6 8.29996 78.9 8.39996C79.2 8.49996 79.5 8.69996 79.6 8.89996C79.7 9.09996 79.9 9.39998 79.9 9.59998C80 9.89998 80 10.3 80 10.8V15H80.1Z" fill="white"/>
|
15 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
16 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
17 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
18 |
+
</g>
|
19 |
+
</svg>
|
images/share_icons/Linkedin_Share/uk_UA_share.svg
CHANGED
@@ -1,19 +1,19 @@
|
|
1 |
-
<svg width="100" height="23" viewBox="0 0 100 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="100" height="23">
|
3 |
-
<path d="M96.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H96.1C98.2 23 99.9 21.3 99.9 19.2V3.79999C99.8 1.69999 98.1 0 96.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="100" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M31 6H38.1V15H36.3V7.5H32.8V15H31V6Z" fill="white"/>
|
8 |
-
<path d="M39.6 11.6C39.6 11 39.7 10.5 40 9.90002C40.3 9.40002 40.7 9.00001 41.2 8.70001C41.7 8.40001 42.3 8.29999 42.9 8.29999C43.9 8.29999 44.7 8.59999 45.3 9.29999C45.9 9.89999 46.2 10.7 46.2 11.7C46.2 12.7 45.9 13.5 45.2 14.1C44.6 14.7 43.8 15.1 42.8 15.1C42.2 15.1 41.6 15 41.1 14.7C40.6 14.4 40.1 14 39.9 13.5C39.7 13 39.6 12.3 39.6 11.6ZM41.4 11.7C41.4 12.3 41.6 12.8 41.9 13.2C42.2 13.5 42.6 13.7 43 13.7C43.4 13.7 43.8 13.5 44.1 13.2C44.4 12.9 44.6 12.4 44.6 11.7C44.6 11.1 44.4 10.6 44.1 10.2C43.8 9.90001 43.4 9.70001 43 9.70001C42.6 9.70001 42.2 9.90001 41.9 10.2C41.6 10.5 41.4 11 41.4 11.7Z" fill="white"/>
|
9 |
-
<path d="M47.6 8.40002H49.2V13.5H51.2V8.40002H52.8V13.5H54.8V8.40002H56.4V14.9H47.7V8.40002H47.6Z" fill="white"/>
|
10 |
-
<path d="M58 8.40002H59.7V12.5L62.3 8.40002H64V14.9H62.3V10.7L59.6 14.9H57.9V8.40002H58Z" fill="white"/>
|
11 |
-
<path d="M65.7 8.40002H67.3V9.40002C67.5 9.10002 67.8 8.79998 68.1 8.59998C68.5 8.39998 68.8 8.29999 69.3 8.29999C70.1 8.29999 70.7 8.60001 71.2 9.20001C71.7 9.80001 72 10.6 72 11.7C72 12.8 71.7 13.6 71.2 14.2C70.7 14.8 70 15.1 69.3 15.1C68.9 15.1 68.6 15 68.3 14.9C68 14.8 67.7 14.5 67.4 14.2V17.5H65.7V8.40002ZM67.4 11.6C67.4 12.3 67.5 12.9 67.8 13.2C68.1 13.5 68.4 13.7 68.9 13.7C69.3 13.7 69.6 13.5 69.9 13.2C70.2 12.9 70.3 12.4 70.3 11.6C70.3 10.9 70.2 10.4 69.9 10.1C69.6 9.79998 69.3 9.59998 68.9 9.59998C68.5 9.59998 68.1 9.79998 67.9 10.1C67.7 10.4 67.4 10.9 67.4 11.6Z" fill="white"/>
|
12 |
-
<path d="M73.4 8.40002H75.1V12.5L77.7 8.40002H79.4V14.9H77.7V10.7L75 14.9H73.3V8.40002H73.4Z" fill="white"/>
|
13 |
-
<path d="M80.3 8.40002H86.2V9.79999H84.1V14.9H82.4V9.79999H80.3V8.40002Z" fill="white"/>
|
14 |
-
<path d="M87.2 8.40002H88.9V12.5L91.5 8.40002H93.2V14.9H91.5V10.7L88.8 14.9H87.1V8.40002H87.2Z" fill="white"/>
|
15 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
16 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
17 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
18 |
-
</g>
|
19 |
-
</svg>
|
1 |
+
<svg width="100" height="23" viewBox="0 0 100 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="100" height="23">
|
3 |
+
<path d="M96.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H96.1C98.2 23 99.9 21.3 99.9 19.2V3.79999C99.8 1.69999 98.1 0 96.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="100" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M31 6H38.1V15H36.3V7.5H32.8V15H31V6Z" fill="white"/>
|
8 |
+
<path d="M39.6 11.6C39.6 11 39.7 10.5 40 9.90002C40.3 9.40002 40.7 9.00001 41.2 8.70001C41.7 8.40001 42.3 8.29999 42.9 8.29999C43.9 8.29999 44.7 8.59999 45.3 9.29999C45.9 9.89999 46.2 10.7 46.2 11.7C46.2 12.7 45.9 13.5 45.2 14.1C44.6 14.7 43.8 15.1 42.8 15.1C42.2 15.1 41.6 15 41.1 14.7C40.6 14.4 40.1 14 39.9 13.5C39.7 13 39.6 12.3 39.6 11.6ZM41.4 11.7C41.4 12.3 41.6 12.8 41.9 13.2C42.2 13.5 42.6 13.7 43 13.7C43.4 13.7 43.8 13.5 44.1 13.2C44.4 12.9 44.6 12.4 44.6 11.7C44.6 11.1 44.4 10.6 44.1 10.2C43.8 9.90001 43.4 9.70001 43 9.70001C42.6 9.70001 42.2 9.90001 41.9 10.2C41.6 10.5 41.4 11 41.4 11.7Z" fill="white"/>
|
9 |
+
<path d="M47.6 8.40002H49.2V13.5H51.2V8.40002H52.8V13.5H54.8V8.40002H56.4V14.9H47.7V8.40002H47.6Z" fill="white"/>
|
10 |
+
<path d="M58 8.40002H59.7V12.5L62.3 8.40002H64V14.9H62.3V10.7L59.6 14.9H57.9V8.40002H58Z" fill="white"/>
|
11 |
+
<path d="M65.7 8.40002H67.3V9.40002C67.5 9.10002 67.8 8.79998 68.1 8.59998C68.5 8.39998 68.8 8.29999 69.3 8.29999C70.1 8.29999 70.7 8.60001 71.2 9.20001C71.7 9.80001 72 10.6 72 11.7C72 12.8 71.7 13.6 71.2 14.2C70.7 14.8 70 15.1 69.3 15.1C68.9 15.1 68.6 15 68.3 14.9C68 14.8 67.7 14.5 67.4 14.2V17.5H65.7V8.40002ZM67.4 11.6C67.4 12.3 67.5 12.9 67.8 13.2C68.1 13.5 68.4 13.7 68.9 13.7C69.3 13.7 69.6 13.5 69.9 13.2C70.2 12.9 70.3 12.4 70.3 11.6C70.3 10.9 70.2 10.4 69.9 10.1C69.6 9.79998 69.3 9.59998 68.9 9.59998C68.5 9.59998 68.1 9.79998 67.9 10.1C67.7 10.4 67.4 10.9 67.4 11.6Z" fill="white"/>
|
12 |
+
<path d="M73.4 8.40002H75.1V12.5L77.7 8.40002H79.4V14.9H77.7V10.7L75 14.9H73.3V8.40002H73.4Z" fill="white"/>
|
13 |
+
<path d="M80.3 8.40002H86.2V9.79999H84.1V14.9H82.4V9.79999H80.3V8.40002Z" fill="white"/>
|
14 |
+
<path d="M87.2 8.40002H88.9V12.5L91.5 8.40002H93.2V14.9H91.5V10.7L88.8 14.9H87.1V8.40002H87.2Z" fill="white"/>
|
15 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
16 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
17 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
18 |
+
</g>
|
19 |
+
</svg>
|
images/share_icons/Linkedin_Share/vi_VN_share.svg
CHANGED
@@ -1,17 +1,17 @@
|
|
1 |
-
<svg width="81" height="23" viewBox="0 0 81 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="81" height="23">
|
3 |
-
<path d="M77.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H77.1C79.2 23 80.9 21.3 80.9 19.2V3.79999C80.8 1.69999 79.1 0 77.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="81" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M36.7 12.9L38.5 13.5C38.2 14.5 37.8 15.2 37.2 15.7C36.6 16.2 35.8 16.4 34.8 16.4C33.6 16.4 32.6 16 31.9 15.2C31.1 14.4 30.8 13.3 30.8 11.9C30.8 10.4 31.2 9.19996 32 8.39996C32.8 7.59996 33.8 7.20001 35 7.20001C36.1 7.20001 37 7.50001 37.7 8.20001C38.1 8.60001 38.4 9.09996 38.6 9.89996L36.8 10.3C36.7 9.79999 36.5 9.50001 36.1 9.20001C35.8 8.90001 35.4 8.79999 34.9 8.79999C34.2 8.79999 33.7 9 33.3 9.5C32.9 10 32.7 10.7 32.7 11.8C32.7 12.9 32.9 13.7 33.3 14.2C33.7 14.7 34.2 14.9 34.9 14.9C35.4 14.9 35.8 14.7 36.1 14.4C36.3 14.1 36.6 13.6 36.7 12.9Z" fill="white"/>
|
8 |
-
<path d="M41.7 7.29999V10.6C42.3 9.99998 42.9 9.59998 43.7 9.59998C44.1 9.59998 44.5 9.69999 44.8 9.79999C45.1 9.89999 45.4 10.1 45.5 10.4C45.6 10.7 45.8 10.9 45.8 11.2C45.8 11.5 45.9 11.9 45.9 12.5V16.3H44.2V12.9C44.2 12.2 44.2 11.8 44.1 11.6C44 11.4 43.9 11.3 43.8 11.2C43.6 11.1 43.4 11 43.2 11C42.9 11 42.7 11.1 42.4 11.2C42.2 11.3 42 11.5 41.9 11.8C41.8 12.1 41.7 12.5 41.7 13V16.3H40V7.29999H41.7Z" fill="white"/>
|
9 |
-
<path d="M47.7 8.89996V7.29999H49.4V8.89996H47.7ZM47.7 16.2V9.70001H49.4V16.2H47.7Z" fill="white"/>
|
10 |
-
<path d="M52.4 11.7L50.8 11.4C51 10.8 51.3 10.3 51.7 10C52.1 9.7 52.8 9.5 53.6 9.5C54.4 9.5 54.9 9.59999 55.3 9.79999C55.7 9.99999 55.9 10.2 56.1 10.5C56.3 10.8 56.3 11.3 56.3 12V14C56.3 14.6 56.3 15 56.4 15.3C56.5 15.6 56.6 15.9 56.7 16.2H55C55 16.1 54.9 15.9 54.8 15.7C54.8 15.6 54.8 15.5 54.7 15.5C54.4 15.8 54.1 16 53.8 16.1C53.5 16.2 53.1 16.3 52.7 16.3C52 16.3 51.5 16.1 51.1 15.8C50.7 15.4 50.5 15 50.5 14.4C50.5 14 50.6 13.7 50.8 13.4C51 13.1 51.2 12.9 51.5 12.7C51.8 12.5 52.3 12.4 52.9 12.3C53.7 12.1 54.3 12 54.6 11.9V11.7C54.6 11.4 54.5 11.1 54.4 11C54.2 10.9 53.9 10.8 53.5 10.8C53.2 10.8 53 10.9 52.8 11C52.6 11.1 52.5 11.4 52.4 11.7ZM54.7 13.1C54.5 13.2 54.1 13.3 53.7 13.4C53.2 13.5 52.9 13.6 52.8 13.7C52.6 13.9 52.5 14.1 52.5 14.3C52.5 14.5 52.6 14.7 52.8 14.9C53 15.1 53.2 15.2 53.5 15.2C53.8 15.2 54.1 15.1 54.4 14.9C54.6 14.7 54.7 14.6 54.8 14.3C54.8 14.2 54.9 13.9 54.9 13.5V13.1H54.7Z" fill="white"/>
|
11 |
-
<path d="M61 14.4L62.7 14.1C62.8 14.4 62.9 14.7 63.1 14.9C63.3 15.1 63.6 15.2 64 15.2C64.4 15.2 64.8 15.1 65 15C65.2 14.9 65.2 14.7 65.2 14.5C65.2 14.4 65.2 14.3 65.1 14.2C65 14.1 64.8 14 64.5 14C63.1 13.7 62.2 13.4 61.9 13.2C61.4 12.8 61.1 12.4 61.1 11.7C61.1 11.1 61.3 10.7 61.8 10.3C62.3 9.89999 62.9 9.70001 63.9 9.70001C64.8 9.70001 65.4 9.79998 65.9 10.1C66.4 10.4 66.6 10.8 66.8 11.4L65.2 11.7C65.1 11.4 65 11.3 64.8 11.1C64.6 11 64.3 10.9 64 10.9C63.5 10.9 63.2 11 63 11.1C62.9 11.2 62.8 11.3 62.8 11.4C62.8 11.5 62.9 11.6 63 11.7C63.2 11.8 63.7 12 64.6 12.2C65.5 12.4 66.2 12.7 66.5 13C66.9 13.3 67 13.7 67 14.3C67 14.9 66.8 15.4 66.3 15.8C65.8 16.2 65.1 16.4 64.1 16.4C63.2 16.4 62.5 16.2 62 15.9C61.5 15.5 61.2 15 61 14.4Z" fill="white"/>
|
12 |
-
<path d="M72.3 14.2L74 14.5C73.8 15.1 73.4 15.6 73 15.9C72.6 16.2 71.9 16.4 71.2 16.4C70.1 16.4 69.2 16 68.7 15.3C68.3 14.7 68.1 14 68.1 13.1C68.1 12 68.4 11.2 68.9 10.6C69.5 9.99998 70.2 9.70001 71 9.70001C72 9.70001 72.7 10 73.3 10.7C73.9 11.3 74.1 12.3 74.1 13.6H69.8C69.8 14.1 70 14.5 70.2 14.8C70.5 15.1 70.8 15.2 71.2 15.2C71.5 15.2 71.7 15.1 71.9 15C72.1 14.7 72.2 14.5 72.3 14.2ZM71.1 8.20001C71.3 8.10001 71.4 8.09996 71.4 7.89996C71.4 7.79996 71.3 7.70001 71.2 7.70001C71 7.60001 70.8 7.59998 70.4 7.59998C70.3 7.59998 70.1 7.59998 69.8 7.59998L69.7 7C69.9 7 70.2 7 70.6 7C71.1 7 71.5 7.10001 71.8 7.20001C72.2 7.40001 72.3 7.59996 72.3 7.89996C72.3 8.29996 71.9 8.60001 71.2 8.70001V9H70.7V8.29999C70.9 8.19999 71.1 8.20001 71.1 8.20001ZM72.4 12.4C72.4 11.9 72.3 11.5 72 11.3C71.7 11.1 71.5 10.9 71.1 10.9C70.7 10.9 70.4 11 70.2 11.3C70 11.6 69.8 11.9 69.8 12.4H72.4Z" fill="white"/>
|
13 |
-
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
14 |
-
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
15 |
-
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
16 |
-
</g>
|
17 |
-
</svg>
|
1 |
+
<svg width="81" height="23" viewBox="0 0 81 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="81" height="23">
|
3 |
+
<path d="M77.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H77.1C79.2 23 80.9 21.3 80.9 19.2V3.79999C80.8 1.69999 79.1 0 77.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="81" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M36.7 12.9L38.5 13.5C38.2 14.5 37.8 15.2 37.2 15.7C36.6 16.2 35.8 16.4 34.8 16.4C33.6 16.4 32.6 16 31.9 15.2C31.1 14.4 30.8 13.3 30.8 11.9C30.8 10.4 31.2 9.19996 32 8.39996C32.8 7.59996 33.8 7.20001 35 7.20001C36.1 7.20001 37 7.50001 37.7 8.20001C38.1 8.60001 38.4 9.09996 38.6 9.89996L36.8 10.3C36.7 9.79999 36.5 9.50001 36.1 9.20001C35.8 8.90001 35.4 8.79999 34.9 8.79999C34.2 8.79999 33.7 9 33.3 9.5C32.9 10 32.7 10.7 32.7 11.8C32.7 12.9 32.9 13.7 33.3 14.2C33.7 14.7 34.2 14.9 34.9 14.9C35.4 14.9 35.8 14.7 36.1 14.4C36.3 14.1 36.6 13.6 36.7 12.9Z" fill="white"/>
|
8 |
+
<path d="M41.7 7.29999V10.6C42.3 9.99998 42.9 9.59998 43.7 9.59998C44.1 9.59998 44.5 9.69999 44.8 9.79999C45.1 9.89999 45.4 10.1 45.5 10.4C45.6 10.7 45.8 10.9 45.8 11.2C45.8 11.5 45.9 11.9 45.9 12.5V16.3H44.2V12.9C44.2 12.2 44.2 11.8 44.1 11.6C44 11.4 43.9 11.3 43.8 11.2C43.6 11.1 43.4 11 43.2 11C42.9 11 42.7 11.1 42.4 11.2C42.2 11.3 42 11.5 41.9 11.8C41.8 12.1 41.7 12.5 41.7 13V16.3H40V7.29999H41.7Z" fill="white"/>
|
9 |
+
<path d="M47.7 8.89996V7.29999H49.4V8.89996H47.7ZM47.7 16.2V9.70001H49.4V16.2H47.7Z" fill="white"/>
|
10 |
+
<path d="M52.4 11.7L50.8 11.4C51 10.8 51.3 10.3 51.7 10C52.1 9.7 52.8 9.5 53.6 9.5C54.4 9.5 54.9 9.59999 55.3 9.79999C55.7 9.99999 55.9 10.2 56.1 10.5C56.3 10.8 56.3 11.3 56.3 12V14C56.3 14.6 56.3 15 56.4 15.3C56.5 15.6 56.6 15.9 56.7 16.2H55C55 16.1 54.9 15.9 54.8 15.7C54.8 15.6 54.8 15.5 54.7 15.5C54.4 15.8 54.1 16 53.8 16.1C53.5 16.2 53.1 16.3 52.7 16.3C52 16.3 51.5 16.1 51.1 15.8C50.7 15.4 50.5 15 50.5 14.4C50.5 14 50.6 13.7 50.8 13.4C51 13.1 51.2 12.9 51.5 12.7C51.8 12.5 52.3 12.4 52.9 12.3C53.7 12.1 54.3 12 54.6 11.9V11.7C54.6 11.4 54.5 11.1 54.4 11C54.2 10.9 53.9 10.8 53.5 10.8C53.2 10.8 53 10.9 52.8 11C52.6 11.1 52.5 11.4 52.4 11.7ZM54.7 13.1C54.5 13.2 54.1 13.3 53.7 13.4C53.2 13.5 52.9 13.6 52.8 13.7C52.6 13.9 52.5 14.1 52.5 14.3C52.5 14.5 52.6 14.7 52.8 14.9C53 15.1 53.2 15.2 53.5 15.2C53.8 15.2 54.1 15.1 54.4 14.9C54.6 14.7 54.7 14.6 54.8 14.3C54.8 14.2 54.9 13.9 54.9 13.5V13.1H54.7Z" fill="white"/>
|
11 |
+
<path d="M61 14.4L62.7 14.1C62.8 14.4 62.9 14.7 63.1 14.9C63.3 15.1 63.6 15.2 64 15.2C64.4 15.2 64.8 15.1 65 15C65.2 14.9 65.2 14.7 65.2 14.5C65.2 14.4 65.2 14.3 65.1 14.2C65 14.1 64.8 14 64.5 14C63.1 13.7 62.2 13.4 61.9 13.2C61.4 12.8 61.1 12.4 61.1 11.7C61.1 11.1 61.3 10.7 61.8 10.3C62.3 9.89999 62.9 9.70001 63.9 9.70001C64.8 9.70001 65.4 9.79998 65.9 10.1C66.4 10.4 66.6 10.8 66.8 11.4L65.2 11.7C65.1 11.4 65 11.3 64.8 11.1C64.6 11 64.3 10.9 64 10.9C63.5 10.9 63.2 11 63 11.1C62.9 11.2 62.8 11.3 62.8 11.4C62.8 11.5 62.9 11.6 63 11.7C63.2 11.8 63.7 12 64.6 12.2C65.5 12.4 66.2 12.7 66.5 13C66.9 13.3 67 13.7 67 14.3C67 14.9 66.8 15.4 66.3 15.8C65.8 16.2 65.1 16.4 64.1 16.4C63.2 16.4 62.5 16.2 62 15.9C61.5 15.5 61.2 15 61 14.4Z" fill="white"/>
|
12 |
+
<path d="M72.3 14.2L74 14.5C73.8 15.1 73.4 15.6 73 15.9C72.6 16.2 71.9 16.4 71.2 16.4C70.1 16.4 69.2 16 68.7 15.3C68.3 14.7 68.1 14 68.1 13.1C68.1 12 68.4 11.2 68.9 10.6C69.5 9.99998 70.2 9.70001 71 9.70001C72 9.70001 72.7 10 73.3 10.7C73.9 11.3 74.1 12.3 74.1 13.6H69.8C69.8 14.1 70 14.5 70.2 14.8C70.5 15.1 70.8 15.2 71.2 15.2C71.5 15.2 71.7 15.1 71.9 15C72.1 14.7 72.2 14.5 72.3 14.2ZM71.1 8.20001C71.3 8.10001 71.4 8.09996 71.4 7.89996C71.4 7.79996 71.3 7.70001 71.2 7.70001C71 7.60001 70.8 7.59998 70.4 7.59998C70.3 7.59998 70.1 7.59998 69.8 7.59998L69.7 7C69.9 7 70.2 7 70.6 7C71.1 7 71.5 7.10001 71.8 7.20001C72.2 7.40001 72.3 7.59996 72.3 7.89996C72.3 8.29996 71.9 8.60001 71.2 8.70001V9H70.7V8.29999C70.9 8.19999 71.1 8.20001 71.1 8.20001ZM72.4 12.4C72.4 11.9 72.3 11.5 72 11.3C71.7 11.1 71.5 10.9 71.1 10.9C70.7 10.9 70.4 11 70.2 11.3C70 11.6 69.8 11.9 69.8 12.4H72.4Z" fill="white"/>
|
13 |
+
<path d="M14.0534 10.1435C14.9049 9.03167 16.0329 9.00162 17.1682 9.11431C18.4564 9.24953 19.4461 10.3313 19.5407 11.8338C19.6644 13.7419 19.6572 15.6576 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0933 16.8262 14.696 16.8116 13.2912C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3704C14.0243 17.9789 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9714 11.2152 17.4831C11.2152 14.9439 11.2152 12.4047 11.2152 9.86554C11.2152 9.36222 11.3753 9.19694 11.8701 9.18943C12.285 9.18192 12.6925 9.18943 13.1073 9.18943C13.9006 9.18192 13.9879 9.26456 14.0534 10.1435Z" fill="white"/>
|
14 |
+
<path d="M10.1017 13.6968C10.1017 14.9439 10.1017 16.1984 10.1017 17.4455C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84297C7.29253 9.39975 7.48174 9.19691 7.91112 9.1894C8.44238 9.17437 8.97365 9.17437 9.51219 9.1894C9.91973 9.20442 10.1017 9.40726 10.1017 9.83546C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
15 |
+
<path d="M10.4728 6.71034C10.4728 7.7245 9.68686 8.54335 8.70439 8.54335C7.71464 8.54335 6.92138 7.71699 6.92138 6.6878C6.92138 5.67363 7.70736 4.8623 8.68984 4.85479C9.68686 4.84728 10.4728 5.66612 10.4728 6.71034Z" fill="white"/>
|
16 |
+
</g>
|
17 |
+
</svg>
|
images/share_icons/Linkedin_Share/zh_CN_share.svg
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
-
<svg width="58" height="23" viewBox="0 0 58 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="58" height="23">
|
3 |
-
<path d="M54.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H54.1C56.2 23 57.9 21.3 57.9 19.2V3.8C57.8 1.7 56.1 0 54.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="58" height="23" fill="#0274B3"/>
|
7 |
-
<path d="M32.2 6.7C32.1 6.8 32.1 6.8 31.9 6.8C31 8.8 29.6 10.6 28 11.8C27.8 11.6 27.5 11.3 27.3 11.2C28.9 10.1 30.3 8.29999 31.1 6.39999L32.2 6.7ZM36.6 10.9H36.8L37.3 11C37.3 11.1 37.3 11.2 37.3 11.3C37.1 15.3 36.9 16.8 36.5 17.3C36.1 17.7 35.8 17.7 35 17.7C34.6 17.7 34 17.7 33.5 17.7C33.5 17.4 33.4 17.1 33.2 16.9C34.1 17 34.9 17 35.2 17C35.5 17 35.6 17 35.7 16.8C36 16.5 36.2 15.2 36.4 11.8H33C32.7 14.2 32 16.6 28.6 17.8C28.5 17.6 28.3 17.3 28.1 17.1C31.1 16.1 31.8 14 32.1 11.8H29.4V11H36.6V10.9ZM35.5 6.3C36.3 8 38 9.99999 39.4 10.9C39.2 11.1 38.9 11.4 38.7 11.7C37.3 10.6 35.7 8.5 34.7 6.7L35.5 6.3Z" fill="white"/>
|
8 |
-
<path d="M51.6 14.5V15.2H46.3V16.8C46.3 17.3 46.2 17.5 45.7 17.6C45.2 17.7 44.6 17.7 43.4 17.7C43.4 17.5 43.2 17.2 43.1 17C43.6 17 44.1 17 44.5 17C45.3 17 45.4 17 45.4 16.7V15.2H40.2V14.5H45.4V13.6H46C46.8 13.4 47.6 13.1 48.3 12.8H41.4V12.1H49.6L49.8 12L50.5 12.5C50.5 12.6 50.4 12.6 50.3 12.6C49.3 13.2 47.8 13.7 46.4 14.1V14.4H51.6V14.5ZM51.5 7.2V7.89999H40.3V7.2H45.4V6L46.5 6.09999C46.5 6.19999 46.4 6.3 46.2 6.3V7.2H51.5ZM49.8 11.3H42V8.8H49.8V11.3ZM42.9 9.39999V10.6H49V9.39999H42.9Z" fill="white"/>
|
9 |
-
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
10 |
-
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
11 |
-
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
12 |
-
</g>
|
13 |
-
</svg>
|
1 |
+
<svg width="58" height="23" viewBox="0 0 58 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="58" height="23">
|
3 |
+
<path d="M54.1 0H3.80002C1.70002 0 0 1.7 0 3.8V19.2C0 21.3 1.70002 23 3.80002 23H54.1C56.2 23 57.9 21.3 57.9 19.2V3.8C57.8 1.7 56.1 0 54.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="58" height="23" fill="#0274B3"/>
|
7 |
+
<path d="M32.2 6.7C32.1 6.8 32.1 6.8 31.9 6.8C31 8.8 29.6 10.6 28 11.8C27.8 11.6 27.5 11.3 27.3 11.2C28.9 10.1 30.3 8.29999 31.1 6.39999L32.2 6.7ZM36.6 10.9H36.8L37.3 11C37.3 11.1 37.3 11.2 37.3 11.3C37.1 15.3 36.9 16.8 36.5 17.3C36.1 17.7 35.8 17.7 35 17.7C34.6 17.7 34 17.7 33.5 17.7C33.5 17.4 33.4 17.1 33.2 16.9C34.1 17 34.9 17 35.2 17C35.5 17 35.6 17 35.7 16.8C36 16.5 36.2 15.2 36.4 11.8H33C32.7 14.2 32 16.6 28.6 17.8C28.5 17.6 28.3 17.3 28.1 17.1C31.1 16.1 31.8 14 32.1 11.8H29.4V11H36.6V10.9ZM35.5 6.3C36.3 8 38 9.99999 39.4 10.9C39.2 11.1 38.9 11.4 38.7 11.7C37.3 10.6 35.7 8.5 34.7 6.7L35.5 6.3Z" fill="white"/>
|
8 |
+
<path d="M51.6 14.5V15.2H46.3V16.8C46.3 17.3 46.2 17.5 45.7 17.6C45.2 17.7 44.6 17.7 43.4 17.7C43.4 17.5 43.2 17.2 43.1 17C43.6 17 44.1 17 44.5 17C45.3 17 45.4 17 45.4 16.7V15.2H40.2V14.5H45.4V13.6H46C46.8 13.4 47.6 13.1 48.3 12.8H41.4V12.1H49.6L49.8 12L50.5 12.5C50.5 12.6 50.4 12.6 50.3 12.6C49.3 13.2 47.8 13.7 46.4 14.1V14.4H51.6V14.5ZM51.5 7.2V7.89999H40.3V7.2H45.4V6L46.5 6.09999C46.5 6.19999 46.4 6.3 46.2 6.3V7.2H51.5ZM49.8 11.3H42V8.8H49.8V11.3ZM42.9 9.39999V10.6H49V9.39999H42.9Z" fill="white"/>
|
9 |
+
<path d="M14.0534 10.1435C14.9049 9.03164 16.0329 9.00159 17.1682 9.11428C18.4564 9.2495 19.4461 10.3313 19.5407 11.8337C19.6644 13.7419 19.6572 15.6575 19.6935 17.5657C19.7008 17.9263 19.497 18.1216 19.1477 18.1291C18.551 18.1366 17.9615 18.1441 17.3647 18.1291C16.9644 18.1141 16.8189 17.9338 16.8189 17.4981C16.8189 16.0932 16.8262 14.6959 16.8116 13.2911C16.8116 13.0132 16.7461 12.7202 16.6733 12.4498C16.5351 11.9314 16.1785 11.6234 15.6618 11.5633C15.1305 11.4957 14.6429 11.661 14.3882 12.1568C14.199 12.5324 14.0534 12.9681 14.0389 13.3888C13.9952 14.711 14.0243 16.0407 14.0243 17.3703C14.0243 17.9788 13.8788 18.1291 13.3038 18.1366C12.8162 18.1441 12.3359 18.1441 11.8483 18.1366C11.3607 18.1291 11.2152 17.9713 11.2152 17.483C11.2152 14.9439 11.2152 12.4047 11.2152 9.86551C11.2152 9.36218 11.3753 9.19691 11.8701 9.1894C12.285 9.18189 12.6925 9.1894 13.1073 9.1894C13.9006 9.18189 13.9879 9.26452 14.0534 10.1435Z" fill="white"/>
|
10 |
+
<path d="M10.1017 13.6968C10.1017 14.9438 10.1017 16.1984 10.1017 17.4454C10.1017 17.9488 9.94157 18.1216 9.45397 18.1366C8.94454 18.1441 8.43511 18.1516 7.92568 18.1366C7.46719 18.1216 7.29253 17.9413 7.29253 17.4605C7.29253 14.9213 7.29253 12.3821 7.29253 9.84296C7.29253 9.39973 7.48174 9.1969 7.91112 9.18938C8.44238 9.17436 8.97365 9.17436 9.51219 9.18938C9.91973 9.20441 10.1017 9.40724 10.1017 9.83545C10.1017 11.1201 10.1017 12.4047 10.1017 13.6968Z" fill="white"/>
|
11 |
+
<path d="M10.4728 6.71032C10.4728 7.72449 9.68686 8.54333 8.70439 8.54333C7.71464 8.54333 6.92138 7.71698 6.92138 6.68778C6.92138 5.67362 7.70736 4.86228 8.68984 4.85477C9.68686 4.84726 10.4728 5.6661 10.4728 6.71032Z" fill="white"/>
|
12 |
+
</g>
|
13 |
+
</svg>
|
images/share_icons/Pinterest_Save/Chinese (traditional) - save.svg
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
-
<svg width="59" height="23" viewBox="0 0 59 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="59" height="23">
|
3 |
-
<path d="M55.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H55.1C57.2 23 58.9 21.3 58.9 19.2V3.79999C58.8 1.69999 57.1 0 55.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="59" height="23" fill="#0274B3"/>
|
7 |
-
<rect width="59" height="23" fill="#E1E7EC"/>
|
8 |
-
<rect width="59" height="23" fill="#CB1F24"/>
|
9 |
-
<path d="M29.5 10.6C29 11.4 28.5 12.1 28 12.7C27.9 12.5 27.7 12.1 27.6 11.9C28.8 10.6 30 8.39999 30.7 6.29999L31.7 6.59998C31.7 6.69998 31.6 6.69998 31.4 6.69998C31.1 7.59998 30.7 8.49999 30.2 9.29999L30.5 9.39999C30.5 9.49999 30.4 9.49998 30.2 9.59998V17.9H29.4V10.6H29.5ZM39.3 13.2H36.2C37 14.6 38.4 15.9 39.6 16.6C39.4 16.8 39.1 17.1 39 17.3C37.8 16.5 36.5 15.1 35.6 13.7V17.8H34.8V13.7C33.9 15.2 32.5 16.5 31.3 17.2C31.2 17 30.9 16.7 30.7 16.5C32 15.8 33.4 14.5 34.3 13.1H31V12.3H34.8V10.8H32V6.59998H38.6V10.8H35.7V12.3H39.3V13.2ZM32.8 7.59998V10.3H37.7V7.59998H32.8Z" fill="white"/>
|
10 |
-
<path d="M51.6 8.69998H44.7C44.3 9.69998 43.7 10.6 43.1 11.5H43.2C43.2 11.6 43.1 11.6 42.9 11.7V17.8H42.1V12.6C41.6 13.1 41.1 13.6 40.5 14C40.4 13.8 40.2 13.4 40 13.2C40.8 12.6 41.4 12 42 11.2V11.1H42.1C42.7 10.3 43.2 9.4 43.6 8.5H40.4V7.69998H44C44.2 7.19998 44.4 6.6 44.5 6L45.6 6.29999C45.6 6.39999 45.5 6.39999 45.3 6.39999C45.2 6.79999 45 7.19998 44.9 7.59998H51.5V8.69998H51.6ZM51.9 13.5V14.3H48.4V16.8C48.4 17.3 48.3 17.6 47.9 17.7C47.5 17.8 46.8 17.8 45.7 17.8C45.7 17.5 45.5 17.2 45.4 17C45.9 17 46.3 17 46.6 17C47.5 17 47.6 17 47.6 16.7V14.3H44V13.5H47.6V12.3H47.9C48.5 11.9 49.1 11.4 49.6 11H45.1V10.2H50.4L50.6 10.1L51.3 10.5C51.3 10.6 51.2 10.6 51.1 10.6C50.5 11.3 49.4 12.1 48.5 12.7V13.4H51.9V13.5Z" fill="white"/>
|
11 |
-
<g clip-path="url(#clip0)">
|
12 |
-
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="#CB1F24"/>
|
13 |
-
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="white"/>
|
14 |
-
</g>
|
15 |
-
</g>
|
16 |
-
<defs>
|
17 |
-
<clipPath id="clip0">
|
18 |
-
<rect width="13.5938" height="14.0323" fill="white" transform="matrix(-1 0 0 1 20.1625 4.48387)"/>
|
19 |
-
</clipPath>
|
20 |
-
</defs>
|
21 |
-
</svg>
|
1 |
+
<svg width="59" height="23" viewBox="0 0 59 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="59" height="23">
|
3 |
+
<path d="M55.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H55.1C57.2 23 58.9 21.3 58.9 19.2V3.79999C58.8 1.69999 57.1 0 55.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="59" height="23" fill="#0274B3"/>
|
7 |
+
<rect width="59" height="23" fill="#E1E7EC"/>
|
8 |
+
<rect width="59" height="23" fill="#CB1F24"/>
|
9 |
+
<path d="M29.5 10.6C29 11.4 28.5 12.1 28 12.7C27.9 12.5 27.7 12.1 27.6 11.9C28.8 10.6 30 8.39999 30.7 6.29999L31.7 6.59998C31.7 6.69998 31.6 6.69998 31.4 6.69998C31.1 7.59998 30.7 8.49999 30.2 9.29999L30.5 9.39999C30.5 9.49999 30.4 9.49998 30.2 9.59998V17.9H29.4V10.6H29.5ZM39.3 13.2H36.2C37 14.6 38.4 15.9 39.6 16.6C39.4 16.8 39.1 17.1 39 17.3C37.8 16.5 36.5 15.1 35.6 13.7V17.8H34.8V13.7C33.9 15.2 32.5 16.5 31.3 17.2C31.2 17 30.9 16.7 30.7 16.5C32 15.8 33.4 14.5 34.3 13.1H31V12.3H34.8V10.8H32V6.59998H38.6V10.8H35.7V12.3H39.3V13.2ZM32.8 7.59998V10.3H37.7V7.59998H32.8Z" fill="white"/>
|
10 |
+
<path d="M51.6 8.69998H44.7C44.3 9.69998 43.7 10.6 43.1 11.5H43.2C43.2 11.6 43.1 11.6 42.9 11.7V17.8H42.1V12.6C41.6 13.1 41.1 13.6 40.5 14C40.4 13.8 40.2 13.4 40 13.2C40.8 12.6 41.4 12 42 11.2V11.1H42.1C42.7 10.3 43.2 9.4 43.6 8.5H40.4V7.69998H44C44.2 7.19998 44.4 6.6 44.5 6L45.6 6.29999C45.6 6.39999 45.5 6.39999 45.3 6.39999C45.2 6.79999 45 7.19998 44.9 7.59998H51.5V8.69998H51.6ZM51.9 13.5V14.3H48.4V16.8C48.4 17.3 48.3 17.6 47.9 17.7C47.5 17.8 46.8 17.8 45.7 17.8C45.7 17.5 45.5 17.2 45.4 17C45.9 17 46.3 17 46.6 17C47.5 17 47.6 17 47.6 16.7V14.3H44V13.5H47.6V12.3H47.9C48.5 11.9 49.1 11.4 49.6 11H45.1V10.2H50.4L50.6 10.1L51.3 10.5C51.3 10.6 51.2 10.6 51.1 10.6C50.5 11.3 49.4 12.1 48.5 12.7V13.4H51.9V13.5Z" fill="white"/>
|
11 |
+
<g clip-path="url(#clip0)">
|
12 |
+
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="#CB1F24"/>
|
13 |
+
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="white"/>
|
14 |
+
</g>
|
15 |
+
</g>
|
16 |
+
<defs>
|
17 |
+
<clipPath id="clip0">
|
18 |
+
<rect width="13.5938" height="14.0323" fill="white" transform="matrix(-1 0 0 1 20.1625 4.48387)"/>
|
19 |
+
</clipPath>
|
20 |
+
</defs>
|
21 |
+
</svg>
|
images/share_icons/Pinterest_Save/ar_AR_save.svg
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
-
<svg width="51" height="23" viewBox="0 0 51 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="51" height="23">
|
3 |
-
<path d="M47.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H47.1C49.2 23 50.9 21.3 50.9 19.2V3.80002C50.8 1.70002 49.1 0 47.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="51" height="23" fill="#0274B3"/>
|
7 |
-
<rect width="51" height="23" fill="#E1E7EC"/>
|
8 |
-
<rect width="51" height="23" fill="#CB1F24"/>
|
9 |
-
<path d="M34.5 15.4H27.5V13.7H28.3C28.4 13.7 28.7 13.5 29.1 13.2C29.3 13.1 29.5 12.9 29.8 12.7C29.8 12.2 29.8 11.8 29.7 11.4C29.7 11.1 29.6 10.7 29.5 10.3C29.5 10.2 29.4 9.8 29.2 9L28.8 8.79999C28.9 8.39999 29 8.09999 29 7.89999C29 7.69999 29.2 7.4 29.4 7L29.7 7.09998C29.7 7.09998 29.7 7.19999 29.7 7.29999C29.7 7.39999 29.9 7.59999 30.3 7.79999C30.4 7.89999 30.6 7.89998 30.9 8.09998C30.9 8.39998 30.8 8.7 30.7 9C30.7 9.1 30.6 9.39998 30.5 9.59998L30.3 9.5C30.4 10.1 30.5 10.5 30.6 10.8C30.6 11.1 30.7 11.3 30.7 11.5V11.6C30.7 11.7 30.7 11.8 30.7 11.9C30.7 12 30.7 12.1 30.6 12.2C30.8 12 31 11.9 31.2 11.7C31.5 11.5 31.8 11.3 32.1 11.1C32.4 10.9 32.7 10.8 32.9 10.8C33.4 10.8 33.8 10.9 34.1 11.2C34.4 11.5 34.6 11.9 34.6 12.4V15.4H34.5ZM33.6 13.1C33.6 13 33.4 12.8 33.1 12.7C32.8 12.6 32.5 12.5 32.3 12.5C32 12.5 31.7 12.6 31.4 12.8C31.1 13 30.6 13.3 29.9 13.8H31.5C33 13.7 33.6 13.5 33.6 13.1ZM33.5 8.79999L32.8 10.2L31.4 9.5L32.1 8.09998L33.5 8.79999Z" fill="white"/>
|
10 |
-
<path d="M38.5 15.4H34V13.7H35.1C35.3 13.7 35.5 13.7 35.6 13.7C36 13.7 36.6 13.8 37.1 13.9C36.5 13.8 36.1 13.6 35.8 13.4C35.6 13.2 35.4 12.9 35.4 12.4C35.4 11.8 35.5 11.2 35.8 10.7C36.1 10.2 36.4 9.89999 36.8 9.89999C37.2 9.89999 37.6 10.3 37.9 11C38.2 11.7 38.4 12.6 38.4 13.6V15.4H38.5ZM37.9 8.19998L37.2 9.59998L35.8 8.89999L36.5 7.5L37.9 8.19998ZM37.7 12.8C37.6 12.4 37.4 12.2 37.2 12C37 11.8 36.8 11.7 36.7 11.7C36.6 11.7 36.5 11.7 36.5 11.8C36.5 11.9 36.4 11.9 36.4 12C36.4 12.2 36.5 12.3 36.8 12.5C37.1 12.7 37.3 12.8 37.7 12.8Z" fill="white"/>
|
11 |
-
<path d="M45.1 15.4H38.1V13.7H42.4C41.9 13.2 41.5 12.8 41 12.6C40.6 12.4 40.3 12.3 39.9 12.3C39.8 12.3 39.7 12.3 39.6 12.3C39.5 12.3 39.4 12.3 39.2 12.4C39.4 11.9 39.7 11.5 39.9 11.3C40.2 11.1 40.5 10.9 40.8 10.9C41.1 10.9 41.3 11 41.6 11.1C41.8 11.2 42.1 11.4 42.4 11.7C42.6 11.9 43 12.3 43.4 12.8C43.7 13.1 43.9 13.4 44.1 13.5C44.3 13.6 44.5 13.7 44.8 13.8V15.4H45.1Z" fill="white"/>
|
12 |
-
<g clip-path="url(#clip0)">
|
13 |
-
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="#CB1F24"/>
|
14 |
-
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="white"/>
|
15 |
-
</g>
|
16 |
-
</g>
|
17 |
-
<defs>
|
18 |
-
<clipPath id="clip0">
|
19 |
-
<rect width="13.5938" height="14.0323" fill="white" transform="matrix(-1 0 0 1 20.1625 4.48387)"/>
|
20 |
-
</clipPath>
|
21 |
-
</defs>
|
22 |
-
</svg>
|
1 |
+
<svg width="51" height="23" viewBox="0 0 51 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="51" height="23">
|
3 |
+
<path d="M47.1 0H3.80002C1.70002 0 0 1.70002 0 3.80002V19.2C0 21.3 1.70002 23 3.80002 23H47.1C49.2 23 50.9 21.3 50.9 19.2V3.80002C50.8 1.70002 49.1 0 47.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="51" height="23" fill="#0274B3"/>
|
7 |
+
<rect width="51" height="23" fill="#E1E7EC"/>
|
8 |
+
<rect width="51" height="23" fill="#CB1F24"/>
|
9 |
+
<path d="M34.5 15.4H27.5V13.7H28.3C28.4 13.7 28.7 13.5 29.1 13.2C29.3 13.1 29.5 12.9 29.8 12.7C29.8 12.2 29.8 11.8 29.7 11.4C29.7 11.1 29.6 10.7 29.5 10.3C29.5 10.2 29.4 9.8 29.2 9L28.8 8.79999C28.9 8.39999 29 8.09999 29 7.89999C29 7.69999 29.2 7.4 29.4 7L29.7 7.09998C29.7 7.09998 29.7 7.19999 29.7 7.29999C29.7 7.39999 29.9 7.59999 30.3 7.79999C30.4 7.89999 30.6 7.89998 30.9 8.09998C30.9 8.39998 30.8 8.7 30.7 9C30.7 9.1 30.6 9.39998 30.5 9.59998L30.3 9.5C30.4 10.1 30.5 10.5 30.6 10.8C30.6 11.1 30.7 11.3 30.7 11.5V11.6C30.7 11.7 30.7 11.8 30.7 11.9C30.7 12 30.7 12.1 30.6 12.2C30.8 12 31 11.9 31.2 11.7C31.5 11.5 31.8 11.3 32.1 11.1C32.4 10.9 32.7 10.8 32.9 10.8C33.4 10.8 33.8 10.9 34.1 11.2C34.4 11.5 34.6 11.9 34.6 12.4V15.4H34.5ZM33.6 13.1C33.6 13 33.4 12.8 33.1 12.7C32.8 12.6 32.5 12.5 32.3 12.5C32 12.5 31.7 12.6 31.4 12.8C31.1 13 30.6 13.3 29.9 13.8H31.5C33 13.7 33.6 13.5 33.6 13.1ZM33.5 8.79999L32.8 10.2L31.4 9.5L32.1 8.09998L33.5 8.79999Z" fill="white"/>
|
10 |
+
<path d="M38.5 15.4H34V13.7H35.1C35.3 13.7 35.5 13.7 35.6 13.7C36 13.7 36.6 13.8 37.1 13.9C36.5 13.8 36.1 13.6 35.8 13.4C35.6 13.2 35.4 12.9 35.4 12.4C35.4 11.8 35.5 11.2 35.8 10.7C36.1 10.2 36.4 9.89999 36.8 9.89999C37.2 9.89999 37.6 10.3 37.9 11C38.2 11.7 38.4 12.6 38.4 13.6V15.4H38.5ZM37.9 8.19998L37.2 9.59998L35.8 8.89999L36.5 7.5L37.9 8.19998ZM37.7 12.8C37.6 12.4 37.4 12.2 37.2 12C37 11.8 36.8 11.7 36.7 11.7C36.6 11.7 36.5 11.7 36.5 11.8C36.5 11.9 36.4 11.9 36.4 12C36.4 12.2 36.5 12.3 36.8 12.5C37.1 12.7 37.3 12.8 37.7 12.8Z" fill="white"/>
|
11 |
+
<path d="M45.1 15.4H38.1V13.7H42.4C41.9 13.2 41.5 12.8 41 12.6C40.6 12.4 40.3 12.3 39.9 12.3C39.8 12.3 39.7 12.3 39.6 12.3C39.5 12.3 39.4 12.3 39.2 12.4C39.4 11.9 39.7 11.5 39.9 11.3C40.2 11.1 40.5 10.9 40.8 10.9C41.1 10.9 41.3 11 41.6 11.1C41.8 11.2 42.1 11.4 42.4 11.7C42.6 11.9 43 12.3 43.4 12.8C43.7 13.1 43.9 13.4 44.1 13.5C44.3 13.6 44.5 13.7 44.8 13.8V15.4H45.1Z" fill="white"/>
|
12 |
+
<g clip-path="url(#clip0)">
|
13 |
+
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="#CB1F24"/>
|
14 |
+
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="white"/>
|
15 |
+
</g>
|
16 |
+
</g>
|
17 |
+
<defs>
|
18 |
+
<clipPath id="clip0">
|
19 |
+
<rect width="13.5938" height="14.0323" fill="white" transform="matrix(-1 0 0 1 20.1625 4.48387)"/>
|
20 |
+
</clipPath>
|
21 |
+
</defs>
|
22 |
+
</svg>
|
images/share_icons/Pinterest_Save/de_DE_save.svg
CHANGED
@@ -1,25 +1,25 @@
|
|
1 |
-
<svg width="76" height="23" viewBox="0 0 76 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
-
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="76" height="23">
|
3 |
-
<path d="M72.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H72.1C74.2 23 75.9 21.3 75.9 19.2V3.79999C75.8 1.69999 74.1 0 72.1 0Z" fill="#50ABF1"/>
|
4 |
-
</mask>
|
5 |
-
<g mask="url(#mask0)">
|
6 |
-
<rect width="76" height="23" fill="#0274B3"/>
|
7 |
-
<rect width="76" height="23" fill="#E1E7EC"/>
|
8 |
-
<rect width="76" height="23" fill="#CB1F24"/>
|
9 |
-
<path d="M27.5 16V7H30.2L31.8 13.1L33.4 7H36.1V16H34.4V8.89999L32.6 16H30.9L29.1 8.89999V16H27.5Z" fill="white"/>
|
10 |
-
<path d="M41.7 13.9L43.4 14.2C43.2 14.8 42.8 15.3 42.4 15.6C41.9 15.9 41.3 16.1 40.6 16.1C39.5 16.1 38.6 15.7 38.1 15C37.7 14.4 37.5 13.7 37.5 12.8C37.5 11.7 37.8 10.9 38.3 10.3C38.9 9.69999 39.6 9.39999 40.4 9.39999C41.4 9.39999 42.1 9.69999 42.7 10.4C43.3 11 43.5 12 43.5 13.3H39.2C39.2 13.8 39.4 14.2 39.6 14.5C39.9 14.8 40.2 14.9 40.6 14.9C40.9 14.9 41.1 14.8 41.3 14.7C41.5 14.5 41.6 14.3 41.7 13.9ZM41.8 12.2C41.8 11.7 41.7 11.3 41.4 11.1C41.2 10.8 40.9 10.7 40.5 10.7C40.1 10.7 39.8 10.8 39.6 11.1C39.4 11.4 39.2 11.7 39.2 12.2H41.8Z" fill="white"/>
|
11 |
-
<path d="M46.5 16H44.8V9.5H46.4V10.4C46.7 9.99999 46.9 9.7 47.1 9.5C47.3 9.4 47.6 9.29999 47.8 9.29999C48.2 9.29999 48.6 9.40001 48.9 9.60001L48.4 11.1C48.1 10.9 47.8 10.8 47.6 10.8C47.4 10.8 47.2 10.9 47 11C46.8 11.1 46.7 11.4 46.6 11.7C46.5 12 46.5 12.8 46.5 13.9V16Z" fill="white"/>
|
12 |
-
<path d="M49.7 16V7H51.4V11.8L53.4 9.5H55.5L53.3 11.9L55.7 16H53.8L52.2 13.1L51.4 13.9V16H49.7V16Z" fill="white"/>
|
13 |
-
<path d="M60.5 13.9L62.2 14.2C62 14.8 61.6 15.3 61.2 15.6C60.7 15.9 60.1 16.1 59.4 16.1C58.3 16.1 57.4 15.7 56.9 15C56.5 14.4 56.3 13.7 56.3 12.8C56.3 11.7 56.6 10.9 57.1 10.3C57.7 9.69999 58.4 9.39999 59.2 9.39999C60.2 9.39999 60.9 9.69999 61.5 10.4C62.1 11 62.3 12 62.3 13.3H58C58 13.8 58.2 14.2 58.4 14.5C58.6 14.8 59 14.9 59.4 14.9C59.7 14.9 59.9 14.8 60.1 14.7C60.3 14.5 60.4 14.3 60.5 13.9ZM60.6 12.2C60.6 11.7 60.5 11.3 60.2 11.1C60 10.8 59.7 10.7 59.3 10.7C58.9 10.7 58.6 10.8 58.4 11.1C58.2 11.4 58 11.7 58 12.2H60.6Z" fill="white"/>
|
14 |
-
<path d="M69.6 16H67.9V12.7C67.9 12 67.9 11.5 67.8 11.3C67.7 11.1 67.6 10.9 67.4 10.8C67.2 10.7 67 10.6 66.8 10.6C66.5 10.6 66.2 10.7 66 10.8C65.8 10.9 65.6 11.2 65.5 11.4C65.4 11.7 65.4 12.2 65.4 12.9V15.8H63.7V9.29999H65.3V10.3C65.9 9.59999 66.6 9.19998 67.4 9.19998C67.8 9.19998 68.1 9.29999 68.4 9.39999C68.7 9.49999 69 9.69999 69.1 9.89999C69.2 10.1 69.4 10.4 69.4 10.6C69.5 10.9 69.5 11.3 69.5 11.8V16H69.6Z" fill="white"/>
|
15 |
-
<g clip-path="url(#clip0)">
|
16 |
-
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="#CB1F24"/>
|
17 |
-
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.
|
18 |
-
</g>
|
19 |
-
</g>
|
20 |
-
<defs>
|
21 |
-
<clipPath id="clip0">
|
22 |
-
<rect width="13.5938" height="14.0323" fill="white" transform="matrix(-1 0 0 1 20.1625 4.48387)"/>
|
23 |
-
</clipPath>
|
24 |
-
</defs>
|
25 |
-
</svg>
|
1 |
+
<svg width="76" height="23" viewBox="0 0 76 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2 |
+
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="76" height="23">
|
3 |
+
<path d="M72.1 0H3.80002C1.70002 0 0 1.69999 0 3.79999V19.2C0 21.3 1.70002 23 3.80002 23H72.1C74.2 23 75.9 21.3 75.9 19.2V3.79999C75.8 1.69999 74.1 0 72.1 0Z" fill="#50ABF1"/>
|
4 |
+
</mask>
|
5 |
+
<g mask="url(#mask0)">
|
6 |
+
<rect width="76" height="23" fill="#0274B3"/>
|
7 |
+
<rect width="76" height="23" fill="#E1E7EC"/>
|
8 |
+
<rect width="76" height="23" fill="#CB1F24"/>
|
9 |
+
<path d="M27.5 16V7H30.2L31.8 13.1L33.4 7H36.1V16H34.4V8.89999L32.6 16H30.9L29.1 8.89999V16H27.5Z" fill="white"/>
|
10 |
+
<path d="M41.7 13.9L43.4 14.2C43.2 14.8 42.8 15.3 42.4 15.6C41.9 15.9 41.3 16.1 40.6 16.1C39.5 16.1 38.6 15.7 38.1 15C37.7 14.4 37.5 13.7 37.5 12.8C37.5 11.7 37.8 10.9 38.3 10.3C38.9 9.69999 39.6 9.39999 40.4 9.39999C41.4 9.39999 42.1 9.69999 42.7 10.4C43.3 11 43.5 12 43.5 13.3H39.2C39.2 13.8 39.4 14.2 39.6 14.5C39.9 14.8 40.2 14.9 40.6 14.9C40.9 14.9 41.1 14.8 41.3 14.7C41.5 14.5 41.6 14.3 41.7 13.9ZM41.8 12.2C41.8 11.7 41.7 11.3 41.4 11.1C41.2 10.8 40.9 10.7 40.5 10.7C40.1 10.7 39.8 10.8 39.6 11.1C39.4 11.4 39.2 11.7 39.2 12.2H41.8Z" fill="white"/>
|
11 |
+
<path d="M46.5 16H44.8V9.5H46.4V10.4C46.7 9.99999 46.9 9.7 47.1 9.5C47.3 9.4 47.6 9.29999 47.8 9.29999C48.2 9.29999 48.6 9.40001 48.9 9.60001L48.4 11.1C48.1 10.9 47.8 10.8 47.6 10.8C47.4 10.8 47.2 10.9 47 11C46.8 11.1 46.7 11.4 46.6 11.7C46.5 12 46.5 12.8 46.5 13.9V16Z" fill="white"/>
|
12 |
+
<path d="M49.7 16V7H51.4V11.8L53.4 9.5H55.5L53.3 11.9L55.7 16H53.8L52.2 13.1L51.4 13.9V16H49.7V16Z" fill="white"/>
|
13 |
+
<path d="M60.5 13.9L62.2 14.2C62 14.8 61.6 15.3 61.2 15.6C60.7 15.9 60.1 16.1 59.4 16.1C58.3 16.1 57.4 15.7 56.9 15C56.5 14.4 56.3 13.7 56.3 12.8C56.3 11.7 56.6 10.9 57.1 10.3C57.7 9.69999 58.4 9.39999 59.2 9.39999C60.2 9.39999 60.9 9.69999 61.5 10.4C62.1 11 62.3 12 62.3 13.3H58C58 13.8 58.2 14.2 58.4 14.5C58.6 14.8 59 14.9 59.4 14.9C59.7 14.9 59.9 14.8 60.1 14.7C60.3 14.5 60.4 14.3 60.5 13.9ZM60.6 12.2C60.6 11.7 60.5 11.3 60.2 11.1C60 10.8 59.7 10.7 59.3 10.7C58.9 10.7 58.6 10.8 58.4 11.1C58.2 11.4 58 11.7 58 12.2H60.6Z" fill="white"/>
|
14 |
+
<path d="M69.6 16H67.9V12.7C67.9 12 67.9 11.5 67.8 11.3C67.7 11.1 67.6 10.9 67.4 10.8C67.2 10.7 67 10.6 66.8 10.6C66.5 10.6 66.2 10.7 66 10.8C65.8 10.9 65.6 11.2 65.5 11.4C65.4 11.7 65.4 12.2 65.4 12.9V15.8H63.7V9.29999H65.3V10.3C65.9 9.59999 66.6 9.19998 67.4 9.19998C67.8 9.19998 68.1 9.29999 68.4 9.39999C68.7 9.49999 69 9.69999 69.1 9.89999C69.2 10.1 69.4 10.4 69.4 10.6C69.5 10.9 69.5 11.3 69.5 11.8V16H69.6Z" fill="white"/>
|
15 |
+
<g clip-path="url(#clip0)">
|
16 |
+
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.1143 14.4586C15.4012 14.4586 16.2669 12.7438 16.2669 10.7392C16.2669 9.19344 15.2608 8.05832 13.4358 8.05832C11.3768 8.05832 10.09 9.65234 10.09 11.4154C10.09 12.0192 10.2538 12.454 10.5346 12.7921C10.6515 12.937 10.675 13.0094 10.6281 13.1785C10.6047 13.2993 10.5112 13.6132 10.4877 13.734C10.4409 13.903 10.3006 13.9755 10.1368 13.903C9.17752 13.4924 8.75636 12.4298 8.75636 11.2222C8.75636 9.24173 10.3708 6.85069 13.5996 6.85069C16.1967 6.85069 17.9047 8.78285 17.9047 10.8599C17.9047 13.6132 16.4306 15.6661 14.2547 15.6661C13.5294 15.6661 12.8275 15.2556 12.5935 14.7967C12.5935 14.7967 12.1958 16.4149 12.1256 16.7288C11.9852 17.2602 11.7044 17.8157 11.4471 18.2263C12.0554 18.4195 12.7105 18.5161 13.3656 18.5161C17.1092 18.5161 20.1508 15.3763 20.1508 11.512C20.1508 7.64773 17.1092 4.48387 13.3656 4.48387Z" fill="#CB1F24"/>
|
17 |
+
<path d="M13.3656 4.48387C9.62208 4.48387 6.58044 7.62363 6.58044 11.4879C6.58044 14.362 8.24165 16.8255 10.6515 17.9123C10.6281 17.4293 10.6515 16.8255 10.7685 16.2941C10.9089 15.7145 11.6342 12.4781 11.6342 12.4781C11.6342 12.4781 11.4237 12.0193 11.4237 11.3672C11.4237 10.3286 12.0086 9.55576 12.7339 9.55576C13.3422 9.55576 13.6464 10.0388 13.6464 10.6184C13.6464 11.2464 13.2486 12.2125 13.038 13.1061C12.8743 13.8548 13.389 14.4586 14.11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|